Managing digital assets as a team usually starts with a sensible fix: stop letting one person move funds alone.
So you add co-signers. Two-of-three. Three-of-five. A shared wallet with a threshold. The spreadsheet of who holds which key gets longer. Someone writes “multisig = our governance” in a policy doc, and the room relaxes.
That relaxation is the risk.
A multisig is good at one job. It answers who must sign. It does not answer what your organization is allowed to do, under what conditions, or how you prove afterward that the move followed policy.
Those are different problems. Treating them as the same one creates false confidence.
What multisig actually buys you
Threshold signing is real progress over a single key:
- A stolen laptop is less likely to empty the treasury by itself
- A rushed click needs at least one other person to go along
- Insider misuse gets harder when more people must participate
If your only threat model is “one compromised signer,” multisig helps.
Most teams that run shared funds do not stop there. They also need to answer questions that signatures alone never encode:
- Who may initiate a payment versus who may authorize it?
- Are large transfers treated differently from routine ones?
- Is there a pause between “we agreed” and “assets moved”?
- Which destinations are even allowed?
- After the fact, can audit reconstruct why this move was permitted — not only that N people signed?
If those answers live in chat threads, runbooks, or tribal knowledge, you have coordination. You do not yet have governance enforced at the point of execution.
The false confidence pattern
Here is the pattern we see repeatedly:
- A team experiences (or fears) a single-key failure.
- They adopt multisig.
- They declare the control problem “solved.”
- Signers remain able to authorize almost any operation the wallet can perform — as long as enough of them agree in the moment.
- When something goes wrong, the post-mortem discovers the missing piece was never “more keys.” It was missing rules about the operation itself.
Multisig can stop a lone actor. It does not stop a group of authorized signers from executing an operation that is wrong for the organization — wrong destination, wrong amount, wrong timing, or wrong purpose — if the wallet’s only check is “enough signatures.”
That is residual risk after the control everyone already installed.
Signers vs operations
It helps to separate two layers:
| Layer | Question it answers | Typical tool |
|---|---|---|
| Authorization | Who must participate to move value? | Multisig, shared custody, key ceremonies |
| Governance of the action | What may happen, when, by which role, with what evidence? | Explicit policy bound to the operation |
You need both. Collapsing them into “we have a multisig” is how organizations confuse access sharing with operational control.
Once that distinction is clear, a useful name appears for the work teams are actually trying to do: blockchain operations — the organizational process of initiating, reviewing, approving, and executing on-chain actions under explicit rules. Signing is one step inside that process. It is not the process.
Questions worth asking before you call it “governance”
Use these in a treasury, security, or board review. They are designed to expose the gap multisig does not close:
-
What is the minimum set of people or systems required to move high-value assets?
If the answer is only “N signers,” ask what those signers are forbidden from doing. -
Are limits and roles enforced by the system that executes — or only by policy documents?
Documents do not stop a transaction. Rules attached to the action can. -
Can we reconstruct the decision path from durable evidence — not from memory and screenshots?
“Three people signed” is not the same as “this payment was requested, reviewed, and approved under policy X.” -
What happens if a key or operator is compromised after they are already an approved signer?
Threshold signing still assumes trusted participants. Governance has to constrain what even trusted participants may do. -
Who can propose a change, and who must approve it — as distinct jobs?
If every signer can both invent and finalize the same high-risk move, you still have concentration of power — just distributed across devices.
If those questions are uncomfortable, that is useful. Discomfort means the mental model is updating.
What “enough” would have to include
This article is not an argument against multisig. Threshold signing remains a sound building block for reducing single-key blast radius.
“Enough” for team governance usually requires something multisig was never designed to be:
- Roles — request, approve, and execute are not the same job
- Waiting periods — time to notice a bad intent before settlement
- Rules on the action — amounts, destinations, and operation types constrained before execution
- Evidence — a trail that shows the path from intent to settlement, not only a list of signatures
Those controls can live with — and complement — co-signing. They do not replace the need for keys. They stop keys from being the entire governance model.
What this is not asking you to believe yet
You do not need a new product category manifesto to accept the gap.
You also do not need implementation detail here. How waiting periods, roles, and on-chain policy are engineered belongs in technical documentation and in later articles in this series. The Foundation step is simpler:
Stop treating “more signers” as synonymous with “we govern on-chain activity.”
Where to go next
If this reframing lands, the next failure mode is nearby: teams add approvals — tickets, chats, multi-click ceremonies — and still discover that irreversible mistakes ship, because the approval was never bound to what the chain would enforce.
Read next: Why Approvals Alone Don’t Prevent Costly On-Chain Mistakes.
For builders who want the open-source enforcement layer Particle CS maintains, start at the Bloxchain Protocol on GitHub and docs.bloxchain.app. For the company overview of how Platform and Protocol share on-chain policy, see the Particle CS home. Product surfaces remain alpha / testnet-first where applicable — do not read this piece as a mainnet readiness claim.