Afonso_DiazUntitled Query
    Updated 2023-01-22
    with t as (
    select
    tx_from as sender,
    min(block_timestamp)::date as min_date
    from osmosis.core.fact_transactions
    group by 1
    )
    select
    count(distinct sender) as new_wallets_count
    from t
    where min_date > current_date - 90
    Run a query to Download Data