402.bot
Recipe
live $0.0075 medium Market & Prediction

Base DeFi Metric Jump Watch

Combine market history, token flow, and bounded discussion context into a compact Base DeFi metric-jump watch.

$0.0075price
4steps
8sources
9ktokens saved
4tool calls compressed
median latency
MessariToken Flowtwit.shGeminiMessari Asset TimeseriesToken Flow SnapshotTwitsh Tweet SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/base-defi-metric-jump-watch/run
Capabilities: metric-jump, base-watch, protocol-intelligence

Why pay for this?

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

Combines market history, token flow, and bounded discussion context into a compact Base metric-jump watch.

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

fetch_transform

Source: Messari Asset Timeseries
Step id: timeseries

Stage 2

Materialize token flow snapshot

materialize

Source: Token Flow Snapshot
Step id: flow

Stage 3

Search discussion context

fetch_transform

Source: Twitsh Tweet Search
Step id: tweets

Stage 4

Build Base DeFi metric jump watch

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

{
  "id": "timeseries",
  "kind": "fetch_transform",
  "title": "Load asset price history",
  "request": {
    "params": {
      "limit": 14,
      "assetId": "{{ $.input.assetSlug }}",
      "frequency": "1d",
      "metricKey": "price_usd"
    },
    "sourceId": "messari_asset_timeseries",
    "deliveryFormat": "json"
  }
}

Materialize token flow snapshot

{
  "id": "flow",
  "kind": "materialize",
  "title": "Materialize token flow snapshot",
  "request": {
    "scope": {
      "window": "24h",
      "tokenAddress": "{{ $.input.tokenAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "token_flow_snapshot",
    "deliveryFormat": "json"
  }
}

Search discussion context

{
  "id": "tweets",
  "kind": "fetch_transform",
  "title": "Search discussion context",
  "request": {
    "params": {
      "phrase": "{{ $.input.query }}",
      "minLikes": 2
    },
    "sourceId": "twitsh_tweet_search",
    "deliveryFormat": "json"
  }
}

Build Base DeFi metric jump watch

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build Base DeFi metric jump watch",
  "request": {
    "params": {
      "input": {
        "flow": "{{ $.stepsById.flow.output.response.result }}",
        "tweets": "{{ $.stepsById.tweets.output }}",
        "timeseries": "{{ $.stepsById.timeseries.output }}",
        "protocolName": "{{ $.input.protocolName }}"
      },
      "prompt": "Build a Base DeFi metric-jump watch. Focus on the alert level, the metric-jump signals, the likely drivers, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "protocolName",
          "alertLevel",
          "summary",
          "jumpSignals",
          "likelyDrivers",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "alertLevel": {
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "type": "string"
          },
          "jumpSignals": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Metric-jump signals."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Next actions."
          },
          "protocolName": {
            "type": "string"
          },
          "likelyDrivers": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Likely drivers."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing Base protocol-intelligence into a bounded watch packet. Stay grounded in the supplied time-series, token-flow, and discussion context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}