cypherAvalanche Block and TX performance - avg TPS per second by hour
    Updated 2023-04-13
    select
    date_trunc('hour', block_timestamp) as hour,
    sum(tx_count)/3600 as avg_tps
    from avalanche.core.fact_blocks
    where block_timestamp >= '2022-6-20'
    group by hour

    Run a query to Download Data