Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines Base wallet state, crosschain balances, and bridge route context into a single migration plan.
Combine Base wallet state, crosschain balances, and bridge context into a migration plan.
Endpoint: /v1/recipes/crosschain-wallet-migration-plan/run
Capabilities: crosschain, wallet-migration, wallet-ops, bridge
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines Base wallet state, crosschain balances, and bridge route context into a single migration 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: 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": "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,
"chainIds": "{{ $.input.chainIds }}",
"addresses": "{{ $.input.walletAddresses }}"
},
"sourceId": "zapper_token_balances",
"deliveryFormat": "json"
}
}
{
"id": "routes",
"kind": "fetch_transform",
"title": "Rank bridge-capable routes",
"request": {
"params": {
"limit": 5,
"capability": "bridge"
},
"sourceId": "route_capability_candidates",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build migration plan",
"request": {
"params": {
"input": {
"routes": "{{ $.stepsById.routes.output }}",
"portfolio": "{{ $.stepsById.portfolio.output }}",
"walletAddresses": "{{ $.input.walletAddresses }}",
"connectedAddress": "{{ $.input.connectedAddress }}",
"crosschainBalances": "{{ $.stepsById.balances.output }}",
"destinationAddress": "{{ $.input.destinationAddress }}"
},
"prompt": "Prepare a crosschain wallet migration plan. Focus on directly executable value, bridge-required value, external-wallet value, migration priorities, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"connectedAddress",
"destinationAddress",
"summary",
"directlyExecutableUsd",
"bridgeRequiredUsd",
"externalWalletUsd",
"migrationPriorities",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"connectedAddress": {
"type": "string"
},
"bridgeRequiredUsd": {
"type": "number"
},
"externalWalletUsd": {
"type": "number"
},
"destinationAddress": {
"type": "string"
},
"migrationPriorities": {
"type": "array",
"items": {
"type": "string"
},
"description": "Migration priorities."
},
"directlyExecutableUsd": {
"type": "number"
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact wallet migration plan. Stay grounded in the supplied wallet state, balance scan, and route shortlist only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}