Why pay for this?
This recipe turns roughly 8 separate tool operations into one paid endpoint call and saves about ~120k tokens saved.
Lookup selector -> Summarize selector security clues
Turn one EVM selector into a short security-oriented interpretation with ambiguity warnings.
Endpoint: /v1/recipes/selector-security-brief/run
Capabilities: selector-security, abi-debugging, contract-review
This recipe turns roughly 8 separate tool operations into one paid endpoint call and saves about ~120k tokens saved.
Lookup selector -> Summarize selector security clues
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: 79
Success 30d: 100%
Refund 30d: 0%
Paid runs: 2
Creator recipes: 1
Last run: 2026-03-12 06:23Z
Source: 4byte Signature Lookup
Step id: lookup
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| c6b46265-c9ad-4ae3-bc51-10f467c132ff | succeeded | recipe_api | 2026-03-12T06:23:19.711Z |
| 628d2dab-6b95-4116-81ca-566950cc5d15 | succeeded | recipe_api | 2026-03-12T06:07:48.794Z |
{
"id": "lookup",
"kind": "fetch_transform",
"title": "Lookup selector",
"request": {
"params": {
"limit": 8,
"selector": "{{ $.input.selector }}"
},
"sourceId": "4byte_signature_lookup",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Summarize selector security clues",
"request": {
"params": {
"input": {
"selector": "{{ $.input.selector }}",
"candidates": "{{ $.stepsById.lookup.output }}"
},
"prompt": "Interpret this EVM selector for a security reviewer. Focus on the most likely function semantics, ambiguity, privileged-action clues, and a short review checklist.",
"responseSchema": {
"type": "object",
"required": [
"selector",
"likelyFunction",
"ambiguityLevel",
"summary",
"privilegedClues",
"reviewChecklist"
],
"properties": {
"summary": {
"type": "string"
},
"selector": {
"type": "string"
},
"ambiguityLevel": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"likelyFunction": {
"type": "string"
},
"privilegedClues": {
"type": "array",
"items": {
"type": "string"
},
"description": "Privileged clues."
},
"reviewChecklist": {
"type": "array",
"items": {
"type": "string"
},
"description": "Review checklist."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a selector security brief. Stay grounded in the supplied candidate signatures only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}