i_danWeek 1 Assignment - 2024-04-29 06:39 PM
    Updated 2024-04-30
    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
    QueryRunArchived: QueryRun has been archived