diff --git a/spec/http-gateway-protocol-spec.md b/spec/http-gateway-protocol-spec.md index 31385d762..889bb5061 100644 --- a/spec/http-gateway-protocol-spec.md +++ b/spec/http-gateway-protocol-spec.md @@ -140,7 +140,7 @@ Response verification fills the security gap left by query calls. It is a versio - Otherwise, verification fails. 5. Parse the `expr_path` field from the `IC-Certificate` header value as per [the certificate header](#the-certificate-header). 6. The parsed `expr_path` is valid as per [Expression Path](#expression-path) otherwise, verification fails. -7. Case-insensitive search for the `IC-CertificationExpression` header. +7. Case-insensitive search for the `IC-CertificateExpression` header. - If no such header is found, verification fails. - If the header value is not structured as per [the certificate expression header](#the-certificate-expression-header), verification fails. 8. Let `expr_hash` be the label of the node in the tree at path `expr_path`. diff --git a/spec/index.md b/spec/index.md index 25f8a5d61..aff3c8198 100644 --- a/spec/index.md +++ b/spec/index.md @@ -653,7 +653,7 @@ The functionality exposed via the [The IC management canister](#ic-management-ca :::note -Requesting paths with the prefix `/subnet` at `/api/v2/canister//read_state` will be deprecated in a future release of the Interface specification. Hence, users are advised to point their requests for paths with the prefix `/subnet` to `/api/v2/subnet//read_state`. +Requesting paths with the prefix `/subnet` at `/api/v2/canister//read_state` might be deprecated in the future. Hence, users might want to point their requests for paths with the prefix `/subnet` to `/api/v2/subnet//read_state`. On the IC mainnet, the root subnet ID `tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe` can be used to retrieve the list of all IC mainnet's subnets by requesting the prefix `/subnet` at `/api/v2/subnet/tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe/read_state`. @@ -1714,7 +1714,7 @@ This call traps if the amount of cycles refunded does not fit into a 64-bit valu Canisters have the ability to store and retrieve data from a secondary memory. The purpose of this *stable memory* is to provide space to store data beyond upgrades. The interface mirrors roughly the memory-related instructions of WebAssembly, and tries to be forward compatible with exposing this feature as an additional memory. -The stable memory is initially empty and can be grown up to 32 GiB (provided the subnet has capacity). +The stable memory is initially empty and can be grown up to the [Wasm stable memory limit](https://internetcomputer.org/docs/current/developer-docs/backend/resource-limits#resource-constraints-and-limits) (provided the subnet has capacity). - `ic0.stable_size : () → (page_count : i32)` @@ -2014,6 +2014,8 @@ This method traps if the canister's cycle balance decreases below the canister's This method installs code that had previously been uploaded in chunks. +Only controllers of the target canister can call this method. + The `mode`, `arg`, and `sender_canister_version` parameters are as for `install_code`. The `target_canister` specifies the canister where the code should be installed. The optional `storage_canister` specifies the canister in whose chunk storage the chunks are stored (this parameter defaults to `target_canister` if not specified). @@ -5240,7 +5242,7 @@ verify_response(Q, R, Cert') ∧ lookup(["time"], Cert') = Found S.system_time / :::note -Requesting paths with the prefix `/subnet` at `/api/v2/canister//read_state` will be deprecated in a future release of the Interface specification. Hence, users are advised to point their requests for paths with the prefix `/subnet` to `/api/v2/subnet//read_state`. +Requesting paths with the prefix `/subnet` at `/api/v2/canister//read_state` might be deprecated in the future. Hence, users might want to point their requests for paths with the prefix `/subnet` to `/api/v2/subnet//read_state`. On the IC mainnet, the root subnet ID `tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe` can be used to retrieve the list of all IC mainnet's subnets by requesting the prefix `/subnet` at `/api/v2/subnet/tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe/read_state`.