Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions modules/prysm-beacon/args.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lib:
with lib; {
network = mkOption {
type = types.nullOr (types.enum ["goerli" "holesky" "prater" "ropsten" "sepolia"]);
type = types.nullOr (types.enum ["holesky" "hoodi" "sepolia"]);
default = null;
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
};
Expand All @@ -17,14 +17,14 @@ with lib; {
type = types.nullOr types.str;
default = null;
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";
example = "https://goerli.checkpoint-sync.ethpandaops.io";
example = "https://checkpoint-sync.sepolia.ethpandaops.io";
};

genesis-beacon-api-url = mkOption {
type = types.nullOr types.str;
default = null;
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";
example = "https://goerli.checkpoint-sync.ethpandaops.io";
example = "https://checkpoint-sync.sepolia.ethpandaops.io";
};

p2p-udp-port = mkOption {
Expand Down
2 changes: 1 addition & 1 deletion modules/prysm-validator/args.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lib:
with lib; {
network = mkOption {
type = types.nullOr (types.enum ["goerli" "holesky" "prater" "ropsten" "sepolia"]);
type = types.nullOr (types.enum ["holesky" "hoodi" "sepolia"]);
default = null;
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
};
Expand Down
4 changes: 2 additions & 2 deletions modules/prysm-validator/default.test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

${pkgs.prysm}/bin/validator wallet create \
--accept-terms-of-use \
--goerli \
--sepolia \
--keymanager-kind="direct" \
--mnemonic-25th-word-file /tmp/wallet/mnemonic.txt \
--skip-mnemonic-25th-word-check true \
Expand All @@ -44,7 +44,7 @@
enable = true;
args = {
datadir = "/tmp/prysm-validator";
network = "goerli";
network = "sepolia";
rpc = {
enable = true;
host = "127.0.0.1";
Expand Down
6 changes: 3 additions & 3 deletions pkgs/by-name/me/mev-boost/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
}:
buildGoModule rec {
pname = "mev-boost";
version = "1.8";
version = "1.9-rc3";

src = fetchFromGitHub {
owner = "flashbots";
repo = "${pname}";
rev = "v${version}";
hash = "sha256-EFPVBSSIef3cTrYp3X1xCEOtYcGpuW/GZXHXX+0wGd8=";
hash = "sha256-wBIK0J1KJpJPHjjsR8NeKeJfBjWMjc6Dbw8CZ+sOlfc=";
};

vendorHash = "sha256-xkncfaqNfgPt5LEQ3JyYXHHq6slOUchomzqwkZCgCOM=";
vendorHash = "sha256-V1KEMgS3dlPZjHZKLUKdFvbRT7Iq5h38wqDsHMXP/rU=";

buildInputs = [blst];

Expand Down
2 changes: 1 addition & 1 deletion pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
heimdall = callPackage ./by-name/he/heimdall {};
lighthouse = callPackageUnstable ./by-name/li/lighthouse {inherit foundry;};
mcl = callPackage ./by-name/mc/mcl {};
mev-boost = callPackage ./by-name/me/mev-boost {inherit blst;};
mev-boost = callPackageUnstable ./by-name/me/mev-boost {inherit blst;};
mev-boost-builder = callPackage ./by-name/me/mev-boost-builder {inherit blst;};
mev-boost-relay = callPackage ./by-name/me/mev-boost-relay {inherit blst;};
mev-rs = callPackage ./by-name/me/mev-rs {};
Expand Down