Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines wallet balances, gas context, and route candidates into a compact stablecoin deployment checklist.
Turn a wallet portfolio, gas window, and route shortlist into a compact stablecoin deployment checklist.
Endpoint: /v1/recipes/wallet-stablecoin-deployment-checklist/run
Capabilities: stablecoin-deployment, wallet-checklist, wallet-ops
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines wallet balances, gas context, and route candidates into a compact stablecoin deployment 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: Base Gas Window
Step id: gas
Source: Route Capability Candidates
Step id: routes
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": "gas",
"kind": "fetch_transform",
"title": "Load Base gas window",
"request": {
"params": {
"windowBlocks": 12
},
"sourceId": "base_gas_window",
"deliveryFormat": "json"
}
}
{
"id": "routes",
"kind": "fetch_transform",
"title": "Load target capability routes",
"request": {
"params": {
"limit": 5,
"strategy": "balanced",
"capability": "{{ $.input.targetCapability }}"
},
"sourceId": "route_capability_candidates",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build wallet stablecoin deployment checklist",
"request": {
"params": {
"input": {
"gas": "{{ $.stepsById.gas.output }}",
"routes": "{{ $.stepsById.routes.output }}",
"portfolio": "{{ $.stepsById.portfolio.output.response.result }}",
"targetChain": "{{ $.input.targetChain }}",
"walletAddress": "{{ $.input.walletAddress }}",
"targetCapability": "{{ $.input.targetCapability }}"
},
"prompt": "Build a wallet stablecoin deployment checklist. Focus on readiness, the checklist itself, funding notes, and the next actions before moving funds.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"targetChain",
"readinessStatus",
"summary",
"checklist",
"fundingNotes",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"checklist": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"status",
"reason"
],
"properties": {
"title": {
"type": "string"
},
"reason": {
"type": "string"
},
"status": {
"enum": [
"do_now",
"watch",
"skip"
],
"type": "string"
}
},
"additionalProperties": false
},
"description": "Stablecoin deployment checklist items."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"targetChain": {
"type": "string"
},
"fundingNotes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Funding, gas, or route notes."
},
"walletAddress": {
"type": "string"
},
"readinessStatus": {
"enum": [
"ready",
"watch",
"blocked"
],
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing stablecoin deployment prep into a short checklist. Stay grounded in the supplied wallet portfolio, gas context, and route shortlist only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}