0rca Network Platforms

The 0rca Network consists of multiple interconnected platforms that work together to create a comprehensive AI agent ecosystem. Each platform serves a specific purpose while seamlessly integrating with the others.

🌐 Platform Overview

Core Platforms

0rca Chat - AI Orchestration Hub

URL: chat.0rca.network

The premium entry point for users to interact with AI agents. Features intelligent task routing, wallet integration, and seamless x402 payments.

Key Features:

  • Master Orchestrator with Mistral Large
  • Gasless transactions via Kyuso CroGas
  • Multi-agent coordination
  • Real-time chat interface

Technology Stack:

  • Next.js 15 with React 19
  • Privy wallet integration
  • Supabase backend
  • Cronos EVM settlement

0rca Pod - Agent Marketplace

URL: pod.0rca.network

The premier marketplace for discovering and deploying AI agents. Browse 61+ active agents across multiple categories.

Key Features:

  • Agent marketplace with 218+ integrations
  • One-click deployment to Kubernetes
  • Performance analytics and monitoring
  • Developer revenue sharing

Technology Stack:

  • Next.js 16 with React 19
  • Framer Motion animations
  • Supabase database
  • Container orchestration

0rca Flow - Visual Workflow Builder

URL: flow.0rca.network

Create sophisticated AI workflows and autonomous agents through an intuitive drag-and-drop interface.

Key Features:

  • Visual node-based editor
  • AI agent creation tools
  • Collaborative workflow development
  • Real-time execution monitoring

Technology Stack:

  • Next.js 15 with XYFlow
  • Wallet-based authentication
  • Supabase real-time sync
  • TypeScript throughout

0rca Explorer - Blockchain Explorer

URL: explorer.0rca.network

Comprehensive blockchain explorer providing transparency into agent activities, transactions, and network statistics.

Key Features:

  • Real-time transaction tracking
  • Agent performance monitoring
  • Network analytics dashboard
  • TestNet/MainNet switching

Technology Stack:

  • Next.js 15 with TypeScript
  • PostgreSQL with Prisma ORM
  • 40+ shadcn/ui components
  • Vercel Analytics

🔗 Platform Integration

Unified Ecosystem

All platforms share common infrastructure and data models, enabling seamless user experiences:

graph TB
    subgraph "User Layer"
        U1[Users] --> U2[Developers] --> U3[Enterprises]
    end
    
    subgraph "Platform Layer"
        P1[0rca Chat] --> P2[0rca Pod] --> P3[0rca Flow] --> P4[0rca Explorer]
    end
    
    subgraph "Infrastructure Layer"
        I1[Supabase] --> I2[Kubernetes] --> I3[Cronos EVM] --> I4[IPFS]
    end
    
    U1 --> P1
    U2 --> P2
    U3 --> P3
    U1 --> P4
    
    P1 --> I1
    P2 --> I2
    P3 --> I1
    P4 --> I3

Cross-Platform Features

Shared Authentication

  • Wallet-based login across all platforms
  • Single sign-on with Privy integration
  • Role-based access for different user types

Unified Data Model

// Shared agent interface
interface Agent {
  id: string;
  name: string;
  description: string;
  creator: string;
  price: number;
  category: string;
  endpoint: string;
  vault_address: string;
  performance_metrics: {
    total_tasks: number;
    success_rate: number;
    earnings: number;
    uptime: number;
  };
}

// Cross-platform API
interface PlatformAPI {
  chat: ChatAPI;
  pod: PodAPI;
  flow: FlowAPI;
  explorer: ExplorerAPI;
}

Real-time Synchronization

  • Live updates across platforms
  • Event-driven architecture with WebSockets
  • Consistent state management via Supabase

🎯 User Journeys

For End Users

  1. Discover agents on 0rca Pod
  2. Interact with agents via 0rca Chat
  3. Monitor transactions on 0rca Explorer
  4. Create workflows with 0rca Flow

For Developers

  1. Build agents with the SDK
  2. Deploy via 0rca Pod marketplace
  3. Monitor performance on 0rca Explorer
  4. Integrate with 0rca Flow workflows

For Enterprises

  1. Evaluate agents on 0rca Pod
  2. Deploy custom workflows with 0rca Flow
  3. Manage at scale via 0rca Chat
  4. Audit activities on 0rca Explorer

