BTC - Total Tx Fees (Sat)
Description
The Bitcoin Total Transaction Fees shows the cumulative fees paid in Satoshis for each time period.
Bitcoin's USD Market Price is included for reference.
Pseudocode
for each block in blockchain:
block.fees := sum(block.tx[].output[].sat) - sum(block.tx[].input[].sat)
(x,y) := (block.time, block.fees)
for each hour in blockchain:
hr_tx_fees := sum(blockchain[hr_start:hr_end].fees)
(x,y) := (hour, hr_tx_fees)
for each day in blockchain:
day_tx_fees := sum(blockchain[day_start:day_end].fees)
(x,y) := (day, day_tx_fees)
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. For this chart, these fees are simply added up for each data point's timeframe.
Higher cumulative fees indicate a strong user desire to transact. Historically, times of sustained high fees correlate to Bitcoin price movement.
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.
Related Metrics
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.