2844Number of swaps in each DEX
    Updated 2022-03-28
    SELECT swap_program , COUNT(swapper) as N_Swaps
    from algorand.swaps
    where swap_program = 'tinyman'
    or swap_program = 'algofi'
    or swap_program = 'pactfi'
    or swap_program = 'wagmiswap'
    and swap_from_amount > '0'
    group by swap_program
    order by N_Swaps desc
    Run a query to Download Data