Why pay for this?
This recipe turns roughly 22 separate tool operations into one paid endpoint call and saves about ~330k tokens saved.
Load Allium balances -> Load Allium counterparties -> Load Allium labels -> Summarize Allium treasury watch
Combine Allium-backed balances, counterparties, and labels into a treasury-oriented watch brief.
Endpoint: /v1/recipes/allium-treasury-watch/run
Capabilities: allium, treasury-watch, wallet-intelligence, base
This recipe turns roughly 22 separate tool operations into one paid endpoint call and saves about ~330k tokens saved.
Load Allium balances -> Load Allium counterparties -> Load Allium labels -> Summarize Allium treasury watch
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 08:45Z
Source: Allium Wallet Balances Raw
Step id: balances
Source: Allium Wallet Counterparties
Step id: counterparties
Source: Allium Wallet Labels
Step id: labels
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| 362fb746-53bb-4fe8-a435-549692c2e6e6 | succeeded | recipe_api | 2026-03-12T08:39:32.883Z |
| cd27cfed-644c-47f3-baf4-b721b49e82b0 | succeeded | recipe_api | 2026-03-12T08:00:05.239Z |
{
"id": "balances",
"kind": "materialize",
"title": "Load Allium balances",
"request": {
"scope": {
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_balances_raw",
"deliveryFormat": "json"
}
}
{
"id": "counterparties",
"kind": "materialize",
"title": "Load Allium counterparties",
"request": {
"scope": {
"window": "7d",
"maxItems": 50,
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_counterparties",
"deliveryFormat": "json"
}
}
{
"id": "labels",
"kind": "materialize",
"title": "Load Allium labels",
"request": {
"scope": {
"window": "7d",
"maxItems": 50,
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_labels",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Summarize Allium treasury watch",
"request": {
"params": {
"input": {
"labels": "{{ $.stepsById.labels.output }}",
"balances": "{{ $.stepsById.balances.output }}",
"walletAddress": "{{ $.input.walletAddress }}",
"counterparties": "{{ $.stepsById.counterparties.output }}"
},
"prompt": "Prepare a treasury watch brief from these Allium-backed wallet snapshots. Focus on balance concentration, counterparty concentration, visible labels, strengths, risks, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"status",
"summary",
"strengths",
"risks",
"nextActions"
],
"properties": {
"risks": {
"type": "array",
"items": {
"type": "string"
},
"description": "Risks."
},
"status": {
"enum": [
"clear",
"watch",
"escalate"
],
"type": "string"
},
"summary": {
"type": "string"
},
"strengths": {
"type": "array",
"items": {
"type": "string"
},
"description": "Strengths."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"walletAddress": {
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise Allium treasury watch brief. Stay grounded in the supplied JSON only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}