TOTAL_FEES | AVG_FEE | MAX_FEE | MEDIAN_FEE | MIN_FEE | |
---|---|---|---|---|---|
1 | 6557001.64884609 | 0.00718895685 | 21000 | 0.001732848 | 0.00105 |
hess19. Total Fees
Updated 2025-04-15
9
1
2
3
4
5
6
7
8
9
›
⌄
select
sum(tx_fee) as total_fees,
avg(tx_fee) as avg_fee,
max(tx_fee) as max_fee,
median(tx_fee) as median_fee,
min(tx_fee) as min_fee
from monad.testnet.fact_transactions
where TX_SUCCEEDED = 'TRUE'
and tx_fee != 0
Last run: 2 months ago
1
60B
22s