fb3ce38c-7bfe-475c-bca8-3f1e44ae80a6Solana_Minted_NFTs_Month
    Updated 2023-02-01
    SELECT

    DATE_TRUNC('month',BLOCK_TIMESTAMP) AS month,
    COUNT(tx_id) total_txn
    FROM solana.core.fact_nft_mints


    GROUP BY month
    ORDER BY month ASC
    Run a query to Download Data