Skip to content

Commit

Permalink
Update cycles convert command
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiemongeon1 committed Sep 25, 2024
1 parent b1e86d0 commit f4ce766
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ This will output something like this:
With those ICP tokens ready, you can now convert them into cycles using the following command:

```
dfx cycles convert AMOUNT --network ic
dfx cycles convert --amount AMOUNT --network ic
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ To convert ICP tokens to cycles:
With those ICP tokens ready, you can now convert them into cycles using the following command:

```
dfx cycles convert AMOUNT --network ic
dfx cycles convert --amount AMOUNT --network ic
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ This will output something like this:
Once you have your ICP tokens ready, you will need to convert them into cycles. To convert ICP into cycles using the cycles ledger, use the command:

```
dfx cycles convert AMOUNT --network ic
dfx cycles convert --amount AMOUNT --network ic
```

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ dfx ledger --network ic balance
After you have your ICP tokens ready, you can convert them into cycles using the command:

```
dfx cycles convert AMOUNT --network ic
dfx cycles convert --amount AMOUNT --network ic
```

## Deploying your dapp to the mainnet
Expand Down
2 changes: 1 addition & 1 deletion submodules/motoko
Submodule motoko updated 48 files
+2 −2 .github/workflows/release.yml
+3 −3 .github/workflows/test.yml
+1 −1 .github/workflows/update-hash.yml
+12 −12 Building.md
+8 −2 Changelog.md
+12 −6 default.nix
+105 −86 doc/docusaurus/package-lock.json
+20 −1 doc/md/base/Iter.md
+3 −3 doc/md/canister-maintenance/upgrades.md
+1 −1 doc/md/getting-started/basic-concepts.md
+1 −2 doc/md/getting-started/quickstart.md
+3 −3 doc/md/migration-guides/0.11.0-migration-guide.md
+1 −1 doc/md/motoko-tools/mo-dev.md
+1 −1 doc/md/motoko-tools/motoko-formatter.md
+1 −1 doc/md/reference/generating-docs.md
+2 −2 doc/md/writing-motoko/actor-classes.md
+1 −1 doc/md/writing-motoko/actors-async.md
+2 −2 doc/md/writing-motoko/async-data.md
+5 −5 doc/md/writing-motoko/async-star.md
+4 −4 doc/md/writing-motoko/incomplete-code.md
+1 −1 doc/md/writing-motoko/intercanister-calls.md
+3 −3 doc/md/writing-motoko/local-objects-classes.md
+2 −2 doc/md/writing-motoko/modules-and-imports.md
+7 −7 doc/md/writing-motoko/mutable-state.md
+2 −2 doc/md/writing-motoko/pattern-matching.md
+1 −1 doc/md/writing-motoko/pipes.md
+0 −1 doc/md/writing-motoko/randomness.md
+6 −6 doc/md/writing-motoko/sharing.md
+1 −1 doc/md/writing-motoko/writing-intro.md
+22 −0 nix/emscripten-fix.patch
+13 −25 nix/sources.json
+30 −16 src/codegen/compile_classical.ml
+34 −20 src/codegen/compile_enhanced.ml
+1 −1 src/docs/.ocamlformat
+1 −0 src/ir_def/arrange_ir.ml
+1 −1 src/ir_def/check_ir.ml
+2 −1 src/ir_def/construct.ml
+2 −0 src/ir_def/ir.ml
+1 −1 src/languageServer/.ocamlformat
+2 −0 src/lowering/desugar.ml
+4 −0 src/prelude/prim.mo
+1 −0 test/fail/ok/no-timer-canc.tc.ok
+1 −0 test/fail/ok/no-timer-set.tc.ok
+1 −1 test/lsp-int/lsp-int.cabal
+1 −1 test/random/qc-motoko.cabal
+2 −0 test/run-drun/basic-cycles.mo
+2 −2 test/run-drun/empty-actor-classical.mo
+1 −1 test/run-drun/ok/basic-cycles.tc.ok
2 changes: 1 addition & 1 deletion submodules/response-verfication
Submodule response-verfication updated 35 files
+6 −0 CHANGELOG.md
+37 −67 Cargo.lock
+5 −36 examples/http-certification/assets/README.md
+2 −2 examples/http-certification/assets/dfx.json
+2 −10 examples/http-certification/assets/src/backend/Cargo.toml
+4 −36 examples/http-certification/assets/src/backend/src/lib.rs
+15 −9 examples/http-certification/custom-assets/README.md
+2 −2 examples/http-certification/custom-assets/dfx.json
+2 −8 examples/http-certification/custom-assets/src/backend/Cargo.toml
+18 −52 examples/http-certification/custom-assets/src/backend/src/lib.rs
+15 −43 examples/http-certification/json-api/README.md
+1 −6 examples/http-certification/json-api/src/backend/Cargo.toml
+20 −57 examples/http-certification/json-api/src/backend/src/lib.rs
+2 −0 packages/ic-asset-certification/Cargo.toml
+13 −41 packages/ic-asset-certification/README.md
+424 −170 packages/ic-asset-certification/src/asset_router.rs
+7 −44 packages/ic-asset-certification/src/lib.rs
+2 −1 packages/ic-certification/Cargo.toml
+12 −12 packages/ic-http-certification-tests/tests/v1_response_verification.rs
+26 −19 packages/ic-http-certification-tests/tests/v2_response_verification_certification_scenarios.rs
+46 −15 packages/ic-http-certification-tests/tests/v2_response_verification_happy_path.rs
+27 −11 packages/ic-http-certification-tests/tests/v2_response_verification_sad_path.rs
+3 −4 packages/ic-http-certification/Cargo.toml
+10 −10 packages/ic-http-certification/src/hash/response_hash.rs
+6 −6 packages/ic-http-certification/src/lib.rs
+22 −10 packages/ic-http-certification/src/tree/certification.rs
+7 −7 packages/ic-http-certification/src/tree/certification_tree.rs
+3 −3 packages/ic-http-certification/src/tree/certification_tree_entry.rs
+3 −0 packages/ic-http-certification/src/utils/mod.rs
+101 −0 packages/ic-http-certification/src/utils/response_header.rs
+4 −0 packages/ic-response-verification-test-utils/src/encoding.rs
+1 −0 packages/ic-response-verification/src/lib.rs
+206 −105 packages/ic-response-verification/src/verification/certificate_header.rs
+3 −1 packages/ic-response-verification/src/verification/mod.rs
+22 −45 packages/ic-response-verification/src/verification/verify_request_response_pair.rs
2 changes: 1 addition & 1 deletion submodules/samples
Submodule samples updated 258 files

0 comments on commit f4ce766

Please sign in to comment.