ManagedCanisterStatus
ManagedCanisterStatus = {
Created: {canister_id:Principal; }; } | {Installed: {canister_id:Principal;installed_wasm_hash:string; }; }
Defined in: packages/cketh/src/candid/orchestrator.d.ts:138
Type Declaration
Section titled “Type Declaration”{ Created: { canister_id: Principal; }; }
Created
Section titled “Created”Created:
object
Canister created with the given principal but wasm module is not yet installed.
Created.canister_id
Section titled “Created.canister_id”canister_id:
Principal
{ Installed: { canister_id: Principal; installed_wasm_hash: string; }; }
Installed
Section titled “Installed”Installed:
object
Canister created and wasm module installed. The wasm_hash reflects the installed wasm module by the orchestrator but may differ from the one being currently deployed (if another controller did an upgrade)
Installed.canister_id
Section titled “Installed.canister_id”canister_id:
Principal
Installed.installed_wasm_hash
Section titled “Installed.installed_wasm_hash”installed_wasm_hash:
string