Skip to content

ManagedCanisterStatus

ManagedCanisterStatus = { Created: { canister_id: Principal; }; } | { Installed: { canister_id: Principal; installed_wasm_hash: string; }; }

Defined in: packages/cketh/src/candid/orchestrator.d.ts:138

{ Created: { canister_id: Principal; }; }

Created: object

Canister created with the given principal but wasm module is not yet installed.

canister_id: Principal

{ Installed: { canister_id: Principal; installed_wasm_hash: string; }; }

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)

canister_id: Principal

installed_wasm_hash: string