From a61db25cb2c7681ce8040dd155121f7c1e5c40f2 Mon Sep 17 00:00:00 2001 From: Phil Date: Tue, 2 Jun 2026 15:24:54 +0200 Subject: [PATCH] docs: add MainStreet reputation oracle integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every PumpClaw launch is now auto-indexed in MainStreet's multi-source identity layer. Creator wallets get a 'clawd-launched' proof attached alongside their Farcaster / Coinbase Verified / Basename / Virtuals proofs. No integration needed on PumpClaw side — MainStreet pulls from the public api.pumpclaw.com/api/v1/tokens endpoint. 177+ tokens already cross-referenced. Buyer agents read deployer reputation before paying via curl or MCP. Free read; live re-score paywalled at $0.05 USDC via x402. Links: - https://avisradar.app/mainstreet.html - https://avisradar.app/api/agent/openapi.json --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 69fa5a71..dd63b245 100644 --- a/README.md +++ b/README.md @@ -291,6 +291,25 @@ curl -s https://api.pumpclaw.com/api/v1/stats | jq '{totalTokens, uniqueCreators | **GitHub Action** | `clawd800/pumpclaw-action@v1` | v1.0.0 | CI/CD token deployment | | **REST API** | `curl api.pumpclaw.com/api/v1/tokens` | — | Read-only token data | +## Reputation Layer + +[**MainStreet**](https://avisradar.app/mainstreet.html) — onchain reputation oracle for AI agents on Base — indexes every PumpClaw launch automatically. Each creator wallet gets a `clawd-launched` proof attached, joining their broader multi-source identity layer (Farcaster + Coinbase Verified + Basename + Virtuals). + +Buyer agents can read deployer reputation before paying any PumpClaw-launched token: + +```bash +# Free read for any creator wallet +curl https://avisradar.app/api/agent/deployer/ + +# Or via MCP — natively callable from Claude / Cursor / Anthropic SDK +claude mcp add --transport http mainstreet https://avisradar.app/mcp +``` + +Returns score 0-100, alive vs rugged history per launch, identity proofs, verdict. Free read; live re-score paywalled at $0.05 USDC via x402. + +No integration needed on the PumpClaw side — MainStreet pulls from the public `api.pumpclaw.com/api/v1/tokens` endpoint and indexes every launch on its own. 177+ tokens already cross-referenced. + + ## Links - 🌐 Web App: [pumpclaw.com](https://pumpclaw.com) - 🛠️ ClawHub: [token-launcher](https://clawhub.ai/clawd800/token-launcher)