book edits
This commit is contained in:
parent
ad07e1daae
commit
11ab3a2f4f
|
@ -6,7 +6,7 @@
|
||||||
- [Run an eth1 node](./eth1.md)
|
- [Run an eth1 node](./eth1.md)
|
||||||
- [Sync the beacon node](./start-syncing.md)
|
- [Sync the beacon node](./start-syncing.md)
|
||||||
- [Make a deposit](./deposit.md)
|
- [Make a deposit](./deposit.md)
|
||||||
- [Manage your keys](./keys.md)
|
- [Import your keys](./keys.md)
|
||||||
- [Connect your validator to eth2](./connect-eth2.md)
|
- [Connect your validator to eth2](./connect-eth2.md)
|
||||||
- [Keep an eye on your validator](./keep-an-eye.md)
|
- [Keep an eye on your validator](./keep-an-eye.md)
|
||||||
- [Keep Nimbus updated](./keep-updated.md)
|
- [Keep Nimbus updated](./keep-updated.md)
|
||||||
|
|
|
@ -5,9 +5,11 @@
|
||||||
To connect your validator to the Medalla testnet, from the `nimbus-eth2` repository run:
|
To connect your validator to the Medalla testnet, from the `nimbus-eth2` repository run:
|
||||||
|
|
||||||
```
|
```
|
||||||
./run-mainnet-beacon-node.sh
|
./run-medalla-beacon-node.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
You'll be asked to enter your [Web3 provider URL](./start-syncing.md#web3-provider-url) again.
|
||||||
|
|
||||||
> **Note:** If your beacon node is already running, you'll need to shut it down gracefully (`Ctrl+c`) and re-run the above command.
|
> **Note:** If your beacon node is already running, you'll need to shut it down gracefully (`Ctrl+c`) and re-run the above command.
|
||||||
|
|
||||||
This will build Nimbus and its dependencies, and connect your validator the eth2 network.
|
This will build Nimbus and its dependencies, and connect your validator the eth2 network.
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
# Manage your keys
|
# Import your keys
|
||||||
|
|
||||||
|
|
||||||
> ⚠️ This page concerns the Medalla testnet only. If you have made a mainnet deposit, you do not need to import your keys into Nimbus quite yet.
|
> ⚠️ This page concerns the Medalla testnet only. If you have made a mainnet deposit, you do not need to import your keys into Nimbus quite yet.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Import
|
|
||||||
|
|
||||||
To import your signing key(s) into Nimbus, from the `nimbus-eth2` directory run:
|
To import your signing key(s) into Nimbus, from the `nimbus-eth2` directory run:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -46,8 +46,12 @@ ws://127.0.0.1:8546
|
||||||
Enter it, you should see the following output:
|
Enter it, you should see the following output:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
INF 2020-11-07 18:53:35.487+01:00 Launching beacon node topics="beacnde" tid=18451932 file=beacon_node.nim:1120 version=v0.6.0-f5397f2f bls_backend=BLST cmdParams=...
|
||||||
INF 2020-11-07 13:59:31.199+01:00 Generating a random Peer ID to protect your privacy topics="networking" tid=18382613 file=eth2_network.nim:1229 network_public_key=08021221020ee5c1cfbf731405d14f2f382bc4037fbbee2b6ac5511dd51f1d9e28abb1aa62
|
INF 2020-11-07 13:59:31.199+01:00 Generating a random Peer ID to protect your privacy topics="networking" tid=18382613 file=eth2_network.nim:1229 network_public_key=08021221020ee5c1cfbf731405d14f2f382bc4037fbbee2b6ac5511dd51f1d9e28abb1aa62
|
||||||
INF 2020-11-07 13:59:31.336+01:00 Starting Eth1 deposit contract monitoring tid=18382613 file=mainchain_monitor.nim:783 contract=0x1234567890123456789012345678901234567890 url=web3(ws://127.0.0.1:8546)
|
INF 2020-11-07 13:59:31.336+01:00 Starting Eth1 deposit contract monitoring tid=18382613 file=mainchain_monitor.nim:783 contract=0x1234567890123456789012345678901234567890 url=web3(ws://127.0.0.1:8546)
|
||||||
|
INF 2020-11-07 18:56:48.557+01:00 Waiting for new Eth1 block headers tid=18452770 file=eth1_monitor.nim:303
|
||||||
|
INF 2020-11-07 18:56:48.558+01:00 Awaiting genesis event tid=18452770 file=eth1_monitor.nim:539
|
||||||
|
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue