Skip to content

Commit ae69b5c

Browse files
Update Hiero SDK Python to 0.1.10
Signed-off-by: Alexander Shenshin <[email protected]>
1 parent b26b50c commit ae69b5c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

hiero_did_sdk_python/did/hedera_did.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ async def _submit_transaction(self, operation: DidDocumentOperation, event: HcsD
265265

266266
def build_did_transaction(message_submit_transaction: TopicMessageSubmitTransaction) -> Transaction:
267267
message_submit_transaction.transaction_fee = MAX_TRANSACTION_FEE.to_tinybars() # pyright: ignore [reportAttributeAccessIssue]
268-
return message_submit_transaction.freeze_with(self._client).sign(self._private_key)
268+
return message_submit_transaction.freeze_with(self._client).sign(cast(PrivateKey, self._private_key))
269269

270270
await HcsMessageTransaction(self.topic_id, envelope, build_did_transaction).execute(self._client)
271271

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ aiohttp_retry = "^2.9.0"
1616
python = ">=3.12,<3.14"
1717
did-resolver = "0.0.3"
1818
base58 = "^2.1.1"
19-
hiero_sdk_python = "0.1.9"
19+
hiero_sdk_python = "0.1.10"
2020
zstandard = "^0.23.0"
2121

2222
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)