mhmAverage/Max/Min number of transactions per block by minute since 20th June 2022
    Updated 2022-06-28
    select trunc(block_timestamp, 'minute') as time, avg(tx_count) as avg_tx_per_block, max(tx_count) as max_tx_per_block, min(tx_count) as min_tx_per_block
    from avalanche.core.fact_blocks
    where block_timestamp::date >= '2022-06-20'
    group by 1
    order by 1
    Run a query to Download Data