Command Line Interface for Safe
Project description
Safe-CLI
Command line utility for Safe contracts. Use it to manage your Safe easily from the command line
Using with docker
If you have Docker installed on your system, you can just run:
docker run -it safeglobal/safe-cli safe-creator
for creating Safes
or
docker run -it safeglobal/safe-cli safe-cli
to run the actual safe-cli
Installing
Python >= 3.7 is required. Python 3.10 is recommended.
pip3 install -U safe-cli
Using
safe-cli <checksummed_safe_address> <ethereum_node_url>
Then you should be on the prompt and see information about the Safe, like the owners, version, etc.
Next step would be loading some owners for the Safe. At least threshold
owners need to be loaded to do operations
on the Safe and at least one of them should have funds for sending transactions.
There are 2 operation modes:
- blockchain: The default mode, transactions are sent to blockchain.
- tx-service: Use
tx-service
command to enable it. Transactions are sent to the Safe Transaction Service (if available on the network), so you will be able to see it on the Safe web interface/mobile apps. At least one signer is needed to send transactions to the service. Txs are not executed.
Loading owners is not needed if you just want to do read-only
operations.
To load owners:
> load_cli_owners <account_private_key>
Loaded account 0xab...cd with balance=123 ether
Set account 0xab..cd as default sender of txs
You can also load owners from an environment variable. Before running the safe-cli
:
export MY_PRIVATE_KEY=YOUR_EOA_PRIVATE_KEY
Then:
> load_cli_owners MY_PRIVATE_KEY
Loaded account 0xab...cd with balance=123 ether
Set account 0xab..cd as default sender of txs
To check the loaded owners:
> show_cli_owners
To unload an owner:
> unload_cli_owners <ethereum_checksummed_address>
Operations currently supported:
send_custom <address> <value-wei> <data-hex-str> [--delegate] [--safe-nonce <int>]
: Sends a custom transaction from the Safe to a contract. If--delegate
is set adelegatecall
will be triggered.send_ether <address> <value-wei> [--safe-nonce <int>]
: Sends ether from the Safe to another accountsend_erc20 <address> <token_address> <value> [--safe-nonce <int>]
: Send ERC20 token from the Safe to another accountapprove_hash <keccak-hexstr-hash> <sender-address>
: Approves asafe-tx-hash
for the provided sender address. Sender private key must be loaded first.add_owner <address>
: Adds a new owneraddress
to the Safe.remove_owner <address>
: Removes an owneraddress
from the Safe.change_threshold <integer>
: Changes thethreshold
of the Safe.enable_module <address>
: Enable moduleaddress
disable_module <address>
: Disable moduleaddress
change_fallback_handler <address>
: Updates the fallback handler to beaddress
. Supported by Safes withversion >= v1.1.0
. WARNING: DON'T USE THIS IF YOU DON'T KNOW WHAT YOU ARE DOING. ALL YOUR FUNDS COULD BE LOSTchange_guard <address>
: Updates the guard to beaddress
. Supported by Safes withversion >= v1.3.0
. WARNING: DON'T USE THIS IF YOU DON'T KNOW WHAT YOU ARE DOING. ALL YOUR FUNDS COULD BE LOSTchange_master_copy <address>
: Updates the master copy to beaddress
. It's used to update the Safe. WARNING: DON'T USE THIS IF YOU DON'T KNOW WHAT YOU ARE DOING. ALL YOUR FUNDS COULD BE LOSTupdate
: Updates the Safe to the latest version (if you are on a known network likeGoerli
orMainnet
).update_to_l2 <address>
: Updates a v1.1.1/v1.3.0/v1.4.1 non L2 Safe to a L2 Safe supported by Safe Wallet UI. The migration contract address needs to be provided. It can be found here. Nonce for the Safe must be 0 and supported versions are v1.1.1, v1.3.0 and v1.4.1. WARNING: DON'T USE THIS IF YOU DON'T KNOW WHAT YOU ARE DOING. ALL YOUR FUNDS COULD BE LOST
Operations on tx-service
mode, requires a Safe Transaction Service working on the network
(Mainnet, Gnosis Chain, Goerli, Polygon...):
balances
: Returns a list of balances for ERC20 tokens and ether.history
: History of multisig transactions (including pending).execute-tx <safe-tx-hash>
: Execute a pending tx with enough signatures.sign-tx <safe-tx-hash>
: Sign a tx with the loaded owners for the providedSafeTxHash
.batch-txs <safe-nonce> <safe-tx-hash> [ <safe-tx-hash> ... ]
: Batch transactions into one Multisig Transaction using the providedsafe-nonce
. Any safe-tx can be used: transactions from other Safes, transactions already executed, transactions pending for execution... Only limitation is that- transactions from other networks cannot be used. Batching order will follow the same order of the
safe-tx-hashes
provided. get_delegates
: Returns a list of delegates for the Safe.add_delegate <address> <label> <signer-address>
: Adds a new delegateaddress
to the Safe.remove_delegate <address> <signer-address>
: Removes a delegateaddress
from the Safe.drain <address>
: Sends all ether and ERC20 funds to the provided account.
If the information in the information bar is outdated or there's any problem you can force the safe-cli
to update
the information about the Safe using:
> refresh
Ledger module
Ledger module is an optional feature of safe-cli to sign transactions with the help of ledgereth library based on ledgerblue.
To enable, safe-cli must be installed as follows:
pip install safe-cli[ledger]
When running on Linux, make sure the following rules have been added to /etc/udev/rules.d/
:
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2c97", ATTRS{idProduct}=="0000", MODE="0660", TAG+="uaccess", TAG+="udev-acl" OWNER="<UNIX username>"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2c97", ATTRS{idProduct}=="0001", MODE="0660", TAG+="uaccess", TAG+="udev-acl" OWNER="<UNIX username>"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2c97", ATTRS{idProduct}=="0004", MODE="0660", TAG+="uaccess", TAG+="udev-acl" OWNER="<UNIX username>"
Safe-cli Ledger commands:
load_ledger_cli_owners [--legacy-accounts] [--derivation-path <str>]
: show a list of the first 5 accounts (--legacy-accounts search using ledger legacy derivation) or load an account from provided derivation path.
NOTE: before signing anything ensure that the data showing on your ledger is the same as the safe-cli data.
Creating a new Safe
Use safe-creator <node_url> <private_key> --owners <checksummed_address_1> <checksummed_address_2> --threshold <uint> --salt-nonce <uint256>
.
Example:
safe-creator https://goerli.infura.io/v3/token $PRIVATE_KEY --owners 0x848EF06Bb9d1bc79Bb3B04b7Ea0e251C6E788d7c --threshold 1
Demo
For this demo, PRIVATE_KEY
environment variable was set to a EOA private key (owner of a a previously created and outdated Safe)
and ETHEREUM_NODE_URL
to a http goerli node.
At first, Safe is updated to the last version and then 123 Wei
are sent to the owner of the Safe (it could be any other address).
Be careful when using update
command, as it can leave your Safe funds stuck. Safe CLI is still a beta
Use custom contracts
Safe-cli comes with the official Safe contract addresses deployed on Mainnet, Rinkeby, Kovan and Goerli
configured by default. If you want to use your own you can edit the file safe_cli/safe_addresses.py
Be careful when modifying these addresses, the funds in a Safe can get stuck if an invalid address it's used when updating to an invalid Safe Master Copy.
Recovery Safe Deployment Guide
This guide will walk you through the process of recreating a Safe with the same address on the desired network.
Recreate Safe 1.3.0 or 1.1.1
To recreate a Safe (version 1.3.0 or 1.1.1), you'll need the following essential data::
- The
Singleton
address - The
ProxyFactory
address - The
FallbackHandler
address - The
Owners
addresses with which Safe was created - The
SaltNonce
value - The
Threshold
value - RPC node provider for the target chain.
- The private-key of deployer address
The necessary addresses can be collected from safe-deployments and the salt nonce from the Safe creation transaction.
WARNING: Ensure that the Singleton
, ProxyFactory
, and FallbackHandler
are deployed in the target chain in the same addresses as the origin chain.
To recreate the Safe is necessary execute safe-creator
as follows:
safe-creator --owners <owners-addresses> --safe-contract <singleton-address>
--callback-handler <fallback-handler-address> --proxy-factory <proxy-factory-address>
--threshold <threshold-value> --salt-nonce <salt-nonce-value> <url-rpc-node> <deployer-private-key>
The Safe should have been successfully recreated with the same address on the target chain. If not, double-check the data collected from the transaction and ensure that all the necessary contracts are deployed in the chain.
Migrate a Safe from Non L2 to L2
If you've recreated a Safe from a L1 network (like mainnet) on a L2 network, our services will not be able to index them as for L1 we use trace based indexing and for L2 events indexing, and L1 Safe singleton does not emmit events.
To address this, you'll need to update it to the L2 singleton with command update_to_l2
or consider transferring the funds to a new Safe on L2 that you control with drain
command.
For detailed instructions on running these commands, please refer to the Operations currently supported section for more information.
Safe contracts
Setting up for developing
If you miss something and want to send us a PR:
git clone https://github.com/safe-global/safe-cli.git
cd safe-cli
stat venv 2>/dev/null || python3 -m venv venv
source venv/bin/activate && pip install -r requirements-dev.txt
pre-commit install -f
Contributors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file safe_cli-0.9.0.tar.gz
.
File metadata
- Download URL: safe_cli-0.9.0.tar.gz
- Upload date:
- Size: 53.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60768f463fbc290ca6e31ffce780df9e3f7b63e803739910022d0f97dc00ef2b |
|
MD5 | 8370b1b71ef67d0ee3ada729a0fe0a8e |
|
BLAKE2b-256 | cd3696da4804973ac17ffc74c339e984bb51861592ac39269d66b9106c3028df |
File details
Details for the file safe_cli-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: safe_cli-0.9.0-py3-none-any.whl
- Upload date:
- Size: 61.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cd7a7170691952681e9eff4e24846cc6ca55bd9c20f29d5370468263532eb3d |
|
MD5 | 75e7b3a1bbeb4561abfd50e26b42d0f1 |
|
BLAKE2b-256 | e9ab5df1e8d794d1fab15f312eb56276f0ec3d3354e17f599c54b462cf4f5ff8 |