hessFee copy
Updated 2023-10-25
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select date(block_timestamp) as date,
tx_id,
'Atom' as chain,
'ATOM' as symbol,
(fee/pow(10,6)) as avg_fee
from cosmos.core.fact_transactions
where block_timestamp::date >= '2023-08-15'
and FEE_DENOM = 'uatom'
and tx_succeeded = 'true'
order by 5 desc
limit 100
Run a query to Download Data