mariyaNumber of Transaction on Algofi
    Updated 2022-05-18
    select date_trunc('day', block_timestamp) as day,
    count(distinct(tx_group_id)) as count_tx
    from algorand.swaps
    where swap_program = 'algofi'
    and day >= '2022-01-01'
    and swap_from_amount > 0
    group by 1
    order by 1 asc
    Run a query to Download Data