MasiAverage Fee
Updated 2024-11-15
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-10-01' and block_timestamp < '2024-11-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-10-01' and block_timestamp < '2024-11-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-10-01' and block_timestamp < '2024-11-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-10-01' and block_timestamp < '2024-11-01'
and status = 'SUCCESS'
QueryRunArchived: QueryRun has been archived