PapasotAlgo user growth 2022
    Updated 2023-01-03
    select
    date_trunc('day',block_timestamp) as block_day,
    count(*)/1000000 as transaction_count_Millions,
    count(distinct(sender))
    from algorand.transactions
    where block_day >= '2022-02-01'
    group by block_day
    order by block_day


    Run a query to Download Data