From 3b3b33cd34c1c419b1a48458fc4fa5cc62c6599e Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 21 May 2024 12:26:33 +0200 Subject: [PATCH] Change EL&CL clients versions (#243) * Change EL&CL clients versions * fix: downgrade Prysm Signed-off-by: mxmar --- README.md | 38 +++++++++++++++++++------------------- common/shared.go | 6 +++--- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 1d2433d..04e5935 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,13 @@ The LUKSO CLI is able to install multiple clients for running the node. ### Client versions -| Client | Version | Release | -|------------|---------|--------------------------------------------------------------| -| Geth | v1.14.0 | https://github.com/ethereum/go-ethereum/releases/tag/v1.14.0 | -| Erigon | v2.59.3 | https://github.com/ledgerwatch/erigon/releases/tag/v2.59.3 | -| Prysm | v5.0.3 | https://github.com/prysmaticlabs/prysm/releases/tag/v5.0.3 | -| Lighthouse | v5.1.3 | https://github.com/sigp/lighthouse/releases/tag/v5.1.3 | -| Teku | v24.4.0 | https://github.com/Consensys/teku/releases/tag/24.4.0 | +| Client | Version | Release | +|------------|----------|---------------------------------------------------------------| +| Geth | v1.13.15 | https://github.com/ethereum/go-ethereum/releases/tag/v1.13.15 | +| Erigon | v2.59.3 | https://github.com/ledgerwatch/erigon/releases/tag/v2.59.3 | +| Prysm | v4.2.1 | https://github.com/prysmaticlabs/prysm/releases/tag/v4.2.1 | +| Lighthouse | v5.1.3 | https://github.com/sigp/lighthouse/releases/tag/v5.1.3 | +| Teku | v24.4.0 | https://github.com/Consensys/teku/releases/tag/24.4.0 | > More clients will be added in the future. @@ -186,22 +186,22 @@ $ lukso install --erigon-tag 2.55.0 # When rolling back Geth, please make sure to also provide first 8 characters of release commit hash. # You can find those on Geth's download page: https://geth.ethereum.org/downloads -$ lukso install --geth-tag 1.14.0 --geth-commit-hash 87246f3c +$ lukso install --geth-tag 1.13.15 --geth-commit-hash c5ba367e ``` #### Options for `install` -| Option | Description | Default | -|--------------------------|-----------------------------------------------------|-------------| -| --agree-terms | Automatically accept Terms and Conditions | false | -| --geth-tag value | Tag for Geth | "1.14.0" | -| --geth-commit-hash value | A hash of commit that is bound to given release tag | "87246f3c" | -| --validator-tag value | Tag for validator binary | "v5.0.3" | -| --prysm-tag value | Tag for Prysm | "v5.0.3" | -| --erigon-tag value | Tag for Erigon | "2.59.3" | -| --lighthouse-tag value | Tag for Lighthouse | "v5.1.3" | -| --teku-tag value | Tag for Teku | "24.4.0" | -| --help, -h | show help | false | +| Option | Description | Default | +|--------------------------|-----------------------------------------------------|------------| +| --agree-terms | Automatically accept Terms and Conditions | false | +| --geth-tag value | Tag for Geth | "1.13.15" | +| --geth-commit-hash value | A hash of commit that is bound to given release tag | "c5ba367e" | +| --validator-tag value | Tag for validator binary | "v4.2.1" | +| --prysm-tag value | Tag for Prysm | "v4.2.1" | +| --erigon-tag value | Tag for Erigon | "2.59.3" | +| --lighthouse-tag value | Tag for Lighthouse | "v5.1.3" | +| --teku-tag value | Tag for Teku | "24.4.0" | +| --help, -h | show help | false | ### `update` `update` will install the newest verions of the clients that you selected duing installation process. diff --git a/common/shared.go b/common/shared.go index e4fa6fe..c16249f 100644 --- a/common/shared.go +++ b/common/shared.go @@ -4,10 +4,10 @@ const ( ConfigPerms = 0750 SlotsPerEpoch = 32 - GethTag = "1.14.0" + GethTag = "1.13.15" ErigonTag = "2.59.3" - PrysmTag = "v5.0.3" + PrysmTag = "v4.2.1" LighthouseTag = "v5.1.3" TekuTag = "24.4.0" - GethCommitHash = "87246f3c" + GethCommitHash = "c5ba367e" )