What it is
Ragequit is an exit mechanism, popularized by Moloch-style DAOs, that lets a member burn their governance tokens (shares) at any time to redeem their proportional slice of the treasury in the underlying assets. It's the DAO equivalent of a shareholder buyout: instead of being outvoted and stuck, you can simply leave with your fair share of the money.
How it works
- A DAO holds a shared treasury and issues internal, non-transferable shares that represent both voting power and a claim on the treasury.
- A proposal is submitted (to fund a grant, add a member, change a rule) and enters a voting period, often followed by a grace period before execution.
- During the voting or grace period, any member who opposes the outcome — or simply wants out — can call "ragequit."
- The contract calculates that member's pro-rata share of the treasury based on their shares divided by total shares outstanding.
- Those shares are burned immediately, reducing total supply, and the member's share of each treasury asset is transferred out to them.
- Because the ragequit happens before contested proposals execute, a member can exit before their capital is committed to a decision they disagree with, effectively vetoing their own exposure to that outcome without vetoing the proposal for everyone else.
- Remaining members' proportional ownership of the treasury goes up slightly since the total share count shrank while treasury minus the paid-out amount is redistributed across fewer shares.
Why designers use it
- Replaces adversarial governance fights with an economic release valve: minorities aren't trapped by majority votes, they can simply leave with their capital.
- Removes the need for complex minority-protection voting rules (supermajorities, vetoes) because exit itself is the protection.
- Aligns incentives during contentious proposals — if a proposal is genuinely bad, members ragequit and the treasury shrinks, making the cost of bad governance visible and immediate.
- Encourages honest proposals, since proposers know members can walk away with funds rather than be forced to fund something they oppose.
Failure modes
- A run on the treasury: if members lose confidence simultaneously, mass ragequits can drain a DAO faster than it can execute any of its plans, similar to a bank run.
- Illiquid or long-locked treasury assets (vesting tokens, LP positions, real-world assets) can't be paid out pro-rata on demand, forcing designers to either block ragequit on those assets or fake liquidity it doesn't have.
- Grace periods that are too short don't give members enough time to notice and react to a bad proposal before it executes.
- Whales with large share counts can ragequit and single-handedly cripple the treasury, since payout scales with shares, not with need or fairness.
- Ragequit can be used strategically to avoid funding a proposal only to rejoin later, effectively free-riding on the DAO's collective decisions while dodging their cost.
What to check before using it
- Can every treasury asset actually be split and transferred pro-rata on demand, or are some assets (vesting, staked, illiquid) exempt — and is that clearly disclosed?
- Is the grace/voting window long enough for members to actually notice a contested proposal and act before it executes?
- What happens if many members ragequit at once — does the DAO have a minimum viable treasury size or membership floor?
- Are shares distributed such that a small number of large holders could unilaterally gut the treasury via ragequit?
- Is there a cooldown or vesting on newly joined members' ragequit rights, to prevent quick join-then-exit extraction?