From 54e5c9e4485728c2df69cdfb3eb272b028227a03 Mon Sep 17 00:00:00 2001 From: batphonghan Date: Mon, 24 Jun 2024 12:14:58 +0700 Subject: [PATCH] Client updates --- shared/services/config/besu-params.go | 4 ++-- shared/services/config/geth-params.go | 4 ++-- shared/services/config/lighthouse-config.go | 8 ++++---- shared/services/config/lodestar-config.go | 4 ++-- shared/services/config/nethermind-params.go | 4 ++-- shared/services/config/prysm-config.go | 8 ++++---- shared/services/config/teku-config.go | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/shared/services/config/besu-params.go b/shared/services/config/besu-params.go index 3b343c2f..6f2cc993 100644 --- a/shared/services/config/besu-params.go +++ b/shared/services/config/besu-params.go @@ -25,8 +25,8 @@ import ( // Constants const ( - besuTagTest string = "hyperledger/besu:24.5.2" - besuTagProd string = "hyperledger/besu:24.5.2" + besuTagTest string = "hyperledger/besu:24.5.4" + besuTagProd string = "hyperledger/besu:24.5.4" besuEventLogInterval int = 1000 besuMaxPeers uint16 = 25 besuStopSignal string = "SIGTERM" diff --git a/shared/services/config/geth-params.go b/shared/services/config/geth-params.go index ff04f976..6ff190eb 100644 --- a/shared/services/config/geth-params.go +++ b/shared/services/config/geth-params.go @@ -28,8 +28,8 @@ import ( // Constants const ( - gethTagProd string = "ethereum/client-go:v1.14.3" - gethTagTest string = "ethereum/client-go:v1.14.3" + gethTagProd string = "ethereum/client-go:v1.14.5" + gethTagTest string = "ethereum/client-go:v1.14.5" gethEventLogInterval int = 1000 gethStopSignal string = "SIGTERM" ) diff --git a/shared/services/config/lighthouse-config.go b/shared/services/config/lighthouse-config.go index d12a8796..bc6cc7d2 100644 --- a/shared/services/config/lighthouse-config.go +++ b/shared/services/config/lighthouse-config.go @@ -25,10 +25,10 @@ import ( ) const ( - lighthouseTagPortableTest string = "sigp/lighthouse:v5.1.3" - lighthouseTagPortableProd string = "sigp/lighthouse:v5.1.3" - lighthouseTagModernTest string = "sigp/lighthouse:v5.1.3-modern" - lighthouseTagModernProd string = "sigp/lighthouse:v5.1.3-modern" + lighthouseTagPortableTest string = "sigp/lighthouse:v5.2.0" + lighthouseTagPortableProd string = "sigp/lighthouse:v5.2.0" + lighthouseTagModernTest string = "sigp/lighthouse:v5.2.0-modern" + lighthouseTagModernProd string = "sigp/lighthouse:v5.2.0-modern" defaultLhMaxPeers uint16 = 80 ) diff --git a/shared/services/config/lodestar-config.go b/shared/services/config/lodestar-config.go index a827bf4a..d889da23 100644 --- a/shared/services/config/lodestar-config.go +++ b/shared/services/config/lodestar-config.go @@ -24,8 +24,8 @@ import ( ) const ( - lodestarTagTest string = "chainsafe/lodestar:v1.18.1" - lodestarTagProd string = "chainsafe/lodestar:v1.18.1" + lodestarTagTest string = "chainsafe/lodestar:v1.19.0" + lodestarTagProd string = "chainsafe/lodestar:v1.19.0" defaultLodestarMaxPeers uint16 = 50 ) diff --git a/shared/services/config/nethermind-params.go b/shared/services/config/nethermind-params.go index c09f16a2..8cbd83fe 100644 --- a/shared/services/config/nethermind-params.go +++ b/shared/services/config/nethermind-params.go @@ -28,8 +28,8 @@ import ( // Constants const ( - nethermindTagProd string = "nethermind/nethermind:1.26.0" - nethermindTagTest string = "nethermind/nethermind:1.26.0" + nethermindTagProd string = "nethermind/nethermind:1.27.0" + nethermindTagTest string = "nethermind/nethermind:1.27.0" nethermindEventLogInterval int = 1000 nethermindStopSignal string = "SIGTERM" ) diff --git a/shared/services/config/prysm-config.go b/shared/services/config/prysm-config.go index df5a5716..bfa604cd 100644 --- a/shared/services/config/prysm-config.go +++ b/shared/services/config/prysm-config.go @@ -27,11 +27,11 @@ import ( ) const ( - prysmBnTagTest string = "staderlabs/prysm:v5.0.3" - prysmVcTagTest string = "staderlabs/prysm:v5.0.3" + prysmBnTagTest string = "staderlabs/prysm:v5.0.4" + prysmVcTagTest string = "staderlabs/prysm:v5.0.4" - prysmBnTagProd string = "staderlabs/prysm:v5.0.3" - prysmVcTagProd string = "staderlabs/prysm:v5.0.3" + prysmBnTagProd string = "staderlabs/prysm:v5.0.4" + prysmVcTagProd string = "staderlabs/prysm:v5.0.4" defaultPrysmRpcPort uint16 = 5053 defaultPrysmOpenRpcPort bool = false diff --git a/shared/services/config/teku-config.go b/shared/services/config/teku-config.go index 8d8b07b4..44d18181 100644 --- a/shared/services/config/teku-config.go +++ b/shared/services/config/teku-config.go @@ -25,8 +25,8 @@ import ( ) const ( - tekuTagTest string = "consensys/teku:24.4.0" - tekuTagProd string = "consensys/teku:24.4.0" + tekuTagTest string = "consensys/teku:24.6.1" + tekuTagProd string = "consensys/teku:24.6.1" defaultTekuMaxPeers uint16 = 100 )