diff --git a/.github/actions/sync-files/action.yml b/.github/actions/sync-files/action.yml index 6bcd1c0b..d8eade87 100644 --- a/.github/actions/sync-files/action.yml +++ b/.github/actions/sync-files/action.yml @@ -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: @@ -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" @@ -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 diff --git a/.github/workflows/sync-docs-from-node.yml b/.github/workflows/sync-docs-from-node.yml index c2ec7bf5..2fd0da7a 100644 --- a/.github/workflows/sync-docs-from-node.yml +++ b/.github/workflows/sync-docs-from-node.yml @@ -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 diff --git a/content/validators/changelog/v0.5.4.mdx b/content/validators/changelog/v0.5.4.mdx new file mode 100644 index 00000000..1260d1f8 --- /dev/null +++ b/content/validators/changelog/v0.5.4.mdx @@ -0,0 +1,5 @@ +## v0.5.4 + +### New features + +- Add `--network` flag to doctor command for multi-network validation diff --git a/pages/validators/changelog.mdx b/pages/validators/changelog.mdx index 65774f12..9dc6c061 100644 --- a/pages/validators/changelog.mdx +++ b/pages/validators/changelog.mdx @@ -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 diff --git a/pages/validators/setup-guide.mdx b/pages/validators/setup-guide.mdx index 420cc4b8..f05c885c 100644 --- a/pages/validators/setup-guide.mdx +++ b/pages/validators/setup-guide.mdx @@ -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 @@ -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' ``` @@ -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' ```