meme-coin-audit

Audit EVM and Solana meme coin contracts for rug pull vectors and authority abuse.

7|4|Updated Jun 22, 2026
One-click install
npx skills add https://github.com/dbx0/skills --skill meme-coin-audit-dbx0
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: meme-coin-audit
Source: https://github.com/dbx0/skills/tree/main/skills/blockchain-web3/audit/meme-coin-audit
Command: npx skills add https://github.com/dbx0/skills --skill meme-coin-audit-dbx0

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Investors and auditors need a fast, systematic way to determine whether a meme coin or token contract contains rug pull mechanisms like hidden mints, honeypots, or retained authorities before committing funds or writing a report. ## Core Features & Use Cases - Kill-Signal Triage: Hard and soft kill checks (unverified contracts, retained mint/freeze authority, Token-2022 transfer hooks) let you reject obvious rugs before reading any code. - Eight Token Bug Classes: Covers hidden mint, honeypot transfer restrictions, fee manipulation, LP drain, bonding curve manipulation, Solana authority retention, fake renounce, and sandwich amplification, each with grep patterns and kill conditions. - Solana On-Chain Checks: Authority verification, LP lock validation, holder concentration, and Token-2022 extension inspection without source code, plus a Foundry PoC template for EVM exploit proofs. - Use Case: Before buying a new pump.fun token, run the 6-question fast filter (mint authority null, freeze authority null, LP locked, holder concentration, curve completion) to decide in under five minutes whether to walk away. ## Quick Start Audit this Solana token mint address for retained mint authority, freeze authority, and Token-2022 transfer hook risks.

Frequently Asked Questions about meme-coin-audit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check if a Solana token is a rug pull?

Check the mint authority, freeze authority, and update authority on-chain using solana account or spl-token display; all should be null. Then verify LP is burned or locked in a verified contract and that top 10 holders control under 30% of supply excluding pools.

How to detect a honeypot token contract?

Simulate a buy, a transfer to a second wallet, and a sell; if buy succeeds but transfer or sell fails, it is a honeypot. In source, grep for blacklist mappings, maxTxAmount limits, tradingEnabled flags, and Solana freeze authority or transfer hooks.

What are Token-2022 transfer hook risks on Solana?

A Token-2022 transfer hook with a non-null authority lets that key pause, blacklist, or fee arbitrary addresses after launch. A permanent delegate extension is worse: the delegate can move any holder's tokens at any time, which is effectively built-in confiscation.

Can I audit a meme coin without source code?

Yes, on-chain checks cover the main risks: mint and freeze authority status, LP burn or lock state, holder distribution via Birdeye or Solscan, program upgradeability, and Token-2022 extensions. Source review is still needed for fee logic and hidden functions.

Why do LP lock badges on DexScreener not guarantee safety?

Badges are not verified on-chain; the lock contract may allow the owner to shorten the lock, be a 1-day lock renewed weekly, or be a forked locker with backdoors. Always read the actual lock contract on the explorer for unlock date, owner, and extension permissions.

What are the limitations of automated token scanners?

Regex-based scanners catch source patterns like mint functions and blacklist mappings but cannot check on-chain authority state, holder distribution, LP lock status, or deployer wallet history. Those require manual verification via explorers and tools like rugcheck or honeypot.is.