|
2 | 2 | # Some fields are optional and can be omitted, in which case the default value, if present, will be used. |
3 | 3 |
|
4 | 4 | # Chain spec ID. Supported values: |
5 | | -# A network ID. Supported values: Mainnet, Holesky, Sepolia, Helder, Hoodi. |
| 5 | +# A network ID. Supported values: Mainnet, Holesky, Sepolia, Helder, Hoodi. Lower case values e.g. "mainnet" are also accepted |
6 | 6 | # A custom object, e.g., chain = { genesis_time_secs = 1695902400, path = "/path/to/spec.json" }, with a path to a chain spec file, either in .json format (e.g., as returned by the beacon endpoint /eth/v1/config/spec), or in .yml format (see examples in tests/data). |
7 | 7 | # A custom object, e.g., chain = { genesis_time_secs = 1695902400, slot_time_secs = 12, genesis_fork_version = "0x01017000" }. |
8 | 8 | chain = "Holesky" |
@@ -212,19 +212,21 @@ jwt_auth_fail_timeout_seconds = 300 |
212 | 212 | [signer.local.loader] |
213 | 213 | # File: path to the keys file |
214 | 214 | key_path = "./tests/data/keys.example.json" |
215 | | -# ValidatorsDir: format of the keystore (lighthouse, prysm, teku or lodestar) |
| 215 | +# ValidatorsDir: format of the keystore (lighthouse, prysm, teku, lodestar, or nimbus) |
216 | 216 | # format = "lighthouse" |
217 | 217 | # ValidatorsDir: full path to the keys directory |
218 | | -# For lighthouse, it's de path to the directory where the `<pubkey>/voting-keystore.json` directories are located. |
| 218 | +# For lighthouse, it's the path to the directory where the `<pubkey>` directories are located, under each of which is a `voting-keystore.json` file. |
219 | 219 | # For prysm, it's the path to the `all-accounts.keystore.json` file. |
220 | 220 | # For teku, it's the path to the directory where all `<pubkey>.json` files are located. |
221 | 221 | # For lodestar, it's the path to the directory where all `<pubkey>.json` files are located. |
| 222 | +# For nimbus, it's the path to the directory where the `<pubkey>` directories are located, under each of which is a `keystore.json` file. |
222 | 223 | # keys_path = "" |
223 | 224 | # ValidatorsDir: full path to the secrets file/directory |
224 | | -# For lighthouse, it's de path to the directory where the `<pubkey>.json` files are located. |
| 225 | +# For lighthouse, it's the path to the directory where the `<pubkey>` files are located. |
225 | 226 | # For prysm, it's the path to the file containing the wallet decryption password. |
226 | 227 | # For teku, it's the path to the directory where all `<pubkey>.txt` files are located. |
227 | 228 | # For lodestar, it's the path to the file containing the decryption password. |
| 229 | +# For nimbus, it's the path to the directory where the `<pubkey>` files are located. |
228 | 230 | # secrets_path = "" |
229 | 231 | # Configuration for how the Signer module should store proxy delegations. Supported types of store are: |
230 | 232 | # - File: store keys and delegations from a plain text file (unsafe, use only for testing purposes) |
|
0 commit comments