Skip to main content

Managing Candy Machines

info

A newer version of this page is available in the Developer Hub. Click here to read it.

Introduction

On the previous page, we went through the various settings of a Candy Machine. So now, let’s see how we can use these settings to create and update Candy Machines. We’ll also talk about how to fetch an existing Candy Machine and how to delete it when it has served its purpose.

Essentially, we’ll be going through the Create, Read, Update and Delete steps of a Candy Machine. Let’s go!

Create Candy Machines

You may use the settings discussed on the previous page to create a brand-new Candy Machine account.

Our SDKs push this even further and will associate every new Candy Machine account with a new Candy Guard account which keeps track of all activated guards affecting the minting process. On this page, we will focus on the Candy Machine account but we’ll dig into Candy Guard accounts and what we can do with them on dedicated pages.

Remember that a Candy Machine must be associated with a Collection NFT and its update authority must authorize this operation. If you haven’t got a Collection NFT for your Candy Machine yet, our SDKs can help with that too.

JavaScript — Umi library (recommended)

Here’s how you can create a Candy Machine using a brand new Collection NFT via the Umi library.

import {
createNft,
TokenStandard,
} from "@metaplex-foundation/mpl-token-metadata";
import { create } from "@metaplex-foundation/mpl-candy-machine";
import { generateSigner, percentAmount } from "@metaplex-foundation/umi";

// Create the Collection NFT.
const collectionUpdateAuthority = generateSigner(umi);
const collectionMint = generateSigner(umi);
await createNft(umi, {
mint: collectionMint,
authority: collectionUpdateAuthority,
name: "My Collection NFT",
uri: "https://example.com/path/to/some/json/metadata.json",
sellerFeeBasisPoints: percentAmount(9.99, 2), // 9.99%
isCollection: true,
}).sendAndConfirm(umi);

// Create the Candy Machine.
const candyMachine = generateSigner(umi);
await create(umi, {
candyMachine,
collectionMint: collectionMint.publicKey,
collectionUpdateAuthority,
tokenStandard: TokenStandard.NonFungible,
sellerFeeBasisPoints: percentAmount(9.99, 2), // 9.99%
itemsAvailable: 5000,
creators: [
{
address: umi.identity.publicKey,
verified: true,
percentageShare: 100,
},
],
configLineSettings: some({
prefixName: "",
nameLength: 32,
prefixUri: "",
uriLength: 200,
isSequential: false,
}),
}).sendAndConfirm(umi);

As mentioned above, this operation will also take care of creating and associating a new Candy Guard account with the created Candy Machine. That’s because a Candy Machine without a Candy Guard is not very useful and you’ll want to do that most of the time. Still, if you’d like to disable that behaviour, you may use the createCandyMachineV2 method instead.

import { createCandyMachineV2 } from "@metaplex-foundation/mpl-candy-machine";

await createCandyMachineV2(umi, {
// ...
}).sendAndConfirm(umi);

In these examples, we only focused on the required parameters but you may want to check out the following API References to see what you can do with this create function.

API References: create, createCandyMachineV2.

JavaScript — SDK

info

The JS SDK is only compatible with Candy Machine V3 accounts whose account version is 1. That means, it does not support minting programmable NFTs and it is not compatible with Candy Machines created with the latest version of Sugar.

You may consider using the Umi library instead which supports all account versions of Candy Machine V3. Alternatively, you may downgrade you Sugar version to 2.0.0 or use the Solita-generated library.

See Programmable NFTs for more details.

Here’s how you can create a Candy Machine using a brand new Collection NFT using the JS SDK. Notice that, by default, the current identity is used as the authority of these entities.

import { toBigNumber } from "@metaplex-foundation/js";
import { Keypair } from "@solana/web3.js";

// Create the Collection NFT.
const { nft: collectionNft } = await metaplex.nfts().create({
name: "My Collection NFT",
uri: "https://example.com/path/to/some/json/metadata.json",
sellerFeeBasisPoints: 0,
isCollection: true,
});

// Create the Candy Machine.
const { candyMachine } = await metaplex.candyMachines().create({
itemsAvailable: toBigNumber(5000),
sellerFeeBasisPoints: 333, // 3.33%
collection: {
address: collectionNft.address,
updateAuthority: metaplex.identity(),
},
});

