Compare commits
1 commit
935832dae4
...
b9fa48b671
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b9fa48b671 |
8 changed files with 129 additions and 38 deletions
|
|
@ -53,6 +53,12 @@ Autocrat is MetaDAO's core governance program on Solana -- the on-chain implemen
|
|||
|
||||
**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-01-24-futardio-proposal-develop-amm-program-for-futarchy]] | Added: 2026-03-12 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
|
||||
(Extend with implementation challenges and migration path) The CLOB implementation has documented manipulation vulnerabilities: (1) "someone with 1 $META can push the midpoint towards the current best bid/ask" when spreads are wide, and (2) "VWAP can be manipulated by wash trading." The minimum order size of 1 META serves as a spam filter against midpoint manipulation. Additionally, pass/fail market pairs cost 3.75 SOL in state rent per pair, which cannot currently be recouped, totaling 135-225 SOL annually at MetaDAO's 3-5 proposals/month volume. MetaDAO proposal CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1PG (passed 2024-01-29) approved migration to AMM architecture to address both manipulation vectors and state rent costs. Implementation timeline: 3 weeks for program development + 1 week review, with budget of 400 META on proposal passage and 800 META on completed migration. Deployment planned before asset migration to allow mainnet testing.
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@ This evidence has direct implications for governance design. It suggests that [[
|
|||
|
||||
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 (extend)
|
||||
*Source: [[2024-01-24-futardio-proposal-develop-amm-program-for-futarchy]] | Added: 2026-03-12 | Extractor: anthropic/claude-sonnet-4.5*
|
||||
|
||||
(Extend with root cause analysis) The lack of liquidity in CLOB markets is attributed to pricing uncertainty: "Estimating a fair price for the future value of MetaDao under pass/fail conditions is difficult, and most reasonable estimates will have a wide range. This uncertainty discourages people from risking their funds with limit orders near the midpoint price, and has the effect of reducing liquidity (and trading)." This was cited as "the main reason for switching to AMMs" in the January 2024 proposal. The proposed AMM solution attempts to address this by incentivizing liquidity provision through high fees (3-5%) and allowing granular trading at any size (removing the 1 META minimum order restriction), with the expectation that liquidity would bootstrap as proposers lock initial liquidity and set starting prices.
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
|
|
|
|||
|
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
type: claim
|
||||
domain: internet-finance
|
||||
description: "AMMs with high fees and liquidity-weighted time-average pricing reduce wash trading and midpoint manipulation risks in CLOB-based futarchy"
|
||||
confidence: experimental
|
||||
source: "joebuild/MetaDAO, Futardio AMM Proposal, 2024-01-24"
|
||||
created: 2024-03-11
|
||||
---
|
||||
|
||||
# AMM with liquidity-weighted price over time reduces futarchy CLOB manipulation by making wash trading economically prohibitive
|
||||
|
||||
Central Limit Order Books in futarchy markets face two documented manipulation vectors: (1) pushing midpoint toward best bid/ask with minimal capital when spreads are wide ("someone with 1 $META can push the midpoint"), and (2) wash trading to manipulate VWAP. MetaDAO's January 2024 proposal CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1PG proposes migrating to an AMM architecture using liquidity-weighted price over time as the settlement metric, combined with 3-5% swap fees.
|
||||
|
||||
The mechanism works through two channels: First, the liquidity-weighting means price movements when liquidity is thin have less settlement impact than movements when liquidity is deep, creating a natural defense against low-capital manipulation. Second, the 3-5% fee structure makes wash trading economically irrational—the cost of moving price through repeated swaps exceeds any governance benefit from price manipulation. As the proposal states: "By setting a high fee (3-5%) we can both: encourage LPs, and aggressively discourage wash-trading and manipulation."
|
||||
|
||||
The CLOB minimum order size of 1 META currently serves as a spam filter against midpoint manipulation. The AMM removes this restriction ("META could be traded at any desired granularity"), but the fee structure replaces it with economic disincentives rather than technical ones.
|
||||
|
||||
## Evidence
|
||||
- MetaDAO proposal CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1PG identified CLOB manipulation vectors: "someone with 1 $META can push the midpoint towards the current best bid/ask" and "VWAP can be manipulated by wash trading"
|
||||
- Proposed solution: "liquidity-weighted price over time. The more liquidity that is on the books, the more weight the current price of the pass or fail market is given"
|
||||
- Fee mechanism: "By setting a high fee (3-5%) we can both: encourage LPs, and aggressively discourage wash-trading and manipulation"
|
||||
- Proposal passed 2024-01-29 but implementation status and real-world effectiveness remain unproven
|
||||
|
||||
## Limitations
|
||||
- Single source (one DAO proposal) with no independent validation or production testing
|
||||
- High fees may reduce trading activity and price discovery efficiency, creating new failure modes
|
||||
- Liquidity bootstrapping remains uncertain: "adoption within the DAO is not a certainty"
|
||||
- No comparison to alternative manipulation-resistant designs (e.g., batch auctions, frequent batch auctions)
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
- [[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]]
|
||||
- [[optimal governance requires mixing mechanisms because different decisions have different manipulation risk profiles.md]]
|
||||
- [[domains/internet-finance/_map]]
|
||||
|
||||
Topics:
|
||||
- [[core/mechanisms/_map]]
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
type: claim
|
||||
domain: internet-finance
|
||||
description: "At 3-5 proposals per month, CLOB-based futarchy markets cost MetaDAO 135-225 SOL annually in non-recoverable state rent"
|
||||
confidence: likely
|
||||
source: "joebuild/MetaDAO, Futardio AMM Proposal, 2024-01-24"
|
||||
created: 2024-03-11
|
||||
---
|
||||
|
||||
# Futarchy CLOB state rent costs 135-225 SOL annually for MetaDAO at current proposal volume
|
||||
|
||||
Central Limit Order Book implementations of futarchy require 3.75 SOL in state rent per pass/fail market pair, which cannot be recouped under the existing Autocrat architecture. At MetaDAO's documented proposal volume of 3-5 proposals per month, this translates to 135-225 SOL annually ($11,475-$19,125 at January 2024 prices).
|
||||
|
||||
This cost structure creates a direct economic incentive to migrate from CLOBs to AMMs, independent of governance or manipulation considerations. The state rent burden scales linearly with proposal volume, making it particularly punitive for high-frequency futarchy implementations. The proposal notes that "there are ways to recoup openbook state rent costs, though it would require a migration of the current autocrat program," suggesting the non-recoverability is an implementation limitation rather than a fundamental CLOB property. However, the migration cost to enable rent recovery may exceed the AMM migration cost, making AMM adoption the more economical path.
|
||||
|
||||
## Evidence
|
||||
- "Pass/fail market pairs cost 3.75 SOL in state rent, which cannot currently be recouped" (MetaDAO AMM proposal CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1PG)
|
||||
- "If we average 3-5 proposals per month, then annual costs for market creation is 135-225 SOL, or $11475-$19125 at current prices"
|
||||
- "AMMs cost almost nothing in state rent"
|
||||
- Feedback during proposal: "there are ways to recoup openbook state rent costs, though it would require a migration of the current autocrat program"
|
||||
- MetaDAO proposal volume: 3-5 proposals per month (self-reported in proposal)
|
||||
|
||||
## Limitations
|
||||
- Calculation based on MetaDAO's specific proposal volume; generalizability to other futarchy implementations depends on their governance frequency
|
||||
- SOL price ($11,475-$19,125 range) is time-specific to January 2024; current cost in USD would differ
|
||||
- Non-recoverability is specific to current Autocrat v0.1 implementation; future versions may enable rent recovery
|
||||
|
||||
---
|
||||
|
||||
Relevant Notes:
|
||||
- [[MetaDAO is the futarchy launchpad on Solana where projects raise capital through unruggable ICOs governed by conditional markets creating the first platform for ownership coins at scale.md]]
|
||||
- [[domains/internet-finance/_map]]
|
||||
|
||||
Topics:
|
||||
- [[core/mechanisms/_map]]
|
||||
|
|
@ -46,7 +46,6 @@ MetaDAO's token launch platform. Implements "unruggable ICOs" — permissionless
|
|||
|
||||
- **2026-03-07** — Areal DAO launch: $50K target, raised $11,654 (23.3%), REFUNDING status by 2026-03-08 — first documented failed futarchy-governed fundraise on platform
|
||||
- **2026-03-04** — [[seekervault]] fundraise launched targeting $75,000, closed next day with only $1,186 (1.6% of target) in refunding status
|
||||
- **2024-01-24** — MetaDAO proposal to develop AMM program for futarchy markets to replace CLOBs, addressing liquidity and state rent costs
|
||||
## Competitive Position
|
||||
- **Unique mechanism**: Only launch platform with futarchy-governed accountability and treasury return guarantees
|
||||
- **vs pump.fun**: pump.fun is memecoin launch (zero accountability, pure speculation). Futardio is ownership coin launch (futarchy governance, treasury enforcement). Different categories despite both being "launch platforms."
|
||||
|
|
|
|||
|
|
@ -8,14 +8,13 @@ parent_entity: "[[metadao]]"
|
|||
platform: "futardio"
|
||||
proposer: "joebuild"
|
||||
proposal_url: "https://www.futard.io/proposal/CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1PG"
|
||||
proposal_account: "CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1PG"
|
||||
proposal_number: 4
|
||||
proposal_date: 2024-01-24
|
||||
resolution_date: 2024-01-29
|
||||
category: "mechanism"
|
||||
summary: "Proposal to migrate MetaDAO's futarchy implementation from CLOBs to AMMs to solve liquidity, manipulation, and state rent problems"
|
||||
key_metrics:
|
||||
budget: "400 META on passing, 800 META on completion"
|
||||
timeline: "3 weeks development + 1 week review"
|
||||
state_rent_savings: "135-225 SOL annually"
|
||||
summary: "Migrate MetaDAO futarchy markets from CLOB to AMM architecture to improve liquidity, reduce manipulation risk, and eliminate state rent costs"
|
||||
budget: "400 META on passing, 800 META on completion"
|
||||
tracked_by: rio
|
||||
created: 2026-03-11
|
||||
---
|
||||
|
|
@ -23,36 +22,41 @@ created: 2026-03-11
|
|||
# MetaDAO: Develop AMM Program for Futarchy?
|
||||
|
||||
## Summary
|
||||
Proposal to replace MetaDAO's CLOB-based futarchy markets with AMMs using liquidity-weighted time-average pricing and 3-5% fees. The migration addresses three problems with the existing Autocrat v0.1 implementation: lack of liquidity from wide bid-ask spreads, manipulation vulnerability through selective cranking and wash trading, and high state rent costs of 3.75 SOL per market pair.
|
||||
Proposal to replace Central Limit Order Book (CLOB) implementation of futarchy markets with Automated Market Maker (AMM) architecture using liquidity-weighted price over time as settlement metric. Addresses three CLOB limitations: lack of liquidity due to pricing uncertainty, manipulation vulnerability through midpoint pushing and wash trading, and 3.75 SOL per market pair in non-recoverable state rent costs.
|
||||
|
||||
## Market Data
|
||||
- **Outcome:** Passed
|
||||
- **Proposer:** joebuild
|
||||
- **Created:** 2024-01-24
|
||||
- **Completed:** 2024-01-29
|
||||
- **Budget:** 400 META on passing proposal, 800 META on completed migration
|
||||
- **Timeline:** 3 weeks development + 1 week review
|
||||
- **Resolution:** 2024-01-29
|
||||
|
||||
## Technical Specification
|
||||
**AMM Design:**
|
||||
- Liquidity-weighted average price over lifetime as settlement metric
|
||||
- 3-5% swap fees to incentivize LPs and discourage wash trading
|
||||
- Integration with autocrat + conditional vault programs
|
||||
- Permissionless pause/close functions for post-verdict settlement
|
||||
|
||||
**Additional Features:**
|
||||
- Loosen 50-slot restriction on proposal creation timing
|
||||
- Auto-revert to fail after X days if proposal instructions fail
|
||||
- Remove 1 META minimum order size (CLOB spam filter no longer needed)
|
||||
|
||||
**Team:**
|
||||
- Program: joebuild
|
||||
- Review: TBD expert
|
||||
- Frontend: 0xNalloK
|
||||
|
||||
## Significance
|
||||
This represents MetaDAO's first major mechanism upgrade after initial launch, addressing operational friction that limited trading volume and created manipulation vulnerabilities. The migration from CLOBs to AMMs is a simplification move that trades off some flexibility (one-sided liquidity provision) for better liquidity bootstrapping and manipulation resistance through high fees. The proposal demonstrates how production futarchy systems must iterate on theoretical designs to handle real-world constraints around liquidity, state rent, and attack vectors.
|
||||
First major architectural change to MetaDAO's futarchy implementation since launch. Represents shift from orderbook to AMM primitives for conditional token markets, with implications for all futarchy implementations. Economic motivation (135-225 SOL annual state rent savings) combined with mechanism design improvements (manipulation resistance, liquidity bootstrapping).
|
||||
|
||||
The implementation includes quality-of-life improvements like loosening time restrictions on proposal creation (currently 50 slots) and automatic reversion to fail status if proposal instructions don't execute, showing how operational experience reveals friction points in governance mechanisms.
|
||||
|
||||
## Technical Details
|
||||
- AMM tracks liquidity-weighted average price over proposal lifetime
|
||||
- 3-5% fees discourage manipulation while incentivizing LPs
|
||||
- Proposers must lock initial liquidity and set starting prices
|
||||
- State rent drops from 3.75 SOL per market to near-zero
|
||||
- Removes 1 META minimum order size requirement
|
||||
- Includes feature to permissionlessly pause swaps and return positions after verdict
|
||||
- Includes feature to permissionlessly close AMMs and return state rent SOL when no positions remain
|
||||
|
||||
## Implementation Team
|
||||
- **Program changes:** joebuild
|
||||
- **Program review:** TBD expert in MetaDAO
|
||||
- **Frontend integration:** 0xNalloK
|
||||
## Risks Identified
|
||||
- Standard smart contract risk
|
||||
- Uncertain LP adoption: "similar to an orderbook, available liquidity will be decided by LPs. AMMs will incentivize LP'ing, though adoption within the DAO is not a certainty"
|
||||
- Migration complexity for existing markets
|
||||
|
||||
## Relationship to KB
|
||||
- [[metadao]] - mechanism upgrade
|
||||
- [[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]] - extends with AMM implementation details
|
||||
- [[futarchy adoption faces friction from token price psychology proposal complexity and liquidity requirements]] - confirms liquidity as primary friction
|
||||
- [[futarchy is manipulation-resistant because attack attempts create profitable opportunities for defenders]] - challenges with real manipulation vulnerabilities
|
||||
- [[metadao]] - core mechanism upgrade
|
||||
- [[futarchy is manipulation-resistant because attack attempts create profitable opportunities for defenders]] - addresses known CLOB manipulation vectors
|
||||
- [[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]] - architectural change to this implementation
|
||||
|
|
|
|||
|
|
@ -54,8 +54,8 @@ The futarchy governance protocol on Solana. Implements decision markets through
|
|||
- **2026-03** — Pine Analytics Q4 2025 quarterly report published
|
||||
|
||||
- **2024-02-18** — [[metadao-otc-trade-pantera-capital]] failed: Pantera Capital's $50,000 OTC purchase proposal rejected by futarchy markets
|
||||
- **2024-01-24** — [[metadao-develop-amm-program-for-futarchy]] proposed: migrate from CLOBs to AMMs to solve liquidity and manipulation problems
|
||||
- **2024-01-29** — [[metadao-develop-amm-program-for-futarchy]] passed: approved 400 META for development, 800 META on completion of AMM migration
|
||||
- **2024-01-24** — [[metadao-develop-amm-program-for-futarchy]] proposed: migrate futarchy markets from CLOB to AMM to address liquidity, manipulation, and 135-225 SOL annual state rent costs
|
||||
- **2024-01-29** — [[metadao-develop-amm-program-for-futarchy]] passed: approved AMM migration with 400 META upfront + 800 META on completion budget
|
||||
## Key Decisions
|
||||
| Date | Proposal | Proposer | Category | Outcome |
|
||||
|------|----------|----------|----------|---------|
|
||||
|
|
|
|||
|
|
@ -11,9 +11,10 @@ tags: [futardio, metadao, futarchy, solana, governance]
|
|||
event_type: proposal
|
||||
processed_by: rio
|
||||
processed_date: 2026-03-11
|
||||
enrichments_applied: ["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", "futarchy is manipulation-resistant because attack attempts create profitable opportunities for defenders.md"]
|
||||
claims_extracted: ["amm-liquidity-weighted-price-over-time-solves-futarchy-clob-manipulation-vulnerability.md", "futarchy-clob-state-rent-costs-135-225-sol-annually-for-metadao-proposal-volume.md"]
|
||||
enrichments_applied: ["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", "MetaDAOs futarchy implementation shows limited trading volume in uncontested decisions.md"]
|
||||
extraction_model: "anthropic/claude-sonnet-4.5"
|
||||
extraction_notes: "Primary extraction: decision_market entity for the AMM migration proposal. One new claim on AMM mechanism design for futarchy. Three enrichments: extends Autocrat implementation details, confirms liquidity friction, challenges manipulation resistance with real vulnerabilities. The proposal provides concrete operational data on MetaDAO's CLOB problems (state rent costs, manipulation vectors, liquidity issues) that both confirms existing claims about futarchy adoption friction and challenges claims about manipulation resistance. The AMM design (liquidity-weighted TWAP with high fees) is a novel mechanism variant worth capturing as a claim."
|
||||
extraction_notes: "Proposal 4 is a significant mechanism design evolution for MetaDAO's futarchy implementation. Extracted two claims about AMM manipulation resistance and state rent economics, plus enrichments to existing futarchy implementation claims. Created decision_market entity for the proposal itself. Source contains detailed technical specification and economic rationale that supports multiple existing KB claims about futarchy adoption friction and implementation challenges."
|
||||
---
|
||||
|
||||
## Proposal Details
|
||||
|
|
@ -136,8 +137,10 @@ Any important changes or feedback brought up during the proposal vote will be re
|
|||
|
||||
|
||||
## Key Facts
|
||||
- MetaDAO CLOB markets cost 3.75 SOL in state rent per pass/fail pair (2024-01-24)
|
||||
- MetaDAO averages 3-5 proposals per month, totaling 135-225 SOL annual state rent costs (2024-01-24)
|
||||
- Proposed AMM implementation timeline: 3 weeks development + 1 week review (2024-01-24)
|
||||
- Budget: 400 META on passing, 800 META on completion (2024-01-24)
|
||||
- Proposal passed 2024-01-29, 5 days after creation
|
||||
- MetaDAO proposal 4 (CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1PG) passed 2024-01-29
|
||||
- CLOB pass/fail market pairs cost 3.75 SOL in state rent per pair
|
||||
- MetaDAO averages 3-5 proposals per month
|
||||
- Proposed AMM fee structure: 3-5% to incentivize LPs and discourage manipulation
|
||||
- Budget: 400 META on passing + 800 META on completion (1200 META total)
|
||||
- Timeline: 3 weeks development + 1 week review
|
||||
- Team: joebuild (program), 0xNalloK (frontend), TBD (review)
|
||||
|
|
|
|||
Loading…
Reference in a new issue