HosseinUntitled Query
    Updated 2023-01-02
    select
    *, sum(new_users) over (ORDER by min_date) as cumulative_users

    from (
    select
    min_date,
    count(*) as new_users
    from (
    select
    tx_from,
    min(block_timestamp::date) as min_date
    from osmosis.core.fact_transactions
    group by tx_from
    )
    group BY 1
    )
    order by min_date
    Run a query to Download Data