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: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ To learn more about `snops` we recommend checking out the mdbook [here](https://
37
37
The controlplane is the webserver that communicates to agents how to
38
38
run snarkOS, or what transactions to execute.
39
39
40
-
1. In another terminal, install the cli: `cargo install --path ./crates/snops-cli`, or build with `cargo xtask build cli` and use from `target/release-big/snops-cli`.
40
+
1. In another terminal, install the cli: `cargo install --path ./crates/cli`, or build with `cargo xtask build cli` and use from `target/release-big/snops-cli`.
41
41
42
42
The cli is used to interact with the controlplane and manage environments.
43
43
It provides JSON based output. We recommend pairing our cli with [`jq`](https://jqlang.github.io/jq/) when leveraging other scripts and tools
@@ -55,10 +55,10 @@ To learn more about `snops` we recommend checking out the mdbook [here](https://
55
55
1. In separate terminals, start up some agents with the following commands:
56
56
57
57
```sh
58
-
./script/agent.sh 0
59
-
./script/agent.sh 1
60
-
./script/agent.sh 2
61
-
./script/agent.sh 3
58
+
./scripts/agent.sh 0
59
+
./scripts/agent.sh 1
60
+
./scripts/agent.sh 2
61
+
./scripts/agent.sh 3
62
62
```
63
63
64
64
Each of these can be dynamically configured as snarkos nodes. The default
@@ -81,7 +81,7 @@ been more convenient. Snops aliases locally generated keys automatically from co
81
81
reduces the need to keep track of individual key files.
82
82
83
83
1. Start an environment (see previous example)
84
-
1. Start a compute agent: `./scripts/agent_compute.sh 0`
84
+
1. Start a compute agent: `./scripts/compute_agent.sh 0`
85
85
86
86
Compute agents are able to distribute the execution of transactions,
0 commit comments