jennifertranAll Transactions on Arbitrum By Date
    Updated 2023-02-06
    select
    count(distinct (tx_hash)),
    date(block_timestamp) as date
    from
    arbitrum.core.fact_event_logs
    where
    tx_status = 'SUCCESS'
    group by
    date
    order by
    date asc
    Run a query to Download Data