As mentioned above, this operation will also take care of creating and associating a new Candy Guard account with the created Candy Machine. That’s because a Candy Machine without a Candy Guard is not very useful and you’ll want to do that most of the time. Still, if you’d like to disable that behaviour, you may use the withoutCandyGuard option.

const { candyMachine } = await metaplex.candyMachines().create({
withoutCandyGuard: true,
// ...
});

In these examples, we only focused on the required parameters but you may want to check out the following API References to see what you can do with this create operation.

API References: Operation, Input, Output, Transaction Builder.

Candy Machine Account

Now that we’ve created the Candy Machine account, let’s see what data is stored inside it.

First of all, it stores all the settings provided when the account was created and keeps track of any changes. See the previous page for more details on these settings.

Additionally, it stores the following attributes:

  • Items Redeemed. This keeps track of the number of NFTs that were minted from the Candy Machine. Note that, as soon as this number goes from 0 to 1, most settings will no longer be updatable.
  • Account Version. This enum is used to keep track of the account version of the Candy Machine. It is used to determine which features are available and how the account should be interpreted. Note that this is not to be confused with "Candy Machine V3" which refers to the third and latest iteration of the Candy Machine programs (including the Candy Machine Core and Candy Guard programs).
  • Feature Flags. This helps the program with backward and forward compatibility as more features get introduced.

Finally, it stores all items inserted in the Candy Machine and whether or not they have been minted. This only applies for Candy Machine using Config Line Settings since Hidden Settings don’t allow you to insert any items. This section contains the following information:

  • The number of items that have been loaded.
  • A list of all items that have been or will be inserted. When an item is not inserted yet, the name and URI of the item at that position are empty.
  • A bitmap — a list of yes or no — that keeps track of which items have been loaded. When this bitmap is full of yeses, all items have been loaded.
  • A list of all items that have not been minted yet when minting using a random order. This allows the program to grab an index at random without having to worry about picking an index that has already been minted and start again.

Note that this last section is purposely not deserialised on the program but our SDKs parse all that data for you in a human-friendly format.

For more detailed information about the Candy Machine account, check out the program’s API References.

JavaScript — Umi library (recommended)

The best way to check how Candy Machines are modelled in the Umi library is by checking the API References of the CandyMachine account. You may also want to check out the API References of the candyGuard account since one is automatically created for each candy machine when using the create function.

Here’s a small code example showcasing some of the Candy Machine attributes.

import {
fetchCandyMachine,
fetchCandyGuard,
} from "@metaplex-foundation/mpl-candy-machine";

const candyMachine = await fetchCandyMachine(umi, candyMachineAddress);
const candyGuard = await fetchCandyGuard(umi, candyMachine.mintAuthority);

candyMachine.publicKey; // The public key of the Candy Machine account.
candyMachine.mintAuthority; // The mint authority of the Candy Machine which, in most cases, is the Candy Guard address.
candyMachine.data.itemsAvailable; // Total number of NFTs available.
candyMachine.itemsRedeemed; // Number of NFTs minted.
candyMachine.items[0].index; // The index of the first loaded item.
candyMachine.items[0].name; // The name of the first loaded item (with prefix).
candyMachine.items[0].uri; // The URI of the first loaded item (with prefix).
candyMachine.items[0].minted; // Whether the first item has been minted.

JavaScript — SDK

The best way to check how Candy Machines are modelled in the JS SDK is by checking the API References of the CandyMachine model. Notice how the CandyMachine model encapsulates both the Candy Machine account and the (optional) Candy Guard account so you have everything you need under the same object.

Here’s a small code example showcasing some of the Candy Machine attributes.

const { candyMachine } = await metaplex.candyMachines().create({...});

candyMachine.address; // The public key of the Candy Machine account.
candyMachine.itemsAvailable; // Number of NFTs available.
candyMachine.itemsMinted; // Number of NFTs minted.
candyMachine.itemsRemaining; // Number of NFTs left to mint.
candyMachine.items[0].index; // The index of the first loaded item.
candyMachine.items[0].name; // The name of the first loaded item (with prefix).
candyMachine.items[0].uri; // The URI of the first loaded item (with prefix).
candyMachine.items[0].minted; // Whether the first item has been minted.

Fetch Candy Machines

To fetch an existing Candy Machine, you simply need to provide its address and our SDKs will take care of parsing the account data for you.

JavaScript — Umi library (recommended)

Here’s how you can fetch a Candy Machine using its address and its associated Candy Guard account if any.

