Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines wallet activity delta and fresh balances into a short anomaly brief with explicit changes and next actions.
Compare wallet activity and balances against an optional prior snapshot to surface only the meaningful anomalies.
Endpoint: /v1/recipes/wallet-anomaly-delta-brief/run
Capabilities: wallet-anomaly, delta-brief, wallet-monitoring
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines wallet activity delta and fresh balances into a short anomaly brief with explicit changes and 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: Wallet Activity Delta
Step id: activity
Source: Allium Wallet Balances Raw
Step id: balances
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": "activity",
"kind": "materialize",
"title": "Materialize wallet activity delta",
"request": {
"scope": {
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_activity_delta",
"deliveryFormat": "json"
}
}
{
"id": "balances",
"kind": "materialize",
"title": "Materialize wallet balances",
"request": {
"scope": {
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_balances_raw",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build wallet anomaly delta brief",
"request": {
"params": {
"input": {
"activity": "{{ $.stepsById.activity.output.response.result }}",
"balances": "{{ $.stepsById.balances.output.response.result }}",
"walletAddress": "{{ $.input.walletAddress }}",
"previousSnapshot": "{{ $.input.previousSnapshot }}"
},
"prompt": "Build a wallet anomaly delta brief. Compare the current wallet state to any previous snapshot and return only the meaningful changes, anomalies, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"summary",
"currentSnapshot",
"whatChanged",
"anomalies",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"anomalies": {
"type": "array",
"items": {
"type": "string"
},
"description": "Current anomalies or watch items."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"whatChanged": {
"type": "array",
"items": {
"type": "object",
"required": [
"label",
"change",
"significance"
],
"properties": {
"label": {
"type": "string"
},
"change": {
"type": "string"
},
"significance": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Meaningful wallet changes since the previous snapshot."
},
"walletAddress": {
"type": "string"
},
"currentSnapshot": {
"type": "object",
"description": "Current wallet anomaly snapshot.",
"additionalProperties": true
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing wallet drift into a bounded delta brief. If no previous snapshot is provided, return the current-state packet with a minimal change section."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}