0x0D203C32bbd48653fcbf1898B7a8d757d391f7Bc Sushiswap pool had the highest number of transactions in July 2022
    Updated 2022-08-12
    select
    POOL_NAME,
    count(DISTINCT(tx_hash))
    from ethereum.sushi.ez_swaps
    where DATE(BLOCK_TIMESTAMP) BETWEEN '2022-07-01' AND '2022-07-31'
    group by 1
    ORDER BY 2 DESC;
    Run a query to Download Data