How to Check Protocol Multisig Before Depositing
Who Controls the Protocol Holding Your Money

Before you deploy six figures into any DeFi yield position, you need to answer one question: who can change the terms, upgrade the contracts, or drain the treasury without your consent? No audit report will answer this for you. Auditors review code quality and mathematical correctness. They do not evaluate governance attack surface or multisig signer composition. That check belongs to you.
I spent twelve years in traditional gambling compliance before crypto. Every regulated operator undergoes independent audits of game fairness, payout algorithms, and transaction flows. But the most serious risks never came from bad code. They came from control structures that let insiders change payout tables, redirect deposits, or freeze withdrawals without regulatory oversight.
DeFi protocols face identical governance risk. The difference is that traditional finance has regulators, escrow agents, and legal recourse. In crypto, if a 2-of-3 multisig controlled by anonymous signers decides to upgrade the contract and siphon your position into a new wallet, your funds are gone. No regulator will reverse the transaction. No court will enforce a refund.
The income mechanism here is avoided loss. Governance attacks, rug pulls via proxy upgrades, and unilateral term changes have drained billions from yield positions. The largest single point of failure in DeFi is not smart contract bugs. It is control structures that allow small groups to execute hostile actions faster than users can exit.
The Checklist: Five Queries Before Every Deployment

This is the sequence I run before committing capital to any new protocol. Each check takes five to fifteen minutes. The entire process takes less than an hour. If the protocol fails any of these checks and you deploy anyway, you have accepted governance risk as part of your return profile.
1. Multisig Composition and Threshold
Start at the protocol documentation or governance forum. Find the multisig address. Most protocols publish this in their docs under “Security” or “Governance.” If they do not, that is a red flag by itself.
Navigate to Etherscan (or the block explorer for the relevant chain). Paste the multisig address. Look for a Safe (formerly Gnosis Safe) contract. Click the “Read Contract” tab. Find the function labeled “getOwners” or “owners.” This returns the array of signer addresses. Count them.
Next, find the “threshold” function. This tells you how many signatures are required to execute a transaction. The ratio of threshold to total signers determines your risk exposure.
Red flags: 1-of-2, 2-of-2, or any configuration where threshold equals total signers. A 2-of-2 multisig means one lost key locks the protocol forever. A 1-of-2 means one compromised key drains it instantly.
Yellow flags: 2-of-3 multisigs on protocols with more than $50 million in TVL. For six-figure deployments, I want to see 3-of-5 minimum. Larger protocols should use 4-of-7 or higher.
Green standard: 3-of-5 or better, with signers who are publicly identified entities or organizations with reputational stake. Uniswap, Aave, and Compound all use multisig thresholds appropriate to their TVL. Newer protocols often do not.
2. Signer Identity and Distribution
Knowing the threshold is not enough. You need to know who the signers are and whether they are independent.
Take each signer address and search it on Etherscan. Look for labels. If Etherscan has labeled the address “Protocol Foundation,” “Team Wallet,” or a known entity, write it down. If the address is unlabeled, search it on Twitter, governance forums, or Nansen.
Red flag: All signers are anonymous addresses with no public accountability. If the protocol cannot or will not identify signers, you are trusting ghosts.
Yellow flag: All signers are employees of the same company or foundation. This creates operational efficiency but eliminates independence. If the organization decides to act against user interests, no signer will dissent.
Green standard: Signers include independent entities, outside organizations, or individuals with established reputations in the ecosystem. Protocols serious about decentralization distribute signing authority across entities that do not share legal control or financial incentives.
3. Timelock Delay on Governance Actions
A timelock is a smart contract that delays execution of approved governance proposals. If governance votes to upgrade the protocol, the timelock enforces a waiting period before the upgrade goes live. This gives users time to review the change and exit if they disagree.
Go to the protocol’s governance dashboard or documentation. Look for “timelock” or “execution delay.” The delay should be stated in hours or seconds.
Red flag: No timelock. Governance or multisig can execute changes instantly. You have zero exit window.
Yellow flag: Timelock under 24 hours. This may work for small protocols or those with sophisticated guardian systems, but it is too short for six-figure positions in protocols you do not monitor continuously.
Green standard: 48 to 72 hours for protocols with more than $100 million in TVL. Uniswap uses a 2-day timelock. Compound uses similar delays on critical parameter changes. That duration gives users time to notice a hostile proposal, assess its impact, and withdraw funds before execution.
Check for emergency override mechanisms. Some protocols let a guardian or multisig bypass the timelock in emergencies (e.g., to pause a contract during an active exploit). This is reasonable if the guardian is independent and if overrides are logged publicly. If the same multisig that proposes changes can also bypass the timelock, the timelock provides no protection.
4. Proxy Upgrade Authority
Many DeFi protocols use proxy contracts. The address you interact with delegates all function calls to a separate implementation contract. The protocol can upgrade the implementation without changing the proxy address. This is efficient for patching bugs and adding features. It is also the most common vector for rug pulls.
On Etherscan, open the contract page for the protocol’s main token or vault. Check if it is labeled “Proxy.” If yes, scroll to the “Read Contract” tab (or “Read as Proxy” if available). Look for a field called “implementation” or query the storage slot at 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc (the EIP-1967 standard slot for implementation addresses).
Once you have the implementation address, go back to the proxy contract page. Look for write functions labeled “upgradeTo” or “upgradeToAndCall.” Click on them. Etherscan will show you which address has permission to call these functions. That address is the upgrade authority.
Red flag: The upgrade authority is a single externally owned account (EOA), especially if it is not publicly identified. If that private key is compromised or the owner turns hostile, the entire protocol can be replaced with malicious logic.
Yellow flag: The upgrade authority is a multisig, but it is the same 2-of-3 multisig that controls routine operations. This does not separate upgrade authority from operational authority.
Green standard: Upgrade authority is controlled by governance with a timelock, or by a dedicated security multisig with a higher threshold than the operational multisig. Ideally, upgrades require both a governance vote and a multisig confirmation, and the timelock applies to both.
5. Governance Token Distribution
Protocols that use token-based governance are vulnerable to vote concentration. If a small number of addresses control a majority of voting power, they can pass proposals that benefit themselves at the expense of other users.
Go to Etherscan and open the governance token contract. Click “Holders.” This shows the top addresses by token balance. Calculate the combined holdings of the top 10 addresses as a percentage of total supply.
If the protocol publishes governance analytics, check those instead. Some DAOs maintain dashboards on DefiLlama or Dune Analytics showing voting power distribution, turnout, and whale participation.
Red flag: Top 3 addresses control more than 30% of voting power. This is enough to pass proposals unilaterally in most governance systems. If those addresses belong to the founding team or a single entity, you are trusting them not to vote against your interests.
Yellow flag: Top 10 addresses control more than 50%. This is common in early-stage protocols but represents a meaningful concentration risk. Research on major DAOs has shown that voting power in Compound, Uniswap, and ENS is more unequally distributed than wealth in developed economies.
Green standard: Voting power is distributed across at least 20 to 30 significant holders, with no single entity controlling more than 15%. Protocols that have conducted multiple token distributions, airdrops, and liquidity mining programs tend to have healthier distributions.
Real Examples of Governance Failures

