402.bot
Recipe
live $0.0100 premium Contract Analysis

Contract Integration Risk Checklist

Turn ABI shape, optional docs, and public context into a compact contract integration checklist.

$0.0100price
4steps
7sources
8ktokens saved
4tool calls compressed
median latency
WhatsABIStableEnrichGeminiWhatsabi Contract AbiStableenrich Firecrawl ScrapeStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/contract-integration-risk-checklist/run
Capabilities: contract-integration, risk-checklist, abi-review

Why pay for this?

This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.

Combines ABI shape, docs evidence, and search context into a short contract integration checklist.

Creator

Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Load contract ABI

fetch_transform

Source: Whatsabi Contract Abi
Step id: abi

Stage 2

Scrape contract docs

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: docs

Stage 3

Search contract context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 4

Build contract integration risk checklist

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load contract ABI

{
  "id": "abi",
  "kind": "fetch_transform",
  "title": "Load contract ABI",
  "request": {
    "params": {
      "address": "{{ $.input.contractAddress }}",
      "network": "eip155:8453"
    },
    "sourceId": "whatsabi_contract_abi",
    "deliveryFormat": "json"
  }
}

Scrape contract docs

{
  "id": "docs",
  "kind": "fetch_transform",
  "title": "Scrape contract docs",
  "request": {
    "params": {
      "url": "{{ $.input.docsUrl }}"
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Search contract context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search contract context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.contractAddress }} smart contract docs integration risks"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build contract integration risk checklist

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build contract integration risk checklist",
  "request": {
    "params": {
      "input": {
        "abi": "{{ $.stepsById.abi.output }}",
        "docs": "{{ $.stepsById.docs.output }}",
        "docsUrl": "{{ $.input.docsUrl }}",
        "publicContext": "{{ $.stepsById.search.output }}",
        "contractAddress": "{{ $.input.contractAddress }}"
      },
      "prompt": "Build a contract integration risk checklist. Focus on the checklist items, blockers, and the next actions needed before integrating.",
      "responseSchema": {
        "type": "object",
        "required": [
          "contractAddress",
          "riskLevel",
          "summary",
          "checklist",
          "blockers",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "blockers": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Potential blockers or unknowns."
          },
          "checklist": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "status",
                "reason"
              ],
              "properties": {
                "title": {
                  "type": "string"
                },
                "reason": {
                  "type": "string"
                },
                "status": {
                  "enum": [
                    "do_now",
                    "watch",
                    "skip"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Integration risk checklist items."
          },
          "riskLevel": {
            "enum": [
              "medium",
              "low",
              "high"
            ],
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "contractAddress": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing contract integration review into a short checklist. Stay grounded in the supplied ABI, docs, and public search context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}