Fixed BIP39 implementation
This commit is contained in:
parent
2af2b79f9d
commit
42a47e49bb
9 changed files with 60 additions and 2093 deletions
10
how-to-create-encrypted-paper-backup/create-seed.py
Normal file
10
how-to-create-encrypted-paper-backup/create-seed.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from sys import exit
|
||||
from mnemonic import Mnemonic
|
||||
|
||||
mnemo = Mnemonic("english")
|
||||
|
||||
words = mnemo.generate(strength=256)
|
||||
|
||||
print(words, end="")
|
||||
|
||||
exit(0)
|
Loading…
Add table
Add a link
Reference in a new issue