amirkhannoriiVolume of the 10 largest sushi liquidity pools
    Updated 2023-03-26
    select top 10 TO_ADDRESS_NAME as pool_name,
    sum(AMOUNT_USD) as "Volume of Pool (USD)"
    from polygon.udm_events
    where TO_LABEL_SUBTYPE='pool'
    and AMOUNT_USD>0
    and TO_LABEL='sushiswap'
    group by 1
    order by 2 DESC;
    Run a query to Download Data