Soheil_MKWhich tokens did they swap the most from
    Updated 2022-06-22
    with cel as (
    select address
    from flipside_prod_db.crosschain.address_labels
    where BLOCKCHAIN='ethereum' and PROJECT_NAME ='celsius network')

    select
    SYMBOL_IN,
    count(SYMBOL_IN)
    from ethereum.core.ez_dex_swaps
    where ORIGIN_FROM_ADDRESS in (select address from cel )
    group by 1
    order by 2 desc
    limit 15
    Run a query to Download Data