DeFi Intel

How to Use a Multisig Wallet (Safe)

DifficultyIntermediate Estimated time15 minutes Last updated2026-05-03

How to set up a Safe (formerly Gnosis Safe) multisig: signers, threshold, modules, and recovery best practices.

What you'll need (prerequisites)

Recommended for this tutorial

Tools and accounts referenced in the steps below:

Move to hardware: Ledger · Trezor cold storage

Step-by-step

  1. Step 1: Understand what multisig is

    A multisig wallet requires several independent signatures — M of N owners — before any transaction can move funds, so no single compromised key can drain the account. A 2-of-3 setup, for example, needs any two of three owners to approve. This removes the single point of failure that makes ordinary single-key wallets risky for treasuries and long-term holdings.

  2. Step 2: Choose your owners and threshold

    Decide who the owner keys are and how many must sign (the threshold), balancing security against the risk of losing access. Common choices are 2-of-3 for individuals and 3-of-5 for teams, giving redundancy if one key is lost while still blocking a lone attacker. Avoid a threshold equal to the owner count (such as 3-of-3), which leaves no margin if a single key is lost.

  3. Step 3: Deploy a Safe on your chain

    Go to app.safe.global, connect a signer wallet, select the network you want the Safe on (Ethereum, an L2, and so on), and create a new Safe. Deployment is an on-chain transaction, so keep some native gas token in the connecting wallet. The Safe you create lives at its own address on that specific chain.

  4. Step 4: Add owner addresses and set the threshold

    During creation, enter each owner's address and set the number of required confirmations. Double-check every address, ideally by verifying it on each owner's own device, before finalizing. You can change owners or the threshold later, but each change is itself a multisig transaction that must clear the current threshold.

  5. Step 5: Propose, confirm, and execute a transaction

    To move funds, one owner proposes a transaction, then the required owners review and confirm it with their own wallets. Once the threshold of confirmations is reached, any owner can execute it on-chain. Each signer should verify the destination and amount on their own hardware device before confirming.

  6. Step 6: Follow signer best practices

    Use hardware-wallet signers and spread the owner keys across different devices, people, and physical locations so no single breach or disaster can reach the threshold. Keep secure backups of every owner key and document a recovery path for replacing a lost or compromised owner. Periodically review the owner set and threshold as your team or holdings change.

Common errors and fixes

FAQ

What does M-of-N mean and what threshold should I pick?

M-of-N means M signatures out of N total signers are required to move funds, such as 2-of-3 or 3-of-5. 2-of-3 is the most popular choice for individuals and small teams because it survives the loss or theft of any single key; larger organizations and DAOs often use 3-of-5 for more resilience.

Why does signer diversity matter?

If every key sits on the same hardware model, in the same building, or with people in the same group chat, one event can compromise the threshold. Spread keys across different device makers, physical locations, and independent people so no single failure or act of collusion can reach M.

How do I deploy a Safe multisig?

Use the official Safe (formerly Gnosis Safe) app to create the account, add each owner's address, and set the threshold — the Safe is a smart contract deployed on-chain, so deployment and every transaction cost gas. Add your hardware-wallet addresses as owners rather than hot keys for the strongest setup.

What happens if a signer loses their key?

As long as the remaining owners still meet the threshold, they can call swapOwner or removeOwner/addOwner to rotate the lost key out — this is the primary recovery path. Build in headroom (for example, never run 3-of-3) so losing one key does not permanently lock the Safe.

Can I add a recovery option in case too many keys are lost?

Yes — Safe supports a delayed Recovery Module in which a designated guardian can rotate signers after a timelock. Choose low-correlation guardians such as a hardware wallet, a family member, and an institution so they are unlikely to collude, and the timelock gives you a window to cancel an unauthorized attempt.

Entities mentioned