From 53b6be75cc44a00fcd59bfb3db399e20582aa307 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Thu, 2 Nov 2023 15:18:20 +0100 Subject: [PATCH] Python binding --- bindings/python/iota_sdk/wallet/account.py | 7 +++++++ 1 file changed, 7 insertions(+) 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. """