Update FAQ + minor edits (#2678)

This commit is contained in:
0xmiel 2021-06-25 11:52:06 +02:00 committed by GitHub
parent aeef550d0a
commit 72544f06c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 1 deletions

View File

@ -2,6 +2,17 @@
## General
### How do I check which version of Nimbus I'm currently running?
If you'v enabled RPC, the version is available via
```
curl -d '{"jsonrpc":"2.0","method":"get_v1_node_version","params":[],"id":1}' -H 'Content-Type: application/json' localhost:9190 -s
```
You can also run `build/nimbus_beacon_node --version`
### How do I fix the discovered new external address warning log?
```

View File

@ -6,6 +6,8 @@ Make sure you stay on the lookout for any critical updates to Nimbus. This best
To update to the latest version, either download the binary or compile the beacon node release.
> **Tip:** To check which version of Nimbus you're currently running, run `build/nimbus_beacon_node --version`
## Download the binary
Open the latest [Nimbus eth2 release](https://github.com/status-im/nimbus-eth2/releases/latest) and copy the link for the file that works on your system.

View File

@ -32,7 +32,7 @@ If you're concerned about missing an attestation or proposal, wait until `nextAc
You can also use the `nimbus-eth2` [API](./api.md). For example, to check if your validator has a next Proposal slot assigned, run:
```
curl -d '{"jsonrpc":"2.0","method":"get_v1_validator_duties_proposer","params":[${EPOCH_NUMBER_OF_INTEREST}],"id":1}' -H 'Content-Type: application/json' localhost:9190 -s | jq ".result[]" | grep ${PATTERN_WHICH_MATCHES_VALIDATOR_PUBLIC_KEYS}
curl -d '{"jsonrpc":"2.0","method":"get_v1_validator_duties_proposer","params":[${HEAD_EPOCH_NUMBER}],"id":1}' -H 'Content-Type: application/json' localhost:9190 -s | jq ".result[]" | grep ${PATTERN_WHICH_MATCHES_VALIDATOR_PUBLIC_KEYS}
```