zakkisyed1.SUSHIswap pool/volume on Ethereum
    Updated 2021-12-08

    select distinct(to_address_name) as pool_name, sum(amount)/1e18 as volume_in_M, sum(amount_usd)/1e18 as volume_usd_in_M
    from ethereum.udm_events
    where origin_function_name = 'swapExactTokensForTokens'
    and to_label = 'sushiswap'


    group by pool_name
    order by volume_in_M desc


    Run a query to Download Data