MLDZMNSwap from rETH to other currencies
    Updated 2022-09-13
    select
    SYMBOL_Out as token,
    sum(AMOUNT_IN) as amount,
    sum(AMOUNT_IN_USD) as usd_amount,
    count(distinct tx_hash) as no_swaps,
    count(distinct ORIGIN_FROM_ADDRESS) as no_swapper
    from ethereum.core.ez_dex_swaps
    where SYMBOL_IN='rETH'
    group by 1
    order by 2 desc limit 10
    Run a query to Download Data