CHAIN | TYPE | AVG_FEE | |
---|---|---|---|
1 | Near | Near | 0.003540030475 |
2 | Polygon | Other Chains | 0.01222555124 |
3 | Sei | Other Chains | 0.0155425505 |
4 | Optimism | Other Chains | 0.03141530282 |
5 | Arbitrum | Other Chains | 0.03890453137 |
6 | Base | Other Chains | 0.06740134285 |
7 | Apt | Other Chains | 0.07931632605 |
8 | Avalanche | Other Chains | 0.3359623455 |
9 | Solana | Other Chains | 0.4076763387 |
10 | Ethereum | Other Chains | 6.477816641 |
MasiAverage Fee November
Updated 2024-12-04
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
›
⌄
-- Credit to hess
with chains as (select date(block_timestamp) as date,
'Arbitrum' as chain,
'WETH' as symbol,
tx_fee
from arbitrum.core.fact_transactions
where block_timestamp::date >= '2024-11-01' and block_timestamp < '2024-12-01'
and status = 'SUCCESS'
UNION
select date(block_timestamp) as date,
'Optimism' as chain,
'WETH' as symbol,
tx_fee
from optimism.core.fact_transactions
where block_timestamp::date >= '2024-11-01' and block_timestamp < '2024-12-01'
and status = 'SUCCESS'
UNION
select date(block_timestamp) as date,
'Polygon' as chain,
'WMATIC' as symbol,
tx_fee
from polygon.core.fact_transactions
where block_timestamp::date >= '2024-11-01' and block_timestamp < '2024-12-01'
and status = 'SUCCESS'
UNION
select date(block_timestamp) as date,
'Avalanche' as chain,
'WAVAX' as symbol,
tx_fee
from avalanche.core.fact_transactions
where block_timestamp::date >= '2024-11-01' and block_timestamp < '2024-12-01'
and status = 'SUCCESS'
Last run: about 1 month ago
10
389B
350s