NFT Minting Contract (TokenV2 & PropertyMap) #155
-
Hi, is there any known contract or standard that is used as a candy machine to mint NFTs? I want to find a way to mint 10k NFTs in a safe and secure way. I have around 16 different traits, and each of them has 5-10 values. Questions that have been popping up are:
I assume I'd have even more questions if I thought even more deeply, but if someone could answer this, it would push me in the right direction. What error, if any, are you getting?No response What have you tried or looked at? Or how can we reproduce the error?Not relevant. Which operating system are you using?Linux (Ubuntu, Fedora, Windows WSL, etc.) Which SDK or tool are you using? (if any)TypeScript SDK Describe your environment or tooling in detailNot relevant. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
-
We are building a minting standard as part of AIP 72, which will provide a range of modules and examples to create collections and tokens. The token-minter repo contains the move components for collection and token creation; to use under For randomness, we have true randomness coming soon! So for now, you can use psuedorandomness, and switch to the We are working to put together something similar to what you have asked for (creating NFTs with randomized traits, trait uploading etc). Will provide more details once this is being progressed. |
Beta Was this translation helpful? Give feedback.
We are building a minting standard as part of AIP 72, which will provide a range of modules and examples to create collections and tokens. The token-minter repo contains the move components for collection and token creation; to use under
/token-minter
. The other repos provide examples on how to use this repo, along with other features such as composability and extending the tokens.For randomness, we have true randomness coming soon! So for now, you can use psuedorandomness, and switch to the
randomness
module once that is released on mainnet.We are working to put together something similar to what you have asked for (creating NFTs with randomized traits, trait uploading etc). Will provi…