ML6Daily transactions in each second
    Updated 2022-08-08
    select count(distinct TX_HASH)/(24*60*60) as t_seconds,to_date(BLOCK_TIMESTAMP)
    from optimism.core.fact_transactions
    where to_date(BLOCK_TIMESTAMP) > '2022-06-30' and to_date(BLOCK_TIMESTAMP) <= '2022-07-31'
    group by 2
    Run a query to Download Data