402.bot
Recipe
live $0.0100 premium Bankr Ops

Bankr Execution Prompt Checklist

Turn trade intent, quote context, and Bankr output into a compact execution checklist.

$0.0100price
6steps
10sources
8ktokens saved
4tool calls compressed
median latency
BankrZapperUniswapGeminiBankr BalancesZapper Token PriceUniswap Token LiquidityUniswap Swap QuoteBankr Paid PromptGoogle Gemini Flash Structured

Endpoint: /v1/recipes/bankr-execution-prompt-checklist/run
Capabilities: trading, bankr, execution-prompt, trade-checklist

Why pay for this?

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

Turns trade intent, quote context, and Bankr output into a compact execution checklist and prompt draft.

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 Bankr balances

fetch_transform

Source: Bankr Balances
Step id: bankr_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

Quote the trade

fetch_transform

Source: Uniswap Swap Quote
Step id: quote

Stage 5

Ask Bankr for an execution draft

fetch_transform

Source: Bankr Paid Prompt
Step id: bankr

Stage 6

Build Bankr execution prompt 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 Bankr balances

{
  "id": "bankr_balances",
  "kind": "fetch_transform",
  "title": "Load Bankr balances",
  "request": {
    "params": {
      "chains": [
        "base"
      ]
    },
    "sourceId": "bankr_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"
  }
}

Quote the trade

{
  "id": "quote",
  "kind": "fetch_transform",
  "title": "Quote the 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"
  }
}

Ask Bankr for an execution draft

{
  "id": "bankr",
  "kind": "fetch_transform",
  "title": "Ask Bankr for an execution draft",
  "request": {
    "params": {
      "xmtp": "{{ $.input.xmtp }}",
      "prompt": "Trade intent: {{ $.input.tradeIntent }}\nQuote: {{ $.stepsById.quote.output }}\nLiquidity: {{ $.stepsById.liquidity.output }}",
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "sourceId": "bankr_paid_prompt",
    "deliveryFormat": "json"
  }
}

Build Bankr execution prompt checklist

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build Bankr execution prompt checklist",
  "request": {
    "params": {
      "input": {
        "bankr": "{{ $.stepsById.bankr.output }}",
        "price": "{{ $.stepsById.price.output }}",
        "quote": "{{ $.stepsById.quote.output }}",
        "chainId": "{{ $.input.chainId }}",
        "amountUsd": "{{ $.input.amountUsd }}",
        "assetSlug": "{{ $.input.assetSlug }}",
        "liquidity": "{{ $.stepsById.liquidity.output }}",
        "tradeIntent": "{{ $.input.tradeIntent }}",
        "tokenAddress": "{{ $.input.tokenAddress }}",
        "bankrBalances": "{{ $.stepsById.bankr_balances.output }}",
        "walletAddress": "{{ $.input.walletAddress }}"
      },
      "prompt": "Build a Bankr execution prompt checklist. Focus on the preflight checklist, the execution draft, the Bankr result, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "chainId",
          "tokenAddress",
          "assetSlug",
          "summary",
          "executionChecklist",
          "executionDraft",
          "bankrExecution",
          "nextActions"
        ],
        "properties": {
          "chainId": {
            "type": "integer"
          },
          "summary": {
            "type": "string"
          },
          "assetSlug": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "tokenAddress": {
            "type": "string"
          },
          "walletAddress": {
            "type": "string"
          },
          "bankrExecution": {
            "type": "object",
            "required": [
              "prompt",
              "walletAddress",
              "responseText",
              "transactionHints"
            ],
            "properties": {
              "prompt": {
                "type": "string"
              },
              "responseText": {
                "type": "string"
              },
              "walletAddress": {
                "type": "string"
              },
              "transactionHints": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            },
            "description": "Bankr execution result.",
            "additionalProperties": false
          },
          "executionDraft": {
            "type": "object",
            "required": [
              "prompt",
              "routePreference",
              "slippageBps"
            ],
            "properties": {
              "prompt": {
                "type": "string"
              },
              "slippageBps": {
                "type": "number"
              },
              "routePreference": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "executionChecklist": {
            "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": "Execution checklist items."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing Bankr trade preparation into a bounded operator packet. Stay grounded in the supplied balance, quote, liquidity, and Bankr response context."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}