hessFee copy
    Updated 2023-10-25
    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