15 releases (8 stable)

3.0.0 Dec 7, 2023
2.0.0 Aug 12, 2023
1.1.1 Jun 27, 2023
1.0.1 Mar 20, 2023
0.2.0 Oct 28, 2022

#31 in Magic Beans

Download history 110/week @ 2023-12-14 89/week @ 2023-12-21 56/week @ 2023-12-28 162/week @ 2024-01-04 192/week @ 2024-01-11 370/week @ 2024-01-18 192/week @ 2024-01-25 74/week @ 2024-02-01 38/week @ 2024-02-08 107/week @ 2024-02-15 90/week @ 2024-02-22 77/week @ 2024-02-29 60/week @ 2024-03-07 91/week @ 2024-03-14 38/week @ 2024-03-21 69/week @ 2024-03-28

262 downloads per month
Used in sugar-cli

Custom license

385KB
5.5K SLoC

Metaplex Candy Guard


💡 Update:

From Candy Guard v0.2.0, the serialization logic for the arguments of the initialize and update instructions expect a [u8] represeting the custom serialized struct. This is to ensure adding new guards in the future does not affect clients.

If you are using the mpl-candy-guard npm package, you can serialize the CandyMachineData object using:

import { serialize } from '@metaplex-foundation/mpl-candy-guard';

const data = { ... };
const serializedData = serialize(data);

If you are using the mpl-candy-guard Rust crate, you can serialize the CandyMachineData struct using:

let data = CandyGuardData { ... };
let mut serialized_data = vec![0; data.size()];
data.save(&mut serialized_data)?;

Overview

The new Candy Guard program is designed to take away the access control logic from the Candy Machine to handle the additional mint features, while the Candy Machine program retains its core mint functionality — the creation of the NFT. This not only provides a clear separation between access controls and mint logic, it also provides a modular and flexible architecture to add or remove mint features without having to modify the Candy Machine program.

The access control on a Candy Guard is encapsulated in individuals guards representing a specific rule that needs to be satisfied, which can be enabled or disabled. For example, the live date of the mint is represented as the LiveDate guard. This guard is satisfied only if the transaction time is on or after the configured start time on the guard. Other guards can validate different aspects of the access control – e.g., ensuring that the user holds a specific token (token gating).

Note The Candy Guard program can only be used in combination with Candy Machine Core (Candy Machine V3) accounts. When a Candy Guard is used in combination with a Candy Machine, it becomes its mint authority and minting is only possible through the Candy Guard.

How the program works?

image

The main purpose of the Candy Guard program is to hold the configuration of mint guards and apply them before a user can mint from a candy machine. If all enabled guard conditions are valid, the mint transaction is forwarded to the Candy Machine.

When a mint transaction is received, the program performs the following steps:

  1. Validates the transaction against all enabled guards.
    • If any of the guards fail at this point, the transaction is subject to the BotTax (when the BotTax guard is enabled) and the transaction is then aborted.
  2. After evaluating that all guards are valid, it invokes the pre_actions function on each guard. This function is responsible to perform any action before the mint (e.g., take payment for the mint).
  3. Then the transaction is forwarded to the Candy Machine program to mint the NFT.
  4. Finally, it invokes the post_actions function on each enabled guard. This function is responsible to perform any action after the mint (e.g., freeze the NFT, change the update authority).

A guard is a modular piece of code that can be easily added to the Candy Guard program, providing great flexibility and simplicity to support specific features without having to modify directly the Candy Machine program. Adding new guards is supported by conforming to specific interfaces, with changes isolated to the individual guard – e.g., each guard can be created and modified in isolation. This architecture also provides the flexibility to enable/disable guards without requiring code changes, as each guard has an enable/disable "switch".

