TYPE | CHAIN | Avg Fee (USD) | |
---|---|---|---|
1 | Other Chains | Ethereum | 1.068485009 |
2 | Other Chains | BSC | 0.04066097368 |
3 | Other Chains | Linea | 0.03622530351 |
4 | Other Chains | Polygon Zkevm | 0.03622530351 |
5 | Other Chains | Avalanche | 0.03466246433 |
6 | Other Chains | ZkSync | 0.02324227837 |
7 | Other Chains | Base | 0.0171862805 |
8 | Other Chains | Arbitrum | 0.01208945139 |
9 | Other Chains | Optimism | 0.007066647252 |
10 | Other Chains | Scroll | 0.006866423339 |
11 | Other Chains | Polygon | 0.003398369505 |
12 | Other Chains | Boba | 0.0009941833798 |
13 | Other Chains | Ink | 0.0004467696131 |
14 | Other Chains | Kaia | 0.0003020366069 |
15 | Other Chains | Swell | 0.0001174035421 |
16 | Sei | Sei | 0.0001130257971 |
17 | Other Chains | Flow | 0.00001215902178 |
hessprincipal-lime
Updated 2025-06-09Copy Reference Fork
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
›
⌄
with zk_import as ( select * from (
SELECT
livequery.live.udf_api (
'https://api.dune.com/api/v1/query/3865859/results?api_key=nPlMJ4JjTsMZcIo0C6kGSt5rpbcoXujU') as resp)
,
table(FLATTEN(parse_json(resp:data:"result":"rows"))))
,
chains as ( select TO_TIMESTAMP(value:"date") as date,
value:"chain"::string as chain,
'WETH' as symbol,
value:"avg_fee"::string as avg_fee
from zk_import a join ethereum.core.dim_dates b on a.value:"date" = b.date_day
UNION
select date(block_timestamp) as date,
'Arbitrum' as chain,
'WETH' as symbol,
avg(tx_fee) as avg_fee
from arbitrum.core.fact_transactions
where block_timestamp::date >= current_date - 30
and TX_SUCCEEDED = 'TRUE'
group by 1,2,3
UNION
select date(block_timestamp) as date,
'Optimism' as chain,
'WETH' as symbol,
avg(tx_fee) as avg_fee
from optimism.core.fact_transactions
where block_timestamp::date >= current_date - 30
and TX_SUCCEEDED = 'TRUE'
group by 1,2,3
UNION
Last run: 27 days ago
17
683B
239s