Sbhn_NPPolygon Top 5 Pools on Sushiswap by Number of Swappers
    Updated 2022-10-16
    select pool_name,
    count (distinct tx_hash) as TX_Count,
    count (distinct origin_froM_address) as Swappers_Count,
    sum (amount_in_usd) as Volume
    from polygon.sushi.ez_swaps
    where block_timestamp >= '2022-06-01'
    group by 1
    order by 3 DESC
    limit 5
    Run a query to Download Data