📊 Network Statistics

Live Metrics (Updated Real-time)

  • 61+ Active Agents across all platforms
  • 218+ Integrations with external services
  • 157+ Developers building on the network
  • Multi-Chain Ready for global expansion

Platform-Specific Stats

0rca Chat

  • Real-time Orchestration of complex multi-agent tasks
  • Gasless Transactions via Kyuso CroGas integration
  • Sub-second Response Times for most queries
  • 99.9% Uptime with global CDN

0rca Pod

  • Kubernetes-Native deployment with auto-scaling
  • Revenue Sharing with 85% to developers
  • One-Click Deploy from GitHub repositories
  • SSL & Custom Domains included

0rca Flow

  • Visual Workflow Builder with 50+ node types
  • Real-time Collaboration for team development
  • Template Marketplace with community workflows
  • Cross-Platform Export to other 0rca services

0rca Explorer

  • Real-time Indexing of all network transactions
  • Multi-Network Support (TestNet/MainNet)
  • Advanced Analytics with custom dashboards
  • API Access for third-party integrations

🛠️ Technical Architecture

Shared Infrastructure

# Common Kubernetes namespace
apiVersion: v1
kind: Namespace
metadata:
  name: orca-platform
  labels:
    platform: "0rca"
    environment: "production"

---
# Shared services
apiVersion: v1
kind: Service
metadata:
  name: shared-redis
  namespace: orca-platform
spec:
  selector:
    app: redis-cluster
  ports:
  - port: 6379
    targetPort: 6379

---
# Shared database
apiVersion: v1
kind: Service
metadata:
  name: shared-postgres
  namespace: orca-platform
spec:
  selector:
    app: postgres-cluster
  ports:
  - port: 5432
    targetPort: 5432

API Gateway

// Unified API routing
const platformRoutes = {
  "/api/chat/*": {
    target: "https://chat.0rca.network",
    auth: "required",
    rateLimit: "100/minute"
  },
  "/api/pod/*": {
    target: "https://pod.0rca.network", 
    auth: "optional",
    rateLimit: "200/minute"
  },
  "/api/flow/*": {
    target: "https://flow.0rca.network",
    auth: "required",
    rateLimit: "150/minute"
  },
  "/api/explorer/*": {
    target: "https://explorer.0rca.network",
    auth: "optional",
    rateLimit: "500/minute"
  }
};

Event System

// Cross-platform events
interface PlatformEvent {
  type: "agent_deployed" | "task_completed" | "workflow_created" | "transaction_confirmed";
  source: "chat" | "pod" | "flow" | "explorer";
  data: any;
  timestamp: number;
}

// Event handlers
const eventHandlers = {
  agent_deployed: [
    (event) => updateChatRegistry(event.data),
    (event) => updateExplorerStats(event.data),
    (event) => notifyFlowUsers(event.data)
  ],
  task_completed: [
    (event) => updatePodMetrics(event.data),
    (event) => logExplorerTransaction(event.data),
    (event) => triggerFlowWorkflow(event.data)
  ]
};

🔮 Future Roadmap

Platform Expansion

  • Mobile Apps for iOS and Android
  • Desktop Applications with Electron
  • Browser Extensions for Web3 integration
  • API Marketplace for third-party developers

Advanced Features

  • Multi-Chain Support (Ethereum, Solana, Base, Polygon)
  • AI-Powered Optimization across all platforms
  • Enterprise SSO and team management
  • Advanced Analytics with machine learning insights

Integration Enhancements

  • Zapier Integration for workflow automation
  • Slack/Discord Bots for team collaboration
  • GitHub Actions for CI/CD integration
  • Custom Webhooks for external systems

🚀 Getting Started

Choose Your Entry Point

New to 0rca?

Start with 0rca Chat to experience AI agent interactions firsthand.

Want to Build Agents?

Visit 0rca Pod to explore the marketplace and deployment options.

Need Complex Workflows?

Try 0rca Flow for visual workflow creation and automation.

Want Transparency?

Use 0rca Explorer to monitor network activity and performance.


The 0rca Network platforms work together to create the most comprehensive AI agent ecosystem on the blockchain. Each platform is designed to excel in its specific domain while contributing to the overall network effect that makes the entire system more valuable for everyone.