BTC - UTXO Count
Description
The Bitcoin UTXO Size shows the number of unspent transaction outputs (UTXOs) in the ledger at a given time.
Bitcoin's USD Market Price is included for reference.
Pseudocode
for each block in blockchain:
(x,y) := (block.time, block.utxo_size)
for each hour in blockchain:
hr_blk_size := avg(blockchain[hr_start:hr_end].utxo_size)
(x,y) := (hour, hr_blk_size)
for each day in blockchain:
day_blk_size := avg(blockchain[day_start:day_end].utxo_size)
(x,y) := (day, day_blk_size)
Technical Info
While UTXO count generally increases over time, its decreases often have significance. Sometimes, however, it is likely entity asset consolidation.
Derivative metrics are often more directly useful for analysis, since large entities can create and destroy many TXOs doing regular business. Looking at other metrics utilizing the value of the transactions is often more meaningful for discerning technical patterns.
- OP_RETURN (Null Data) TXOs are designed to be excluded from the ledger, and are omitted from this metric.
- Hourly and daily aggregations are derived from block data using average for this metric.
- Hourly data contains occasional gaps; no blocks were generated during these times.
Disclaimers
This site is currently in Beta, and there will likely be some bugs. If you find any, please check out the FAQ first, and then let us know! Thanks! Chart views are saved between visits, so if you have any display issues and want to reset your chart view, click here.
This site is for informational use only. Users are required to conduct their own analysis, draw their own conclusions, and make their own financial decisions. Consult with qualified professionals before making investments. This service is not intended as legal, financial or investment advice. For full details please visit our Disclaimers page.