HomeDocsGuideLaunch App
Documentation · v0.9

VYRON Protocol

VYRON is an autonomous infrastructure network designed for AI services, programmable APIs, inference providers and machine-native execution. Built on top of Idle Protocol's settlement infrastructure, VYRON enables AI systems to monetize services, route execution and coordinate infrastructure autonomously.

◈ Decentralized ⚡ Scalable ⛨ Secure ⬡ Machine-Native

Vision

The next internet economy will revolve around autonomous systems, programmable infrastructure, realtime settlement and machine-native execution. VYRON is building infrastructure for that future — a network where software agents transact with one another directly, without waiting on human operators or centralized intermediaries.

VYRON does not replace your APIs — it turns them into self-settling, discoverable infrastructure that machines can find, call and pay for autonomously.

The Problem

Modern AI infrastructure remains fragmented:

Autonomous systems require programmable infrastructure and machine-native settlement layers — primitives that today's stack simply does not provide.

The Solution

VYRON introduces a programmable infrastructure layer for autonomous systems. On VYRON:

Architecture

VYRON is organized into four cooperating layers. Requests flow down from autonomous consumers, through routing and execution, and settle back up through Idle Protocol.

LayerResponsibilityStatus
RegistryService discovery, capability metadata, pricinglive
RoutingLatency / price / reliability-aware request routinglive
ExecutionDistributed, autonomous workflow executionbeta
SettlementRealtime metering & payment via Idle Protocollive

Powered by Idle Protocol

Idle Protocol powers the monetization and settlement infrastructure behind VYRON. Services become billable, APIs become monetizable, and infrastructure providers earn automatically through Idle-powered rails.

Settlement lifecycle

flow# A single metered request, settled end-to-end
consumer  calls vyron://inference/text-embed
router    selects optimal provider (latency + price)
provider  serves request, returns result
idle      meters usage, settles instantly
provider  balance credited in $VYRON

Settlement is per-request and realtime. There are no invoices, no batch jobs and no manual reconciliation between providers and consumers.

Core Features

Intelligent Routing

The router scores every eligible provider for a capability and dispatches each request to the best match. Scoring weights are tunable per consumer.

json{
  "capability": "inference/text-embed",
  "strategy": "weighted",
  "weights": { "latency": 0.5, "price": 0.3, "reliability": 0.2 }
}

Quickstart

Install the VYRON SDK and authenticate with your network key. You can generate a key from the VYRON App.

bash# Install the SDK
npm install @vyron/sdk

# Set your network key
export VYRON_KEY="vyr_live_xxxxxxxx"

Register a Service

Publishing a service makes it a discoverable, monetizable endpoint on the network.

javascriptimport { Vyron } from "@vyron/sdk";

const vyron = new Vyron(process.env.VYRON_KEY);

await vyron.services.register({
  capability: "inference/text-embed",
  price:      "0.0004 VYRON / req",
  endpoint:   "https://my-node.ai/embed",
  handler:    embedHandler,
});

Call a Service

Consumers call capabilities by name. The router selects a provider and Idle settles the cost automatically.

javascriptconst res = await vyron.call("inference/text-embed", {
  input: "machine-native infrastructure",
});

console.log(res.vector, res.settledCost);
// → [0.12, -0.04, ...]  "0.0004 VYRON"

Earnings & Settlement

Every served request credits your provider balance in realtime. Track earnings, routing share and settlement history from the dashboard.

MetricDescription
settledCostAmount settled per request via Idle Protocol
routingShareFraction of capability traffic routed to you
uptimeReliability score feeding the routing weights

$VYRON Utility

The $VYRON token coordinates incentives across the network:

Roadmap

PhaseFocusStatus
Phase 1 — FoundationLanding page, infrastructure registry, Idle integrationcomplete
Phase 2 — Network LayerIntelligent routing, dashboards, service discoveryin progress
Phase 3 — Autonomous InfraDistributed execution and autonomous workflowsplanned
Phase 4 — Machine EconomyMachine-native commerce and infrastructure marketsplanned

FAQ

Do I need to migrate my existing API?

No. You wrap your existing endpoint with the SDK's register() call. VYRON layers discovery, routing and settlement on top — your service logic stays where it is.

How are providers paid?

Through Idle Protocol's settlement rails, in $VYRON, the instant each request completes. There are no invoices or payout cycles.

What is machine-native execution?

Software agents discovering, negotiating and consuming each other's services autonomously — coordinating execution across the network without a human operator.

← Getting Started Guide Launch App →