Skip to content

Commit d9de5f0

Browse files
jyap808aldoborrero
authored andcommitted
fix: update Prysm CI and deprecated testnet references
1 parent 01a2d04 commit d9de5f0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

modules/prysm-beacon/args.nix

Lines changed: 3 additions & 3 deletions
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 ["goerli" "holesky" "prater" "ropsten" "sepolia"]);
4+
type = types.nullOr (types.enum ["holesky" "hoodi" "sepolia"]);
55
default = null;
66
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
77
};
@@ -17,14 +17,14 @@ with lib; {
1717
type = types.nullOr types.str;
1818
default = null;
1919
description = "URL of a synced beacon node to trust in obtaining checkpoint sync data. As an additional safety measure, it is strongly recommended to only use this option in conjunction with --weak-subjectivity-checkpoint flag";
20-
example = "https://goerli.checkpoint-sync.ethpandaops.io";
20+
example = "https://checkpoint-sync.sepolia.ethpandaops.io";
2121
};
2222

2323
genesis-beacon-api-url = mkOption {
2424
type = types.nullOr types.str;
2525
default = null;
2626
description = "URL of a synced beacon node to trust for obtaining genesis state. As an additional safety measure, it is strongly recommended to only use this option in conjunction with --weak-subjectivity-checkpoint flag";
27-
example = "https://goerli.checkpoint-sync.ethpandaops.io";
27+
example = "https://checkpoint-sync.sepolia.ethpandaops.io";
2828
};
2929

3030
p2p-udp-port = mkOption {

modules/prysm-validator/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 ["goerli" "holesky" "prater" "ropsten" "sepolia"]);
4+
type = types.nullOr (types.enum ["holesky" "hoodi" "sepolia"]);
55
default = null;
66
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
77
};

modules/prysm-validator/default.test.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
${pkgs.prysm}/bin/validator wallet create \
2222
--accept-terms-of-use \
23-
--goerli \
23+
--sepolia \
2424
--keymanager-kind="direct" \
2525
--mnemonic-25th-word-file /tmp/wallet/mnemonic.txt \
2626
--skip-mnemonic-25th-word-check true \
@@ -44,7 +44,7 @@
4444
enable = true;
4545
args = {
4646
datadir = "/tmp/prysm-validator";
47-
network = "goerli";
47+
network = "sepolia";
4848
rpc = {
4949
enable = true;
5050
host = "127.0.0.1";

0 commit comments

Comments
 (0)