Add Hoodi as named network (#8428)

Signed-off-by: Daniel Lehrner <daniel.lehrner@consensys.net>
Co-authored-by: Simon Dudley <simon.dudley@consensys.net>
This commit is contained in:
daniellehrner
2025-03-17 21:47:14 +01:00
committed by GitHub
parent 552cb283f9
commit 54aaf3d2fc
12 changed files with 1210 additions and 2 deletions

View File

@@ -88,6 +88,7 @@ public class MergeCoordinator implements MergeMiningCoordinator, BadChainListene
List.of(
BigInteger.valueOf(11155111), // Sepolia
BigInteger.valueOf(17000), // Holesky
BigInteger.valueOf(560048), // Hoodi
BigInteger.valueOf(39438135) // Ephemery
);

View File

@@ -1008,6 +1008,7 @@ public class MergeCoordinatorTest implements MergeGenesisConfigHelper {
Arguments.of("mainnet", 1L, 36_000_000L),
Arguments.of("holesky", 17_000L, 36_000_000L),
Arguments.of("sepolia", 11_155_111L, 36_000_000L),
Arguments.of("hoodi", 560_048L, 36_000_000L),
Arguments.of("ephemery", 39_438_135L, 36_000_000L));
}