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 - Total Tx Fees, BRC-20-Adjusted (Sat)

Description

The Bitcoin Total Transaction Fees, BRC-20-Adjusted shows the sum of fees paid in Satoshis for each time period, excluding BRC-20 reveal transaction fees. Unadjusted fees (Sat) shows the adjustment's effect. Separating out BRC-20 transactions allows us to see how much network activity is substantial, and how much is lower-impact BRC-20 transactions.

Adjusted data starts at BRC-20's first block: 767430 (Dec 14, 2022)

Bitcoin's USD Market Price is included for reference.

Pseudocode

for each block in blockchain:
  block.fees_sum := sum(block.tx[].output[].sats) - sum(block.tx[].input[].sats)
  block.fees_brc20 := sum(block.brc20_tx[].output[].sats) - sum(block.brc20_tx[].input[].sats)
  block.fees_adj := fees_sum - fees_brc20
  (x,y1) := (block.time, block.fees_sum)
  (x,y2) := (block.time, block.fees_adj)

for each hour in blockchain:
  hr_tx_fees_sum := sum(blockchain[hr_start:hr_end].fees_sum)
  hr_tx_fees_adj := sum(blockchain[hr_start:hr_end].fees_adj)
  (x,y1) := (hour, hr_tx_fees_avg)
  (x,y2) := (hour, hr_tx_fees_sum)

for each day in blockchain:
  day_tx_fees_sum := sum(blockchain[day_start:day_end].fees_sum)
  day_tx_fees_adj := sum(blockchain[day_start:day_end].fees_adj)
  (x,y1) := (day, day_tx_fees_sum)
  (x,y2) := (day, day_tx_fees_adj)

Technical Info

When a transaction is created, extra Satoshis are voluntarily included by the transactor that miners can claim, called fees. Fees are the incentive for a miner to prioritize one's transaction. They are found by subtracting the value sum of a transaction's outputs from it's inputs.

Higher fees indicate a strong user desire to transact. Historically, times of sustained high fees correlate to Bitcoin price movement.

Since transaction inscriptions were made popular with the BRC-20 protocol, Bitcoin's transaction backlog has grown so much that most blocks since its inception have been filled up with transactions. This saturation has made it difficult to see non-BRC-20 activity without adjusting metrics. This chart separates the data and allows us to see both components.

The USD-valued version of this metric is available on its own page. See related metrics.

  • Hourly and daily aggregations are derived from block data using sum 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.