Research/Bitcoin

Bitcoin Multisig for DAO Treasuries: Governance, Key Ceremonies, and Signing Workflows

How DAOs and organizations use Bitcoin multisig for treasury management, including governance models, key holder selection, and signing UX.

bcNeutronSep 4, 2026

A single compromised private key can drain an entire treasury in seconds. For DAOs, foundations, and companies holding Bitcoin, that risk is existential. Bitcoin multisig eliminates single points of failure by requiring multiple independent key holders to authorize every transaction. But deploying multisig at organizational scale introduces its own complexity: choosing the right quorum, running secure key ceremonies, coordinating signers across time zones, and handling the inevitable moment when a key holder leaves.

This guide covers the practical governance models, ceremony procedures, and signing tools that organizations use to manage Bitcoin treasuries with multisig, along with how newer threshold signature schemes like FROST are changing the equation.

Why Organizations Need Multisig

A standard Bitcoin wallet uses a single private key. Whoever controls that key controls the funds. For an individual, that might be acceptable. For an organization managing community funds, investor capital, or operational reserves, single-key custody creates three critical problems.

  • No redundancy: if the key holder dies, loses the device, or is incapacitated, funds are permanently inaccessible. The QuadrigaCX collapse in 2018, where CEO Gerald Cotten died as the sole key holder for approximately $190 million in customer funds, remains the most dramatic example.
  • No authorization control: a single insider, whether a rogue employee or a compromised device, can unilaterally move all assets. The Harmony Horizon Bridge hack in 2022 demonstrated this risk when attackers compromised just two keys in a 2-of-5 multisig, draining $100 million because the threshold was too low relative to the attack surface.
  • No audit trail: with a single signer, there is no cryptographic record of who authorized a transaction or when approval was given. Multisig creates an inherent separation of duties where every spend requires verifiable participation from multiple parties.

Bitcoin's native script system supports multisig directly through OP_CHECKMULTISIG (legacy) and OP_CHECKSIGADD (Taproot). Unlike smart-contract-based multisig on other chains, Bitcoin multisig is enforced at the consensus layer: no contract bugs, no proxy upgrades, no governance token exploits.

Script-level enforcement matters: The Bybit hack in February 2025, where attackers stole $1.5 billion by compromising the Safe{Wallet} signing interface via a supply-chain attack, exploited a smart contract multisig. Bitcoin's script-based multisig operates at a lower abstraction layer, reducing the attack surface to key compromise alone.

How Bitcoin Multisig Works On-Chain

A Bitcoin multisig address encodes an m-of-n policy: m signatures from n possible public keys are required to spend. The most common implementations use P2WSH (Pay-to-Witness-Script-Hash) for SegWit multisig or P2TR (Pay-to-Taproot) for Taproot script paths.

When spending from a P2WSH multisig, the transaction reveals the complete redeem script: the threshold, every public key, and which keys signed. This transparency has privacy and fee implications. A 3-of-5 P2WSH spend requires roughly 370 virtual bytes compared to about 110 vbytes for a single-sig P2WPKH spend, translating directly to higher fee rates.

The signing workflow relies on BIP-174 (PSBT), a standard format for Partially Signed Bitcoin Transactions. A coordinator creates the transaction, each signer adds their signature to the PSBT independently, and a combiner merges the partial signatures into a valid transaction. This separation of roles enables air-gapped signing, where signers never need to be online simultaneously.

Governance Models for Different Treasury Sizes

The right quorum depends on the organization's size, operational tempo, and risk tolerance. Setting the threshold too low invites compromise; setting it too high risks lockout if signers become unavailable.

QuorumBest ForStrengthsRisks
2-of-3Small teams, startups, personal vaultsSimple coordination, one key can be lost without fund lossOnly one key compromise away from threshold
3-of-5Mid-size DAOs, foundations, corporate treasuriesMajority required, tolerates two unavailable signersCoordination overhead across five key holders
4-of-7Large DAOs with distributed governanceHigh resilience, supermajority requirementSigning latency, key ceremony complexity
6-of-11Protocol treasuries with $100M+ assetsMaximum distribution, geographic diversityOperational burden, requires dedicated signing infrastructure

