force_mint: TxDescriptor<{
    collection: number;
    item: number;
    item_config: bigint;
    mint_to: MultiAddress;
}>

Mint an item of a particular collection from a privileged origin.

The origin must conform to ForceOrigin or must be Signed and the sender must be the Issuer of the collection.

  • collection: The collection of the item to be minted.
  • item: An identifier of the new item.
  • mint_to: Account into which the item will be minted.
  • item_config: A config of the new item.

Emits Issued event when successful.

Weight: O(1)