Post
Topic
Board Announcements (Altcoins)
Re: [ANN][CLAM] CLAMS, Proof-Of-Chain, Proof-Of-Pearl, Recent Mandatory Update
by
hopenotlate
on 10/12/2014, 08:48:54 UTC
bitcoin-qt but don't remember the version (not home now)

launch your bitcoin client as usual and wait for it to load the blockchain and start up
click on 'help' in the menu bar (top right)
click on 'debug window'
select the 'console' tab
type:
Code:
walletpassphrase "your walletpassphrase here" 600
type:
Code:
dumpprivkey "your wallet address here"
this will return the private key, you can copy it now; ensure you clear your clipboard/history afterwards
type:
Code:
walletlock

If you never encrypted your wallet, then you don't need to do the "walletpassphrase" command. That's only needed to unlock the wallet if it is protected with passphrase encryption.
As far as the public key for dumpprivkey, that is asking what Bitcoin address you want the private key for.
To get the list of Bitcoin addresses in your wallet, you can use:
Code:
listreceivedbyaddress 0 true
or
Code:
listaddressgroupings



ty so much for your help sir