402.bot
Recipe
live $0.0075 medium Wallet Intelligence

Wallet Pretrade Checklist

Compress balances, fresh activity, gas, and approvals into a pretrade readiness checklist.

$0.0075price
5steps
8sources
7ktokens saved
4tool calls compressed
median latency
Wallet PortfolioWallet ActivityBase RPCGeminiWallet Activity DeltaBase Gas WindowWallet Approval SurfaceGoogle Gemini Flash Structured

Endpoint: /v1/recipes/wallet-pretrade-checklist/run
Capabilities: wallet-pretrade, wallet-ops, trade-readiness, base

Why pay for this?

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

Compresses balances, recent activity, gas, and approvals into one pretrade checklist.

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 portfolio

materialize

Source: Wallet Portfolio
Step id: portfolio

Stage 2

Load recent wallet activity

materialize

Source: Wallet Activity Delta
Step id: activity

Stage 3

Load Base gas window

fetch_transform

Source: Base Gas Window
Step id: gas

Stage 4

Load wallet approval surface

fetch_transform

Source: Wallet Approval Surface
Step id: approvals

Stage 5

Build pretrade checklist

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 portfolio

{
  "id": "portfolio",
  "kind": "materialize",
  "title": "Load wallet portfolio",
  "request": {
    "scope": {
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "wallet_portfolio",
    "deliveryFormat": "json"
  }
}

Load recent wallet activity

{
  "id": "activity",
  "kind": "materialize",
  "title": "Load recent wallet activity",
  "request": {
    "scope": {
      "window": "24h",
      "maxItems": 50,
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "wallet_activity_delta",
    "deliveryFormat": "json"
  }
}

Load Base gas window

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

Load wallet approval surface

{
  "id": "approvals",
  "kind": "fetch_transform",
  "title": "Load wallet approval surface",
  "request": {
    "params": {
      "maxItems": 10,
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "sourceId": "wallet_approval_surface",
    "deliveryFormat": "json"
  }
}

Build pretrade checklist

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build pretrade checklist",
  "request": {
    "params": {
      "input": {
        "gas": "{{ $.stepsById.gas.output }}",
        "activity": "{{ $.stepsById.activity.output }}",
        "approvals": "{{ $.stepsById.approvals.output }}",
        "portfolio": "{{ $.stepsById.portfolio.output }}",
        "tradeIntent": "{{ $.input.tradeIntent }}",
        "walletAddress": "{{ $.input.walletAddress }}"
      },
      "prompt": "Prepare a pretrade checklist. Focus on readiness status, blockers, watch items, and concrete next actions before a Base trade.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "readinessStatus",
          "summary",
          "blockers",
          "watchItems",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "blockers": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Blockers."
          },
          "watchItems": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Watch items."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next actions."
          },
          "walletAddress": {
            "type": "string"
          },
          "readinessStatus": {
            "enum": [
              "ready",
              "watch",
              "blocked"
            ],
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a compact pretrade checklist. Stay grounded in the supplied wallet, gas, activity, and approval data only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}