402.bot
Recipe
live $0.0075 medium Market & Prediction

Post Trade Watchtower

Combine wallet, market, and liquidity context into a compact post-trade monitoring packet.

$0.0075price
6steps
10sources
6ktokens saved
3tool calls compressed
median latency
ZapperMessariUniswapGeminiZapper Token BalancesZapper Token PriceMessari Asset TimeseriesMessari News FeedUniswap Token LiquidityGoogle Gemini Flash Structured

Endpoint: /v1/recipes/post-trade-watchtower/run
Capabilities: trading, post-trade, watchtower

Why pay for this?

This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.

Combines wallet, market, and liquidity context into a compact post-trade monitoring packet.

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 price history

fetch_transform

Source: Messari Asset Timeseries
Step id: timeseries

Stage 4

Load recent asset news

fetch_transform

Source: Messari News Feed
Step id: news

Stage 5

Inspect token liquidity

fetch_transform

Source: Uniswap Token Liquidity
Step id: liquidity

Stage 6

Build post trade watchtower

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

Load recent asset news

{
  "id": "news",
  "kind": "fetch_transform",
  "title": "Load recent asset news",
  "request": {
    "params": {
      "limit": 5,
      "assetKeys": [
        "{{ $.input.assetSlug }}"
      ]
    },
    "sourceId": "messari_news_feed",
    "deliveryFormat": "json"
  }
}

Inspect token liquidity

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

Build post trade watchtower

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build post trade watchtower",
  "request": {
    "params": {
      "input": {
        "news": "{{ $.stepsById.news.output }}",
        "price": "{{ $.stepsById.price.output }}",
        "chainId": "{{ $.input.chainId }}",
        "balances": "{{ $.stepsById.balances.output }}",
        "assetSlug": "{{ $.input.assetSlug }}",
        "liquidity": "{{ $.stepsById.liquidity.output }}",
        "timeseries": "{{ $.stepsById.timeseries.output }}",
        "tokenAddress": "{{ $.input.tokenAddress }}",
        "walletAddress": "{{ $.input.walletAddress }}"
      },
      "prompt": "Build a post-trade watchtower packet. Focus on the watch triggers, the exit checklist, the liquidity signals, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "chainId",
          "tokenAddress",
          "assetSlug",
          "summary",
          "watchTriggers",
          "exitChecklist",
          "liquiditySignals",
          "nextActions"
        ],
        "properties": {
          "chainId": {
            "type": "integer"
          },
          "summary": {
            "type": "string"
          },
          "assetSlug": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "tokenAddress": {
            "type": "string"
          },
          "exitChecklist": {
            "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": "Exit or review checklist items."
          },
          "walletAddress": {
            "type": "string"
          },
          "watchTriggers": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "trigger",
                "action"
              ],
              "properties": {
                "action": {
                  "type": "string"
                },
                "trigger": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Post-trade triggers to monitor."
          },
          "liquiditySignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Liquidity signals worth monitoring."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing post-trade monitoring into a bounded packet. Stay grounded in the supplied wallet, market, and liquidity context."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}