The 3-of-5 configuration has emerged as the most common for DAO treasuries managing significant capital. It requires a clear majority while tolerating two absent or compromised signers. Collaborative custody providers like Unchained popularized the 2-of-3 model for individuals, where the user holds two keys and the provider holds one backup key for recovery assistance.

Tiered Treasury Architecture

Larger organizations typically separate funds across multiple wallets with different security profiles rather than putting everything behind a single quorum.

  • Cold tier (90%+ of assets): highest threshold (e.g., 3-of-5 or 4-of-7), cold storage with air-gapped hardware wallets, accessed monthly or quarterly for strategic allocations.
  • Warm tier (5-10% of assets): moderate threshold (e.g., 2-of-3), hardware wallets with network connectivity, used for recurring operational expenses like contributor payments.
  • Hot tier (under 1% of assets): lower threshold or single-sig with spending limits, used for day-to-day microtransactions and gas-like operational needs.

This separation limits blast radius: even a complete compromise of the hot tier exposes only a fraction of total holdings. The tiered approach mirrors how traditional finance separates checking accounts from reserve holdings, applied to self-custodial Bitcoin infrastructure.

Key Ceremony Best Practices

A key ceremony is the process of generating, verifying, and distributing cryptographic keys for a multisig wallet. A poorly executed ceremony undermines every subsequent security measure. The goal is to ensure that no single person ever has access to enough keys to meet the spending threshold, and that every key is independently recoverable.

Air-Gapped Key Generation

Each key should be generated on a device that has never connected to the internet and never will. Purpose-built signing devices like Coldcard and SeedSigner are designed for this purpose. SeedSigner runs on a Raspberry Pi Zero with no WiFi or Bluetooth hardware, making air-gapped operation a physical guarantee rather than a software setting.

Entropy quality matters. Hardware wallets typically use a combination of hardware random number generators and user-provided entropy. Coldcard supports a "Dice Rolls Only" mode requiring 99 physical dice rolls for a 24-word seed phrase, removing any dependency on the device's internal RNG.

Backup Verification

Every seed phrase backup must be verified immediately after generation. The standard procedure is to wipe the device, restore from the backup, and confirm the derived public key matches. Skipping this step has caused permanent fund loss when backups turned out to be incorrectly transcribed.

The wallet's output descriptor is equally critical to back up. A multisig wallet cannot be reconstructed from seed phrases alone: the descriptor encodes the quorum policy, all public keys, and derivation paths. Without it, funds are effectively lost even if every seed phrase is available.

Back up the descriptor, not just the seeds: A common mistake in multisig setups is backing up individual seed phrases without preserving the wallet descriptor. Tools like key-ceremony (open-source) generate structured documentation PDFs that record the complete descriptor, derivation paths, device assignments, and ceremony participants.

Key Holder Documentation

For organizational multisig, the ceremony should produce a formal record including: which device holds which key position, the complete output descriptor, quorum requirements, the geographic location of each backup, and the identity verification procedure for key rotation. This documentation should be stored separately from the keys themselves and updated whenever the signer set changes.

PSBT Signing Workflows

BIP-174 (PSBT) defines a standard format that makes multisig coordination practical. The PSBT workflow separates transaction creation from signing, enabling asynchronous approval across key holders who may be in different locations or time zones.

The Six PSBT Roles

BIP-174 defines six functional roles in the signing pipeline: Creator (builds the unsigned transaction), Updater (adds UTXO data and scripts), Signer (adds partial signatures), Combiner (merges signatures from multiple signers), Finalizer (constructs the final scriptSig/witness), and Extractor (produces the broadcast-ready transaction). In practice, a coordinator tool handles the Creator, Updater, Combiner, Finalizer, and Extractor roles, while each key holder acts only as a Signer.

PSBTs can be transferred between coordinator and signers via QR codes, MicroSD cards, USB, or NFC, depending on the hardware wallet. For air-gapped setups, QR codes and SD cards are preferred because they maintain the air gap. Each signer works on their own copy of the PSBT independently: there is no requirement for signers to be online or available simultaneously.

Signing Workflow Tools Compared

The coordinator software orchestrates the PSBT lifecycle and is the primary interface for multisig operations. The choice of coordinator affects which hardware wallets are supported, how signers communicate, and how much operational overhead each transaction requires.

ToolTypeKey FeaturesHardware Support
NunchukMobile + DesktopEncrypted group chat for signing coordination, policy-based auto-co-signing, decaying quorum via timelocks for inheritanceColdcard, Trezor, Ledger, BitBox02, Keystone, Jade (NFC, QR, USB)
SparrowDesktopFull UTXO management, coin control, Tor and full-node connectivity, built-in multisig verification dialogColdcard, Trezor, Ledger, BitBox02, Keystone, Passport (USB, SD, QR)
Caravan (Unchained)Browser-basedStateless (stores nothing server-side), open-source, arbitrary m-of-n, customizable BIP-32 pathsLedger, Trezor, Hermit
Specter DesktopWeb-based (local)Connects directly to Bitcoin Core, watch-only multisig coordinator, air-gapped signing via QR or SDColdcard, Trezor, Ledger, BitBox02, Keystone, Jade, Passport

Nunchuk stands out for organizational use because it integrates signer communication directly into the signing workflow. Rather than coordinating over email or chat apps (which introduces phishing risk), signers discuss and approve transactions within the same encrypted environment where PSBTs are exchanged. Nunchuk's Honey Badger plan offers a 2-of-4 configuration with a platform key that auto-co-signs based on user-defined spending policies, reducing friction for routine transactions.

Sparrow is the preferred tool for technically sophisticated users who want maximum control. Its full coin control capabilities, support for connecting to a personal full node, and detailed transaction analysis make it ideal for organizations with dedicated treasury operators.

Caravan fills a different niche: as a stateless, browser-based tool, it serves as a recovery backstop. Organizations can use Caravan to verify that their multisig funds are recoverable using only the output descriptor and hardware wallets, independent of any coordinator software that might become unavailable.

When Key Holders Leave

Key holder turnover is the most common operational challenge for organizational multisig. When a contributor, employee, or board member who holds a key departs, the organization must rotate the affected key position. In practice, this means creating a new multisig wallet with the updated signer set and sweeping all funds from the old wallet to the new one.

This process carries real costs: on-chain transaction fees for the sweep, coordination overhead for the new key ceremony, and a window of vulnerability during the transition. For large treasuries with many UTXOs, a single key rotation can cost hundreds of dollars in fees during periods of high network congestion.

Mitigation Strategies

  • Pre-signed rotation transactions: prepare sweep transactions during the initial ceremony, signed by the minimum quorum minus the departing signer, ready to execute when needed.
  • Custodial backup keys: services like Unchained and Casa hold one key in the quorum as a regulated entity, providing continuity regardless of individual signer changes.
  • UTXO consolidation: periodically consolidating UTXOs during low-fee periods reduces the cost of future key rotations by minimizing the number of inputs in the sweep transaction.
  • Timelock-based decay: Nunchuk supports Miniscript-based policies where the quorum requirement decreases after a specified period, preventing permanent lockout if multiple signers become simultaneously unavailable.

Multisig governance intersects with legal frameworks in ways that many DAOs underestimate. Key holders may be considered fiduciaries depending on the jurisdiction, and holding a signing key for an organization's funds can create personal liability.

The EU's MiCA regulation, fully effective since 2025, requires crypto custodians to meet licensing, governance, and capital adequacy standards. In the US, the SEC's qualified custodian rules apply to registered investment advisors managing digital assets. New York's BitLicense imposes additional requirements on entities providing custody services.

For DAOs specifically, legal entity ambiguity remains a challenge. Wyoming, Vermont, and Tennessee have enacted DAO-recognition legislation allowing DAOs to register as LLCs, providing a legal wrapper for multisig-managed treasuries. The Marshall Islands and Cayman Islands offer international alternatives through foundation structures. Without a legal entity, multisig key holders may face joint and several liability for the treasury's obligations.

Insurance

AnchorWatch offers Lloyd's-underwritten insurance policies specifically covering multisig key holder collusion and dishonest acts. However, such coverage remains rare and expensive. Consumer multisig setups generally cannot access institutional insurance products, leaving a significant protection gap for smaller DAOs.

