2844DEX VOLUME
    Updated 2022-07-07
    SELECT swap_program , COUNT(swapper) as N_Swaps
    from flipside_prod_db.algorand.swaps
    where swap_program = 'tinyman'
    or swap_program = 'algofi'
    or swap_program = 'pactfi'
    or swap_program = 'wagmiswap'
    and swap_from_amount > '0'
    AND block_timestamp>= '2022-05-01' and block_timestamp <'2022-07-01'
    group by swap_program
    order by N_Swaps desc
    Run a query to Download Data