Sbhn_NPSushiswap Top 5 Pools by Number of Swaps
    Updated 2022-10-26
    select pool_name, count(DISTINCT tx_hash)
    from ethereum.sushi.ez_swaps
    where block_timestamp >= '2022-08-01'
    and pool_name is not null
    group by 1
    order by 2 DESC
    limit 5
    Run a query to Download Data