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

    select count(distinct address) , date from temp_table
    group by date

    Run a query to Download Data