I'm trying to create a NFT collection of 999 pieces. Out of this 999 pieces 23 will be reserved for early investors (they will receive a custom NFT). Because there is no way to mint a specific NFT (investor NFT) - I was advised to create 2 candy machines, one public which will be connected to the Candy Machine UI and one private which I will use to mint all investor NFTs and airdrop manually.
I set up the folder like this
./public-assets/
- NFTs for the Public Machine
./private-assets/
- NFTs for the Private Machine
./public-config.json
- Configuration for the Public Machine
./private-config.json
- Configuration for the Private Machine
Now in theory the public-assets directory will contain 976 assets and the private-assets directory will contain 23 NFTs and configurations will match that number.
I have a number of issues regarding this approach:
"Collection Name #0" (public mint)"
= "Collection Name #0" (private mint)
- even though the NFTs are differentWould there be a better approach to this problem? And if so how can it solve all the issues I'm facing? TMy first stack overflow post, sorry if didn't provide enough details.
-m <collection>
. This will automatically make the minted NFTs part of that collection.