rajsUntitled Query
    Updated 2022-05-09
    SELECT
    date_trunc('week', block_timestamp) as month,
    count(*) as number_of_wallets
    from algorand.account a
    left join algorand.block b
    on a.created_at = b.block_id
    group by 1
    order by 1 desc
    Run a query to Download Data