Beanstalk imposed a one-day timelock on governance proposals. In April 2022, an attacker used a flash loan to acquire a majority of voting power, passed a malicious proposal, and drained $182 million from the protocol. The timelock was too short for the community to organize a response.
In 2023, a user with a large governance token position in Balancer voted for fee changes that benefited their own positions but reduced returns for other liquidity providers. This was not illegal. The user followed the protocol’s rules. But the incident highlighted how concentrated voting power can produce outcomes that harm minority participants.
Centralized exchanges hold governance tokens on behalf of their users. Those tokens are often used to vote in protocol governance without user knowledge or consent. If an exchange holds 10% of a protocol’s supply, it can influence proposals even though the individual depositors may have conflicting preferences.
Proxy upgrade attacks are common. A token launches with clean code. Liquidity providers deposit. The owner upgrades the implementation to include a hidden transfer function. The owner calls it and moves all deposited funds to a new wallet. This has happened dozens of times. Every case involved a proxy contract with upgrade authority held by a single address or an anonymous multisig.
You do not need specialized software to perform these checks. The following tools are sufficient:
Etherscan (or equivalent block explorer): For identifying multisig signers, checking proxy upgrade authority, reading governance token holder distribution, and verifying contract code. Etherscan labels many known addresses. If an address is unlabeled, search its transaction history for clues about ownership.
Safe UI (app.safe.global): If the protocol uses a Safe multisig, you can view signer details, threshold, and transaction history directly in the Safe web app. Paste the multisig address into the search bar. This interface is more readable than Etherscan for multisig analysis.
Protocol governance dashboards: Many DAOs maintain public dashboards showing active proposals, historical votes, and voting power distribution. Compound, Uniswap, Aave, and MakerDAO all publish this data. Smaller protocols may not.
DefiLlama governance section: Aggregates governance token data and voting metrics across dozens of protocols. Useful for comparing governance concentration and participation rates.
Nansen or Arkham: Paid analytics platforms that label addresses and track fund flows. Helpful for identifying anonymous multisig signers, but not required if you are willing to do manual research.
The information exists on-chain. The question is whether you are willing to look for it.
When This Check Matters and When It Does Not
If you are deploying four figures or less into a new protocol for experimental exposure, governance diligence may be overkill. You are buying optionality, not building a long-term position. The time cost of the audit may exceed the position size.
If you are deploying six figures, this check is mandatory. At that scale, governance risk is existential. A hostile governance action, proxy upgrade, or multisig rug can erase your entire position in minutes. No insurance will cover it. No exchange will reverse it.
If you are holding a position for months or years, governance risk compounds. Even well-intentioned protocols change. Founding teams leave. Investors push for aggressive monetization. Token holders vote to increase fees or redirect treasury funds. A governance structure that looked safe at launch may become hostile two years later. You should re-audit governance quarterly for any long-duration position.
For blue-chip protocols (Uniswap, Aave, Compound, MakerDAO), you can rely on existing community diligence to some degree. These protocols have been live for years, have distributed governance, and face constant public scrutiny. That does not eliminate governance risk, but it reduces it. For everything else, you do the work yourself.
The Minimum Standard for Six-Figure Deployments
Here is the floor I will not go below for positions over $100,000:
Multisig threshold of 3-of-5 or better, with at least two signers who are publicly identified and independent of the core team.
Timelock of 48 hours minimum on all governance actions that affect user funds, contract upgrades, or fee structures.
Proxy upgrade authority controlled by governance or a security multisig with a higher threshold than the operational multisig, and subject to the same timelock.
Governance token distribution where no single entity controls more than 20% of voting power, and the top 10 holders control less than 50%.
Public documentation of all signers, timelocks, and governance processes, updated within the last six months.
If a protocol meets these criteria, it does not mean the protocol is safe. It means the governance structure gives you a realistic chance to exit before a hostile action executes. If the protocol fails any of these criteria, you are accepting governance risk as part of your return. That is a legitimate choice if you understand it and size your position accordingly.
The Takeaway
No audit covers governance attack surface. The checklist above takes less than an hour and identifies the control points that can erase your position overnight. Before you deploy six figures into any protocol, check the multisig threshold and signer composition, verify the timelock delay on governance actions, inspect the proxy upgrade authority, and review governance token concentration. If you cannot find this information or the protocol refuses to publish it, that is the answer. Do not deploy.
Frequently Asked Questions
What is a safe multisig threshold for DeFi protocols?
For protocols holding over $50 million TVL or your six-figure position, a minimum 3-of-5 multisig is recommended. Avoid 1-of-2 (single point of failure) or 2-of-2 (one lost key locks funds). The threshold should prevent any single signer from acting alone while avoiding key-loss paralysis. Larger protocols should use 4-of-7 or higher, with signers who are publicly identified and operationally independent.
How long should a governance timelock be?
48 to 72 hours for protocols with significant TVL. This gives users time to notice hostile proposals, assess impact, and withdraw before execution. Uniswap uses a 2-day timelock. Delays under 24 hours are too short for six-figure positions unless you monitor governance continuously. Timelocks under 12 hours or missing entirely are red flags. Check that emergency overrides are controlled by independent guardians, not the same multisig proposing changes.
Where can I check who controls a protocol’s upgrade authority?
Use Etherscan to inspect the proxy contract. Look for the implementation address in the Read Contract tab or query storage slot 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc. Then find write functions like upgradeTo or upgradeToAndCall to see which address has permission. Red flag: single EOA. Yellow flag: same 2-of-3 multisig for operations. Green: governance with timelock or dedicated security multisig.
What governance token concentration is too risky?
If the top 3 addresses control over 30% of voting power, they can pass proposals unilaterally in most systems. Top 10 addresses controlling over 50% represents meaningful concentration risk. Check the Holders tab on Etherscan or use DefiLlama governance data. Protocols with distributed voting across 20-plus significant holders and no single entity above 15% are safer. Research shows major DAO voting power is more concentrated than wealth in developed economies.
How often should I re-audit protocol governance?
Quarterly for long-duration six-figure positions. Governance structures change as teams leave, investors push monetization, or token holders vote for aggressive fee increases. A safe structure at launch can become hostile two years later. For blue-chip protocols with years of community scrutiny (Uniswap, Aave, Compound), you can rely more on public diligence but should still monitor major governance proposals. For newer protocols, quarterly checks are mandatory.
The Weekly Yield Report
You now have the five-query checklist for auditing multisig, timelock, and governance token concentration before six-figure deployments. Those control structures will evolve as protocols mature, and new attack vectors will emerge.
Every Thursday: where crypto yield actually is – stablecoins, liquid staking and DeFi lending, with the risk named next to the rate and what changed since last week.
Free. No trade calls, no allocations, no hype. Unsubscribe in one
click.










