PapasotAlgo user growth (transacting wallets)
    Updated 2023-01-03
    select
    date_trunc('day',block_timestamp) as block_day,
    count(distinct address)
    from algorand.transaction_participation
    where block_day >= '2022-02-01'
    group by block_day
    order by block_day


    Run a query to Download Data