Pages:
Author

Topic: Get list of all addresses with a balance over x? - page 2. (Read 43275 times)

newbie
Activity: 5
Merit: 0
can someone post a link to the new list?
newbie
Activity: 5
Merit: 0
yes please. Does someone have a current list?
newbie
Activity: 54
Merit: 0
Hello, starmyc!

I add REDEN (https://github.com/RedenCore/Reden/blob/master/src/chainparams.cpp)

{ "reden",                  { 0x3c }, 1, { 0x10 }, 1 }, // Also uses 60, 16

But have error in cs.errors:

using obfuscation key 6ae3411e08c3ee64
Record type 14 is not handled.
Index: 0e006f62667573636174655f6b6579
Value: 086ae3411e08c3ee64

last block: 64eec3081c401b2fefce63148a8e8621edef23cac15154aa4d51a6714d95ddca

terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::substr: __pos (which is 1) > this->size() (which is 0)
newbie
Activity: 140
Merit: 0
I would recommend ABE, but with it, if you start importing from block 0, it might take a month or two to fully import the blockchain, unless of course you have an SSD and fast RAM
newbie
Activity: 7
Merit: 0
You must take care of waiting a few seconds before copying: bitcoind takes a few seconds to stop & correctly close the database. If you send the kill signal then directly copy the directory, it is possible the database is still marked as open and the leveldb library will refuse to open it, leading to the exception you're hitting. Please add a "sleep 15" after your kill, and check your bitcoind is really down.

If that does not do it, the best I can do is to show the leveldb error message instead of the exception; It would give you an hint. I'll take a look about this tonight.

I have started the bitcoind, waited it to synchronize with network and then stopped via bitcoin-cli stop (this is the correct way as per docs). After a few minutes I copied chainstate and run your software - unfortunately, it still dying with the same error. So it seems like there some problem with leveldb library - maybe it is too old (1.12.0) and incompatible with bitcoin core 0.16.0 database.

Ok I will be waiting and monitoring your git for the version which catches leveldb error.

Thank you for your help. I appreciate it.
full member
Activity: 198
Merit: 130
Some random software engineer
Did you correctly stopped bitcoind before copying the state directory ?

Sure. Here is the script that stops my bitcoind. Is this correct stopping?

Code:
[suser@power ~]$ cat /home/suser/bitcoin-core/.bitcoin/stop.sh
#!/bin/sh
if [ -f /home/suser/bitcoin-core/.bitcoin1/bitcoind.pid ]; then
    kill $(cat /home/suser/bitcoin-core/.bitcoin/bitcoind.pid)
fi

I stopped it before copying. I am using bitcoin core 0.16.0

You must take care of waiting a few seconds before copying: bitcoind takes a few seconds to stop & correctly close the database. If you send the kill signal then directly copy the directory, it is possible the database is still marked as open and the leveldb library will refuse to open it, leading to the exception you're hitting. Please add a "sleep 15" after your kill, and check your bitcoind is really down.

If that does not do it, the best I can do is to show the leveldb error message instead of the exception; It would give you an hint. I'll take a look about this tonight.
newbie
Activity: 7
Merit: 0
Did you correctly stopped bitcoind before copying the state directory ?

Sure. Here is the script that stops my bitcoind. Is this correct stopping?

Code:
[suser@power ~]$ cat /home/suser/bitcoin-core/.bitcoin/stop.sh
#!/bin/sh
if [ -f /home/suser/bitcoin-core/.bitcoin/bitcoind.pid ]; then
    kill $(cat /home/suser/bitcoin-core/.bitcoin/bitcoind.pid)
fi

I stopped it before copying. I am using bitcoin core 0.16.0

full member
Activity: 198
Merit: 130
Some random software engineer
And this:
Code:
[xuser@power chainstate]$ cat /tmp/cs.errors
chainstate: chainstate.cc:82: int main(int, char**): Assertion `status.ok()' failed.

What am I doing wrong?
Thank you for your help!

Likely, the DB can't be opened for some reason. Did you correctly follow the required steps prior using this program ?

I hope so. I have re-installed it two times from the scratch just now. Re-installed dependencies and even installed it under different user - same result.

Can you please take a look at the install log? Here is it: https://pastebin.com/z7h6sdmD

Anything suspicious? What additional info can I provide you with to identify/fix the problem?

Thank you very much!

Did you correctly stopped bitcoind before copying the state directory ?
newbie
Activity: 7
Merit: 0
And this:
Code:
[xuser@power chainstate]$ cat /tmp/cs.errors
chainstate: chainstate.cc:82: int main(int, char**): Assertion `status.ok()' failed.

What am I doing wrong?
Thank you for your help!

Likely, the DB can't be opened for some reason. Did you correctly follow the required steps prior using this program ?

I hope so. I have re-installed it two times from the scratch just now. Re-installed dependencies and even installed it under different user - same result.

Can you please take a look at the install log? Here is it: https://pastebin.com/z7h6sdmD

Anything suspicious? What additional info can I provide you with to identify/fix the problem?

Thank you very much!
full member
Activity: 198
Merit: 130
Some random software engineer
And this:
Code:
[xuser@power chainstate]$ cat /tmp/cs.errors
chainstate: chainstate.cc:82: int main(int, char**): Assertion `status.ok()' failed.

What am I doing wrong?
Thank you for your help!

Likely, the DB can't be opened for some reason. Did you correctly follow the required steps prior using this program ?
newbie
Activity: 7
Merit: 0
Hello starmyc  Smiley

First of all, thanks for a great software. But I am struggling to get it working.

I am on CentOS 7 (7.5.1804)

You stated earlier in this thread that yum install leveldb-devel will be enough to install LevelDB on my OS but I found that CentOS repos doesn't have that lib, so i searched and found it on epel repo.

Running yum install leveldb-devel installed LevelDB 1.12.0 with headers. Then I installed chainstate with no errors, but when I try to run it I am getting this:

Code:
[xuser@power chainstate]$ time ./chainstate >/tmp/cs.output 2>/tmp/cs.errors
Aborted

real    0m0.024s
user    0m0.014s
sys     0m0.004s

And this:
Code:
[xuser@power chainstate]$ cat /tmp/cs.errors
chainstate: chainstate.cc:82: int main(int, char**): Assertion `status.ok()' failed.

What am I doing wrong?
Thank you for your help!

sr. member
Activity: 629
Merit: 252
there are a lot of ways to do that man.
full member
Activity: 198
Merit: 130
Some random software engineer
Could anyone update and share for free BTC actual ballances list, please?

Someone was kindly enough to unlock https://balances.syndevio.com/ for today! Feel free to quick download the balance file.
newbie
Activity: 1
Merit: 0
Could anyone update and share for free BTC actual ballances list, please?
full member
Activity: 198
Merit: 130
Some random software engineer
Starmyc, how about Monero (XMR)?

Not planned for the moment... Monero is not a bitcoin fork, so it would require to reverse engineer bitmonero, and this is not something I've done yet.
jr. member
Activity: 88
Merit: 2
can anyone make a list Ethereum addresses?
newbie
Activity: 54
Merit: 0
Starmyc, how about Monero (XMR)?
full member
Activity: 198
Merit: 130
Some random software engineer
starmyc, can you share older files (may be yesterday's only) for free?
Sorry, i dont have now any donations Sad
Thank you anyway!

Nope, sorry!

Any chance of a seed? Stuck at 0% right now.

If you need quickly an update export of all addresses, I create it & upload it everyday. Smiley

Code:
$ zcat all-up-to-1301.gz | wc -l
408379261

Feel free to contact me for more information!
sr. member
Activity: 490
Merit: 258
Sorry, because they are too much space consuming, I do not offer those.

zip it, make torrent!
..we really need all address even with zero bal.
or help to do it myself
Finally I was able to parse the whole the blockchain.

Here is a list of ALL ever used bitcoin address until 24.06.2018:
http://srv.keinbrot.com/download/Bitcoin_AllAdressesEver_20180624.txt.torrent

If you like it: download and help seeding Wink

Thanks for this daboehla.

Any chance of a seed? Stuck at 0% right now.
Still no luck? How long did you tried?

My utorrent is still seeding since start.

I will check if I manage to upload it somewhere.
newbie
Activity: 1
Merit: 0
Sorry, because they are too much space consuming, I do not offer those.

zip it, make torrent!
..we really need all address even with zero bal.
or help to do it myself
Finally I was able to parse the whole the blockchain.

Here is a list of ALL ever used bitcoin address until 24.06.2018:
http://srv.keinbrot.com/download/Bitcoin_AllAdressesEver_20180624.txt.torrent

If you like it: download and help seeding Wink

Thanks for this daboehla.

Any chance of a seed? Stuck at 0% right now.
Pages:
Jump to: