Why pay for this?
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~4k tokens saved.
Reads one ABI and turns it into a compact monitoring watchlist with clear next actions.
Turn one ABI into a compact monitoring watchlist with the highest-signal things to track.
Endpoint: /v1/recipes/contract-monitoring-watchlist/run
Capabilities: contract-monitoring, watchlist, abi-review
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~4k tokens saved.
Reads one ABI and turns it into a compact monitoring watchlist with clear next actions.
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: 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": "summarize",
"kind": "fetch_transform",
"title": "Build contract monitoring watchlist",
"request": {
"params": {
"input": {
"abi": "{{ $.stepsById.abi.output }}",
"contractAddress": "{{ $.input.contractAddress }}"
},
"prompt": "Build a compact contract monitoring watchlist. Focus on the most important watch items, the key selectors or touchpoints, and the next actions.",
"responseSchema": {
"type": "object",
"required": [
"contractAddress",
"summary",
"watchlist",
"selectors",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"selectors": {
"type": "array",
"items": {
"type": "string"
},
"description": "Selectors or touchpoints worth monitoring."
},
"watchlist": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"priority",
"note"
],
"properties": {
"note": {
"type": "string"
},
"title": {
"type": "string"
},
"priority": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
}
},
"additionalProperties": false
},
"description": "High-signal contract watchlist items."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"contractAddress": {
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing ABI review into a short monitoring watchlist. Stay grounded in the supplied ABI only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}