Implemented Electrum mnemonic feature

This commit is contained in:
Sun Knudsen 2021-04-09 13:57:09 -04:00
parent 3ca2601faa
commit 81246f8000
No known key found for this signature in database
GPG key ID: 1FA767862BBD1305
12 changed files with 210 additions and 123 deletions

View 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)