Type Alias force_collection_config
force_collection_config: TxDescriptor<{
collection: number;
config: {
max_supply?: number;
mint_settings: {
default_item_settings: bigint;
end_block?: number;
mint_type: Enum<{
HolderOf: number;
Issuer: undefined;
Public: undefined;
}>;
price?: bigint;
start_block?: number;
};
settings: bigint;
};
}>
Change the config of a collection.
Origin must be
ForceOrigin
.collection
: The identifier of the collection.config
: The new config of this collection.Emits
CollectionConfigChanged
.Weight:
O(1)