The Candy Guard program contains a set of core access control guards that can be enabled/disabled:

  • AddressGate: restricts the mint to a single address
  • Allocation: specify the maximum number of mints in a group (guard set)
  • AllowList: uses a wallet address list to determine who is allowed to mint
  • BotTax: configurable tax (amount) to charge invalid transactions
  • EndDate: determines a date to end the mint
  • FreezeSolPayment: set the price of the mint in SOL with a freeze period.
  • FreezeTokenPayment: set the price of the mint in spl-token amount with a freeze period.
  • Gatekeeper: captcha integration
  • MintLimit: specified a limit on the number of mints per wallet
  • NftBurn: restricts the mint to holders of a specified collection, requiring a burn of the NFT
  • NftGate: restricts the mint to holders of a specified collection
  • NftPayment: set the price of the mint as an NFT of a specified collection
  • ProgramGate: restricts the programs that can be in a mint transaction
  • RedeemedAmount: determines the end of the mint based on a total amount minted
  • SolPayment: set the price of the mint in SOL
  • StartDate: determines the start date of the mint
  • ThirdPartySigner: requires an additional signer on the transaction
  • TokenBurn: restricts the mint to holders of a specified spl-token, requiring a burn of the tokens
  • TokenGate: restricts the mint to holders of a specified spl-token
  • TokenPayment: set the price of the mint in spl-token amount

Along with those guads, amazing teams in the community are making guard programs with new and cool checks. Here are a few teams who have created guards:

Account

The Candy Guard configuration is stored in a single account. The information regarding the guards that are enable is stored in a "hidden" section of the account to avoid unnecessary deserialization.

Field Offset Size Description
0 8 Anchor account discriminator.
base 8 32 PubKey to derive the PDA key. The seed is defined by ["candy_guard", base pubkey].
bump 40 1 u8 representing the bump of the derivation.
authority 41 32 PubKey of the authority address that controls the Candy Guard.
hidden section 73 ~ Hidden data section to avoid unnecessary deserialization. This section of the account is used to serialize the guards data.
- features 73 8 Feature flags indicating which guards are serialized.
- guard set 81 ~ (optional) A sequence of serialized guard structs.
- group counter ~ 4 u32 specifying the number of groups in use.
- groups ~ ~ (optional) A variable number of Group structs representing different guard sets. Each group is defined by:
-- label ~ 6 The label of the group.
-- features ~ 8 Feature flags indicating which guards are serialized for the group.
-- guard set ~ ~ (optional) A sequence of serialized guard structs.

Since the number of guards enabled and groups is variable, the account size is dynamically resized during the update instruction to accommodate the updated configuration.

Instructions

📄 initialize

This instruction creates and initializes a new CandyGuard account.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account PDA key. The PDA is derived using the seed ["candy_guard", base pubkey].
base Base public key for the PDA derivation.
authority Public key of the candy guard authority.
payer Payer of the transaction.
system_program SystemProgram account.
Arguments
Argument Offset Size Description
data 0 ~ Serialized CandyGuardData object as [u8].

The instruction uses a custom serialization in order to maintain backwards compatibility with previous versions of the CandyGuardData struct.

📄 mint (deprecated)

This instruction mints an NFT from a Candy Machine "wrapped" by a Candy Guard. Only when the transaction is succesfully validated, it is forwarded to the Candy Machine.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account PDA key. The PDA is derived using the seed ["candy_guard", base pubkey].
candy_machine_program CandyMachine program ID.
candy_machine The CandyMachine account.
candy_machine_authority_pda Authority PDA key (seeds ["candy_machine", candy_machine pubkey]).
payer Payer of the transaction.
nft_metadata Metadata account of the NFT.
nft_mint Mint account for the NFT. The account should be created before executing the instruction.
nft_mint_authority Mint authority of the NFT.
nft_master_edition Master Edition account of the NFT.
collection_authority_record Authority Record PDA of the collection.
collection_mint Mint account of the collection.
collection_metadata Metadata account of the collection.
collection_master_edition Master Edition account of the collection.
collection_update_authority Update authority of the collection.
token_metadata_program Metaplex TokenMetadata program ID.
token_program spl-token program ID.
system_program SystemProgram account.
rent Rent account.
recent_slothashes SlotHashes account.
instruction_sysvar_account Sysvar1nstructions account.
remaining accounts (optional) A list of optional accounts required by individual guards.
Arguments
Argument Offset Size Description
mint_args 0 ~ [u8] representing arguments for guards; an empty [u8] if there are no arguments.
label ~ 6 (optional) string representing the group label to use for validation of guards.

📄 mint_v2

