Back to Marketplace

Run this helper free

Answer 3 questions. Get a result in 2 minutes. Preview free.

Start free β†’
FREE
Verified
Make Money

Spraay Payments πŸ’§

One command, infinite wallets, eleven chains, zero friction

❌ Manually sending crypto payments to multiple wallets across different chains is time-consuming, error-prone, and requires managing separate transactions.

βœ… Users can send batch payments, process payroll, and execute token swaps across 11 blockchains in a single transaction.

  • βœ“Batch crypto payments across 11 blockchains instantly
  • βœ“Native payroll and invoice processing with Spraay Protocol
  • βœ“Token swaps and real-time price feed integration
  • βœ“ENS and Basename resolution for wallet addresses
  • βœ“AI inference capabilities via x402 gateway

πŸ‘ 2 views Β· πŸ“¦ 0 installs

Install in one line

$Β mfkvault install extentadulthood280-spraay-payments

Requires the MFKVault CLI. Prefer MCP?

No reviews yet
🦞 OpenClaw
FREE

Free to install β€” no account needed

Copy the command below and paste into your agent.

Instant access β€’ No coding needed β€’ No account needed

What you get in 5 minutes

  • Full skill code ready to install
  • Works with 1 AI agent
  • Lifetime updates included
VerifiedSecureBe the first
Ready to run

Run this helper

Answer a few questions and let this helper do the work.

β–ΈAdvanced: use with your AI agent

Description

--- name: spraay-payments description: "Send batch crypto payments, payroll, invoices, token swaps, price feeds, and AI inference using the Spraay Protocol x402 gateway. Use when the user asks to 'send payments', 'batch transfer', 'pay multiple wallets', 'crypto payroll', 'swap tokens', 'get token price', 'create invoice', 'check balance', 'resolve ENS', 'resolve basename', or mentions Spraay, x402 payments, or multi-chain batch transactions. Supports 11 chains: Base, Ethereum, Arbitrum, Polygon, BNB, Avalanche, Solana, Unichain, Plasma, BOB, Bittensor." version: 1.0.0 homepage: https://spraay.app metadata: {"openclaw":{"emoji":"πŸ’§","requires":{"bins":["curl","jq"],"env":["SPRAAY_GATEWAY_URL"]},"primaryEnv":"SPRAAY_GATEWAY_URL"}} --- # Spraay Payments πŸ’§ Multi-chain batch crypto payments, payroll, swaps, price feeds, invoices, and AI inference β€” all through one API. Spraay is a protocol for sending crypto to multiple wallets in a single transaction. The x402 gateway exposes 57 paid endpoints and 5 free endpoints. Every paid call costs a micropayment via the x402 HTTP payment protocol. Free endpoints require no payment. ## Setup The gateway is live at `https://gateway.spraay.app`. Set your env: ```bash export SPRAAY_GATEWAY_URL="https://gateway.spraay.app" ``` No API key needed. Payments are made per-request via x402 (HTTP 402 β†’ pay β†’ retry). Your agent's wallet handles this automatically if you have a Coinbase CDP wallet or any x402-compatible facilitator. ## Supported Chains Base, Ethereum, Arbitrum, Polygon, BNB Chain, Avalanche, Solana, Unichain, Plasma, BOB, Bittensor. Payment contract (Base): `0x1646452F98E36A3c9Cfc3eDD8868221E207B5eEC` ## Core Workflows ### 1. Batch Payments (the main use case) Send tokens to multiple wallets in one transaction. ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/batch-payment" \ -H "Content-Type: application/json" \ -d '{ "recipients": [ {"address": "0xABC...123", "amount": "10"}, {"address": "0xDEF...456", "amount": "25"}, {"address": "0xGHI...789", "amount": "15"} ], "token": "USDC", "chain": "base" }' ``` If you get HTTP 402, the response contains payment instructions. Pay the facilitator, then retry with the payment proof header. ### 2. Token Prices ```bash # Free endpoint β€” no x402 payment needed curl "$SPRAAY_GATEWAY_URL/api/price?symbol=ETH" ``` Returns current USD price. Works for any major token symbol. ### 3. Token Balances ```bash curl "$SPRAAY_GATEWAY_URL/api/balance?address=0xABC...&chain=base" ``` ### 4. Token Swaps ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/swap-quote" \ -H "Content-Type: application/json" \ -d '{ "tokenIn": "ETH", "tokenOut": "USDC", "amount": "1.0", "chain": "base" }' ``` ### 5. ENS / Basename Resolution ```bash # Free endpoint curl "$SPRAAY_GATEWAY_URL/api/resolve?name=vitalik.eth" ``` Resolves ENS names and Base names to addresses. ### 6. Invoices ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/create-invoice" \ -H "Content-Type: application/json" \ -d '{ "recipient": "0xABC...123", "amount": "500", "token": "USDC", "chain": "base", "memo": "March consulting invoice" }' ``` ### 7. AI Chat Inference ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/ai/chat" \ -H "Content-Type: application/json" \ -d '{ "message": "Explain DeFi yield farming", "model": "openrouter/auto" }' ``` Powered by OpenRouter. Pay-per-query via x402. ### 8. Payroll ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/batch-payment" \ -H "Content-Type: application/json" \ -d '{ "recipients": [ {"address": "alice.eth", "amount": "3000"}, {"address": "bob.base", "amount": "2500"}, {"address": "0xCCC...999", "amount": "4000"} ], "token": "USDC", "chain": "base", "memo": "March 2026 payroll" }' ``` ENS and Basename addresses resolve automatically. ## Communication Endpoints (Paid) ### Email ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/email/send" \ -H "Content-Type: application/json" \ -d '{ "to": "[email protected]", "subject": "Payment Confirmation", "body": "Batch payment of 50,000 USDC sent to 12 recipients on Base." }' ``` ### XMTP Messaging ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/xmtp/send" \ -H "Content-Type: application/json" \ -d '{ "to": "0xRecipient...", "message": "Your payment of 500 USDC has been sent via Spraay." }' ``` ### Webhooks ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/webhook/send" \ -H "Content-Type: application/json" \ -d '{ "url": "https://your-app.com/webhook", "payload": {"event": "payment_complete", "txHash": "0x..."} }' ``` ## Infrastructure Endpoints (Paid) ### RPC Relay (7 chains via Alchemy) ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/rpc/relay" \ -H "Content-Type: application/json" \ -d '{ "chain": "base", "method": "eth_blockNumber", "params": [] }' ``` ### IPFS Upload (via Pinata) ```bash curl -X POST "$SPRAAY_GATEWAY_URL/api/ipfs/pin" \ -H "Content-Type: application/json" \ -d '{ "content": "Hello from Spraay!", "name": "my-file.txt" }' ``` ## Free Endpoints (No Payment Required) These 5 endpoints work without x402 payment: - `GET /api/price?symbol=ETH` β€” Token prices - `GET /api/resolve?name=vitalik.eth` β€” ENS/Basename resolution - `GET /api/health` β€” Gateway health check - `GET /api/chains` β€” List supported chains - `GET /api/endpoints` β€” List all available endpoints ## x402 Payment Flow 1. Call any paid endpoint 2. Receive HTTP 402 with payment details (amount, facilitator address, token) 3. Send micropayment to the facilitator 4. Retry the original request with the `X-PAYMENT` header containing payment proof 5. Receive your response Typical cost per call: fractions of a cent in USDC on Base. ## Error Handling - `402` β€” Payment required. Follow the payment instructions in the response body. - `400` β€” Bad request. Check your parameters. - `404` β€” Endpoint not found. - `500` β€” Server error. Retry after a moment. Always check the HTTP status code before processing the response body. ## Tips - Batch payments save 60-80% on gas vs individual transfers. - Use the free `/api/price` endpoint to calculate USD values before sending. - Resolve ENS/Basenames before batching to validate all addresses. - Chain defaults to "base" if not specified. - Token defaults to "USDC" if not specified. - The gateway supports any ERC-20 token plus native ETH. ## Links - App: https://spraay.app - Gateway: https://gateway.spraay.app - Docs: https://docs.spraay.app - GitHub: https://github.com/plagtech - Twitter: https://twitter.com/Spraay_app - MCP Server: https://smithery.ai/server/@plagtech/spraay-x402-mcp

