Creates a brand new Candy Machine with the provided settings.
Unless the withoutCandyGuard option is set to true, a Candy Guard will be created with the given guards and immediately linked to the Candy Machine.
withoutCandyGuard
true
const transactionBuilder = await metaplex .candyMachines() .builders() .create({ itemsAvailable: toBigNumber(5000), sellerFeeBasisPoints: 333, // 3.33% collection: { address: collectionNft.address, updateAuthority: collectionUpdateAuthority, }, });
Generated using TypeDoc
Creates a brand new Candy Machine with the provided settings.
Unless the
withoutCandyGuard
option is set totrue
, a Candy Guard will be created with the given guards and immediately linked to the Candy Machine.