This instruction mints both NFT or pNFT from a Candy Machine "wrapped" by a Candy Guard. Only when the transaction is succesfully validated, it is forwarded to the Candy Machine.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account PDA key. The PDA is derived using the seed ["candy_guard", base pubkey].
candy_machine_program CandyMachine program ID.
candy_machine The CandyMachine account.
candy_machine_authority_pda Authority PDA key (seeds ["candy_machine", candy_machine pubkey]).
payer Payer of the transaction.
minter Minter (owner) of the NFT.
nft_mint Mint account for the NFT. The account should be created before executing the instruction.
nft_mint_authority Mint authority of the NFT.
nft_metadata Metadata account of the NFT.
nft_master_edition Master Edition account of the NFT.
token (optional) NFT token account.
token_record (optional) Metadata TokenRecord account (required for pNFT)
collection_delegate_record Metadata Delegate Record of the collection.
collection_mint Mint account of the collection.
collection_metadata Metadata account of the collection.
collection_master_edition Master Edition account of the collection.
collection_update_authority Update authority of the collection.
token_metadata_program Metaplex TokenMetadata program ID.
spl_token_program spl-token program ID.
spl_ata_program (optional) spl associated token program.
system_program SystemProgram account.
sysvar_instructions sysvar::instructions account.
recent_slothashes SlotHashes sysvar cluster data.
authorization_rules_program (optional) Token Authorization Rules program.
authorization_rules (optional) Token Authorization Rules account.
remaining accounts (optional) A list of optional accounts required by individual guards.
Arguments
Argument Offset Size Description
mint_args 0 ~ [u8] representing arguments for guards; an empty [u8] if there are no arguments.
label ~ 6 (optional) string representing the group label to use for validation of guards.

📄 route

This instruction routes the transaction to a guard, allowing the execution of custom guard instructions. The transaction can include any additional accounts required by the guard instruction. The guard that will received the transaction and any additional parameters is specified in the RouteArgs struct.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account PDA key.
candy_machine The CandyMachine account.
payer Payer of the transaction.
remaining accounts (optional) A list of optional accounts required by the guard instruction.
Arguments
Argument Size Description
args RouteArgs struct.
- guard 1 Value of enum GuardType
- data ~ [u8] representing arguments for the instruction; an empty [u8] if there are no arguments.
label 6 (optional) string representing the group label to use for retrieving the guards set.

📄 unwrap

This instruction removes a Candy Guard from a Candy Machine, setting the mint authority of the Candy Machine to be the Candy Machine authority. The Candy Gard public key must match the Candy Machine mint_authority for this instruction to succeed.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account PDA key.
authority Public key of the candy_guard authority.
candy_machine The CandyMachine account.
candy_machine_authority Public key of the candy_machine authority.
candy_machine_program CandyMachine program ID.
Arguments

None.

📄 update

This instruction updates the Candy Guard configuration. Given that there is a flexible number of guards and groups that can be present, this instruction will resize the account accordingly, either increasing or decreasing the account size. Therefore, there will be either a charge for rent or a withdraw of rent lamports.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account PDA key.
authority Public key of the candy_guard authority.
payer Payer of the transaction.
system_program SystemProgram account.
Arguments
Argument Offset Size Description
data 0 ~ Serialized CandyGuardData object as [u8].

The instruction uses a custom serialization in order to maintain backwards compatibility with previous versions of the CandyGuardData struct.

📄 withdraw

This instruction withdraws the rent lamports from the account and closes it. After executing this instruction, the Candy Guard account will not be operational.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account.
authority Public key of the candy_guard authority.
Arguments

None.

📄 wrap

This instruction adds a Candy Guard to a Candy Machine. After the guard is added, minting is only allowed through the Candy Guard.

Accounts
Name Writable Signer Description
candy_guard The CandyGuard account PDA key.
authority Public key of the candy_guard authority.
candy_machine The CandyMachine account.
candy_machine_authority Public key of the candy_machine authority.
candy_machine_program CandyMachine program ID.
Arguments

None.

Guards

AddressGate

pub struct AddressGate {
    address: Pubkey,
}

The AddressGate guard restricts the mint to a single address — the address must match the payer's address of the mint transaction.

Allocation

pub struct Allocation {
    pub id: u8,
    pub size: u16,
}

The Allocation guard specifies the maximum number of mints allowed in a group (guard set). The id configuration represents the unique identification for the allocation — changing the id has the effect of restarting the limit, since a different tracking account will be created. The size indicates the maximum number of mints allocated.

