Skip to main content
This page covers the patterns Wavy Node detects and how to interpret the results you receive from the Scan Risk endpoint. For an overview of how risk scores work, see Risk scores.

Detected patterns

The analysis engine identifies the following risk patterns in the transaction graph:
PatternSeverityDescription
mixingCriticalUse of mixing services to hide fund origins
peel_chainHighTransaction chains to fragment and obscure funds
structuringHighSplitting amounts to avoid reporting thresholds
round_trippingMediumFunds returning to origin after multiple hops
mass_wallet_creationMediumCoordinated creation of multiple wallets
wash_tradingMediumArtificial transactions to simulate volume
exchange_hoppingLowRapid movement between exchanges to break traceability

Volume scaling

Detection thresholds adjust based on the wallet’s transaction volume to reduce false positives for high-activity addresses.
TransactionsScaling factor
Under 1,0001.0x
1,000 - 10,0001.5x
10,000 - 50,0002.0x
50,000 - 100,0002.5x
Over 100,0003.0x

Response examples

{
  "address": "0x1234...",
  "riskScore": 10,
  "riskLevel": "minimal",
  "suspiciousActivity": false,
  "patterns": []
}
No detected patterns. Standard monitoring applies.
{
  "address": "0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be",
  "riskScore": 0,
  "riskLevel": "minimal",
  "suspiciousActivity": false,
  "patterns": [],
  "metadata": {
    "isRegisteredExchange": true,
    "exchangeName": "Binance"
  }
}
Registered exchanges receive an 80% discount on their risk score.
{
  "address": "0xabcd...",
  "riskScore": 78,
  "riskLevel": "high",
  "suspiciousActivity": true,
  "patterns": [
    { "type": "mixing", "confidence": 0.85, "severity": "critical" },
    { "type": "peel_chain", "confidence": 0.70, "severity": "high" }
  ]
}
Mixing combined with peel chain. Requires immediate investigation.
{
  "address": "0xmixer...",
  "riskScore": 92,
  "riskLevel": "critical",
  "suspiciousActivity": true,
  "patterns": [
    { "type": "mixing", "confidence": 0.95, "severity": "critical" },
    { "type": "structuring", "confidence": 0.88, "severity": "high" },
    { "type": "round_tripping", "confidence": 0.82, "severity": "medium" }
  ]
}
Multiple laundering techniques detected. Urgent escalation and regulatory report required.