|)0/\/'T TR|\_|5T, \/3R1FY! 🫡
This Bash script calculates the Safe transaction hashes by retrieving transaction details from the Safe transaction service API and computing both the domain and message hashes using the EIP-712 standard.
Note
This Bash script relies on the Safe transaction service API, which requires transactions to be proposed and logged in the service before they can be retrieved. Consequently, the initial transaction proposer cannot access the transaction at the proposal stage, making this approach incompatible with 1-of-1 multisigs.1
Important
All Safe multisig versions starting from 0.1.0
and newer are supported.
- Supported Networks
- Usage
- Safe Transaction Hashes
- Safe Message Hashes
- Trust Assumptions
- Community-Maintained User Interface Implementations
- Arbitrum (identifier:
arbitrum
, chain ID:42161
) - Aurora (identifier:
aurora
, chain ID:1313161554
) - Avalanche (identifier:
avalanche
, chain ID:43114
) - Base (identifier:
base
, chain ID:8453
) - Base Sepolia (identifier:
base-sepolia
, chain ID:84532
) - Blast (identifier:
blast
, chain ID:81457
) - BSC (Binance Smart Chain) (identifier:
bsc
, chain ID:56
) - Celo (identifier:
celo
, chain ID:42220
) - Ethereum (identifier:
ethereum
, chain ID:1
) - Gnosis (identifier:
gnosis
, chain ID:100
) - Gnosis Chiado (identifier:
gnosis-chiado
, chain ID:10200
) - Linea (identifier:
linea
, chain ID:59144
) - Mantle (identifier:
mantle
, chain ID:5000
) - Optimism (identifier:
optimism
, chain ID:10
) - Polygon (identifier:
polygon
, chain ID:137
) - Polygon zkEVM (identifier:
polygon-zkevm
, chain ID:1101
) - Scroll (identifier:
scroll
, chain ID:534352
) - Sepolia (identifier:
sepolia
, chain ID:11155111
) - World Chain (identifier:
worldchain
, chain ID:480
) - X Layer (identifier:
xlayer
, chain ID:195
) - ZKsync Era (identifier:
zksync
, chain ID:324
)
Note
Ensure that cast
and chisel
are installed locally. For installation instructions, refer to this guide.
Tip
For macOS users, please refer to the macOS Users: Upgrading Bash section.
./safe_hashes.sh [--help] [--list-networks] --network <network> --address <address> --nonce <nonce> --message <file>
Options:
--help
: Display this help message.--list-networks
: List all supported networks and their chain IDs.--network <network>
: Specify the network (e.g.,ethereum
,polygon
).--address <address>
: Specify the Safe multisig address.--nonce <nonce>
: Specify the transaction nonce (required for transaction hashes).--message <file>
: Specify the message file (required for off-chain message hashes).
Before you invoke the script, make it executable:
chmod +x safe_hashes.sh
Tip
The script is already set as executable in the repository, so you can run it immediately after cloning or pulling the repository without needing to change permissions.
To enable debug mode, set the DEBUG
environment variable to true
before running the script:
DEBUG=true ./safe_hashes.sh ...
This will print each command before it is executed, which is helpful when troubleshooting.
This script requires Bash 4.0
or higher due to its use of associative arrays (introduced in Bash 4.0
). Unfortunately, macOS ships by default with Bash 3.2
due to licensing requirements. To use this script, install a newer version of Bash through Homebrew:
- Install Homebrew if you haven't already:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install the latest version of Bash:
brew install bash
- Add the new shell to the list of allowed shells:
sudo bash -c 'echo /usr/local/bin/bash >> /etc/shells'
- Optionally, make it your default shell:
chsh -s /usr/local/bin/bash
You can verify your Bash version after the installation:
bash --version
To calculate the Safe transaction hashes for a specific transaction, you need to specify the network
, address
, and nonce
parameters. An example:
./safe_hashes.sh --network arbitrum --address 0x111CEEee040739fD91D29C34C33E6B3E112F2177 --nonce 234
The script will output the domain, message, and Safe transaction hashes, allowing you to easily verify them against the values displayed on your Ledger hardware wallet screen:
===================================
= Selected Network Configurations =
===================================
Network: arbitrum
Chain ID: 42161
========================================
= Transaction Data and Computed Hashes =
========================================
> Transaction Data:
Multisig address: 0x111CEEee040739fD91D29C34C33E6B3E112F2177
To: 0x111CEEee040739fD91D29C34C33E6B3E112F2177
Value: 0
Data: 0x0d582f130000000000000000000000000c75fa5a5f1c0997e3eea425cfa13184ed0ec9e50000000000000000000000000000000000000000000000000000000000000003
Encoded message: 0xbb8310d486368db6bd6f849402fdd73ad53d316b5a4b2644ad6efe0f941286d8000000000000000000000000111ceeee040739fd91d29c34c33e6b3e112f21770000000000000000000000000000000000000000000000000000000000000000b34f85cea7c4d9f384d502fc86474cd71ff27a674d785ebd23a4387871b8cbfe00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ea
Method: addOwnerWithThreshold
Parameters: [
{
"name": "owner",
"type": "address",
"value": "0x0c75Fa5a5F1C0997e3eEA425cFA13184ed0eC9e5"
},
{
"name": "_threshold",
"type": "uint256",
"value": "3"
}
]
WARNING: The "addOwnerWithThreshold" function modifies the owners or threshold of the Safe. Proceed with caution!
> Hashes:
Domain hash: 0x1CF7F9B1EFE3BC47FE02FD27C649FEA19E79D66040683A1C86C7490C80BF7291
Message hash: 0xD9109EA63C50ECD3B80B6B27ED5C5A9FD3D546C2169DFB69BFA7BA24CD14C7A5
Safe transaction hash: 0x0cb7250b8becd7069223c54e2839feaed4cee156363fbfe5dd0a48e75c4e25b3
To see an example of a standard ETH transfer, run the command:
./safe_hashes.sh --network ethereum --address 0x8FA3b4570B4C96f8036C13b64971BA65867eEB48 --nonce 39
and review the output.
To list all supported networks:
./safe_hashes.sh --list-networks
This script not only calculates Safe transaction hashes but also supports computing the corresponding hashes for off-chain messages following the EIP-712 standard. To calculate the Safe message hashes for a specific message, specify the network
, address
, and message
parameters. The message
parameter must specify a valid file containing the raw message. This can be either the file name or a relative path (e.g., path/to/message.txt
). Note that the script normalises line endings to LF
(\n
) in the message file.
An example: Save the following message to a file named message.txt
:
Welcome to OpenSea!
Click to sign in and accept the OpenSea Terms of Service (https://opensea.io/tos) and Privacy Policy (https://opensea.io/privacy).
This request will not trigger a blockchain transaction or cost any gas fees.
Wallet address:
0x657ff0d4ec65d82b2bc1247b0a558bcd2f80a0f1
Nonce:
ea499f2f-fdbc-4d04-92c4-b60aba887e06
Then, invoke the following command:
./safe_hashes.sh --network sepolia --address 0x657ff0D4eC65D82b2bC1247b0a558bcd2f80A0f1 --message message.txt
The script will output the raw message, along with the domain, message, and Safe message hashes, allowing you to easily verify them against the values displayed on your Ledger hardware wallet screen:
===================================
= Selected Network Configurations =
===================================
Network: sepolia
Chain ID: 11155111
====================================
= Message Data and Computed Hashes =
====================================
> Message Data:
Multisig address: 0x657ff0D4eC65D82b2bC1247b0a558bcd2f80A0f1
Message: Welcome to OpenSea!
Click to sign in and accept the OpenSea Terms of Service (https://opensea.io/tos) and Privacy Policy (https://opensea.io/privacy).
This request will not trigger a blockchain transaction or cost any gas fees.
Wallet address:
0x657ff0d4ec65d82b2bc1247b0a558bcd2f80a0f1
Nonce:
ea499f2f-fdbc-4d04-92c4-b60aba887e06
> Hashes:
Raw message hash: 0xcb1a9208c1a7c191185938c7d304ed01db68677eea4e689d688469aa72e34236
Domain hash: 0x611379C19940CAEE095CDB12BEBE6A9FA9ABB74CDB1FBD7377C49A1F198DC24F
Message hash: 0xA5D2F507A16279357446768DB4BD47A03BCA0B6ACAC4632A4C2C96AF20D6F6E5
Safe message hash: 0x1866b559f56261ada63528391b93a1fe8e2e33baf7cace94fc6b42202d16ea08
- You trust my script 😃.
- You trust Linux.
- You trust Foundry.
- You trust the Safe transaction service API.
- You trust Ledger's secure screen.
Important
Please be aware that user interface implementations may introduce additional trust assumptions, such as relying on npm
dependencies that have not undergone thorough review. Always verify and cross-reference with the main script.
safehashpreview.com
:- Code:
josepchetrit12/safe-tx-hashes-util
- Authors:
josepchetrit12
,xaler5
- Code:
Footnotes
-
While it is theoretically possible to query transactions prior to the first signature by setting
untrusted=false
in the API query — for example, using a query likehttps://safe-transaction-arbitrum.safe.global/api/v1/safes/0xB24A3AA250E209bC95A4a9afFDF10c6D099B3d34/multisig-transactions/?trusted=false&nonce=4
— this capability is not implemented in the main script. This decision avoids potential confusion caused by unsigned transactions in the queue, especially when multiple transactions share the same nonce, making it unclear which one to act upon. If this feature aligns with your needs, feel free to fork the script and modify it as necessary. ↩