Install
openclaw skills install @plagtech/spraay-trustVerify before you pay. Free address safety screening (phishing, sanctions, exploits, mixers), free token safety checks (honeypot, sell tax, blacklist), free transaction decoding, and paid multi-dimensional agent trust scores via ProofLayer — all through the Spraay x402 gateway. Use when the user asks to verify an agent or wallet, check a trust score or reputation, vet a counterparty before a payment or escrow, screen an address for safety, check if a token is a honeypot, or decode a transaction.
openclaw skills install @plagtech/spraay-trustVerify before you pay. Free safety screening plus ProofLayer trust scoring for agent-to-agent commerce, via the Spraay x402 gateway.
All requests in this skill go exclusively to the user's configured
SPRAAY_GATEWAY_URL. No data is sent to any other external endpoint.
A trust score is a signal, not a guarantee. Scores are derived from
on-chain signals, reliability history, and reputation data. A high score
reduces risk; it does not eliminate it. For meaningful amounts, combine a
trust check with escrow (see the spraay-escrow skill) rather than relying
on either alone.
New agents score low by default. An unscored or low-scored agent is not necessarily malicious — it may simply be new. Treat "no history" and "bad history" differently when advising the user.
The gateway URL must be set in your environment or openclaw.json:
SPRAAY_GATEWAY_URL=https://gateway.spraay.app
No API key is needed. The paid trust score endpoint uses the x402 HTTP payment protocol (HTTP 402 → pay → retry). An x402-compatible wallet (Coinbase CDP or similar) handles this automatically. The three safety endpoints are completely free.
Screen any recipient before sending funds: phishing, sanctions, exploit involvement, mixer usage, malicious contracts.
curl "$SPRAAY_GATEWAY_URL/api/v1/address/safety?address=0xABC...123"
Run this before every first-time payment. It costs nothing.
Pre-trade token check: honeypot detection, sell tax, mint/blacklist functions, proxy risk. GoPlus-powered with Spraay severity scoring.
curl "$SPRAAY_GATEWAY_URL/api/v1/token/safety?address=0xTOKEN...&chain=base"
Plain-English summary plus structured token transfers for any EVM transaction — swaps, transfers, approvals, wraps, NFTs, batch payments. Use it to verify what a transaction actually did.
curl "$SPRAAY_GATEWAY_URL/api/v1/tx/decode?hash=0xTXHASH...&chain=base"
Multi-dimensional wallet/agent trust score via ProofLayer: financial, reliability, trust, and social axes, plus XMTP reputation and on-chain signals. Counterparty due diligence for agent-to-agent payments.
curl "$SPRAAY_GATEWAY_URL/api/v1/trust/score?address=0xABC...123"
If you receive HTTP 402, the response body contains payment instructions. Pay
the facilitator, then retry with the X-PAYMENT header containing the proof.
spraay-payments), escrow first
(spraay-escrow), or decline.These require no x402 payment:
GET /api/v1/address/safety — Address safety screenGET /api/v1/token/safety — Token honeypot/risk checkGET /api/v1/tx/decode — Transaction decoderGET /health — Gateway health checkaccepts array with amount,
asset, and payment address).X-PAYMENT proof header.402 — Payment required. Follow instructions in response body.400 — Bad request. Check the address/hash format.404 — No record for this address (new agent — see interpretation notes).500 — Server error. Retry after a moment.spraay-escrow instead of refusing
outright.