You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/developer-tools/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,13 +18,13 @@ Key features:
18
18
-**Environments**: named deployment targets that combine a network, canister set, and settings (e.g., local, staging, production)
19
19
-**Project scaffolding**: `icp new` bootstraps new projects from official templates
20
20
21
-
For installation, see the [Quickstart](../getting-started/quickstart.md) or the [full CLI documentation](https://cli.internetcomputer.org/1.1/).
21
+
For installation, see the [Quickstart](../getting-started/quickstart.md) or the [full CLI documentation](https://cli.internetcomputer.org/1.3/).
22
22
23
-
Advanced: [creating recipes](https://cli.internetcomputer.org/1.1/guides/creating-recipes) and [creating templates](https://cli.internetcomputer.org/1.1/guides/creating-templates) are documented on the CLI docs site.
23
+
Advanced: [creating recipes](https://cli.internetcomputer.org/1.3/guides/creating-recipes) and [creating templates](https://cli.internetcomputer.org/1.3/guides/creating-templates) are documented on the CLI docs site.
24
24
25
25
icp-cli collects anonymous usage telemetry. Opt out with `icp settings telemetry false` or `DO_NOT_TRACK=1`.
26
26
27
-
Coming from dfx? See the [migration guide](https://cli.internetcomputer.org/1.1/migration/from-dfx).
27
+
Coming from dfx? See the [migration guide](https://cli.internetcomputer.org/1.3/migration/from-dfx).
Copy file name to clipboardExpand all lines: docs/getting-started/project-structure.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ Beyond canisters, `icp.yaml` can also define **networks** (where to deploy) and
72
72
| `local` | `local` (managed, localhost:8000) | Local development |
73
73
| `ic` | `ic` (connected, https://icp-api.io) | Mainnet production |
74
74
75
-
You only need to add custom networks or environments when you have staging environments, testnets, or other deployment targets. See the [icp-cli configuration reference](https://cli.internetcomputer.org/1.1/reference/configuration#networks) for the full schema.
75
+
You only need to add custom networks or environments when you have staging environments, testnets, or other deployment targets. See the [icp-cli configuration reference](https://cli.internetcomputer.org/1.3/reference/configuration#networks) for the full schema.
76
76
77
77
## Canister configuration (canister.yaml)
78
78
@@ -155,7 +155,7 @@ icp project show
155
155
156
156
This outputs the effective configuration, including all expanded recipe steps and implicit defaults.
157
157
158
-
Recipes are Handlebars templates hosted at [dfinity/icp-cli-recipes](https://github.com/dfinity/icp-cli-recipes). You can also create local or remote recipes for custom build patterns. See the [icp-cli recipes documentation](https://cli.internetcomputer.org/1.1/guides/creating-recipes) for details.
158
+
Recipes are Handlebars templates hosted at [dfinity/icp-cli-recipes](https://github.com/dfinity/icp-cli-recipes). You can also create local or remote recipes for custom build patterns. See the [icp-cli recipes documentation](https://cli.internetcomputer.org/1.3/guides/creating-recipes) for details.
159
159
160
160
## The .icp/ directory
161
161
@@ -254,6 +254,6 @@ For a deep dive on binding generation, see [Binding generation](../guides/canist
254
254
- [Binding generation](../guides/canister-calls/candid.md#binding-generation): deep dive on generating type-safe client code
255
255
- [Asset canister](../guides/frontends/asset-canister.md): how the frontend recipe and asset upload work
256
256
- [Canister lifecycle](../guides/canister-management/lifecycle.md): build, deploy, upgrade, and manage canisters
257
-
- [icp-cli reference](https://cli.internetcomputer.org/1.1/reference/cli): full CLI and configuration documentation
257
+
- [icp-cli reference](https://cli.internetcomputer.org/1.3/reference/cli): full CLI and configuration documentation
258
258
259
259
{/* Upstream: informed by dfinity/icp-cli docs/concepts/project-model.md, docs/concepts/recipes.md, docs/concepts/binding-generation.md, docs/concepts/canister-discovery.md */}
Copy file name to clipboardExpand all lines: docs/guides/canister-management/cycles-management.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -307,7 +307,7 @@ icp deploy -e staging
307
307
icp deploy -e production
308
308
```
309
309
310
-
Each environment maintains separate canister IDs. Mainnet IDs are stored in `.icp/data/mappings/<environment>.ids.json` and should be committed to version control. See [Managing environments](https://cli.internetcomputer.org/1.1/guides/managing-environments) for full configuration options.
310
+
Each environment maintains separate canister IDs. Mainnet IDs are stored in `.icp/data/mappings/<environment>.ids.json` and should be committed to version control. See [Managing environments](https://cli.internetcomputer.org/1.3/guides/managing-environments) for full configuration options.
-[Cycles ledger reference](../../references/system-canisters.md#cycles-ledger): Canister IDs and interface specification
376
376
-[Calls with attached cycles](../canister-calls/inter-canister-calls.md#calls-with-attached-cycles): attach cycles to an inter-canister call and accept them in the callee
377
377
-[Reproducible builds](reproducible-builds.md): Verify your WASM is trustworthy before deploying
378
-
-[icp-cli docs](https://cli.internetcomputer.org/1.1/reference/cli#icp-cycles): Full command reference for `icp cycles` and `icp canister top-up`
378
+
-[icp-cli docs](https://cli.internetcomputer.org/1.3/reference/cli#icp-cycles): Full command reference for `icp cycles` and `icp canister top-up`
Copy file name to clipboardExpand all lines: docs/guides/canister-management/lifecycle.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,7 +264,7 @@ This is useful during development when you want a clean slate. The canister ID i
264
264
265
265
Deleting permanently removes a canister from the network. The canister ID cannot be reused.
266
266
267
-
> **Note:** Canisters are like real estate on the IC. Creating them costs cycles. Instead of deleting a canister, consider reusing it in a different project. Check the [cli reference](https://cli.internetcomputer.org/1.1/concepts/project-model/#canister-ids) for more information.
267
+
> **Note:** Canisters are like real estate on the IC. Creating them costs cycles. Instead of deleting a canister, consider reusing it in a different project. Check the [cli reference](https://cli.internetcomputer.org/1.3/concepts/project-model/#canister-ids) for more information.
Additional flags: `--reserved-cycles-limit`, `--wasm-memory-threshold`, `--log-memory-limit`, `--add-environment-variable`. Run `icp canister settings update --help` for the full list.
334
334
335
-
For the full list of CLI flags, see the [icp-cli reference](https://cli.internetcomputer.org/1.1/reference/cli#icp-canister-settings-update).
335
+
For the full list of CLI flags, see the [icp-cli reference](https://cli.internetcomputer.org/1.3/reference/cli#icp-canister-settings-update).
Copy file name to clipboardExpand all lines: docs/guides/canister-management/snapshots.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -181,6 +181,6 @@ icp canister status my-canister -e ic
181
181
-[Canister lifecycle](lifecycle.md): Understand how snapshots fit into the upgrade workflow
182
182
-[Canister migration](canister-migration.md): Complete guide for moving a canister to a different subnet using the snapshot transfer workflow
183
183
-[Canister upgrades security](../security/canister-upgrades.md): Security considerations when using snapshot-based rollbacks
184
-
-[icp-cli canister snapshot reference](https://cli.internetcomputer.org/1.1/guides/canister-snapshots): Full command reference for all snapshot subcommands
184
+
-[icp-cli canister snapshot reference](https://cli.internetcomputer.org/1.3/guides/canister-snapshots): Full command reference for all snapshot subcommands
185
185
186
186
<!-- Upstream: informed by dfinity/icp-cli docs/guides/canister-snapshots.md; dfinity/portal docs/building-apps/canister-management/snapshots.mdx -->
Copy file name to clipboardExpand all lines: docs/guides/digital-assets/ledgers.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,7 @@ ICRC-2 adds an approve/transferFrom pattern. The asset owner first approves a sp
252
252
253
253
**When to use:** Exchange logic, payment processing, subscription services, or any case where a canister needs to pull assets from a user's account.
254
254
255
-
> To grant or inspect an allowance manually without writing code, use the [`icp token approve`](https://cli.internetcomputer.org/1.1/reference/cli#icp-token-approve) and [`icp token allowance`](https://cli.internetcomputer.org/1.1/reference/cli#icp-token-allowance) CLI commands.
255
+
> To grant or inspect an allowance manually without writing code, use the [`icp token approve`](https://cli.internetcomputer.org/1.3/reference/cli#icp-token-approve) and [`icp token allowance`](https://cli.internetcomputer.org/1.3/reference/cli#icp-token-allowance) CLI commands.
0 commit comments