cypheroptimism hourly number of transactions
    Updated 2022-08-18
    select date_trunc('hour', block_timestamp) as hour,
    count(distinct(tx_hash)) as n_tx
    from optimism.core.fact_transactions
    where block_timestamp >= '2022-6-20'
    group by hour
    Run a query to Download Data