MasiTop Tokens ( To DYDX )
    Updated 2023-01-25
    select symbol_in,
    count(DISTINCT tx_hash) as count_swaps,
    sum(AMOUNT_OUT) as dydx_amount
    from ethereum.core.ez_dex_swaps
    where symbol_out = 'DYDX'
    and block_timestamp >= CURRENT_DATE - 210
    and amount_out > 0
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data