402.bot
Recipe
live $0.0075 medium Market & Prediction

Base Verified Wallet Signal Brief

Combine token flow, social search, and bounded context into a compact Base verified-wallet signal brief.

$0.0075price
4steps
8sources
9ktokens saved
4tool calls compressed
median latency
Token Flowtwit.shStableEnrichGeminiToken Flow SnapshotTwitsh Tweet SearchStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/base-verified-wallet-signal-brief/run
Capabilities: wallet-signals, verified-wallets, base-signals

Why pay for this?

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

Combines token flow, social search, and public context into a compact Base verified-wallet signal brief.

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

Materialize token flow snapshot

materialize

Source: Token Flow Snapshot
Step id: flow

Stage 2

Search X signal chatter

fetch_transform

Source: Twitsh Tweet Search
Step id: tweets

Stage 3

Search Base signal context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 4

Build Base verified wallet signal brief

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

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 X signal chatter

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

Search Base signal context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search Base signal context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.query }} {{ $.input.operatorGoal }}"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build Base verified wallet signal brief

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build Base verified wallet signal brief",
  "request": {
    "params": {
      "input": {
        "flow": "{{ $.stepsById.flow.output.response.result }}",
        "query": "{{ $.input.query }}",
        "tweets": "{{ $.stepsById.tweets.output }}",
        "operatorGoal": "{{ $.input.operatorGoal }}",
        "searchContext": "{{ $.stepsById.search.output }}"
      },
      "prompt": "Build a Base verified-wallet signal brief. Focus on whether the signal looks actionable, watch-level, or weak, the verified signal rows, the noise flags, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "query",
          "signalVerdict",
          "summary",
          "verifiedSignals",
          "noiseFlags",
          "nextActions"
        ],
        "properties": {
          "query": {
            "type": "string"
          },
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "noiseFlags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Noise or staleness flags."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Next actions."
          },
          "signalVerdict": {
            "enum": [
              "actionable",
              "watch",
              "weak"
            ],
            "type": "string"
          },
          "verifiedSignals": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "signal",
                "note",
                "confidence"
              ],
              "properties": {
                "note": {
                  "type": "string",
                  "maxLength": 120
                },
                "signal": {
                  "type": "string",
                  "maxLength": 80
                },
                "confidence": {
                  "enum": [
                    "low",
                    "medium",
                    "high"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "maxItems": 4,
            "description": "Verified-wallet signal rows."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing Base wallet-signal review into a bounded brief. Stay grounded in the supplied token-flow, social search, and public context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}