Zero-Knowledge Proofs
Built-in ZKP verification prevents AI workers from cheating and ensures result integrity.
Hyra Network is a fully decentralized AI inference platform that enables users to request AI model inference, AI workers to process tasks, and verifiers to validate results using Zero-Knowledge Proofs (ZKP). The entire system operates 100% on-chain with native HYRA token payments and automatic task creation.
Zero-Knowledge Proofs
Built-in ZKP verification prevents AI workers from cheating and ensures result integrity.
High Privacy
Task input and output are encrypted before submission to smart contracts for maximum privacy.
Fully Decentralized
No single point of failure - all operations are handled by smart contracts on the blockchain.
Native HYRA Payments
Pay and earn with HYRA tokens, the native currency of the Hyra Network.
Automatic Task Creation
Tasks are created automatically when users request AI inference - no manual intervention needed.
Multi-Pool Architecture
Scalable architecture with multiple task pools for high throughput and load balancing.
The Hyra Network consists of five core smart contracts that work together:
Overview
Learn about the Hyra Network platform and how it works.
Installation
Install the Python or Node.js SDK to start building.
Claim Tasks
Learn how to claim AI inference tasks from the marketplace.
Process Tasks
Understand how to process AI tasks and generate results.
Submit Tasks
Submit completed tasks with ZKP proofs for verification.
Monitor Rewards
Track your earnings and performance across the network.
Blockchain Layer 3
Learn about the Hyra Network’s Layer 3 architecture and HYRA token economics.
Distributed AI Network
Understand the transition from centralized to fully decentralized AI infrastructure.
Zero-Knowledge Proofs
Explore how ZKP prevents cheating and ensures result integrity.
Encryption
Learn about AES and asymmetric encryption for task privacy.
Two-Phase Encryption
Understand the complete encryption workflow for secure task processing.
Overview
Complete smart contract architecture and workflow overview.
Model Registry
AI model management and user inference request handling.
Task Pool
Core task management with ZKP verification and reward distribution.
Task Router
Central router for efficient task discovery and distribution.
Task Pool Factory
Factory contract for creating and managing task pools.
Python SDK
Complete Python SDK reference with examples and API documentation.
Node.js SDK
Full Node.js/TypeScript SDK with type safety and advanced features.
from hyra_sdk import HyraClient
# Initialize clientclient = HyraClient()
# Claim a tasktask = client.claim_task()print(f"Task ID: {task['task_id']}")print(f"Model: {task['model_name']}")print(f"Input: {task['input_data']}")
# Submit resultresult = "Your AI-generated response here"submit_hash = client.submit_task( task['task_id'], result, task['pool_address'])print(f"Submission hash: {submit_hash}")import { HyraClient } from "hyra-sdk";
// Initialize clientconst client = new HyraClient();
// Claim a taskconst task = await client.claimTask();console.log(`Task ID: ${task.taskId}`);console.log(`Model: ${task.modelName}`);console.log(`Input: ${task.inputData}`);
// Submit resultconst result = "Your AI-generated response here";const submitHash = await client.submitTask( task.taskId, result, task.poolAddress);console.log(`Submission hash: ${submitHash}`);Discord
Join our Discord community for support and discussions.
GitHub
Contribute to the open-source Hyra Network ecosystem.
Follow us on Twitter for the latest updates.
Telegram
Join our Telegram channel for announcements.
Ready to start building on Hyra Network? Here’s your path forward:
Built with ❤️ by the Hyra team
Hyra Network - Building the future of decentralized AI inference! 🚀