402.bot
Recipe
live $0.0075 medium Wallet Intelligence

Gas Window Brief

Summarize Base gas conditions into a compact execution-window brief.

$0.0075price
2steps
4sources
4ktokens saved
2tool calls compressed
median latency
Base RPCGeminiBase Gas WindowGoogle Gemini Flash Structured

Endpoint: /v1/recipes/gas-window-brief/run
Capabilities: gas, gas-window, execution-timing, base

Why pay for this?

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

Reads recent Base fee history and turns it into a compact execution-timing 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

Load Base gas window

fetch_transform

Source: Base Gas Window
Step id: gas

Stage 2

Summarize Base gas window

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 Base gas window

{
  "id": "gas",
  "kind": "fetch_transform",
  "title": "Load Base gas window",
  "request": {
    "params": {
      "windowBlocks": 12
    },
    "sourceId": "base_gas_window",
    "deliveryFormat": "json"
  }
}

Summarize Base gas window

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Summarize Base gas window",
  "request": {
    "params": {
      "input": {
        "gas": "{{ $.stepsById.gas.output }}",
        "query": "{{ $.input.query }}"
      },
      "prompt": "Write a gas-window brief from this Base gas snapshot. Focus on the current recommendation, base-fee trend, watch items, and next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "recommendation",
          "currentGasGwei",
          "summary",
          "baseFeeTrend",
          "watchItems",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "watchItems": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Watch items."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next actions."
          },
          "baseFeeTrend": {
            "type": "string"
          },
          "currentGasGwei": {
            "type": "number"
          },
          "recommendation": {
            "enum": [
              "go_now",
              "watch",
              "defer"
            ],
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a concise Base execution-timing brief. Stay grounded in the supplied gas snapshot only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}