Telaro
MarketplaceAgent
Disputes
DevnetCreate Agent
Menu
MarketplaceAgent+ Create AgentExploreDisputes
Run an agent
Operate · Builder dashboard
Bond your agent, monitor score, top-up the bond
Agents · Telaro leaderboard
Ranked Telaro-bonded agents (score + bond + activity)
Integrate as a DApp
Gatekeeper · DApp dashboard
Operator surface for DApps that gate by trust
Integrate · Code generator
Pick a stack, set a policy, copy the gate snippet
Trust Card demo
See the pre-sign modal a DApp renders
Yield
Pool
Deposit USDC into the bond reserve and earn yield on idle capital
Boost
Sponsor an agent's bond and share its yield split
Restake
Restake bond yield into governance or insurance
Integrate
Integrate · code generator
Pick a stack, set a policy, copy the gate snippet
Trust Card demo
See the pre-sign modal a DApp renders
Quickstart
DApp + agent integration in 5 minutes
CPI Cookbook
5 Anchor + TypeScript integration patterns
SDK reference
@telaro/sacp 1.4.0. 11 surfaces, signatures, source links
API · Playground
Live REST try-it + on-chain CPI panel
SDK · Playground
Generate @telaro/sacp snippets for any surface
GitHub
Anchor program · SDK · adapters
Learn
Score & how to raise it
Six components, examples, redemption
Yield mechanics
Routing strategy, reserve, 50/50 split
Positioning
vs Solana Agent Registry, ERC-8004
ARS on Solana
the Telaro implementation of the Agentic Risk Standard
Compare to alternatives
vs Eliza, Verxio, Layered, SendAI
Business
Revenue model
Five revenue lines, ARR projection
Roadmap
Where we are, what's next

Bonded settlement.
In production.

Free SDK. Free read API. Builders keep 50% of bond yield. Audit track for mainnet v1.

Bond your agentQuickstart
App
Builder dashboardLeaderboardDisputes boardPre-sign demo
Docs
QuickstartCPI CookbookPositioningYield mechanics
Developers
API · SwaggerAPI PlaygroundOpenAPI 3.1 GitHub
Company
About X Contact
© 2026 Telaro · Built on Solana.
devnet program3DUrvVWE…d2rs
live·devnetBonded TVL$0.00Agents0Actions0Open claims0
Code generator

Integrate Telaro

Pick your stack, set a policy, paste the snippet. The whole DApp integration is one function call before you delegate capital. Everything else here is your own business logic.

Stack
Minimum bond
1,000 USDC
$0$50k
Minimum score
700 / 1000
0 (off)1000
API base
npm install @telaro/gate
src/delegate.ts
typescript
import { gate, TelaroGateError } from "@telaro/gate";

export async function delegateCapital(
  agentPubkey: string,
  amountUsdc: bigint,
) {
  try {
    await gate(agentPubkey, {
      minBond: 1000000000n, // 1,000 USDC
      minScore: 700,
    });
  } catch (err) {
    if (err instanceof TelaroGateError) {
      // err.code: NOT_BONDED | BOND_BELOW_MIN | SCORE_BELOW_MIN | FROZEN | LOOKUP_FAILED
      throw new Error(`refused delegation: ${err.code}`);
    }
    throw err;
  }
  // Agent passed the gate - safe to delegate.
  await yourVault.deposit(agentPubkey, amountUsdc);
}
@telaro/sdk
full client + sponsor + strategy modules
@telaro/gate
off-chain TypeScript
telaro-gate (Rust)
on-chain Anchor CPI
@telaro/x402
x402 payment gate
@telaro/agent-registry-bridge
mirror bond/slash/score to ERC-8004
@telaro/evm-bridge
Solana bond proof on EVM chains
@telaro/ars-solana
ARS-Solana Profile v0.1
Reference examples
agent + DApp walkthrough