0xtollexOM transaction
    Updated 2024-03-26
    SELECT
    date_trunc('week', block_timestamp) as Date,
    tx_hash,
    amount_in_usd,
    platform
    FROM ethereum.defi.ez_dex_swaps
    WHERE block_timestamp >= '2023-01-01' AND
    token_in = '0x3593d125a4f7849a1b059e64f4517a86dd60c95d'
    OR token_out = '0x3593d125a4f7849a1b059e64f4517a86dd60c95d'
    AND amount_in_usd is NOT NULL

    ORDER BY 1 DESC
    --LIMIT 1000

    QueryRunArchived: QueryRun has been archived