A vote market is a marketplace where anyone can pay the holders of a governance token to vote a particular way. The payments are universally — and only half-jokingly — called bribes. The mechanism is not an attack or an exploit: it is an openly-run, smart-contract-mediated auction for voting power, and for several protocols it has become the single largest recurring flow of value in their governance. Vote markets are the clearest working example of a broader phenomenon — once a vote carries a predictable cash reward, that vote becomes an asset that can be priced, rented, and traded independently of the tokens underneath it.
Why vote markets exist
Vote markets are a downstream consequence of vote-escrow tokenomics. In the ve-model pioneered by Curve, locked tokens (veCRV) do more than signal preference — they direct gauge weights, the on-chain vote that decides how newly-minted token emissions are split across liquidity pools (Convex: voting and gauge weights). Because a gauge vote literally routes real money, a project that wants deep liquidity has two options: buy and lock the governance token itself, or pay existing lockers to point their votes at its pool. The second is almost always cheaper, and the market that formed to price it became known as the Curve wars (Votium: why Votium).
The same logic reappears anywhere emissions are vote-directed: Balancer and its Aura wrapper, Aerodrome on Base, Frax, and any protocol that copies the ve(3,3) gauge design inherits a vote market whether or not it intends to.
How a vote market works
Every vote market has three roles:
- The venue — the marketplace contract (Votium, Hidden Hand, Warden Quest) that escrows incentives and distributes them after a vote.
- The briber / incentive-poster — a protocol (or DAO treasury) that deposits a reward and names the gauge or proposal it wants votes for. On Votium, bribers post to a biweekly round that runs while the Convex gauge proposal is live.
- The voter — a token-holder who either votes manually for the incentivised option or, far more commonly, delegates to the venue, which allocates their vote to whichever option pays the most and airdrops them the proceeds (Votium vlCVX FAQ).
The delegation step is what turns a scattered electorate into a liquid, auction-clearing bloc: the venue aggregates thousands of small holders and sells their combined weight to the highest bidder each round. Voters do no work and simply collect a yield on tokens they were already locking.
The major venues
- Votium — the canonical Curve-wars marketplace, built around Convex's vlCVX. Rounds run on the Convex gauge cadence — biweekly, Thursday to Tuesday — and delegators are auto-allocated to the best-paying gauges (voter manual).
- Hidden Hand — a multi-protocol "governance incentives marketplace" built by Redacted that runs bribe markets for Aura, Balancer, Frax and others from one interface, positioning bribery as a routine emissions-marketing channel rather than a fringe tactic.
- Paladin — whose Quest (formerly Warden Quest) offers fixed-price incentives: a buyer sets an exact reward-per-vote and a vote target, so both sides know the rate in advance instead of bidding into an open auction (Paladin docs, archived June 2026). Paladin also runs governance lending pools, letting a proposer borrow raw voting power for a single vote — the most literal form of renting control.
The economics: renting votes
Vote markets are efficient precisely because they are cheap for the buyer. Through much of the Curve wars, a protocol could direct more than a dollar of emissions to its pool for less than a dollar of incentives — a positive "bribe efficiency" that made renting votes strictly cheaper than earning them by buying and locking the token outright (Votium). For the voter, the incentive frequently exceeded the value of the emissions their own tokens would have earned passively, so delegating to a vote market became the default yield strategy for ve-lockers.
The result is a clean separation of two things that token-voting is supposed to bundle together: economic exposure (holding the token and its cash-flows) and control (deciding where the protocol's money goes). In a healthy vote market these can be leased apart by the week.
Criticisms and risks
The same separation that makes vote markets efficient is what makes them contentious:
- Cash-flow rights decouple from control. A buyer can steer emissions without holding a meaningful long-term stake, and a locker can sell control while keeping upside — the classic "empty voting" problem that governance scholars flag as a core weakness of tokenised voting rights (Vote Delegation in DeFi Governance).
- Rent extraction and plutocracy. Concentrated holders and aggregators capture most of the bribe flow, reinforcing the whale-dominance already documented in token-weighted voting (Who controls DAOs?).
- Short-termism. Because rounds clear weekly, capital chases the highest immediate bribe rather than the protocol's long-run health — a recurring thread in how DAOs fail.
- Governance capture. A well-funded actor can rent a majority for a single decisive vote — a treasury raid, a fee switch, a parameter change — without ever committing to the protocol it is voting on. Vote markets make the price of temporary capture explicit and low.
Defenders counter that a transparent, on-chain bribe is strictly better than the alternative it replaces: an opaque one. Formalising the vote market at least puts the price of influence on a public ledger where everyone can see it.
The intuitive counter – hide the ballots – does not work either. The shielded voting DAOs actually deploy decrypts and publishes every vote the moment the proposal closes, which leaves the proof of delivery a briber needs perfectly intact; only receipt-freeness removes it, and no DAO runs receipt-free voting at scale (private and shielded voting).
How Caper approaches this
A caper does hold votes – since 29 August 2026 a proposal is decided by a ranked ballot before anything executes – so the question this page asks is live rather than moot. What a caper does not have is a weight that can be leased apart from the position underneath it, and that is a property of the weight formula rather than a rule against bribery.
Voting weight is w = (t · v) / (V · T): t is the voter's balance of the caper's own token, v the voter's balance of that caper's vote token, V the vote token's total supply, and T the circulating supply frozen when the proposal was raised (compute_vote_weight, contracts/common/src/lib.rs). Both terms must be non-zero for a ballot to count at all, and each resists a vote market by a different mechanism.
- v cannot be sent to anyone. The vote token is minted soulbound: its
depositorrole admits only the caper's own state component and the corresponding updater isdeny_all, so a peer transfer aborts on the receiving side and the rule can never be relaxed. It is earned rather than held – one per ballot cast, and 0.01 per XRD of gross value on each leg of a trade – and the only address it can be paid to is the contract that burns it on exit. There is no veCRV analogue to delegate to a venue, because there is no transferable weight token to delegate. - t is clamped to what the voter still holds at the count. A ballot records the balance at cast, but the crystallization crank folds it as
min(balance at cast, balance now), so a stake borrowed for a vote and returned before the tally is counted at whatever is left (fold_ballot_batch,contracts/logic/src/lib.rs). Renting weight for a single proposal is the ordinary shape of a governance-lending pool like Paladin's; here the loan's own repayment prices it out.
The second phase makes the same point about money. A ballot that clears its supermajority does not execute; it opens the market window, and the action lands only if the token's time-weighted price across that window holds at or above the trailing average locked at the trigger. So an actor who does buy an outcome – and buying the token is the one route to weight that remains – has to still be holding when the window closes. A vote market's whole premise is that control is cheaper than ownership; a caper's answer is to make the cheapest available control a purchase you have to keep.
The exposure this trades into is a different one and worth naming: governance here is only as hard to move as the market is deep, so a thin order book is the attack surface a vote market would otherwise have been – the same critique this page makes of cheap bribe efficiency, relocated from the bribe to the curve. See the bonding curve for how a caper's price is formed and optimistic governance for the family the second phase belongs to.