402.bot
Recipe
live $0.0100 premium Market & Prediction

Base Honeypot Liquidity Risk Check

Combine a live Base quote, liquidity view, asset detail, and bounded risk context into a compact pretrade risk check.

$0.0100price
5steps
9sources
11ktokens saved
5tool calls compressed
median latency
UniswapMessariStableEnrichGeminiUniswap Token LiquidityUniswap Swap QuoteMessari Asset DetailsStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/base-honeypot-liquidity-risk-check/run
Capabilities: base-risk, honeypot-check, liquidity-check

Why pay for this?

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

Combines a live quote, visible liquidity, asset detail, and public risk context into a compact Base pretrade risk check.

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

Inspect token liquidity

fetch_transform

Source: Uniswap Token Liquidity
Step id: liquidity

Stage 2

Quote the sample trade

fetch_transform

Source: Uniswap Swap Quote
Step id: quote

Stage 3

Load asset detail

fetch_transform

Source: Messari Asset Details
Step id: asset

Stage 4

Search Base token risk context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 5

Build Base honeypot liquidity risk check

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

Inspect token liquidity

{
  "id": "liquidity",
  "kind": "fetch_transform",
  "title": "Inspect token liquidity",
  "request": {
    "params": {
      "chainId": "{{ $.input.chainId }}",
      "topPools": 3,
      "tokenAddresses": [
        "{{ $.input.tokenAddress }}"
      ]
    },
    "sourceId": "uniswap_token_liquidity",
    "deliveryFormat": "json"
  }
}

Quote the sample trade

{
  "id": "quote",
  "kind": "fetch_transform",
  "title": "Quote the sample trade",
  "request": {
    "params": {
      "amount": "{{ $.input.amountUsd }}",
      "chainId": "{{ $.input.chainId }}",
      "exactSide": "input",
      "slippageBps": "{{ $.input.slippageBps }}",
      "tokenInAddress": "0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913",
      "tokenOutAddress": "{{ $.input.tokenAddress }}"
    },
    "sourceId": "uniswap_swap_quote",
    "deliveryFormat": "json"
  }
}

Load asset detail

{
  "id": "asset",
  "kind": "fetch_transform",
  "title": "Load asset detail",
  "request": {
    "params": {
      "assetId": "{{ $.input.assetSlug }}"
    },
    "sourceId": "messari_asset_details",
    "deliveryFormat": "json"
  }
}

Search Base token risk context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search Base token risk context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.surfaceName }} {{ $.input.assetSlug }} Base honeypot liquidity risk {{ $.input.operatorGoal }}"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build Base honeypot liquidity risk check

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build Base honeypot liquidity risk check",
  "request": {
    "params": {
      "input": {
        "asset": "{{ $.stepsById.asset.output }}",
        "quote": "{{ $.stepsById.quote.output }}",
        "liquidity": "{{ $.stepsById.liquidity.output }}",
        "surfaceName": "{{ $.input.surfaceName }}",
        "operatorGoal": "{{ $.input.operatorGoal }}",
        "searchContext": "{{ $.stepsById.search.output }}"
      },
      "prompt": "Build a Base honeypot liquidity risk check. Focus on risk tier, honeypot signals, liquidity flags, quote guardrails, and next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "surfaceName",
          "riskTier",
          "summary",
          "honeypotSignals",
          "liquidityFlags",
          "quoteGuardrails",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "riskTier": {
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Next actions."
          },
          "surfaceName": {
            "type": "string"
          },
          "liquidityFlags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Liquidity or depth flags."
          },
          "honeypotSignals": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Honeypot or execution-risk signals."
          },
          "quoteGuardrails": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Quote guardrails."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing Base pretrade risk review into a bounded packet. Stay grounded in the supplied quote, liquidity, asset, and public risk context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}