SELECT
block_timestamp,
tx_hash,
platform,
origin_to_address,
origin_from_address,
amount_in_usd,
amount_in,
amount_out_usd,
amount_out,
symbol_in,
symbol_out
FROM
ethereum.defi.ez_dex_swaps
WHERE
platform IN ('uniswap-v2', 'sushiswap')
AND amount_in_usd IS NOT NULL
ORDER BY
amount_in_usd DESC
LIMIT
100