stop_canister

This section is a work in progress.

Examples:

import { bool, Canister, ic, Principal, update } from 'azle/experimental'; import { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; }) });