andurilNFT Mints Primary vs Secondary
    Updated 2022-10-09

    select
    'CMV2 Primary Mints' as type,
    --date(block_timestamp) as date,
    count(distinct tx_id) as mints,
    l.label as label
    FROM solana.core.fact_nft_mints m
    left join solana.core.dim_labels l
    on m.mint = l.address
    WHERE mint_currency = 'So11111111111111111111111111111111111111111'
    AND block_timestamp::DATE >= '2022-01-01'
    and program_id = 'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ'
    --and label is not null
    group by label
    order by mints desc

    /*
    union

    select
    'CMV2 Secondary Mints' as type,
    date(block_timestamp) as date,
    count(distinct tx_id) as mints
    FROM solana.core.fact_nft_mints
    WHERE mint_currency <> 'So11111111111111111111111111111111111111111'
    AND block_timestamp::DATE >= '2022-06-01'
    and program_id = 'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ'
    group by date
    */
    Run a query to Download Data