Agent IntegrationBundles & Security

Bundles & Security

Entanglement Detection: Identify correlated wallets (bundles) controlling multiple addresses for unified PnL/positions.

Detects shared strategies, timing, across DEXs.

GET /v1/wallets/{address}/bundles (Pro)

ParameterTypeDesc
addresspathWallet
limitquerydefault 50

Response: {"bundles": BundleGroup[]} where BundleGroup has members: string[], score: number, sharedPnL: number

WS Stream: wallet:{address}:bundles - new/updated bundles.

LangChain / OpenClaw WS Example

const WebSocket = require('ws');
const ws = new WebSocket('wss://api.conyr.ai/v1/ws', [], {
  headers: { Authorization: `Bearer ${process.env.CONYR_KEY}` }
});
ws.on('open', () => {
  ws.send(JSON.stringify({ subscribe: ['wallet:YourWalletAddr:bundles'] }));
});
ws.on('message', data => {
  console.log('Bundle update:', JSON.parse(data));
});

Use in LangChain agent tool or OpenClaw exec background process.