AnalyticSages2024-02-16 08:21 PM
    Updated 2024-02-16
    SELECT -- * means "all"
    s.block_timestamp,
    s.tx_hash,
    s.origin_to_address, --(Receivers and Deposit)
    l.address,
    s.amount_in_usd,
    s.platform ,
    s.symbol_in
    FROM ethereum.defi.ez_dex_swaps s
    JOIN ethereum.core.dim_labels l
    ON l.address = s.contract_address
    WHERE s.platform = 'uniswap' AND s.amount_in_usd IS NOT NULL

    ORDER BY 5 DESC

    LIMIT 10
    Last run: about 1 year ago
    No Data to Display
    0
    2B
    5s