Why pay for this?
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~11k tokens saved.
Combines wallet activity, counterparties, token flow, and public context into a compact Base accumulation alert.
Combine wallet activity, counterparties, token flow, and bounded context into a compact Base accumulation alert.
Endpoint: /v1/recipes/base-wallet-cluster-accumulation-alert/run
Capabilities: wallet-cluster, accumulation-alert, base-signals
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~11k tokens saved.
Combines wallet activity, counterparties, token flow, and public context into a compact Base accumulation alert.
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: activity
Source: Allium Wallet Counterparties
Step id: counterparties
Source: Token Flow Snapshot
Step id: flow
Source: Stableenrich Exa Search
Step id: search
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",
"request": {
"scope": {
"window": "7d",
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_transactions_raw",
"deliveryFormat": "json"
}
}
{
"id": "counterparties",
"kind": "materialize",
"title": "Materialize wallet counterparties",
"request": {
"scope": {
"window": "7d",
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "allium_wallet_counterparties",
"deliveryFormat": "json"
}
}
{
"id": "flow",
"kind": "materialize",
"title": "Materialize token flow snapshot",
"request": {
"scope": {
"window": "24h",
"tokenAddress": "{{ $.input.tokenAddress }}"
},
"network": "eip155:8453",
"templateId": "token_flow_snapshot",
"deliveryFormat": "json"
}
}
{
"id": "search",
"kind": "fetch_transform",
"title": "Search Base accumulation context",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.walletAddress }} Base wallet cluster accumulation {{ $.input.operatorGoal }}"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build Base wallet cluster accumulation alert",
"request": {
"params": {
"input": {
"flow": "{{ $.stepsById.flow.output.response.result }}",
"activity": "{{ $.stepsById.activity.output.response.result }}",
"operatorGoal": "{{ $.input.operatorGoal }}",
"searchContext": "{{ $.stepsById.search.output }}",
"walletAddress": "{{ $.input.walletAddress }}",
"counterparties": "{{ $.stepsById.counterparties.output.response.result }}"
},
"prompt": "Build a Base wallet cluster accumulation alert. Focus on whether the pattern looks clustered, mixed, or weak, the cluster signals, the counterparty flags, and the next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"clusterStatus",
"summary",
"clusterSignals",
"counterpartyFlags",
"nextActions"
],
"properties": {
"summary": {
"type": "string",
"maxLength": 280
},
"nextActions": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Next actions."
},
"clusterStatus": {
"enum": [
"clustered",
"mixed",
"weak"
],
"type": "string"
},
"walletAddress": {
"type": "string"
},
"clusterSignals": {
"type": "array",
"items": {
"type": "object",
"required": [
"label",
"note",
"significance"
],
"properties": {
"note": {
"type": "string",
"maxLength": 120
},
"label": {
"type": "string",
"maxLength": 60
},
"significance": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
}
},
"additionalProperties": false
},
"maxItems": 4,
"description": "Cluster signals."
},
"counterpartyFlags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Counterparty flags."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing Base cluster review into a bounded alert. Stay grounded in the supplied wallet activity, counterparties, token flow, and public context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}