Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Combines wallet context, unlock timing, price history, and a protective quote into a compact risk board.
Combine wallet context, token unlocks, history, and a protective exit quote into a compact risk board.
Endpoint: /v1/recipes/unlock-front-run-risk-board/run
Capabilities: trading, unlock-risk, protective-exit
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Combines wallet context, unlock timing, price history, and a protective quote into a compact risk board.
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: Messari Token Unlocks
Step id: unlocks
Source: Messari Asset Timeseries
Step id: timeseries
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": "unlocks",
"kind": "fetch_transform",
"title": "Load token unlocks",
"request": {
"params": {
"limit": 5,
"assetId": "{{ $.input.assetSlug }}"
},
"sourceId": "messari_token_unlocks",
"deliveryFormat": "json"
}
}
{
"id": "timeseries",
"kind": "fetch_transform",
"title": "Load token price history",
"request": {
"params": {
"limit": 14,
"assetId": "{{ $.input.assetSlug }}",
"frequency": "1d",
"metricKey": "price_usd"
},
"sourceId": "messari_asset_timeseries",
"deliveryFormat": "json"
}
}
{
"id": "quote",
"kind": "fetch_transform",
"title": "Quote the protective exit",
"request": {
"params": {
"amount": "{{ $.input.protectedExitUsd }}",
"chainId": "{{ $.input.chainId }}",
"exactSide": "output",
"slippageBps": "{{ $.input.slippageBps }}",
"tokenInAddress": "{{ $.input.tokenAddress }}",
"tokenOutAddress": "0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913"
},
"sourceId": "uniswap_swap_quote",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build unlock front run risk board",
"request": {
"params": {
"input": {
"price": "{{ $.stepsById.price.output }}",
"quote": "{{ $.stepsById.quote.output }}",
"chainId": "{{ $.input.chainId }}",
"unlocks": "{{ $.stepsById.unlocks.output }}",
"balances": "{{ $.stepsById.balances.output }}",
"assetSlug": "{{ $.input.assetSlug }}",
"timeseries": "{{ $.stepsById.timeseries.output }}",
"tokenAddress": "{{ $.input.tokenAddress }}",
"walletAddress": "{{ $.input.walletAddress }}",
"protectedExitUsd": "{{ $.input.protectedExitUsd }}"
},
"prompt": "Build an unlock front-run risk board. Focus on the unlock board itself, the protective quote, the timing signals, and the next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"chainId",
"tokenAddress",
"assetSlug",
"summary",
"unlockBoard",
"protectiveQuote",
"timingSignals",
"nextActions"
],
"properties": {
"chainId": {
"type": "integer"
},
"summary": {
"type": "string"
},
"assetSlug": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"unlockBoard": {
"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": "Unlock risk board items."
},
"tokenAddress": {
"type": "string"
},
"timingSignals": {
"type": "array",
"items": {
"type": "string"
},
"description": "Timing signals around the unlock window."
},
"walletAddress": {
"type": "string"
},
"protectiveQuote": {
"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": "Reference protective exit quote.",
"additionalProperties": false
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing unlock risk into a bounded operator packet. Stay grounded in the supplied wallet, market, unlock, and quote context."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}