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.
Mint and trade dynamic vouchers backed by future quota. Priced dynamically via FOAMM based on live demand, time to expiry, and system capacity.
All compute payments settle in USDC over the Robinhood Chain — instant finality, no bridge risk, no custodian. Agents pay for exactly what they use.
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.
Knox transforms closed, proprietary SaaS compute logs into publicly auditable Merkle proofs on ENS. Verified by code, settled in stablecoins.
ENS identity lookup maps wallets to gateway tokens. No central authority, no KYC.
Instant stablecoin payments over Robinhood Chain with no bridge risk.
Merkle root digests on ENS allow 100% public, independent auditability.
Dynamic FOAMM pricing and transferable ERC-721 voucher standard.
Usage logs are committed as Merkle roots written directly to ENS. Anyone can verify on-chain without trusting KNOX.
// 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...Compute claims are transferable NFTs. Transfer unused quota to another agent or redeem on the FOAMM secondary market.
// 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 updatedUnused compute claims auto-price via the FOAMM bonding curve. Buy underpriced quota or sell excess capacity in real-time.
// 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 });Integrating Web3 primitives with world-class AI models behind one permissionless interface.
API key router & model load balancer
Route any AI request to the optimal model based on cost, latency, and capability. One key, every model.
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
Inference Tokens Processed Today
USDC Settlement Uptime
Average Gateway Latency
ERC-7527 Vouchers Minted
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.
KNOX is the underlying compute and settlement layer for the most trending AI and blockchain projects in 2025.
Decentralized machine learning network.
Decentralized GPU rendering power.
Autonomous AI agent tokenization.
Decentralized compute cloud.
AI agent infrastructure.
Enterprise GPU clustering.
FOR DEVS
KNOX provides the full financial infrastructure stack for AI agents — identity, compute markets, settlement rails, and verifiable logs — all behind one permissionless SDK.
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