MPCSecurityMultisigThreshold Signatures

Admin Multisig Isn't Your Wallet's Multisig

By VultisigUpdated June 19, 2026

A post resurfaces on r/CryptoCurrency every few months: "User Funds across Ethereum Layer 2 Blockchains are at MAJOR RISK."

The claim: L2s like Optimism, Blast, and Base use multisig wallets to control upgrades and treasury, and if those keyholders collude or get compromised, user funds disappear.

That's true. But what it's describing has nothing to do with your wallet.

Two different things wearing the same word

Protocol admin multisig is a corporate governance tool. It's how a blockchain protocol's team controls upgrades, parameters, and emergency actions. A small group of insiders holds keys. If enough of them sign, they can change the rules of the chain.

This is the risk the L2 post is describing. It's real, and centralized governance is a legitimate concern. But it's a protocol design problem, not a wallet technology problem.

Wallet multisig is what you use to protect your own funds. Traditional multisig (think Gnosis Safe) splits a key across multiple wallets. You need M-of-N signatures to move funds. Safer than a single key, but still:

  • Chain-specific (Bitcoin multisig doesn't work on Ethereum)
  • Multiple keys actually exist, and each can be compromised
  • Higher fees, because each signature is on-chain
  • Exposes your ownership structure to anyone watching the chain

They both use the word "multisig." That's where the similarity ends.

What MPC threshold signatures actually do

Vultisig uses a different model entirely. Think of a safe whose combination was never written down anywhere: each of your devices holds a fragment, and the lock opens only when enough fragments are computed together.

In a threshold signature scheme, that is literally how it works. The private key never exists. Not on your device, not on a server, not anywhere. Key shares are generated across your devices, and when you sign a transaction those shares combine to produce a valid signature without ever assembling the underlying key.

What an attacker would need to steal: all of your key shares at once. Not one device. All of them.

Compare that to:

  • A seed phrase wallet: steal the 12 words, own everything
  • Admin multisig: compromise a few insiders with colluding incentives
  • Traditional wallet multisig: each key is a real key, each is a real target

On-chain, a Vultisig transaction looks like a normal single-signature transaction. No structure exposed, no clue that multiple devices were involved.

The partnership problem

Another question that comes up constantly: "I have a business partnership. What's the right multisig threshold? Can my partners collude against me?"

This is the right question, and it points straight at the limit of key-based multisig.

Any M-of-N wallet creates a collusion surface: with 2-of-3, two keyholders can always move funds without the third. That's just the math.

With Vultisig's threshold signature model:

  • You can use 2-of-3 or 3-of-4 across your own devices
  • You can add or remove devices (reshare) without migrating funds
  • The signing threshold is a mathematical property of the key shares, not a trust dependency on co-signers knowing your seed

It doesn't erase the trust question in a business partnership; that's a human problem, not a cryptographic one. But it does remove the separate risk of a co-signer's device being compromised and used without their knowledge.

Why the distinction matters

L2 admin multisig risk is a real and unsolved problem. Protocol teams choosing weak governance structures is worth scrutinizing.

But conflating that risk with "multisig wallets are unsafe" hands people the wrong conclusion: that the fix is to retreat to single-key wallets or custodial exchanges.

The right move is understanding that wallet-level threshold signatures are a different architecture, built on different assumptions, with different security properties.

Your Vultisig vault isn't a Gnosis Safe. It isn't an L2 upgrade controller. The private key doesn't exist, and that's not a marketing line, it's a property of the cryptography.

Download Vultisig, or read the open-source implementation if you want to verify the math yourself.