CHAIN | AVG_FEE | |
---|---|---|
1 | Atom | 0.02653306309 |
2 | BSC | 0.0976167745 |
3 | Sei | 0.00395464435 |
4 | Avalanche | 0.02131784632 |
5 | Polygon | 0.003000881734 |
6 | Solana | 0.01285313983 |
7 | Optimism | 0.008698941551 |
8 | Base | 0.01755026702 |
9 | Aptos | 0.000694765623 |
10 | Ethereum | 0.5584976552 |
11 | Flow | 0.00001549624999 |
0xHaM-dFees
Updated 2025-05-10
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from https://flipsidecrypto.xyz/hess/q/blZ-l4FMTnz3/fees
with chains as (
select date(block_timestamp) as date,
'Aptos' as chain,
'APT' as symbol,
(gas_used * gas_unit_price) / pow(10, 8) as tx_fee
from aptos.core.fact_transactions --a join ethereum.core.dim_dates b on a.block_timestamp::date = b.date_day
where tx_type = 'user_transaction'
AND date >= current_date() - 30
-- and block_timestamp::date >= '2023-11-01'
-- and SUCCESS = TRUE
UNION ALL
select date(block_timestamp) as date,
'Sei' as chain,
'SEI' as symbol,
(split(fee,'usei')[0]/pow(10,6)) as tx_fee
from sei.core.fact_transactions --a join ethereum.core.dim_dates b on a.block_timestamp::date = b.date_day
where date >= current_date() - 30
-- and block_timestamp::date >= '2023-11-01'
-- and TX_SUCCEEDED = TRUE
and split(fee,'usei')[0]/pow(10,6) > 0
UNION ALL
select date(block_timestamp) as date,
'Arbitrum' as chain,
'WETH' as symbol,
tx_fee
from arbitrum.core.fact_transactions -- a join ethereum.core.dim_dates b on a.block_timestamp::date = b.date_day
where date >= current_date() - 30
-- and block_timestamp::date >= '2023-11-01'
-- and status = 'SUCCESS'
UNION ALL
select date(block_timestamp) as date,
'Optimism' as chain,
Last run: 15 days ago
11
275B
188s