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
6 changes: 3 additions & 3 deletions .github/actions/sync-files/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
using: 'composite'
steps:
- name: Prepare config file
if: inputs.type == 'config' || inputs.type == 'config_asimov' || inputs.type == 'config_bradbury'
if: inputs.type == 'config'
shell: bash
run: |
# For config type, handle special case:
Expand Down Expand Up @@ -92,7 +92,7 @@ runs:
shell: bash
run: |
# Use prepared source for config/docker_compose types, otherwise use original source
if [[ "${{ inputs.type }}" == "config" || "${{ inputs.type }}" == "config_asimov" || "${{ inputs.type }}" == "config_bradbury" ]] && [[ -n "$CONFIG_SOURCE" ]]; then
if [[ "${{ inputs.type }}" == "config" ]] && [[ -n "$CONFIG_SOURCE" ]]; then
SOURCE_PATH="$CONFIG_SOURCE"
elif [[ "${{ inputs.type }}" == "docker_compose" ]] && [[ -n "$DOCKER_COMPOSE_SOURCE" ]]; then
SOURCE_PATH="$DOCKER_COMPOSE_SOURCE"
Expand All @@ -109,7 +109,7 @@ runs:
"${{ inputs.exclude_files }}"

- name: Cleanup config temp directory
if: (inputs.type == 'config' || inputs.type == 'config_asimov' || inputs.type == 'config_bradbury') && always()
if: inputs.type == 'config' && always()
shell: bash
run: |
if [[ -n "$TEMP_CONFIG_DIR" ]] && [[ -d "$TEMP_CONFIG_DIR" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-docs-from-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install yq for YAML sanitization
if: matrix.sync_type == 'config' || matrix.sync_type == 'config_asimov' || matrix.sync_type == 'config_bradbury' || matrix.sync_type == 'docker_compose'
if: matrix.sync_type == 'config' || matrix.sync_type == 'docker_compose'
run: |
sudo wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64
sudo chmod +x /usr/local/bin/yq
Expand Down
5 changes: 5 additions & 0 deletions content/validators/changelog/v0.5.4.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.5.4

### New features

- Add `--network` flag to doctor command for multi-network validation
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.4

### New features

- Add `--network` flag to doctor command for multi-network validation

## v0.5.3

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

```sh
v0.5.4
v0.5.3
v0.5.2
v0.5.1
v0.5.0
v0.4.5
```

Typically, you will want to run the latest version

2. Download the packaged application
```sh copy
export version=v0.5.3 # set your desired version here
export version=v0.5.4 # 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 @@ -377,6 +377,9 @@ Set the `consensus` section in your `config.yaml` according to the network you w
consensus:
consensusaddress: "0xe66B434bc83805f380509642429eC8e43AE9874a"
genesis: 17326
rollup:
genlayerchainrpcurl: 'TODO: Set your GenLayer Chain ZKSync HTTP RPC URL here'
genlayerchainwebsocketurl: 'TODO: Set your GenLayer Chain ZKSync WebSocket RPC URL here'

```

Expand All @@ -387,6 +390,9 @@ consensus:
consensus:
consensusaddress: "0x8aCE036C8C3C5D603dB546b031302FCf149648E8"
genesis: 501711
rollup:
genlayerchainrpcurl: 'TODO: Set your GenLayer Chain ZKSync HTTP RPC URL here'
genlayerchainwebsocketurl: 'TODO: Set your GenLayer Chain ZKSync WebSocket RPC URL here'

```

Expand Down
Loading