What is a Multi-Sig Wallet?
A multi-signature (multi-sig) wallet is a cryptocurrency wallet that requires multiple people (or devices) to approve a transaction before it executes. Instead of a single private key controlling the funds, multi-sig splits control across multiple signers using an M-of-N threshold (e.g., 2-of-3, 3-of-5).
Multi-sig wallets are used by DAOs, development teams, investment groups, and individuals who want to eliminate single points of failure. The most popular multi-sig solution is Safe (formerly Gnosis Safe), which secures over $100 billion in crypto assets.
How Multi-Sig Works
M-of-N Threshold
Multi-sig wallets use an “M of N” configuration:
| Configuration | Meaning | Use Case |
|---|---|---|
| 2-of-3 | 2 out of 3 signers must approve | Small team, personal backup |
| 3-of-5 | 3 out of 5 signers must approve | DAO treasury, medium team |
| 4-of-7 | 4 out of 7 signers must approve | Large organization |
| 1-of-2 | Either signer can approve | Joint account (less secure) |
The key security property: no single person can move funds alone. At least M signers must coordinate and sign.
Transaction Flow
- Propose: One signer creates a transaction (e.g., send 10 ETH to address X)
- Sign: Each required signer reviews and signs the transaction (using their hardware wallet)
- Execute: Once M signatures are collected, any signer can execute the transaction on-chain
- Confirm: The smart contract verifies M-of-N valid signatures and processes the transfer
Signatures can be collected asynchronously — signers don’t need to be online at the same time. This is especially useful for teams across different time zones.
On-Chain vs Off-Chain Signatures
| Method | How It Works | Gas Cost | Speed |
|---|---|---|---|
| On-chain | Each signature is a separate transaction | High (each sig costs gas) | Slower |
| Off-chain | Signatures collected off-chain, submitted in one tx | Low (one tx with all sigs) | Faster |
Safe uses off-chain signatures via EIP-712 — signers sign a message locally, then the final executor submits all signatures in one transaction. This saves significant gas.
Safe (Gnosis Safe)
Safe is the dominant multi-sig standard in crypto:
| Feature | Details |
|---|---|
| Wallets created | 5M+ |
| Assets secured | $100B+ |
| Chains supported | 30+ (Ethereum, Arbitrum, Optimism, Polygon, Base, etc.) |
| Signer types | Hardware wallets, MetaMask, Ledger, Argent |
| Module system | Extendable with plugins (guardians, relayers, session keys) |
Safe Modules
Safe can be extended with modules that add functionality:
- Recovery module: Social recovery — if you lose a signer, other signers can add a new one
- Allowance module: Set spending limits for specific addresses without multi-sig approval
- Transaction guard: Restrict what addresses the safe can interact with
- Relayer module: Pay gas in tokens other than ETH (USDC, DAI)
Use Cases
DAO Treasuries
Most major DAOs use Safe (or similar) multi-sigs:
| DAO | Configuration | Approximate TVL |
|---|---|---|
| Arbitrum DAO | 3-of-5 | $5B+ |
| Uniswap Governance | 2-of-2 (multi-sig) | $3B+ |
| Optimism Foundation | 3-of-5 | $2B+ |
| Lido DAO | 4-of-6 | $1B+ |
Development Teams
Smart contract developers use multi-sigs to protect:
- Protocol upgrade keys: Changing contract implementations
- Treasury funds: Paying contributors and vendors
- Emergency controls: Pausing protocols if bugs are found
Personal Security
Individuals can use 2-of-3 multi-sigs for personal funds:
- Key 1: Hardware wallet at home
- Key 2: Hardware wallet in a safe deposit box
- Key 3: Trusted family member or backup device
If your home wallet is stolen, the thief can’t access funds without the second key. If you lose your primary wallet, you can recover with the other two.
Joint Accounts / Investment Clubs
Groups managing shared funds use multi-sigs to ensure no single member can abscond with the assets.
Multi-Sig vs Other Security Approaches
| Approach | Security | Convenience | Cost |
|---|---|---|---|
| Single wallet | Low (single point of failure) | Highest | Free |
| Hardware wallet | Medium (physical security) | High | $50-150 |
| Multi-sig | High (distributed control) | Medium | Gas for each tx |
| Social recovery | High (designated recoverers) | High | Free |
| Time-locked | Medium (delayed access) | Low | Free |
Limitations of Multi-Sig
- Coordination overhead: Getting multiple people to sign adds delay
- No inheritance: If signers lose access, recovering the wallet is complex (no seed phrase backup)
- Gas costs: Multi-sig transactions cost more than single-signature transactions
- Setup complexity: Creating and configuring a multi-sig requires technical knowledge
- Human risk: If all signers collude, the multi-sig provides no protection
Frequently Asked Questions
Q: What happens if signers disagree? A: The transaction simply doesn’t execute. Multi-sig requires M signatures — if they can’t be collected, no transaction happens. This is a feature, not a bug.
Q: Can I recover a multi-sig if I lose all signers? A: No. There is no seed phrase backup for a multi-sig. This is why you should always maintain backup signers in secure locations (safe deposit box, trusted family member).
Q: How much does a Safe wallet cost to create? A: Creation costs ~$50-150 in gas on Ethereum mainnet. On L2s (Arbitrum, Optimism, Base), it costs under $1.