samAverage Fee copy
Updated 2024-10-29
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 Masi / Average Fee @ https://flipsidecrypto.xyz/Masi/q/wBtwOp-kR1NO/average-fee
-- 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-09-01' and block_timestamp < '2024-10-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-09-01' and block_timestamp < '2024-10-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-09-01' and block_timestamp < '2024-10-01'
and status = 'SUCCESS'
UNION
select date(block_timestamp) as date,
'Avalanche' as chain,
'WAVAX' as symbol,
QueryRunArchived: QueryRun has been archived