Update README.md

This commit is contained in:
POA 2022-04-14 10:59:19 +03:00
parent 4ee7eb69d8
commit d2828623e5
1 changed files with 4 additions and 4 deletions

View File

@ -32,13 +32,13 @@ $ cd openethereum
$ cargo build --release --features final
```
To save time, you can download a pre-compiled binary from the [releases page](https://github.com/openethereum/openethereum/releases) (versions >= v3.3.0-rc.14 are supported). But you still need to maintain directory structure and naming conventions:
To save time, you can download a pre-compiled binary from the [releases page](https://github.com/openethereum/openethereum/releases) (versions >= v3.3.5 are supported). But you still need to maintain directory structure and naming conventions:
```bash
# move up from posdao-test-setup root
$ cd ..
$ mkdir -p openethereum/target/release/
# an example for macOS binary
$ curl -SfL 'https://github.com/openethereum/openethereum/releases/download/v3.3.0-rc.14/openethereum-macos-v3.3.0-rc.14.zip' -o openethereum/target/release/openethereum.zip
$ curl -SfL 'https://github.com/openethereum/openethereum/releases/download/v3.3.5/openethereum-macos-v3.3.5.zip' -o openethereum/target/release/openethereum.zip
$ unzip openethereum/target/release/openethereum.zip -d openethereum/target/release
$ chmod +x openethereum/target/release/openethereum
# check that it works and the version is correct (compare the version from the binary with version on the release page)
@ -55,13 +55,13 @@ To integrate with [Nethermind](https://github.com/NethermindEth/nethermind), the
```
So there should be two folders on the same level and `posdao-test-setup` will use a binary from the `nethermind` folder, namely the binary is assumed to be at `../nethermind/bin/Nethermind.Runner` relative to `posdao-test-setup` root.
A pre-compiled binary can be downloaded from the [releases page](https://github.com/NethermindEth/nethermind/releases) (versions >= v1.11.7 are supported). You need to maintain directory structure and naming conventions:
A pre-compiled binary can be downloaded from the [releases page](https://github.com/NethermindEth/nethermind/releases) (versions >= v1.12.7 are supported). You need to maintain directory structure and naming conventions:
```bash
# move up from posdao-test-setup root
$ cd ..
$ mkdir -p nethermind/bin
# an example for Linux binary
$ curl -SfL 'https://github.com/NethermindEth/nethermind/releases/download/1.11.7/nethermind-linux-amd64-1.11.7-75f034a-20211105.zip' -o nethermind/bin/nethermind.zip
$ curl -SfL 'https://github.com/NethermindEth/nethermind/releases/download/1.12.7/nethermind-linux-amd64-1.12.7-3b419f1-20220407.zip' -o nethermind/bin/nethermind.zip
$ unzip nethermind/bin/nethermind.zip -d nethermind/bin
$ chmod +x nethermind/bin/Nethermind.Runner
# check that it works and version is correct (compare the version from the binary with version on the release page)