I have a wallet with Armory which I'm not happy with and I'd like to manage my wallet with Bitcoin Core. Is there way to "transfer" the wallet between the clients? I'm currently running OSX 10.11.1.
Asked
Active
Viewed 3,941 times
2 Answers
6
You can't transfer the wallet, per se, but you can transfer the private keys. Here's how to do it:
- Run armory in offline mode (simply run
armory --offline
) - Click on your wallet and click "Backup This Wallet" and enter the password.
- Select "Export Key Lists" and click the button at the bottom
- Check "Private Key (Plain Base58)" from the checklist and nothing else.
- Select "Omit spaces in key data", as these may cause an "Invalid private key encoding" during import
- Take each private key listed in the window and import them into bitcoin by using this command:
bitcoin-cli importprivkey <privkey>
Just out of curiosity, what aren't you happy about with Armory? I ask because I'm an Armory developer.

Jimmy Song
- 7,759
- 17
- 35
-
1Thanks for the info but I'm just gonna transfer the money. I'm not happy with Armory for the following reasons: 1) dependency on Bitcoin-Qt 2) Poor UX (eg: after sending money I have to wait for two screen changes and a potential popup before the transaction is done and none of this is messaged to the user) 3) Constant crashes 4) Bad update system (I was repeatedly prompted to update to 93 when it still wasn't available) – Paymahn Moghadasian Nov 26 '15 at 00:45
-
Sorry about that. FYI, there will be changes for all those things in the future. – Jimmy Song Nov 26 '15 at 14:35
-
2No need to apologize :) you're providing software for free. – Paymahn Moghadasian Nov 30 '15 at 22:30
-
1As bitcoin-cli might not be installed/available to import the private keys, you may also use the command tool, build into Bitcoin-qt by default (Help > Debug Window > Console), see http://bitcoin.stackexchange.com/a/5944/45378 – pixelbrackets Jan 24 '17 at 07:06
1
just send the money to your new wallet

user30697
- 36
- 1
-
That such an easy solution. Can't believe I didn't think of it... – Paymahn Moghadasian Nov 25 '15 at 23:51
-