kentoTransactions Over Time
    Updated 2024-12-03
    SELECT DATE(BLOCK_TIMESTAMP) AS transaction_date, COUNT(TX_HASH) AS transactions_count
    FROM arbitrum.nft.ez_nft_transfers
    WHERE BLOCK_TIMESTAMP >= '2024-11-01'
    AND BLOCK_TIMESTAMP < '2024-12-01'
    GROUP BY DATE(BLOCK_TIMESTAMP);

    QueryRunArchived: QueryRun has been archived