FROST: Threshold Signatures as an Alternative

Traditional Bitcoin multisig has a fundamental privacy and efficiency limitation: the spending policy is visible on-chain. When a 3-of-5 P2WSH multisig spends, the transaction reveals five public keys, three signatures, and the threshold structure. This leaks organizational information and increases transaction costs.

FROST (Flexible Round-Optimized Schnorr Threshold signatures), formalized in RFC 9591 (published June 2024), offers an alternative. FROST is a threshold signature scheme where any t-of-n signers can collaboratively produce a single standard Schnorr signature. The resulting on-chain transaction is indistinguishable from a regular single-sig Taproot spend: one public key, one 64-byte signature, regardless of whether the threshold was 2-of-3 or 7-of-11.

FROST vs Script-Based Multisig

PropertyScript-Based Multisig (P2WSH)FROST Threshold Signatures
On-chain footprintReveals all pubkeys, threshold, and which keys signedSingle pubkey and single signature (indistinguishable from single-sig)
Transaction sizeGrows with number of signers (~370 vbytes for 3-of-5)Constant (~110 vbytes regardless of threshold)
Fee costHigher, proportional to signer count~30% lower than equivalent P2WSH multisig
PrivacyPolicy structure visible to all chain observersNo on-chain fingerprint of group structure
Key rotationRequires new wallet and on-chain fund sweepOff-chain resharing possible without moving funds
Signer interactionAsynchronous (each signer signs independently via PSBT)Two interactive rounds required between signers
MaturityProduction-ready since 2012, universal hardware supportRFC published 2024, BIP-445 in draft, limited hardware support

FROST's key rotation advantage is particularly significant for organizations. With script-based multisig, every signer change requires creating a new wallet and sweeping funds on-chain. FROST supports off-chain key resharing: the group can add or remove signers, or change the threshold, without any on-chain transaction. For a DAO with frequent contributor turnover, this eliminates one of the largest operational costs of multisig treasury management.

The tradeoff is interactivity. Script-based multisig allows fully asynchronous signing: each signer can add their signature to a PSBT independently, at any time, from any location. FROST requires two interactive communication rounds between signers during the signing ceremony, which adds coordination overhead.

Current FROST Implementations

The Zcash Foundation maintains the reference implementation (frost-core), a stable, NCC-audited Rust crate that includes frost-secp256k1-tr for Bitcoin Taproot compatibility. Frostsnap is building the first FROST-native hardware wallet with open-source Rust firmware. Blockstream Research has published bip-frost-dkg, specifying the ChillDKG protocol for distributed key generation in FROST groups. BIP-445, assigned in January 2026, specifies the FROST3 variant for BIP-340/ BIP-341 compatibility and is currently in draft.

For organizations that need n-of-n signing (where all key holders must participate), MuSig2 (BIP-327) is a more mature option. MuSig2 has been adopted by BitGo for Taproot hot wallets, by Ledger in their Bitcoin app, and by LND for Taproot payment channels. MuSig2 produces the same on-chain footprint as FROST (a single Schnorr signature) but is limited to unanimous signing rather than threshold subsets.

Spark and FROST-Based Treasury Management

Spark uses FROST threshold signatures as a core part of its protocol architecture. The Spark Entity, a distributed group of operators, collectively holds one side of a two-party signing arrangement using FROST. This design demonstrates how FROST threshold signatures can work in production for managing Bitcoin custody at scale: equivalent security guarantees to traditional multisig with a smaller on-chain footprint and better privacy.

For organizations exploring alternatives to script-based multisig, Spark's implementation offers a reference point for how FROST-based key management can operate in practice. The Spark SDK documentation covers the threshold signing architecture in detail, and the protocol itself serves as a live deployment of FROST on Bitcoin mainnet.

For a deeper comparison of MPC-based and script-based approaches to organizational custody, see MPC vs Multisig: Securing Digital Assets at Scale. For the fundamentals of how Bitcoin multisig wallets work, start with Bitcoin Multisig Wallets Explained.

This article is for educational purposes only. It does not constitute financial or investment advice. Bitcoin and Layer 2 protocols involve technical and financial risk. Always do your own research and understand the tradeoffs before using any protocol.