MoeCelsius Swaps - sushi - out
    Updated 2022-06-18
    with cl as (select
    address
    from flipside_prod_db.crosschain.address_labels
    where ADDRESS_NAME = 'celsius wallet' )

    select
    SYMBOL_OUT,
    count(distinct TX_HASH) as swap_count
    from ethereum.core.ez_dex_swaps
    where ORIGIN_FROM_ADDRESS in (select address from cl)
    and platform = 'sushiswap'
    group by 1 order by 2 desc limit 20