402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Wallet Anomaly Delta Brief

Compare wallet activity and balances against an optional prior snapshot to surface only the meaningful anomalies.

$0.0100price
3steps
5sources
8ktokens saved
4tool calls compressed
median latency
AlliumGeminiWallet Activity DeltaAllium Wallet Balances RawGoogle Gemini Flash Structured

Endpoint: /v1/recipes/wallet-anomaly-delta-brief/run
Capabilities: wallet-anomaly, delta-brief, wallet-monitoring

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 activity delta and fresh balances into a short anomaly brief with explicit changes and 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

Materialize wallet activity delta

materialize

Source: Wallet Activity Delta
Step id: activity

Stage 2

Materialize wallet balances

materialize

Source: Allium Wallet Balances Raw
Step id: balances

Stage 3

Build wallet anomaly delta brief

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 activity delta

{
  "id": "activity",
  "kind": "materialize",
  "title": "Materialize wallet activity delta",
  "request": {
    "scope": {
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "wallet_activity_delta",
    "deliveryFormat": "json"
  }
}

Materialize wallet balances

{
  "id": "balances",
  "kind": "materialize",
  "title": "Materialize wallet balances",
  "request": {
    "scope": {
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "allium_wallet_balances_raw",
    "deliveryFormat": "json"
  }
}

Build wallet anomaly delta brief

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build wallet anomaly delta brief",
  "request": {
    "params": {
      "input": {
        "activity": "{{ $.stepsById.activity.output.response.result }}",
        "balances": "{{ $.stepsById.balances.output.response.result }}",
        "walletAddress": "{{ $.input.walletAddress }}",
        "previousSnapshot": "{{ $.input.previousSnapshot }}"
      },
      "prompt": "Build a wallet anomaly delta brief. Compare the current wallet state to any previous snapshot and return only the meaningful changes, anomalies, and next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "summary",
          "currentSnapshot",
          "whatChanged",
          "anomalies",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "anomalies": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Current anomalies or watch items."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "whatChanged": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "label",
                "change",
                "significance"
              ],
              "properties": {
                "label": {
                  "type": "string"
                },
                "change": {
                  "type": "string"
                },
                "significance": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Meaningful wallet changes since the previous snapshot."
          },
          "walletAddress": {
            "type": "string"
          },
          "currentSnapshot": {
            "type": "object",
            "description": "Current wallet anomaly snapshot.",
            "additionalProperties": true
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing wallet drift into a bounded delta brief. If no previous snapshot is provided, return the current-state packet with a minimal change section."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}