Accounts
Name Writable Signer Description
mint_tracker Mint tracker PDA. The PDA is derived using the seed ["allocation", allocation id, candy guard pubkey, candy machine pubkey]

Route Instruction

The allocation PDA needs to be created before the first mint transaction is validated. This is done by a route instruction with the following accounts and RouteArgs:

Accounts
Name Writable Signer Description
proof_pda PDA to represent the allocation (seed ["allocation", allocation id, candy guard pubkey, candy machine pubkey]).
authority Candy Guard authority
system_program System program account.
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.Allocation
- data 0 Empty

AllowList

pub struct AllowList {
    pub merkle_root: [u8; 32],
}

The AllowList guard validates the payer's address against a merkle tree-based allow list of addresses. It required the root of the merkle tree as a configuration and the mint transaction must include the PDA of the merkle proof. The transaction will fail if no proof is specified.

Accounts
Name Writable Signer Description
proof_pda PDA of the merkle proof (seed ["allow_list", merkle tree root, minter key, candy guard pubkey, candy machine pubkey]).

Route Instruction

The merkle proof validation needs to be completed before the mint transaction. This is done by a route instruction with the following accounts and RouteArgs:

Accounts
Name Writable Signer Description
proof_pda PDA to represent the merkle proof (seed ["allow_list", merkle tree root, payer/minter key, candy guard pubkey, candy machine pubkey]).
system_program System program account.
minter (optional) Minter account to validate.
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.AllowList
- data ~ Vec of the merkle proof hash values.

BotTax

pub struct BotTax {
    pub lamports: u64,
    pub last_instruction: bool,
}

The BotTax guard is used to:

  • charge a penalty for invalid transactions. The value of the penalty is specified by the lamports configuration.
  • validate that the mint transaction is the last transaction (last_instruction = true).

The bot_tax is applied to any error that occurs during the validation of the guards.

EndDate

pub struct EndDate {
    pub date: i64,
}

The EndDate guard is used to specify a date to end the mint. Any transaction received after the end date will fail.

FreezeSolPayment

pub struct FreezeSolPayment {
    pub lamports: u64,
    pub destination: Pubkey,
}

The FreezeSolPayment guard is used to charge an amount in SOL (lamports) for the mint with a freeze period. The funds are transferred a freeze escrow until all NFTs are thawed, which at this point, can be transferred (unlock) to the destination account.

Note: The freeze functionality must be initialized using the initialize route instruction before mint starts.

Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination pubkey, candy guard pubkey, candy machine pubkey]).
nft_ata Associate token account of the NFT (seeds [payer pubkey, token program pubkey, nft mint pubkey]).
rule_set (optional) Authorization rule set for the minted pNFT.

Route Instructions

initialize: initializes the freeze escrow PDA.
Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination pubkey, candy guard pubkey, candy machine pubkey]).
authority Candy Guard authority.
system_program System program account.
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.FreezeSolPayment
- data ~
-- ix 1 FreezeInstruction.Initialize
-- period 8 Freeze period in seconds (maximum 30 days)
thaw: thaw an eligible NFT.
Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination pubkey, candy guard pubkey, candy machine pubkey]).
nft_mint Mint account for the NFT.
owner Address of the owner of the NFT.
nft_ata Associate token account of the NFT (seeds [owner pubkey, token program pubkey, nft mint pubkey]).
nft_master_edition Master Edition account of the NFT.
token_program spl-token program ID.
token_metadata_program Metaplex TokenMetadata program.
Below are accounts required for pNFTs:
nft_metadata Metadata account of the NFT.
freeze_pda_ata Freeze PDA associated token account of the NFT.
system_program System program.
sysvar_instructions Sysvar instructions account.
spl_ata_program SPL Associated Token Account program.
owner_token_record Owner token record account.
freeze_pda_token_record Freeze PDA token record account.
authorization_rules_program (optional) Token Authorization Rules program.
authorization_rules (optional) Token Authorization Rules account.
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.FreezeSolPayment
- data 1
-- ix 1 FreezeInstruction.Thaw
unlock_funds: unlocks frozen funds.

Unlock funds is only enabled after all frozen NFTs are thaw.

Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination pubkey, candy guard pubkey, candy machine pubkey]).
authority Candy Guard authority.
destination Address to receive the funds (must match the destination address of the guard configuration).
system_program SystemProgram account.
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.FreezeSolPayment
- data 1
-- ix 1 FreezeInstruction.UnlockFunds

