We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
eth_utils
eth.constants
We recently added a utils sub parser, and it should be pretty easy to programmatically call these functions as a CLI.
utils
For example:
from argparse import Namespace from eth import constants ALIAS_TO_COMMAND = {"zero-address": "zero", "zero_address": "zero"} def main(args: Namespace) -> int: utils_command = ALIAS_TO_COMMAND.get(args.wallet_command, args.wallet_command) print(constants.f{args.command_name}) return 0
Or something, idk. But it should be dynamic so we don't have to do a lot of manual work
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We recently added a
utils
sub parser, and it should be pretty easy to programmatically call these functions as a CLI.For example:
Or something, idk. But it should be dynamic so we don't have to do a lot of manual work
The text was updated successfully, but these errors were encountered: