How to transfer private addresses from one wallet to another?

1

0

My wallet has 3 addresses. My other wallet has 5 addresses. I just want to synchronize those.

How would I do so?

user4951

Posted 2013-05-02T01:48:00.877

Reputation: 1 124

Answers

2

Just export the private key of one wallet and import to the other.

h__

Posted 2013-05-02T01:48:00.877

Reputation: 433

the export is in a plain text file. Is it safe?user4951 2013-05-02T03:32:22.873

2@hyh this would be a better answer if you explained the export and import process in more detaileMansipater 2013-05-02T04:01:23.923

1

Please explain why you want to do this?

If your goal is to consolidate the funds, just send the money from one wallet to the other.

Eyal

Posted 2013-05-02T01:48:00.877

Reputation: 1 539

The 2 wallets share 1 private addresses (and a bunch of other addresses they don't share.)user4951 2013-05-02T10:05:22.710

Again, please explain why. If your goal is to consolidate, send all the funds from each wallet to a third wallet.Eyal 2013-05-02T12:03:40.480

Sending the funds would incur a fee which seems undesirable for a bit of housekeeping.Al Sutton 2014-02-26T14:01:28.083

0

How to clone BitCoin Addresses between different Wallets. Case: BitCoinCore <> Electrum

This informal article is not about transferring funds between wallets, nor about using the 'sweep address' procedure to transfer funds from one address to another.

It is about cloning an address from one wallet into another different wallet. This address will be usable from both.

Wallets are sets of Addresses. Each Address has a balance ('amount') an id ('address'), a tag ('account'), and a private key.

In order to clone addresses between wallets you have to know the private key of source address.

BitCoin Core ==> Electrum

BitCoinCore:

Help | Debug Window | Console
backupwallet "local file system destination\wallet.dat"     # make a backup copy of your wallet (optional)
dumpwallet  "local file system destination\wallet.dat.txt"  # make a human readable list of your wallet.  Warning: includes private keys so destroy after use

Electrum:

Wallet | Private Keys | Import | copy here the private keys of address(es) to be cloned see file wallet.dat.txt

Electrum ==> BitCoin Core

Electrum:

Wallet | Private Keys | Export 
save or copy paste to the notepad, warning: keys are prefixed with 'p2pkh:' you must ignore that prefix. Warning: includes private keys so destroy after use

BitCoinCore:

Help | Debug Window | Console
importprivkey "private_key from above" "optional_tag"
    warning: After that BitCoin Core automatically rescans the whole database, this may take hours.
backupwallet "local file system destination\wallet.dat"     # make a backup copy of your wallet (optional)

vlc33

Posted 2013-05-02T01:48:00.877

Reputation: 1