Compare commits
1 commit
c5083fb896
...
13f982f5d5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13f982f5d5 |
241 changed files with 223 additions and 1252 deletions
|
|
@ -1,39 +0,0 @@
|
||||||
---
|
|
||||||
type: claim
|
|
||||||
domain: ai-alignment
|
|
||||||
description: "MixDPO shows distributional β earns +11.2 win rate points on heterogeneous data at 1.02–1.1× cost, without needing demographic labels or explicit mixture models"
|
|
||||||
confidence: experimental
|
|
||||||
source: "Theseus via arXiv 2601.06180 (MixDPO: Modeling Preference Strength for Pluralistic Alignment, Jan 2026)"
|
|
||||||
created: 2026-03-11
|
|
||||||
depends_on:
|
|
||||||
- "RLHF and DPO both fail at preference diversity because they assume a single reward function can capture context-dependent human values"
|
|
||||||
- "pluralistic alignment must accommodate irreducibly diverse values simultaneously rather than converging on a single aligned state"
|
|
||||||
---
|
|
||||||
|
|
||||||
# modeling preference sensitivity as a learned distribution rather than a fixed scalar resolves DPO diversity failures without demographic labels or explicit user modeling
|
|
||||||
|
|
||||||
Standard DPO uses a fixed scalar β to control how strongly preference signals shape training — one value for every example in the dataset. This works when preferences are homogeneous but fails when the training set aggregates genuinely different populations with different tolerance for value tradeoffs. Since [[RLHF and DPO both fail at preference diversity because they assume a single reward function can capture context-dependent human values]], fixed-β DPO is a special case of that failure: it assumes not just one reward function but one preference sensitivity level.
|
|
||||||
|
|
||||||
MixDPO (arXiv 2601.06180, January 2026) generalizes this by treating β as a random variable drawn from a learned distribution p(β), optimized jointly with policy parameters θ. Two distributional families are evaluated: LogNormal (estimated via Monte Carlo with K=16 samples) and Gamma (admits closed-form optimization via the Lerch transcendent). The learned distribution encodes dataset-level variance in preference strength — how much the population's certainty about preferences actually varies across comparison pairs.
|
|
||||||
|
|
||||||
**Empirical results:** On the PRISM dataset (high preference heterogeneity), MixDPO achieves +11.2 win rate points over standard DPO on Pythia-2.8B. Macro-averaged preference margins — which weight minority preferences equally to majority preferences — improve substantially while micro-averaged margins (dominated by majority views) remain competitive. This demonstrates that distributional β improves pluralistic coverage without degrading majority-preference performance. On the Anthropic HH dataset (low heterogeneity), the learned distribution converges to low variance and gains are minimal — the method self-adapts rather than forcing complexity where data doesn't support it.
|
|
||||||
|
|
||||||
**Computational cost:** LogNormal adds 1.02× overhead; Gamma adds 1.1×. Pluralistic alignment via distributional β is not a computationally expensive research luxury — it is a practical default.
|
|
||||||
|
|
||||||
**Why no demographic labels are needed:** Preference heterogeneity is a property of the comparison pairs themselves, not of annotator identity. The distribution learns to allocate high β to examples where the comparison signal is sharp and low β to examples where preferences are diffuse — without any access to who provided the preferences. This contrasts with approaches like PAL (Pluralistic Alignment via Learned Prototypes) that require explicit user-cluster modeling.
|
|
||||||
|
|
||||||
Since [[pluralistic alignment must accommodate irreducibly diverse values simultaneously rather than converging on a single aligned state]], MixDPO is one concrete mechanism for distributional pluralism — the third form in Sorensen et al's taxonomy — implemented at the level of training dynamics rather than model outputs or constitutional specification.
|
|
||||||
|
|
||||||
## Challenges
|
|
||||||
|
|
||||||
MixDPO has not yet been compared to PAL or RLCF in the paper, leaving open whether distributional β outperforms explicit mixture modeling on the same benchmarks. The +11.2 win rate result is from a single preprint on Pythia-2.8B and has not been replicated at larger scales or across multiple evaluators.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Notes:
|
|
||||||
- [[RLHF and DPO both fail at preference diversity because they assume a single reward function can capture context-dependent human values]] — MixDPO is a constructive solution to this failure, not merely a diagnosis
|
|
||||||
- [[pluralistic alignment must accommodate irreducibly diverse values simultaneously rather than converging on a single aligned state]] — distributional β implements the distributional pluralism form without explicit demographic modeling
|
|
||||||
- [[collective intelligence requires diversity as a structural precondition not a moral preference]] — MixDPO preserves preference diversity structurally by encoding it in the training objective rather than averaging it out
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[_map]]
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
---
|
|
||||||
type: claim
|
|
||||||
domain: ai-alignment
|
|
||||||
description: "MixDPO's learned β distribution serves dual purpose: it improves pluralistic alignment on heterogeneous data and converges to low variance on homogeneous data, making dataset diversity legible without demographic annotations"
|
|
||||||
confidence: experimental
|
|
||||||
source: "Theseus via arXiv 2601.06180 (MixDPO: Modeling Preference Strength for Pluralistic Alignment, Jan 2026)"
|
|
||||||
created: 2026-03-11
|
|
||||||
depends_on:
|
|
||||||
- "modeling preference sensitivity as a learned distribution rather than a fixed scalar resolves DPO diversity failures without demographic labels or explicit user modeling"
|
|
||||||
- "RLHF and DPO both fail at preference diversity because they assume a single reward function can capture context-dependent human values"
|
|
||||||
---
|
|
||||||
|
|
||||||
# the variance of a learned preference sensitivity distribution diagnoses dataset heterogeneity and collapses to fixed-parameter behavior when preferences are homogeneous
|
|
||||||
|
|
||||||
Alignment methods that handle preference diversity create a design problem: when should you apply pluralistic training and when should you apply standard training? Requiring practitioners to audit their datasets for preference heterogeneity before training is a real barrier — most practitioners lack the demographic data or analytic tools to answer the question reliably.
|
|
||||||
|
|
||||||
MixDPO (arXiv 2601.06180) eliminates this requirement through a self-adaptive property. Because the preference sensitivity parameter β is learned as a distribution jointly with the policy, its variance at convergence encodes information about the dataset it was trained on:
|
|
||||||
|
|
||||||
- **High heterogeneity data (PRISM):** The learned distribution converges to high variance — β must range widely to account for the differing preference strengths across comparison pairs. The +11.2 win rate gain signals that this variance is informationally meaningful, not noise.
|
|
||||||
- **Low heterogeneity data (Anthropic HH):** The learned distribution converges to low variance, approximating a point mass near the standard fixed-β value. Performance gains are minimal — consistent with the interpretation that there is no latent diversity for the distribution to capture.
|
|
||||||
|
|
||||||
This means the learned variance is a post-hoc diagnostic: train once with MixDPO, read the converged variance, and you know whether your dataset had diverse preferences. No demographic labels, no separate audit pipeline, no prior assumption about your data source. The method earns complexity when the data warrants it and collapses to simpler baseline behavior when it does not.
|
|
||||||
|
|
||||||
This self-adaptive collapse property has design implications beyond MixDPO. A well-designed pluralistic alignment method should have this property structurally: if your training data were actually homogeneous, the method should behave as if you had used the simpler approach. Methods that impose complexity regardless of data content add overhead without alignment benefit. The distributional β framework provides a formal instantiation of this principle.
|
|
||||||
|
|
||||||
The interpretability extension is underexplored in the paper: if β variance tracks real preference heterogeneity, it could serve as a dataset quality metric for pluralistic alignment — a way to compare datasets on the dimension of preference diversity without needing annotator identity or demographic composition.
|
|
||||||
|
|
||||||
## Challenges
|
|
||||||
|
|
||||||
The self-adaptive interpretation rests on a single paper's results across two contrasting datasets. Whether learned β variance generalizes as a reliable diversity diagnostic across domains and model scales has not been empirically tested. The MixDPO paper does not analyze the learned distributions in depth — the diagnostic interpretation is partially an inference from the convergence behavior.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Notes:
|
|
||||||
- [[modeling preference sensitivity as a learned distribution rather than a fixed scalar resolves DPO diversity failures without demographic labels or explicit user modeling]] — the mechanism this claim describes the diagnostic property of
|
|
||||||
- [[RLHF and DPO both fail at preference diversity because they assume a single reward function can capture context-dependent human values]] — learned variance provides empirical evidence of whether a dataset falls into this failure mode
|
|
||||||
- [[pluralistic alignment must accommodate irreducibly diverse values simultaneously rather than converging on a single aligned state]] — self-adaptive collapse means pluralistic methods can be used safely even when diversity is unknown in advance
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[_map]]
|
|
||||||
|
|
@ -0,0 +1,41 @@
|
||||||
|
---
|
||||||
|
type: claim
|
||||||
|
domain: space-development
|
||||||
|
description: "As of early 2026, every major commercial station program has slipped — Haven-1 from May 2026 to Q1 2027, Starlab from ~2027 to 2028-2029, Orbital Reef from ~2027 to 2030 — with zero programs ahead of schedule, suggesting funding, technology readiness, and regulatory factors create systemic friction"
|
||||||
|
confidence: likely
|
||||||
|
source: "Astra extraction from Payload Space/Aviation Week/Universe Magazine aggregated reporting, Jan 2026; cross-validated against NASA CLD program records"
|
||||||
|
created: 2026-03-11
|
||||||
|
depends_on:
|
||||||
|
- "commercial space stations are the next infrastructure bet as ISS retirement creates a void that 4 companies are racing to fill by 2030"
|
||||||
|
challenged_by: []
|
||||||
|
---
|
||||||
|
|
||||||
|
# all four commercial station programs have slipped their original timelines as of early 2026 indicating structural rather than company-specific barriers to the ISS-to-commercial transition
|
||||||
|
|
||||||
|
As of early 2026, every major commercial space station program has slipped from its original target timeline. Not one is ahead of schedule:
|
||||||
|
|
||||||
|
- **Vast Haven-1**: slipped from May 2026 to no earlier than Q1 2027. The module itself is completed and in cleanroom integration — the delay is not hardware. Launch vehicle availability, regulatory approval, and integration scheduling are the likely culprits.
|
||||||
|
- **Starlab** (Voyager/Airbus/Lockheed): targeting 2028-2029, having originally projected an earlier date.
|
||||||
|
- **Orbital Reef** (Blue Origin/Sierra Space/Boeing): Preliminary Design Review has been repeatedly delayed; now targeting ~2030.
|
||||||
|
- **Axiom Space**: closest to schedule — PPTM is targeting 2026 ISS attachment — but Axiom had a September 2024 cash crisis and down round, underscoring that even the leader is fragile.
|
||||||
|
|
||||||
|
The universal nature of slippage is the signal. When one program slips, it's an execution problem. When all four slip, it's a structural problem. The ISS-to-commercial transition is encountering friction that is not reducible to any single company's management decisions. The most likely structural factors:
|
||||||
|
|
||||||
|
1. **Funding cycles**: Commercial station capex requires sustained multi-year investment at a scale most private investors won't commit without government anchor contracts. NASA's Phase 2 CLD awards ($1-1.5B over 2026-2031) help but don't fully de-risk construction financing.
|
||||||
|
2. **Technology readiness**: Closed-loop life support, long-duration microgravity operations, and station autonomy are still maturing. Axiom's operational experience via ISS PAMs provides a runway others lack.
|
||||||
|
3. **Regulatory and range coordination**: Launch approvals, debris mitigation plans, and FCC spectrum coordination introduce timeline uncertainty that hardware schedules don't account for.
|
||||||
|
4. **Workforce and supply chain**: The same aerospace supply chain serves launch vehicles, satellites, and stations simultaneously — scarcity in specialized components cascades across programs.
|
||||||
|
|
||||||
|
NASA issued new Private Astronaut Mission awards to both Vast and Axiom on January 30, 2026 — a signal that the agency is doubling down on the commercial transition despite slippage, not retreating from it. This reduces gap risk at the margin but does not eliminate it.
|
||||||
|
|
||||||
|
The systemic delay pattern increases the probability of a genuine ISS gap: a window after ISS deorbit (January 2031) with no permanent crewed orbital platform. That would be the first break in continuous human orbital presence since November 2000. Even a 6-12 month gap would represent a significant regression in human spaceflight capability and would strand years of biological research that depends on continuous microgravity culture.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Relevant Notes:
|
||||||
|
- [[commercial space stations are the next infrastructure bet as ISS retirement creates a void that 4 companies are racing to fill by 2030]] — this claim updates the competitive picture: the race is real but harder than projected
|
||||||
|
- [[governments are transitioning from space system builders to space service buyers which structurally advantages nimble commercial providers]] — the transition is happening but slower than the buyer-supplier model assumed
|
||||||
|
- [[space governance gaps are widening not narrowing because technology advances exponentially while institutional design advances linearly]] — regulatory friction may be one of the structural delay drivers
|
||||||
|
|
||||||
|
Topics:
|
||||||
|
- [[_map]]
|
||||||
|
|
@ -13,7 +13,7 @@ challenged_by: "Timeline slippage threatens a gap in continuous human orbital pr
|
||||||
The ISS is scheduled for controlled deorbiting in January 2031 after a final crew retrieval in 2030, with SpaceX building the US Deorbit Vehicle under an $843 million contract. Four commercial station programs are racing to fill the gap:
|
The ISS is scheduled for controlled deorbiting in January 2031 after a final crew retrieval in 2030, with SpaceX building the US Deorbit Vehicle under an $843 million contract. Four commercial station programs are racing to fill the gap:
|
||||||
|
|
||||||
1. **Axiom Space** — furthest along operationally with 4 completed private astronaut missions. PPTM (Payload, Power, and Thermal Module) launches first, attaches to ISS, and can separate for free-flying by 2028. Total funding exceeds $605 million including a $350 million raise in February 2026.
|
1. **Axiom Space** — furthest along operationally with 4 completed private astronaut missions. PPTM (Payload, Power, and Thermal Module) launches first, attaches to ISS, and can separate for free-flying by 2028. Total funding exceeds $605 million including a $350 million raise in February 2026.
|
||||||
2. **Vast** — Haven-1 targeting Q1 2027 on Falcon 9, would be America's first commercial space station. Haven-2 by 2032 with artificial gravity.
|
2. **Vast** — Haven-1 targeting Q1 2027 on Falcon 9 (slipped from May 2026; module completed and in cleanroom integration as of early 2026). Would be America's first commercial space station. Haven-2 by 2032 with artificial gravity. Vast received a new NASA Private Astronaut Mission award Jan 30, 2026.
|
||||||
3. **Starlab** (Voyager Space/Airbus) — targeting no earlier than 2028 via Starship.
|
3. **Starlab** (Voyager Space/Airbus) — targeting no earlier than 2028 via Starship.
|
||||||
4. **Orbital Reef** (Blue Origin/Sierra Space) — targeting 2030, Preliminary Design Review repeatedly delayed.
|
4. **Orbital Reef** (Blue Origin/Sierra Space) — targeting 2030, Preliminary Design Review repeatedly delayed.
|
||||||
|
|
||||||
|
|
@ -23,21 +23,6 @@ The launch cost connection transforms the economics entirely. ISS cost approxima
|
||||||
|
|
||||||
The attractor state is a marketplace of orbital platforms serving manufacturing, research, tourism, and defense customers — not a single government monument. This transition from state-owned to commercially operated orbital infrastructure directly extends [[governments are transitioning from space system builders to space service buyers which structurally advantages nimble commercial providers]], with NASA becoming a customer rather than an operator.
|
The attractor state is a marketplace of orbital platforms serving manufacturing, research, tourism, and defense customers — not a single government monument. This transition from state-owned to commercially operated orbital infrastructure directly extends [[governments are transitioning from space system builders to space service buyers which structurally advantages nimble commercial providers]], with NASA becoming a customer rather than an operator.
|
||||||
|
|
||||||
|
|
||||||
### Additional Evidence (challenge)
|
|
||||||
*Source: [[2026-01-00-payloadspace-vast-haven1-delay-2027]] | Added: 2026-03-11 | Extractor: anthropic/claude-sonnet-4.5*
|
|
||||||
|
|
||||||
**Timeline Reality Check (Jan 2026)**: The "racing to fill by 2030" framing requires significant qualification. As of early 2026, the competitive landscape shows:
|
|
||||||
|
|
||||||
- Vast Haven-1: Q1 2027 (slipped from May 2026 — 9-month delay)
|
|
||||||
- Axiom Hab One: 2026 ISS attachment (not a freeflying station, ISS-dependent)
|
|
||||||
- Starlab: 2028-2029 (delayed from earlier projections)
|
|
||||||
- Orbital Reef: 2030 (delayed from earlier projections)
|
|
||||||
|
|
||||||
The systemic nature of delays across all four programs—affecting companies with different technical approaches, funding sources, and management teams—indicates the 2030 target was overly optimistic. More critically, with ISS retirement scheduled for 2031, the margin for error has narrowed substantially. If any program experiences additional delays comparable to Vast's 9-month slip, the ISS-to-commercial transition could fail, creating a gap in continuous human LEO presence for the first time since 2000.
|
|
||||||
|
|
||||||
NASA's January 2026 Private Astronaut Mission (PAM) awards to Vast and Axiom indicate the agency recognizes the timeline risk and is attempting to provide additional support, but this reactive funding does not address underlying technology readiness or regulatory certification challenges. The gap between MIT Technology Review naming commercial space stations a "10 Breakthrough Technologies of 2026" while all programs slip behind schedule highlights the distinction between technological promise and operational reality.
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
Relevant Notes:
|
Relevant Notes:
|
||||||
|
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
---
|
|
||||||
type: claim
|
|
||||||
domain: space-development
|
|
||||||
description: "All four major commercial station programs delayed by 1-4 years as of early 2026, suggesting funding regulatory or technology readiness barriers beyond individual company control"
|
|
||||||
confidence: likely
|
|
||||||
source: "Payload Space / Aviation Week / Universe Magazine aggregated reporting, Jan 2026"
|
|
||||||
created: 2026-03-11
|
|
||||||
---
|
|
||||||
|
|
||||||
# Commercial space station timeline slippage is systemic across all programs indicating structural challenges not company-specific execution failures
|
|
||||||
|
|
||||||
As of early 2026, every major commercial space station program has experienced significant delays from original timelines:
|
|
||||||
|
|
||||||
- **Vast Haven-1**: Slipped from May 2026 to Q1 2027 (9-month delay)
|
|
||||||
- **Axiom Space Hab One**: Still on track for 2026 ISS attachment, but this is a module attachment not a freeflying station
|
|
||||||
- **Starlab**: 2028-2029 (delayed from earlier projections)
|
|
||||||
- **Orbital Reef**: 2030 (delayed from earlier projections)
|
|
||||||
|
|
||||||
The universal nature of these delays—affecting companies with different technical approaches, funding sources, and management teams—suggests systemic barriers rather than company-specific execution problems. Potential structural issues include:
|
|
||||||
|
|
||||||
1. **Funding gaps**: Commercial station development requires sustained capital over 3-5 year timelines
|
|
||||||
2. **Technology readiness**: Life support, power, and thermal systems for independent stations are more complex than ISS-attached modules
|
|
||||||
3. **Regulatory uncertainty**: NASA certification requirements and safety standards still evolving
|
|
||||||
4. **Supply chain constraints**: Post-pandemic aerospace supply chains still recovering
|
|
||||||
|
|
||||||
The fact that MIT Technology Review named commercial space stations a "10 Breakthrough Technologies of 2026" while all programs are behind schedule highlights the gap between technological promise and operational reality.
|
|
||||||
|
|
||||||
NASA's January 2026 Private Astronaut Mission (PAM) awards to both Vast and Axiom suggest the agency recognizes the funding challenge and is attempting to bridge the gap, but this reactive support confirms rather than contradicts the systemic nature of the problem.
|
|
||||||
|
|
||||||
## Evidence
|
|
||||||
|
|
||||||
- Vast Haven-1 delayed from May 2026 to Q1 2027 despite module completion and cleanroom integration status
|
|
||||||
- Axiom Hab One remains on track for 2026 but is ISS-dependent, not a standalone station
|
|
||||||
- Starlab and Orbital Reef both targeting late 2020s, 2-4 years later than initial projections
|
|
||||||
- NASA PAM awards (Jan 30, 2026) to Vast and Axiom indicate agency recognition of funding challenges
|
|
||||||
|
|
||||||
## Challenges
|
|
||||||
|
|
||||||
Counter-argument: Delays could reflect normal aerospace development timelines rather than systemic barriers. First-of-kind systems typically experience schedule slippage. However, the *universal* nature of delays across different technical approaches and funding models suggests factors beyond normal development risk.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Notes:
|
|
||||||
- [[commercial space stations are the next infrastructure bet as ISS retirement creates a void that 4 companies are racing to fill by 2030]]
|
|
||||||
- [[governments are transitioning from space system builders to space service buyers which structurally advantages nimble commercial providers]]
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[domains/space-development/_map]]
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
||||||
---
|
|
||||||
type: claim
|
|
||||||
domain: space-development
|
|
||||||
description: "With ISS retirement in 2031 and all commercial stations delayed, compounding slippage could create a window with no permanent human LEO presence for the first time in 26 years"
|
|
||||||
confidence: experimental
|
|
||||||
source: "Payload Space / Aviation Week / Universe Magazine aggregated reporting, Jan 2026; ISS retirement timeline"
|
|
||||||
created: 2026-03-11
|
|
||||||
---
|
|
||||||
|
|
||||||
# ISS retirement gap risk increases with commercial station delays threatening first loss of continuous human orbital presence since 2000
|
|
||||||
|
|
||||||
The ISS is scheduled for retirement in 2031, with potential extension only if no commercial replacement is ready. As of early 2026, the commercial station timeline shows:
|
|
||||||
|
|
||||||
- **Vast Haven-1**: Q1 2027 earliest (already slipped 9 months)
|
|
||||||
- **Axiom Hab One**: 2026 ISS attachment (depends on ISS remaining operational)
|
|
||||||
- **Starlab**: 2028-2029
|
|
||||||
- **Orbital Reef**: 2030
|
|
||||||
|
|
||||||
If Haven-1 experiences another 9-12 month delay (matching its first slip), it pushes to late 2027 or early 2028. If Starlab and Orbital Reef slip proportionally, they could miss the 2031 window entirely. Axiom's module is ISS-dependent, so it cannot serve as a backup if ISS retires on schedule.
|
|
||||||
|
|
||||||
This creates a scenario where:
|
|
||||||
1. ISS retires in 2031 as planned
|
|
||||||
2. No independent commercial station is fully operational and certified for continuous habitation
|
|
||||||
3. Human presence in LEO becomes intermittent (short-duration missions only) or ceases entirely
|
|
||||||
|
|
||||||
Such a gap would represent a significant regression in space capability—the first loss of continuous human orbital presence since November 2000 when ISS permanent occupancy began. The geopolitical and scientific implications would be substantial:
|
|
||||||
|
|
||||||
- **Scientific continuity**: Long-duration microgravity research programs interrupted
|
|
||||||
- **Operational capability**: Loss of institutional knowledge and crew experience
|
|
||||||
- **Strategic positioning**: China's Tiangong station would become the only permanent human presence in LEO
|
|
||||||
- **Commercial momentum**: Investment and development timelines disrupted
|
|
||||||
|
|
||||||
The systemic nature of delays across all programs (see [[commercial space station timeline slippage is systemic across all programs indicating structural challenges not company-specific execution failures]]) suggests this is not a low-probability tail risk but a plausible central scenario requiring active mitigation.
|
|
||||||
|
|
||||||
NASA's PAM awards in January 2026 may be an attempt to accelerate timelines, but funding alone does not solve technology readiness or regulatory certification challenges.
|
|
||||||
|
|
||||||
## Evidence
|
|
||||||
|
|
||||||
- ISS retirement scheduled for 2031 (may extend only if no replacement ready)
|
|
||||||
- Vast Haven-1 slipped 9 months (May 2026 → Q1 2027)
|
|
||||||
- All commercial stations behind original schedules as of early 2026
|
|
||||||
- Axiom Hab One is ISS-dependent, cannot serve as standalone backup
|
|
||||||
- Continuous human presence in LEO maintained since November 2000
|
|
||||||
|
|
||||||
## Challenges
|
|
||||||
|
|
||||||
ISS retirement could be extended beyond 2031 if commercial stations are not ready, reducing gap risk. However, ISS extension requires sustained funding and structural integrity certification—both uncertain given the station's age and NASA's budget constraints. Relying on extension as the primary mitigation strategy is itself a risk.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Notes:
|
|
||||||
- [[commercial space stations are the next infrastructure bet as ISS retirement creates a void that 4 companies are racing to fill by 2030]]
|
|
||||||
- [[commercial space station timeline slippage is systemic across all programs indicating structural challenges not company-specific execution failures]]
|
|
||||||
- [[governments are transitioning from space system builders to space service buyers which structurally advantages nimble commercial providers]]
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[domains/space-development/_map]]
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
---
|
|
||||||
type: entity
|
|
||||||
entity_type: company
|
|
||||||
name: "Drift Protocol"
|
|
||||||
domain: internet-finance
|
|
||||||
handles: ["@DriftProtocol"]
|
|
||||||
website: https://drift.trade
|
|
||||||
status: active
|
|
||||||
tracked_by: rio
|
|
||||||
created: 2026-03-11
|
|
||||||
last_updated: 2026-03-11
|
|
||||||
category: "Perpetuals DEX / DeFi protocol (Solana)"
|
|
||||||
stage: growth
|
|
||||||
key_metrics:
|
|
||||||
futarchy_proposals: "6+ proposals on MetaDAO platform (grants, working group, AI agents, competitions)"
|
|
||||||
drift_allocated: "150,000+ DRIFT allocated through futarchy governance"
|
|
||||||
built_on: ["Solana"]
|
|
||||||
competitors: ["[[omnipair]]"]
|
|
||||||
tags: ["perps", "solana", "futarchy-adopter", "metadao-ecosystem"]
|
|
||||||
---
|
|
||||||
|
|
||||||
# Drift Protocol
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
Perpetuals DEX on Solana — one of the largest decentralized derivatives platforms. Significant to the MetaDAO ecosystem for two reasons: (1) Drift adopted futarchy governance through MetaDAO's platform, making it the highest-profile external organization to use futarchic decision-making, and (2) Drift represents the future competitive threat to OmniPair's leverage monopoly on MetaDAO ecosystem tokens.
|
|
||||||
|
|
||||||
## Current State
|
|
||||||
- **Futarchy adoption**: Drift has run 6+ governance proposals through MetaDAO's futarchy platform since May 2024, allocating 150,000+ DRIFT tokens through futarchic decisions. This includes the Drift Foundation Grant Program (100K DRIFT), "Welcome the Futarchs" retroactive rewards (50K DRIFT), Drift AI Agents grants program (50K DRIFT), Drift Working Group funding, and SuperTeam Earn creator competitions.
|
|
||||||
- **AI Agents program**: Drift allocated 50,000 DRIFT for an AI Agents Grants program (Dec 2024) covering trading agents, yield agents, information agents, and social agents. Early signal of DeFi protocols investing in agentic infrastructure.
|
|
||||||
- **Leverage competitor**: Currently, OmniPair is the "only game in town" for leverage on MetaDAO ecosystem tokens. However, if MetaDAO reaches ~$1B valuation, Drift and other perp protocols will likely list META and ecosystem tokens — eroding OmniPair's temporary moat.
|
|
||||||
- **Perps aggregation**: Ranger Finance aggregated Drift (among others) before its liquidation.
|
|
||||||
|
|
||||||
## Timeline
|
|
||||||
- **2024-05-30** — First futarchy proposal: "Welcome the Futarchs" — 50K DRIFT to incentivize futarchy participation
|
|
||||||
- **2024-07-09** — Drift Foundation Grant Program initialized via futarchy (100K DRIFT)
|
|
||||||
- **2024-08-27** — SuperTeam Earn creator competition funded via futarchy
|
|
||||||
- **2024-12-19** — AI Agents Grants program: 50K DRIFT for trading, yield, info, and social agents
|
|
||||||
- **2025-02-13** — Drift Working Group funded via futarchy
|
|
||||||
|
|
||||||
## Competitive Position
|
|
||||||
- **Futarchy validation**: Drift using MetaDAO's governance system is the strongest external validation signal — a major protocol choosing futarchy over traditional token voting for real treasury decisions.
|
|
||||||
- **Future leverage threat**: Drift listing META perps would directly compete with OmniPair for leverage demand. This is OmniPair's identified "key vulnerability" — the moat is temporary.
|
|
||||||
- **Scale differential**: Drift operates at much larger scale than the MetaDAO ecosystem. Its adoption of futarchy is disproportionately significant as a credibility signal.
|
|
||||||
|
|
||||||
## Relationship to KB
|
|
||||||
- [[futarchy implementations must simplify theoretical mechanisms for production adoption because original designs include impractical elements that academics tolerate but users reject]] — Drift's adoption validates that simplified futarchy works for real organizations
|
|
||||||
- [[permissionless leverage on metaDAO ecosystem tokens catalyzes trading volume and price discovery that strengthens governance by making futarchy markets more liquid]] — Drift is the future competitor that erodes OmniPair's leverage monopoly
|
|
||||||
- [[governance mechanism diversity compounds organizational learning because disagreement between mechanisms reveals information no single mechanism can produce]] — Drift running both traditional governance and futarchy provides comparative data
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Entities:
|
|
||||||
- [[metadao]] — futarchy platform provider
|
|
||||||
- [[omnipair]] — current leverage competitor (OmniPair holds temporary monopoly)
|
|
||||||
- [[ranger-finance]] — former aggregation client (liquidated)
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[internet finance and decision markets]]
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
---
|
|
||||||
type: entity
|
|
||||||
entity_type: company
|
|
||||||
name: "Jupiter"
|
|
||||||
domain: internet-finance
|
|
||||||
handles: ["@JupiterExchange"]
|
|
||||||
website: https://jup.ag
|
|
||||||
status: active
|
|
||||||
tracked_by: rio
|
|
||||||
created: 2026-03-11
|
|
||||||
last_updated: 2026-03-11
|
|
||||||
category: "DEX aggregator / DeFi hub (Solana)"
|
|
||||||
stage: mature
|
|
||||||
key_metrics:
|
|
||||||
role_in_ecosystem: "Primary aggregator for MetaDAO ecosystem token routing"
|
|
||||||
omnipair_catalyst: "Jupiter SDK integration expected to ~3x OmniPair volume"
|
|
||||||
built_on: ["Solana"]
|
|
||||||
tags: ["DEX-aggregator", "solana", "infrastructure", "metadao-adjacent"]
|
|
||||||
---
|
|
||||||
|
|
||||||
# Jupiter
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
The dominant DEX aggregator on Solana — routes trades across all Solana AMMs to find optimal execution. Critical infrastructure for the MetaDAO ecosystem: Jupiter integration determines whether ecosystem tokens are tradeable by the broader Solana market. The Jupiter team forked OmniPair's SDK (as of ~March 2026) to enable direct routing through OmniPair pools, making this integration the single highest-impact catalyst for OmniPair's volume growth.
|
|
||||||
|
|
||||||
## Current State
|
|
||||||
- **Aggregator role**: Routes trades across Raydium, Meteora, OmniPair, and other Solana AMMs. Being listed on Jupiter is effectively a prerequisite for meaningful trading volume on Solana.
|
|
||||||
- **OmniPair integration**: Jupiter team forked OmniPair's SDK (~March 2026). Integration expected to roughly triple OmniPair volume and close most of the APY gap with Raydium. This is the single highest-impact near-term catalyst for the MetaDAO ecosystem's DeFi infrastructure.
|
|
||||||
- **Ranger Finance**: Ranger's perps aggregation product aggregated Jupiter (among others) before its liquidation.
|
|
||||||
- **Ecosystem significance**: Jupiter is not a MetaDAO ecosystem project — it's Solana-wide infrastructure. But its routing decisions determine liquidity accessibility for every MetaDAO token.
|
|
||||||
|
|
||||||
## Competitive Position
|
|
||||||
- **Dominant position**: The default swap interface for Solana users. Near-monopoly on DEX aggregation.
|
|
||||||
- **Infrastructure dependency**: MetaDAO ecosystem tokens that aren't routed through Jupiter have severely limited discoverability and volume. OmniPair's DexScreener visibility issue (~10% of liquidity displayed) compounds this — Jupiter routing partially compensates.
|
|
||||||
- **Not a direct competitor**: Jupiter aggregates, not competes with, MetaDAO ecosystem AMMs. The relationship is symbiotic — more AMMs with unique pools give Jupiter more routing options.
|
|
||||||
|
|
||||||
## Relationship to KB
|
|
||||||
- [[permissionless leverage on metaDAO ecosystem tokens catalyzes trading volume and price discovery that strengthens governance by making futarchy markets more liquid]] — Jupiter routing is the primary channel through which broader Solana liquidity reaches MetaDAO ecosystem tokens
|
|
||||||
- [[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]] — Jupiter integration is infrastructure-level validation for the MetaDAO ecosystem
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Entities:
|
|
||||||
- [[omnipair]] — SDK integration (highest-impact catalyst)
|
|
||||||
- [[meteora]] — routed AMM
|
|
||||||
- [[raydium]] — routed AMM
|
|
||||||
- [[ranger-finance]] — former aggregation client (liquidated)
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[internet finance and decision markets]]
|
|
||||||
|
|
@ -1,59 +0,0 @@
|
||||||
---
|
|
||||||
type: entity
|
|
||||||
entity_type: company
|
|
||||||
name: "Meteora"
|
|
||||||
domain: internet-finance
|
|
||||||
handles: ["@MeteoraAG"]
|
|
||||||
website: https://meteora.ag
|
|
||||||
status: active
|
|
||||||
tracked_by: rio
|
|
||||||
created: 2026-03-11
|
|
||||||
last_updated: 2026-03-11
|
|
||||||
category: "Liquidity protocol / AMM (Solana)"
|
|
||||||
stage: growth
|
|
||||||
key_metrics:
|
|
||||||
metadao_revenue_share: "46% of MetaDAO Q4 2025 revenue ($1.15M) from Meteora LP positions"
|
|
||||||
standard_allocation: "900K tokens per Futardio launch placed in Meteora pool"
|
|
||||||
competitors: ["[[raydium]]", "[[omnipair]]"]
|
|
||||||
built_on: ["Solana"]
|
|
||||||
tags: ["AMM", "DLMM", "liquidity", "solana", "metadao-infrastructure"]
|
|
||||||
---
|
|
||||||
|
|
||||||
# Meteora
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
Solana liquidity protocol offering Dynamic Liquidity Market Maker (DLMM) pools, concentrated liquidity, and dynamic bonding pools. Critical infrastructure for the MetaDAO ecosystem — every Futardio launch allocates 900K tokens to a Meteora pool as part of the standard token issuance template, and Meteora LP positions generated 46% of MetaDAO's $2.51M Q4 2025 revenue.
|
|
||||||
|
|
||||||
## Current State
|
|
||||||
- **Role in MetaDAO ecosystem**: Default secondary liquidity venue. Standard Futardio launch template: 10M token base issuance + 2M Futarchic AMM + 900K Meteora + performance package. Meteora provides the non-futarchic liquidity layer.
|
|
||||||
- **Revenue generation**: MetaDAO earned $1.15M from Meteora LP positions in Q4 2025 (46% of total $2.51M revenue). The remaining 54% came from the Futarchic AMM.
|
|
||||||
- **Protocol-owned liquidity**: MetaDAO maintains protocol-owned liquidity on Meteora (e.g., META-USDC pool). The META token migration proposal (Aug 2025) included withdrawing protocol-owned liquidity from Meteora as a migration step.
|
|
||||||
- **Dynamic Bonding Pools**: Used by projects like Phonon Studio AI for tokenized AI artist trading — Meteora DBC Pools enable token launches tied to dynamic bonding curves.
|
|
||||||
- **DLMM**: Concentrated liquidity pools used by Paystream and other DeFi protocols for routing strategies.
|
|
||||||
|
|
||||||
## Timeline
|
|
||||||
- **2024-02** — MetaDAO executes Dutch auction on OpenBook, pairs USDC with META for Meteora LP (first formal META liquidity on Meteora)
|
|
||||||
- **2024-02** — $100K OTC trade with Ben Hawkins includes creating 50/50 Meteora LP 1% Volatile Pool META-USDC
|
|
||||||
- **2025-Q4** — Meteora LP generates $1.15M in fees for MetaDAO (Pine Analytics Q4 report)
|
|
||||||
- **2025-10 to 2026-03** — Every Futardio launch allocates 900K tokens to Meteora pool as standard template
|
|
||||||
|
|
||||||
## Competitive Position
|
|
||||||
- **Infrastructure role**: Not competing with MetaDAO — provides complementary liquidity infrastructure. Meteora is the LP venue; Futarchic AMM is the governance venue.
|
|
||||||
- **vs Raydium**: Both are major Solana AMMs. Raydium offers CLMM (concentrated liquidity). Meteora differentiates with DLMM and dynamic bonding pools.
|
|
||||||
- **vs OmniPair**: OmniPair combines AMM + lending (leverage). Meteora is pure liquidity provision — different use case but competes for LP capital on the same token pairs.
|
|
||||||
- **Structural advantage**: Deep integration with MetaDAO ecosystem through standard launch template creates reliable flow of new token pairs.
|
|
||||||
|
|
||||||
## Relationship to KB
|
|
||||||
- [[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]] — Meteora provides the secondary liquidity layer for every MetaDAO launch
|
|
||||||
- [[permissionless leverage on metaDAO ecosystem tokens catalyzes trading volume and price discovery that strengthens governance by making futarchy markets more liquid]] — Meteora pools are one venue where this liquidity lives
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Entities:
|
|
||||||
- [[metadao]] — ecosystem partner, revenue source
|
|
||||||
- [[omnipair]] — competing for LP capital
|
|
||||||
- [[raydium]] — AMM competitor on Solana
|
|
||||||
- [[futardio]] — launch template integration
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[internet finance and decision markets]]
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
---
|
|
||||||
type: entity
|
|
||||||
entity_type: person
|
|
||||||
name: "Nallok"
|
|
||||||
domain: internet-finance
|
|
||||||
handles: ["@metanallok"]
|
|
||||||
status: active
|
|
||||||
tracked_by: rio
|
|
||||||
created: 2026-03-11
|
|
||||||
last_updated: 2026-03-11
|
|
||||||
role: "Co-founder & Operator, MetaDAO"
|
|
||||||
organizations: ["[[metadao]]", "[[futardio]]"]
|
|
||||||
known_positions:
|
|
||||||
- "Futarchy requires mechanism simplification for production adoption — Robin Hanson's original designs include impractical elements"
|
|
||||||
- "Futarchy as a Service (FaaS) is the scaling path for futarchy governance"
|
|
||||||
tags: ["futarchy", "mechanism-design", "solana", "metadao-ecosystem"]
|
|
||||||
---
|
|
||||||
|
|
||||||
# Nallok
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
Co-founder and primary operator of MetaDAO. Legal name Kollan House. Serves as the key operational figure behind MetaDAO LLC (Republic of the Marshall Islands DAO LLC, 852 Lagoon Rd, Majuro, MH 96960) and sole Director of the Futarchy Governance SPC (Cayman Islands). While Proph3t is the public face and mechanism architect, Nallok handles legal structure, business development, treasury operations, and ecosystem coordination.
|
|
||||||
|
|
||||||
## Significance
|
|
||||||
- **Legal infrastructure**: Built MetaDAO's legal wrapper — the RMI DAO LLC + Cayman SPC structure that addresses the Ooki DAO precedent (DAOs without legal wrappers face general partnership liability)
|
|
||||||
- **Futarchy as a Service (FaaS)**: Proposed and led development of FaaS (March 2024) — the concept that futarchy governance can be offered as infrastructure to other DAOs, not just MetaDAO
|
|
||||||
- **Mechanism pragmatism**: Noted that Robin Hanson wanted random proposal outcomes — "impractical for production." This insight drove MetaDAO's simplification of futarchy theory into deployable mechanism design
|
|
||||||
- **Treasury operations**: Co-manages multi-sig for MetaDAO treasury. Involved in OTC trades, liquidity management, and compensation proposals
|
|
||||||
- **Compensation structure**: Nallok and Proph3t share a performance-based package (2% of supply per $1B FDV increase, up to 10% at $5B) — itself a statement about incentive alignment through futarchic governance
|
|
||||||
|
|
||||||
## Key Contributions to KB
|
|
||||||
- Primary source for futarchy mechanism simplification claims — the gap between Hanson's theory and production reality
|
|
||||||
- Operational knowledge of MetaDAO's legal structure (RMI DAO LLC, Cayman SPC)
|
|
||||||
- FaaS proposal history — the scaling thesis for futarchy governance
|
|
||||||
- Contact: kollan@metadao.fi
|
|
||||||
|
|
||||||
## Relationship to KB
|
|
||||||
- [[futarchy implementations must simplify theoretical mechanisms for production adoption because original designs include impractical elements that academics tolerate but users reject]] — Nallok's direct observation about Hanson's impractical proposals
|
|
||||||
- [[Ooki DAO proved that DAOs without legal wrappers face general partnership liability making entity structure a prerequisite for any futarchy-governed vehicle]] — Nallok built the legal structure that addresses this
|
|
||||||
- [[futarchy-governed entities are structurally not securities because prediction market participation replaces the concentrated promoter effort that the Howey test requires]] — Nallok engaged legal counsel to investigate this question
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Entities:
|
|
||||||
- [[metadao]] — co-founded
|
|
||||||
- [[futardio]] — operates
|
|
||||||
- [[proph3t]] — co-founder
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[internet finance and decision markets]]
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
||||||
---
|
|
||||||
type: entity
|
|
||||||
entity_type: company
|
|
||||||
name: "Raydium"
|
|
||||||
domain: internet-finance
|
|
||||||
handles: ["@RaydiumProtocol"]
|
|
||||||
website: https://raydium.io
|
|
||||||
status: active
|
|
||||||
tracked_by: rio
|
|
||||||
created: 2026-03-11
|
|
||||||
last_updated: 2026-03-11
|
|
||||||
category: "AMM / DEX (Solana)"
|
|
||||||
stage: mature
|
|
||||||
built_on: ["Solana"]
|
|
||||||
competitors: ["[[meteora]]", "[[omnipair]]"]
|
|
||||||
tags: ["AMM", "CLMM", "solana", "metadao-adjacent"]
|
|
||||||
---
|
|
||||||
|
|
||||||
# Raydium
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
One of the two dominant AMMs on Solana (alongside Meteora). Offers concentrated liquidity market maker (CLMM) pools. Referenced throughout the MetaDAO ecosystem as the primary benchmark for AMM yield and volume — OmniPair's competitive thesis is explicitly framed as "must yield more than Raydium for equivalent pools" once Jupiter aggregator integration is live.
|
|
||||||
|
|
||||||
## Current State
|
|
||||||
- **Competitive benchmark**: OmniPair founder Rakka argues mathematically that OmniPair (same AMM + aggregator integration + borrow rate surplus) must yield more than Raydium for equivalent pools. This is the core competitive claim for OmniPair's value proposition.
|
|
||||||
- **CLMM pools**: Used by DeFi protocols like Paystream for automated LP strategies across Raydium CLMM, Meteora DLMM, and DAMM v2 pools.
|
|
||||||
- **Liquidity farming**: MetaDAO's FUTURE token had Raydium liquidity farming initiated via futarchy proposal (Nov 2024).
|
|
||||||
- **Volume reference**: Jupiter aggregates Raydium pools. OmniPair's expected ~3x volume increase from Jupiter integration is benchmarked against closing "the APY gap with Raydium."
|
|
||||||
|
|
||||||
## Competitive Position
|
|
||||||
- **Established incumbent**: Raydium has deep liquidity across Solana token pairs. New AMMs like OmniPair compete for the same LP capital.
|
|
||||||
- **vs OmniPair**: OmniPair differentiates by combining AMM + lending (leverage) in the same pool. Raydium is pure AMM — no lending, no leverage. For MetaDAO ecosystem tokens specifically, OmniPair offers a unique value proposition (leverage for futarchy bets). For general Solana trading, Raydium's deeper liquidity dominates.
|
|
||||||
- **vs Meteora**: Both are major Solana AMMs. Raydium's CLMM competes with Meteora's DLMM for concentrated liquidity provision.
|
|
||||||
|
|
||||||
## Relationship to KB
|
|
||||||
- [[permissionless leverage on metaDAO ecosystem tokens catalyzes trading volume and price discovery that strengthens governance by making futarchy markets more liquid]] — Raydium is the benchmark OmniPair must beat to attract LP capital away from established pools
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Entities:
|
|
||||||
- [[omnipair]] — competitor (OmniPair claims superior yield through AMM+lending combination)
|
|
||||||
- [[meteora]] — AMM competitor on Solana
|
|
||||||
- [[jupiter]] — aggregates Raydium pools
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[internet finance and decision markets]]
|
|
||||||
|
|
@ -1,68 +0,0 @@
|
||||||
---
|
|
||||||
type: entity
|
|
||||||
entity_type: company
|
|
||||||
name: "Theia Research"
|
|
||||||
domain: internet-finance
|
|
||||||
handles: ["@TheiaResearch"]
|
|
||||||
status: active
|
|
||||||
tracked_by: rio
|
|
||||||
created: 2026-03-11
|
|
||||||
last_updated: 2026-03-11
|
|
||||||
founded: 2024-01-01
|
|
||||||
category: "Onchain liquid token fund"
|
|
||||||
stage: growth
|
|
||||||
key_metrics:
|
|
||||||
metadao_otc_total: "$1.63M across 3 OTC trades (Jan 2025: $500K, Jul 2025: $630K, Jan 2025: $500K)"
|
|
||||||
meta_tokens_held: "1,070+ META tokens via OTC"
|
|
||||||
investment_approach: "Kelly Criterion at 20% of full Kelly, Bayesian updating"
|
|
||||||
competitors: []
|
|
||||||
built_on: ["Solana", "Ethereum"]
|
|
||||||
tags: ["institutional-investor", "metadao-ecosystem", "internet-finance-thesis", "token-governance"]
|
|
||||||
---
|
|
||||||
|
|
||||||
# Theia Research
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
Onchain liquid token fund managed by Felipe Montealegre. Invests in companies building the "Internet Financial System" — taking large positions in small-cap tokens through structured OTC deals with 2-4 year investment horizons. The most significant institutional investor in the MetaDAO ecosystem, holding 1,070+ META tokens acquired at premiums to market price. Coined the "Token Problem" framework (lemon market dynamics in token markets) and published the Token Transparency Framework with Blockworks.
|
|
||||||
|
|
||||||
## Current State
|
|
||||||
- **Fund structure**: Theia Blockchain Partners Master Fund LP
|
|
||||||
- **Investment thesis**: Internet Financial System replacing permissioned, siloed traditional finance. Five advantages: free capital flows, improved property rights, financial accessibility, operational efficiency, faster GDP growth.
|
|
||||||
- **MetaDAO position**: Largest known institutional holder. Holds MetaDAO specifically for "prioritizing investors over teams" — the competitive moat that futarchy creates. Three OTC trades totaling $1.63M, all at premiums to spot.
|
|
||||||
- **AI integration**: Uses LLMs as "backbone of process improvements." Internal dashboards consolidating Discord, Notion, GitHub. Planning "AI agents that can perform discrete tasks" for competitive analysis.
|
|
||||||
- **Research output**: Published "The Investment Manager of the Future" (Feb 2026), arguing LLMs shift investment from economies of scale to economies of edge. 292 bookmarks — most saved piece in its batch. Also published internet finance thesis with 50-100bps GDP growth projection.
|
|
||||||
|
|
||||||
## Timeline
|
|
||||||
- **2025-01-03** — First MetaDAO OTC trade: $500K for META tokens
|
|
||||||
- **2025-01-07** — Published internet finance thesis (IFS as better financial system for 8B people)
|
|
||||||
- **2025-01-27** — Second OTC trade: $500K for 370 META at $1,350/token
|
|
||||||
- **2025-07-21** — Third OTC trade: $630K for 700 META at $900/token (38% premium to spot). Funds used to extend MetaDAO runway + legal advisory.
|
|
||||||
- **2026-02-12** — Published 2025 Annual Letter. Five-phase investment loop: moat analysis → multiples → prediction → Kelly sizing → Bayesian updating. Noah Goldberg promoted to equity partner, Thomas Bautista hired.
|
|
||||||
- **2026-02-17** — Published "The Investment Manager of the Future." LLMs invert 80/20 ratio of execution vs analysis.
|
|
||||||
|
|
||||||
## Competitive Position
|
|
||||||
- **Unique positioning**: Only known institutional fund explicitly building investment thesis around futarchy governance as a moat
|
|
||||||
- **Token governance focus**: Launched Token Transparency Framework with Blockworks. Describes "Lemon Problem in Token Markets" — the structural issue of quality tokens being indistinguishable from scams
|
|
||||||
- **Strategic value to MetaDAO**: OTC trades funded legal/regulatory review, extending ecosystem credibility beyond pure speculation
|
|
||||||
- **Economies of edge thesis**: Argues 5 high-agency analysts with LLMs replace 100 junior staff — structural case for why small, domain-expert investment entities (Living Agents) become viable
|
|
||||||
|
|
||||||
## Investment Thesis
|
|
||||||
Theia validates the Living Capital model — a sophisticated institutional investor using rigorous frameworks (Kelly Criterion, Bayesian updating, Helmer's 7 Powers) to allocate into futarchy-governed tokens. Their "economies of edge" thesis is the structural argument for why Living Capital vehicles work now: LLMs collapse the 80% execution overhead that forced funds to accumulate AUM. If Theia demonstrates persistent alpha from this approach, it becomes the reference case for agentic investment management.
|
|
||||||
|
|
||||||
**Thesis status:** TRACKING (not an investment target — a validation signal for the Living Capital model)
|
|
||||||
|
|
||||||
## Relationship to KB
|
|
||||||
- [[LLMs shift investment management from economies of scale to economies of edge because AI collapses the analyst labor cost that forced funds to accumulate AUM rather than generate alpha]] — Theia's core contribution to the KB
|
|
||||||
- [[internet finance generates 50 to 100 basis points of additional annual GDP growth by unlocking capital allocation to previously inaccessible assets and eliminating intermediation friction]] — Theia's macro thesis
|
|
||||||
- [[publishing investment analysis openly before raising capital inverts hedge fund secrecy because transparency attracts domain-expert LPs who can independently verify the thesis]] — Theia exemplifies this model
|
|
||||||
- [[futarchy-governed entities are structurally not securities because prediction market participation replaces the concentrated promoter effort that the Howey test requires]] — Theia funded MetaDAO's legal advisory to investigate this question
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Relevant Entities:
|
|
||||||
- [[metadao]] — largest institutional investor
|
|
||||||
- [[proph3t]] — founder of MetaDAO, primary counterparty
|
|
||||||
- [[nallok]] — MetaDAO operator, OTC trade counterparty
|
|
||||||
|
|
||||||
Topics:
|
|
||||||
- [[internet finance and decision markets]]
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: health
|
||||||
secondary_domains: []
|
secondary_domains: []
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [medicare-advantage, medicare-history, political-economy, risk-adjustment, payment-formula, hmo]
|
tags: [medicare-advantage, medicare-history, political-economy, risk-adjustment, payment-formula, hmo]
|
||||||
processed_by: vida
|
processed_by: vida
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [collective-intelligence, critical-systems]
|
secondary_domains: [collective-intelligence, critical-systems]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [active-inference, epistemic-value, information-gain, exploration-exploitation, expected-free-energy, curiosity, epistemic-foraging]
|
tags: [active-inference, epistemic-value, information-gain, exploration-exploitation, expected-free-energy, curiosity, epistemic-foraging]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ date: 2019-01-01
|
||||||
domain: ai-alignment
|
domain: ai-alignment
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
tags: [superorganism, ecological-economics, academic-paper]
|
tags: [superorganism, ecological-economics, academic-paper]
|
||||||
linked_set: superorganism-sources-mar2026
|
linked_set: superorganism-sources-mar2026
|
||||||
notes: "Paywalled academic paper on ScienceDirect. Crawl4AI returned only 1.5K chars of header/navigation. Content not accessible without institutional access. Consider accessing via Sci-Hub or requesting from author."
|
notes: "Paywalled academic paper on ScienceDirect. Crawl4AI returned only 1.5K chars of header/navigation. Content not accessible without institutional access. Consider accessing via Sci-Hub or requesting from author."
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: critical-systems
|
||||||
secondary_domains: [collective-intelligence, ai-alignment]
|
secondary_domains: [collective-intelligence, ai-alignment]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: low
|
priority: low
|
||||||
tags: [active-inference, multi-scale, markov-blankets, cognitive-boundaries, free-energy-principle, internalism-externalism]
|
tags: [active-inference, multi-scale, markov-blankets, cognitive-boundaries, free-energy-principle, internalism-externalism]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ date: 2020-01-01
|
||||||
domain: ai-alignment
|
domain: ai-alignment
|
||||||
format: essay
|
format: essay
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
tags: [superorganism, collective-intelligence, great-transition, emergence, systems-theory]
|
tags: [superorganism, collective-intelligence, great-transition, emergence, systems-theory]
|
||||||
linked_set: superorganism-sources-mar2026
|
linked_set: superorganism-sources-mar2026
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: collective-intelligence
|
||||||
secondary_domains: [ai-alignment, cultural-dynamics]
|
secondary_domains: [ai-alignment, cultural-dynamics]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [active-inference, communication, shared-generative-models, hermeneutic-niche, cooperative-communication, epistemic-niche-construction]
|
tags: [active-inference, communication, shared-generative-models, hermeneutic-niche, cooperative-communication, epistemic-niche-construction]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [collective-intelligence, critical-systems]
|
secondary_domains: [collective-intelligence, critical-systems]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: medium
|
priority: medium
|
||||||
tags: [active-inference, reinforcement-learning, expected-free-energy, epistemic-value, exploration-exploitation, comparison]
|
tags: [active-inference, reinforcement-learning, expected-free-energy, epistemic-value, exploration-exploitation, comparison]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ date: 2022-01-01
|
||||||
domain: ai-alignment
|
domain: ai-alignment
|
||||||
format: essay
|
format: essay
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
tags: [superorganism, collective-intelligence, biology, emergence, evolution]
|
tags: [superorganism, collective-intelligence, biology, emergence, evolution]
|
||||||
linked_set: superorganism-sources-mar2026
|
linked_set: superorganism-sources-mar2026
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [collective-intelligence]
|
secondary_domains: [collective-intelligence]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: medium
|
priority: medium
|
||||||
tags: [collective-constitutional-ai, polis, democratic-alignment, public-input, constitution-design]
|
tags: [collective-constitutional-ai, polis, democratic-alignment, public-input, constitution-design]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/9RisXkQCFLt7NA29vt5aWatcnU8SkyBgS95HxXhwXhW
|
||||||
date: 2023-11-18
|
date: 2023-11-18
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/AkLsnieYpCU2UsSqUNrbMrQNi9bvdnjxx75mZbJns9z
|
||||||
date: 2023-12-03
|
date: 2023-12-03
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/GPT8dFcpHfssMuULYKT9qERPY3heMoxwZHxgKgPw3TY
|
||||||
date: 2023-12-16
|
date: 2023-12-16
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ date: 2024-01-01
|
||||||
domain: ai-alignment
|
domain: ai-alignment
|
||||||
format: essay
|
format: essay
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
tags: [superorganism, collective-intelligence, skepticism, shermer, emergence]
|
tags: [superorganism, collective-intelligence, skepticism, shermer, emergence]
|
||||||
linked_set: superorganism-sources-mar2026
|
linked_set: superorganism-sources-mar2026
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [mechanisms, collective-intelligence]
|
secondary_domains: [mechanisms, collective-intelligence]
|
||||||
format: report
|
format: report
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [community-notes, bridging-algorithm, matrix-factorization, polarity-factors, consensus-mechanism]
|
tags: [community-notes, bridging-algorithm, matrix-factorization, polarity-factors, consensus-mechanism]
|
||||||
flagged_for_rio: ["Community Notes bridging algorithm as mechanism design — matrix factorization for consensus is novel governance mechanism"]
|
flagged_for_rio: ["Community Notes bridging algorithm as mechanism design — matrix factorization for consensus is novel governance mechanism"]
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [collective-intelligence, critical-systems]
|
secondary_domains: [collective-intelligence, critical-systems]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [active-inference, free-energy-principle, multi-agent, collective-intelligence, shared-intelligence, ecosystems-of-intelligence]
|
tags: [active-inference, free-energy-principle, multi-agent, collective-intelligence, shared-intelligence, ecosystems-of-intelligence]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: collective-intelligence
|
||||||
secondary_domains: [ai-alignment, critical-systems]
|
secondary_domains: [ai-alignment, critical-systems]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [active-inference, federated-inference, belief-sharing, multi-agent, distributed-intelligence, collective-intelligence]
|
tags: [active-inference, federated-inference, belief-sharing, multi-agent, distributed-intelligence, collective-intelligence]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/9ABv3Phb44BNF4VFteSi9qcWEyABdnRqkorNuNtzdh2
|
||||||
date: 2024-01-12
|
date: 2024-01-12
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/CF9QUBS251FnNGZHLJ4WbB2CVRi5BtqJbCqMi47NX1P
|
||||||
date: 2024-01-24
|
date: 2024-01-24
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/HyA2h16uPQBFjezKf77wThNGsEoesUjeQf9rFvfAy4t
|
||||||
date: 2024-02-05
|
date: 2024-02-05
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: health
|
||||||
secondary_domains: []
|
secondary_domains: []
|
||||||
format: report
|
format: report
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: medium
|
priority: medium
|
||||||
tags: [devoted-health, alignment-healthcare, clover-health, medicare-advantage, startup, purpose-built, technology-platform]
|
tags: [devoted-health, alignment-healthcare, clover-health, medicare-advantage, startup, purpose-built, technology-platform]
|
||||||
processed_by: vida
|
processed_by: vida
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/US8j6iLf9GkokZbk89Bo1qnGBees5etv5sEfsfvCoZK
|
||||||
date: 2024-02-13
|
date: 2024-02-13
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/E1FJAp8saDU6Da2ccayjLBfA53qbjKRNYvu7QiMAnjQ
|
||||||
date: 2024-02-18
|
date: 2024-02-18
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/H59VHchVsy8UVLotZLs7YaFv2FqTH5HAeXc4Y48kxie
|
||||||
date: 2024-02-18
|
date: 2024-02-18
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/J7dWFgSSuMg3BNZBAKYp3AD5D2yuaaLUmyKqvxBZgHh
|
||||||
date: 2024-02-20
|
date: 2024-02-20
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/Dn638yPirR3e2UNNECpLNJApDhxsjhJTAv9uEd9LBVV
|
||||||
date: 2024-02-26
|
date: 2024-02-26
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: collective-intelligence
|
||||||
secondary_domains: [critical-systems, ai-alignment]
|
secondary_domains: [critical-systems, ai-alignment]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: medium
|
priority: medium
|
||||||
tags: [collective-intelligence, multi-scale, diverse-intelligence, biology, morphogenesis, competency-architecture]
|
tags: [collective-intelligence, multi-scale, diverse-intelligence, biology, morphogenesis, competency-architecture]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/ELwCkHt1U9VBpUFJ7qGoVMatEwLSr1HYj9q9t8JQ1Nc
|
||||||
date: 2024-03-03
|
date: 2024-03-03
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/D9pGGmG2rCJ5BXzbDoct7EcQL6F6A57azqYHdpWJL9C
|
||||||
date: 2024-03-13
|
date: 2024-03-13
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/5qEyKCVyJZMFZSb3yxh6rQjqDYxASiLW7vFuuUTCYnb
|
||||||
date: 2024-03-19
|
date: 2024-03-19
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/BqMrwwZYdpbXNsfpcxxG2DyiQ7uuKB69PznPWZ33GrZ
|
||||||
date: 2024-03-26
|
date: 2024-03-26
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/HXohDRKtDcXNKnWysjyjK8S5SvBe76J5o4NdcF4jj96
|
||||||
date: 2024-03-28
|
date: 2024-03-28
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/BgHv9GutbnsXZLZQHqPL8BbGWwtcaRDWx82aeRMNmJb
|
||||||
date: 2024-05-27
|
date: 2024-05-27
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/iPzWdGBZiHMT5YhR2m4WtTNbFW3KgExH2dRAsgWydPf
|
||||||
date: 2024-05-27
|
date: 2024-05-27
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/9jAnAupCdPQCFvuAMr5ZkmxDdEKqsneurgvUnx7Az9z
|
||||||
date: 2024-05-30
|
date: 2024-05-30
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/8AEsxyN8jhth5WQZHjU9kS3JcRHaUmpck7qZgpv2v4w
|
||||||
date: 2024-05-30
|
date: 2024-05-30
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/BMZbX7z2zgLuq266yskeHF5BFZoaX9j3tvsZfVQ7RUY
|
||||||
date: 2024-06-05
|
date: 2024-06-05
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/7KkoRGyvzhvzKjxuPHjyxg77a52MeP6axyx7aywpGbd
|
||||||
date: 2024-06-08
|
date: 2024-06-08
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/4ztwWkz9TD5Ni9Ze6XEEj6qrPBhzdTQMfpXzZ6A8bGz
|
||||||
date: 2024-06-14
|
date: 2024-06-14
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/DgXa6gy7nAFFWe8VDkiReQYhqe1JSYQCJWUBV8Mm6aM
|
||||||
date: 2024-06-22
|
date: 2024-06-22
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/9BMRY1HBe61MJoKEd9AAW5iNQyws2vGK6vuL49oR3Az
|
||||||
date: 2024-06-26
|
date: 2024-06-26
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/G95shxDXSSTcgi2DTJ2h79JCefVNQPm8dFeDzx7qZ2k
|
||||||
date: 2024-07-01
|
date: 2024-07-01
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/Hda19mrjPxotZnnQfpAhJtxWvfC6JCXbMquohThgsd5
|
||||||
date: 2024-07-01
|
date: 2024-07-01
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/16ZyAyNumkJoU9GATreUzBDzfS6rmEpZnUcQTcdfJiD
|
||||||
date: 2024-07-01
|
date: 2024-07-01
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/EXehk1u3qUJZSxJ4X3nHsiTocRhzwq3eQAa6WKxeJ8X
|
||||||
date: 2024-07-04
|
date: 2024-07-04
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/xU6tQoDh3Py4MfAY3YPwKnNLt7zYDiNHv8nA1qKnxVM
|
||||||
date: 2024-07-09
|
date: 2024-07-09
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/BU8kQ7ECq8CJ9BHUZfYsjHFKPMGsF6oJn5d6b1tArdw
|
||||||
date: 2024-07-18
|
date: 2024-07-18
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/5c2XSWQ9rVPge2Umoz1yenZcAwRaQS5bC4i4w87B1WU
|
||||||
date: 2024-07-18
|
date: 2024-07-18
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/7AbivixQZTrgnqpmyxW2j1dd4Jyy15K3T2T7MEgfg8D
|
||||||
date: 2024-08-03
|
date: 2024-08-03
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/J57DcV2yQGiDpSetQHui6Piwjwsbet2ozXVPG77kTvT
|
||||||
date: 2024-08-14
|
date: 2024-08-14
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/yTiRuoXWQVdVgbUJBU6J3FF1Sxnzy7FW7osqkkfMK6G
|
||||||
date: 2024-08-20
|
date: 2024-08-20
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/5TRuK9TLZ9bUPtp6od6pLKN6GxbQMByaBwVSCArNaS1
|
||||||
date: 2024-08-20
|
date: 2024-08-20
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/AKMnVnSC8DzoZJktErtzR2QNt1ESoN8i2DdHPYuQTMG
|
||||||
date: 2024-08-27
|
date: 2024-08-27
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/GugKjNpirFNaaRkEStRKGJPnutptsnTA3XuCJ8nwaVt
|
||||||
date: 2024-08-28
|
date: 2024-08-28
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/8cnQAxS3WQXhD2eAjKSJ6wmBwaJskRZFYByMPKEhD1o
|
||||||
date: 2024-08-28
|
date: 2024-08-28
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/eNPP3Tm4AAyDwq9N4BwJwBzFD14KXDSVY6bhMRaBuFt
|
||||||
date: 2024-08-28
|
date: 2024-08-28
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/AuNNyR4oU2zkG1sYBzJ3DJmyDzMKSmSW2yASorWenuC
|
||||||
date: 2024-08-28
|
date: 2024-08-28
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/EmPUGgv2Utzuu2vgSu6GcTRAtJMox5vJeZKi95cBgfJ
|
||||||
date: 2024-08-28
|
date: 2024-08-28
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/2LKqzegdHrcrrRCHSuTS2fMjjJuZDfzuRKMnzPhzeD4
|
||||||
date: 2024-08-30
|
date: 2024-08-30
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/53EDms4zPkp4khbwBT3eXWhMALiMwssg7f5zckq22tH
|
||||||
date: 2024-08-31
|
date: 2024-08-31
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/evGundfgMRZWCYsGF7GMKcgh6LjxDTFrvWRAhxiQS8h
|
||||||
date: 2024-09-05
|
date: 2024-09-05
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [collective-intelligence, mechanisms]
|
secondary_domains: [collective-intelligence, mechanisms]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [social-choice, representative-alignment, arrows-theorem, privilege-graphs, learning-theory, generalization]
|
tags: [social-choice, representative-alignment, arrows-theorem, privilege-graphs, learning-theory, generalization]
|
||||||
flagged_for_rio: ["Social choice mechanisms as prediction market analogues — preference aggregation parallels"]
|
flagged_for_rio: ["Social choice mechanisms as prediction market analogues — preference aggregation parallels"]
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/8SwPfzKhaZ2SQfgfJYfeVRTXALZs2qyFj7kX1dEkd29
|
||||||
date: 2024-10-10
|
date: 2024-10-10
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/B82Dw1W6cfngH7BRukAyKXvXzP4T2cDsxwKYfxCftoC
|
||||||
date: 2024-10-22
|
date: 2024-10-22
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/A19yLRVqxvUf4cTDm6mKNKadasd7YSYDrzk6AYEyubA
|
||||||
date: 2024-10-22
|
date: 2024-10-22
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/Gp3ANMRTdGLPNeMGFUrzVFaodouwJSEXHbg5rFUi9ro
|
||||||
date: 2024-10-30
|
date: 2024-10-30
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [mechanisms, collective-intelligence]
|
secondary_domains: [mechanisms, collective-intelligence]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: medium
|
priority: medium
|
||||||
tags: [democratic-AI, governance, framework, levels, pluralistic-alignment, ICML-2025]
|
tags: [democratic-AI, governance, framework, levels, pluralistic-alignment, ICML-2025]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/HiNWH2uKxjrmqZjn9mr8vWu5ytp2Nsz6qLsHWa5XQ1V
|
||||||
date: 2024-11-08
|
date: 2024-11-08
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/6LcxhHS3JvDtbS1GoQS18EgH5Pzf7AnqQpR7D4HxmWp
|
||||||
date: 2024-11-13
|
date: 2024-11-13
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/ApywwMrE9vkWiatZwQVU6wdvNsHrYZkhegNCV5XDZ8y
|
||||||
date: 2024-11-21
|
date: 2024-11-21
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/B4zpF4iHeF91qq8Szb9aD6pW1DrwSy6djD4QPWJQn3d
|
||||||
date: 2024-11-21
|
date: 2024-11-21
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/zN9Uft1zEsh9h7Wspeg5bTNirBBvtBTaJ6i5KcEnbAb
|
||||||
date: 2024-11-21
|
date: 2024-11-21
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/2QUxbiMkDtoKxY2u6kXuevfMsqKGtHNxMFYHVWbqRK1
|
||||||
date: 2024-11-25
|
date: 2024-11-25
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/FXkyJpCVADXS6YZcz1Kppax8Kgih23t6yvze7ehELJp
|
||||||
date: 2024-11-25
|
date: 2024-11-25
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/4gaJ8bi1gpNEx6xSSsepjVBM6GXqTDfLbiUbzXbARHW
|
||||||
date: 2024-12-02
|
date: 2024-12-02
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/GBQZvZAeW8xUuVV5a9FJHSyttzY5fPGuvkwLTpWLbw6
|
||||||
date: 2024-12-04
|
date: 2024-12-04
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/DhY2YrMde6BxiqCrqUieoKt5TYzRwf2KYE3J2RQyQc7
|
||||||
date: 2024-12-05
|
date: 2024-12-05
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/C2Up9wYYJM1A94fgJz17e3Xsr8jft2qYMwrR6s4ckaK
|
||||||
date: 2024-12-16
|
date: 2024-12-16
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/A74H61YqwsbwRczuErbUyh9kqG1A7ZbiE1W5hWZmT9f
|
||||||
date: 2024-12-19
|
date: 2024-12-19
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/5V5MFN69yB2w82QWcWXyW84L3x881w5TanLpLnKAKyK
|
||||||
date: 2024-12-30
|
date: 2024-12-30
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [collective-intelligence, mechanisms]
|
secondary_domains: [collective-intelligence, mechanisms]
|
||||||
format: report
|
format: report
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [democratic-alignment, evaluation, pluralistic, global-dialogues, weval, samiksha, empirical-results]
|
tags: [democratic-alignment, evaluation, pluralistic, global-dialogues, weval, samiksha, empirical-results]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: ai-alignment
|
||||||
secondary_domains: [cultural-dynamics, collective-intelligence]
|
secondary_domains: [cultural-dynamics, collective-intelligence]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: medium
|
priority: medium
|
||||||
tags: [homogenization, LLM, creative-diversity, empirical, scale-effects]
|
tags: [homogenization, LLM, creative-diversity, empirical, scale-effects]
|
||||||
flagged_for_clay: ["direct implications for AI in creative industries"]
|
flagged_for_clay: ["direct implications for AI in creative industries"]
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: entertainment
|
||||||
secondary_domains: []
|
secondary_domains: []
|
||||||
format: report
|
format: report
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: medium
|
priority: medium
|
||||||
tags: [hollywood, genai-adoption, studio-strategy, production-costs, ip-liability]
|
tags: [hollywood, genai-adoption, studio-strategy, production-costs, ip-liability]
|
||||||
processed_by: clay
|
processed_by: clay
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/CJW4iZPT14sVNzoc4Yibx1LbnY12sA75gZCP9HZk11U
|
||||||
date: 2025-01-13
|
date: 2025-01-13
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/B8WLuXqoBb3hRD9XBCNuSqxDqCXCixqRdKR4pVFGzNP
|
||||||
date: 2025-01-14
|
date: 2025-01-14
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/3tApJXw2REQAZZyehiaAnQSdauVNviNbXsuS4inn8PA
|
||||||
date: 2025-01-27
|
date: 2025-01-27
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/CBhieBvzo5miQBrdaM7vALpgNLt4Q5XYCDfNLaE2wXJ
|
||||||
date: 2025-01-28
|
date: 2025-01-28
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: entity-data
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ domain: collective-intelligence
|
||||||
secondary_domains: [ai-alignment, critical-systems]
|
secondary_domains: [ai-alignment, critical-systems]
|
||||||
format: paper
|
format: paper
|
||||||
status: null-result
|
status: null-result
|
||||||
last_attempted: 2026-03-11
|
|
||||||
priority: high
|
priority: high
|
||||||
tags: [active-inference, multi-agent, group-level-generative-model, markov-blankets, collective-behavior, emergence]
|
tags: [active-inference, multi-agent, group-level-generative-model, markov-blankets, collective-behavior, emergence]
|
||||||
processed_by: theseus
|
processed_by: theseus
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ url: "https://www.futard.io/proposal/7FY4dgYDX8xxwCczrgstUwuNEC9NMV1DWXz31rMnGNT
|
||||||
date: 2025-02-03
|
date: 2025-02-03
|
||||||
domain: internet-finance
|
domain: internet-finance
|
||||||
format: data
|
format: data
|
||||||
status: unprocessed
|
status: null-result
|
||||||
tags: [futardio, metadao, futarchy, solana, governance]
|
tags: [futardio, metadao, futarchy, solana, governance]
|
||||||
event_type: proposal
|
event_type: proposal
|
||||||
processed_by: rio
|
processed_by: rio
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue