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 or Signed and the sender should be the Issuer of the collection.

  • collection: The identifier of the collection to change.
  • mint_settings: The new mint settings.

Emits CollectionMintSettingsUpdated event when successful.