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, token context, liquidity, and a live quote into one compact entry packet.
Turn wallet balance, token context, liquidity, and a live quote into a compact entry packet.
Endpoint: /v1/recipes/wallet-to-token-entry-pack/run
Capabilities: trading, entry-pack, wallet-entry, token-buy
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines wallet balances, token context, liquidity, and a live quote into one compact entry packet.
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: Zapper Token Balances
Step id: balances
Source: Zapper Token Price
Step id: price
Source: Uniswap Token Liquidity
Step id: liquidity
Source: Messari Asset Details
Step id: asset
Source: Messari News Feed
Step id: news
Source: Uniswap Swap Quote
Step id: quote
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": "balances",
"kind": "fetch_transform",
"title": "Load wallet balances",
"request": {
"params": {
"first": 10,
"chainIds": [
"{{ $.input.chainId }}"
],
"addresses": [
"{{ $.input.walletAddress }}"
]
},
"sourceId": "zapper_token_balances",
"deliveryFormat": "json"
}
}
{
"id": "price",
"kind": "fetch_transform",
"title": "Load token price",
"request": {
"params": {
"address": "{{ $.input.tokenAddress }}",
"chainId": "{{ $.input.chainId }}",
"currency": "USD"
},
"sourceId": "zapper_token_price",
"deliveryFormat": "json"
}
}
{
"id": "liquidity",
"kind": "fetch_transform",
"title": "Inspect token liquidity",
"request": {
"params": {
"chainId": "{{ $.input.chainId }}",
"topPools": 3,
"tokenAddresses": [
"{{ $.input.tokenAddress }}"
]
},
"sourceId": "uniswap_token_liquidity",
"deliveryFormat": "json"
}
}
{
"id": "asset",
"kind": "fetch_transform",
"title": "Load asset details",
"request": {
"params": {
"assetId": "{{ $.input.assetSlug }}"
},
"sourceId": "messari_asset_details",
"deliveryFormat": "json"
}
}
{
"id": "news",
"kind": "fetch_transform",
"title": "Load recent asset news",
"request": {
"params": {
"limit": 5,
"assetKeys": [
"{{ $.input.assetSlug }}"
]
},
"sourceId": "messari_news_feed",
"deliveryFormat": "json"
}
}
{
"id": "quote",
"kind": "fetch_transform",
"title": "Quote the starter entry",
"request": {
"params": {
"amount": "{{ $.input.entryBudgetUsd }}",
"chainId": "{{ $.input.chainId }}",
"exactSide": "input",
"slippageBps": "{{ $.input.slippageBps }}",
"tokenInAddress": "0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913",
"tokenOutAddress": "{{ $.input.tokenAddress }}"
},
"sourceId": "uniswap_swap_quote",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build wallet to token entry pack",
"request": {
"params": {
"input": {
"news": "{{ $.stepsById.news.output }}",
"asset": "{{ $.stepsById.asset.output }}",
"price": "{{ $.stepsById.price.output }}",
"quote": "{{ $.stepsById.quote.output }}",
"chainId": "{{ $.input.chainId }}",
"balances": "{{ $.stepsById.balances.output }}",
"riskMode": "{{ $.input.riskMode }}",
"assetSlug": "{{ $.input.assetSlug }}",
"liquidity": "{{ $.stepsById.liquidity.output }}",
"tokenAddress": "{{ $.input.tokenAddress }}",
"walletAddress": "{{ $.input.walletAddress }}",
"entryBudgetUsd": "{{ $.input.entryBudgetUsd }}",
"settlementToken": "{{ $.input.settlementToken }}"
},
"prompt": "Build a wallet-to-token entry pack. Focus on readiness, the entry checklist, the quote, the suggested starter sizing, the main risk flags, and concrete next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"chainId",
"tokenAddress",
"assetSlug",
"readinessStatus",
"summary",
"entryChecklist",
"quote",
"suggestedEntry",
"riskFlags",
"nextActions"
],
"properties": {
"quote": {
"type": "object",
"required": [
"tokenInSymbol",
"tokenOutSymbol",
"amountIn",
"amountOut",
"priceImpactBps",
"routeHops"
],
"properties": {
"amountIn": {
"type": "string"
},
"amountOut": {
"type": "string"
},
"routeHops": {
"type": "array",
"items": {
"type": "string"
}
},
"tokenInSymbol": {
"type": "string"
},
"priceImpactBps": {
"type": "number"
},
"tokenOutSymbol": {
"type": "string"
}
},
"description": "Suggested Uniswap quote summary.",
"additionalProperties": false
},
"chainId": {
"type": "integer"
},
"summary": {
"type": "string"
},
"assetSlug": {
"type": "string"
},
"riskFlags": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"priority",
"note"
],
"properties": {
"note": {
"type": "string"
},
"title": {
"type": "string"
},
"priority": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
}
},
"additionalProperties": false
},
"description": "Primary entry risks to keep in view."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"tokenAddress": {
"type": "string"
},
"walletAddress": {
"type": "string"
},
"entryChecklist": {
"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": "Entry checklist items."
},
"suggestedEntry": {
"type": "object",
"required": [
"starterSizeUsd",
"maxSizeUsd",
"settlementToken",
"rationale"
],
"properties": {
"rationale": {
"type": "string"
},
"maxSizeUsd": {
"type": "number"
},
"starterSizeUsd": {
"type": "number"
},
"settlementToken": {
"enum": [
"USDC"
],
"type": "string"
}
},
"additionalProperties": false
},
"readinessStatus": {
"enum": [
"ready",
"watch",
"blocked"
],
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing a token entry decision into a bounded operator packet. Stay grounded in the supplied wallet, market, liquidity, quote, and news context."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}