The Compound DAO governs Compound, one of DeFi's original algorithmic money markets, where users supply assets to earn interest and borrow against overcollateralized positions. Its lasting influence on the industry is less about the protocol than about how it is run: Compound authored the Governor + Timelock contract pattern that most on-chain DAOs — Uniswap, ENS, and hundreds more — still copy today. Control over the protocol's markets, its risk parameters, and its treasury rests entirely with holders and delegates of the COMP token, deciding by token-weighted on-chain vote.
COMP and the birth of liquidity mining
Compound distributed its COMP governance token beginning in June 2020, streaming it automatically to anyone supplying or borrowing on the protocol rather than selling it in a sale. The mechanism — later universally called liquidity mining or "yield farming" — kicked off the "DeFi summer" capital rush and became the default playbook for bootstrapping a DAO's token distribution. COMP has a fixed supply of 10,000,000 tokens and, like most governance tokens, originally conferred votes but no direct claim on protocol revenue. (Compound: the COMP token; CoinDesk, 2020)
Governor Bravo — the on-chain governance template
Compound governance is three contracts working together: the COMP token (which tracks voting weight and supports delegation), the Governor Bravo module (which runs proposals and vote tallies), and a Timelock (which holds the admin keys and enforces a delay before any approved change executes). The canonical parameters are baked in:
- Proposal threshold — 25,000 COMP. An address must hold or be delegated at least 25,000 COMP to submit a proposal, a spam filter that also concentrates proposing power.
- 2-day review, then a 3-day vote. After a short review delay, voting is open for roughly three days; voting weight is snapshotted at the block the proposal starts, so tokens bought afterwards do not count.
- 400,000-vote quorum. A proposal passes only with a majority and at least 400,000 votes cast in favour.
- 2-day timelock. A passed proposal is queued in the Timelock and can be executed two days later, giving the community a window to react before code changes land.
"Bravo" was the 2021 upgrade to the original Governor Alpha, adding an upgradeable delegator pattern and vote-reason strings. Because the contracts were audited, permissionless, and copy-pasteable, they became the reference implementation for the whole propose → vote → timelock → execute lifecycle — the same skeleton most protocol DAOs run on. (Compound v2 docs: Governance; GovernorBravoDelegate.sol)
Governance in practice — and under attack
Compound's model has been stress-tested in public. In 2024 a group nicknamed the "Golden Boys," led by an activist known as Humpy, accumulated and delegated enough COMP to pass Proposal 289 — a bid to move roughly 499,000 COMP (~$24M) of DAO reserves into a "goldCOMP" yield vault the group would influence. It cleared the on-chain vote before the community mobilized; after intense backlash the proposers agreed to rescind it. The episode is now a textbook case of a governance attack executed entirely within the rules — no exploit, just concentrated voting power aimed at the treasury. (Unchained, 2024)
The DAO continues to steer real money: in mid-2026 its Treasury Management Committee issued a request for professional managers to steward an initial ~$20–25M of reserves (submissions due 24 June 2026), part of a broader industry move to put idle DAO treasuries to work — the collective on-chain DAO treasury crossed $26B in Q1 2026 per DeepDAO. (Compound RFP: Treasury Management Program)
How Caper approaches this
Compound's Governor Bravo showed the industry how to make a vote binding on-chain — but Prop 289 also showed its soft spot: enough delegated tokens can point the whole treasury at an exit, and dissenters have no way out but to sell COMP on the open market. A caper keeps the binding-execution property — every approved PAYOUT or INVEST proposal settles on-chain — but pairs it with a standing exit: a member who dislikes where a vote is heading can redeem their pro-rata treasury share directly rather than dumping into a market. And Caper's voting weight deliberately does not reduce to "tokens delegated at a snapshot block," which is the exact lever Prop 289 pulled. The mechanics are described neutrally on those Caper pages.
References
- Compound documentation — protocol and governance reference.
- Compound v2 docs: Governance — Governor Bravo parameters.
- Compound Community Forum (comp.xyz) — where proposals originate.
- GovernorBravoDelegate.sol — the on-chain governor contract.
- Unchained: Golden Boys agree to rescind Proposal 289 (2024).