Updated 2022-03-22
    select count(*) as cnt,block_timestamp::date as dt from algorand.swaps
    where swap_program='pactfi' and swap_from_amount!=0 and dt >= '2022-01-01'
    group by dt
    order by cnt desc
    Run a query to Download Data