Available Guards

Edition

Overview

The Edition guard is a special kind of guard. It is not used to charge the buyer, or verify conditions that they are allowed to mint. Instead the Edition guard determines which edition number a created Asset should have.

Guard Settings

The Edition guard contains the following settings:

  • editionStartOffset: The number where the edition number starts counting up.

Set up a Candy Machine using the Edition guard


create(umi, {
  // ...
  guards: {
    edition: { editionStartOffset: 0 },
  },
});

API References: create

Mint Settings

The Edition guard does not need Mint Settings.

Route Instruction

The Edition guard does not require a route instruction.

Previous
End Date