How to import private keys
Note that messing with ECDSA private keys is very dangerous and can result in losing bitcoins, even long after the import. It is recommended that outside of self-generated vanity addresses, users should never import (or export) private keys.[1]
Contents
Before getting started with importing your wallet’s private keys, let’s clarify three important definitions.
- Backup: A file containing a wallet’s private key information. Backups can be exported from a wallet or imported to a wallet.
- Export: The process of creating a file containing a wallet’s private key data. Exported keys can be imported to a new/different wallet to give access to the Bitcoins (Bitcoin Core, BTC) associated with the exported private key(s).
- Import: The process of gaining control of BTCs via an exported backup. Wallets can import private keys via text files or QR code scanning.
Start Bitcoin client
Note that importing a key to bitcoind and/or Bitcoin-Qt may be dangerous and is not recommended unless you understand the full details of how it works
Unlike third-party wallet.dat manipulation tools such as Pywallet, you do not have to close the Bitcoin client before proceeding. Instead, you need to start the bitcoind server.
- Close bitcoin-qt and start bitcoind -damon in Terminal Emulator. The version of bitcoind MUST be the same as bitcoin-qt!
Bitcoin-QT does not enable its RPC interface by default. To enable it:
- Close Bitcoin-QT and restart it with bitcoin-qt -server.
Unlock your wallet
If you have an encrypted wallet (recommended), you need to unlock it temporarily before importing private keys. The RPC command for unlocking an encrypted wallet is walletpassphrase <passphrase> <timeout>. Typing this directly in a bash terminal will leave your wallet passphrase directly in the bash history but there are a couple of techniques you can use to avoid this. Simply add a space before the command:
(space)bitcoind walletpassphrase yourpassphrase 120
Another alternative is to use a bash variable:
read x (input your passphrase) bitcoind walletpassphrase "$x" 120 # Do not set the timeout too long or too short.
Import Private key(s)
The last command unlocked your wallet temporarily for 120 seconds, during which time you must import your private keys. Since private keys can be as important as your passphrase, you may want to use the same techniques as above to prevent their being recorded in bash history (bash variable or space before the command):
(space)bitcoind importprivkey "5yourveryveryveryverylongprivatekeystring" "my-new-key" # "my-new-key" is a label for the key/address pair and is optional
The importing process is now started. Bitcoind will rescan the entire block data to ensure this key has not been used before. This process will take from one to two minutes, depending on your CPU performance. DO NOT abort it before finishing!
To avoid rescanning run the following.
(space)bitcoind importprivkey 5yourveryveryveryverylongprivatekeystring" "label-here" rescan=false
If no errors occurs, the import is a success and Bitcoin-QT users will be able to see the new address in the GUI immediately. If you need to import more keys, just repeat the instructions above. There is currently no command to import a batch of private keys so you will need to wait a minute or two for each key to be imported.
Cleaning up
bitcoind walletlock
This will lock your wallet again (so you don’t have to wait for timeout)
unset x unset y
These commands will clear the passphrase and private key from memory if you used the read technique. If you started bitcoind, you will need to stop it before Bitcoin-QT will start again:
bitcoind stop
Deleting Keys
At some point, you may wish to delete private keys from a wallet.dat file but as of version v0.6.0 of Bitcoin-QT/bitcoind, there is no RPC method available for this purpose[2].
Another ways
Using Blockchain.info
As of August 2012, possibly the easiest way to import a private key is using Blockchain.info‘s My Wallet service. When successully imported through the “Import/Export” screen, the bitcoins assigned to a private key can be immediately sent to any Bitcoin address.
Using BIPS
As of August 2013, BIPS allows for easy import of private key using Paper Wallet – Import. User can choose to type in the private key manually or scan a QR code containing the private key using the camera. The user must wait 6 confirmations for access to the funds, and system is based on batch importation.
Using Mycelium
Steps described are with the following settings:
- Export mode enabled
- Aggregated view disabled
Partial spend from cold storage
Use this function if you would like to keep some funds on the paper wallet.
- Download Mycelium from the Android Play Store or through iTunes.
- Press the menu button and select “Cold Storage”
- Scan in private key
- Select your destination address
- Select the amount
- Press the blue currency tag at the top to toggle currency.
- Send!
After spending, the private key in memory is destroyed so the paper private key remains somewhat secure. Despite this, best practice is to immediately send the remaining balance to a paper wallet that was generated offline.
Import key from a paper wallet
Use this function if you would like to import a private key so all funds are immediately available for spending.
- Download MyCelium from the Android Play Store or through iTunes.
- Key Management
- Press the blue ‘+’ symbol
- Scan in private key
After importing this paper private key, you might consider destroying the original so it cannot be found and your funds stolen. Alternatively, you can keep it safe to be used as an offline backup.
Using bitcoind
If you have Version 7 or later it is now trival. See: How to import private keys v7+
If you are using Cold storage, a Paper wallet or generating vanity addresses you may have a need to import a Private key. Since Bitcoin-QT/bitcoind v0.6.0, you can import private keys using built-in RPC command importprivkey. Before v0.6.0, you needed to rely on third-party wallet.dat manipulation tool such as Pywallet.
External links
- Bitcoin.com – How to Import and Export Bitcoin Private Keys
- https://en.bitcoin.it/wiki/How_to_import_private_keys