Build OAPPs once. Deploy everywhere. 40+ providers. Zero rewrites.
STAR is your complete Web5 development toolkit — ODK for building, API for running, CLI for publishing, and COSMIC ORM for universal data abstraction across every blockchain, database and protocol.
The STAR ODK dynamically generates optimized code for every platform and provider you target — no vendor lock-in, no rebuilding. Write your business logic in C#, debug it instantly, and let STAR generate Rust for the data layer.
🧬
COSMIC ORM
Universal abstraction layer over 40+ providers. Define data once, COSMIC translates to Holochain, Ethereum, MongoDB, Neo4j, IPFS, SQLite and more.
⚙️
Dynamic Code Generation
C# business logic + auto-generated Rust data layer. Debug in C#, access both Rust and C# libraries. Best of both worlds.
🌌
Hierarchical Architecture
Stars, SuperStars, GrandSuperStars and GreatGrandSuperStars. Cosmic metaphors for organizing your applications at scale.
📦
Multi-Provider Support
Target Holochain, Ethereum, EOSIO, MongoDB, Neo4j, IPFS, SQLite and 30+ more. One codebase, infinite platforms.
✓
Change Management
Track and version all data model changes across your application lifecycle.
✓
Auto-Provider Selection
Automatically find the fastest, most reliable provider in your region. Built-in load balancing and failover.
RUNTIME LAYER
STAR API: Run Everywhere
REST API for the Web5 layer. Deploy your OAPPs and let STAR API handle routing, data persistence, state management, and cross-provider coordination — all automatically.
CAPABILITIES
What STAR API Provides
01
OAPP Execution
Run OAPPs across the Omniverse with cross-world state synchronization and shared quest progression.
02
Avatar SSO
Single Sign-On through your OASIS Avatar. One identity, every application, every world.
03
Data Operations
Read, write, query and sync data across 40+ providers with COSMIC ORM abstraction.
04
NFT Management
Create, mint, transfer and track NFTs across every blockchain in the Omniverse.
05
Real-Time Sync
Live data synchronization across all connected providers and players in real-time.
DOCUMENTATION
Get Started with STAR API
The STAR API is fully documented with live sandbox endpoints, Swagger UI, and runnable examples. Start building immediately.
The STAR CLI is your gateway to STARNET. Authenticate once with your OASIS Avatar, then create, publish, search and install OAPPs — all from the command line.
# Start your STAR session - ignites the STAR
$star ignite
STAR Ignited Successfully!
# Create a new OAPP using the interactive wizard
$star wiz
Welcome to the OASIS Omniverse/MagicVerse Light Wizard!
This wizard will allow you create an OAPP...
✔ OAPP created: ./QuestMaster/OAPPDNA.json
Folder: ./QuestMaster
Name: Quest Master
Type: OAPP
# Publish your OAPP - converts folder to .oapp file
$star oapp publish ./QuestMaster
✔ Published Quest Master to STARNET
✔ Generated Quest Master.oapp file
✔ Signed with Avatar @builder
✔ Replicated across providers
✔ Available in STARNET and across the Omniverse
# Search and discover OAPPs from other developers
$star oapp search "quest"Searching STARNET for 'quest'...
[1] Quest Master@1.0.0 by @builder
Rating: ★4.8 | Installs: 12.4k
[2] Epic Quests@2.1.0 by @adventurer
Rating: ★4.9 | Installs: 45.2k
👤
Avatar SSO
One login for everything. Publish, install, and manage all your OAPPs with Avatar authentication.
📦
Dependency Resolution
Automatic dependency resolution and version management. Let STAR handle the complexity.
🔐
Semantic Versioning
Automatic versioning, release management, and changelog tracking for all your OAPPs.
🌐
Multi-Platform
Available on Windows, Linux, and macOS. Build on your platform of choice.
The next-generation AI-native, decentralized Object-Relational Mapping engine that unifies data, intelligence and interoperability across all layers of the OASIS Omniverse. Define your data model once and COSMIC automatically translates across 40+ providers — blockchains, databases, storage, APIs, IoT, cloud services, and beyond.
The Five Pillars
🌐
UNIVERSAL DATA ABSTRACTION
Maps any data structure, format or state across any system, app or chain. One query, every world.
🧠
AI-NATIVE INTELLIGENCE
Understands context, relationships and intent to optimize queries, predictions and outcomes.
🔗
CROSS-WORLD INTEROPERABILITY
One data layer that fails gracefully. All systems connected, no central point of failure.
🔓
DECENTRALIZED DESIGN
No central authority. Distributed architecture built for sovereignty and resilience.
♾️
INFINITE SCALE & INFINITY
From kilo objects to planetary scale. Grows infinitely without degradation.
Powering All Layers of the Omniverse
🔐
Identity
Unified identity & reputation mapping
💎
Assets
Digital & real-world assets, NFTs & more
🛒
Commerce
Orders, payments, marketplaces
🌍
Worlds
Virtual worlds, land, objects
🤖
AI & Agents
Memories, skills, intelligence
🏛️
Governance
DAOs, proposals, policies
☁️
Infrastructure
Compute, storage, networking
SUPPORTED PLATFORMS
40+ Providers
COSMIC speaks every language. Works with:
• Holochain
• Ethereum
• Solana
• Polygon
• EOSIO
• Telos
• MongoDB
• Neo4j
• PostgreSQL
• MySQL
• IPFS
• Arweave
• AWS S3
• Azure Blob
• Redis
+ 25 more
AI-NATIVE CAPABILITIES
Intelligent Data Layer
1
Schema Generation
AI learns your data, auto-creates schemas & models on the fly.
2
Relationship Discovery
AI auto-detects relationships & patterns across all data.
3
Anomaly Detection
AI detects issues, inconsistencies and anomalies in real-time.
4
Predictive Optimization
AI predicts query needs and optimizes performance automatically.
Developer Experience
🔧
UNIVERSAL SDKs
JavaScript, Python, Rust, Go, C#, Java, and more. Same API everywhere.
📚
INTUITIVE ORM APIs
Simple, powerful, expressive. Developer-friendly from day one.
💬
NATURAL LANGUAGE QUERIES
Describe what you want. AI translates intent to optimized queries.
🎨
VISUAL SCHEMA BUILDER
Drag, drop, deploy. No code schema design with instant validation.
⚡
REALTIME SYNC & SUBSCRIPTIONS
Live data everywhere. Push updates to any connected client instantly.
// Create a new holon with custom propertiesvar myHolon = new CustomHolon();
myHolon.Name = "My Quest Reward";
myHolon.Description = "Epic sword found in ancient ruins";
myHolon.MetaData["Rarity"] = "Legendary";
myHolon.MetaData["Damage"] = "150";
// Save via Zome (auto-syncs to all configured providers)var result = await zome.SaveAsync(myHolon);
if (!result.IsError && result.Result != null)
✓ Holon saved with ID: {result.Result.Id}else// Error handling: {result.Message}
Load a Holon (Query Across All Providers)
// Load a holon by ID (COSMIC finds it across all providers)var loaded = await zome.GlobalHolonData.LoadHolonAsync<CustomHolon>(holonId);
if (!loaded.IsError && loaded.Result != null)
{
// Data unified from all providersLoaded: {loaded.Result.Name}
Rarity: {loaded.Result.MetaData["Rarity"]}
Damage: {loaded.Result.MetaData["Damage"]}
Created: {loaded.Result.CreatedDate}
Version: {loaded.Result.Version}
}
Save with Version Control (Auto-Tracking)
// Update and save (COSMIC auto-tracks versions)
myHolon.MetaData["Damage"] = "200"; // Buff the weaponvar updateResult = await holon.SaveAsync<CustomHolon>();
✓ Version increased: {updateResult.Result.Version}
✓ VersionId: {updateResult.Result.VersionId}
✓ PreviousVersionId: {updateResult.Result.PreviousVersionId}
✓ ModifiedDate: {updateResult.Result.ModifiedDate}
✓ ModifiedByAvatarId: {updateResult.Result.ModifiedByAvatarId}
Query Holons by Metadata (Search Everything)
// Find all legendary items created by an avatarvar filter = new Dictionary<string, object>()
{
{ "Rarity", "Legendary" },
{ "CreatedByAvatarId", avatarId.ToString() }
};
var results = await STAR.OASISAPI.Data.LoadHolonsByMetaDataAsync<CustomHolon>(filter);
✓ Found {results.Result.Count()} legendary items
Work Across Celestial Bodies
// Save to a planet (holons auto-replicate to all providers)var planet = new Planet();
var saveResult = await planet.SaveHolonAsync<CustomHolon>(myHolon);
// The holon is now replicated across:// - MongoDB, PostgreSQL, Neo4j, Holochain, Ethereum, Solana...// - All 40+ configured providers// - Accessible from any world, app, or system✓ Holon synced to all backends instantly
INTELLIGENT SYSTEMS
AI-Native Infrastructure
STAR is built for AI from the ground up. Deploy intelligent agents, autonomous systems, and on-chain/off-chain AI workloads with integrated monitoring and evolution.
In Progress
🤖
AI AGENTS
Autonomous agents that coordinate across worlds, make decisions, and evolve based on outcomes. Full lifecycle management and persistence.
In Progress
⚙️
AI WORKFLOWS
Orchestrate complex multi-step processes with decision trees, conditional logic, and human-in-the-loop approval gates.
Coming Soon
🧠
AUTONOMOUS SYSTEMS
Self-managing systems that monitor, respond to, and adapt to changing conditions without manual intervention.
In Progress
📊
DATA INTELLIGENCE
Real-time analytics, predictive modeling, and intelligent data aggregation across the Omniverse.
Coming Soon
🐝
SWARM INTELLIGENCE
Coordinate armies of agents working in parallel — distributed problem-solving at Omniverse scale.
Coming Soon
🔮
PREDICTIVE AUTOMATION
AI predicts what will happen next and automates prevention or preparation — staying ahead of change.
In Progress
⛓️
ON-CHAIN AI
Intelligent smart contracts and on-chain decision-making with full auditability and deterministic results.
In Progress
☁️
OFF-CHAIN AI
Leverage cloud computing for heavy lifting — train models, run simulations, feed results back on-chain.
SAFE INNOVATION
Version-Controlled Sandbox Environment
Run multiple versions of your OAPP side-by-side with full rollback and roll-forward capabilities. Test breaking changes safely, then promote to production with confidence.
VERSIONS
Sandbox Tiers
v1.0.0
ACTIVE
Current production version — users are actively using this.
v1.1.0
ACTIVE
Stable version, users can opt-in to early access.
v1.2.0
TESTING
Beta testing with select users — full telemetry and feedback.
✓ Safe experimentation without affecting production
✓ Modular upgrades — update one component at a time
✓ Reproducible environments — exact replication of any version
✓ Rapid rollback — revert to any previous version instantly
✓ Roll-forward confidence — move ahead knowing you can go back
COMPOSABLE ARCHITECTURE
Smart Bricks: Building Blocks for Web5
Modular intelligent holons that wrap and extend Web4 holons. Smart Bricks are the composable, nestable building blocks of the Omniverse — plug them together like LEGO to create apps, worlds, experiences, and economies.
CORE PHILOSOPHY
How We Build
1
BUILD ONCE
Create a Smart Brick component once and reuse it infinitely across any world or application.
2
REUSE INFINITELY
No code duplication, no copy-paste bugs. One canonical definition, infinite instances.
3
COMPOSE EVERYTHING
Smart Bricks combine with other Smart Bricks to create complex systems — no monolithic architecture required.
4
CONNECT ALL WORLDS
Smart Bricks work seamlessly across Web5, Web4, blockchains, databases, and off-chain systems.
DESIGNED FOR
What You Can Build
📱 Apps
🛒 Commerce Systems
🌍 Worlds
🎮 Interactive Environments
🤖 AI Workflows
🏗️ Metaverse Infrastructure
⚡ Automations
🔌 Interoperable Ecosystems
Instead of rebuilding complex logic from scratch, assemble reusable interoperable components like programmable digital infrastructure.
Smart Bricks Can Represent
🗺️
GEO-LOCATION
Geo-NFTs, Geo-HotSpots, real-world spatial data and location-based interactions.
🎨
DIGITAL ASSETS
NFTs, templates, asset packs, avatars, digital identities and collectibles.
🤖
INTELLIGENT SYSTEMS
AI agents, workflows, smart contracts, oracles, and autonomous decision-makers.
🌐
INTEGRATIONS
APIs, connectors, bridges, real-world data feeds, and cross-chain communication.
🏪
COMMERCE & GOVERNANCE
Commerce systems, marketplaces, DAO modules, creator tools, and revenue systems.