fantaJanuary 2022
    Updated 2022-02-28
    with temp_table as (select address , block_timestamp:: date as date from algorand.transaction_participation
    where
    date >= '2022-01-01' and date <= '2022-01-31'
    )

    select count(distinct address) , date from temp_table
    group by date
    Run a query to Download Data