elsina✅ fees: Average Transaction Fees in Each Hour ($AVAX)
    Updated 2023-05-07
    select
    hour(block_timestamp) as "Hour",
    avg(tx_fee) as "Fee"
    from avalanche.core.fact_transactions
    where block_timestamp::date < current_date and block_timestamp::date >= '2022-01-01'
    group by 1
    order by "Hour"
    Run a query to Download Data