Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
AlgoveraAI
/
web3-wallet
like
4
Runtime error
App
Files
Files
Community
smejak
commited on
Jan 31, 2022
Commit
685bf3b
•
1 Parent(s):
028625f
Create wallet.py
Browse files
Files changed (1)
hide
show
wallet.py
+7
-0
wallet.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from eth_account import Account
2
+
3
+
Account.enable_unaudited_hdwallet_features()
4
+
5
+
def get_wallet():
6
+
acct, mnemonic = Account.create_with_mnemonic()
7
+
return acct, mnemonic