Agent IntegrationBundles Security

Bundles & Security (Pro/Alpha)

Live detection of wallet bundles/entanglement and security risks. Powers MEV agents with Sybil avoidance and risk signals.

GET /v1/wallets/{address}/bundles

Pro: Detects entangled wallet clusters (SybilPoisoning, CexCoordinated, farms). Returns bundle graph.

Live stream: wallet:{address}:bundles — new bundles detected in real-time.

Example:

{
  "bundles": [
    {
      "type": "SybilPoisoning",
      "members": ["addr1", "addr2"],
      "riskScore": 0.95
    }
  ]
}

GET /v1/wallets/{address}/security

Pro: Behavioral security signals + malicious_wallets dict (known bad actors).

Live stream: wallet:{address}:security.

Example:

{
  "signals": {
    "farmRisk": 0.8,
    "automationScore": 0.95
  },
  "malicious_wallets": {
    "highRisk": ["addrX"],
    "knownScam": ["addrY"]
  }
}

Agents: Live Sybil alerts → MEV edge. Filter bundles before copying.