HadisehSeasons in the City 6
    Updated 2022-10-19
    select
    date(date) as date,
    DAILY_ACTIVE_WALLETS as total_wallet,
    sum(total_wallet) over (order by date asc) as Cumulative_wallet
    from
    near.core.metrics_active_wallets
    where date >= CURRENT_DATE - 90
    Run a query to Download Data