Last active
July 1, 2026 11:27
-
-
Save sbOogway/468a59d7b728ad8a79a90a3735014cf9 to your computer and use it in GitHub Desktop.
private_key_from_seed.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python3 -c "from eth_account import Account; Account.enable_unaudited_hdwallet_features(); mnemonic = input('Inserisci le 12 parole: '); acct = Account.from_mnemonic(mnemonic); print('\nIndirizzo:', acct.address); print('Chiave Privata:', acct.key.hex())" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment