402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Wallet Transaction Explainer Digest

Turn recent wallet transactions into a short operator digest instead of a raw transfer feed.

$0.0100price
2steps
4sources
5ktokens saved
2tool calls compressed
median latency
AlliumGeminiAllium Wallet Transactions RawGoogle Gemini Flash Structured

Endpoint: /v1/recipes/wallet-tx-explainer-digest/run
Capabilities: wallet-transactions, tx-explainer, wallet-activity, base

Why pay for this?

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

Explains recent wallet transfers and counterparties without forcing an agent to read raw rows.

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 Allium wallet transactions

materialize

Source: Allium Wallet Transactions Raw
Step id: transactions

Stage 2

Build transaction digest

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 Allium wallet transactions

{
  "id": "transactions",
  "kind": "materialize",
  "title": "Load Allium wallet transactions",
  "request": {
    "scope": {
      "window": "{{ $.input.window }}",
      "maxItems": 50,
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "allium_wallet_transactions_raw",
    "deliveryFormat": "json"
  }
}

Build transaction digest

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build transaction digest",
  "request": {
    "params": {
      "input": {
        "window": "{{ $.input.window }}",
        "transactions": "{{ $.stepsById.transactions.output }}",
        "walletAddress": "{{ $.input.walletAddress }}"
      },
      "prompt": "Explain this recent wallet transaction feed for an operator. Focus on what happened, which counterparties matter, and the next actions to take.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "window",
          "summary",
          "transferNarrative",
          "counterparties",
          "nextActions"
        ],
        "properties": {
          "window": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next actions."
          },
          "walletAddress": {
            "type": "string"
          },
          "counterparties": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Counterparties."
          },
          "transferNarrative": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Transfer narrative."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a compact wallet transaction digest. Stay grounded in the supplied transaction feed only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}