Skip to main content
DigitalFinances

Glossary · Wallets & security

What is Multisig (multi-signature wallet)?

A wallet that requires M-of-N signatures from different keys to move funds. Common setups are 2-of-3 or 3-of-5. Removes single-key failure as a loss vector at the cost of more setup complexity.

Last updated April 30, 2026

How it works

Instead of one private key controlling a wallet, a multisig has N keys held by different people or devices, with a threshold M required for any transaction. Common configurations:

  • 2-of-2 — both signers must approve. Used for couples or business co-signers.
  • 2-of-3 — any two of three keys can sign. The third key is often a backup/recovery key. Most common personal multisig setup.
  • 3-of-5 — three of five keys. Common for DAO treasuries, larger family wealth, business ops.
  • 5-of-9 or larger — institutional-grade or DAO-scale.

Implementation:

  • On Ethereum / EVM chains: Safe (formerly Gnosis Safe) is the standard. A smart contract enforces the M-of-N rule. Transactions are proposed, signed by individual signers via their wallets, then executed once threshold is met.
  • On Bitcoin: Native multisig via P2SH or P2WSH addresses. Tools like Sparrow, Specter, and Casa make setup more user-friendly.
  • Smart-contract wallets (Argent, Ambire) often offer multisig as a feature with social-recovery patterns.

Example

A 2-of-3 personal multisig setup:

  • Key 1: Hardware wallet at home (Ledger #1)
  • Key 2: Hardware wallet in a deposit box (Ledger #2)
  • Key 3: Hardware wallet at a trusted family member's house, or held by a service like Casa

To move funds, you need any two keys. If your house burns down (Key 1 lost) — Keys 2+3 still control the funds. If you're locked out of the bank (Key 2 inaccessible) — Keys 1+3 work. If the trusted family member loses their device (Key 3 lost) — Keys 1+2 still work.

To attack the wallet, an adversary needs to compromise two physically-separated keys. That's a huge security upgrade vs single-key custody.

Why it matters

Multisig solves the "single point of failure" problem in self-custody:

Risks it eliminates:

  • Lost or destroyed single device
  • Single seed phrase compromise (phishing, theft)
  • Single key signing under duress

Trade-offs:

  • More setup work. You're managing 3+ devices and their backups, not 1.
  • Coordination overhead. Every transaction needs signatures from multiple sources. Annoying for daily use.
  • Higher gas costs. Multisig contract execution typically costs more gas per transaction than a single-sig wallet.
  • Recovery complexity. Restoring from backups means reassembling multiple devices, not just typing one seed phrase.

When multisig makes sense:

  • Self-custody amounts >$50k. The setup cost amortizes well at this scale.
  • Joint family or business holdings. Shared decision-making is enforced at the wallet layer.
  • DAO treasuries. Almost universal — 5-of-9 or 7-of-13 multisigs are standard.
  • Cold storage / inheritance planning. Geographically split keys + a clear succession plan for survivors to access funds.

When it doesn't:

  • Small balances. A $500 hot-wallet position doesn't justify the multisig overhead.
  • Active DeFi positions. Multisig friction makes daily DeFi tedious.
  • Solo users uncomfortable with the setup. Better to use a single hardware wallet well than a multisig poorly.

For most retail crypto users above the "five-figure" threshold of self-custody, a 2-of-3 hardware multisig (often using Casa or Unchained for setup assistance) is the most under-used security upgrade in the space. The companies that handle complexity for you — for a fee — are worth considering when stakes are high.

Related terms