Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions pages/validators/setup-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ Below are the **initial** recommended system requirements. These guidelines may

- Operating System - 64-bit Linux (Ubuntu, Debian, CentOS, etc.)
- `docker` - for running the WebDriver container
- `python3`, `python3-pip` and `python3-venv` for GenVM setup

### Setup

Expand Down Expand Up @@ -203,18 +204,19 @@ Below are the **initial** recommended system requirements. These guidelines may
```
3. Extract the node software
```sh
tar -xzvf genlayer-node-linux-amd64-${version}.tar.gz
mkdir -p ${version}
tar -xzvf `genlayer-node-linux-amd64-${version}.tar.gz` -C `./${version}`
```
4. Change the directory

```sh
cd genlayer-node-linux-amd64
cd `./${version}`
```

5. Run Genvm setup

```sh
./third_party/genvm/bin/genvm setup
python3 ./third_party/genvm/bin/setup.py
```

### Configuration
Expand Down
7 changes: 7 additions & 0 deletions pages/validators/upgrade.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ This release involves a change from a single validator address to owner/operator
- Check that configuration is correct by running `genlayernode doctor` command.
- Start the node.

Assuming already have the new tarball downloaded and extracted, copy your old keystore files to the new installation:

```shell
mkdir -p <path-to-new-installation>/data/node/keystore/
cp <path-to-old-installation>/data/node/keystore/* <path-to-new-installation>/data/node/keystore/
```

## Configuration Change

`v0.3.8` introduces updated consensus contract deployment with new contract addresses. **Critical**: Some consensus contract addresses have changed, and validators must update their consensus configuration to continue participating in the network.
Expand Down