afonsotop 10 symbol in tokens swapped to aETHc
    Updated 2023-01-13
    select
    symbol_in as symbol,
    count (distinct tx_hash) as swaps_count,
    count (distinct origin_from_address) as swappers_count,
    sum (amount_out_usd) as volume_usd
    from ethereum.core.ez_dex_swaps
    where token_out = '0xe95a203b1a91a908f9b9ce46459d101078c2c3cb' --aETHc
    group by symbol
    having volume_usd > 0
    and symbol_in is not null
    order by volume_usd desc
    limit 10
    Run a query to Download Data