diff --git a/bindings/python/iota_sdk/wallet/account.py b/bindings/python/iota_sdk/wallet/account.py index 4d434ea0cc..0181f59d02 100644 --- a/bindings/python/iota_sdk/wallet/account.py +++ b/bindings/python/iota_sdk/wallet/account.py @@ -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. """