superfly Arbitrum daily transactions in 2023
    Updated 2023-01-13
    select date_trunc('day', BLOCK_TIMESTAMP) as block_date,
    count (distinct TX_HASH) as transaction_count
    from arbitrum.core.fact_transactions
    where STATUS = 'SUCCESS'
    group by 1
    order by 1


    Run a query to Download Data