bachioptimism2
    Updated 2022-07-27
    select block_number::string as block,
    count(distinct tx_hash) as no_of_transactions
    from arbitrum.core.fact_transactions
    group by block
    order by no_of_transactions DESC
    limit 5000
    Run a query to Download Data