meme-coin-audit

Detects rug pulls and token vulnerabilities in EVM and Solana meme coins.

Updated Sep 6, 2026
One-click install
npx skills add https://github.com/inventashif/helpful-code-sidekick --skill meme-coin-audit-inventashif
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: meme-coin-audit
Source: https://github.com/inventashif/helpful-code-sidekick/tree/main/scripts/hackerai/skills/bughunter/meme-coin-audit
Command: npx skills add https://github.com/inventashif/helpful-code-sidekick --skill meme-coin-audit-inventashif

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Investors and auditors lose funds to rug pulls, honeypots, and hidden mint functions in meme coins because manual token contract review is slow and easy to get wrong. This Skill provides a structured audit workflow that flags kill signals before deep analysis and systematically checks the eight token-specific bug classes. ## Core Features & Use Cases - Pre-dive kill signals: Hard and soft kill criteria (unverified contracts, retained mint/freeze authority, Token-2022 transfer hooks, permanent delegates) to skip doomed tokens immediately. - Eight bug-class grep patterns: Ready-to-run searches for hidden mints, honeypots, fee manipulation, LP drains, bonding curve exploits, authority retention, fake renounces, and sandwich amplification across Solidity and Rust codebases. - Solana on-chain checks without source code: Verify mint authority, freeze authority, LP lock status, holder concentration, and Token-2022 extensions directly via CLI and explorers. - Foundry PoC templates: Test contracts demonstrating hidden mint, honeypot blacklist, and fee manipulation exploits on a mainnet fork. - Use Case: Before buying a new pump.fun token, run the 6-question fast filter (authorities null, LP locked, holder concentration, curve completion) to decide in under five minutes whether the token is safe to touch. ## Quick Start Audit this token contract for rug pull vectors and check its Solana mint and freeze authorities before I invest.

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 meme coin is a rug pull?

Check the pre-dive kill signals first: unverified contract, deployer rug history, retained mint or freeze authority, and Token-2022 transfer hooks or permanent delegates. Then run the eight bug-class greps for hidden mints, blacklists, unbounded fee setters, and LP migration functions.

How to detect a honeypot token on Solana or Ethereum?

Simulate buy, transfer to a second wallet, then sell. If buy and transfer succeed but sell fails or applies over 50% tax, it is a honeypot. Cross-verify with rugcheck.xyz, honeypot.is, and dexscreener risk signals since single checkers miss deferred-malice patterns.

What are Token-2022 transfer hooks and permanent delegates?

Token-2022 extensions that create rug vectors. A transfer hook with a non-null authority lets that key pause or blacklist transfers post-launch, while a permanent delegate can move any holder's tokens at any time. Check both with spl-token display before investing.

Can I audit a Solana token without source code?

Yes, check on-chain state directly: mint authority and freeze authority should be null, LP should be burned or locked in a verified contract, top 10 holders under 30%, and the program upgrade authority revoked. Use solana account queries, Solscan, and Birdeye.

Why do LP lock badges on DexScreener not guarantee safety?

Badges are not on-chain proof. Verify the actual lock contract for the real unlock timestamp, lock owner, and any permission to shorten the lock. Some locks are one-day locks renewed weekly, and some locker contracts are backdoored forks of canonical lockers.

When should I skip a token audit entirely?

Skip when hard kill signals appear: unverified contract source, deployer with rug history, retained mint authority with no supply cap, retained freeze authority, or a mutable Token-2022 transfer hook. These indicate certain or near-certain rug vectors not worth further analysis.