402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Wallet Stablecoin Deployment Checklist

Turn a wallet portfolio, gas window, and route shortlist into a compact stablecoin deployment checklist.

$0.0100price
4steps
8sources
8ktokens saved
4tool calls compressed
median latency
Allium402.bot RouteBase RPCGeminiWallet PortfolioBase Gas WindowRoute Capability CandidatesGoogle Gemini Flash Structured

Endpoint: /v1/recipes/wallet-stablecoin-deployment-checklist/run
Capabilities: stablecoin-deployment, wallet-checklist, wallet-ops

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, gas context, and route candidates into a compact stablecoin deployment 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

Materialize wallet portfolio

materialize

Source: Wallet Portfolio
Step id: portfolio

Stage 2

Load Base gas window

fetch_transform

Source: Base Gas Window
Step id: gas

Stage 3

Load target capability routes

fetch_transform

Source: Route Capability Candidates
Step id: routes

Stage 4

Build wallet stablecoin deployment 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

Materialize wallet portfolio

{
  "id": "portfolio",
  "kind": "materialize",
  "title": "Materialize wallet portfolio",
  "request": {
    "scope": {
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "wallet_portfolio",
    "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 target capability routes

{
  "id": "routes",
  "kind": "fetch_transform",
  "title": "Load target capability routes",
  "request": {
    "params": {
      "limit": 5,
      "strategy": "balanced",
      "capability": "{{ $.input.targetCapability }}"
    },
    "sourceId": "route_capability_candidates",
    "deliveryFormat": "json"
  }
}

Build wallet stablecoin deployment checklist

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build wallet stablecoin deployment checklist",
  "request": {
    "params": {
      "input": {
        "gas": "{{ $.stepsById.gas.output }}",
        "routes": "{{ $.stepsById.routes.output }}",
        "portfolio": "{{ $.stepsById.portfolio.output.response.result }}",
        "targetChain": "{{ $.input.targetChain }}",
        "walletAddress": "{{ $.input.walletAddress }}",
        "targetCapability": "{{ $.input.targetCapability }}"
      },
      "prompt": "Build a wallet stablecoin deployment checklist. Focus on readiness, the checklist itself, funding notes, and the next actions before moving funds.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "targetChain",
          "readinessStatus",
          "summary",
          "checklist",
          "fundingNotes",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "checklist": {
            "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": "Stablecoin deployment checklist items."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "targetChain": {
            "type": "string"
          },
          "fundingNotes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Funding, gas, or route notes."
          },
          "walletAddress": {
            "type": "string"
          },
          "readinessStatus": {
            "enum": [
              "ready",
              "watch",
              "blocked"
            ],
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing stablecoin deployment prep into a short checklist. Stay grounded in the supplied wallet portfolio, gas context, and route shortlist only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}