Skip to content

Commit a86f9bb

Browse files
authored
Add hoodi testnet to most(?) modules missing it. (#638)
1 parent 7341374 commit a86f9bb

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

modules/erigon/args.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ with lib; {
2828
"rinkeby"
2929
"goerli"
3030
"holesky"
31+
"hoodi"
3132
"sokol"
3233
"fermion"
3334
"mumbai"

modules/lighthouse-beacon/args.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
}:
77
with lib; {
88
network = mkOption {
9-
type = types.nullOr (types.enum ["mainnet" "prater" "goerli" "gnosis" "chiado" "sepolia" "holesky"]);
9+
type = types.nullOr (types.enum ["mainnet" "prater" "goerli" "gnosis" "chiado" "sepolia" "holesky" "hoodi"]);
1010
default = name;
1111
defaultText = "name";
1212
description = "The network to connect to. Mainnet is the default ethereum network.";

modules/lighthouse-validator/args.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
}:
66
with lib; {
77
network = mkOption {
8-
type = types.nullOr (types.enum ["mainnet" "prater" "goerli" "gnosis" "chiado" "sepolia" "holesky"]);
8+
type = types.nullOr (types.enum ["mainnet" "prater" "goerli" "gnosis" "chiado" "sepolia" "holesky" "hoodi"]);
99
default = name;
1010
defaultText = "name";
1111
description = "The network to connect to. Mainnet is the default ethereum network.";

modules/mev-boost/args.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
lib:
22
with lib; {
33
network = mkOption {
4-
type = types.nullOr (types.enum ["mainnet" "holesky" "sepolia" "zhejiang"]);
4+
type = types.nullOr (types.enum ["mainnet" "holesky" "sepolia" "zhejiang" "hoodi"]);
55
default = null;
66
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
77
};

modules/nimbus-beacon/args.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
}:
66
with lib; {
77
network = mkOption {
8-
type = types.enum ["mainnet" "prater" "sepolia" "holesky" "gnosis" "chiado"];
8+
type = types.enum ["mainnet" "prater" "sepolia" "holesky" "gnosis" "chiado" "hoodi"];
99
default = name;
1010
defaultText = "name";
1111
description = "The Eth2 network to join";

modules/reth/args.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ with lib; {
1717
"mainnet"
1818
"sepolia"
1919
"holesky"
20+
"hoodi"
2021
"dev"
2122
];
2223
default = "mainnet";

0 commit comments

Comments
 (0)