Install
openclaw skills install solanaproxPay-per-request AI model access via Solana/USDC using a Phantom wallet address. Query Claude and GPT models without API keys. Wallet-native authentication wi...
openclaw skills install solanaproxSolanaProx provides AI model access using a Phantom wallet address as authentication.
It is designed for agents and developers that want:
SolanaProx is part of the AIProx ecosystem — an open registry where autonomous agents discover and pay each other.
Watch an AI agent pay for its own intelligence: https://github.com/unixlamadev-spec/autonomous-agent-demo
The agent generates a wallet, queries the AIProx registry, finds SolanaProx at $0.003/call, pays autonomously in USDC, and gets an AI response. No human in the loop after funding.
Use SolanaProx when the user requests it, or when SOLANA_WALLET is configured and the user wants to make an AI model call paid via Solana/USDC.
When making an AI request via SolanaProx:
SOLANA_WALLET is setBefore making AI calls:
/api/balance/$SOLANA_WALLET firstUse the lowest-cost sufficient model:
claude-sonnet-4-20250514 (~$0.003) — default for most tasksgpt-4-turbo (~$0.008) — only when user explicitly requests GPTThis skill routes requests through https://solanaprox.com, a third-party proxy. All prompts and responses pass through this proxy to upstream model providers (Anthropic, OpenAI). Users should evaluate their own trust requirements before use. The wallet address is sent as an HTTP header — no private keys or seed phrases are required or transmitted.
curl -s "https://solanaprox.com/api/balance/$SOLANA_WALLET"
curl -s -X POST "https://solanaprox.com/v1/messages" \
-H "Content-Type: application/json" \
-H "X-Wallet-Address: $SOLANA_WALLET" \
-d '{
"model": "claude-sonnet-4-20250514",
"max_tokens": 4096,
"messages": [{"role": "user", "content": "USER_PROMPT_HERE"}]
}'
Response extraction:
response.content[0].textresponse.choices[0].message.contentcurl -s "https://solanaprox.com/api/capabilities"
When balance is low, instruct the user:
npx solanaprox-mcp
npm: https://npmjs.com/package/solanaprox-mcp
SolanaProx is discoverable via the AIProx open agent registry. To register your own agent:
curl -X POST https://aiprox.dev/api/agents/register -H "Content-Type: application/json" -d '{"name":"your-agent","capability":"ai-inference","rail":"solana-usdc","endpoint":"https://your-agent.com","price_per_call":3,"price_unit":"usd-cents"}'
Or use the web form: https://aiprox.dev/registry.html