Author

Topic: Looking for pywallet tutorial for non-tech newbie (Read 503 times)

newbie
Activity: 37
Merit: 0
November 03, 2017, 09:59:51 PM
#5
The other day I got a help from a friend about this problem. If I can find it, send your source to you.
member
Activity: 78
Merit: 10
Install python(2.7) to your computer, then unzip "bitcoin 1.1.42" package to Lib folder in python(2.7), then run idle and open new file, use code below and run module

from bitcoin import *

for addr in range(1):
    priv = sha256(random_key())
    pub = privtopub(priv)
    addr = pubtoaddr(pub)
           print (addr)
           print (priv)
full member
Activity: 217
Merit: 109
I have problem with qt wallet. After my PC crash I manage to recover my wallet.dat
then I reinstall qt-wallet and copy wallet.dat to appfolder. When I run qt wallet, it gives error "Wallet.dat corrupt...."
I then googling how to recover correct wallet, and found there's an python application called pywallet can do the job.
the problem is I am very non-techie noobie and completely know nothing about python.
Anyone can refer me to any tutorial for dummy about this pywallet?

Thank you in advance.

Ditto Sad
HCP
legendary
Activity: 2086
Merit: 4318
There isn't one.

Also, if you were using a recent version of Bitcoin-Qt, there is a good chance that pywallet won't work properly anyway, as the wallet file format was updated/changed since pywallet was last updated (late 2014!!?!).

The script chokes on a bunch of "unknown" and/or "unexpected" data fields if I remember correctly...

Python scripts and operating from the command line aren't really "non-techie"... You'll just have to read the pywallet thread and use Google Wink

Refer: https://bitcointalksearch.org/topic/pywallet-22-manage-your-wallet-update-required-34028
full member
Activity: 280
Merit: 107
I have problem with qt wallet. After my PC crash I manage to recover my wallet.dat
then I reinstall qt-wallet and copy wallet.dat to appfolder. When I run qt wallet, it gives error "Wallet.dat corrupt...."
I then googling how to recover correct wallet, and found there's an python application called pywallet can do the job.
the problem is I am very non-techie noobie and completely know nothing about python.
Anyone can refer me to any tutorial for dummy about this pywallet?

Thank you in advance.
Jump to: