Motilola2024-02-02 11:03 AM
    Updated 2024-02-20
    SELECT --*
    event_name,
    block_timestamp,
    tx_hash,
    origin_from_address,
    origin_to_address,
    contract_address,
    amount_in_usd,
    symbol_in
    FROM
    ethereum.defi.ez_dex_swaps
    WHERE amount_in_usd IS NOT NULL
    AND platform LIKE 'uniswap-v2'
    ORDER BY amount_in_usd DESC
    LIMIT 10