somkene2024-03-04 08:05 PM
    SELECT DATE(block_timestamp) AS date,
    SUM(amount) AS daily_volume
    FROM ethereum.core.fact_token_transfers
    GROUP BY DATE(timestamp)
    ORDER BY DATE(timestamp);

    Run a query to Download Data