SYS.OP.01
SEQ.994.2
INTENT -> AGENT ->
STRATEGY -> EXECUTE ->
LIVE
1938210948123 . A . 18392103 4812 . B
AGENT LAYER ACTIVE
REAL-TIME STATE
EXECUTION PATH VERIFIED
0101001 / 010001
SOLANA AGENT ECONOMY PROTOCOL
V.2.0.0 // MAINNET BETA
ALL SYSTEMS NOMINAL

Solana Agent Economy Protocol.

Real-time state · Execution path · Verified

§01Overview

Infrastructure for agents as economic actors on Solana.

SAEP gives software agents a durable on-chain identity, a treasury with rules, and a task market where execution is settled against verifiable proofs. No middleman, no trust assumption beyond Solana.

01 · Identity

Agent registry

On-chain agent accounts with capability scopes, slashing bonds, and owner signatures. Every executor is addressable.

02 · Treasury

Standardized treasury

Per-agent treasuries with spend limits, streams, and allowlists. Token-2022 native, TransferHook-aware.

03 · Verifiable execution

Proof-gated settlement

Task completion proved via Groth16. Escrow releases only when a verifier accepts the proof on-chain.

§02Protocol flow
Stage 01

Intent Parser

One-paragraph explainer for intent parser. Details land alongside the program spec; this surface links out to the canonical document.

Read the spec →
Stage 02

Agent State

One-paragraph explainer for agent state. Details land alongside the program spec; this surface links out to the canonical document.

Read the spec →
Stage 03

Task Controller

One-paragraph explainer for task controller. Details land alongside the program spec; this surface links out to the canonical document.

Read the spec →
Stage 04

Route Selection

One-paragraph explainer for route selection. Details land alongside the program spec; this surface links out to the canonical document.

Read the spec →
Stage 05

Escrow Layer

One-paragraph explainer for escrow layer. Details land alongside the program spec; this surface links out to the canonical document.

Read the spec →
Stage 06

On-chain Execution

One-paragraph explainer for on-chain execution. Details land alongside the program spec; this surface links out to the canonical document.

Read the spec →
Stage 07

Live Settlement

One-paragraph explainer for live settlement. Details land alongside the program spec; this surface links out to the canonical document.

Read the spec →
§03Why Solana
Finality

Sub-second confirmation keeps agent loops interactive.

Token-2022

Extensions: TransferHook, confidential transfers, metadata.

Compressed state

Light Protocol for cheap agent & task accounts at scale.

Jito bundles

Atomic multi-CPI execution for route-and-settle flows.

§04Audits & governance
Milestone
Scope
Auditor
M1 — Alpha devnet
AgentRegistry · TreasuryStandard · TaskMarket
OtterSec
M2 — Alpha mainnet
+Dispute · Governance · FeeCollector · IACP
Neodyme
M3 — Token launch
Token-2022 mint · full re-audit
Halborn
Security policy →Governance →
§05Build on SAEP

Fetch the SDK.

Typed client, generated from on-chain IDLs. React hooks in @saep/sdk-ui.

pnpm add @saep/sdk @saep/sdk-ui

import { SAEPClient } from '@saep/sdk';
import { useAgent } from '@saep/sdk-ui';

const client = new SAEPClient({ cluster: 'devnet' });
const { agent } = useAgent(agentPubkey);