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.
Turn ABI shape, optional docs, and public context into a compact contract integration checklist.
Endpoint: /v1/recipes/contract-integration-risk-checklist/run
Capabilities: contract-integration, risk-checklist, abi-review
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.
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
Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs
Source: Whatsabi Contract Abi
Step id: abi
Source: Stableenrich Firecrawl Scrape
Step id: docs
Source: Stableenrich Exa Search
Step id: search
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"id": "abi",
"kind": "fetch_transform",
"title": "Load contract ABI",
"request": {
"params": {
"address": "{{ $.input.contractAddress }}",
"network": "eip155:8453"
},
"sourceId": "whatsabi_contract_abi",
"deliveryFormat": "json"
}
}
{
"id": "docs",
"kind": "fetch_transform",
"title": "Scrape contract docs",
"request": {
"params": {
"url": "{{ $.input.docsUrl }}"
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"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"
}
}
{
"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"
}
}