mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 03:55:44 +03:00
nixos/geth: add holesky testnet
This commit is contained in:
parent
3af33764b4
commit
63ab048916
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
network = lib.mkOption {
|
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;
|
default = null;
|
||||||
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
|
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,7 +14,7 @@ import ./make-test-python.nix ({ pkgs, ... }: {
|
||||||
services.geth."testnet" = {
|
services.geth."testnet" = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 30304;
|
port = 30304;
|
||||||
network = "goerli";
|
network = "holesky";
|
||||||
http = {
|
http = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 18545;
|
port = 18545;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue