Eman-RazNumber of Unique Users per Month
    Updated 2022-11-08
    select date_trunc('month',block_timestamp) as date, count(distinct from_address) as user_count
    from optimism.core.fact_transactions
    where date<'2022-11-01'
    group by 1
    order by 1

    Run a query to Download Data