Start Date Guard
The Start Date guard determines the start date of the mint. Before this date, minting is not allowed.
Before that date
minting will fail
Core Candy MachineOwner: Core Candy Machine Core ProgramCore Candy GuardOwner: Core Candy Guard ProgramGuardsstartDate- Date...
Mint from
Core Candy Guard Program
Access Control
Mint from
Core Candy Machine Program
Mint Logic
Asset
Guard Settings
The Start Date guard contains the following settings:
Date: The date before which minting is not allowed.
Set up a Core Candy Machine using the Start Date Guard
JavaScript
import { dateTime } from "@metaplex-foundation/umi";
create(umi, {
// ...
guards: {
startDate: some({ date: dateTime("2022-01-24T15:30:00.000Z") }),
},
});
API References: create, StartDate
Mint Settings
The Start Date guard does not need Mint Settings.
Route Instruction
The Start Date guard does not support the route instruction.
Last updated