Merge pull request #1206 from status-im/readme
Update readme and manual
This commit is contained in:
commit
bdd56b626f
10
README.md
10
README.md
|
@ -1,4 +1,5 @@
|
|||
# Nimbus Eth2 (Beacon Chain)
|
||||
|
||||
[![Build Status (Travis)](https://img.shields.io/travis/status-im/nim-beacon-chain/master.svg?label=Linux%20/%20macOS "Linux/macOS build status (Travis)")](https://travis-ci.org/status-im/nim-beacon-chain)
|
||||
[![Build Status (Azure)](https://dev.azure.com/nimbus-dev/nim-beacon-chain/_apis/build/status/status-im.nim-beacon-chain?branchName=master)](https://dev.azure.com/nimbus-dev/nim-beacon-chain/_build/latest?definitionId=3&branchName=master)
|
||||
[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
|
||||
|
@ -13,6 +14,12 @@ Welcome to Nimbus for Ethereum 2.0.
|
|||
|
||||
Nimbus beacon chain is a research implementation of the beacon chain component of the upcoming Ethereum Serenity upgrade, aka Eth2.
|
||||
|
||||
|
||||
## Manual
|
||||
|
||||
Please see the complete documentation at [The nim-beacon-chain Book](https://status-im.github.io/nim-beacon-chain/).
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
* [status-im/nimbus](https://github.com/status-im/nimbus/): Nimbus for Ethereum 1
|
||||
|
@ -23,6 +30,7 @@ You can check where the beacon chain fits in the Ethereum ecosystem our Two-Poin
|
|||
## Table of Contents
|
||||
|
||||
- [Nimbus Eth2 (Beacon Chain)](#nimbus-eth2-beacon-chain)
|
||||
- [Manual](#manual)
|
||||
- [Related](#related)
|
||||
- [Table of Contents](#table-of-contents)
|
||||
- [Prerequisites for everyone](#prerequisites-for-everyone)
|
||||
|
@ -428,4 +436,4 @@ or
|
|||
|
||||
* Apache License, Version 2.0, ([LICENSE-APACHEv2](LICENSE-APACHEv2) or http://www.apache.org/licenses/LICENSE-2.0)
|
||||
|
||||
at your option. These files may not be copied, modified, or distributed except according to those terms.
|
||||
at your option. These files may not be copied, modified, or distributed except according to those terms.
|
|
@ -82,7 +82,7 @@ type
|
|||
|
||||
bootstrapNodesFile* {.
|
||||
defaultValue: ""
|
||||
desc: "Specifies a line-delimited file of bootsrap Ethereum network addresses."
|
||||
desc: "Specifies a line-delimited file of bootstrap Ethereum network addresses."
|
||||
name: "bootstrap-file" }: InputFile
|
||||
|
||||
libp2pAddress* {.
|
||||
|
@ -132,7 +132,7 @@ type
|
|||
nodeName* {.
|
||||
defaultValue: ""
|
||||
desc: "A name for this node that will appear in the logs. " &
|
||||
"If you set this to 'auto', a persistent automatically generated ID will be seleceted for each --dataDir folder."
|
||||
"If you set this to 'auto', a persistent automatically generated ID will be selected for each --dataDir folder."
|
||||
name: "node-name" }: string
|
||||
|
||||
verifyFinalization* {.
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
# Summary
|
||||
|
||||
- [Introduction](./intro.md)
|
||||
- [What is Beacon Chain?](./beacon-chain.md)
|
||||
- [What is Nimbus?](./nimbus.md)
|
||||
- [Become a Validator](./validator.md)
|
||||
- [Installation](./install.md)
|
||||
- [API](./api.md)
|
||||
- [Command-line Options](./cli.md)
|
||||
- [Advanced Usage for Developers](./advanced.md)
|
||||
- [FAQs](./faq.md)
|
||||
- [Contribute](./contribute.md)
|
||||
|
|
|
@ -8,7 +8,7 @@ The following sections explain how to setup your build environment on your platf
|
|||
Install Mingw-w64 for your architecture using the "[MinGW-W64 Online
|
||||
Installer](https://sourceforge.net/projects/mingw-w64/files/)" (first link
|
||||
under the directory listing). Run it and select your architecture in the setup
|
||||
menu ("i686" on 32-bit, "x86\_64" on 64-bit), set the threads to "win32" and
|
||||
menu (`i686` on 32-bit, `x86_64` on 64-bit), set the threads to `win32` and
|
||||
the exceptions to "dwarf" on 32-bit and "seh" on 64-bit. Change the
|
||||
installation directory to "C:\mingw-w64" and add it to your system PATH in "My
|
||||
Computer"/"This PC" -> Properties -> Advanced system settings -> Environment
|
||||
|
@ -17,6 +17,7 @@ Variables -> Path -> Edit -> New -> C:\mingw-w64\mingw64\bin (it's "C:\mingw-w64
|
|||
Install [Git for Windows](https://gitforwindows.org/) and use a "Git Bash" shell to clone and build nim-beacon-chain.
|
||||
|
||||
If you don't want to compile PCRE separately, you can fetch pre-compiled DLLs with:
|
||||
|
||||
```bash
|
||||
mingw32-make # this first invocation will update the Git submodules
|
||||
mingw32-make fetch-dlls # this will place the right DLLs for your architecture in the "build/" directory
|
||||
|
@ -30,14 +31,13 @@ You can now follow those instructions in the previous section by replacing `make
|
|||
mingw32-make test # run the test suite
|
||||
```
|
||||
|
||||
### Linux, MacOS
|
||||
### Linux, macOS
|
||||
|
||||
After cloning the repo:
|
||||
|
||||
```bash
|
||||
make # The first `make` invocation will update all Git submodules and prompt you to run `make` again.
|
||||
# It's only required once per Git clone. You'll run `make update` after each `git pull`, in the future,
|
||||
# to keep those submodules up to date.
|
||||
# Build beacon_node and all the tools, using 4 parallel Make jobs
|
||||
make -j4
|
||||
|
||||
# Run tests
|
||||
make test
|
||||
|
@ -48,6 +48,7 @@ make update
|
|||
```
|
||||
|
||||
To run a command that might use binaries from the Status Nim fork:
|
||||
|
||||
```bash
|
||||
./env.sh bash # start a new interactive shell with the right env vars set
|
||||
which nim
|
||||
|
@ -62,9 +63,9 @@ nim --version # Nimbus is tested and supported on 1.0.2 at the moment
|
|||
|
||||
We recommend you remove any cover or use a fan; the Raspberry Pi will get hot (85°C) and throttle.
|
||||
|
||||
* Raspberry PI 3b+ or Raspberry Pi 4b.
|
||||
* 64gb SD Card (less might work too, but the default recommended 4-8GB will probably be too small)
|
||||
* [Rasbian Buster Lite](https://www.raspberrypi.org/downloads/raspbian/) - Lite version is enough to get going and will save some disk space!
|
||||
- Raspberry PI 3b+ or Raspberry Pi 4b.
|
||||
- 64gb SD Card (less might work too, but the default recommended 4-8GB will probably be too small)
|
||||
- [Raspbian Buster Lite](https://www.raspberrypi.org/downloads/raspbian/) - Lite version is enough to get going and will save some disk space!
|
||||
|
||||
Assuming you're working with a freshly written image:
|
||||
|
||||
|
@ -129,4 +130,3 @@ make -j$(nproc) NIMFLAGS="-d:release" USE_MULTITAIL=yes eth2_network_simulation
|
|||
```bash
|
||||
make USE_LIBBACKTRACE=0 # expect the resulting binaries to be 2-3 times slower
|
||||
```
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
# API
|
|
@ -1,18 +0,0 @@
|
|||
# What is Beacon Chain?
|
||||
|
||||
A complete introduction about the beacon chain can be found in the [Ethereum 2.0 blog series](https://our.status.im/two-point-oh-the-beacon-chain/).
|
||||
|
||||
In short, the beacon chain is a **new type of blockchain** to help the Ethereum blockchain to smoothly transfer its consensus algorithm from PoW (Proof of Work) to PoS (Proof of Stake), aka Ethereum 2.0. You can also see it as a hybrid PoS + PoW solution.
|
||||
|
||||
## Differences Compared to Ethereum 1.0
|
||||
|
||||
In traditional PoW, those that propose new blocks are called **_miners_**, whereas in PoS, they are called **_validators_**. In essence, _miners_ rely on actual hardware (such as some specifically manufactured mining machines), while _validators_ rely on just software.
|
||||
|
||||
## What it is Like to Be a Validator?
|
||||
|
||||
It is obvious that you must have enough computing power or dedicated hardware in order to be a miner, but how about being a validator? Here is a brief overview:
|
||||
|
||||
1. A special smart contract named **_deposit contract_** is deployed on the original Ethereum blockchain. Note that in this case, the new beacon chain and the original blockchain co-exists.
|
||||
2. To "register" as a validator, you have to first deposit **_32 Ether_** from your account to this smart contract.
|
||||
3. Run the beacon node and wait for the network to sync before your validator is activated.
|
||||
4. That's all! Remember to stay connected to the network, or you may lose your deposit. :P
|
|
@ -0,0 +1,109 @@
|
|||
# Command-line Options
|
||||
|
||||
You can run your customized beacon node using the beacon_node executable. The available options are shown below.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
Specifying a genesis file is mandatory to run this executable. You can either get it from the official eth2 repository [here](https://github.com/eth2-clients/eth2-testnets/blob/master/shared/witti/genesis.ssz) or generate your own like [this](https://github.com/status-im/nim-beacon-chain/blob/db92c2f2549a339be60896c3907cefdb394b5e11/scripts/launch_local_testnet.sh#L154) when starting a local testnet. You can also specify the path of your genesis file like [this](https://github.com/status-im/nim-beacon-chain/blob/db92c2f2549a339be60896c3907cefdb394b5e11/scripts/launch_local_testnet.sh#L229).
|
||||
|
||||
For example, download a genesis file and then run the following command to start the node:
|
||||
|
||||
<img src="./img/beacon_node_example.PNG" alt="" style="margin: 0 40 0 40"/>
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
$ ./build/beacon_node --help
|
||||
Nimbus beacon node v0.3.0 (e537ed9
|
||||
)
|
||||
Copyright (c) 2019-2020 Status Research & Development GmbH
|
||||
|
||||
Nim Compiler Version 1.3.1 [Windows: amd64]
|
||||
Compiled at 2020-04-16
|
||||
Copyright (c) 2006-2020 by Andreas Rumpf
|
||||
|
||||
git hash: b4e9f8e814373fc38741736197d88475663ce758
|
||||
active boot switches: -d:release
|
||||
|
||||
|
||||
Usage:
|
||||
|
||||
beacon_node [OPTIONS]... command
|
||||
|
||||
The following options are available:
|
||||
|
||||
--log-level Sets the log level.
|
||||
--eth1-network The Eth1 network tracked by the beacon node.
|
||||
--quick-start Run in quickstart mode
|
||||
-d, --data-dir The directory where nimbus will store all blockchain data.
|
||||
--web3-url URL of the Web3 server to observe Eth1.
|
||||
--deposit-contract Address of the deposit contract.
|
||||
-b, --bootstrap-node Specifies one or more bootstrap nodes to use when connecting to the
|
||||
network.
|
||||
--bootstrap-file Specifies a line-delimited file of bootstrap Ethereum network addresses.
|
||||
--listen-address Listening address for the Ethereum LibP2P traffic.
|
||||
--tcp-port Listening TCP port for Ethereum LibP2P traffic.
|
||||
--udp-port Listening UDP port for node discovery.
|
||||
--max-peers The maximum number of peers to connect to
|
||||
--nat Specify method to use for determining public address. Must be one of: any,
|
||||
none, upnp, pmp, extip:<IP>.
|
||||
-v, --validator Path to a validator private key, as generated by makeDeposits.
|
||||
-s, --state-snapshot Json file specifying a recent state snapshot.
|
||||
--node-name A name for this node that will appear in the logs. If you set this to
|
||||
'auto', a persistent automatically generated ID will be selected for each
|
||||
--dataDir folder.
|
||||
--verify-finalization Specify whether to verify finalization occurs on schedule, for testing.
|
||||
--stop-at-epoch A positive epoch selects the epoch at which to stop.
|
||||
--metrics Enable the metrics server.
|
||||
--metrics-address Listening address of the metrics server.
|
||||
--metrics-port Listening HTTP port of the metrics server.
|
||||
--status-bar Display a status bar at the bottom of the terminal screen.
|
||||
--status-bar-contents Textual template for the contents of the status bar.
|
||||
--rpc Enable the JSON-RPC server
|
||||
--rpc-port HTTP port for the JSON-RPC service.
|
||||
--rpc-address Listening address of the RPC server
|
||||
--dump Write SSZ dumps of blocks, attestations and states to data dir
|
||||
|
||||
Available sub-commands:
|
||||
|
||||
beacon_node importValidator [OPTIONS]...
|
||||
|
||||
The following options are available:
|
||||
|
||||
--keyfile File with validator key to be imported (in hex form).
|
||||
|
||||
beacon_node createTestnet [OPTIONS]...
|
||||
|
||||
The following options are available:
|
||||
|
||||
-d, --validators-dir Directory containing validator descriptors named 'vXXXXXXX.deposit.json'.
|
||||
--total-validators The number of validators in the newly created chain.
|
||||
--first-validator Index of first validator to add to validator list.
|
||||
--last-user-validator The last validator index that will free for taking from a testnet
|
||||
participant.
|
||||
--bootstrap-address The public IP address that will be advertised as a bootstrap node for the
|
||||
testnet.
|
||||
--bootstrap-port The TCP/UDP port that will be used by the bootstrap node.
|
||||
-g, --genesis-offset Seconds from now to add to genesis time.
|
||||
--output-genesis Output file where to write the initial state snapshot.
|
||||
--with-genesis-root Include a genesis root in 'network.json'.
|
||||
--output-bootstrap-file Output file with list of bootstrap nodes for the network.
|
||||
|
||||
beacon_node makeDeposits [OPTIONS]...
|
||||
|
||||
The following options are available:
|
||||
|
||||
--quickstart-deposits Number of quick-start deposits to generate.
|
||||
--random-deposits Number of secure random deposits to generate.
|
||||
--deposits-dir Folder to write deposits to.
|
||||
--deposit-private-key Private key of the controlling (sending) account
|
||||
--min-delay Minimum possible delay between making two deposits (in seconds)
|
||||
--max-delay Maximum possible delay between making two deposits (in seconds)
|
||||
|
||||
beacon_node query command
|
||||
|
||||
Available sub-commands:
|
||||
|
||||
beacon_node query get <getQueryPath>
|
||||
<getQueryPath> REST API path to evaluate
|
||||
```
|
|
@ -1,7 +1,6 @@
|
|||
# Contribute
|
||||
|
||||
Follow these steps to contribute to this book!
|
||||
|
||||
Follow these steps to contribute to this book!
|
||||
|
||||
We use an utility tool called mdBook to create online books from Markdown files.
|
||||
|
||||
|
@ -18,7 +17,27 @@ We use an utility tool called mdBook to create online books from Markdown files.
|
|||
|
||||
## Build and Deploy
|
||||
|
||||
1. `mdbook build`
|
||||
2. `make publish-book`
|
||||
The first step is to submit a pull request to the [devel branch](https://github.com/status-im/nim-beacon-chain/tree/devel).
|
||||
Then, after it is merged, do the following under our main repository:
|
||||
|
||||
1. `cd nim-beacon-chain`
|
||||
2. `git checkout devel`
|
||||
3. `git pull`
|
||||
4. `make update` (This is to update the submodules to the latest version)
|
||||
5. `make publish-book`
|
||||
|
||||
## Trouble Shooting
|
||||
|
||||
If you see file conflicts in the pull request, this may due to that you have created your new branch from an old version of the `devel` branch. Update your new branch using the following commands:
|
||||
|
||||
```
|
||||
git checkout devel
|
||||
git pull
|
||||
make update
|
||||
git checkout readme
|
||||
git merge devel
|
||||
# use something like `git mergetool` to resolve conflicts, then read the instructions for completing the merge (usually just a `git commit`)
|
||||
# check the output of `git diff devel`
|
||||
```
|
||||
|
||||
Thank you so much for your help to the decentralized and open source community. :)
|
||||
|
|
|
@ -1 +1,26 @@
|
|||
# Frequently Asked Questions
|
||||
|
||||
## 1. What is Beacon Chain?
|
||||
|
||||
A complete introduction about the beacon chain can be found in the [Ethereum 2.0 blog series](https://our.status.im/two-point-oh-the-beacon-chain/).
|
||||
|
||||
In short, the beacon chain is a **new type of blockchain** to help the Ethereum blockchain to smoothly transfer its consensus algorithm from PoW (Proof of Work) to PoS (Proof of Stake), aka Ethereum 2.0.
|
||||
|
||||
## 2. Differences Between Beacon Chain and Ethereum 1.0
|
||||
|
||||
In traditional PoW, those that propose new blocks are called **_miners_**, whereas in PoS, they are called **_validators_**. In essence, _miners_ rely on actual hardware (such as some specifically manufactured mining machines), while _validators_ rely on just software and a good network connection.
|
||||
|
||||
## 3. What it is Like to Be a Validator?
|
||||
|
||||
It is obvious that you must have enough computing power or dedicated hardware in order to be a miner, but how about being a validator? Here is a brief overview:
|
||||
|
||||
1. A special smart contract named **_deposit contract_** is deployed on the original Ethereum blockchain. Note that in this case, the new beacon chain and the original blockchain co-exists.
|
||||
2. To "register" as a validator, you have to first deposit **_32 Ether_** from your account to this smart contract.
|
||||
3. Run the beacon node and wait for the network to sync before your validator is activated.
|
||||
4. That's all! Remember to stay connected to the network, or you may lose some of your deposit, as punishment, depending on how long you're offline. :P
|
||||
|
||||
## 4. What is Nimbus?
|
||||
|
||||
In a sentence, Nimbus is an Ethereum 1.0 & 2.0 Client for Resource-Restricted Devices.
|
||||
|
||||
It is open sourced at [github.com/status-im/nimbus](github.com/status-im/nimbus). Development progress and updates can be viewed at the [Nimbus blog](https://our.status.im/tag/nimbus/).
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 98 KiB |
|
@ -1,15 +1,18 @@
|
|||
# Installation
|
||||
|
||||
Nimbus beacon chain can run on Linux, MacOS, Windows, and Andriod. At the moment, Nimbus has to be built from source.
|
||||
Beacon chain can run on Linux, macOS, Windows, and Android. At the moment, Nimbus has to be built from source.
|
||||
|
||||
## External Dependencies
|
||||
|
||||
## External Dependencies
|
||||
- Developer tools (C compiler, Make, Bash, Git)
|
||||
- PCRE
|
||||
|
||||
Nim is not an external dependency, Nimbus will build its own local copy.
|
||||
|
||||
## Linux
|
||||
|
||||
On common Linux distributions the dependencies can be installed with:
|
||||
|
||||
```sh
|
||||
# Debian and Ubuntu
|
||||
sudo apt-get install build-essential git libpcre3-dev
|
||||
|
@ -21,7 +24,7 @@ dnf install @development-tools pcre
|
|||
yourAURmanager -S base-devel pcre-static
|
||||
```
|
||||
|
||||
### MacOS
|
||||
### macOS
|
||||
|
||||
Assuming you use [Homebrew](https://brew.sh/) to manage packages
|
||||
|
||||
|
@ -36,11 +39,11 @@ It also provides a downloading script for prebuilt PCRE.
|
|||
|
||||
### Android
|
||||
|
||||
* Install the [Termux](https://termux.com) app from FDroid or the Google Play store
|
||||
* Install a [PRoot](https://wiki.termux.com/wiki/PRoot) of your choice following the instructions for your preferred distribution.
|
||||
Note, the Ubuntu PRoot is known to contain all Nimbus prerequisites compiled on Arm64 architecture (common architecture for Android devices).
|
||||
- Install the [Termux](https://termux.com) app from FDroid or the Google Play store
|
||||
- Install a [PRoot](https://wiki.termux.com/wiki/PRoot) of your choice following the instructions for your preferred distribution.
|
||||
Note, the Ubuntu PRoot is known to contain all Nimbus prerequisites compiled on Arm64 architecture (common architecture for Android devices).
|
||||
|
||||
*Assuming Ubuntu PRoot is used*
|
||||
_Assuming Ubuntu PRoot is used_
|
||||
|
||||
```sh
|
||||
apt install build-essential git libpcre3-dev
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
# Nimbus Beacon Chain Book
|
||||
# The nim-beacon-chain Book
|
||||
|
||||
_Documentation for Nimbus Beacon Chain users and developers._
|
||||
|
||||
Nimbus beacon chain is a research implementation of the beacon chain component of the upcoming Ethereum Serenity upgrade, aka Eth2.
|
||||
|
||||
- Open sourced at [github.com/status-im/nim-beacon-chain/docs](github.com/status-im/nim-beacon-chain/docs).
|
||||
- Open sourced at [github.com/status-im/nim-beacon-chain](https://github.com/status-im/nim-beacon-chain/tree/master).
|
||||
- Specification of our implementation can be found at [ethereum/eth2.0-specs](https://github.com/ethereum/eth2.0-specs/tree/v0.11.1#phase-0).
|
||||
|
||||
## Overview
|
||||
|
||||
In this book, we will cover:
|
||||
|
||||
1. [What is beacon chain](./beacon-chain.md) and [what is Nimbus](./nimbus.md) to equip you with some basic knowledge.
|
||||
2. How to [become a validator](./validator.md) in Ethereum as a user.
|
||||
1. [What is beacon chain](./faq.md#1-what-is-beacon-chain) and [what is Nimbus](./faq.md#4-what-is-nimbus) to equip you with some basic knowledge.
|
||||
2. How to [become a validator](./validator.md) in Ethereum 2.0 as a user.
|
||||
3. [Installation steps](./install.md) for nimbus beacon chain.
|
||||
4. The [api documentation](./api.md) for interested developers.
|
||||
4. [CLI](./cli.md) for running your customized nimbus beacon node.
|
||||
5. [Advanced usage](./advanced.md) for developers.
|
||||
6. Common [questions and answers](./faq.md) to satisfy your curiosity.
|
||||
7. How to [contribute](./contribute.md) to this book.
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
# What is Nimbus?
|
||||
In a sentence, Nimbus is an Ethereum 1.0 & 2.0 Client for Resource-Restricted Devices.
|
||||
|
||||
It is open sourced at [github.com/status-im/nimbus](github.com/status-im/nimbus). Development progress and updates can be viewed at the [Nimbus blog](https://our.status.im/tag/nimbus/).
|
||||
|
||||
## Why should you choose Nimbus?
|
|
@ -7,20 +7,20 @@ To become a validator, you have to first connect to a testnet, deposit your Ethe
|
|||
Though Nimbus can connect to any of the testnets published in the [eth2-clients/eth2-testnets repo](https://github.com/eth2-clients/eth2-testnets/tree/master/nimbus), below are the recommended ones:
|
||||
|
||||
- Public Testnet: [witti](https://github.com/goerli/witti) ([explorer](https://witti.beaconcha.in))
|
||||
- Local Testnet: testnet0
|
||||
- Local Testnet: testnet0 (currently not available)
|
||||
|
||||
## Connecting to Testnets
|
||||
|
||||
Before we start, we have to obtain 32 Ethers on the Goerli testnet. Then, we can deposit 32 Ethers to the registration smart contract to become a validator.
|
||||
|
||||
1. Open your [MetaMask](https://metamask.io/) wallet, switch to the `Goerli Test Network` option from the top right cornor.
|
||||
1. Open your [MetaMask](https://metamask.io/) wallet, switch to the `Goerli Test Network` option from the top right corner.
|
||||
2. Copy your account address by clicking on one of your accounts.
|
||||
3. Post your account address on a social media platform (Twitter or Facebook). Copy the url to the post.
|
||||
4. Paste your post url on the [Goerli faucet](https://faucet.goerli.mudit.blog/) and select `Give me Ether > 37.5 Ethers` from the top right cornor of the page.
|
||||
5. Wait for a few seconds and return to your MetaMask wallet to check if you have successfully received.
|
||||
6. Once the [prerequisites](./install.md) are installed, you can connect to testnet0 with the following commands: <br>
|
||||
6. Once the [prerequisites](./install.md) are installed, you can connect to the witti testnet with the following commands: <br>
|
||||
|
||||
- Change `testnet0` to `witti` to connect to the witti testnet.
|
||||
- Change `witti` to `testnet0` to connect to testnet0.
|
||||
- **_Remember to replace `make` with `mingw32-make` if using Windows._**
|
||||
|
||||
```bash
|
||||
|
@ -29,8 +29,8 @@ cd nim-beacon-chain
|
|||
git checkout devel
|
||||
git pull
|
||||
make update
|
||||
make testnet0 # This will build Nimbus and all other dependencies
|
||||
# and connect you to testnet0
|
||||
make witti # This will build Nimbus and all other dependencies
|
||||
# and connect you to witti
|
||||
```
|
||||
|
||||
<img src="./img/connect_testnet.PNG" alt="" style="margin: 0 40 0 40"/>
|
||||
|
@ -53,8 +53,10 @@ You can also get a brief estimate of the time remaining until your network gets
|
|||
|
||||
## Trouble Shooting
|
||||
|
||||
1. The directory that stores the blockchain data of the testnet is `build/data/testnet0` (replace `testnet0` with other testnet names). Delete this folder if you want to start over. For example, you can start over with a fresh storage if you entered a wrong private key.
|
||||
1. The directory that stores the blockchain data of the testnet is `build/data/shared_witti_0` (replace `witti` with other testnet names). Delete this folder if you want to start over. For example, you can start over with a fresh storage if you entered a wrong private key.
|
||||
|
||||
2. Currently, you have to switch to the devel branch in order to run the validator node successfully.
|
||||
|
||||
3. Everytime you want to update your node to the latest version, run `git pull`, `make update`, and then `make testnet0`.
|
||||
3. Everytime you want to update your node to the latest version, run `git pull`, `make update`, and then `make witti`.
|
||||
|
||||
4. If `make update` has been running for too long, you can use `make update V=1` or `make update V=2` for verbose output.
|
||||
|
|
Loading…
Reference in New Issue