transfer: TxDescriptor<{
    index: number;
    new: MultiAddress;
}>

Assign an index already owned by the sender to another account. The balance reservation is effectively transferred to the new account.

The dispatch origin for this call must be Signed.

  • index: the index to be re-assigned. This must be owned by the sender.
  • new: the new owner of the index. This function is a no-op if it is equal to sender.

Emits IndexAssigned if successful.

  • O(1).