FreezeTokenPayment

pub struct FreezeTokenPayment {
    pub amount: u64,
    pub mint: Pubkey,
    pub destination_ata: Pubkey,
}

The FreezeTokenPayment guard is used to charge an amount in a specified spl-token as payment for the mint with a freeze period. The funds are transferred a freeze escrow until all NFTs are thaw, which at this point, can be transferred (unlock) to the destination account.

Note: The freeze functionality must be initialized using the initialize route instruction before mint starts.

Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination_ata pubkey, candy guard pubkey, candy machine pubkey]).
nft_ata Associate token account of the NFT (seeds [payer pubkey, token program pubkey, nft mint pubkey]).
token_account Token account holding the required amount (seeds [payer pubkey, token program pubkey, mint pubkey]).
freeze_ata Associate token account of the Freeze PDA (seeds [freeze PDA pubkey, token program pubkey, nft mint pubkey]).
rule_set (optional) Authorization rule set for the minted pNFT.

Route Instructions

initialize: initializes the freeze escrow PDA.
Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination_ata pubkey, candy guard pubkey, candy machine pubkey]).
authority Candy Guard authority.
system_program System program account.
freeze_ata Associate token account of the Freeze PDA (seeds [freeze PDA pubkey, token program pubkey, nft mint pubkey]).
token_mint Token mint account (must match the mint address of the guard configuration).
token_program spl-token program ID.
associate_token_program Associate token program account.
destination_ata Address to receive the funds (must match the destination_ata address of the guard configuration).
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.FreezeTokenPayment
- data 9
-- ix 1 FreezeInstruction.Initialize
-- period 8 Freeze period in seconds (maximum 30 days)
thaw: thaw an eligible NFT.
Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination_ata pubkey, candy guard pubkey, candy machine pubkey]).
nft_mint Mint account for the NFT.
owner Address of the owner of the NFT.
nft_ata Associate token account of the NFT (seeds [owner pubkey, token program pubkey, nft mint pubkey]).
nft_master_edition Master Edition account of the NFT.
token_program spl-token program ID.
system_program SystemProgram account.
Below are accounts required for pNFTs:
nft_metadata Metadata account of the NFT.
freeze_pda_ata Freeze PDA associated token account of the NFT.
system_program System program.
sysvar_instructions Sysvar instructions account.
spl_ata_program SPL Associated Token Account program.
owner_token_record Owner token record account.
freeze_pda_token_record Freeze PDA token record account.
authorization_rules_program (optional) Token Authorization Rules program.
authorization_rules (optional) Token Authorization Rules account.
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.FreezeTokenPayment
- data 1
-- ix 1 FreezeInstruction.Thaw
unlock_funds: unlocks frozen funds.

Unlock funds is only enabled after all frozen NFTs are thaw.

Accounts
Name Writable Signer Description
freeze_pda Freeze PDA to receive the funds (seeds ["freeze_escrow", destination_ata pubkey, candy guard pubkey, candy machine pubkey]).
authority Candy Guard authority.
freeze_ata Associate token account of the Freeze PDA (seeds [freeze PDA pubkey, token program pubkey, nft mint pubkey]).
destination_ata Address to receive the funds (must match the destination_ata address of the guard configuration).
token_program spl-token program ID.
system_program SystemProgram account.
Arguments
Argument Size Description
args RouteArgs struct
- guard 1 GuardType.FreezeTokenPayment
- data 1
-- ix 1 FreezeInstruction.UnlockFunds

Gatekeeper

pub struct Gatekeeper {
    pub gatekeeper_network: Pubkey,
    pub expire_on_use: bool,
}

The Gatekeeper guard validates if the payer of the transaction has a token from a specified gateway network — in most cases, a token after completing a captcha challenge. The expire_on_use configuration is used to indicate whether or not the token should expire after minting.

Accounts
Name Writable Signer Description
gatekeeper_token_account Gatekeeper token account.
gatekeeper_program Gatekeeper program account.
network_expire_feature Gatekeeper expire account.

MintLimit

pub struct MintLimit {
    pub id: u8,
    pub limit: u16,
}

The MintLimit guard allows to specify a limit on the number of mints for each individual address. The id configuration represents the unique identification for the limit — changing the id has the effect of restarting the limit, since a different tracking account will be created. The limit indicated the maximum number of mints allowed.

