walemathsTotal Transactions Over Time
    Updated 2024-06-08
    SELECT
    DATE_TRUNC('day', block_timestamp) AS date,
    COUNT(DISTINCT tx_hash) AS total_transactions
    FROM
    avalanche.core.ez_token_transfers
    GROUP BY
    DATE_TRUNC('day', block_timestamp)
    ORDER BY
    date;

    QueryRunArchived: QueryRun has been archived