402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Stablecoin Redeployment Board

Rank a handful of candidate tokens for stablecoin redeployment in one compact board.

$0.0100price
3steps
7sources
9ktokens saved
4tool calls compressed
median latency
ZapperMessariUniswapGeminiZapper Token BalancesTrading Candidate Context BatchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/stablecoin-redeployment-board/run
Capabilities: trading, stablecoin-redeployment, allocation-board

Why pay for this?

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

Scores candidate tokens for stablecoin redeployment and returns a compact allocation board with next actions.

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

Build candidate context batch

fetch_transform

Source: Trading Candidate Context Batch
Step id: context

Stage 3

Build stablecoin redeployment board

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

Build candidate context batch

{
  "id": "context",
  "kind": "fetch_transform",
  "title": "Build candidate context batch",
  "request": {
    "params": {
      "chainId": "{{ $.input.chainId }}",
      "candidates": "{{ $.input.candidates }}",
      "quoteAmountUsd": "{{ $.input.redeployBudgetUsd }}",
      "settlementToken": "{{ $.input.settlementToken }}"
    },
    "sourceId": "trading_candidate_context_batch",
    "deliveryFormat": "json"
  }
}

Build stablecoin redeployment board

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build stablecoin redeployment board",
  "request": {
    "params": {
      "input": {
        "chainId": "{{ $.input.chainId }}",
        "context": "{{ $.stepsById.context.output }}",
        "balances": "{{ $.stepsById.balances.output }}",
        "riskMode": "{{ $.input.riskMode }}",
        "walletAddress": "{{ $.input.walletAddress }}",
        "redeployBudgetUsd": "{{ $.input.redeployBudgetUsd }}"
      },
      "prompt": "Build a stablecoin redeployment board. Focus on the deployment rows, the concentration note, the main risk flags, and concrete next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "chainId",
          "summary",
          "deploymentRows",
          "concentrationNote",
          "riskFlags",
          "nextActions"
        ],
        "properties": {
          "chainId": {
            "type": "integer"
          },
          "summary": {
            "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": "Main redeployment risks."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "walletAddress": {
            "type": "string"
          },
          "deploymentRows": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "tokenAddress",
                "symbol",
                "action",
                "sizeUsd",
                "confidence",
                "note"
              ],
              "properties": {
                "note": {
                  "type": "string"
                },
                "action": {
                  "enum": [
                    "buy",
                    "add",
                    "trim",
                    "sell",
                    "hold"
                  ],
                  "type": "string"
                },
                "symbol": {
                  "type": "string"
                },
                "sizeUsd": {
                  "type": "number"
                },
                "confidence": {
                  "enum": [
                    "high",
                    "medium",
                    "low"
                  ],
                  "type": "string"
                },
                "tokenAddress": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Suggested redeployment actions."
          },
          "concentrationNote": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing stablecoin redeployment into a bounded operator board. Stay grounded in the supplied wallet and candidate context."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}