Prepare config.json
Config file consists of all the data needed to set up your minting. You will find a config.example.json file in the root folder.
creator_private_key is required parameter from which candy machine is created. You can create a private key from aptos init command or just export from our available wallet extension.
royalty_points_denominator & royalty_points_numerator
For Royalities, If you want 4.2 % fee on each NFT trade. Your Numerator should be 42 and denominator should be 1000.
Baseuri is the root URL of your metadata collection. You need to provide the arweave url or you can upload your metadata in your server and provide the url.
mutable is the parameter which sets if your collection and token data can be updated by the creator or not.
whitelist is the array of addresses and mint limit for specific address.
public_mint_limit is mint limit of the public sale, if set to zero it means a specific wallet can mint unlimited amount of NFTs.
resource_account is the original creator address which is generated from candy machine program. Learn more here.
Last updated