Skip to content

Commit 95f8545

Browse files
authored
chore: update attestantio client (#186)
* chore: update attestantio client * chore: update readme
1 parent cf8d990 commit 95f8545

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ At all times, refer to the `mainnet`, `testnet`, and `preprod` git tags to under
99
| Environment | Version |
1010
| -------------- | ------------- |
1111
| Mainnet | [v1.5.2](https://github.com/Layr-Labs/eigenpod-proofs-generation/releases/tag/v1.5.2) |
12-
| Testnet(Hoodi & Holesky)| [v1.6.0](https://github.com/Layr-Labs/eigenpod-proofs-generation/releases/tag/v1.6.0) |
13-
| Preprod | [v1.6.0](https://github.com/Layr-Labs/eigenpod-proofs-generation/releases/tag/v1.6.0) |
12+
| Testnet(Hoodi & Holesky)| [v1.6.1](https://github.com/Layr-Labs/eigenpod-proofs-generation/releases/tag/v1.6.1) |
13+
| Preprod | [v1.6.1](https://github.com/Layr-Labs/eigenpod-proofs-generation/releases/tag/v1.6.1) |
1414

1515
# Introduction
1616

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.23.10
66

77
require (
88
github.com/Layr-Labs/eigenlayer-contracts v1.6.2
9-
github.com/attestantio/go-eth2-client v0.26.1-0.20250829122455-ff89a2135a43
9+
github.com/attestantio/go-eth2-client v0.27.0
1010
github.com/ethereum/go-ethereum v1.16.1
1111
github.com/fatih/color v1.18.0
1212
github.com/ferranbt/fastssz v0.1.4

go.sum

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ=
22
github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo=
3-
github.com/Layr-Labs/eigenlayer-contracts v1.6.0 h1:UbhJoW26ODRfhE6gqE0JezIWjITEoTTrNiBSvXOMYTY=
4-
github.com/Layr-Labs/eigenlayer-contracts v1.6.0/go.mod h1:Ie8YE3EQkTHqG6/tnUS0He7/UPMkXPo/3OFXwSy0iRo=
53
github.com/Layr-Labs/eigenlayer-contracts v1.6.2 h1:SpTz7sx2oCNpk23ZRuWcyAZ6Xvd0p1e3YePQr7jbgBo=
64
github.com/Layr-Labs/eigenlayer-contracts v1.6.2/go.mod h1:Ie8YE3EQkTHqG6/tnUS0He7/UPMkXPo/3OFXwSy0iRo=
75
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
86
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
97
github.com/VictoriaMetrics/fastcache v1.12.2 h1:N0y9ASrJ0F6h0QaC3o6uJb3NIZ9VKLjCM7NQbSmF7WI=
108
github.com/VictoriaMetrics/fastcache v1.12.2/go.mod h1:AmC+Nzz1+3G2eCPapF6UcsnkThDcMsQicp4xDukwJYI=
11-
github.com/attestantio/go-eth2-client v0.24.0 h1:lGVbcnhlBwRglt1Zs56JOCgXVyLWKFZOmZN8jKhE7Ws=
12-
github.com/attestantio/go-eth2-client v0.24.0/go.mod h1:/KTLN3WuH1xrJL7ZZrpBoWM1xCCihnFbzequD5L+83o=
13-
github.com/attestantio/go-eth2-client v0.26.1-0.20250829122455-ff89a2135a43 h1:v5l00W4U5WuYz6+Cux0URjN/VBKCupwzG6gCgRdn6Wo=
14-
github.com/attestantio/go-eth2-client v0.26.1-0.20250829122455-ff89a2135a43/go.mod h1:fvULSL9WtNskkOB4i+Yyr6BKpNHXvmpGZj9969fCrfY=
9+
github.com/attestantio/go-eth2-client v0.27.0 h1:zOXtDVnMNRwX6GjpJYgXUNsXckEx76pGRDi76i7xhSI=
10+
github.com/attestantio/go-eth2-client v0.27.0/go.mod h1:fvULSL9WtNskkOB4i+Yyr6BKpNHXvmpGZj9969fCrfY=
1511
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
1612
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
1713
github.com/bits-and-blooms/bitset v1.20.0 h1:2F+rfL86jE2d/bmw7OhqUg2Sj/1rURkBn3MdfoPyRVU=

0 commit comments

Comments
 (0)