Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bolt pubkeys local-keystore command flags #522

Merged
merged 1 commit into from
Dec 6, 2024
Merged
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
3 changes: 1 addition & 2 deletions bolt-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@ bolt pubkeys secret-keys --secret-keys 642e0d33fde8968a48b5f560c1b20143eb82036c1

```text
bolt pubkeys local-keystore \
--path test_data/lighthouse/validators \
--password-path test_data/lighthouse/secrets
--path test_data/lighthouse/validators
```

3. Listing BLS public keys from a remote DIRK keystore
Expand Down
4 changes: 2 additions & 2 deletions testnets/holesky/QUICK_START.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ depending on where your keys are stored:
(with `validators` and `secrets` subdirectories containing the keystores and passwords respectively).

```bash
bolt pubkeys local-keystore --path <validators_path> --password-path <secrets_path>
bolt pubkeys local-keystore --path <validators_path>
```

Example file structure when using `local-keystore` source:
Expand All @@ -94,7 +94,7 @@ Example file structure when using `local-keystore` source:
In this case you would run the command (called from the `validator_keys` directory):

```bash
bolt pubkeys local-keystore --path validators --password-path secrets
bolt pubkeys local-keystore --path validators
```

</details>
Expand Down
Loading