cypherAvalanche Block and TX performance - hourly tx
    Updated 2023-04-13
    select date_trunc('hour', block_timestamp) as hour,
    count(distinct(tx_hash)) as n_tx
    from avalanche.core.fact_transactions
    where block_timestamp >= '2022-6-20'
    group by hour
    Run a query to Download Data