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: rust/threshold-ecdsa/README.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -15,15 +15,17 @@ This tutorial gives a complete overview of the development, starting with downlo
15
15
> [!TIP]
16
16
> This walkthrough focuses on the version of the sample canister code written in the Rust programming language. There is also a [Motoko](https://internetcomputer.org/docs/current/developer-docs/backend/motoko/index.md) version available in the same repo and follows the same commands for deploying.
17
17
18
-
## Prerequisites
18
+
## Local deployment
19
+
20
+
### Prerequisites
19
21
This example requires an installation of:
20
22
21
23
-[x] Install the [IC SDK](https://internetcomputer.org/docs/current/developer-docs/getting-started/install) v0.11.0 or newer.
22
24
-[x] Clone the example dapp project: `git clone https://github.com/dfinity/examples`
23
25
24
26
Begin by opening a terminal window.
25
27
26
-
## Step 1: Setup the project environment
28
+
###Step 1: Setup the project environment
27
29
28
30
Navigate into the folder containing the project's files and start a local instance of the Internet Computer with the commands:
29
31
@@ -32,7 +34,7 @@ cd examples/rust/threshold-ecdsa
32
34
dfx start --background
33
35
```
34
36
35
-
## Step 2: Deploy the canisters
37
+
###Step 2: Deploy the canisters
36
38
37
39
```bash
38
40
dfx deploy
@@ -147,4 +149,4 @@ In this walkthrough, we deployed a sample smart contract that:
147
149
148
150
* Signed with private ECDSA keys even though **canisters do not hold ECDSA keys themselves**.
0 commit comments