SalehUnique Users-
    Updated 2022-06-07
    select
    block_timestamp::date as day
    ,count(DISTINCT tx_from) as wallets
    ,sum(wallets) over (order by day) as wallets_growth
    from osmosis.core.fact_transactions
    where block_timestamp::date >= '2022-02-01'
    and TX_STATUS = 'SUCCEEDED'
    group by 1
    order by 1
    Run a query to Download Data