SERIES A · LIVE ON SOLANA MAINNET
Axuon meters every tool call your agents make, scopes their wallet to a single capability, and settles the payment on Solana in under a second. Stripe was built for humans on Visa. We built Axuon for AI agents on Solana.
Design partners shipping AI agents on Solana with
WHAT IT DOES
Most teams who let their AI agents spend money end up gluing together five vendors and a multisig. Axuon replaces that with a single object model: agents, scopes, tool calls, receipts, disputes. Settled on Solana. That's the surface area.
Every tool call from your LangGraph / Mastra / Anthropic agent gets stamped at the edge with a deterministic call ID and a price. Works with MCP, A2A, and any HTTP client your agent already speaks.
Each agent gets a Solana keypair bound to a capability scope: "buy under $5 from jupiter.* via SOL/USDC, max 12/hour". Capabilities are signed JWTs, verifiable offline.
Stablecoin payments (USDC, PYUSD) move on-chain. Sub-cent fees, ~400ms slot time, and Token-2022 confidential transfers when the agent's spend needs to stay private.
Every tool call settles with a counter-signed receipt anchored to a Solana transaction signature. Replay any call from its call_id — no CSV reconciliation marathon.
Behavioral baseline per agent wallet. Anomalous spend halts in ~9ms before the Solana tx ever broadcasts. KYC and sanctions baked in.
Every settled call exports to a Postgres-shaped ledger plus the raw on-chain trail. Stream into Snowflake, Helius webhooks, or your own indexer.
FIG. ATOOL CALL FLOW
⎯⎯ end-to-end median: 612ms · solana sig: 5w3K…dQp · idempotent on call_id
FOUR STEPS · NINE MINUTES
No bizdev call, no enterprise procurement, no rate-card PDF. The first 10,000 tool calls per month are free on devnet for any agent that authenticates with a verified keypair.
One CLI command generates a Solana keypair bound to a capability scope — not a static API key.
One line of middleware in your MCP server / LangGraph / Mastra runtime. Axuon stamps each tool call.
Caps per slot, per merchant, per call type. Hit it and the agent pauses — no production page.
Counterparties settle to your treasury wallet in USDC. Your books reconcile themselves.
# Install once. $ pnpm add @axuon/sdk @solana/web3.js # Mint a scoped Solana keypair for one agent. $ axuon wallets:create --scope "buy.<$5,merchant=jupiter.*" → wallet 7Xk9…Ymr → scope ax_scope_01J9Q… // JWT
import { axuon } from "@axuon/sdk"; import { Keypair } from "@solana/web3.js"; const pay = axuon.wrap(fetch, { agent: Keypair.fromSecretKey(process.env.AX_KEY), rail: "solana-usdc", }); await pay("https://api.jupiter.ag/swap", { ... });
VOICE 001FIELD NOTE
“We replaced two Stripe sub-merchants and ~600 lines of escrow code with four lines of Axuon. Our agents have settled $84k on Solana in nine weeks and we've reconciled zero of it by hand.”
Devnet is free. The same SDK works on mainnet. The whole quickstart is under five minutes.