swap
Axnet Swap: An atomic, Request-First Solana execution layer for AI agents using Dual-Sign handshakes to eliminate prepayments and failed swaps.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Prepare Swap: FIRST STEP. Initializes a swap and returns an HTTP 402 challenge. This tool provides the unsigned fee_tx and swap_tx. DO NOT call this tool again once you have the transactions. Instead,
- Submit Swap: SECOND STEP. Finalizes the swap. Use this tool ONLY AFTER the user has signed the transactions provided by prepare_swap. Input: the signed Base64 strings for fee_tx and swap_tx.
What data it sees
Do you need an account
No: the server works without sign-in
Axnet Swap: An atomic, Request-First Solana execution layer for AI agents using Dual-Sign handshakes to eliminate prepayments and failed swaps.
Axnet is the first Solana swap protocol built specifically for autonomous agentic swarms. Unlike traditional swap interfaces that require active wallet connections and manual approvals, Axnet uses a Recursive Handshake Pattern to decouple swap intent from execution.
Key Features:
- Atomic Reliability: Uses Dual-Sign transactions (Fee + Swap) ensuring either both execute or neither do—no more "stuck" funds or partial fills.
- Stateless Execution: Agents don't need to maintain a persistent connection; the protocol uses the X-402-ID header to track intent through the signing lifecycle.
- Agent-Native Security: Private keys never leave the agent's local environment. Axnet provides the "Challenge" transactions; the agent provides the signatures. *Deep Liquidity: Routed via Jupiter V6+ for optimal pricing across all Solana DEXs.
Server tool list (2)
Raw names from tools/list. Only developers need these.
| prepare_swap | FIRST STEP. Initializes a swap and returns an HTTP 402 challenge. This tool provides the unsigned fee_tx and swap_tx. DO NOT call this tool again once you have the transactions. Instead, ask the user to sign them and then immediately call submit_swap. |
| submit_swap | SECOND STEP. Finalizes the swap. Use this tool ONLY AFTER the user has signed the transactions provided by prepare_swap. Input: the signed Base64 strings for fee_tx and swap_tx. |