This commit is contained in:
Zahary Karadjov 2021-03-22 19:25:34 +02:00
parent 85289269d1
commit 25695d1e4f
No known key found for this signature in database
GPG Key ID: C8936F8A3073D609
3 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2021-03-10 v1.0.11
==================
This is a minor release adding support for connecting to the Prater testnet.
2021-03-10 v1.0.10
==================

View File

@ -9,7 +9,7 @@ when not defined(nimscript):
const
versionMajor* = 1
versionMinor* = 0
versionBuild* = 10
versionBuild* = 11
versionBlob* = "stateofus" # Single word - ends up in the default graffitti

10
docker/dist/README.md vendored
View File

@ -67,3 +67,13 @@ All the same conventions apply:
WEB3_URL="ws://localhost:8545" ./run-mainnet-node.sh --max-peers=150
```
## Running a Prater node
`run-prater-beacon-node.sh` is a similar script intended for connecting to the Prater
testnet. All the same conventions apply:
```bash
# using a local Geth instance
WEB3_URL="ws://localhost:8545" ./run-prater-node.sh --max-peers=150
```