rio: extract claims from 2024-06-22-futardio-proposal-thailanddao-event-promotion-to-boost-deans-list-dao-engageme #566

Closed
rio wants to merge 3 commits from extract/2024-06-22-futardio-proposal-thailanddao-event-promotion-to-boost-deans-list-dao-engageme into main
8 changed files with 173 additions and 125 deletions

View file

@ -1,67 +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.
---
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]]

View file

@ -1,10 +1,10 @@
---
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
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"
confidence: likely
source: "Governance - Meritocratic Voting + Futarchy"
created: 2026-02-16
---
# MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions
@ -13,22 +13,23 @@ MetaDAO provides the most significant real-world test of futarchy governance to
In uncontested decisions -- where the community broadly agrees on the right outcome -- trading volume drops to minimal levels. Without genuine disagreement, there are few natural counterparties. Trading these markets in any size becomes a negative expected value proposition because there is no one on the other side to trade against profitably. The system tends to be dominated by a small group of sophisticated traders who actively monitor for manipulation attempts, with broader participation remaining low.
**March 2026 comparative data (@01Resolved forensics):** The Ranger liquidation decision market — a highly contested proposal — generated $119K volume from 33 unique traders with 92.41% pass alignment. Solomon's treasury subcommittee proposal (DP-00001) — an uncontested procedural decision — generated only $5.79K volume at ~50% pass. The volume differential (~20x) between contested and uncontested proposals confirms the pattern: futarchy markets are efficient information aggregators when there's genuine disagreement, but offer little incentive for participation when outcomes are obvious. This is a feature, not a bug — capital is allocated to decisions where information matters, not wasted on consensus.
**March 2026 comparative data:** The Ranger liquidation decision market — a highly contested proposal — generated $119K volume from 33 unique traders with 92.41% pass alignment. Solomon's treasury subcommittee proposal (DP-00001) — an uncontested procedural decision — generated only $5.79K volume at ~50% pass. The volume differential (~20x) between contested and uncontested proposals confirms the pattern: futarchy markets are efficient information aggregators when there's genuine disagreement, but offer little incentive for participation when outcomes are obvious. This is a feature, not a bug — capital is allocated to decisions where information matters, not wasted on consensus.
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." See [[play-money-futarchy-attracts-participation-but-produces-uncalibrated-predictions-because-absence-of-downside-risk-removes-selection-pressure.md]] for detailed analysis.
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.
**(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 governance power holders, 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 reveals 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. This is scale-limited participation failure, not consensus-driven low-volume failure. The market likely correctly assessed the proposal's speculative tokenomics as unsound rather than failing to engage with favorable economics. See [[futarchy-proposal-failure-despite-favorable-economics-reveals-adoption-friction-beyond-mechanism-design.md]] for detailed analysis of why the market rejection was rational.
---
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
- [[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
- [[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
Topics:
- [[livingip overview]]
- [[domains/internet-finance/_map]]
- [[core/mechanisms/_map]]

View file

@ -0,0 +1,37 @@
---
type: claim
domain: internet-finance
description: "Dean's List DAO ThailandDAO proposal designed steep power-law reward distribution (top 5 receive $10K travel, top 50 receive event access) revealing preference for concentrated incentives over broad participation"
confidence: experimental
source: "Dean's List DAO ThailandDAO proposal, futardio DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM"
created: 2026-03-11
---
# DAO event incentive proposals reveal governance power concentration through leaderboard mechanics
The Dean's List DAO ThailandDAO proposal structured incentives as a steep power-law distribution: top 5 governance power holders receive $10K in travel and accommodation coverage (12 days at DL DAO Villa during Sept 25 - Oct 25, 2024 event), while positions 6-50 receive only event invitations and potential airdrops. This creates a 50:1 participant ratio with heavily concentrated rewards ($10K for 5 people vs $5K for 45 people = 2:1 aggregate spending ratio, or approximately 100:1 per-person allocation).
**Reward structure:**
- **Top 5:** Airplane fares + 12-day accommodation at ThailandDAO villa
- **Top 50:** IRL event invitations, parties, partner airdrops
- **All contributors:** Option to receive payments in $DEAN at 10% discount for 3 months
The proposal explicitly designed a real-time leaderboard showing governance power rankings, with rewards tied to position. The mechanism assumes governance power concentration is both acceptable and useful for driving engagement. The proposal states: "Given the low circulating supply of the $DEAN token and the mechanics of locking tokens for multiple years to increase governance power and climb the leaderboard ranks, we project a significant increase in the Fully Diluted Valuation."
**Revealed preference for concentration:** This structure reveals an implicit theory that leaderboard competition for scarce high-value rewards (top 5 positions) drives more governance power accumulation than broad-based participation incentives. The 2:1 aggregate spending ratio (top 5 vs top 50) suggests proposal designers believed concentrated rewards are more effective than distributed ones at maximizing engagement.
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:** The proposal designed incentives that *prefer* concentrated power accumulation over distributed participation. Whether that 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]] — 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
Topics:
- [[domains/internet-finance/_map]]
- [[core/mechanisms/_map]]

View file

@ -1,48 +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.
---
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]]

View file

@ -0,0 +1,47 @@
---
type: claim
domain: internet-finance
description: "Dean's List DAO proposal failed because market correctly rejected circular self-funding tokenomics, not due to adoption friction; demonstrates futarchy functioning as intended by filtering speculative proposals"
confidence: experimental
source: "Futardio proposal DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM, Dean's List DAO ThailandDAO event promotion"
created: 2026-03-11
depends_on: ["MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions.md"]
---
# Futarchy proposal failure reflects correct market rejection of circular tokenomics, not adoption friction
The Dean's List DAO ThailandDAO event proposal failed despite having a 3% TWAP threshold that appeared trivial relative to projected 1,523% FDV increase ($123,263 to $2M+). The proposal required only $3,698 absolute price movement over 3 days, while projecting 15x token appreciation. This failure is not evidence of adoption friction but rather evidence that futarchy is functioning correctly by rejecting a proposal with circular self-funding logic.
**Proposal specifics:**
- Proposal account: `DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM`
- DAO account: `9TKh2yav4WpSNkFV2cLybrWZETBWZBkQ6WB6qV9Nt9dJ`
- Autocrat version: 0.3
- Trading period: 3 days (completed 2024-06-25)
- Status: Failed
- Budget: $15K ($10K travel for top 5, $5K events for top 50)
- Token allocation: 5-7M $DEAN
- Deliverables: Travel for top 5 governance power holders, events for top 50, payment option in $DEAN at 10% discount
**Why the market correctly rejected this proposal:**
The proposal's financial model was self-referential: it projected 15x token appreciation based on supply reduction through locking mechanics and demand from event incentives. The pass condition depended on price appreciation that the proposal itself would need to generate. This creates a coordination problem that rational traders should discount:
1. **Self-fulfilling prophecy problem.** A trader who believes the projection buys tokens, raising the price and validating their belief. But this is not independent market validation—it's circular causality. The proposal funds itself through the price signal it claims to cause. Sophisticated traders recognize this as wishful thinking rather than information aggregation.
2. **Micro-cap scale barrier.** At $123K FDV with limited circulating supply, the minimum viable participant count for meaningful price discovery exceeds the actual active trader base. Even a single informed trader with $10K capital could move the market significantly. The absence of such traders suggests the market correctly assessed the proposal as unsound, not that futarchy failed to engage with favorable economics.
3. **Speculative tokenomics.** The 15x appreciation projection rests on locking mechanics compressing supply while event incentives drive demand. This is identical reasoning that failed in dozens of other micro-cap DAOs. Market skepticism of this model is rational, not friction.
**The paradox dissolves:** This failure 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 circular tokenomics.
---
Relevant Notes:
- [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles.md]] — suggests futarchy may be overkill for micro-cap DAOs where scale barriers dominate
- [[futarchy excels at relative selection but fails at absolute prediction because ordinal ranking works while cardinal estimation requires calibration.md]] — the 15x projection is cardinal estimation, which futarchy is known to fail at
Topics:
- [[domains/internet-finance/_map]]
- [[core/mechanisms/_map]]