import { publicKey } from "@metaplex-foundation/umi";
import {
fetchCandyMachine,
fetchCandyGuard,
} from "@metaplex-foundation/mpl-candy-machine";

const candyMachine = await fetchCandyMachine(umi, publicKey("..."));
const candyGuard = await fetchCandyGuard(umi, candyMachine.mintAuthority);

API References: fetchCandyMachine, fetchCandyGuard.

JavaScript — SDK

Here’s how you can fetch a Candy Machine using its address on the JS SDK.

import { PublicKey } from "@solana/web3.js";

const candyMachine = await metaplex
.candyMachines()
.findByAddress({ address: new PublicKey("Gjwc...thJS") });

API References: Operation, Input, Output.

Update Authorities

Once a Candy Machine is created, you can update most of its settings later on, as long as you are the authority of the Candy Machine. In the next few sections we’ll see how to update these settings but first, let's see how you can update the Authority and Mint Authority of a Candy Machine.

  • To update the authority, you need to pass the current authority as a signer and the address of the new authority.
  • To update the mint authority, you need to pass both the current authority and the new mint authority as signers. This is because the mint authority is mostly used to associate a Candy Guard with a Candy Machine. Making the mint authority a signer prevents anyone to use someone else Candy Guard as this could create side effects on the original Candy Machine.

JavaScript — Umi library (recommended)

Here’s how you can update the authority of a Candy Machine using the Umi library. Note that, in most cases, you'll want to update the authority of the associated Candy Guard account as well.

import { generateSigner } from "@metaplex-foundation/umi";
import {
setCandyMachineAuthority,
setCandyGuardAuthority,
} from "@metaplex-foundation/mpl-candy-machine";

const newAuthority = generateSigner(umi);
await setCandyMachineAuthority(umi, {
candyMachine: candyMachine.publicKey,
authority: currentAuthority,
newAuthority: newAuthority.publicKey,
})
.add(
setCandyGuardAuthority(umi, {
candyGuard: candyMachine.mintAuthority,
authority: currentAuthority,
newAuthority: newAuthority.publicKey,
})
)
.sendAndConfirm(umi);

Whilst you’d probably never want to update the mintAuthority directly since it would override the associated Candy Guard account, this is how you’d do it.

import { generateSigner } from "@metaplex-foundation/umi";
import { setMintAuthority } from "@metaplex-foundation/mpl-candy-machine";

const newMintAuthority = generateSigner(umi);
await setMintAuthority(umi, {
candyMachine: candyMachine.publicKey,
authority: currentAuthority,
mintAuthority: newMintAuthority,
}).sendAndConfirm(umi);

API References: setCandyMachineAuthority, setCandyGuardAuthority, setMintAuthority.

JavaScript — SDK

Here’s how you can update the authority of a Candy Machine using the JS SDK.

import { Keypair } from '@solana/web3.js';

const currentAuthority = Keypair.generate();
const newAuthority = Keypair.generate();
const candyMachine = await metaplex
.candyMachines()
.findByAddress({...});

await metaplex.candyMachines().update({
candyMachine,
authority: currentAuthority,
newAuthority: newAuthority.address,
});

const updatedCandyMachine = await metaplex
.candyMachines()
.refresh(candyMachine);

Note that, contrary to the create operation, the update operation does not return the updated Candy Machine model as you might not need it. If you do, you may use the refresh operation as demonstrated in the example above.

Whilst you’d probably never want to update the mintAuthority directly since it would override the associated Candy Guard account, this is how you’d do it.

import { Keypair } from "@solana/web3.js";

const currentAuthority = Keypair.generate();
const newMintAuthority = Keypair.generate();

await metaplex.candyMachines().update({
candyMachine,
authority: currentAuthority,
newMintAuthority: newMintAuthority, // Notice this must be a Signer.
});

Finally, note that the update method can be used to update for a variety of settings and you may also update them all at once. Check out the following API References to see everything available to you.

API References: Operation, Input, Output, Transaction Builder.

Update Shared NFT Data

You may also update the attributes shared between all minted NFTs of a Candy Machine. As mentioned in the previous page, these are: Seller Fee Basis Points, Symbol, Max Edition Supply, Is Mutable and Creators.

Note that once the first NFT has been minted, these attributes can no longer be updated.

JavaScript — Umi library (recommended)

Here’s an example of updating some of the shared NFT data on a Candy Machine.

