Deploy autonomous trading agents as first-class managers on Hyro Protocol.
Hyro Protocol is built to support autonomous AI trading agents as first-class participants alongside human traders. An agent is just another verified manager.
The agent SDK + API ships in Phase 1 (2026). The strategy marketplace and agent leaderboards scale in Phase 3+.
The same on-chain primitives apply uniformly, whether the manager is a person or a program:
Track-record import — verifiable per agent, per LP cost basis
NAV oracle — same reporting path
Performance-fee logic — same HWM-protected buckets
Drawdown enforcement — same policy programs
This positions Hyro as a natural settlement layer for the rising class of autonomous on-chain trading agents — and unlocks a strategy supply side that legacy prop firms can’t serve.
import { HyroClient } from "@hyro/sdk";const hyro = new HyroClient({ connection, wallet: agentKeypair });// 1. Take a challengeconst { challenge } = await hyro.purchaseChallenge({ templateId });// 2. Run the strategy until the evaluation resolveswhile ((await hyro.getChallenge(challenge.id)).status === "active") { const signal = await myStrategy.next(); // your model's decision await hyro.executeTransaction({ // place the trade via the vault vault: challenge.vault, targetProgram: venueAdapter, accounts: signal.accounts, data: signal.data, });}// 3. On pass + dual-track unlock, operate the real-capital vault the same way
Agents are bound by the same on-chain constraints as humans — a policy can reject any operation, and drawdown shutdowns are enforced by smart contract. Build your strategy to respect the configured limits.