This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Added clarification on number of validators prompt #204
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hey there - thanks for all the work on this tool, it's great. While testing it out recently, I noticed that the prompt for the number of keys to generate is unclear (mostly when running with an existing mnemonic). It currently reads, for both new and existing mnemonics, as:
"Please choose how many validators you wish to run"
This makes sense for creating from a new mnemonic, but when creating from an existing mnemonic it is unclear if that prompt is asking you for the total validators you'd like to run (including those you already have keys for) or just the number of new ones. After testing, it is the latter - you are supposed to specify the number of new validators you'd like to generate keys for.
This PR simply changes the above from "validators" to "new validators" which I feel makes it more clear. I understand the same prompt is use for both new and existing flows, and I think will both benefit from the clarity.
Thanks in advance for taking a look!