Preview in:

Security Status

Verified

Manually verified by security team

Time saved
How much time did this skill save you?

Related AI Tools

More Make Money tools you might like

paper-fetch

Free

Use when the user wants to download a paper PDF from a DOI, title, or URL via legal open-access sources. Tries Unpaywall, arXiv, bioRxiv/medRxiv, PubMed Central, and Semantic Scholar in order. Never uses Sci-Hub or paywall bypass.

Beautiful Prose (Claude Skill)

Free

A hard-edged writing style contract for timeless, forceful English prose without modern AI tics. Use when users ask for prose or rewrites that must be clean, exact, concrete, and free of AI cadence, filler, or therapeutic tone.

SkillCheck (Free)

Free

Validate Claude Code skills against Anthropic guidelines. Use when user says "check skill", "skillcheck", "validate SKILL.md", or asks to find issues in skill definitions. Covers structural and semantic validation. Do NOT use for anti-slop detection,

Design Checker Skill

Free

"Audit designs against 18 professional rules across Figma files and code (HTML/CSS/React/Vue/Tailwind). Detects framework automatically, runs code superpowers (aria, focus, contrast, tokens, responsive, motion, forms, navigation, spacing), audits for

Vibe Science v7.0 β€” TRACE

Free

Scientific research engine with agentic tree search. Infinite loops until discovery, rigorous tracking, adversarial review, serendipity preserved.

Rails Convention Engineer

Free

Rails 8.x application architecture, implementation, and review guidance for production codebases. Use when building or reviewing Ruby on Rails 8 features across models, controllers, routes, Hotwire, jobs, APIs, performance, security, and testing. Tri