Sbhn_NPTop 10 Pools on Uniswap Ethereum
    Updated 2023-03-11
    select pool_name,
    count(DISTINCT tx_hash) as swaps,
    count(DISTINCT sender) as swappers,
    sum(amount1_usd) as usd_volume
    from ethereum.uniswapv3.ez_swaps
    where block_timestamp::date >= '2022-06-01'
    and pool_name is not null
    and amount1_usd>0
    group by 1
    order by 2 DESC
    limit 10
    Run a query to Download Data