Wallet Security
Wallet-scoped security events — get alerted the moment a wallet you track is classified malicious, profits from a rug, or gets caught actively profiting in tokens that rug. The counterpart to Token Security, scoped to an address instead of a mint.
Live security stream
L3 Channel wallet:{address}:security
Only events involving the tracked wallet, pushed on detection.
| Event | Fires when |
|---|---|
| Malicious classification | The wallet is added to the malicious ledger |
| Rug-profiteer | The wallet books a significant profit on a token that later rugs |
| Cascading alert | A token the wallet holds is rug-detected |
Each event carries a severity level, an evidence summary, and the related token(s).
const ws = new WebSocket("wss://api.conyr.ai/ws");
ws.onopen = () =>
ws.send(JSON.stringify({ op: "subscribe", channels: ["wallet:7xKXtg...:security"] }));
ws.onmessage = (e) => {
const { channel, data } = JSON.parse(e.data);
if (channel?.endsWith(":security")) console.log(data.severity, data.evidence);
};This stream is the push side. To check a wallet’s standing on demand — is it on the ban ledger, and why — use Malicious Wallets & Pools.