2020-10-26 17:12:37 +00:00
|
|
|
# Build the beacon node
|
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
Before building and running the application, make sure you've gone through the [installed the required dependencies](./install.md).
|
|
|
|
|
|
|
|
## Building the node
|
|
|
|
|
2020-11-07 15:52:40 +00:00
|
|
|
### 1. Clone the nim beacon chain repository
|
2020-10-26 17:12:37 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
git clone https://github.com/status-im/nimbus-eth2
|
|
|
|
cd nimbus-eth2
|
|
|
|
```
|
|
|
|
|
2020-11-07 15:52:40 +00:00
|
|
|
### 2. Run the beacon node build process
|
2020-10-26 17:12:37 +00:00
|
|
|
|
|
|
|
To build the Nimbus beacon node and it's dependencies, run:
|
|
|
|
|
|
|
|
```
|
2020-11-07 18:00:31 +00:00
|
|
|
make nimbus_beacon_node
|
2020-10-26 17:12:37 +00:00
|
|
|
```
|
|
|
|
|
2021-03-05 08:53:55 +00:00
|
|
|
|