diff --git a/bindings/python/iota_sdk/wallet/account.py b/bindings/python/iota_sdk/wallet/account.py index d5fd533047..8f13adbf12 100644 --- a/bindings/python/iota_sdk/wallet/account.py +++ b/bindings/python/iota_sdk/wallet/account.py @@ -277,6 +277,14 @@ def implicit_account_creation_address(self) -> str: 'implicitAccountCreationAddress' ) + def implicit_accounts(self) -> List[OutputData]: + """Returns the implicit accounts of the wallet. + """ + outputs = self._call_account_method( + 'implicitAccounts' + ) + return [from_dict(OutputData, o) for o in outputs] + def incoming_transactions(self) -> List[TransactionWithMetadata]: """Returns all incoming transactions of the account. """