mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-02-25 20:55:24 +00:00
Update FAQ + minor edits (#2678)
This commit is contained in:
parent
aeef550d0a
commit
72544f06c0
@ -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?
|
||||
|
||||
```
|
||||
|
@ -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.
|
||||
|
@ -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}
|
||||
```
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user