Interface: iCollectionInvariants<T>
CollectionInvariants defines the invariants that apply to a collection. These are set upon genesis and cannot be modified.
Defined in: packages/bitbadgesjs-sdk/src/interfaces/types/core.ts:948
CollectionInvariants defines the invariants that apply to a collection. These are set upon genesis and cannot be modified.
Extended by
Type Parameters
T
T extends NumberType
Properties
cosmosCoinBackedPath?
optionalcosmosCoinBackedPath?:iCosmosCoinBackedPath<T>
Defined in: packages/bitbadgesjs-sdk/src/interfaces/types/core.ts:964
The IBC backed (sdk.coin) path for the collection. Only one path is allowed.
disablePoolCreation
disablePoolCreation:
boolean
Defined in: packages/bitbadgesjs-sdk/src/interfaces/types/core.ts:976
If true, disallows pool creation with this collection's assets. When true, any attempt to create a pool with assets from this collection will fail.
evmQueryChallenges?
optionalevmQueryChallenges?:iEVMQueryChallenge<T>[]
Defined in: packages/bitbadgesjs-sdk/src/interfaces/types/core.ts:983
EVM query invariants that must pass after all transfers complete. These are checked once per message after all balance updates, with access to ALL recipient addresses. Placeholders: $sender, $recipients (comma-separated), $initiator, $collectionId, $recipient
maxSupplyPerId
maxSupplyPerId:
T
Defined in: packages/bitbadgesjs-sdk/src/interfaces/types/core.ts:959
Maximum supply per token ID. If set, no balance can exceed this amount. This prevents any single token ID from having more than the specified supply.
noCustomOwnershipTimes
noCustomOwnershipTimes:
boolean
Defined in: packages/bitbadgesjs-sdk/src/interfaces/types/core.ts:953
If true, all ownership times must be full ranges [{ start: 1, end: GoMaxUInt64 }]. This prevents time-based restrictions on token ownership.
noForcefulPostMintTransfers
noForcefulPostMintTransfers:
boolean
Defined in: packages/bitbadgesjs-sdk/src/interfaces/types/core.ts:970
If true, disallows any collection approvals that have overridesFromOutgoingApprovals or overridesToIncomingApprovals set to true. This prevents forceful post-mint transfers that bypass user-level approvals.