Crypto
Multisig
Definition
Multisig is a crypto authorization method where a transaction needs approvals from multiple keys before funds can be moved.
What is multisig?
Multisig is a way to control a crypto account so that no single person (or single private key) can unilaterally spend funds; instead, a transaction is only valid after multiple independent approvals are provided. In practice, multisig is most often implemented as an “m of n” rule—for example, 2 of 3 signers must approve before a transfer executes. This concept shows up across many wallet designs and governance setups, and it’s a core pattern discussed in crypto wallet types explained because it changes the security model from “one key = total control” to “shared control with defined thresholds.”
Multisig wallet
A multisig wallet is a wallet setup that enforces multi-approval spending rules at the account level. Rather than relying on one seed phrase, it distributes authority across several signers—often different people, devices, or organizations—so that losing one key or having one signer go rogue doesn’t automatically mean losing the funds. Many modern multisig wallets are built as a smart contract wallet, where the contract encodes who the signers are, what the approval threshold is, and any extra rules (like daily limits or spending allowlists). When a payment is proposed, the wallet collects signatures from the required number of signers and then submits a final transaction on-chain. For a deeper walkthrough of typical flows and safety trade-offs, readers often look for multisig wallets explained.
Multi-signature
Multi-signature (often shortened to “multisig”) refers to the underlying cryptographic and protocol idea: multiple distinct signatures are required to authorize an action. The simplest mental model is a shared bank account that needs two managers to sign a wire transfer—except in crypto, the “signatures” are digital proofs produced by private keys. Depending on the blockchain and wallet design, multi-signature can be implemented in different ways: (1) as a native script or account rule at the protocol level (common in UTXO-style systems), or (2) as logic inside a smart contract wallet (common on account-based chains). On Ethereum-like networks, contract-based accounts can also validate signatures using standards such as ERC-1271, which lets a contract confirm whether a given set of approvals satisfies its internal rules. The key point is that multi-signature changes authorization from a single-key check to a threshold check.
Multisig crypto
In multisig crypto setups, the “m of n” threshold is the feature that makes the system practical: you can require multiple approvals while still allowing operations to continue if one signer is unavailable. For example, a 2-of-3 wallet can keep working even if one device is lost, while still preventing any single compromised key from draining funds. This is why multisig is widely used for DAO treasuries, protocol admin controls, and team-managed reserves: it reduces single points of failure and makes internal controls explicit.
It’s also useful to understand what multisig is not. Multisig typically means multiple independent keys each produce an approval, and the wallet checks that the threshold is met. By contrast, mpc (multi-party computation) can split a single signing key across participants so they jointly produce one signature without ever reconstructing the full private key in one place. Both approaches aim to reduce key risk, but they have different operational and trust assumptions: multisig is usually easier to audit (you can see the threshold and signer set), while mpc can offer smoother UX in some custody designs.
Why multisig matters
Multisig matters because it brings real-world security controls—separation of duties, redundancy, and shared accountability—into self-custody. For individuals, it can reduce the risk of catastrophic loss from a single compromised device or seed phrase. For teams and on-chain organizations, it provides a clear, enforceable policy for moving funds and changing critical settings, which is especially important when a wallet also has administrative power over smart contracts.
Without multisig, many crypto systems would default to “whoever has the key has the power,” making theft, coercion, and operational mistakes far more damaging. With multisig, you can design safer workflows (like requiring approvals from different departments or devices) while keeping the rules transparent and verifiable on-chain. If you’re comparing custody options, multisig is one of the most important patterns to understand alongside other designs covered in crypto wallet types explained.
Frequently Asked Questions
How does multisig work in crypto?
Multisig works by requiring a threshold number of approvals before a transaction can be executed. A wallet is configured with n signers and a rule like “m of n,” and only when at least m valid signatures are collected will the transfer or action be accepted.
What is an m of n multisig wallet?
An “m of n” multisig wallet is a wallet with n total authorized signers where any m of them can approve a transaction. For example, 2-of-3 means two signatures are enough, while 3-of-5 requires three.
Is multisig safer than a normal wallet?
Often yes, because compromising one key is not enough to steal funds if the threshold is higher than 1. However, multisig adds operational complexity, and poor signer management (or collusion) can still create risk.
What is the difference between multisig and mpc?
Multisig uses multiple independent keys and checks that enough separate signatures are present. MPC typically splits one key into shares so participants jointly create a single signature, which can improve UX but may be harder to audit than an explicit multisig threshold.
Do multisig wallets use smart contracts?
On many account-based chains, multisig is implemented as a smart contract wallet that enforces signer and threshold rules. On some networks, multisig can also be implemented natively at the protocol level without a contract.