nixos/geth: add holesky testnet

This commit is contained in:
Weijia Wang 2024-09-27 01:17:21 +02:00
parent 3af33764b4
commit 63ab048916
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ let
};
network = lib.mkOption {
type = lib.types.nullOr (lib.types.enum [ "goerli" "rinkeby" "yolov2" "ropsten" ]);
type = lib.types.nullOr (lib.types.enum [ "goerli" "holesky" "rinkeby" "yolov2" "ropsten" ]);
default = null;
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
};

View File

@ -14,7 +14,7 @@ import ./make-test-python.nix ({ pkgs, ... }: {
services.geth."testnet" = {
enable = true;
port = 30304;
network = "goerli";
network = "holesky";
http = {
enable = true;
port = 18545;