Overview
For applications that interact with Safe (formerly Gnosis Safe) multisig wallets, Mirador provides dedicated methods to track message confirmations and transaction executions. This gives you full visibility into the approval-to-execution flow.Safe methods require the
Web3Plugin. See Plugins for setup.Message Hints
Useweb3.safe.addMsgHint() to track off-chain message confirmations — when signers approve a message in the Safe.
With Details
Add context about the multisig operation:Method Signature
| Parameter | Type | Required | Description |
|---|---|---|---|
msgHint | string | Yes | Safe message hash |
chain | ChainName | Yes | Blockchain network the Safe is deployed on |
details | string | No | Optional description |
Transaction Hints
Useweb3.safe.addTxHint() to track on-chain Safe transaction executions — when a queued Safe transaction is executed on-chain.
With Details
Method Signature
| Parameter | Type | Required | Description |
|---|---|---|---|
safeTxHash | string | Yes | Safe transaction hash |
chain | ChainName | Yes | Blockchain network the Safe is deployed on |
details | string | No | Optional description |
Combining All Hint Types
A trace can include EVM transaction hints, Safe message hints, and Safe transaction hints for complete visibility into multisig workflows:Next Steps
Transaction Hints
EVM transaction hints and correlation
Plugins
Web3Plugin setup and configuration