Wallets and Security
Multisig Wallets for Crypto Teams
How multisig wallets protect crypto team treasuries, how to choose signers and thresholds, common setup mistakes, and the routines that keep a multisig safe over time.

A single-key wallet puts a whole treasury in the hands of one person and one device. If that key is lost, stolen or misused, the funds go with it. Multisig wallets fix this by requiring several independent approvals before any transaction executes. For crypto teams holding shared funds, a multisig is one of the most important security decisions they will make.
How a multisig works
A multisig wallet is a smart contract account controlled by a set of signers. It has a threshold, written as M of N, such as two of three or three of five. A transaction only executes when at least M signers approve it.
Each signer holds their own key, ideally on a hardware wallet. No single signer can move funds alone, and losing one key does not lock the wallet as long as enough other signers remain.
Choosing signers
Pick signers who are trusted, reachable and security conscious. Consider:
- People in different roles, such as founders, operations and an independent advisor
- People in different locations and time zones, so approvals are possible around the clock
- Avoiding signers who share a device, office or household
- Each signer using a dedicated hardware wallet for signing
Document who the signers are internally, and publish the multisig address publicly so the community can see treasury activity.
Choosing a threshold
| Setup | Good for | Trade-off |
|---|---|---|
| 2 of 3 | Small teams | Two signers colluding or compromised can move funds |
| 3 of 5 | Growing teams and DAOs | More coordination needed for each transaction |
| 4 of 7 | Large treasuries | Slower approvals, more signers to manage |
Set the threshold high enough that compromising one or two signers cannot move funds, while leaving the team able to act when a signer is unavailable.

Common setup mistakes
Teams often weaken their multisig without realising:
- Several signer keys held by the same person
- Signer keys stored as hot wallets on everyday laptops
- A threshold of one, which removes the protection entirely
- Deploying on one network and assuming the same address works on others
- No record of which signer controls which key
- Signers approving transactions without checking the details
The fourth mistake is particularly costly. Smart contract wallets exist per network. Funds sent to the multisig address on a network where it was never deployed may be unrecoverable or require complex recovery.
Transaction review routine
Every transaction should follow a clear routine:
- The proposer shares a description and purpose in a team channel
- Each signer checks the recipient, amount and token independently
- Signers verify the transaction details on their hardware wallet screen
- Large or unusual transactions get a short call before signing
- The executed transaction hash is recorded with its purpose
This routine protects against both mistakes and social engineering, such as an attacker impersonating a teammate to request a payment.
Maintaining the multisig
Security decays without maintenance. Schedule regular reviews:
- Confirm every signer can still access their key
- Replace signers who leave the team promptly
- Review the threshold as the treasury grows
- Test signing with a small transaction occasionally
- Keep firmware on signer devices updated
Transparency builds trust
Publishing the treasury multisig address lets holders see that funds are protected and how they are spent. Many teams list treasury addresses on their website and docs next to their contracts and official links. Keeping those details consistent across every public profile, from documentation to a Proud Globe pin, makes your project harder to impersonate.
Educational content only. Nothing here is financial, legal or tax advice. Crypto assets carry risk, so check the details for your own situation.