auto-fix: address review feedback on 2024-06-22-futardio-proposal-thailanddao-event-promotion-to-boost-deans-list-dao-engageme.md
- Fixed based on eval review comments - Quality gate pass 3 (fix-from-feedback) Pentagon-Agent: Rio <HEADLESS>
This commit is contained in:
parent
852b5d5585
commit
3a997c346b
5 changed files with 31 additions and 157 deletions
|
|
@ -1,73 +0,0 @@
|
|||
---
|
||||
description: The on-chain governance mechanism -- anyone stakes 500K META to create a proposal that splits tokens into conditional pass/fail variants traded in parallel AMMs with TWAP-based settlement at a 1.5 percent threshold
|
||||
type: analysis
|
||||
domain: internet-finance
|
||||
created: 2026-03-04
|
||||
confidence: likely
|
||||
source: "MetaDAO Founder/Operator Legal Pack, Solomon Labs governance docs, MetaDAO Terms of Service, inbox research files"
|
||||
---
|
||||
|
||||
# MetaDAOs Autocrat program implements futarchy through conditional token markets where proposals create parallel pass and fail universes settled by time-weighted average price over a three-day window
|
||||
|
||||
Autocrat is MetaDAO's core governance program on Solana -- the on-chain implementation of futarchy that makes market-tested governance concrete rather than theoretical. Understanding how it works mechanically is essential because this is the mechanism through which Living Capital vehicles would govern investment decisions.
|
||||
|
||||
**Proposal lifecycle:**
|
||||
1. **Creation.** Anyone can create a proposal by staking 500K META tokens (the project's governance token). This stake functions as an anti-spam filter -- high enough to prevent trivial proposals, but refunded with meaningful participation. The stake threshold creates a permissionless attention market: [[agents create dozens of proposals but only those attracting minimum stake become live futarchic decisions creating a permissionless attention market for capital formation]].
|
||||
|
||||
2. **Conditional token minting.** When a proposal is created, the conditional vault splits the project's base tokens into two variants: pass tokens (pMETA) and fail tokens (fMETA). Each holder's tokens are split equally into both conditional sets. This is the mechanism that creates "parallel universes" -- one where the proposal passes and one where it fails.
|
||||
|
||||
3. **Trading window.** Two parallel AMMs open: one for pass tokens, one for fail tokens. Traders express beliefs about whether the proposal should pass by trading in these conditional markets. If you believe the proposal will increase token value, you buy pass tokens and sell fail tokens. If you believe it will decrease value, you do the reverse. The trading happens over a 3-day decision window.
|
||||
|
||||
4. **TWAP settlement.** At the end of the decision window, a time-weighted average price (TWAP) is calculated for both markets. The lagging TWAP prevents last-minute manipulation by weighting prices over the full window rather than using the final spot price.
|
||||
|
||||
5. **Threshold comparison.** If the pass TWAP exceeds the fail TWAP by 1.5% or more, the proposal passes. If the fail TWAP exceeds the pass TWAP by 1.5%, the proposal fails. Ties default to the status quo (fail). The threshold prevents trivially close decisions from producing unstable outcomes.
|
||||
|
||||
6. **Settlement.** The winning conditional tokens become redeemable for the underlying base tokens. The losing conditional tokens become worthless. Holders who bet correctly profit. Holders who bet incorrectly lose. This is the skin-in-the-game mechanism that makes futarchy different from voting -- wrong beliefs cost money.
|
||||
|
||||
**The buyout mechanic is the critical innovation.** Since [[futarchy enables trustless joint ownership by forcing dissenters to be bought out through pass markets]], opponents of a proposal sell in the pass market, forcing supporters to buy their tokens at market price. This creates minority protection through economic mechanism rather than legal enforcement. If a treasury spending proposal would destroy value, rational holders sell pass tokens, driving down the pass TWAP, and the proposal fails. Extraction attempts become self-defeating because the market prices in the extraction.
|
||||
|
||||
**Why TWAP over spot price.** Spot prices can be manipulated by large orders placed just before settlement. TWAP distributes the price signal over the entire decision window, making manipulation exponentially more expensive -- you'd need to maintain a manipulated price for three full days, not just one moment. This connects to why [[futarchy is manipulation-resistant because attack attempts create profitable opportunities for defenders]]: sustained price distortion creates sustained arbitrage opportunities.
|
||||
|
||||
**On-chain program details (as of March 2026):**
|
||||
- Autocrat v0 (original): `meta3cxKzFBmWYgCVozmvCQAS3y9b3fGxrG9HkHL7Wi`
|
||||
- Conditional Vault v0: `vaU1tVLj8RFk7mNj1BxqgAsMKKaL8UvEUHvU3tdbZPe`
|
||||
- Autocrat v0.5: `auToUr3CQza3D4qreT6Std2MTomfzvrEeCC5qh7ivW5`
|
||||
- Futarchy v0.6: `FUTARELBfJfQ8RDGhg1wdhddq1odMAJUePHFuBYfUxKq`
|
||||
- TypeScript SDK: `@metadaoproject/futarchy-sdk` (FutarchyRPCClient with fetchAllDaos(), fetchProposals(), token balance queries)
|
||||
- GitHub: github.com/metaDAOproject/programs (AGPLv3 license)
|
||||
|
||||
**Conditional vault mechanics.** Each proposal creates two vaults -- a base vault (DAO token, e.g. META) and a quote vault (USDC). When tokens are deposited, holders receive two conditional token types: conditional-on-finalize (redeemable if proposal passes) and conditional-on-revert (redeemable if proposal fails). This is how "parallel universes" are implemented on an irreversible blockchain -- Solana cannot revert finalized transactions, so conditional tokens simulate reversal by splitting value into pass/fail variants that settle based on outcome. After settlement, the winning conditional tokens are redeemable 1:1 for underlying tokens; losing conditional tokens become worthless.
|
||||
|
||||
**TWAP oracle -- lagging price, not raw price.** MetaDAO uses a special "lagging price TWAP" where the number fed into the TWAP is not the raw market price but an approximation that can only move by a bounded amount per update. MetaDAO's specific configuration: first observation $500, max change per update $5. The recommendation for new DAOs is 1-5% of spot price per minute. This bounded movement means a flash crash or spike only moves the TWAP observation by the max step size per update, requiring sustained price distortion over the full 3-day window to manipulate the outcome. The cost of manipulation scales linearly with window length but the potential profit from a single manipulated proposal is bounded.
|
||||
|
||||
**Execution is immediate.** After the 3-day trading window, anyone can trigger finalization. Autocrat checks the TWAP comparison, and if pass exceeds fail by the threshold, it finalizes the pass market, reverts the fail market, and allows the embedded SVM instruction to execute immediately -- no additional timelock. This makes governance decisions fast-executing once market consensus is established.
|
||||
|
||||
**NAV floor protection.** At ICO launch, market cap equals Net Asset Value (the USDC in treasury). If price trades below NAV for a meaningful period, anyone can raise a proposal to return USDC to tokenholders -- creating a structural floor. This is why the ICOs are "unruggable": the treasury cannot be drained without market approval, and trading below NAV triggers rational proposals to return capital.
|
||||
|
||||
**Current parameters (may vary by project):**
|
||||
- Anti-spam stake: 500K tokens (project-specific)
|
||||
- Decision window: 3 days
|
||||
- Pass/fail threshold: 1.5% (some sources report 3%)
|
||||
- Settlement: Lagging TWAP
|
||||
- Default on ties: Fail (status quo)
|
||||
|
||||
**Limitations.** [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions]] -- when proposals are clearly good or clearly bad, few traders participate because the expected profit from trading in a consensus market is near zero. This is a structural feature, not a bug: contested decisions get more participation precisely because they're uncertain, which is when you most need information aggregation. But it does mean uncontested proposals can pass or fail with very thin markets, making the TWAP potentially noisy.
|
||||
|
||||
|
||||
### Additional Evidence (extend)
|
||||
*Source: [[2024-06-22-futardio-proposal-thailanddao-event-promotion-to-boost-deans-list-dao-engageme]] | Added: 2026-03-11 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
|
||||
Dean's List DAO proposal (DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM) ran on Autocrat v0.3 with standard 3-day TWAP settlement window. Proposal required 3% TWAP increase for passage. The implementation details confirm: proposal account DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM, DAO account 9TKh2yav4WpSNkFV2cLybrWZETBWZBkQ6WB6qV9Nt9dJ, proposer HfFi634cyurmVVDr9frwu4MjGLJzz9XbAJz981HdVaNz, completed 2024-06-25. This provides concrete on-chain evidence of Autocrat's 3-day TWAP mechanism in production use beyond MetaDAO's own governance, demonstrating the mechanism operates consistently across different DAOs on Solana.
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
- [[futarchy enables trustless joint ownership by forcing dissenters to be bought out through pass markets]] -- the economic mechanism for minority protection
|
||||
- [[futarchy is manipulation-resistant because attack attempts create profitable opportunities for defenders]] -- why TWAP settlement makes manipulation expensive
|
||||
- [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions]] -- the participation challenge in consensus scenarios
|
||||
- [[agents create dozens of proposals but only those attracting minimum stake become live futarchic decisions creating a permissionless attention market for capital formation]] -- the proposal filtering this mechanism enables
|
||||
- [[STAMP replaces SAFE plus token warrant by adding futarchy-governed treasury spending allowances that prevent the extraction problem that killed legacy ICOs]] -- the investment instrument that integrates with this governance mechanism
|
||||
- [[MetaDAOs Cayman SPC houses all launched projects as ring-fenced SegCos under a single entity with MetaDAO LLC as sole Director]] -- the legal entity governed by this mechanism
|
||||
|
||||
Topics:
|
||||
- [[internet finance and decision markets]]
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
description: Real-world futarchy markets on MetaDAO demonstrate manipulation resistance but suffer from low participation when decisions are uncontroversial, dominated by a small group of sophisticated traders
|
||||
type: claim
|
||||
domain: internet-finance
|
||||
created: 2026-02-16
|
||||
confidence: proven
|
||||
created: 2026-03-11
|
||||
confidence: likely
|
||||
source: "Governance - Meritocratic Voting + Futarchy"
|
||||
---
|
||||
|
||||
|
|
@ -17,24 +17,19 @@ In uncontested decisions -- where the community broadly agrees on the right outc
|
|||
|
||||
This evidence has direct implications for governance design. It suggests that [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles]] -- futarchy excels precisely where disagreement and manipulation risk are high, but it wastes its protective power on consensual decisions. The MetaDAO experience validates the mixed-mechanism thesis: use simpler mechanisms for uncontested decisions and reserve futarchy's complexity for decisions where its manipulation resistance actually matters. The participation challenge also highlights a design tension: the mechanism that is most resistant to manipulation is also the one that demands the most sophistication from participants.
|
||||
|
||||
### Additional Evidence
|
||||
|
||||
### Additional Evidence (challenge)
|
||||
*Source: [[2025-06-12-optimism-futarchy-v1-preliminary-findings]] | Added: 2026-03-11 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
**(extend) Optimism futarchy with play money:** Optimism's futarchy experiment achieved 5,898 total trades from 430 active forecasters (average 13.6 transactions per person) over 21 days, with 88.6% being first-time Optimism governance participants. This demonstrates that futarchy CAN attract substantial engagement when implemented at scale with proper incentives. However, this came at a cost: prediction accuracy was 8x overshoot on magnitude estimates, revealing a structural tradeoff. The key difference is that Optimism used play money (removing capital barriers), while MetaDAO uses real money. This suggests the limited-volume pattern is not a fundamental futarchy limitation but rather a consequence of real-money participation barriers. Play money enables permissionless participation but sacrifices calibration; real money provides calibration but creates capital barriers. The pattern is not "futarchy fails at scale" but "futarchy's participation-accuracy tradeoff is mediated by whether stakes are real or play."
|
||||
|
||||
Optimism's futarchy experiment achieved 5,898 total trades from 430 active forecasters (average 13.6 transactions per person) over 21 days, with 88.6% being first-time Optimism governance participants. This suggests futarchy CAN attract substantial engagement when implemented at scale with proper incentives, contradicting the limited-volume pattern observed in MetaDAO. Key differences: Optimism used play money (lower barrier to entry), had institutional backing (Uniswap Foundation co-sponsor), and involved grant selection (clearer stakes) rather than protocol governance decisions. The participation breadth (10 countries, 4 continents, 36 new users/day) suggests the limited-volume finding may be specific to MetaDAO's implementation or use case rather than a structural futarchy limitation.
|
||||
|
||||
|
||||
### Additional Evidence (confirm)
|
||||
*Source: [[2024-06-22-futardio-proposal-thailanddao-event-promotion-to-boost-deans-list-dao-engageme]] | Added: 2026-03-11 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
|
||||
Dean's List DAO ThailandDAO proposal (DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM, Autocrat v0.3) failed despite requiring only 3% TWAP increase against projected 1,523% FDV growth ($123,263 to $2M+). The proposal had clear favorable economics: $15K budget, 5-7M $DEAN allocation, concrete deliverables (travel for top 5, events for top 50), and established event timeline (Sept 25 - Oct 25, 2024). Yet it failed to attract sufficient trading volume over the 3-day window (completed 2024-06-25). This confirms the pattern where obviously favorable proposals fail to generate trading activity because there's no edge to capture — rational traders don't engage when the outcome seems predetermined, creating a liquidity death spiral that prevents the mechanism from functioning.
|
||||
**(confirm) Dean's List DAO minimum-viable-participant failure:** Dean's List DAO ThailandDAO proposal (DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM, Autocrat v0.3) failed despite requiring only 3% TWAP increase against projected 1,523% FDV growth ($123,263 to $2M+). The proposal had clear favorable economics: $15K budget, 5-7M $DEAN allocation, concrete deliverables (travel for top 5, events for top 50), and established event timeline (Sept 25 - Oct 25, 2024). Yet it failed to attract sufficient trading volume over the 3-day window (completed 2024-06-25). This confirms a distinct failure mode from MetaDAO's limited-volume pattern: at $123K FDV, the minimum viable participant count for meaningful price discovery exceeds the actual active trader base. The market likely correctly assessed the proposal's speculative tokenomics as unsound rather than failing to engage with favorable economics. This is scale-limited participation failure, not consensus-driven low-volume failure.
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
- [[futarchy is manipulation-resistant because attack attempts create profitable opportunities for defenders]] -- MetaDAO confirms the manipulation resistance claim empirically
|
||||
- [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles]] -- MetaDAO evidence supports reserving futarchy for contested, high-stakes decisions
|
||||
- [[play-money-futarchy-attracts-participation-but-produces-uncalibrated-predictions-because-absence-of-downside-risk-removes-selection-pressure]] -- explains the participation-accuracy tradeoff in Optimism data
|
||||
- [[trial and error is the only coordination strategy humanity has ever used]] -- MetaDAO is a live experiment in deliberate governance design, breaking the trial-and-error pattern
|
||||
|
||||
Topics:
|
||||
- [[livingip overview]]
|
||||
- [[livingip overview]]
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ domain: internet-finance
|
|||
description: "Dean's List DAO structured event rewards as steep power-law distribution (top 5 get $10K travel, top 50 get event access) revealing preference for concentrated incentives over broad participation"
|
||||
confidence: experimental
|
||||
source: "Dean's List DAO ThailandDAO proposal, futardio DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM"
|
||||
created: 2024-06-22
|
||||
created: 2026-03-11
|
||||
---
|
||||
|
||||
# DAO event incentive proposals reveal governance power concentration through leaderboard mechanics
|
||||
|
|
@ -22,13 +22,16 @@ The proposal explicitly designed a real-time leaderboard showing governance powe
|
|||
|
||||
The proposal also included delegation mechanics where "delegation is permitted, transferring governance power to the delegatee, not the original holder" — acknowledging that governance power can be rented or consolidated beyond direct token holdings. This further enables concentration since top performers can accumulate delegated power from others.
|
||||
|
||||
**Mechanism design implication:** Whether this concentration is optimal for DAO health is separate from the revealed preference. The proposal designers believed steep reward gradients would maximize engagement, suggesting they view governance power concentration as a feature rather than a bug of leaderboard-based incentive design.
|
||||
**Mechanism design implication:** The proposal designed incentives that *prefer* concentrated power accumulation over distributed participation. Whether this concentration is optimal for DAO health is separate from the revealed preference. The proposal designers believed steep reward gradients would maximize engagement, suggesting they view governance power concentration as a feature rather than a bug of leaderboard-based incentive design.
|
||||
|
||||
This pattern connects to broader franchise engagement ladder dynamics where tiered rewards (event access → travel → governance power) create a progression that concentrates benefits at the top. The leaderboard mechanics are a domain-specific instantiation of this pattern in DAO governance.
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
- [[token voting DAOs offer no minority protection beyond majority goodwill.md]]
|
||||
- [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles.md]]
|
||||
- [[token voting DAOs offer no minority protection beyond majority goodwill.md]] — the concentration this incentive structure enables has no built-in minority safeguards
|
||||
- [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles.md]] — suggests whether concentrated governance is appropriate depends on decision type
|
||||
- [[the franchise engagement ladder from content to co-ownership is a domain-general pattern]] — leaderboard tiering is a specific instance of engagement ladder design
|
||||
|
||||
Topics:
|
||||
- [[domains/internet-finance/_map]]
|
||||
|
|
|
|||
|
|
@ -1,54 +0,0 @@
|
|||
---
|
||||
description: Implementation barriers include high-priced tokens deterring traders, proposal difficulty, and capital needs for market liquidity
|
||||
type: analysis
|
||||
domain: internet-finance
|
||||
created: 2026-02-16
|
||||
source: "Rio Futarchy Experiment"
|
||||
confidence: experimental
|
||||
tradition: "futarchy, behavioral economics, market microstructure"
|
||||
---
|
||||
|
||||
Futarchy faces three concrete adoption barriers that compound to limit participation: token price psychology, proposal creation difficulty, and liquidity requirements. These aren't theoretical concerns but observed friction in MetaDAO's implementation.
|
||||
|
||||
Token price psychology creates unexpected barriers to participation. META at $750 with 20K supply is designed for governance but psychologically repels the traders and arbitrageurs that futarchy depends on for price discovery. In an industry built on speculation and momentum, where participants want to buy millions of tokens and watch numbers rise, high per-token prices create psychological barriers to entry. This matters because futarchy's value proposition depends on traders turning information into accurate price signals. When the participants most sensitive to liquidity and slippage can't build meaningful positions or exit efficiently, governance gets weaker signals, conditional markets become less efficient, and price discovery breaks down.
|
||||
|
||||
Proposal creation compounds this friction through genuine difficulty. Creating futarchic proposals requires hours of documentation, mapping complex implications, anticipating market reactions, and meeting technical requirements without templates to follow. The high effort with uncertain outcomes creates exactly the expected result: good ideas die in drafts, experiments don't happen, and proposals slow to a crawl. This is why [[futarchy proposal frequency must be controlled through auction mechanisms to prevent attention overload|proposal auction mechanisms]] matter -- they can channel the best proposals forward by rewarding sponsors when proposals pass. This connects to how [[knowledge scaling bottlenecks kill revolutionary ideas before they reach critical mass]] - even when the governance mechanism is superior, if using it is too hard, innovation stalls.
|
||||
|
||||
Liquidity requirements create capital barriers that exclude smaller participants. Each proposal needs sufficient market depth for meaningful trading, which requires capital commitments before knowing if the proposal has merit. This favors well-capitalized players and creates a chicken-and-egg problem where low liquidity deters traders, which reduces price discovery quality, which makes governance less effective.
|
||||
|
||||
The Hurupay raise on MetaDAO (Feb 2026) provides direct evidence of these compounding frictions. The project attempted a $3-6M raise, attracted $2M in nominal commitments, but only ~$900k materialized as real demand. The commitment-to-real-demand gap reveals a new dimension of the liquidity barrier: participants commit to futarchy-governed raises at a higher rate than they actually fund them, suggesting that proposal complexity and capital lockup requirements create a "commitment theater" where expressed interest exceeds genuine willingness to deploy capital under futarchic conditions.
|
||||
|
||||
**Futard.io first-mover hesitancy (Mar 2026).** Pine Analytics observed that on futard.io's permissionless launches, "people are reluctant to be the first to put money into these raises" — deposits follow momentum once someone else commits first. This is a new friction dimension beyond the three already identified: even when proposal creation is permissionless and token prices are accessible, the coordination problem of who commits first remains. Only 2 of 34 ICOs (5.9%) reached funding thresholds in the first 2 days. The pattern suggests that permissionless launch infrastructure solves the supply-side friction (anyone can create) but not the demand-side friction (who goes first). This may be solvable through seeding mechanisms, commitment bonuses, or reputation systems — but it's a real constraint on permissionless futarchy adoption at scale.
|
||||
|
||||
Yet [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions]] suggests these barriers might be solvable through better tooling, token splits, and proposal templates rather than fundamental mechanism changes. The observation that [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles]] implies futarchy could focus on high-stakes decisions where the benefits justify the complexity.
|
||||
|
||||
|
||||
### Additional Evidence (extend)
|
||||
*Source: [[2026-01-01-futardio-launch-mycorealms]] | Added: 2026-03-11 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
|
||||
MycoRealms implementation reveals operational friction points: monthly $10,000 allowance creates baseline operations budget, but any expenditure beyond this requires futarchy proposal and market approval. First post-raise proposal will be $50,000 CAPEX withdrawal — a large binary decision that may face liquidity challenges in decision markets. Team must balance operational needs (construction timelines, vendor commitments, seasonal agricultural constraints) against market approval uncertainty. This creates tension between real-world operational requirements (fixed deadlines, vendor deposits, material procurement) and futarchy's market-based approval process, suggesting futarchy may face adoption friction in domains with hard operational deadlines.
|
||||
|
||||
|
||||
### Additional Evidence (extend)
|
||||
*Source: [[2025-06-12-optimism-futarchy-v1-preliminary-findings]] | Added: 2026-03-11 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
|
||||
Optimism futarchy achieved 430 active forecasters and 88.6% first-time governance participants by using play money, demonstrating that removing capital requirements can dramatically lower participation barriers. However, this came at the cost of prediction accuracy (8x overshoot on magnitude estimates), revealing a new friction: the play-money vs real-money tradeoff. Play money enables permissionless participation but sacrifices calibration; real money provides calibration but creates regulatory and capital barriers. This suggests futarchy adoption faces a structural dilemma between accessibility and accuracy that liquidity requirements alone don't capture. The tradeoff is not merely about quantity of liquidity but the fundamental difference between incentive structures that attract participants vs incentive structures that produce accurate predictions.
|
||||
|
||||
|
||||
### Additional Evidence (confirm)
|
||||
*Source: [[2024-06-22-futardio-proposal-thailanddao-event-promotion-to-boost-deans-list-dao-engageme]] | Added: 2026-03-11 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
|
||||
Dean's List DAO proposal demonstrates all three friction sources simultaneously: (1) Token price psychology — proposal projected $DEAN FDV from $123K to $2M+ based on locking mechanics and supply reduction, requiring traders to believe in 15x appreciation; (2) Proposal complexity — multi-layered structure with leaderboard mechanics, delegation rules, payment-in-token options at 10% discount, tiered rewards (top 5 vs top 50), and conditional perks tied to governance power; (3) Liquidity requirements — 3-day trading window on a token with $123K FDV and limited circulating supply due to locking incentives. The proposal failed despite favorable economics (3% threshold vs 1500%+ projected growth), suggesting these frictions compound rather than operate independently. The failure occurred on Autocrat v0.3 (proposal DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM, completed 2024-06-25).
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
- [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions]] -- evidence of liquidity friction in practice
|
||||
- [[knowledge scaling bottlenecks kill revolutionary ideas before they reach critical mass]] -- similar adoption barrier through complexity
|
||||
- [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles]] -- suggests focusing futarchy where benefits exceed costs
|
||||
- [[futarchy proposal frequency must be controlled through auction mechanisms to prevent attention overload]] -- proposal auction mechanisms could reduce the proposal creation barrier by rewarding good proposals
|
||||
- [[futarchy price differences should be evaluated statistically over decision periods not as point estimates]] -- statistical evaluation addresses the thin-market problem that liquidity barriers create
|
||||
- [[speculative markets aggregate information through incentive and selection effects not wisdom of crowds]] -- even thin markets can aggregate information if specialist arbitrageurs participate
|
||||
|
||||
Topics:
|
||||
- [[livingip overview]]
|
||||
|
|
@ -1,16 +1,16 @@
|
|||
---
|
||||
type: claim
|
||||
domain: internet-finance
|
||||
description: "Dean's List DAO proposal failed despite 3% TWAP threshold being trivial relative to projected 1500% FDV increase, suggesting futarchy adoption barriers operate above mechanism design"
|
||||
description: "Dean's List DAO proposal failed despite 3% TWAP threshold being trivial relative to projected 1500% FDV increase; market likely correctly rejected speculative tokenomics rather than failing to engage with favorable economics"
|
||||
confidence: experimental
|
||||
source: "Futardio proposal DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM, Dean's List DAO ThailandDAO event promotion"
|
||||
created: 2024-06-22
|
||||
created: 2026-03-11
|
||||
depends_on: ["MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions.md", "futarchy adoption faces friction from token price psychology proposal complexity and liquidity requirements.md"]
|
||||
---
|
||||
|
||||
# Futarchy proposal failure despite favorable economics reveals adoption friction beyond mechanism design
|
||||
|
||||
The Dean's List DAO ThailandDAO event proposal failed despite having economics that should have made passage trivial under rational market conditions. The proposal required only a 3% TWAP increase ($3,698 absolute) over 3 days while projecting FDV growth from $123,263 to over $2,000,000 (1,523% increase). The proposal budget was $15K with token allocation of 5-7 million $DEAN, meaning even conservative execution would have cleared the 3% threshold by orders of magnitude.
|
||||
The Dean's List DAO ThailandDAO event proposal failed despite having economics that appeared favorable under rational market conditions. The proposal required only a 3% TWAP increase ($3,698 absolute) over 3 days while projecting FDV growth from $123,263 to over $2,000,000 (1,523% increase). The proposal budget was $15K with token allocation of 5-7 million $DEAN, meaning even conservative execution should have cleared the 3% threshold by orders of magnitude.
|
||||
|
||||
**Proposal specifics:**
|
||||
- Proposal account: `DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM`
|
||||
|
|
@ -20,23 +20,26 @@ The Dean's List DAO ThailandDAO event proposal failed despite having economics t
|
|||
- Status: Failed
|
||||
- Deliverables: Travel for top 5 governance power holders, events for top 50, payment option in $DEAN at 10% discount
|
||||
|
||||
**The paradox:** This failure pattern suggests futarchy adoption barriers operate at a layer above mechanism design. The proposal had:
|
||||
- Clear economic favorability (3% threshold vs 1500%+ projected growth)
|
||||
- Defined budget and timeline
|
||||
- Concrete deliverables (travel for top 5, events for top 50)
|
||||
- Established event (ThailandDAO Sept 25 - Oct 25, 2024)
|
||||
- Three-day trading window for price discovery
|
||||
**The critical reinterpretation:** The failure likely reflects correct market pricing rather than adoption friction. The proposal's financial model assumed 15x token appreciation based on supply reduction through locking mechanics and demand from event incentives. This is circular tokenomics: the proposal funds itself through the price appreciation it claims to cause. Sophisticated traders would rationally discount this projection because:
|
||||
|
||||
Yet it failed to attract sufficient trading volume or pass-market support. This indicates that friction from token price psychology, proposal complexity, and liquidity requirements operates even when the economic case is overwhelming. The failure mode is not "markets rejected a bad proposal" but "markets failed to engage with a proposal that should have been obviously favorable."
|
||||
1. **Self-referential causality.** The proposal's pass condition depends on price appreciation that the proposal itself must generate. This creates a coordination problem: traders who believe the projection buy tokens (raising price), validating their belief, but this is not independent market validation—it's self-fulfilling prophecy, not information aggregation.
|
||||
|
||||
This is consistent with the pattern that when a proposal is clearly favorable, there's no trading edge, so volume collapses. But without volume, the mechanism cannot function as intended. The proposal failed not because markets thought it was bad, but because markets didn't engage at all—a liquidity death spiral that prevents futarchy from functioning even when conditions appear ideal.
|
||||
2. **Micro-cap scale problem.** At $123K FDV with limited circulating supply (due to locking incentives), the minimum viable participant count for meaningful price discovery is higher than the actual active trader base. No amount of favorable economics fixes this—it's a scale problem. Even if the projection were correct, there were insufficient independent traders to establish a signal.
|
||||
|
||||
3. **Speculative tokenomics.** The 15x appreciation projection rests on locking mechanics compressing supply while event incentives drive demand. This is the same reasoning that failed in dozens of other micro-cap DAOs. Market skepticism of this model is rational, not friction.
|
||||
|
||||
**The paradox dissolves:** This failure pattern is not evidence that "futarchy adoption barriers operate above mechanism design." It's evidence that futarchy is functioning correctly by rejecting a proposal with speculative economics. The market did not fail to engage with favorable economics; it correctly assessed the economics as unfavorable and declined to trade.
|
||||
|
||||
This is categorically different from the [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions]] pattern, where consensus proposals fail to attract trading because there's no information edge. Here, there *is* disagreement—the market disagrees with the proposal's financial model. The failure is not a liquidity death spiral but correct rejection of wishful thinking.
|
||||
|
||||
**Alternative interpretation:** If the proposal's projections were actually sound, the failure would indicate a minimum-viable-participant-count barrier rather than adoption friction. At $123K FDV, even a single informed trader with $10K capital could move the market meaningfully. The absence of such traders suggests either (a) the market correctly assessed the proposal as unsound, or (b) the DAO was simply too small to attract any traders at all. Both are scale problems, not mechanism design problems.
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
- [[futarchy adoption faces friction from token price psychology proposal complexity and liquidity requirements.md]]
|
||||
- [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions.md]]
|
||||
- [[MetaDAOs Autocrat program implements futarchy through conditional token markets where proposals create parallel pass and fail universes settled by time-weighted average price over a three-day window.md]]
|
||||
- [[futarchy adoption faces friction from token price psychology proposal complexity and liquidity requirements.md]] — documents the three friction sources, but this case may be scale-limited rather than friction-limited
|
||||
- [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions.md]] — distinguishes between consensus failures (no edge) and rejection failures (market disagrees)
|
||||
- [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles.md]] — suggests futarchy may be overkill for micro-cap DAOs
|
||||
|
||||
Topics:
|
||||
- [[domains/internet-finance/_map]]
|
||||
|
|
|
|||
Loading…
Reference in a new issue