Accounts
Name Writable Signer Description
mint_count Mint counter PDA. The PDA is derived using the seed ["mint_limit", mint guard id, payer key, candy guard pubkey, candy machine pubkey]

NftBurn

pub struct NftBurn {
    pub required_collection: Pubkey,
}

The NftBurn guard restricts the mint to holders of another NFT (token), requiring that the NFT is burn in exchange of being allowed to mint.

Accounts
Name Writable Signer Description
nft_account Token account of the NFT.
nft_metadata Metadata account of the NFT.
nft_edition Master Edition account of the NFT.
nft_mint_account Mint account of the NFT.
nft_mint_collection_metadata Collection metadata account of the NFT.
nft_token_record (optional) Token Record of the NFT (pNFT).

NftGate

pub struct NftGate {
    pub required_collection: Pubkey,
}

The NftGate guard restricts the mint to holders of a specified required_collection NFT collection. The payer is required to hold at least one NFT of the collection.

Accounts
Name Writable Signer Description
nft_account Token account of the NFT.
nft_metadata Metadata account of the NFT.

NftPayment

pub struct NftPayment {
    pub required_collection: Pubkey,
    pub destination: Pubkey,
}

The NftPayment guard is a payment guard that charges another NFT (token) from a specific collection for the mint. As a requirement of the mint, the specified NFT is transferred to the destination address.

Accounts
Name Writable Signer Description
nft_account Token account of the NFT.
nft_metadata Metadata account of the NFT.
nft_mint_account Mint account of the NFT.
destination Account to receive the NFT.
destination_ata Destination PDA key (seeds [destination pubkey, token program id, nft_mint pubkey]).
atoken_progam spl-associate-token program.
owner_token_record (optional) Owner token record account (pNFT).
destination_token_record (optional) Freeze PDA token record account (pNFT).
authorization_rules_program (optional) Token Authorization Rules program (pNFT).
authorization_rules (optional) Token Authorization Rules account (pNFT).

ProgramGate

pub struct ProgramGate {
    pub additional: Vec<Pubkey>,
}

The ProgramGate guard restricts the programs that can be in a mint transaction. The guard allows the necessary programs for the mint and any other program specified in the configuration.

RedeemedAmount

pub struct RedeemedAmount {
    pub maximum: u64,
}

The RedeemedAmount guard stops the mint when the number of items_redeemed of the Candy Machine reaches the configured maximum amount.

SolPayment

pub struct SolPayment {
    pub lamports: u64,
    pub destination: Pubkey,
}

The SolPayment guard is used to charge an amount in SOL (lamports) for the mint. The funds are transferred to the configured destination address.

Accounts
Name Writable Signer Description
destination Address to receive the funds.

StartDate

pub struct StartDate {
    pub date: i64,
}

The StartDate guard determines the start date of the mint. If this guard is not specified, mint is allowed — similar to say any date is valid.

ThirdPartySigner

pub struct ThirdPartySigner {
    pub signer_key: Pubkey,
}

The ThirdPartySigner guard required an extra signer on the transaction.

Accounts
Name Writable Signer Description
signer_key Signer of the transaction.

TokenBurn

pub struct TokenBurn {
    pub amount: u64,
    pub mint: Pubkey,
}

The TokenBurn restrict the mint to holder of a specified spl-token and required the burn of the tokens. The amount determines how many tokens are required.

Accounts
Name Writable Signer Description
token_account Token account holding the required amount.
token_mint Token mint account.

TokenGate

pub struct TokenGate {
    pub amount: u64,
    pub mint: Pubkey,
}

The TokenGate restrict the mint to holder of a specified spl-token. The amount determines how many tokens are required.

Accounts
Name Writable Signer Description
token_account oken account holding the required amount.

TokenPayment

pub struct TokenPayment {
    pub amount: u64,
    pub token_mint: Pubkey,
    pub destination_ata: Pubkey,
}

The TokenPayment restrict the mint to holder of a specified spl-token, transferring the required amount to the destination_ata address. The amount determines how many tokens are required.

Accounts
Name Writable Signer Description
token_account Token account holding the required amount.
destination_ata Address of the ATA to receive the tokens.

Dependencies

~29–40MB
~651K SLoC