CoinConverseCelsius Swaps top 10 token by swapping to
    Updated 2022-06-17
    with celsius_wallets as (select address
    from flipside_prod_db.crosschain.address_labels
    where project_name like '%celsius network%')

    select symbol_out, count(tx_hash) as num_swaps
    from ethereum.core.ez_dex_swaps
    where origin_from_address in (select address from celsius_wallets) and symbol_out is not null
    group by 1
    order by num_swaps desc
    limit 10
    Run a query to Download Data