Skip to content

Commit 80b0fbf

Browse files
authored
bump nimbus-eth2 to de75f6d3d4f18ea35220439384835f03bbd7a217 (#3248)
* bump nimbus-eth2 to stable latest * bump to latest unstable * add hoodi update * bump libp2p * add: hoodi in verfified proxy * fix: update networking params * fix: lint * fix: lint
1 parent 99201cb commit 80b0fbf

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/fluffy_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fluffy
2-
# Copyright (c) 2023-2024 Status Research & Development GmbH
2+
# Copyright (c) 2023-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ GIT_SUBMODULE_UPDATE := git -c submodule."vendor/nimbus-eth2".update=none submod
138138
git $(GIT_SUBMODULE_CONFIG) submodule update --init vendor/eth2-networks; \
139139
git $(GIT_SUBMODULE_CONFIG) submodule update --init vendor/holesky; \
140140
git $(GIT_SUBMODULE_CONFIG) submodule update --init vendor/sepolia; \
141+
git $(GIT_SUBMODULE_CONFIG) submodule update --init vendor/hoodi; \
141142
git $(GIT_SUBMODULE_CONFIG) submodule update --init vendor/gnosis-chain-configs; \
142143
git $(GIT_SUBMODULE_CONFIG) submodule update --init --recursive vendor/nim-kzg4844; \
143144
git $(GIT_SUBMODULE_CONFIG) submodule update --init vendor/mainnet; \

nimbus_verified_proxy/nimbus_verified_proxy.nim

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ func getConfiguredChainId(networkMetadata: Eth2NetworkMetadata): UInt256 =
4949
of mainnet: 1.u256
5050
of sepolia: 11155111.u256
5151
of holesky: 17000.u256
52+
of hoodi: 560048.u256
5253
return chainId
5354
else:
5455
return networkMetadata.cfg.DEPOSIT_CHAIN_ID.u256
@@ -271,7 +272,9 @@ proc run*(
271272
for gossipFork in newGossipForks:
272273
let forkDigest = forkDigests[].atConsensusFork(gossipFork)
273274
network.subscribe(
274-
getBeaconBlocksTopic(forkDigest), blocksTopicParams, enableTopicMetrics = true
275+
getBeaconBlocksTopic(forkDigest),
276+
getBlockTopicParams(),
277+
enableTopicMetrics = true,
275278
)
276279

277280
blocksGossipState = targetGossipState

vendor/nim-libp2p

vendor/nimbus-eth2

Submodule nimbus-eth2 updated 183 files

0 commit comments

Comments
 (0)