2844Number of Swaps in each DEX
    Updated 2022-04-06
    select platform,count(tx_id) as N_swaps
    from ethereum.dex_swaps
    where block_timestamp >= '2021-05-04'
    and amount_in > '0'
    and platform not like 'curve%'
    and direction = 'IN'
    group by platform
    order by N_swaps desc
    Run a query to Download Data