L logiover
ai · May 30, 2026 · 6 min read

How to Run Token Rugcheck Security Audits in 2026

A guide to pulling deep token security audits across six chains — honeypot, blacklist, taxes, lock summary, dev history, holder distribution, and AI audit — at bulk scale.

Detecting launches and tracking smart money tells you what’s moving. Before you (or your users) put money in, a different question matters more: is this token a trap? Honeypots, hidden taxes, mintable supply, dev wallets that have rugged ten times before — these are the failure modes that turn a “smart-money buy signal” into exit liquidity. This guide is about deep, per-token due diligence: pulling a consolidated security-and-analytics profile for any token across six chains, with enough depth (150+ fields) to power a rugcheck SaaS, a pre-trade gate, or an ML risk model. It’s the audit layer beneath every other signal in the stack.

What’s worth extracting

A real audit is a fan-out across many data domains, consolidated into one profile per token. The fields that matter:

  • Security flags — honeypot status, blacklist function, mint authority, ownership renounced, open-source contract, and the tax breakdown (buy/sell/transfer taxes).
  • Lock & burn summary — LP lock status and duration, burn metrics, and pool/fee/liquidity context.
  • AI audit — a generated natural-language assessment of the contract’s risk posture, useful as a human-readable layer over the raw booleans.
  • Dev / creator history — the single most predictive rug signal: rename/delete counters, funding origin, how many tokens this creator has launched before, off-chain/CEX funding flags, and creator current holdings.
  • Holder & trader analytics — holder concentration, bluechip exposure, and the rates: bundler rate, sniper rate, bot rate, organic-trader rate, and fresh-wallet rate. These distinguish a clean launch from a manufactured one.
  • Market context — all-time-high market-cap attribution, recommended buy/sell slippage, volatility, and market-cap OHLC candle history.
  • Community signals — rug-vote counts, logo-change history with timestamps, and every social link with provenance.
  • Per-chain bluechip rankings — where the token sits among established names on its chain.

That’s a multi-hundred-field profile — the actor consolidates one comprehensive audit row per token, plus optional supplementary rows for candles, logo events, and bluechip ranks.

Why a consolidated audit beats single-source checks

Any one signal lies in isolation. A renounced contract can still be a honeypot via a malicious tax function. A token with great liquidity can have 80% of supply held by the dev across bundled wallets. The whole point of due diligence is correlation across domains — security booleans plus dev history plus holder rates plus community votes. A token where the contract looks clean but the creator has deleted and re-launched five projects this month is a red flag no single check would catch.

GMGN aggregates these signals across multiple internal endpoints. As with the rest of the suite there’s no public API, so reliable extraction needs a browser-like fingerprint, proxy rotation, and retries with backoff. This actor fans out parallel calls to those endpoints, consolidates them into one audit row, supports bulk runs up to 100 tokens per run, and exposes endpoint toggles so you can trade depth for speed when you only need the security subset.

Run the GMGN Token Rugcheck & Deep Analytics actor — full per-token security audit across six chains: honeypot, taxes, lock summary, dev/creator history, holder rates, AI audit, and 150+ fields. Bulk up to 100 tokens per run.

Schema design for downstream use

Normalize each audit into a row you can gate trades and score risk on:

{
  "chain": "solana",
  "token_address": "7xKq...abc",
  "symbol": "SAFEMOON2",
  "is_honeypot": false,
  "is_blacklisted": false,
  "mint_renounced": true,
  "open_source": true,
  "buy_tax_pct": 0,
  "sell_tax_pct": 5,
  "lp_locked": true,
  "lp_lock_days": 180,
  "top10_holder_pct": 44.2,
  "bundler_rate": 0.31,
  "sniper_rate": 0.18,
  "fresh_wallet_rate": 0.27,
  "creator_prior_launches": 6,
  "creator_rename_count": 3,
  "rug_votes": 41,
  "ath_market_cap_usd": 2100000,
  "ai_audit_summary": "Elevated bundler and creator-history risk...",
  "scraped_at": "2026-05-30T10:00:00Z"
}

