What is Gnosis Safe?
Gnosis Safe (now rebranded as Safe) is the most widely used smart contract multisig wallet on Ethereum. It requires multiple authorized signers to approve a transaction before it executes — for example, a 3-of-5 setup requires 3 out of 5 designated addresses to sign.
Safe is the gold standard for DAOs, treasury management, and institutional crypto custody. Over $100 billion in digital assets are secured by Safe contracts.
How Safe Works
Setup
- You create a Safe wallet (a smart contract deployed on-chain)
- You add owner addresses and set the threshold (e.g., 3-of-5)
- Fund the Safe address like any other wallet
Transaction Flow
- One owner proposes a transaction (e.g., “send 10 ETH to address X”)
- Other owners sign the transaction off-chain (gasless)
- Once the threshold is met (e.g., 3 of 5), anyone can execute the transaction
- The last signer can pay gas and broadcast the transaction
Key Properties
- No single point of failure — losing one key doesn’t compromise the wallet
- Off-chain signing — owners can approve without paying gas for each signature
- Full transparency — all proposed and executed transactions are visible on-chain
- Module system — plugins can add custom logic (spending limits, recurring payments)
Why Projects Use Safe
| Use Case | Why Safe |
|---|---|
| DAO treasury | No single person can drain funds |
| Team operations | Require team consensus for large transfers |
| Institutional custody | Meets compliance requirements |
| Smart contract admin | Timelocked admin functions with multisig |
| Personal vault | Use 2-of-3 to protect large personal holdings |
Safe vs. Hardware Wallet
They serve different purposes and are often used together:
- Hardware wallet: Secures a single private key offline
- Safe (multisig): Requires multiple keys, eliminating single-key risk
- Best practice: Use hardware wallets as the signers in a Safe setup
Frequently Asked Questions
Q: What happens if one Safe owner loses their key? A: If you have a 3-of-5 setup and one owner loses their key, you still have 4 working signers. You can replace the lost owner by proposing an owner-swap transaction (requires the threshold number of signatures).
Q: Can a Safe be hacked? A: The Safe smart contract has been heavily audited and has secured billions of dollars for years without a direct contract exploit. However, social engineering attacks (tricking owners into signing malicious transactions) remain a risk. Always verify transaction details before signing.
Q: Does Safe work on Layer 2s? A: Yes. Safe is deployed on Ethereum, Arbitrum, Optimism, Base, Polygon, BNB Chain, and many other networks. The same owner addresses work across all networks.