Skip to content

Commit

Permalink
Python binding
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Nov 2, 2023
1 parent 6da36f6 commit 53b6be7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bindings/python/iota_sdk/wallet/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,13 @@ def unspent_outputs(
)
return [from_dict(OutputData, o) for o in outputs]

def implicit_account_creation_address(self) -> str:
"""Returns the implicit account creation address of the wallet if it is Ed25519 based.
"""
return self._call_account_method(
'implicitAccountCreationAddress'
)

def incoming_transactions(self) -> List[Transaction]:
"""Returns all incoming transactions of the account.
"""
Expand Down

0 comments on commit 53b6be7

Please sign in to comment.