amirrztop swapped tokens with uniswap-v3
    Updated 2022-10-21
    select
    symbol_in,
    count(DISTINCT tx_hash) as swaps
    from
    ethereum.core.ez_dex_swaps
    where
    event_name like ('Swap')
    and
    symbol_in is not null
    and
    platform like 'uniswap-v3'
    group by 1
    order by 2 desc
    limit 5
    Run a query to Download Data