EVALUATE. VERIFY.

KNOX.

CA: 0x7527...KnoxComputeContract
ENS Proofs
Verifiable merkle logs
ON-CHAIN AUDIT
Robinhood USDC
Permissionless settlement
ZERO KYC
< 30s
Redemption to inference
GATEWAY AGGREGATOR
ERC-7527
Compute voucher standard
TRANSFERABLE CLAIMS
▪ Market Architecture

Core Financial Primitives.
Built for Autonomous Agents.

01

Permissionless Identity

Every agent is identified by a readable ENS name (e.g. agent-a.knox.eth) pointing directly to its wallet and gateway auth token. Zero KYC, zero friction.

02

Transferable Compute Claims

Mint and trade dynamic vouchers backed by future quota. Priced dynamically via FOAMM based on live demand, time to expiry, and system capacity.

03

Stablecoin Settlement Rail

All compute payments settle in USDC over the Robinhood Chain — instant finality, no bridge risk, no custodian. Agents pay for exactly what they use.

04

Verifiable Merkle Proofs

Usage logs are committed as Merkle roots written directly onto ENS records. Anyone can verify your agent's inference history, on-chain, without trusting Knox.

▪ Verifiability & Settlement

DON'T TRUST.
VERIFY ON-CHAIN.

Knox transforms closed, proprietary SaaS compute logs into publicly auditable Merkle proofs on ENS. Verified by code, settled in stablecoins.

ENS NamespaceRobinhood USDCERC-7527

Permissionless Identities

ENS identity lookup maps wallets to gateway tokens. No central authority, no KYC.

USDC Settlement Rail (Robinhood Chain)

Instant stablecoin payments over Robinhood Chain with no bridge risk.

Verifiable Usage Proofs

Merkle root digests on ENS allow 100% public, independent auditability.

ERC-7527 Standard Claims

Dynamic FOAMM pricing and transferable ERC-721 voucher standard.

From Deposit to Trade.
Step by Step.

04

Verifiable Merkle Proofs

Usage logs are committed as Merkle roots written directly to ENS. Anyone can verify on-chain without trusting KNOX.

knox_step_04.ts
// Step 04 — Verify on ENSconst proof = await knox.getProof({  agent: "agent-alpha.knox.eth",  sessionId: "sess_8f3d...",});// Merkle root written on-chainconsole.log(proof.ensRecord);// knoxproof.agent-alpha.knox.eth// ✓ Verified: 0xd4f2...
05

ERC-7527 Voucher Transfer

Compute claims are transferable NFTs. Transfer unused quota to another agent or redeem on the FOAMM secondary market.

knox_step_05.ts
// Step 05 — Transfer claimawait voucherContract.transferFrom(  agentA.wallet,  agentB.wallet,  tokenId, // NFT #4092);// ✓ Transfer confirmed in 1 block// ✓ agentB balance: $50.00 USDC// ✓ FOAMM market updated
06

FOAMM Secondary Market

Unused compute claims auto-price via the FOAMM bonding curve. Buy underpriced quota or sell excess capacity in real-time.

knox_step_06.ts
// Step 06 — Market pricingconst price = await foamm.getSpotPrice({  quota: 100_000, // tokens  expiry: "7d",});// Dynamic FOAMM pricingconsole.log(price);// { usdc: "2.14", premium: "1.07x" }await foamm.buy({ ...price });

ESSENTIAL STACK /
MODELS.

Integrating Web3 primitives with world-class AI models behind one permissionless interface.

AI Gateway

API key router & model load balancer

Route any AI request to the optimal model based on cost, latency, and capability. One key, every model.

FOAMM Protocol

Financial AMM pricing, compute claims on-chain

Real-time bonding curve pricing for compute capacity. Buy, sell, and transfer ERC-7527 vouchers on secondary markets.

Integrated AI Providers & Models

OpenAIGPT-4o · GPT-4-turbo
AnthropicClaude 3.5 Sonnet · Claude 3 Opus
DeepSeekDeepSeek R1 · DeepSeek V3
MetaLlama 3.3 70B · Llama 3.1 405B
GoogleGemini 2.0 Flash · Gemini Pro
Live Metrics

PERFORMANCE YOU
CAN MEASURE.

SYSTEM ONLINE|01:26:22

Inference Tokens Processed Today

.0%

USDC Settlement Uptime

FOAMM ENGINELIVE METRIC →
< ms

Average Gateway Latency

ENS AUDIT LOGSLIVE METRIC →
+

ERC-7527 Vouchers Minted

▪ Compute Markets

ERC-7527 COMPUTE
PRICED BY DEMAND.

Inference costs are priced in real-time via the FOAMM bonding curve — a fully on-chain automated market maker that adjusts compute premiums based on live network demand and time-to-expiry.

▪ Ecosystem Integrations

POWERING THE TOP
AI PROTOCOLS.

KNOX is the underlying compute and settlement layer for the most trending AI and blockchain projects in 2025.

Bittensor (TAO)

Decentralized machine learning network.

Market Cap$4.1B

Render (RENDER)

Decentralized GPU rendering power.

GPUs Active1.2M+

Virtuals (VIRTUAL)

Autonomous AI agent tokenization.

Live Agents500+

Akash (AKT)

Decentralized compute cloud.

Uptime99.9%

Fetch.ai (FET)

AI agent infrastructure.

Market Cap$2.8B

io.net (IO)

Enterprise GPU clustering.

Latency10ms

FOR DEVS

Build Autonomous
Agent Systems.

KNOX provides the full financial infrastructure stack for AI agents — identity, compute markets, settlement rails, and verifiable logs — all behind one permissionless SDK.

TypeScript Native
Zero Config
Edge-Ready
12KB Gzipped
1# Install KNOX CLI
2$ npm install -g @knox/cli
3
4# Authenticate with your ENS wallet
5$ knox auth --ens agent.knox.eth
6
7# Initialize project config  
8$ knox init
9✓ Config written to knox.config.ts
10✓ ENS identity verified