Set of properties that manage some characteristics of the process of minting NFTs for a specific collection. For example, if a collection owner wants to have a more distributed minting process accross people and to have equal rights, he can for example limit the number of NFTs one user can mint to 1. This way, more people would have the chance to mint his NFTs and it won't be concentrated between fewer wallets.
Properties:
- collectionId: the id of the collection
- maxMintPerWallet: maximum number of NFTs one wallet can mint
- reveal: if the collection is going to have a process of reveal, for example all NFTs can have a default image and properties and then after a specific time they will be revealed to the actual values.
- placeHolder: url of the image that will be the placeholder for all NFTs if reveal is true.
Example of request:
- Create a Mint Setting:
{
"collectionId": "8b279b58-9f03-4cec-a271-cbfd63b1b29e",
"maxMintPerTransaction": 1,
"reveal": true,
"placeHolder": "www.asset.com/image.png"
}
