// The nfts pallet uses inverted bitflags; on means exclude and off means include. import "../../_dnt.polyfills.js"; export const DefaultCollectionSetting = { TransferableItems: 1n << 0n, UnlockedMetadata: 1n << 1n, UnlockedAttributes: 1n << 2n, UnlockedMaxSupply: 1n << 3n, DepositRequired: 1n << 4n, AllOff: 0n, AllOn: 0b11111n, } export const DefaultItemSetting = { Transferable: 1n << 0n, UnlockedMetadata: 1n << 1n, UnlockedAttributes: 1n << 2n, AllOff: 0n, AllOn: 0b111n, }