-
Notifications
You must be signed in to change notification settings - Fork 17
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
Withdrawal address prompt #27
Withdrawal address prompt #27
Conversation
Figured out the issue with the stalling test and I think this is good to go. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything seems good.
@@ -19,7 +19,7 @@ | |||
}, | |||
"arg_execution_address": { | |||
"help": "The 20-byte (Eth1) execution address that will be used in withdrawal", | |||
"prompt": "Please enter the 20-byte execution address for the new withdrawal credentials. Note that you CANNOT change it once you have set it on chain.", | |||
"prompt": "Please enter the optional 20-byte execution address for the new withdrawal credentials. Note that you CANNOT change it once you have set it on chain.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would add something like this at the end of this message:
Please enter the optional 20-byte execution address for the new withdrawal credentials. Note that you CANNOT change it once you have set it on chain. Use a wallet address that you will have full control over for the foreseeable future.
What do you think?
Adding a prompt for withdrawal address when executing key generation.
There are a few changes of note:
default
param for the captive prompt. I simply don't see why not.closest_match
inintl.py
creates some pretty weird UX scenarios especially during language selection. As an example, if you provide1234
as the option for language, it will chose12
. My assumption this is used to avoid non-standard character match issues.#16