View file

@ -0,0 +1,55 @@
---
type: entity
entity_type: decision_market
name: "Dean's List: ThailandDAO Event Promotion to Boost Governance Engagement"
domain: internet-finance
status: failed
parent_entity: "[[deans-list]]"
platform: "futardio"
proposer: "HfFi634cyurmVVDr9frwu4MjGLJzz9XbAJz981HdVaNz"
proposal_url: "https://www.futard.io/proposal/DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM"
proposal_account: "DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM"
dao_account: "9TKh2yav4WpSNkFV2cLybrWZETBWZBkQ6WB6qV9Nt9dJ"
autocrat_version: "0.3"
proposal_date: 2024-06-22
resolution_date: 2024-06-25
category: "grants"
key_metrics:
budget: "$15,000"
token_allocation: "5-7M $DEAN"
twap_threshold: "3%"
current_fdv: "$123,263"
projected_fdv: "$2,000,000+"
trading_period: "3 days"
summary: "Proposal to fund ThailandDAO event attendance for top governance power holders, offering travel and accommodation for top 5 and event access for top 50, with payment-in-token option at 10% discount"
tracked_by: rio
created: 2026-03-11
---
# Dean's List: ThailandDAO Event Promotion to Boost Governance Engagement
## Summary
Proposal to create a promotional campaign around ThailandDAO event (Sept 25 - Oct 25, 2024, Koh Samui) offering exclusive perks to top Dean's List DAO governance power holders. Top 5 receive airplane fares and 12-day accommodation ($10K), top 50 receive event invitations and partner airdrops ($5K). Contributors could opt to receive payments in $DEAN at 10% discount for 3 months. Total budget $15K with 5-7M $DEAN token allocation.
## Market Data
- **Outcome:** Failed
- **Proposer:** HfFi634cyurmVVDr9frwu4MjGLJzz9XbAJz981HdVaNz
- **TWAP Threshold:** 3% increase required
- **Trading Period:** 3 days (2024-06-22 to 2024-06-25)
- **Autocrat Version:** 0.3
## Significance
This proposal failed despite having economics that should have made passage trivial — requiring only 3% TWAP increase while projecting 1,523% FDV growth ($123K to $2M+). The failure reveals futarchy adoption friction beyond mechanism design: when proposals are obviously favorable, trading volume collapses because there's no edge to capture. The proposal also demonstrates DAO event incentive design through steep power-law distribution (top 5 get $10K, positions 6-50 get event access only) and leaderboard mechanics to drive governance power accumulation.
The proposal structure included:
- Real-time governance power leaderboard
- Tiered rewards (50:1 participant ratio with concentrated top rewards)
- Delegation mechanics (governance power transfers to delegatee)
- Payment-in-token option at 10% discount
- Token locking incentives to reduce circulating supply
## Relationship to KB
- [[deans-list]] — governance decision
- [[futarchy adoption faces friction from token price psychology proposal complexity and liquidity requirements]] — confirmed by failure despite favorable economics
- [[MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions]] — confirmed by low engagement on obviously favorable proposal
- [[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]] — implementation evidence

