transfer: TxDescriptor<{
    collection: number;
    dest: MultiAddress;
    item: number;
}>

Move an item from the sender account to another.

Origin must be Signed and the signing account must be either:

  • the Owner of the item;
  • the approved delegate for the item (in this case, the approval is reset).

Arguments:

  • collection: The collection of the item to be transferred.
  • item: The item to be transferred.
  • dest: The account to receive ownership of the item.

Emits Transferred.

Weight: O(1)