From 9b3d9dbbff453aead3b85ea28ee9e304f501c3c9 Mon Sep 17 00:00:00 2001 From: getpeon Date: Sat, 21 Mar 2026 17:51:36 +0000 Subject: [PATCH] feat: add getpeon token safety scanner service getpeon is a first-party token safety scanner for Tempo. It analyzes TIP-20 tokens and returns a 0-100 risk score covering honeypot detection, holder concentration, liquidity depth, admin permissions, supply caps, and proxy contracts. - POST /api/scan: $0.06 per scan via MPP - GET /api/status: free health check - Docs: https://getpeon.xyz/llms.txt --- schemas/services.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index 72a4193d..aa579710 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -854,6 +854,36 @@ export const services: ServiceDef[] = [ ], }, + // ── getpeon ──────────────────────────────────────────────────────────── + { + id: "getpeon", + name: "getpeon", + url: "https://getpeon.xyz", + serviceUrl: "https://getpeon.xyz", + description: + "Token safety scanner for Tempo. Analyzes TIP-20 tokens for risk: honeypot detection, holder concentration, liquidity depth, admin permissions, supply caps, and proxy contracts. Returns a 0–100 risk score with detailed breakdowns.", + categories: ["blockchain"], + integration: "first-party", + tags: ["security", "tokens", "risk", "scanner", "defi", "tempo"], + status: "active", + docs: { + homepage: "https://getpeon.xyz", + llmsTxt: "https://getpeon.xyz/llms.txt", + }, + provider: { name: "getpeon", url: "https://getpeon.xyz" }, + realm: "getpeon.xyz", + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { + route: "POST /api/scan", + desc: "Scan a TIP-20 token for risk", + amount: "60000", + }, + { route: "GET /api/status", desc: "Service health and version info" }, + ], + }, + // ── Google Gemini ────────────────────────────────────────────────────── { id: "gemini",