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
5 changes: 5 additions & 0 deletions content/validators/changelog/v0.5.14.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.5.14

### Bug fixes

- Skip replay check when chain records no result
2 changes: 2 additions & 0 deletions content/validators/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ node:
metrics: true # Enable metrics endpoint
health: true # Enable health endpoint
balance: true # Enable balance endpoint
dev:
disableSubscription: false # Useful for testing with zksync-anvil
# genvm configuration
genvm:
root_dir: ./third_party/genvm
Expand Down
6 changes: 6 additions & 0 deletions pages/validators/changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.5.14

### Bug fixes

- Skip replay check when chain records no result

## v0.5.13

### Bug fixes
Expand Down
6 changes: 4 additions & 2 deletions pages/validators/setup-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -216,18 +216,18 @@ One full node can be shared between multiple validators. The optimal validator-t
You should see a list like this

```sh
v0.5.14
v0.5.13
v0.5.12
v0.5.11
v0.5.10
v0.5.9
```

Typically, you will want to run the latest version

2. Download the packaged application
```sh copy
export version=v0.5.13 # set your desired version here
export version=v0.5.14 # set your desired version here
wget https://storage.googleapis.com/gh-af/genlayer-node/bin/amd64/${version}/genlayer-node-linux-amd64-${version}.tar.gz
```
3. Extract the node software
Expand Down Expand Up @@ -416,6 +416,8 @@ node:
metrics: true # Enable metrics endpoint
health: true # Enable health endpoint
balance: true # Enable balance endpoint
dev:
disableSubscription: false # Useful for testing with zksync-anvil
# genvm configuration
genvm:
root_dir: ./third_party/genvm
Expand Down
Loading