Why pay for this?
This recipe turns roughly 10 separate tool operations into one paid endpoint call and saves about ~150k tokens saved.
Load wallet activity -> Summarize activity digest
Convert recent Base wallet activity into a short chronological digest with alert-style signals.
Endpoint: /v1/recipes/wallet-activity-digest/run
Capabilities: wallet-digest, wallet-activity, ops-alerting, base
This recipe turns roughly 10 separate tool operations into one paid endpoint call and saves about ~150k tokens saved.
Load wallet activity -> Summarize activity digest
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:22Z
Source: Wallet Activity Delta
Step id: activity
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| 5c376798-c11d-4e65-91d6-10ea3ca098c7 | succeeded | recipe_api | 2026-03-12T06:21:46.540Z |
| e13f1674-4a3a-446e-8b22-701a42c3500c | succeeded | recipe_api | 2026-03-12T06:05:39.273Z |
{
"id": "activity",
"kind": "materialize",
"title": "Load wallet activity",
"request": {
"scope": {
"window": "{{ $.input.window }}",
"maxItems": 50,
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_activity_delta",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Summarize activity digest",
"request": {
"params": {
"input": {
"window": "{{ $.input.window }}",
"activity": "{{ $.stepsById.activity.output }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Produce a short wallet activity digest from recent transfers. Highlight fresh movements, spikes, and practical review actions for an operator.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"window",
"alertLevel",
"summary",
"recentMovements",
"spikeSignals",
"recommendedActions"
],
"properties": {
"window": {
"type": "string"
},
"summary": {
"type": "string"
},
"alertLevel": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"spikeSignals": {
"type": "array",
"items": {
"type": "string"
},
"description": "Spike signals."
},
"walletAddress": {
"type": "string"
},
"recentMovements": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recent movements."
},
"recommendedActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recommended actions."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise activity digest. Stay grounded in the supplied JSON only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}