kiichiUntitled Query
    Updated 2022-07-28
    SELECT
    date_trunc(day,block_timestamp) as date,
    avg(tx_count) as arbitrum_avg_tx_per_block
    from arbitrum.core.fact_blocks
    where year(block_timestamp)='2022'
    group by 1
    Run a query to Download Data