Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/theden/btc-heist

Generate bitcoin public and private keys and check if they match a filelist of existing addresses that have a nonzero balance
https://github.com/theden/btc-heist

bitcoin bitcoin-addresses cryptocurrency

Last synced: 21 days ago
JSON representation

Generate bitcoin public and private keys and check if they match a filelist of existing addresses that have a nonzero balance

Awesome Lists containing this project

README

        

# btc-heist

## Running

Install deps, i.e., `python3 -m pip install -r requirements.txt`

Download the [latest list of all funded BTC addresses](http://addresses.loyce.club/)

```bash
wget 'http://addresses.loyce.club/Bitcoin_addresses_LATEST.txt.gz'
gzip -d Bitcoin_addresses_LATEST.txt.gz
```
then run `python3 btc-heist.py`

```
usage: btc-heist.py [-h] [-c CORES] [-f ADDRESSES] [-o KEYFILE]

options:
-h, --help show this help message and exit
-c CORES, --cores CORES
Number of CPU cores to use (default: 4)
-f ADDRESSES, --addresses ADDRESSES
File containing BTC addresses (default:
Bitcoin_addresses_LATEST.txt),
-o KEYFILE, --keyfile KEYFILE
File to output found keys (default: found_keys.txt)
```