MetiocreAlgorand Unique Users(Addresses) Growth
    Updated 2022-02-07

    select date(b.block_timestamp) as date, count(distinct address) as wallets_created
    from algorand.account as a, algorand.block as b
    where year(b.block_timestamp)>= '2021' and b.block_id = a.created_at
    group by date
    order by date desc
    Run a query to Download Data