import { percentAmount } from "@metaplex-foundation/umi";
import {
updateCandyMachine,
fetchCandyMachine,
} from "@metaplex-foundation/mpl-candy-machine";

const candyMachine = await fetchCandyMachine(umi, candyMachineAddress);
await updateCandyMachine(umi, {
candyMachine: candyMachine.publicKey,
data: {
...candyMachine.data,
symbol: "NEW",
sellerFeeBasisPoints: percentAmount(5.5, 2),
creators: [{ address: newCreator, verified: false, percentageShare: 100 }],
},
}).sendAndConfirm(umi);

API References: updateCandyMachine.

JavaScript — SDK

Here’s an example of updating some of the shared NFT data on a Candy Machine. Any attributes that are not explicitly provided will stay the same.

await metaplex.candyMachines().update({
candyMachine,
symbol: "NEW",
sellerFeeBasisPoints: 100,
creators: [{ address: newCreator, share: 100 }],
});

API References: Operation, Input, Output, Transaction Builder.

Update Token Standard

The Token Standard and Rule Set attributes can also be updated on a Candy Machine using the "Set Token Standard" instruction. This allows us to switch from regular NFTs to programmable NFTs and vice versa. When switching to programmable NFTs, we can optionally specify or update the Rule Set that minted NFTs should adhere to.

Note that, if you candy machine is using an old account version, this instruction will also automatically upgrade it to the latest account version that supports programmable NFTs as well as regular NFTs. Once upgraded, you will need to use the latest instructions for minting from the candy machine or candy guard.

JavaScript — Umi library (recommended)

Here's an example of updating the token standard and rule set on a Candy Machine using Umi.

import { TokenStandard } from "@metaplex-foundation/mpl-token-metadata";
import { setTokenStandard } from "@metaplex-foundation/mpl-candy-machine";

await setTokenStandard(umi, {
candyMachine: candyMachine.publicKey,
collectionMint: candyMachine.collectionMint,
collectionUpdateAuthority,
tokenStandard: TokenStandard.ProgrammableNonFungible,
ruleSet: newRuleSetAccount,
}).sendAndConfirm(umi);

Note that if your candy machine is using account version V1, you will need to explicitly set the collectionAuthorityRecord account as it uses the legacy collection delegate authority record account.

import { findCollectionAuthorityRecordPda } from "@metaplex-foundation/mpl-token-metadata";
import { findCandyMachineAuthorityPda } from "@metaplex-foundation/mpl-candy-machine";

await setTokenStandard(umi, {
// ...
collectionAuthorityRecord: findCollectionAuthorityRecordPda(umi, {
mint: candyMachine.collectionMint,
collectionAuthority: findCandyMachineAuthorityPda(umi, {
candyMachine: candyMachine.publicKey,
}),
}),
}).sendAndConfirm(umi);

API References: setTokenStandard.

JavaScript — SDK

info

The JS SDK is only compatible with Candy Machine V3 accounts whose account version is 1. That means, it does not support minting programmable NFTs and it is not compatible with Candy Machines created with the latest version of Sugar.

You may consider using the Umi library instead which supports all account versions of Candy Machine V3. Alternatively, you may downgrade you Sugar version to 2.0.0 or use the Solita-generated library.

See Programmable NFTs for more details.

This operation is not supported by the JS SDK but you may use the Solita-generated library as explained in the Programmable NFTs page.

Update Collection

Changing the Collection NFT associated with a Candy Machine is also possible. You’ll need to provide the address of the Collection NFT’s mint account as well as its update authority as a signer to approve this change.

Note that, here also, once the first NFT has been minted, the collection cannot be changed.

JavaScript — Umi library (recommended)

To update the Collection NFT of a Candy Machine using the Umi library you may use the setCollectionV2 method like so.

await setCollectionV2(umi, {
candyMachine: candyMachine.publicKey,
collectionMint: candyMachine.collectionMint,
collectionUpdateAuthority: collectionUpdateAuthority.publicKey,
newCollectionMint: newCollectionMint.publicKey,
newCollectionUpdateAuthority,
}).sendAndConfirm(umi);

Note that if your candy machine is using account version V1, you will need to explicitly set the collectionDelegateRecord account as it uses the legacy collection delegate authority record account.

import { findCollectionAuthorityRecordPda } from "@metaplex-foundation/mpl-token-metadata";
import { findCandyMachineAuthorityPda } from "@metaplex-foundation/mpl-candy-machine";

