ML6Transaction fees op7
Updated 2022-09-08Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
select sum(GAS_LIMIT/1e9), block_timestamp::date,'Flow' as lbl from flow.core.fact_transactions
where block_timestamp::date>='2022-06-15'
group by 2
union
select sum(FEE), block_timestamp::date, 'Algorand' as lbl from flipside_prod_db.algorand.transactions
where block_timestamp::date>='2022-06-15'
group by 2
union
select sum(TX_FEE), block_timestamp::date, 'Ethereum' as lbl from flipside_prod_db.ethereum_core.fact_transactions
where block_timestamp::date>='2022-06-15'
group by 2
union
select sum(TX_FEE), block_timestamp::date, 'Optimism' as lbl from optimism.core.fact_transactions
where block_timestamp::date>='2022-06-15'
group by 2
Run a query to Download Data