You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/get_started/configuration.md
+32-1Lines changed: 32 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ keys_path = "/path/to/keys"
52
52
secrets_path = "/path/to.secrets"
53
53
```
54
54
55
-
We currently support Lighthouse, Prysm, Tekuand Lodestar's keystores so it's easier to load the keys. We're working on adding support for additional keystores. These are the expected file structures for each format:
55
+
We currently support Lighthouse, Prysm, Teku, Lodestar, and Nimbus's keystores so it's easier to load the keys. We're working on adding support for additional keystores. These are the expected file structures for each format:
56
56
57
57
<details>
58
58
<summary>Lighthouse</summary>
@@ -175,6 +175,37 @@ We currently support Lighthouse, Prysm, Teku and Lodestar's keystores so it's ea
175
175
:::
176
176
</details>
177
177
178
+
<details>
179
+
<summary>Nimbus</summary>
180
+
181
+
#### File structure:
182
+
```
183
+
├── keys
184
+
│ ├── <PUBLIC_KEY_1>
185
+
│ │ └── keystore.json
186
+
│ └── <PUBLIC_KEY_2>
187
+
│ └── keystore.json
188
+
└── secrets
189
+
├── <PUBLIC_KEY_1>
190
+
└── <PUBLIC_KEY_2>
191
+
```
192
+
193
+
#### Config:
194
+
```toml
195
+
[pbs]
196
+
...
197
+
with_signer = true
198
+
199
+
[signer]
200
+
port = 20000
201
+
202
+
[signer.local.loader]
203
+
format = "nimbus"
204
+
keys_path = "keys"
205
+
secrets_path = "secrets"
206
+
```
207
+
</details>
208
+
178
209
### Proxy keys store
179
210
180
211
Proxy keys can be used to sign transactions with a different key than the one used to sign the block. Proxy keys are generated by the Signer module and authorized by the validator key. Each module have their own proxy keys, that can be BLS or ECDSA.
0 commit comments