Schema choices worth making early:

  • Don’t reduce the audit to a single boolean. Store the component signals; your risk gate is a combination (e.g. honeypot OR sell_tax > 10 OR creator_prior_launches > 3 with high rename count).
  • Keep creator_prior_launches and creator_rename_count. Serial-rugger detection is the highest-value field set in the whole profile.
  • Persist the holder rates, not just concentration. A 30% bundler rate plus 18% sniper rate signals a manufactured launch even if the top-10 percentage looks fine.
  • Store ai_audit_summary for human review, but never let it replace the structured flags in automated gating.
  • Log scraped_at. Security posture changes — LP unlocks, taxes get toggled — so an audit is a point-in-time snapshot.

Typical use cases

  • Rugcheck SaaS — power a token due-diligence product with the full audit stack as the backend.
  • Pre-trade gates — automatically reject any token your bot is about to buy that fails honeypot/tax/lock checks.
  • Anti-scam tooling — auto-tag suspicious tokens by combining social, dev-history, and on-chain signals.
  • Bulk watchlist auditing — screen a large watchlist (up to 100 tokens/run) in minutes for monitoring.
  • ML risk models — collect labeled audit profiles paired with eventual rugpull outcomes to train a classifier.
  • VC / fund first-pass screening — automate due diligence before a human ever looks.
  • DEX / aggregator listing decisions — run an audit before adding a new pair.
  • Project self-monitoring — daily snapshots of a team’s own token’s security score and social-link integrity.

The common thread: value is in breadth and correlation. A honeypot checker alone misses tax traps, dev rugs, and manufactured holder bases; the consolidated profile catches the failure modes that single checks don’t.

Cost math for the managed approach

Pricing is pay-per-event: $0.00005 per actor start plus $0.0025 per result row (one consolidated audit row per token, plus any optional supplementary rows you enable).

Worked examples:

  • Auditing a 100-token watchlist daily is 100 rows/day, about $0.25/day ($7.50/month) for full daily due-diligence coverage.
  • A pre-trade gate that audits each candidate before entry — say 500 tokens/day across a busy sniping operation — is ~$1.25/day even at high volume, because each token is a single row.
  • A research dataset of 10,000 audited tokens with candle and logo supplementary rows runs in the low tens of dollars as a one-time pull.

Audits are cheap per token because the value is one dense row, not a firehose. Toggling off the heavier endpoints (candles, bluechip ranks) when you only need the security subset cuts compute further. A self-built equivalent means reverse-engineering honeypot simulation, tax detection, bundler/sniper attribution, and creator-history tracking across six chains — easily the most complex build in the entire GMGN stack.

Common pitfalls

  • Trusting a single flag. Renounced ≠ safe; clean contract ≠ safe holder base. Gate on a combination.
  • Ignoring dev history. The contract can be flawless while the creator is a serial rugger — creator_prior_launches + rename_count is where the lie shows.
  • Treating the audit as permanent. LP locks expire, taxes get toggled post-launch. Re-audit before each major decision and store scraped_at.
  • Letting the AI summary override structured checks. Use it for human readability; automate on the booleans and rates.
  • Skipping holder rates. Top-10 concentration alone misses bundled/sniped supply spread across many fresh wallets.
  • Over-fetching. If you only need the security subset, toggle off candles/bluechip endpoints to run faster and cheaper.

Wrapping up

Due diligence is the layer that keeps every other signal from becoming exit liquidity, and a real audit means correlating security, dev history, holder rates, and community signals — not running a lone honeypot check. Rebuilding that across six chains is the hardest job in on-chain data. If you want a consolidated, bulk-capable, 150+-field token audit without owning the reverse-engineering, use a managed actor that already fans out GMGN’s full audit stack.

Open the GMGN Token Rugcheck & Deep Analytics actor on Apify — complete per-token security audit across six chains, dev history, holder rates, and AI audit. Bulk up to 100 tokens/run, $0.0025 per audit. Start with Apify’s free monthly credit.

Related guides