Abbas_ra21most swapped Token
    Updated 2022-06-22
    with Cel AS (
    select
    ADDRESS,
    ADDRESS_NAME
    from flipside_prod_db.crosschain.address_labels
    where ADDRESS_NAME ilike '%Celsius%'
    )
    select
    SYMBOL_OUT,
    count(TX_HASH) AS Swaps
    from ethereum.core.ez_dex_swaps
    where ORIGIN_FROM_ADDRESS in (SELECT ADDRESS from Cel)
    group by 1
    Run a query to Download Data