Type Alias update_mint_settings
update_mint_settings: TxDescriptor<
{
collection: number;
mint_settings: {
default_item_settings: bigint;
end_block?: number;
mint_type: Enum<
{ HolderOf: number; Issuer: undefined; Public: undefined },
>;
price?: bigint;
start_block?: number;
};
},
>
Update mint settings.
Origin must be either
ForceOrigin
orSigned
and the sender should be the Issuer of thecollection
.collection
: The identifier of the collection to change.mint_settings
: The new mint settings.Emits
CollectionMintSettingsUpdated
event when successful.