402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Wallet To Token Entry Pack

Turn wallet balance, token context, liquidity, and a live quote into a compact entry packet.

$0.0100price
7steps
11sources
8ktokens saved
4tool calls compressed
median latency
ZapperMessariUniswapGeminiZapper Token BalancesZapper Token PriceUniswap Token LiquidityMessari Asset DetailsMessari News FeedUniswap Swap QuoteGoogle Gemini Flash Structured

Endpoint: /v1/recipes/wallet-to-token-entry-pack/run
Capabilities: trading, entry-pack, wallet-entry, token-buy

Why pay for this?

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

Combines wallet balances, token context, liquidity, and a live quote into one compact entry packet.

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 balances

fetch_transform

Source: Zapper Token Balances
Step id: balances

Stage 2

Load token price

fetch_transform

Source: Zapper Token Price
Step id: price

Stage 3

Inspect token liquidity

fetch_transform

Source: Uniswap Token Liquidity
Step id: liquidity

Stage 4

Load asset details

fetch_transform

Source: Messari Asset Details
Step id: asset

Stage 5

Load recent asset news

fetch_transform

Source: Messari News Feed
Step id: news

Stage 6

Quote the starter entry

fetch_transform

Source: Uniswap Swap Quote
Step id: quote

Stage 7

Build wallet to token entry pack

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 balances

{
  "id": "balances",
  "kind": "fetch_transform",
  "title": "Load wallet balances",
  "request": {
    "params": {
      "first": 10,
      "chainIds": [
        "{{ $.input.chainId }}"
      ],
      "addresses": [
        "{{ $.input.walletAddress }}"
      ]
    },
    "sourceId": "zapper_token_balances",
    "deliveryFormat": "json"
  }
}

Load token price

{
  "id": "price",
  "kind": "fetch_transform",
  "title": "Load token price",
  "request": {
    "params": {
      "address": "{{ $.input.tokenAddress }}",
      "chainId": "{{ $.input.chainId }}",
      "currency": "USD"
    },
    "sourceId": "zapper_token_price",
    "deliveryFormat": "json"
  }
}

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"
  }
}

Load asset details

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

Load recent asset news

{
  "id": "news",
  "kind": "fetch_transform",
  "title": "Load recent asset news",
  "request": {
    "params": {
      "limit": 5,
      "assetKeys": [
        "{{ $.input.assetSlug }}"
      ]
    },
    "sourceId": "messari_news_feed",
    "deliveryFormat": "json"
  }
}

Quote the starter entry

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

Build wallet to token entry pack

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build wallet to token entry pack",
  "request": {
    "params": {
      "input": {
        "news": "{{ $.stepsById.news.output }}",
        "asset": "{{ $.stepsById.asset.output }}",
        "price": "{{ $.stepsById.price.output }}",
        "quote": "{{ $.stepsById.quote.output }}",
        "chainId": "{{ $.input.chainId }}",
        "balances": "{{ $.stepsById.balances.output }}",
        "riskMode": "{{ $.input.riskMode }}",
        "assetSlug": "{{ $.input.assetSlug }}",
        "liquidity": "{{ $.stepsById.liquidity.output }}",
        "tokenAddress": "{{ $.input.tokenAddress }}",
        "walletAddress": "{{ $.input.walletAddress }}",
        "entryBudgetUsd": "{{ $.input.entryBudgetUsd }}",
        "settlementToken": "{{ $.input.settlementToken }}"
      },
      "prompt": "Build a wallet-to-token entry pack. Focus on readiness, the entry checklist, the quote, the suggested starter sizing, the main risk flags, and concrete next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "chainId",
          "tokenAddress",
          "assetSlug",
          "readinessStatus",
          "summary",
          "entryChecklist",
          "quote",
          "suggestedEntry",
          "riskFlags",
          "nextActions"
        ],
        "properties": {
          "quote": {
            "type": "object",
            "required": [
              "tokenInSymbol",
              "tokenOutSymbol",
              "amountIn",
              "amountOut",
              "priceImpactBps",
              "routeHops"
            ],
            "properties": {
              "amountIn": {
                "type": "string"
              },
              "amountOut": {
                "type": "string"
              },
              "routeHops": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "tokenInSymbol": {
                "type": "string"
              },
              "priceImpactBps": {
                "type": "number"
              },
              "tokenOutSymbol": {
                "type": "string"
              }
            },
            "description": "Suggested Uniswap quote summary.",
            "additionalProperties": false
          },
          "chainId": {
            "type": "integer"
          },
          "summary": {
            "type": "string"
          },
          "assetSlug": {
            "type": "string"
          },
          "riskFlags": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "priority",
                "note"
              ],
              "properties": {
                "note": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "priority": {
                  "enum": [
                    "high",
                    "medium",
                    "low"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Primary entry risks to keep in view."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "tokenAddress": {
            "type": "string"
          },
          "walletAddress": {
            "type": "string"
          },
          "entryChecklist": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "status",
                "reason"
              ],
              "properties": {
                "title": {
                  "type": "string"
                },
                "reason": {
                  "type": "string"
                },
                "status": {
                  "enum": [
                    "do_now",
                    "watch",
                    "skip"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Entry checklist items."
          },
          "suggestedEntry": {
            "type": "object",
            "required": [
              "starterSizeUsd",
              "maxSizeUsd",
              "settlementToken",
              "rationale"
            ],
            "properties": {
              "rationale": {
                "type": "string"
              },
              "maxSizeUsd": {
                "type": "number"
              },
              "starterSizeUsd": {
                "type": "number"
              },
              "settlementToken": {
                "enum": [
                  "USDC"
                ],
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "readinessStatus": {
            "enum": [
              "ready",
              "watch",
              "blocked"
            ],
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing a token entry decision into a bounded operator packet. Stay grounded in the supplied wallet, market, liquidity, quote, and news context."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}