Bitcoin Forum

Local => Anfänger und Hilfe => Topic started by: AwSuits on May 01, 2013, 09:39:13 PM



Title: Wallet Datei lesen
Post by: AwSuits on May 01, 2013, 09:39:13 PM
Ist es möglich die Wallet Datei auszulesen , damit ich mir die Schlüsselpaare aufschreiben kann.
Verwende den "ofiziellen" Bitcoin Client mit Windows .Verwende Windows , wallet.dat befindet sich im Standardordner (...AppData/Roaming/Bitcoin)  .
Die wallet Datei ist noch unverschlüsselt.

Würde mir gern die Schlüsselpaare ausdrucken oder aufschreiben. Mit dem Editor bekomme ich logischerweise nur wirres Zeug.



mfG


Title: Re: Wallet Datei lesen
Post by: Akka on May 01, 2013, 09:47:58 PM
Code:
1.  launch your bitcoin client as usual and wait for it to load the blockchain and start up
2.click on 'help' in the menu bar (top right)
3.click on 'debug window'
4.select the 'console' tab
5.type: walletpassphrase "your walletpassphrase here" 600
6.type: dumpprivkey [your public key here]
7.this will return the private key, you can copy it now; ensure you clear your clipboard/history afterwards
8.type: walletlock


Title: Re: Wallet Datei lesen
Post by: AwSuits on May 01, 2013, 10:41:17 PM
Code:
1.  launch your bitcoin client as usual and wait for it to load the blockchain and start up
2.click on 'help' in the menu bar (top right)
3.click on 'debug window'
4.select the 'console' tab
5.type: walletpassphrase "your walletpassphrase here" 600
6.type: dumpprivkey [your public key here]
7.this will return the private key, you can copy it now; ensure you clear your clipboard/history afterwards
8.type: walletlock

merci.

------------------------------------------------------
Für unverschlüsselte wallets würde es so aussehen.

Code:
1.  launch your bitcoin client as usual and wait for it to load the blockchain and start up
2.click on 'help' in the menu bar (top right)
3.click on 'debug window'
4.select the 'console' tab
5.type: dumpprivkey [your public key here]
6.this will return the private key, you can copy it now; ensure you clear your clipboard/history afterwards