Skip to content

Commit

Permalink
Merge pull request #215 from stader-labs/client_updates
Browse files Browse the repository at this point in the history
Client updates
  • Loading branch information
batphonghan authored Jun 24, 2024
2 parents ba53ad0 + 54e5c9e commit fdc5ea0
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions shared/services/config/besu-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions shared/services/config/geth-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
8 changes: 4 additions & 4 deletions shared/services/config/lighthouse-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
4 changes: 2 additions & 2 deletions shared/services/config/lodestar-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
4 changes: 2 additions & 2 deletions shared/services/config/nethermind-params.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
8 changes: 4 additions & 4 deletions shared/services/config/prysm-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions shared/services/config/teku-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down

0 comments on commit fdc5ea0

Please sign in to comment.