Skip to content

Commit a31b811

Browse files
authored
fixe to alpha6 in compoose & install comments (#54)
* deps: alpha6 * change to standard `cargo install` for cargo-component
1 parent 93cbfb0 commit a31b811

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ forge test
3636

3737
### Build WASI components
3838

39-
> Install `cargo binstall cargo-component` if you have not already. -- https://github.com/bytecodealliance/cargo-component#installation
39+
> Install [`cargo install cargo-component --locked`](https://github.com/bytecodealliance/cargo-component#installation) if you have not already.
4040
4141
```bash
4242
make wasi-build
@@ -65,6 +65,10 @@ cp .env.example .env
6565
make start-all
6666
```
6767

68+
> The `start-all` command must remain running in your terminal. Use another terminal to run other commands.
69+
>
70+
> You can stop the services with `ctrl+c`.
71+
6872
### Upload your Service's Trigger and Submission contracts
6973

7074
```bash

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020

2121
# The main instance all WAVS interaction will happen from
2222
wavs:
23-
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha5"
23+
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha6"
2424
container_name: "wavs"
2525
stop_signal: SIGKILL
2626
# depends_on: ["anvil"]
@@ -38,7 +38,7 @@ services:
3838
- "./.docker:/root/wavs/cli/"
3939

4040
aggregator:
41-
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha5"
41+
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha6"
4242
container_name: "wavs-aggregator"
4343
stop_signal: SIGKILL
4444
depends_on: ["wavs"]
@@ -51,7 +51,7 @@ services:
5151
network_mode: "host"
5252

5353
deploy-eigenlayer:
54-
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha5"
54+
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha6"
5555
container_name: "wavs-deploy-eigenlayer"
5656
depends_on: ["wavs", "aggregator"] # "anvil",
5757
restart: "no"
@@ -63,7 +63,7 @@ services:
6363
network_mode: "host"
6464

6565
deploy-eigenlayer-service-manager:
66-
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha5"
66+
image: "ghcr.io/lay3rlabs/wavs:0.3.0-alpha6"
6767
container_name: "wavs-deploy-service-manager"
6868
depends_on:
6969
deploy-eigenlayer:

0 commit comments

Comments
 (0)