Skip to content

Instantly share code, notes, and snippets.

View TheComputerGenie's full-sized avatar
🙈
I see nothing. I know nothing!

ComputerGenie TheComputerGenie

🙈
I see nothing. I know nothing!
View GitHub Profile
@TheComputerGenie
TheComputerGenie / bitwalletrecover.py
Last active August 7, 2022 11:54 — forked from miketout/bitwalletrecover.py
bitwalletrecover.py - recover compressed private keys from your bitcoin/litecoin/darkcoin wallet. Requires python3, pycoin (https://pypi.python.org/pypi/pycoin), and base58 (https://pypi.python.org/pypi/base58).
#!/usr/bin/env python
## bitwalletrecover.py - recover private keys from your darkcoin wallet
## (this version was not tested with bitcoin/litecoin).
## Requires python3, pycoin (https://pypi.python.org/pypi/pycoin),
## and base58 (https://pypi.python.org/pypi/base58).
##
## Starting with Python 3.4, pip is included by default with the Python binary
## installers. To install pip for older versions 3.x:
##
## sudo apt-get install python3-setuptools