1pub const CANIC_RESPONSE_CAPABILITY_V1: &str = "canic_response_capability_v1";
6pub const CANIC_PREPARE_DELEGATION_PROOF: &str = "canic_prepare_delegation_proof";
7pub const CANIC_GET_DELEGATION_PROOF: &str = "canic_get_delegation_proof";
8pub const CANIC_REQUEST_ROLE_ATTESTATION: &str = "canic_request_role_attestation";
9pub const CANIC_REQUEST_INTERNAL_INVOCATION_PROOF: &str = "canic_request_internal_invocation_proof";
10pub const CANIC_ATTESTATION_KEY_SET: &str = "canic_attestation_key_set";
11pub const CANIC_BOOTSTRAP_STATUS: &str = "canic_bootstrap_status";
12pub const CANIC_CYCLE_BALANCE: &str = "canic_cycle_balance";
13pub const CANIC_CYCLE_TRACKER: &str = "canic_cycle_tracker";
14pub const CANIC_CYCLE_TOPUPS: &str = "canic_cycle_topups";
15pub const CANIC_METADATA: &str = "canic_metadata";
16pub const CANIC_WASM_STORE_CATALOG: &str = "canic_wasm_store_catalog";
17pub const CANIC_WASM_STORE_INFO: &str = "canic_wasm_store_info";
18pub const CANIC_WASM_STORE_STATUS: &str = "canic_wasm_store_status";
19pub const CANIC_WASM_STORE_PREPARE_GC: &str = "canic_wasm_store_prepare_gc";
20pub const CANIC_WASM_STORE_BEGIN_GC: &str = "canic_wasm_store_begin_gc";
21pub const CANIC_WASM_STORE_COMPLETE_GC: &str = "canic_wasm_store_complete_gc";
22pub const CANIC_WASM_STORE_PREPARE: &str = "canic_wasm_store_prepare";
23pub const CANIC_WASM_STORE_CHUNK: &str = "canic_wasm_store_chunk";
24pub const CANIC_WASM_STORE_PUBLISH_CHUNK: &str = "canic_wasm_store_publish_chunk";
25pub const CANIC_WASM_STORE_STAGE_MANIFEST: &str = "canic_wasm_store_stage_manifest";
26pub const CANIC_WASM_STORE_BOOTSTRAP_RESUME_ROOT_ADMIN: &str =
27 "canic_wasm_store_bootstrap_resume_root_admin";
28pub const CANIC_WASM_STORE_BOOTSTRAP_DEBUG: &str = "canic_wasm_store_bootstrap_debug";
29pub const CANIC_WASM_STORE_OVERVIEW: &str = "canic_wasm_store_overview";
30pub const CANIC_TEMPLATE_PREPARE_ADMIN: &str = "canic_template_prepare_admin";
31pub const CANIC_TEMPLATE_PUBLISH_CHUNK_ADMIN: &str = "canic_template_publish_chunk_admin";
32pub const CANIC_TEMPLATE_STAGE_MANIFEST_ADMIN: &str = "canic_template_stage_manifest_admin";
33
34pub const CANIC_SYNC_STATE: &str = "canic_sync_state";
35pub const CANIC_SYNC_TOPOLOGY: &str = "canic_sync_topology";
36
37pub const CANIC_WASM_STORE_ROOT_UPDATE_METHODS: &[&str] = &[
38 CANIC_WASM_STORE_BEGIN_GC,
39 CANIC_WASM_STORE_CHUNK,
40 CANIC_WASM_STORE_COMPLETE_GC,
41 CANIC_WASM_STORE_INFO,
42 CANIC_WASM_STORE_PREPARE,
43 CANIC_WASM_STORE_PREPARE_GC,
44 CANIC_WASM_STORE_PUBLISH_CHUNK,
45 CANIC_WASM_STORE_STAGE_MANIFEST,
46];
47
48pub const CANIC_WASM_STORE_STRUCTURAL_QUERY_METHODS: &[&str] =
49 &[CANIC_WASM_STORE_CATALOG, CANIC_WASM_STORE_STATUS];
50
51#[must_use]
52pub const fn canic_wasm_store_method_requires_internal_proof(method: &str) -> bool {
53 let _ = method;
54 false
55}