-
Notifications
You must be signed in to change notification settings - Fork 36
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
Use single index argument for each wallet #488
Conversation
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.
Can also be:
--sender-wallet-index
--guardian-wallet-index
--relayer-wallet-index
A bit longer, but precise.
multiversx_sdk_cli/cli_shared.py
Outdated
@@ -177,10 +165,10 @@ def add_wallet_args(args: list[str], sub: Any): | |||
help="🔐 bool flag for signing transaction using ledger", | |||
) | |||
sub.add_argument( | |||
"--ledger-address-index", | |||
"--index", |
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.
This is somehow ambiguous. Maybe --sender-index
?
For guardian & relayer is more obvious what index means.
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.
renamed as follows:
--sender-wallet-index
--guardian-wallet-index
--relayer-wallet-index
No description provided.