Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: vuce on April 20, 2011, 09:34:46 AM



Title: original bitcoin client wallet format
Post by: vuce on April 20, 2011, 09:34:46 AM
I've been searching the wiki/googling for this but couldn't find anything. Can someone help me?

Thanks in advance


Title: Re: original bitcoin client wallet format
Post by: Gavin Andresen on April 20, 2011, 01:11:44 PM
It is a Berkeley DB binary database file.

https://github.com/gavinandresen/bitcointools  has fairly easy to read python code for parsing it-- see
https://github.com/gavinandresen/bitcointools/blob/master/wallet.py


Title: Re: original bitcoin client wallet format
Post by: vuce on April 20, 2011, 04:45:01 PM
It is a Berkeley DB binary database file.

https://github.com/gavinandresen/bitcointools  has fairly easy to read python code for parsing it-- see
https://github.com/gavinandresen/bitcointools/blob/master/wallet.py

thanks!