Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Turns balances, approvals, and gas into a bounded wallet exit and liquidity plan.
Compress wallet balances, approvals, gas, and exit priorities into one liquidity plan.
Endpoint: /v1/recipes/wallet-exit-liquidity-plan/run
Capabilities: wallet-exit, liquidity-plan, wallet-ops, base
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Turns balances, approvals, and gas into a bounded wallet exit and liquidity plan.
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: Zapper Token Balances
Step id: balances
Source: Wallet Approval Surface
Step id: approvals
Source: Base Gas Window
Step id: gas
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 connected wallet portfolio",
"request": {
"scope": {
"walletAddress": "{{ $.input.connectedAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_portfolio",
"deliveryFormat": "json"
}
}
{
"id": "balances",
"kind": "fetch_transform",
"title": "Load crosschain balances",
"request": {
"params": {
"first": 20,
"addresses": "{{ $.input.walletAddresses }}"
},
"sourceId": "zapper_token_balances",
"deliveryFormat": "json"
}
}
{
"id": "approvals",
"kind": "fetch_transform",
"title": "Load wallet approval surface",
"request": {
"params": {
"maxItems": 10,
"walletAddress": "{{ $.input.connectedAddress }}"
},
"sourceId": "wallet_approval_surface",
"deliveryFormat": "json"
}
}
{
"id": "gas",
"kind": "fetch_transform",
"title": "Load Base gas window",
"request": {
"params": {
"windowBlocks": 12
},
"sourceId": "base_gas_window",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build exit liquidity plan",
"request": {
"params": {
"input": {
"gas": "{{ $.stepsById.gas.output }}",
"approvals": "{{ $.stepsById.approvals.output }}",
"portfolio": "{{ $.stepsById.portfolio.output }}",
"connectedAddress": "{{ $.input.connectedAddress }}",
"crosschainBalances": "{{ $.stepsById.balances.output }}",
"destinationAddress": "{{ $.input.destinationAddress }}"
},
"prompt": "Prepare a wallet exit liquidity plan. Focus on liquidity status, exit priorities, revoke candidates, and concrete next actions.",
"responseSchema": {
"type": "object",
"required": [
"connectedAddress",
"liquidityStatus",
"summary",
"exitPriorities",
"revokeCandidates",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"exitPriorities": {
"type": "array",
"items": {
"type": "string"
},
"description": "Exit priorities."
},
"liquidityStatus": {
"enum": [
"clear",
"watch",
"manual-review"
],
"type": "string"
},
"connectedAddress": {
"type": "string"
},
"revokeCandidates": {
"type": "array",
"items": {
"type": "string"
},
"description": "Revoke candidates."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact wallet exit plan. Stay grounded in the supplied balances, approvals, and gas context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}