Type alias CandyMachineV2Gatekeeper

CandyMachineV2Gatekeeper: {
    network: PublicKey;
    expireOnUse: boolean;
}

Gatekeeper settings allow us to protect ourselves against malicious actors such as bots. Whilst the Candy Machine program itself has some protection mechanisms against bots, you may want to add extra protection to ensure only humand can mint from your project.

To enable gatekeeper settings, you must provide the address of a Gatekeeper Network which usually encapsulates multiple gatekeeper providers and is responsible for validating the legitimacy of the minting actor.

Type declaration

  • Readonly network: PublicKey

    The address of your desired Gatekeeper Network.

  • Readonly expireOnUse: boolean

    Whether or not a new challenge should be required after each use.

Generated using TypeDoc