alfredfx10Number of mints per Month
    Updated 2024-05-04
    SELECT COUNT(DISTINCT NFT_ADDRESS) Number_of_mint,
    DATE_TRUNC ('month', BLOCK_TIMESTAMP) AS Month
    FROM ethereum.nft.ez_nft_mints
    WHERE DATE(BLOCK_TIMESTAMP) >='2024-01-01' AND
    DATE(BLOCK_TIMESTAMP)<= '2024-04-30'
    GROUP BY 2
    ORDER BY 2 ASC
    QueryRunArchived: QueryRun has been archived