Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: jnano on November 11, 2017, 04:45:26 PM



Title: Site with detailed UTXO set statistics?
Post by: jnano on November 11, 2017, 04:45:26 PM
Does anyone know a site with various UTXO set statistics? I'm looking for a value per UTXO histogram, but other stats could be interesting as well.

There was an old discussion about something of the sort here (https://bitcointalk.org/index.php?topic=994852.0), but I don't know what came out of it.



Title: Re: Site with detailed UTXO set statistics?
Post by: hopeAo on December 11, 2017, 07:02:27 PM
Does anyone know a site with various UTXO set statistics? I'm looking for a value per UTXO histogram, but other stats could be interesting as well.

There was an old discussion about something of the sort here (https://bitcointalk.org/index.php?topic=994852.0), but I don't know what came out of it.



check out this pdf file for information on UTXO set statistic

https://eprint.iacr.org/2017/1095.pdf

you can also read more through the following links

http://gavinandresen.ninja/utxo-uhoh

https://jeiwan.cc/posts/building-blockchain-in-go-part-6/


Title: Re: Site with detailed UTXO set statistics?
Post by: jnano on December 11, 2017, 07:45:53 PM
Thanks.

I'll read the paper in detail, but on a quick scan I don't see monetary values analyzed. But I'll check their STATUS tool (https://github.com/sr-gi/bitcoin_tools/tree/dev/bitcoin_tools/analysis/status).

Still, live stats would be the best. No idea why stat sites don't include it, considering it's easy to generate if they're anyway analyzing the UTXO set.




Title: Re: Site with detailed UTXO set statistics?
Post by: amaclin1 on December 11, 2017, 08:19:02 PM
Does anyone know a site with various UTXO set statistics? I'm looking for a value per
UTXO histogram, but other stats could be interesting as well.

https://p2sh.info
http://statoshi.info


Title: Re: Site with detailed UTXO set statistics?
Post by: jnano on December 11, 2017, 08:31:29 PM
I don't see there stats on the value distribution of UTXOs?


Title: Re: Site with detailed UTXO set statistics?
Post by: amaclin1 on December 12, 2017, 02:37:36 AM
I don't see there stats on the value distribution of UTXOs?
are you blind?

https://p2sh.info/dashboard/db/op_return-statistics?orgId=1
https://p2sh.info/dashboard/db/p2sh-statistics?orgId=1
https://p2sh.info/dashboard/db/p2wpkh-statistics?orgId=1
https://p2sh.info/dashboard/db/p2wsh-statistics?orgId=1
https://p2sh.info/dashboard/db/pay-to-pubkey-hash-statistics?orgId=1


Title: Re: Site with detailed UTXO set statistics?
Post by: jnano on December 12, 2017, 05:36:15 AM
Thanks for the links, but this is not the main thing I was looking for.
The closest graph there has for axes: time, total value. The primary thing I'm after would have: single UTXO value, UTXO count.


Title: Re: Site with detailed UTXO set statistics?
Post by: amaclin1 on December 12, 2017, 05:46:10 AM
The primary thing I'm after would have: single UTXO value, UTXO count.
I think it is possible by parsing BitcoinCore database of UTXO.
Every full node keeps up-to-date list of current utxo set in very simple format.
Loading this data into a spreadsheet should not be difficult.
(Note: I do not see any reason to plot such graph, so I not a person for hire)



Title: Re: Site with detailed UTXO set statistics?
Post by: jnano on December 12, 2017, 06:18:13 AM
It's definitely possible, and the Python tool linked above should do it.
I was just searching for a site that already does it, that's all.