Merge branch 'unstable' of github.com:status-im/nim-beacon-chain into unstable
This commit is contained in:
commit
ec1aa622b0
|
@ -37,6 +37,7 @@
|
||||||
- [Verify the integrity of Nimbus](./checksums.md)
|
- [Verify the integrity of Nimbus](./checksums.md)
|
||||||
- [Back up your database](./database-backup.md)
|
- [Back up your database](./database-backup.md)
|
||||||
- [Add a backup web3 provider](./web3-backup.md)
|
- [Add a backup web3 provider](./web3-backup.md)
|
||||||
|
- [Add an additional validator](./additional-validator.md)
|
||||||
|
|
||||||
# Tutorials
|
# Tutorials
|
||||||
- [Grafana and Prometheus](./metrics-pretty-pictures.md)
|
- [Grafana and Prometheus](./metrics-pretty-pictures.md)
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Add an additional validator
|
||||||
|
|
||||||
|
To add an additional validator, just follow [the same steps](./keys.md) as you did when you added your first.
|
||||||
|
|
||||||
|
You'll have to restart the beacon node for the changes to take effect.
|
||||||
|
|
||||||
|
> Note that a single Nimbus instance is able to handle multiple validators.
|
|
@ -1,6 +1,6 @@
|
||||||
# Nimbus binaries
|
# Nimbus binaries
|
||||||
|
|
||||||
Nimbus binaries exist for Nimbus -- initially Linux `AMD64`, `ARM` and `ARM64`, but Windows and MacOS binaries will be added in the future.
|
Nimbus binaries exist for Nimbus -- initially Linux `AMD64`, `ARM32` and `ARM64`, and Windows -- but MacOS binaries will be added in the future.
|
||||||
|
|
||||||
You can find the latest release here: [https://github.com/status-im/nimbus-eth2/releases](https://github.com/status-im/nimbus-eth2/releases)
|
You can find the latest release here: [https://github.com/status-im/nimbus-eth2/releases](https://github.com/status-im/nimbus-eth2/releases)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
## Run an eth1 node
|
# Run an eth1 node
|
||||||
|
|
||||||
In order to process incoming validator deposits from the eth1 chain, you'll need to run an eth1 client in parallel to your eth2 client.
|
In order to process incoming validator deposits from the eth1 chain, you'll need to run an eth1 client in parallel to your eth2 client.
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ brew install cmake
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|
||||||
To build Nimbus on windows, the Mingw-w64 build environment is recommened.
|
To build Nimbus on windows, the Mingw-w64 build environment is recommended.
|
||||||
|
|
||||||
Install Mingw-w64 for your architecture using the "[MinGW-W64 Online Installer](https://sourceforge.net/projects/mingw-w64/files/)":
|
Install Mingw-w64 for your architecture using the "[MinGW-W64 Online Installer](https://sourceforge.net/projects/mingw-w64/files/)":
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@ It's also a necessary step to running a validator (since an active validator req
|
||||||
|
|
||||||
You'll need to install some packages in order for Nimbus to run correctly.
|
You'll need to install some packages in order for Nimbus to run correctly.
|
||||||
|
|
||||||
|
|
||||||
**Linux**
|
**Linux**
|
||||||
|
|
||||||
On common Linux distributions the dependencies can be installed with
|
On common Linux distributions the dependencies can be installed with
|
||||||
|
|
Loading…
Reference in New Issue