Skip to content

Commit 8aa1756

Browse files
authored
Merge pull request #233 from stader-labs/client_updates
Client updates
2 parents 301766f + 36120cf commit 8aa1756

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

Diff for: go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ require (
2525
github.com/prysmaticlabs/prysm/v5 v5.0.3
2626
github.com/sethvargo/go-password v0.2.0
2727
github.com/shirou/gopsutil/v3 v3.23.1
28-
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20250227120156-75f672823ee8
29-
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20250227120156-75f672823ee8
28+
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20250305061959-e344175bf95d
29+
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20250305061959-e344175bf95d
3030
github.com/tyler-smith/go-bip39 v1.1.0
3131
github.com/urfave/cli v1.22.10
3232
github.com/wealdtech/go-eth2-types/v2 v2.7.0

Diff for: go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -319,10 +319,10 @@ github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeV
319319
github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=
320320
github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
321321
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
322-
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20250227120156-75f672823ee8 h1:FtP0WTFPu80nJ3SGJ90R8xxDWrPp/OCFXg5zzh5NjMM=
323-
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20250227120156-75f672823ee8/go.mod h1:cZXmAbD7pFlFRFpplBAvs0aZQQpn1mqrOFXvk1eG5GE=
324-
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20250227120156-75f672823ee8 h1:Vq90lRwWK1FcQEll7W/ijvpuabMnIxRRNlhE439oniM=
325-
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20250227120156-75f672823ee8/go.mod h1:foAYtd7iN9Dw69NtRaYaSw1x77IufSTxG5XMFfhPNCg=
322+
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20250305061959-e344175bf95d h1:M/oBOR62OHJ4yZrmriGLUtSxnUI/nZduNGvQDelvk8s=
323+
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20250305061959-e344175bf95d/go.mod h1:cZXmAbD7pFlFRFpplBAvs0aZQQpn1mqrOFXvk1eG5GE=
324+
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20250305061959-e344175bf95d h1:f8CIcwgnnLgfMYZPv35CpkwLFmz1udKJpulrXt+8C1Q=
325+
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20250305061959-e344175bf95d/go.mod h1:foAYtd7iN9Dw69NtRaYaSw1x77IufSTxG5XMFfhPNCg=
326326
github.com/status-im/keycard-go v0.2.0 h1:QDLFswOQu1r5jsycloeQh3bVU8n/NatHHaZobtDnDzA=
327327
github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg=
328328
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

Diff for: shared/services/config/geth-params.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828

2929
// Constants
3030
const (
31-
gethTagProd string = "ethereum/client-go:v1.15.2"
32-
gethTagTest string = "ethereum/client-go:v1.15.2"
31+
gethTagProd string = "ethereum/client-go:v1.15.4"
32+
gethTagTest string = "ethereum/client-go:v1.15.4"
3333
gethEventLogInterval int = 1000
3434
gethStopSignal string = "SIGTERM"
3535
)

Diff for: shared/services/config/lighthouse-config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
const (
27-
lighthouseTagPortableTest string = "sigp/lighthouse:v7.0.0-beta.0"
27+
lighthouseTagPortableTest string = "sigp/lighthouse:v7.0.0-beta.2"
2828
lighthouseTagPortableProd string = "sigp/lighthouse:v6.0.1"
2929
defaultLhMaxPeers uint16 = 100
3030
)

Diff for: shared/services/config/lodestar-config.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
)
2525

2626
const (
27-
lodestarTagTest string = "chainsafe/lodestar:v1.27.0"
28-
lodestarTagProd string = "chainsafe/lodestar:v1.27.0"
27+
lodestarTagTest string = "chainsafe/lodestar:v1.27.1"
28+
lodestarTagProd string = "chainsafe/lodestar:v1.27.1"
2929
defaultLodestarMaxPeers uint16 = 100
3030
)
3131

Diff for: shared/services/config/nethermind-params.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828

2929
// Constants
3030
const (
31-
nethermindTagProd string = "nethermind/nethermind:1.31.2"
32-
nethermindTagTest string = "nethermind/nethermind:1.31.2"
31+
nethermindTagProd string = "nethermind/nethermind:1.31.3"
32+
nethermindTagTest string = "nethermind/nethermind:1.31.3"
3333
nethermindEventLogInterval int = 1000
3434
nethermindStopSignal string = "SIGTERM"
3535
)

Diff for: shared/services/config/nimbus-config.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ import (
2727

2828
const (
2929
// Testnet
30-
nimbusBnTagTest string = "statusim/nimbus-eth2:multiarch-v25.2.0"
31-
nimbusVcTagTest string = "statusim/nimbus-validator-client:multiarch-v25.2.0"
30+
nimbusBnTagTest string = "statusim/nimbus-eth2:multiarch-v25.3.0"
31+
nimbusVcTagTest string = "statusim/nimbus-validator-client:multiarch-v25.3.0"
3232

3333
// Mainnet
34-
nimbusBnTagProd string = "statusim/nimbus-eth2:multiarch-v25.2.0"
35-
nimbusVcTagProd string = "statusim/nimbus-validator-client:multiarch-v25.2.0"
34+
nimbusBnTagProd string = "statusim/nimbus-eth2:multiarch-v25.3.0"
35+
nimbusVcTagProd string = "statusim/nimbus-validator-client:multiarch-v25.3.0"
3636

3737
defaultNimbusMaxPeersArm uint16 = 100
3838
defaultNimbusMaxPeersAmd uint16 = 160

0 commit comments

Comments
 (0)