Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines portfolio, transfers, and approvals into one short wallet handover packet for operators.
Combine portfolio, transfers, and approvals into one short handover packet for wallet operators.
Endpoint: /v1/recipes/wallet-ops-handover-packet/run
Capabilities: wallet-handover, wallet-ops, operator-packet
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines portfolio, transfers, and approvals into one short wallet handover packet for operators.
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 Portfolio
Step id: portfolio
Source: Allium Wallet Transactions Raw
Step id: transactions
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": "portfolio",
"kind": "materialize",
"title": "Materialize wallet portfolio",
"request": {
"scope": {
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_portfolio",
"deliveryFormat": "json"
}
}
{
"id": "transactions",
"kind": "materialize",
"title": "Materialize wallet transfers",
"request": {
"scope": {
"window": "24h",
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_transactions_raw",
"deliveryFormat": "json"
}
}
{
"id": "approvals",
"kind": "fetch_transform",
"title": "Load wallet approvals",
"request": {
"params": {
"walletAddress": "{{ $.input.walletAddress }}",
"lookbackBlocks": 50000
},
"sourceId": "wallet_approval_surface",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build wallet ops handover packet",
"request": {
"params": {
"input": {
"approvals": "{{ $.stepsById.approvals.output }}",
"portfolio": "{{ $.stepsById.portfolio.output.response.result }}",
"transactions": "{{ $.stepsById.transactions.output.response.result }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Build a wallet ops handover packet. Focus on the most important portfolio, transfer, and approval facts, then return compact handover sections and next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"summary",
"handoverSections",
"openQuestions",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"openQuestions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Questions worth clarifying in the next operator pass."
},
"walletAddress": {
"type": "string"
},
"handoverSections": {
"type": "array",
"items": {
"type": "object",
"required": [
"section",
"detail"
],
"properties": {
"detail": {
"type": "string"
},
"section": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Compact handover sections."
}
},
"additionalProperties": false
},
"systemInstruction": "You are writing a compact operator handover packet. Stay grounded in the supplied wallet portfolio, transfer, and approval data only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}