How can I create a list of X richest bitcoin addresses?

2

I have looked around, but I can't find the code related directly to my question. I want to create a list in any format that contains the all accounts with balance over 0 for example. Thanks ahead for any help.

Zee

Posted 2014-11-03T19:54:49.170

Reputation: 123

1

Something like this? From the faq it looks like they used this code. Maybe you can do something with that. Good luck!

Mathias711 2014-11-03T19:58:47.177

Answers

2

  1. Have an up-to-date blockchain in ~/.bitcoin
  2. Download and compile blockparser.
  3. Run ./parser allBalances >allBalances.txt

ike

Posted 2014-11-03T19:54:49.170

Reputation: 328

0

If you have abe-bitcoin installed you can run an sql query on the database.

Or use:

https://bitinfocharts.com/top-100-richest-bitcoin-addresses.html

Yada

Posted 2014-11-03T19:54:49.170

Reputation: 173