web3-wallet / wallet.py
smejak's picture
Create wallet.py
685bf3b
from eth_account import Account
Account.enable_unaudited_hdwallet_features()
def get_wallet():
acct, mnemonic = Account.create_with_mnemonic()
return acct, mnemonic