Konubinix' opinionated web of thoughts

How to Get an Ethereum Account Address From a Mnemonic

Fleeting

how to get an ethereum account from a mnemonic in python

from mnemonic import Mnemonic
m = Mnemonic("english")
words = m.generate()
words
hunt onion congress police safe shallow genre when volume print that wonder
from eth_account import Account
Account.enable_unaudited_hdwallet_features()
a = Account.from_mnemonic(words)
a.address
0x42c2d425C5Bf57757A28C04dFF69aF86ae9ef299