Skip to content
Back to onchain-risk-oracle

Card snapshot

oracle.evebrief.org · 2026-09-10 14:20:51 UTC · c598f5a206d234a8c49c0ca268350937b1f1f431142b253eafcfa71183a7321a

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "protocolVersion": "0.3.0",
  "name": "onchain-risk-oracle",
  "description": "On-Chain-Risk-Check f\u00fcr EVM-Adressen. Pr\u00fcft eine Adresse gegen einen kuratierten Rug-Pull-Feed (bekannte Rug-Token, deren Deployer, Rug-Beneficiaries, Funding-Quellen und Rug-Fabrik-Hubs) und liefert ein strukturiertes Risiko-Urteil mit Evidenz.",
  "url": "https://oracle.evebrief.org/",
  "preferredTransport": "JSONRPC",
  "version": "0.1.0",
  "provider": {
    "organization": "openclaw / evm-lab",
    "url": "https://github.com/openclaw/openclaw"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false,
    "extensions": [
      {
        "uri": "https://x402.org/extensions/payment/v1",
        "description": "Bezahlung pro Task via x402 (HTTP 402).",
        "required": true,
        "params": {
          "scheme": "exact",
          "network": "xrpl:0",
          "asset": "RLUSD",
          "amount": "0.01",
          "payTo": "rH2tcNh56xoLUssRubra7DSDCgrReSZodW",
          "facilitator": "https://xrpl-facilitator-mainnet.t54.ai",
          "maxTimeoutSeconds": 600,
          "resource": "/",
          "mode": "xrpl",
          "issuer": "rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De"
        }
      }
    ]
  },
  "defaultInputModes": [
    "application/json",
    "text/plain"
  ],
  "defaultOutputModes": [
    "application/json"
  ],
  "skills": [
    {
      "id": "onchain-risk-check",
      "name": "On-Chain-Risk-Check",
      "description": "Adresse rein \u2192 Risiko-Urteil (none/low/high/critical) mit Labels, Begr\u00fcndungen und verkn\u00fcpften Rug-Token als Evidenz.",
      "tags": [
        "security",
        "forensics",
        "evm",
        "rug-pull",
        "risk",
        "defi"
      ],
      "examples": [
        "Pr\u00fcfe 0x0FB30397F744F9121C4902CBAed078AFAd9B8888 auf base",
        "{\"address\": \"0xb8c6ff50ea596671871784018a2030fe1852291a\", \"chain\": \"base\"}"
      ],
      "inputModes": [
        "application/json",
        "text/plain"
      ],
      "outputModes": [
        "application/json"
      ],
      "inputSchema": {
        "type": "object",
        "required": [
          "address"
        ],
        "properties": {
          "address": {
            "type": "string",
            "pattern": "^0x[0-9a-fA-F]{40}$",
            "description": "EVM-Adresse (Token, Wallet oder Contract)"
          },
          "chain": {
            "type": "string",
            "enum": [
              "eth",
              "base",
              "bsc",
              "arb",
              "op",
              "polygon"
            ],
            "description": "Chain-K\u00fcrzel; optional, verbessert die Zuordnung"
          },
          "deep": {
            "type": "boolean",
            "default": false,
            "description": "zus\u00e4tzlich Live-Heuristiken (evm-lab) \u2014 teurer/langsamer"
          },
          "fork": {
            "type": "boolean",
            "default": false,
            "description": "mit deep=true: anvil-Fork-Checks (Owner-Privilegien)"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "required": [
          "address",
          "risk",
          "labels",
          "reasons",
          "evidence",
          "sources"
        ],
        "properties": {
          "address": {
            "type": "string"
          },
          "risk": {
            "type": "string",
            "enum": [
              "none",
              "low",
              "high",
              "critical"
            ]
          },
          "labels": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "reasons": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "evidence": {
            "type": "object"
          },
          "live_tier": {
            "type": "object"
          },
          "feed": {
            "type": "object"
          },
          "sources": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "disclaimer": {
            "type": "string"
          }
        }
      }
    }
  ]
}