View file

@ -43,3 +43,8 @@ Relevant Entities:
Topics:
- [[internet finance and decision markets]]
## Timeline
- **2024-06-22** — [[deans-list-thailanddao-event-promotion]] proposed: $15K budget for ThailandDAO event attendance (top 5 travel, top 50 events), requiring 3% TWAP increase against $123K FDV
- **2024-06-25** — [[deans-list-thailanddao-event-promotion]] failed despite favorable economics (3% threshold vs projected 1,523% FDV growth), revealing futarchy liquidity challenges on uncontested proposals

View file

@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM
date: 2024-06-22
domain: internet-finance
format: data
status: unprocessed
status: processed
tags: [futardio, metadao, futarchy, solana, governance]
event_type: proposal
processed_by: rio
@ -14,6 +14,12 @@ processed_date: 2024-06-22
enrichments_applied: ["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", "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"]
extraction_model: "anthropic/claude-sonnet-4.5"
extraction_notes: "Extracted 2 claims about futarchy market failure modes and DAO incentive mechanisms. Both claims are experimental/speculative due to single-case evidence. Proposal failed despite seemingly favorable economics, which itself is evidence about futarchy adoption barriers. Enriched 3 existing claims with concrete implementation data and failure case confirmation."
processed_by: rio
processed_date: 2026-03-11
claims_extracted: ["futarchy-proposal-failure-despite-favorable-economics-reveals-adoption-friction-beyond-mechanism-design.md", "dao-event-incentive-proposals-reveal-governance-power-concentration-through-leaderboard-mechanics.md"]
enrichments_applied: ["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", "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"]
extraction_model: "anthropic/claude-sonnet-4.5"
extraction_notes: "Extracted 2 claims about futarchy market failure modes and DAO incentive mechanisms. Both claims are experimental confidence due to single-case evidence. Proposal failed despite seemingly favorable economics (3% threshold vs 1500%+ projected growth), which itself is evidence about futarchy adoption barriers. Created decision_market entity for the proposal and updated Dean's List timeline. Enriched 3 existing claims with concrete implementation data and failure case confirmation."
---
## Proposal Details
@ -182,3 +188,15 @@ This proposal to create a promotional event at ThailandDAO, incentivizing govern
- Proposal completed: 2024-06-25
- Required TWAP increase: 3% ($3,698 absolute)
- Trading period: 3 days
## Key Facts
- Dean's List DAO FDV: $123,263 (2024-06-22)
- ThailandDAO event: Sept 25 - Oct 25, 2024, Koh Samui Thailand
- Proposal budget: $15K ($10K top 5 travel, $5K top 50 events)
- Token allocation: 5-7M $DEAN
- TWAP threshold: 3% increase over 3 days
- Projected FDV: $2M+ (1,523% increase)
- Autocrat version: 0.3
- Proposal account: DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM
- DAO account: 9TKh2yav4WpSNkFV2cLybrWZETBWZBkQ6WB6qV9Nt9dJ