Why pay for this?
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Explains recent wallet transfers and counterparties without forcing an agent to read raw rows.
Turn recent wallet transactions into a short operator digest instead of a raw transfer feed.
Endpoint: /v1/recipes/wallet-tx-explainer-digest/run
Capabilities: wallet-transactions, tx-explainer, wallet-activity, base
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Explains recent wallet transfers and counterparties without forcing an agent to read raw rows.
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: Allium Wallet Transactions Raw
Step id: transactions
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": "transactions",
"kind": "materialize",
"title": "Load Allium wallet transactions",
"request": {
"scope": {
"window": "{{ $.input.window }}",
"maxItems": 50,
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_transactions_raw",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build transaction digest",
"request": {
"params": {
"input": {
"window": "{{ $.input.window }}",
"transactions": "{{ $.stepsById.transactions.output }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Explain this recent wallet transaction feed for an operator. Focus on what happened, which counterparties matter, and the next actions to take.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"window",
"summary",
"transferNarrative",
"counterparties",
"nextActions"
],
"properties": {
"window": {
"type": "string"
},
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"walletAddress": {
"type": "string"
},
"counterparties": {
"type": "array",
"items": {
"type": "string"
},
"description": "Counterparties."
},
"transferNarrative": {
"type": "array",
"items": {
"type": "string"
},
"description": "Transfer narrative."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact wallet transaction digest. Stay grounded in the supplied transaction feed only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}