Cookie

By using this site you consent to accept Mesmer Data LLC's analytics and functional cookies.
Read more by clicking 'Cookie Settings' here, or in the bottom menu.

BTC - Block Weight (WU)

Description

The Bitcoin Block Weight shows the average weight in Weight Units (WU) of blocks in each time interval. 1 WU equals 4 vBytes. Legacy (non-SegWit) transactions are weighted by a factor of 4 to their size in bytes, so legacy blocks weigh 1 MvB (4,000,000 WU) with 1 MB of data.

Bitcoin's USD Market Price is included for reference.

Pseudocode

for each block in blockchain:
  (x,y) := (block.time, block.weight)

for each hour in blockchain:
  hr_blk_weight := avg(blockchain[hr_start:hr_end].weight)
  (x,y) := (hour, hr_blk_weight)

for each day in blockchain:
  day_blk_weight := avg(blockchain[day_start:day_end].weight)
  (x,y) := (day, day_blk_weight)

Technical Info

The 'weight' attribute was introduced to the Bitcoin block design with SegWit in 2017. Assigning SegWit transactions a lower weight and lower fee incentivizes keeping the UTXO ledger size to a minimum.

Block weight is a network activity indicator. In particular, the noticable reduction of variance with sustained high block weights indicates network saturation. Applying moving averages reduces variance and makes saturation appear as a sustained high moving average value.

  • 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.