AlishAlgorand active address in a month
    Updated 2022-03-03
    SELECT
    date_trunc('month',block_timestamp) AS mmonth,
    COUNT(DISTINCT address) AS Daily_active_wallets
    FROM algorand.transaction_participation
    WHERE mmonth BETWEEN '2021-11-01' AND '2022-01-31'
    GROUP BY mmonth
    Run a query to Download Data