From f678da05a16368a3066d4bbf7460a12795fb0e48 Mon Sep 17 00:00:00 2001 From: Percival Lucena Date: Mon, 16 Jun 2025 16:32:57 -0300 Subject: [PATCH] print eoa.address to help funding address on faucet.coti.io --- 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!')