Skip to main content

2-of-3 Multisig | Bitcoin Glossary | Mapping Bitcoin

2-of-3 Multisig

Seguridad

Also known as: 2of3, 2-of-3 multi-signature

A multi-signature configuration that requires two out of three private keys to authorize a Bitcoin transaction. This setup is commonly used for shared custody, escrow arrangements, and enhanced security where no single party has full control over the funds.

Overview

A 2-of-3 multisig setup creates a Bitcoin address that is controlled by three separate private keys, but only two of those keys are needed to sign and broadcast a valid transaction. This quorum-based approach provides a powerful balance between security and redundancy.

How It Works

When a 2-of-3 multisig address is created, three public keys are combined into a special redeem script. The Bitcoin network enforces the rule that any spending transaction must include valid signatures from at least two of the three corresponding private keys.

  Key A ──┐
           ├──→ [ 2-of-3 Multisig Address ] ──→ Requires 2 signatures to spend
  Key B ──┤
           │
  Key C ──┘

  Valid signing combinations:
    ✓ A + B
    ✓ A + C
    ✓ B + C
    ✗ A alone
    ✗ B alone
    ✗ C alone

Common Use Cases

  • Personal security: Hold one key on a hardware wallet, one on a phone, and one as a backup on paper. If one device is lost or compromised, funds remain safe and accessible.
  • Escrow services: A buyer, seller, and neutral arbitrator each hold one key. The buyer and seller can complete the transaction without the arbitrator, but the arbitrator can resolve disputes by siding with either party.
  • Business treasury: Distribute keys among partners or executives so no single person can unilaterally move company funds.

Common Misconceptions

A frequent misunderstanding is that 2-of-3 multisig is only useful for organizations. In reality, individuals benefit significantly from the redundancy it provides. Losing a single key does not result in loss of funds, unlike a standard single-signature wallet. Another misconception is that multisig transactions are prohibitively expensive; while they are larger than single-sig transactions, the security benefits typically outweigh the modest fee increase, especially when using SegWit address formats.