datavortexPrice evolution
    Updated 2024-09-17
    SELECT
    DATE_TRUNC('week', block_timestamp) AS week,
    AVG(token_price) AS average_price,
    SUM(amount_usd) AS total_volume,
    COUNT(DISTINCT tx_hash) AS weekly_transactions
    FROM
    optimism.core.ez_token_transfers
    WHERE
    contract_address = LOWER('0x296F55F8Fb28E498B858d0BcDA06D955B2Cb3f97')
    GROUP BY
    DATE_TRUNC('week', block_timestamp)
    ORDER BY
    week;

    QueryRunArchived: QueryRun has been archived