Start Date Guard
The Start Date guard determines the start date of the mint. Before this date, minting is not allowed.
Guard Settings
import { dateTime } from "@metaplex-foundation/umi";
create(umi, {
// ...
guards: {
startDate: some({ date: dateTime("2022-01-24T15:30:00.000Z") }),
},
});Mint Settings
Route Instruction
Last updated