Implemented Electrum mnemonic feature
This commit is contained in:
parent
3ca2601faa
commit
81246f8000
12 changed files with 210 additions and 123 deletions
|
@ -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