From 19c13301beac7296f96308488e9137d3e73ef456 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Mon, 6 Nov 2023 10:15:07 +0100 Subject: [PATCH] Add to python bindings --- bindings/python/iota_sdk/wallet/account.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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. """