takamoriUntitled Query
    Updated 2023-03-08
    select extract(hour from block_timestamp), sum(tx_fee)/count(tx_fee)

    from ethereum.core.ez_nft_sales

    where block_timestamp > current_timestamp() - interval '23 hour'
    group by 1 order by 1 desc
    Run a query to Download Data