402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Unlock Front Run Risk Board

Combine wallet context, token unlocks, history, and a protective exit quote into a compact risk board.

$0.0100price
6steps
10sources
6ktokens saved
4tool calls compressed
median latency
ZapperMessariUniswapGeminiZapper Token BalancesZapper Token PriceMessari Token UnlocksMessari Asset TimeseriesUniswap Swap QuoteGoogle Gemini Flash Structured

Endpoint: /v1/recipes/unlock-front-run-risk-board/run
Capabilities: trading, unlock-risk, protective-exit

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.

Creator

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

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Load wallet balances

fetch_transform

Source: Zapper Token Balances
Step id: balances

Stage 2

Load token price

fetch_transform

Source: Zapper Token Price
Step id: price

Stage 3

Load token unlocks

fetch_transform

Source: Messari Token Unlocks
Step id: unlocks

Stage 4

Load token price history

fetch_transform

Source: Messari Asset Timeseries
Step id: timeseries

Stage 5

Quote the protective exit

fetch_transform

Source: Uniswap Swap Quote
Step id: quote

Stage 6

Build unlock front run risk board

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load wallet balances

{
  "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"
  }
}

Load token price

{
  "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"
  }
}

Load token unlocks

{
  "id": "unlocks",
  "kind": "fetch_transform",
  "title": "Load token unlocks",
  "request": {
    "params": {
      "limit": 5,
      "assetId": "{{ $.input.assetSlug }}"
    },
    "sourceId": "messari_token_unlocks",
    "deliveryFormat": "json"
  }
}

Load token price history

{
  "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"
  }
}

Quote the protective exit

{
  "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"
  }
}

Build unlock front run risk board

{
  "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"
  }
}