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