402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Base Wallet Cluster Accumulation Alert

Combine wallet activity, counterparties, token flow, and bounded context into a compact Base accumulation alert.

$0.0100price
5steps
9sources
11ktokens saved
5tool calls compressed
median latency
AlliumToken FlowStableEnrichGeminiAllium Wallet Transactions RawAllium Wallet CounterpartiesToken Flow SnapshotStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/base-wallet-cluster-accumulation-alert/run
Capabilities: wallet-cluster, accumulation-alert, base-signals

Why pay for this?

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

Combines wallet activity, counterparties, token flow, and public context into a compact Base accumulation alert.

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

materialize

Source: Allium Wallet Transactions Raw
Step id: activity

Stage 2

Materialize wallet counterparties

materialize

Source: Allium Wallet Counterparties
Step id: counterparties

Stage 3

Materialize token flow snapshot

materialize

Source: Token Flow Snapshot
Step id: flow

Stage 4

Search Base accumulation context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 5

Build Base wallet cluster accumulation alert

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

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

Materialize wallet counterparties

{
  "id": "counterparties",
  "kind": "materialize",
  "title": "Materialize wallet counterparties",
  "request": {
    "scope": {
      "window": "7d",
      "walletAddress": "{{ $.input.walletAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "allium_wallet_counterparties",
    "deliveryFormat": "json"
  }
}

Materialize token flow snapshot

{
  "id": "flow",
  "kind": "materialize",
  "title": "Materialize token flow snapshot",
  "request": {
    "scope": {
      "window": "24h",
      "tokenAddress": "{{ $.input.tokenAddress }}"
    },
    "network": "eip155:8453",
    "templateId": "token_flow_snapshot",
    "deliveryFormat": "json"
  }
}

Search Base accumulation context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search Base accumulation context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.walletAddress }} Base wallet cluster accumulation {{ $.input.operatorGoal }}"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build Base wallet cluster accumulation alert

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build Base wallet cluster accumulation alert",
  "request": {
    "params": {
      "input": {
        "flow": "{{ $.stepsById.flow.output.response.result }}",
        "activity": "{{ $.stepsById.activity.output.response.result }}",
        "operatorGoal": "{{ $.input.operatorGoal }}",
        "searchContext": "{{ $.stepsById.search.output }}",
        "walletAddress": "{{ $.input.walletAddress }}",
        "counterparties": "{{ $.stepsById.counterparties.output.response.result }}"
      },
      "prompt": "Build a Base wallet cluster accumulation alert. Focus on whether the pattern looks clustered, mixed, or weak, the cluster signals, the counterparty flags, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "clusterStatus",
          "summary",
          "clusterSignals",
          "counterpartyFlags",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Next actions."
          },
          "clusterStatus": {
            "enum": [
              "clustered",
              "mixed",
              "weak"
            ],
            "type": "string"
          },
          "walletAddress": {
            "type": "string"
          },
          "clusterSignals": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "label",
                "note",
                "significance"
              ],
              "properties": {
                "note": {
                  "type": "string",
                  "maxLength": 120
                },
                "label": {
                  "type": "string",
                  "maxLength": 60
                },
                "significance": {
                  "enum": [
                    "low",
                    "medium",
                    "high"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "maxItems": 4,
            "description": "Cluster signals."
          },
          "counterpartyFlags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Counterparty flags."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing Base cluster review into a bounded alert. Stay grounded in the supplied wallet activity, counterparties, token flow, and public context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}