Golden Key System
Innovations #1026, #1027 — Recurring Engagement & Midas Touch
Overview
The Golden Key system incentivizes ongoing engagement with platform documentation and content. Members earn keys by discovering and engaging with content, which unlock multipliers for their voting power.
Key Types
┌─────────────────────────────────────────────────────────┐
│ KEY HIERARCHY │
├─────────────────────────────────────────────────────────┤
│ │
│ 🔑 STANDARD KEY │
│ │ • Found by discovering document │
│ │ • Base engagement credit │
│ │ │
│ ✨ GLOWING KEY │
│ │ • 5+ finders on same document │
│ │ • 1 Midas Touch token │
│ │ │
│ 💫 BRIGHT KEY │
│ │ • 20+ finders │
│ │ • 2 Midas Touch tokens │
│ │ │
│ ⭐ RADIANT KEY │
│ │ • 50+ finders │
│ │ • 3 Midas Touch tokens │
│ │ │
│ 🌟 LEGENDARY KEY │
│ │ • 100+ finders │
│ │ • 5 Midas Touch tokens │
│ │ │
└─────────────────────────────────────────────────────────┘
Re-Stamping System (#1026)
Keys can be “re-stamped” at regular intervals, encouraging ongoing engagement:
| Interval | Multiplier | Condition |
|---|---|---|
| 7 days | 100% | Re-engage with any keyed content |
| 30 days | 25% | Must engage with 3+ documents |
| 90 days | 10% | Must engage with 10+ documents |
Midas Touch Tokens (#1027)
Midas Touch tokens allow members to convert Credits to Joules at favorable rates:
interface MidasConversion {
tokensRequired: number;
creditsConverted: number;
joulesReceived: number;
bonusRate: number; // 1.1 = 10% bonus
}
// Example conversion
const conversion = {
tokensRequired: 1,
creditsConverted: 100,
joulesReceived: 110, // 10% bonus
bonusRate: 1.1
};
Multiplier Calculation
Golden Keys contribute to the overall voting multiplier:
Total Multiplier = Timing × Mark Level × Outlet × Golden Key × First 100
= 1.5 × 2.5 × 1.5 × 1.25 × 1.5
= Maximum 7.03x per factor
= Theoretical max: 562.5x
Five Circles Organization (#1048)
Documents are organized into five thematic circles:
- Foundation Circle: Platform basics
- Economic Circle: Credits, Joules, HIVI
- Governance Circle: Voting, The 300
- Community Circle: Initiatives, nodes
- Innovation Circle: Patents, development
Completing all keys in a circle earns the “Full Circle” milestone.
Database Schema
CREATE TABLE golden_key_multipliers (
id UUID PRIMARY KEY,
user_id UUID NOT NULL,
total_keys_found INTEGER DEFAULT 0,
glowing_keys INTEGER DEFAULT 0,
bright_keys INTEGER DEFAULT 0,
radiant_keys INTEGER DEFAULT 0,
legendary_keys INTEGER DEFAULT 0,
midas_tokens INTEGER DEFAULT 0,
current_multiplier DECIMAL(6,4) DEFAULT 1.0,
last_restamp_7d TIMESTAMP,
last_restamp_30d TIMESTAMP,
last_restamp_90d TIMESTAMP
);
Related Innovations
- #1028 Multiplier Stacking System
- #1029 Production Level Multiplier Lock
- #1045 Document Lifecycle Management