Updated 2022-03-21
    SELECT
    BLOCK_TIMESTAMP::date as timeframe,
    TX_ID,
    DIRECTION,
    AMOUNT_USD
    FROM
    ethereum.dex_swaps
    where
    POOL_ADDRESS = '0x66bd3cc6e52cb76696144df432393258f2cb2d66' and AMOUNT_USD is not NULL
    and PLATFORM like 'unis%'
    order by AMOUNT_USD desc limit 5

    Run a query to Download Data