Import key using mnemonic
See original GitHub issueI’ve read over the documentation, so please feel free to point out if I’ve missed something. 😃
I’m trying to import a key into bit using the 12-word mnemonic seed, as generated by https://github.com/trezor/python-mnemonic. I get the seed via:
import mnemonic
mobj = mnemonic.Mnemonic("english")
seed = mobj.to_seed("my words go here")
But, I do not see a way to do that. Am I missing something? Or is that functionality missing?
Issue Analytics
- State:
 - Created 4 years ago
 - Reactions:1
 - Comments:18 (4 by maintainers)
 
Top Results From Across the Web
Mnemonic Wallet Phrases: What Are They and How to Import?
“A mnemonic phrase is a substitute for a complex private key. To import the wallet, the user can easily write down or memorize...
Read more >How to use recovery mnemonic in metamask to import ...
Importing a mnemonic can only be done when you are not logged in. It's best to backup any existing accounts in the current...
Read more >How to import Ultima Farm using a mnemonic phrase?
Follow the official PLC ULTIMA Telegram channel https://t.me/plcultima The channel features news, education and training sessions, ...
Read more >Recover keys from a mnemonic phrase - Hedera
Method. Type. Description ; PrivateKey.fromMnemonic(<mnemonic>). Mnemonic. Recover a private key from a mnemonic phrase compatible with the iOS and Android ...
Read more >Demo: Import a mnemonic seed phrase of another wallet
The NGRAVE ZERO is compatible with mnemonic phrases. However, we recommend that for optimal security you create new keys on your ZERO wallet...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

It would then be interesting to see how
bip32utilsperforms with the changes above that make use ofcoincurveinstead, which is using CFFI as binding to C.yikes, Electrum’s bip32 code is unreadable…