force_item_status: TxDescriptor<{
    admin: MultiAddress;
    collection: number;
    free_holding: boolean;
    freezer: MultiAddress;
    is_frozen: boolean;
    issuer: MultiAddress;
    owner: MultiAddress;
}>

Alter the attributes of a given item.

Origin must be ForceOrigin.

  • collection: The identifier of the item.
  • owner: The new Owner of this item.
  • issuer: The new Issuer of this item.
  • admin: The new Admin of this item.
  • freezer: The new Freezer of this item.
  • free_holding: Whether a deposit is taken for holding an item of this collection.
  • is_frozen: Whether this collection is frozen except for permissioned/admin instructions.

Emits ItemStatusChanged with the identity of the item.

Weight: O(1)