@hugen/plugin-x402-solana
v0.1.1
Published
Solana USDC payments for ElizaOS agents via x402 protocol — pay for any x402-protected API with Solana
Readme
@hugen/plugin-x402-solana
Solana USDC payments for ElizaOS agents via the x402 protocol.
The first Solana x402 payment plugin for ElizaOS. Enables agents to pay for any x402-protected API using Solana USDC — automatically handling 402 responses, signing SPL token transfers, and retrying with payment proof.
Why?
The existing @elizaos/plugin-x402 only supports EVM chains (Base, Ethereum). This plugin adds Solana mainnet support, giving agents access to the growing ecosystem of x402 APIs that accept Solana USDC.
- 75+ x402 API endpoints already accept Solana USDC payments
- Powered by
@x402/svm(Coinbase official) and@x402/fetch - Zero configuration beyond a Solana private key
Installation
npm install @hugen/plugin-x402-solanaAgent Configuration
Add the plugin to your ElizaOS character config:
{
"plugins": ["@hugen/plugin-x402-solana"],
"settings": {
"secrets": {
"SOLANA_PRIVATE_KEY": "your-base58-encoded-solana-keypair"
}
}
}The wallet needs USDC (SPL token) on Solana mainnet and a small amount of SOL for transaction fees.
How It Works
Agent says: "Search Hacker News for AI agent news"
↓
Plugin calls: GET https://scout.hugen.tokyo/scout/hn?q=AI+agents
↓
Server returns: 402 Payment Required (with Solana USDC payment option)
↓
Plugin signs: Solana USDC transfer ($0.005)
↓
Plugin retries: GET with X-PAYMENT header
↓
Server returns: 200 OK + search results
↓
Agent receives: Structured data to answer the userAvailable Action
FETCH_X402_SOLANA
Fetches data from any x402-protected API with automatic Solana USDC payment.
Parameters:
| Name | Required | Description |
|------|----------|-------------|
| url | Yes | Full URL of the x402 API endpoint |
| method | No | HTTP method (GET or POST, default: GET) |
| body | No | JSON body for POST requests |
Example URLs:
https://scout.hugen.tokyo/scout/hn?q=AI+agents— Search Hacker News ($0.005)https://scout.hugen.tokyo/scout/report?q=MCP+servers— 14-source intelligence report ($0.005)https://defi.hugen.tokyo/defi/token?chain=1&address=0x...— Token security audit ($0.005)https://domain.hugen.tokyo/domain/full?domain=example.com— Full domain intelligence ($0.01)https://intel.hugen.tokyo/intel/token-report— AI-synthesized token DD ($0.50)
Security Configuration
The plugin includes built-in security controls configurable via plugin config:
{
"plugins": ["@hugen/plugin-x402-solana"],
"pluginConfig": {
"@hugen/plugin-x402-solana": {
"allowedDomains": "scout.hugen.tokyo,defi.hugen.tokyo",
"maxPaymentUsd": "1.00",
"allowAnyDomain": "false",
"fetchTimeoutMs": "30000"
}
}
}| Option | Default | Description |
|--------|---------|-------------|
| allowedDomains | *.hugen.tokyo (9 domains) | Comma-separated domain allowlist |
| maxPaymentUsd | 1.00 | Maximum USDC payment per request |
| allowAnyDomain | false | Set true to disable domain allowlist |
| fetchTimeoutMs | 30000 | Request timeout in milliseconds |
Security features:
- SSRF protection: blocks private IPs (IPv4 + IPv6 + IPv4-mapped IPv6)
- Domain allowlist: only approved domains by default
- Payment limit: rejects 402 requirements exceeding the USD threshold
- Request timeout: prevents hung requests from blocking the agent
Technical Details
- Uses
@x402/svmv2.5.0 (Coinbase official) for Solana transaction signing - Uses
@x402/fetchfor automatic 402 → payment → retry flow - Base58 + JSON array key format support (no external dependency)
- Requires Node.js 20+ (
@solana/kitrequirement) - Compatible with ElizaOS 2.0.0-alpha.3+
License
MIT — see LICENSE
