-
Notifications
You must be signed in to change notification settings - Fork 81
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
Support scripting #36
Comments
Agreed. Especially, because the I get the following error:
Which I think is related to the lack of interactivity. So this causes the load safe command to hang and never complete. I think this is a high priority fix as many issues that users face through UI can be solved through CLI and many users may not be able to use the CLI but they can use the notebook. |
Take a look at https://typer.tiangolo.com/ |
Tested and verified, many thanks! |
Currently the only way to use the
safe-cli
is using the interactive mode. For example, to send some ether a user must run the app, load the owners and then callsend_ether
and press intro.An automatic way to do it, like
python safe_cli --node <node_url> --private-key <owner_private_key_1> --private-key <owner_private_key_2> send-ether --wei <ether_in_wei> --to <address>
Needed for a first approach:
The text was updated successfully, but these errors were encountered: