Why pay for this?
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~4k tokens saved.
Scans recent ERC20 approvals and converts them into a compact wallet approval-risk brief.
Summarize active ERC20 approvals for one Base wallet into a compact risk brief.
Endpoint: /v1/recipes/wallet-approval-risk-brief/run
Capabilities: wallet-approvals, approval-risk, wallet-security, base
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~4k tokens saved.
Scans recent ERC20 approvals and converts them into a compact wallet approval-risk brief.
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: Wallet Approval Surface
Step id: approvals
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": "approvals",
"kind": "fetch_transform",
"title": "Load wallet approval surface",
"request": {
"params": {
"maxItems": 12,
"walletAddress": "{{ $.input.walletAddress }}"
},
"sourceId": "wallet_approval_surface",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build approval risk brief",
"request": {
"params": {
"input": {
"approvals": "{{ $.stepsById.approvals.output }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Summarize this wallet approval surface. Focus on risk level, active spenders, risk notes, and concrete next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"riskLevel",
"summary",
"activeSpenders",
"riskNotes",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"riskLevel": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"riskNotes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Risk notes."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"walletAddress": {
"type": "string"
},
"activeSpenders": {
"type": "array",
"items": {
"type": "object",
"required": [
"tokenAddress",
"spender"
],
"properties": {
"spender": {
"type": "string"
},
"tokenSymbol": {
"type": "string"
},
"tokenAddress": {
"type": "string"
},
"allowanceDisplay": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise approval-risk brief. Stay grounded in the supplied approval data only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}