grahamUntitled Query
    Updated 2022-12-09
    select
    block_timestamp::date as days,
    count(distinct FROM_ADDRESS) as dau,
    count(*) as txns
    from arbitrum.core.fact_transactions
    where status = 'SUCCESS'
    group by days
    order by days
    Run a query to Download Data