NuveveCryptoArchivedMonthly Active Wallets
    Updated 2023-01-15
    select
    date_trunc('month', block_timestamp) as month,
    count(distinct tx_sender) as active_wallets
    from terra.core.fact_transactions
    where block_timestamp < '2023-01-01'
    group by month
    order by month asc

    Run a query to Download Data