π Multisig Wallet Multi-signature Wallet
A wallet that needs two or more private keys to approve a transaction, instead of the single key a normal wallet uses. Setups are written M-of-N, and the most common one is 2-of-3.
π¦ The simple version β a vault with two locks
A normal wallet has one private key. Whoever holds that key controls the money, which means one phishing click or one lost seed phrase can empty it. A multisig wallet spreads control across several keys. Think of a bank vault that needs two staff to turn their keys at the same time: no single person can open it alone. The transaction sits pending and never reaches the blockchain until enough keyholders have signed.
π’ What does "2-of-3" mean?
Multisig setups are written M-of-N: there are N keys in total, and M of them must sign to move funds. A 2-of-3 means three keys exist and any two of them are enough. You pick the numbers to match your situation.
| Setup | What it means |
|---|---|
| π 2-of-3 | Three keys; any two sign. The most common choice β secure, and survives losing one key |
| π₯ 3-of-5 | Five keys; any three sign. Often used by teams so no single person can act alone |
| βοΈ 2-of-2 | Two keys; both must sign. Strict, but lose either key and the funds are stuck |
π‘οΈ Why people use it
- π« No single point of failure β One stolen key, or one leaked seed phrase, no longer drains the wallet; an attacker must compromise several keys kept in different places
- β»οΈ Built-in backup β In a 2-of-3, lose one key and the other two can still recover the funds and move them to a new wallet
- π₯ Shared control β A team or DAO treasury can require several people to approve a spend before it goes through
π Common places you'll meet multisig: DAO and protocol treasuries, exchange cold storage, business and team funds, escrow, and split-device personal self-custody.
π Where you'll see it in the wild
On Ethereum and similar networks, the widely used multisig is a smart-contract wallet called Safe (formerly Gnosis Safe), which secures many DAO and protocol treasuries. Bitcoin supports multisig natively, so people build 2-of-3 self-custody setups using hardware wallets and coordinator software.
π¨ Things beginners should know
- π§° More to manage β Stronger security comes with a more complex setup; you have to track and back up several keys, not one
- π» Not foolproof β Blind-signing tricks, a malicious setup, or someone getting hold of multiple keys can still cause a loss
- π Lose too many keys and funds freeze β In a 2-of-2 you need both keys; in a 2-of-3 you can lose one but not two
β FAQ
- Does multisig mean my funds are 100% safe and unhackable?
- No. Multisig sharply lowers the risk of theft and loss, because an attacker has to compromise more than one key. But no wallet is foolproof: blind-signing tricks, a bad setup, or someone getting hold of several keys at once can still cause a loss.
- Is multisig only for companies and DAOs?
- No. Teams and DAO treasuries use it a lot, but an individual can use it too. A common personal setup is a 2-of-3 split across a phone, a hardware wallet, and a backup key kept somewhere safe.
- What happens if I lose one of my keys?
- In a 2-of-3 setup, losing one key is survivable. The other two keys can still sign, so you can move the funds to a fresh wallet. That built-in redundancy is one of the main reasons people choose multisig.