402.bot
Recipe
live $0.0075 medium Contract Analysis

Contract Monitoring Watchlist

Turn one ABI into a compact monitoring watchlist with the highest-signal things to track.

$0.0075price
2steps
4sources
4ktokens saved
2tool calls compressed
median latency
WhatsABIGeminiWhatsabi Contract AbiGoogle Gemini Flash Structured

Endpoint: /v1/recipes/contract-monitoring-watchlist/run
Capabilities: contract-monitoring, watchlist, abi-review

Why pay for this?

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

Reads one ABI and turns it into a compact monitoring watchlist with clear next actions.

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 contract ABI

fetch_transform

Source: Whatsabi Contract Abi
Step id: abi

Stage 2

Build contract monitoring watchlist

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 contract ABI

{
  "id": "abi",
  "kind": "fetch_transform",
  "title": "Load contract ABI",
  "request": {
    "params": {
      "address": "{{ $.input.contractAddress }}",
      "network": "eip155:8453"
    },
    "sourceId": "whatsabi_contract_abi",
    "deliveryFormat": "json"
  }
}

Build contract monitoring watchlist

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build contract monitoring watchlist",
  "request": {
    "params": {
      "input": {
        "abi": "{{ $.stepsById.abi.output }}",
        "contractAddress": "{{ $.input.contractAddress }}"
      },
      "prompt": "Build a compact contract monitoring watchlist. Focus on the most important watch items, the key selectors or touchpoints, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "contractAddress",
          "summary",
          "watchlist",
          "selectors",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "selectors": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Selectors or touchpoints worth monitoring."
          },
          "watchlist": {
            "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": "High-signal contract watchlist items."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "contractAddress": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing ABI review into a short monitoring watchlist. Stay grounded in the supplied ABI only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}