Technical Overview
Current implementation state across scoring, identity, APIs, graph systems, and planned gaps.
This page is the short-form system view: what is live, what changed recently, and what is still planned. It is grounded in the current codebase plus the latest architecture tracker, not only older theory docs.
What Is Live Now
| Area | Current state |
|---|---|
| Token foundation | Florin, Joule, HoW, and membership NFT flows are built around Solana Token-2022 on mainnet-beta |
| Identity model | Members, personas, standings, and contribution levels are modeled separately instead of being collapsed into one field |
| Scoring | CES-based synthesized scoring with an HHI diversity bonus is active in the contribution service and the ranking cron |
| Data layer | Neo4j stores member identity, circles, expertise, graph relationships, and scoring metadata |
| API layer | GraphQL Yoga is the canonical application API; REST handles service-specific routes such as Bridge, Fixie, Solana, documents, and prices |
| Frontend surface | The monorepo runs app, api, docs, web, and shared packages on Next.js 16 + React 19 |
| Deployment surface | Frontend and API deployment targets are documented around Coolify on bare metal infrastructure |
Contribution And Ranking Model
The current contribution engine is no longer the old linear 1.0 / 1.5 / 1.5 weighting model. The code now uses:
Final Score = A × [Σ wᵢ × xᵢ^ρ]^(1/ρ) × (1 + k × (1 - HHI))Current defaults in the service layer:
alpha = 1.0beta = 1.0gamma = 1.0rho = -0.5k = 0.3
Important consequences:
- Balanced portfolios are rewarded through the HHI diversity bonus.
- Single-token holders are no longer over-rewarded by the old zero-input bug.
- Investment amount can still act as a floor on contribution level where the later architecture phases require it.
Emission Schedule
The current token foundation still follows the live 7,000,000,000 emission pool and the 4-year halving model:
- Joule: 50%
- HoW: 30%
- Florin: 20%
- Contribution Emission: 70% mined over time through participation
These details matter because they shape how score, participation, and future governance weight accumulate across the network.
Identity Model
Current identity state separates three concerns:
- Standing: lifecycle state such as
GUEST,ACTIVE,INACTIVE,SUSPENDED,REVOKED,BANNED - Contribution level: score-derived or investment-floor level such as
OBSERVER,INITIATE,EXPLORER,NAVIGATOR,FOUNDER - Ring: percentile bucket used for relative ranking
This is a major cleanup from earlier docs that mixed lifecycle and rank into one enum.
High-Value Subsystems
- Membership: non-transferable membership certificates, proofs, and persona-linked identity
- Membership NFT minting: Minting live through the current Solana membership flow
- Knowledge graph: Neo4j-backed network graph, FIBO-aligned entity modeling, and relationship-driven views
- Fixies: AI-agent route family and supporting service surface
- Bridge flows: fiat on/off-ramp infrastructure and KYC-related route families
- Scoring and expertise: CES scoring, domain expertise profiles, and stellar metadata fields
Still Planned Or In Progress
The latest architecture tracker still leaves several phases open:
- On-chain identity /
sol-didintegration - NFT live-update triggers when score or metadata changes
- Privacy and CryptoGrapher surface completion
- Bridge compliance hardening and remaining operational fixes
For the longer implementation tracker, use Architecture / Current State. For the scientific and design material behind the system shape, use Research Atlas.
Where To Go Next
- Architecture tracker: Current State
- Algorithms and math context: Algorithm Reference
- Graph and network foundations: /docs/TheNetwork
- Local setup: Local Development