kiacryptoTransaction fees
Updated 2022-05-31
99
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
›
⌄
select date_trunc('day', block_timestamp) as date, 0 as fee, 'flow' as blockchain
from flow.core.fact_transactions
where date >= '2022-05-09'
group by 1
union all
select date_trunc('day', block_timestamp) as date, sum(fee/pow(10, 8)) as fee, 'solana' as blockchain
from flipside_prod_db.solana.fact_transactions
where date >= '2022-05-09'
group by 1
union all
select date_trunc('day', block_timestamp) as date, sum(tx_fee) as fee, 'ethereum' as blockchain
from flipside_prod_db.ethereum_core.fact_transactions
where date >= '2022-05-09'
group by 1
union all
select date_trunc('day', block_timestamp) as date, sum(fee) as fee,'algorand' as blockchain
from flipside_prod_db.algorand.transactions
where date >= '2022-05-09'
group by 1
Run a query to Download Data