mint: TxDescriptor<
    {
        amount: bigint;
        beneficiary: MultiAddress;
        id: { interior: XcmV3Junctions; parents: number };
    },
>

Mint assets of a particular class.

The origin must be Signed and the sender must be the Issuer of the asset id.

  • id: The identifier of the asset to have some amount minted.
  • beneficiary: The account to be credited with the minted assets.
  • amount: The amount of the asset to be minted.

Emits Issued event when successful.

Weight: O(1) Modes: Pre-existing balance of beneficiary; Account pre-existence of beneficiary.