From 776badc60009e8dd0859c1d6b419ad47f148c8a6 Mon Sep 17 00:00:00 2001 From: Percival Lucena Date: Mon, 30 Jun 2025 10:45:02 -0300 Subject: [PATCH] Update onboard.py Printing EOA address while creating a new account during onboard helps funding the address, and can be used as a standalone example on coti-doc --- coti-web3/examples/onboard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/coti-web3/examples/onboard.py b/coti-web3/examples/onboard.py index 02dd37e..771c1d0 100644 --- a/coti-web3/examples/onboard.py +++ b/coti-web3/examples/onboard.py @@ -18,6 +18,7 @@ def main(): generate_or_recover_aes(web3, eoa) env_value = set_account_encryption_key(eoa.aes_key) + print("Generated AES key for EOA: %s" % eoa.address) if env_value[0] is not True: raise Exception('encryption key not saved in .env!')