Introduction to Decision Markets

NovaDAO uses decision markets instead of traditional token voting to govern protocol decisions. Rather than asking "what do token holders want?", decision markets ask "what will make the token more valuable?" — and let the market answer.

Key insight: In a decision market, people put real money behind their predictions. This means informed participants are rewarded and uninformed participants lose money — creating a powerful incentive to seek the truth.

First, Some Context

Token voting — the dominant governance mechanism in crypto — suffers from four well-documented failure modes:

1. Low Participation

Most token holders never vote. Across major DAOs, voter turnout rarely exceeds 5-10% of the token supply. This means a tiny minority of holders make decisions that affect everyone. Apathy compounds: when people see that their vote rarely matters, they stop participating entirely.

2. Plutocracy

One-token-one-vote means whales dominate. A single large holder can override thousands of smaller participants. This concentrates power in the hands of early insiders, VCs, and exchanges — the very centralization that DAOs claim to eliminate.

3. Misaligned Incentives

Voters face no consequences for bad decisions. If a governance vote approves a disastrous proposal, the voters who supported it lose nothing beyond what every other holder loses. There is no direct cost to voting poorly, so there is no direct incentive to vote well.

4. Information Poverty

Voting provides almost no signal about why people support or oppose a proposal. A 60/40 vote tells you the outcome but nothing about the reasoning. There is no mechanism to aggregate distributed knowledge — a developer who knows a proposal is technically flawed has the same single vote as someone who has never read the code.

How Does It Work?

When a proposal is submitted to NovaDAO, the protocol creates two conditional markets:

Pass Market

Trades a conditional token representing the value of NOVA if the proposal passes. If the market prices this token at 1.20 USDC, participants collectively believe the proposal will increase NOVA's value to $1.20.

Fail Market

Trades a conditional token representing the value of NOVA if the proposal fails. If the market prices this token at 0.95 USDC, participants collectively believe NOVA will be worth $0.95 if the proposal is rejected.

After a defined trading period, the protocol compares the time-weighted average prices (TWAPs) from both markets. If the pass market TWAP exceeds the fail market TWAP, the proposal is approved. If not, it is rejected.

Simple rule: A proposal passes when the market believes it will increase the token's value. Pass TWAP > Fail TWAP = Proposal approved.

Why Is This Better?

Decision markets are not a theoretical experiment. They are used across many domains and consistently outperform alternative methods of aggregating information.

Election Forecasting

Prediction markets like Polymarket and PredictIt have consistently outperformed polls, pundits, and statistical models in forecasting elections. In the 2024 US presidential election, prediction markets called the outcome correctly while most polling aggregators did not. The reason is simple: people who put money on the line seek out better information and weight it more carefully than survey respondents.

Commodity Price Discovery

Futures markets for commodities like oil, wheat, and metals are how the global economy discovers prices. These markets aggregate information from producers, consumers, traders, and analysts into a single price signal that reflects collective knowledge about supply, demand, and future conditions. No committee or algorithm matches their accuracy.

Corporate Decision-Making

Companies including Google, HP, and Ford have experimented with internal prediction markets to forecast product launches, project timelines, and strategic outcomes. In every documented case, the internal markets outperformed management forecasts — because they aggregated information from employees across the entire organization, not just executives.

The Fundamental Principle

All of these examples rest on one principle: when people have skin in the game, they reveal truthful information. A trader who believes a proposal will harm the protocol can profit by shorting the pass token. A trader who has done deep research and believes a proposal will be transformative can profit by going long. The market price reflects the balance of all of these informed opinions, weighted by conviction.

Why Does This Matter for Governance?

Decision markets directly address the four failure modes of token voting:

Governance Capture

In a decision market, a whale who tries to force through a bad proposal by buying pass tokens is simply giving money to informed traders who short the other side. Market manipulation is expensive and self-correcting — the more you distort the price, the more profit you create for those who correct it. Compare this to token voting, where a whale can vote for a bad proposal at zero marginal cost.

Bad Proposals

If a proposal is genuinely harmful, informed traders will short the pass market and go long the fail market, driving the TWAP below the pass threshold. The proposal fails not because of politics or turnout, but because the collective intelligence of the market judged it to be value-destructive. The worse a proposal is, the more money there is to be made by opposing it.

Better Information

The market price at any given moment reflects the best available information about a proposal's likely impact. This is publicly visible and continuously updated — unlike a governance forum where the loudest voices dominate, or a vote where you only learn the outcome at the end. Decision markets produce a real-time signal that anyone can observe and act on.

How NovaDAO Implements Decision Markets on Stellar

NovaDAO brings decision markets on-chain using Stellar's Soroban smart contract platform. Here is how each component maps to the system:

ComponentImplementation
Conditional TokensThe Conditional Vault contract splits NOVA into pass and fail tokens. Each token represents a claim on the underlying NOVA, redeemable only if the corresponding outcome occurs.
AMM MarketsThe Futarchy AMM contract creates constant-product (x*y=k) liquidity pools for pass/USDC and fail/USDC pairs. Anyone can trade, and the pool continuously discovers the market price.
TWAP OracleThe AMM records time-weighted average prices on-chain with lagged observations. This makes short-term price manipulation extremely expensive and ensures the final decision reflects sustained market consensus.
Proposal LifecycleThe DAO contract manages proposal creation, market deployment, TWAP comparison, and finalization. The entire lifecycle — from submission to execution — is trustless and on-chain.
Factory RegistryThe Factory contract enables permissionless DAO creation. Anyone can deploy a new NovaDAO instance with its own token and governance parameters.

Getting Started