await setCollectionV2(umi, {
// ...
collectionDelegateRecord: findCollectionAuthorityRecordPda(umi, {
mint: candyMachine.collectionMint,
collectionAuthority: findCandyMachineAuthorityPda(umi, {
candyMachine: candyMachine.publicKey,
}),
}),
}).sendAndConfirm(umi);

API References: setCollectionV2.

JavaScript — SDK

info

The JS SDK is only compatible with Candy Machine V3 accounts whose account version is 1. That means, it does not support minting programmable NFTs and it is not compatible with Candy Machines created with the latest version of Sugar.

You may consider using the Umi library instead which supports all account versions of Candy Machine V3. Alternatively, you may downgrade you Sugar version to 2.0.0 or use the Solita-generated library.

See Programmable NFTs for more details.

To update the Collection NFT of a Candy Machine using the JS SDK you must provide a collection object containing the address of the Collection NFT’s mint account and the updateAuthority of the Collection NFT as a signer.

await metaplex.candyMachines().update({
candyMachine,
collection: {
address: newCollection.address,
updateAuthority: newCollectionAuthority,
},
});

API References: Operation, Input, Output, Transaction Builder.

Update Item Settings

The item settings of a Candy Machine can also be updated but there are some limitations.

  • The item settings cannot be updated such that we are swapping between Config Line Settings and Hidden Settings. However, if we’re not swapping the modes, the properties inside these settings can be updated.
  • When using Config Line Settings:
    • The Items Available attribute cannot be updated.
    • The Name Length and URI Length properties can only be updated to smaller values as the program will not resize the Candy Machine account during updates.
  • Once the first NFT has been minted, these settings can no longer be updated.

JavaScript — Umi library (recommended)

The following example shows how to update the Config Line Settings of a Candy Machine using the Umi library. The same can be done with Hidden Settings and the Items Available attribute (when using Hidden Settings).

import {
updateCandyMachine,
fetchCandyMachine,
} from "@metaplex-foundation/mpl-candy-machine";

const candyMachine = await fetchCandyMachine(umi, candyMachineAddress);
await updateCandyMachine(umi, {
candyMachine: candyMachine.publicKey,
data: {
...candyMachine.data,
hiddenSettings: none(),
configLineSettings: some({
type: "configLines",
prefixName: "My New NFT #$ID+1$",
nameLength: 0,
prefixUri: "https://arweave.net/",
uriLength: 43,
isSequential: true,
}),
},
}).sendAndConfirm(umi);

API References: updateCandyMachine.

JavaScript — SDK

The following example shows how to update the Config Line Settings of a Candy Machine using the JS SDK. The same can be done with Hidden Settings and the Items Available attribute (when using Hidden Settings).

await metaplex.candyMachines().update({
candyMachine,
itemSettings: {
type: "configLines",
prefixName: "My New NFT #$ID+1$",
nameLength: 0,
prefixUri: "https://arweave.net/",
uriLength: 43,
isSequential: true,
},
});

API References: Operation, Input, Output, Transaction Builder.

Delete Candy Machines

Once a Candy Machine has been fully minted, it has served its purpose and can safely be disposed of. This allows its creator to gain back the storage cost of the Candy Machine account and, optionally, the Candy Guard account too.

JavaScript — Umi library (recommended)

You may delete a Candy Machine account and/or its associated Candy Guard account using the Umi library like so.

import {
deleteCandyMachine,
deleteCandyGuard,
} from "@metaplex-foundation/mpl-candy-machine";

await deleteCandyMachine(umi, {
candyMachine: candyMachine.publicKey,
}).sendAndConfirm(umi);

await deleteCandyGuard(umi, {
candyGuard: candyMachine.mintAuthority,
}).sendAndConfirm(umi);

API References: deleteCandyMachine, deleteCandyGuard.

JavaScript — SDK

You may delete a Candy Machine account using the JS SDK like so.

await metaplex.candyMachines().delete({
candyMachine: candyMachine.address,
});

Note that this will only delete the Candy Machine account and not the associated Candy Guard account to avoid bad surprises. If you want to delete both of them, you must also provide the address of the Candy Guard address like so.

await metaplex.candyMachines().delete({
candyMachine: candyMachine.address,
candyGuard: candyMachine.candyGuard.address,
});

API References: Operation, Input, Output, Transaction Builder.

Conclusion

We can now create, read, update and delete Candy Machines but we still don’t know how to load them with items. Let’s tackle this on the next page!