Building Your Collection Approvals
Approval Categories
Important Notes
Code Example
const mintApprovals = [
// Mint approvals with fromListId: 'Mint'
];
const postMintApprovals = [
// Post-mint approvals with fromListId: '!Mint'
transferableApproval,
burnableApproval,
];
const collectionApprovals = [...mintApprovals, ...postMintApprovals];
const collectionApprovals = [...mintApprovals, ...postMintApprovals];Last updated