Vernon715 (OP)
|
|
June 07, 2012, 04:57:07 PM |
|
How do I extract private keys from the standard bitcoin client?
I am running windows 7.
Also, what clients allow for you to enter private keys?
|
|
|
|
kokjo
Legendary
Offline
Activity: 1050
Merit: 1000
You are WRONG!
|
|
June 07, 2012, 05:03:54 PM |
|
I am running windows 7.
0. get a real computer(linux) 1. download https://github.com/gavinandresen/bitcointools2. ./dbdump.py --wallet
|
"The whole problem with the world is that fools and fanatics are always so certain of themselves and wiser people so full of doubts." -Bertrand Russell
|
|
|
flatfly
Legendary
Offline
Activity: 1092
Merit: 1016
760930
|
|
June 07, 2012, 09:38:24 PM |
|
No need for Linux to do that. To extract your private keys, Pywallet works just fine on windows. You need to install python 2.7 first. Let me know if you need help with the process. As for clients that support importing of external keys, for windows, check out Electrum and MultiBit, both are real good. To compare their features, you can use my chart, which is up-to-date: http://dre.tx0.org/compare.htm (There's Armory too, but it's still in alpha for now)
|
|
|
|
Vernon715 (OP)
|
|
June 07, 2012, 11:50:03 PM Last edit: June 08, 2012, 12:09:41 AM by Vernon715 |
|
No need for Linux to do that. To extract your private keys, Pywallet works just fine on windows. You need to install python 2.7 first. Let me know if you need help with the process. As for clients that support importing of external keys, for windows, check out Electrum and MultiBit, both are real good. To compare their features, you can use my chart, which is up-to-date: http://dre.tx0.org/compare.htm (There's Armory too, but it's still in alpha for now) I have python 3.2. Will that still work? Thanks! EDIT: The chart is VERY useful...Thanks again.
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1358
Merit: 1002
|
|
June 08, 2012, 12:11:32 AM |
|
$ ./bitcoind dumpprivkey [bitcoin address]
|
|
|
|
Vernon715 (OP)
|
|
June 08, 2012, 12:24:26 AM |
|
$ ./bitcoind dumpprivkey [bitcoin address] I am assuming that is what I put into python shell, and, when I did that, I was told that it was invalid syntax, due to the dollar sign. What did I do wrong? Thanks!
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1358
Merit: 1002
|
|
June 08, 2012, 12:28:26 AM |
|
$ ./bitcoind dumpprivkey [bitcoin address] I am assuming that is what I put into python shell, and, when I did that, I was told that it was invalid syntax, due to the dollar sign. What did I do wrong? Thanks! No. That's what you put into your normal command line if you're runing linux. If you're on windows you'll need to use the complete path the the bitcoind binary. The dollar sign just tells you the command is to be used with a normal user account(not root). lol Resuming: You just need bitcoin to be run as a server to dump your private keys. Forget pywallet. Don't over complicate your life.
|
|
|
|
cantor
Newbie
Offline
Activity: 31
Merit: 0
|
|
June 08, 2012, 12:28:51 AM |
|
$ ./bitcoind dumpprivkey [bitcoin address] I am assuming that is what I put into python shell, and, when I did that, I was told that it was invalid syntax, due to the dollar sign. What did I do wrong? Thanks! What it means is open a console terminal and type in that command. Since you're on Windows, you'll probably have to go to the directory with the bitcoind executable, and run: bitcoind dumpprivkey [bitcoin address]
|
|
|
|
Vernon715 (OP)
|
|
June 08, 2012, 12:52:07 AM |
|
No. That's what you put into your normal command line if you're runing linux. If you're on windows you'll need to use the complete path the the bitcoind binary.
The dollar sign just tells you the command is to be used with a normal user account(not root). lol
Resuming: You just need bitcoin to be run as a server to dump your private keys. Forget pywallet. Don't over complicate your life.
Can you give me a bit more explanation? My technical skills are limited, and I am not sure how to run bitcoin as a server. Thanks, Vernon715
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1358
Merit: 1002
|
|
June 08, 2012, 01:16:51 AM Last edit: June 08, 2012, 12:26:02 PM by psy |
|
Click the Bitcoin shortcut with the right button of the mouse and select Properties. On the path entry of the properties window write -server at the end and save Start bitcoin using that shortcut and it's running as a server
next: open your command prompt. write: cd "C:\Program Files\Bitcoin\daemon"
Now that your on the bitcoin directory write: bitcoind dumpprivkey [bitcoin address] and press enter. don't forget to replace [bitcoin address] with the address you wish to get the private key from
If you don't get it and have Teamviewer I can help you. Send me a PM with your teamviewer ID and PIN.
|
|
|
|
someguy123
|
|
June 08, 2012, 04:34:23 AM |
|
cd "C:\Program Files\Bitcoin\"
Slightly wrong, you need to cd "C:\Program Files\Bitcoin\daemon"
and if you're on 64-bit cd "C:\Program Files (x86)\Bitcoin\daemon"
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1358
Merit: 1002
|
|
June 08, 2012, 04:35:37 AM |
|
eh, I use linux. Sorry about the wrong path
|
|
|
|
Vernon715 (OP)
|
|
June 08, 2012, 12:24:25 PM |
|
Thanks!
|
|
|
|
|