Initialising agent
Home The problem Live sample Method Signals Coverage $HYPERSHIP Our coin
Pass 01

Resolve

Takes a raw address, ENS name, or a ticker you were shown. Determines what it actually is on-chain — token, proxy, EOA, or safe — and on which chain, then pins the exact contract behind the symbol rather than trusting the symbol.

bytecode classproxy targetEIP-1967 slotschain routing
Pass 02

Read

Pulls the state that decides whether you can ever get out: who holds mint, burn, pause and blocklist authority, whether the implementation is upgradeable and by whom, what the transfer path does beyond moving a balance, and how ownership is distributed.

admin keysupgradeabilitytransfer hooksholder graph
Pass 03

Simulate

Runs the trade you were about to run — buy, hold, then sell — against forked state. A honeypot that hides behind clean-looking source has to reveal itself here: reverting sells, punitive tax on exit, balances that shrink after the block, approvals that move more than you offered.

sell pathexit taxpost-buy balance deltaapproval scope
Pass 04

Cross-check

Compares the contract against the official issuer set for tokenised assets, so a symbol that looks like a real Stock Token but was deployed by an unrelated wallet is named as impersonation. Oracle freshness and pause state are read directly, along with Uniswap depth and how locked it really is.

issuer registrysymbol collisionoracle stalenessLP depth & lock
Pass 05

Report

Weights every signal into one credibility score from 0 to 100 and writes the verdict in plain language — what is wrong, how badly, and what would have to change for the score to move. Each line links back to the evidence. The agent never signs, never holds funds, never asks for an approval.

weighted scoreper-signal evidenceplain-language verdictshareable report
Agent, not a checklist

Doing this by hand takes forty minutes you don't have.

Verifying it yourself

  • Open a block explorer, find the contract, hope the source is verified and readable.
  • Manually diff the symbol against the real issuer's deployment — if you know where that list lives.
  • You cannot simulate a sell, so honeypot logic stays invisible until you try to exit.
  • Proxy admin, transfer hooks and oracle pause state require reading Solidity under time pressure.
  • By the time you finish, the entry you were checking has moved — so most people skip the check.
≈ 40 min · partial coverage · skipped under pressure

Running the agent

  • Paste the address or the ticker you were shown. It resolves the real contract for you.
  • Impersonation is checked against the authorised issuer set, not against your memory.
  • The exit is simulated before you own anything — reverting sells and exit taxes surface first.
  • All 26 signals every time, including the boring ones you would rationalise skipping.
  • One score, a written verdict, and the evidence behind each line so you can argue with it.
Under 3s · full coverage · read-only, never signs

Verify an address before you sign it.

26 signals, one score, the reasoning attached. Read-only — the agent never signs and never asks for an approval.

Run a verification