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 - Tx Cumulative Count

Description

The Bitcoin Cumulative Total Transaction Count gives the count of all historical bitcoin transactions. This metric is most useful as a reference, used in conjunction with other data.

Bitcoin's USD Market Price is included for reference.

Pseudocode

for each block in blockchain:
  cuml_tx_sum += block.tx_count
  (x,y) := (block.time, cuml_tx_sum)

for each hour in blockchain:
  hr_tx_sum := open(blockchain[hr_start:hr_end].cuml_tx_sum)
  (x,y) := (hour, hr_tx_sum)

for each day in blockchain:
  day_tx_sum := open(blockchain[day_start:day_end].cuml_tx_sum)
  (x,y) := (day, day_tx_sum)

Technical Info

The historical transaction cumulative total count is a neat number to watch over time but useful mostly for derivative and utility calculations.

  • Hourly and daily aggregations are derived from block data using open for this metric. Open grouping uses the first data in a timeframe to represent that timeframe.
  • 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.