Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Compresses balances, recent activity, gas, and approvals into one pretrade checklist.
Compress balances, fresh activity, gas, and approvals into a pretrade readiness checklist.
Endpoint: /v1/recipes/wallet-pretrade-checklist/run
Capabilities: wallet-pretrade, wallet-ops, trade-readiness, base
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Compresses balances, recent activity, gas, and approvals into one pretrade checklist.
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: Wallet Activity Delta
Step id: activity
Source: Base Gas Window
Step id: gas
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": "Load wallet portfolio",
"request": {
"scope": {
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_portfolio",
"deliveryFormat": "json"
}
}
{
"id": "activity",
"kind": "materialize",
"title": "Load recent wallet activity",
"request": {
"scope": {
"window": "24h",
"maxItems": 50,
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_activity_delta",
"deliveryFormat": "json"
}
}
{
"id": "gas",
"kind": "fetch_transform",
"title": "Load Base gas window",
"request": {
"params": {
"windowBlocks": 12
},
"sourceId": "base_gas_window",
"deliveryFormat": "json"
}
}
{
"id": "approvals",
"kind": "fetch_transform",
"title": "Load wallet approval surface",
"request": {
"params": {
"maxItems": 10,
"walletAddress": "{{ $.input.walletAddress }}"
},
"sourceId": "wallet_approval_surface",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build pretrade checklist",
"request": {
"params": {
"input": {
"gas": "{{ $.stepsById.gas.output }}",
"activity": "{{ $.stepsById.activity.output }}",
"approvals": "{{ $.stepsById.approvals.output }}",
"portfolio": "{{ $.stepsById.portfolio.output }}",
"tradeIntent": "{{ $.input.tradeIntent }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Prepare a pretrade checklist. Focus on readiness status, blockers, watch items, and concrete next actions before a Base trade.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"readinessStatus",
"summary",
"blockers",
"watchItems",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"blockers": {
"type": "array",
"items": {
"type": "string"
},
"description": "Blockers."
},
"watchItems": {
"type": "array",
"items": {
"type": "string"
},
"description": "Watch items."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"walletAddress": {
"type": "string"
},
"readinessStatus": {
"enum": [
"ready",
"watch",
"blocked"
],
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact pretrade checklist. Stay grounded in the supplied wallet, gas, activity, and approval data only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}