Skip to content

Commit

Permalink
update mainnet config
Browse files Browse the repository at this point in the history
  • Loading branch information
qywang2012 committed Mar 31, 2020
1 parent 0352d03 commit 3350948
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
9 changes: 4 additions & 5 deletions docs/go-nebulas/blockchain/mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@

## Introduction

The Nebulas Mainnet 2.0 (Nebulas Nova) has been released. This tutorial will teach you how to join and work with the Nebulas Mainnet.
The Nebulas Mainnet 3.0.0 (Nebulas Voyager) has been released. This tutorial will teach you how to join and work with the Nebulas Mainnet.

> [https://github.com/nebulasio/go-nebulas/tree/master](https://github.com/nebulasio/go-nebulas/tree/master)
> [https://github.com/nebulasio/go-nebulas/tree/v3.0.0](https://github.com/nebulasio/go-nebulas/tree/v3.0.0)
### Build

The Nebulas Mainnet's executable file and dependant libraries need to be built first. Several important modules are highlighted below:

* **NBRE:** The Nebulas Blockchain Runtime Environment is the platform for running Nebulas Protocol Representation, such as the DIP, the NR, etcetera.
* **NEB:** The main process of the Nebulas Mainnet. `NEB` and `NBRE` run in standalone processes, and communicate through IPC.
* **NEB:** The main process of the Nebulas Mainnet.

Details of building the modules can be found in [tutorials](../tutorials/01-installation.html#compile-nebulas).

Expand Down Expand Up @@ -39,7 +38,7 @@ Please check the [`template.conf`](https://github.com/nebulasio/nebdocs/blob/mas
> _Tips_: the official seed node info is as follows,
```javascript
seed:["/ip4/52.2.205.12/tcp/8680/ipfs/QmQK7W8wrByJ6So7rf84sZzKBxMYmc1i4a7JZsne93ysz5","/ip4/52.56.55.238/tcp/8680/ipfs/QmVy9AHxBpd1iTvECDR7fvdZnqXeDhnxkZJrKsyuHNYKAh","/ip4/13.251.33.39/tcp/8680/ipfs/QmVm5CECJdPAHmzJWN2X7tP335L5LguGb9QLQ78riA9gw3"]
seed:["/ip4/52.76.103.107/tcp/8680/ipfs/Qmbi1NVTYHkeuST2wS3B3aHiTLHDajHZpoZk5EDpAXt9H2","/ip4/52.56.55.238/tcp/8680/ipfs/QmVy9AHxBpd1iTvECDR7fvdZnqXeDhnxkZJrKsyuHNYKAh","/ip4/34.198.52.191/tcp/8680/ipfs/QmQK7W8wrByJ6So7rf84sZzKBxMYmc1i4a7JZsne93ysz5"]
```

#### Miner config
Expand Down
8 changes: 4 additions & 4 deletions docs/go-nebulas/tutorials/01-installation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 01 Compile and Install Nebulas

The current version of Nebulas Mainnet is 2.1.1, which is called Nebulas Nova.
The current version of Nebulas Mainnet is 3.0.0, which is called Nebulas Nova.

Nebulas Nova aims to discover the value of blockchain data, and it also means the future of collaboration.

Expand Down Expand Up @@ -42,10 +42,10 @@ export GOPATH=/path/to/workspace

```bash
# download
wget https://dl.google.com/go/go1.12.linux-amd64.tar.gz
wget https://dl.google.com/go/go1.14.1.linux-amd64.tar.gz

# extract
tar -C /usr/local -xzf go1.12.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.14.1.linux-amd64.tar.gz

# environment variables
export PATH=$PATH:/usr/local/go/bin
Expand Down Expand Up @@ -104,7 +104,7 @@ Before launching a new Nebulas chain, we have to define the configuration of gen
meta {
# Chain identity
chain_id: 100
chain_id: 1
}
consensus {
Expand Down

0 comments on commit 3350948

Please sign in to comment.