Post
Topic
Board Beginners & Help
Merits 5 from 4 users
Re: Importing electrum seed to bitcoin core
by
Husna QA
on 26/02/2021, 08:40:43 UTC
⭐ Merited by DdmrDdmr (2) ,DireWolfM14 (1) ,pooya87 (1) ,Heisenberg_Hunter (1)
In Electrum, select the Wallet menu -> Private keys -> Export. You will get the private key of all addresses in your wallet at Electrum.





In Bitcoin Core, Open the Bitcoin Core Console (Window menu -> Console); in the input field, type importprivkey "privkey". Then the (Wallet) Rescanning window will appear.

Code:
importprivkey Kxq****************************************

-snip-


If you want to import more than 1 Private Key, use the 'false' argument in the first 'importprivkey' command and so on, then in the last 'importprivkey', don't use the 'false' argument, example:

Code:
importprivkey "PrivateKey_1" "label" false
Code:
importprivkey "PrivateKey_2" "label" false
Code:
importprivkey "PrivateKey_3" "label"

Then the Blockchain rescanning process runs after the last private key is imported.