Bitcoin Forum

Bitcoin => Bitcoin Discussion => Topic started by: drrussellshane on March 29, 2013, 06:25:52 PM



Title: What is the easiest, safest way for me to see my private keys in satoshi client?
Post by: drrussellshane on March 29, 2013, 06:25:52 PM
I know there is a dumpprivkey command in the console, but is there a way to show all the private keys for all addresses in the wallet?


Title: Re: What is the easiest, safest way for me to see my private keys in satoshi client?
Post by: onelineproof on March 29, 2013, 07:24:50 PM
you can try my open source software if you like (cwallet)


Title: Re: What is the easiest, safest way for me to see my private keys in satoshi client?
Post by: Stephen Gornick on March 29, 2013, 10:25:57 PM
I know there is a dumpprivkey command in the console, but is there a way to show all the private keys for all addresses in the wallet?


pywallet has a dumpwallet command.

From the console, listaddressgroupings.
 - http://bitcoin.stackexchange.com/a/8393/153


Title: Re: What is the easiest, safest way for me to see my private keys in satoshi client?
Post by: dserrano5 on March 30, 2013, 01:36:21 AM
Code:
for ADDR in $(bitcoind listreceivedbyaddress |awk '/address/ { print $3 }' |tr -d '",'); do bitcoind dumpprivkey $ADDR; done |less