start_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({
executeStartCanister: update([Principal], bool, async (canisterId) => {
await ic.call(managementCanister.start_canister, {
args: [
{
canister_id: canisterId
}
]
});
return true;
})
});