Anomaly detection

Wallet-intelligence and manipulation-detection engine

A three-tier scoring engine that traces on-chain funding up to three hops and flags coordinated clusters of accounts across daily scans of the 200 busiest markets.

Ships inside the research system · standalone predecessor archived May 2026

  • 3independent tiers, all must agree
  • 3 hopsof on-chain funding traced
  • 200busiest markets scanned daily
  • 51tests under pytest

The build

These markets run on a public ledger, so every trade and every transfer of funds is visible. That makes it possible to ask whether a cluster of accounts is really one person, or whether an account that consistently buys just before news breaks was funded from the same source as several others.

The design decision that matters is the threshold for saying so. An accusation of insider trading is serious and the evidence is circumstantial, so the tool requires three separate lines of evidence to agree before it will use that label. If it cannot trace funding on the ledger, it does not lower the bar — it caps what it is willing to conclude and says so. Several known blind spots are documented rather than hidden, and one detection rule was removed entirely after I found it was firing on an ordinary feature of how the venue holds user funds.

The three-tier wallet engine Three independent checks run on each wallet. Only when all three agree is a wallet labelled an insider; if on-chain tracing is unavailable the classification is capped rather than guessed. tier 1 · trading pattern: timing vs newstier 1 · trading patterntiming vs news tier 2 · profit history: early on winnerstier 2 · profit historyearly on winners tier 3 · on-chain funding: traced up to 3 hopstier 3 · on-chain fundingtraced up to 3 hops corroboration gate — an insider label needs every tierall three agree? only when all tiers corroborateINSIDERall three without an on-chain key, tier 3 is disabled and the label is capped hereSHARP / WHALEcapped no on-chain key → tier 3 disabled → the label is capped, never guessed one heuristic retired: it fired on the venue's proxy-wallet architecture
What you're looking at: the corroboration gate. Three independent checks run on each wallet, and the strongest label is only available when all three agree. If on-chain tracing is unavailable the tool caps what it will conclude rather than guessing — the design choice the whole engine turns on. Engine design · wallet identifiers never published
The technical version

A three-tier scoring engine running daily scans over the top 200 markets by volume, tracing on-chain funding up to 3 hops, with 51 tests under pytest. A wallet is classified as an insider only when all three tiers corroborate. Without an on-chain key the third tier is disabled and classifications cap out one level lower, by design rather than by degradation.

Documented limits

Wallets using mixers are opaque to the third tier and are downgraded rather than guessed at. The venue's per-user history endpoints return empty for most wallets, so trading history cannot be reconstructed. The backtest's definition of a winner is retrospective, and therefore slightly optimistic.

One heuristic was retired outright: a dormant-wallet signal fired falsely on the venue's safe-proxy architecture, where activity routes through a proxy contract, so proxy-funded wallets are now excluded from it.

Python, on-chain tracing via an RPC (remote procedure call) endpoint — a server that answers queries about the public ledger — venue REST APIs, SQLite, pytest; scikit-learn, UMAP, HDBSCAN and Gaussian mixtures on the clustering side.