superfly Arbitrum daily transactions in 2023
    Updated 2023-01-14
    SELECT
    date_trunc('day', block_timestamp) as day,
    COUNT(DISTINCT TX_HASH) as tx_count
    FROM arbitrum.core.fact_transactions
    WHERE day >= CURRENT_DATE - 13
    -- day >= CURRENT_DATE - 30
    GROUP BY 1
    ORDER BY 1 DESC
    Run a query to Download Data