Why Rug Pulls Are So Common on Solana
Solana’s low fees and fast block times make it perfect for high‑frequency trading and memecoin speculation. The same properties also make it cheap for scammers to spin up thousands of tokens, seed tiny liquidity pools, and rug them minutes or hours later.
Academic work on DeFi scams consistently defines a rug pull as a situation where token creators drain liquidity from a DEX pool, leaving buyers with worthless tokens that can’t be sold for meaningful value.【0academia15】 On Solana, this usually happens on AMMs like Raydium or other SPL‑token DEXes.
Instead of trying to memorize every scam token, you’ll do better learning how rugs are implemented on Solana at the protocol level and what you can check in tools like Solscan, Birdeye, and specialized scanners before you ape.
This guide focuses on:
- How Solana SPL tokens are structured (authorities, freeze, etc.)
- The main rug types on Solana (hard rugs, soft rugs, honeypots)
- Concrete, repeatable on‑chain checks you can run in under a minute
- Useful third‑party tools that automate parts of this analysis
How SPL Tokens Enable (or Prevent) Rug Pulls
Most Solana tokens you trade on DEXes are SPL tokens (or Token‑2022 variants). Each token mint has several key authorities:
- Mint authority – can create new tokens (inflation / dev dumps)
- Freeze authority – can freeze token accounts, blocking transfers【0search1】
- Update authority – can change metadata (name, symbol, image, etc.)【0search2】
These authorities are set when the mint is created and can later be changed or revoked (set to None) using the SPL Token SetAuthority instruction.【0search0】【0search8】
Why this matters for rugs:
- If mint authority is active, the creator can mint a huge amount and dump.
- If freeze authority is active, they can freeze your tokens or specific wallets.【0search1】【0search4】
- If LP is unlocked, they can simply withdraw all liquidity from the DEX pool.
Your job as a trader is to check these properties before you buy.
Common Rug Types on Solana
1. Hard Rug via Liquidity Withdrawal
This is the classic rug pull: the dev creates a token, seeds a pool on Raydium or another AMM, lets traders pile in, then removes almost all liquidity. With no SOL/USDC on the other side of the pool, your tokens become effectively worthless.
Academic and industry analyses of rug pulls on various chains consistently define them as catastrophic liquidity withdrawals from DEX pools, often leaving only dust TVL.【0academia15】【0academia29】
On Solana, this looks like:
- Pool TVL going from something meaningful to near zero in a single transaction.
- Price collapsing to almost zero; you can technically sell, but you’ll get negligible SOL.
2. Honeypots / Unsellable Tokens
A honeypot is a token you can buy but cannot sell (or can only sell with extreme slippage or tax). While some devs claim “true honeypots” are harder on Solana, in practice traders regularly report tokens that:
- Allow buys normally
- Reject or revert sells
- Or route sells through logic that effectively blocks you from exiting【0reddit16】【0reddit17】
On EVM chains, this is usually done via custom token contracts; on Solana, similar behavior can be achieved via:
- Custom programs that sit between the token and the DEX router
- Blacklisting / freezing specific token accounts when they try to sell【0search4】【0reddit23】
Uniswap’s documentation on “unsellable token scams” describes the general pattern: scammers let you buy into a pool, then either prevent selling or pull liquidity, leaving you stuck with a token that has no exit.【0search11】 The same economic pattern appears on Solana, even if the implementation details differ.
3. Soft Rugs: Slow Drains and Extreme Taxes
Not every rug is instant. Some Solana tokens:
- Start with high but not impossible buy/sell taxes
- Gradually increase sell tax or change routing so you get almost nothing back
- Or slowly siphon liquidity from the pool over time (similar to “slow liquidity drain scams” studied on other chains)【0academia28】
From a trader’s perspective, the result is the same: your expected exit value collapses while the chart may still look “up‑only” for a while.
On‑Chain Checks Before You Buy Any Solana Token
You can’t eliminate risk, but you can avoid the most obvious rugs by doing a 60‑second checklist using Solscan, Birdeye, and a couple of scanners.
Step 1: Check Mint, Freeze, and Update Authority
Use:
- Solscan (Token page → “Mint Authority” / “Freeze Authority” / “Update Authority”)
- Helius Orb explorer (Authority tab)【0search2】
- Or specialized authority checkers like Vexar【0search7】
Red flags:
- Mint authority is still active
- Dev can mint unlimited tokens and dump on holders.
-
Many safety guides explicitly recommend avoiding tokens with active mint authority unless you deeply trust the issuer.【0search8】【0search9】
-
Freeze authority is still active
- Freeze authority can block transfers from specific token accounts.【0search1】【0search4】
-
Multiple community warnings highlight scams where devs freeze holders after they buy.【0reddit20】【0reddit23】
-
Update authority is active and controlled by an unknown wallet
- This doesn’t directly enable a rug, but it allows changing metadata (name, symbol, image).【0search2】【0search7】
- It’s less critical than mint/freeze but still worth noting.
Safer patterns:
- Mint authority =
None(revoked)【0search8】 - Freeze authority =
None(revoked)【0search1】【0search0】 - Update authority either revoked or held by a reputable, doxxed project
Step 2: Inspect Liquidity: Size, Lock, and Ownership
On Birdeye, DexScreener, or your DEX’s pool page, check:
- How much liquidity is in the main pool?
- Tiny pools (e.g., a few hundred dollars) are extremely easy to rug.
-
Larger pools can still be rugged, but it’s more capital‑intensive for scammers.
-
Who owns the LP tokens?
- If one wallet holds nearly all LP tokens, they can pull the entire pool.
-
Some tools show “LP burnt” or “LP locked” as a quick indicator.【0reddit22】
-
Is LP locked or burnt?
- Locking LP in a time‑lock contract or burning LP tokens makes instant rugs harder.
- Community guides consistently flag no LP lock as a core rug red flag.【0search3】
Remember: even with locked LP, devs can still rug via minting and dumping if mint authority is active.
Step 3: Holder Distribution and Top Wallets
Use Birdeye, DexScreener, or scanners (gmgn.ai, Telegram bots, etc.) to inspect holder distribution:
- Top 10 holders – If a single wallet (or a small cluster) holds a huge percentage of supply, that’s exit‑liquidity risk.【0reddit22】
- Team / deployer wallet – If the deployer still holds a large chunk and mint isn’t revoked, they can mint more and dump.
This doesn’t guarantee a rug, but extreme concentration plus unlocked mint is a bad combo.
Step 4: Honeypot / Authority Scanners
Several tools focus specifically on Solana token safety:
- Vexar – “Solana Token Safety Scanner” that reports mint, freeze, and update authorities and basic risk flags.【0search7】
- RugCheck‑style tools / bots – Community tools that check:
- Mint / freeze revoked
- LP burnt/locked
- Basic blacklist / honeypot checks【0reddit19】【0search9】
- gmgn.ai / Telegram scanners – Often show “Blacklist (honeypot)”, “LP burnt”, “Top 10 holders”, and whether mint authority is revoked.【0reddit22】
These tools are not perfect (scammers actively try to bypass them), but they’re a good first filter. If a scanner already screams “honeypot” or “no LP lock”, you don’t need to be a hero.
Step 5: Sanity‑Check the Chart and Volume
On DexScreener or Birdeye, look for:
- Only green candles, almost no red
- This can indicate either a honeypot (no one can sell) or heavy bot wash‑trading.【0reddit22】
- Very low real volume but huge price spikes
- A few wallets trading back and forth to create a fake “up‑only” chart.【0reddit21】
- Sudden volume drop to near zero after a big spike
- Can be a sign of a completed rug where devs already pulled liquidity.
Combine this with your authority and LP checks. A perfect up‑only chart with active freeze authority and no LP lock is not a bullish signal; it’s a trap.
Specific Solana‑Level Red Flags to Avoid
Summarizing the most important on‑chain red flags for Solana tokens:
- Mint authority not revoked
- Dev can mint unlimited tokens and dump on you.
-
Many safety checklists explicitly say: avoid tokens with active mint authority.【0search3】【0search8】
-
Freeze authority not revoked
- Dev can freeze token accounts, blocking transfers.【0search1】【0search4】
-
Community reports show scammers using this to trap buyers.【0reddit20】【0reddit23】
-
No LP lock / LP concentrated in one wallet
-
Classic hard rug vector: withdraw all liquidity from the pool.【0search3】【0academia15】
-
Extreme or opaque taxes / routing
-
Very high sell taxes (or custom routing) can make tokens effectively unsellable.【0search3】【0search11】
-
Suspicious holder distribution
-
One or a few wallets holding a huge share of supply, especially if they’re linked to the deployer.【0reddit22】
-
Perfect up‑only charts with tiny real volume
- Often driven by bots or insiders wash‑trading to attract exit liquidity.【0reddit21】【0reddit22】
If you see two or more of these together, you’re not early—you’re the exit.
Practical Workflow: 60 Seconds Before You Ape
Here’s a simple workflow you can repeat for every new Solana token:
- Open the token on Birdeye or DexScreener
-
Check basic info, price, volume, and the main pool.
-
Click through to Solscan (or Orb)
- Confirm mint authority = None.
- Confirm freeze authority = None.
-
Note who holds update authority (if anyone).
-
Inspect liquidity
- How big is the pool?
- Who owns the LP tokens?
-
Is LP locked or burnt according to scanners?
-
Run a safety scanner
- Paste the token into Vexar or a RugCheck‑style tool.
-
Read the authority/LP/blacklist flags.
-
Glance at holder distribution and chart
- Any single wallet with outsized supply?
- Is the chart suspiciously up‑only with low volume?
If anything looks off and you don’t fully understand why, the safest move is to skip the trade. There will always be another Solana memecoin launching in a few minutes.
Final Thoughts: You Can’t Eliminate Rugs, But You Can Avoid the Obvious Ones
Solana’s speed and low fees are a double‑edged sword. They enable vibrant trading and innovation, but they also lower the cost of spinning up scam tokens and rugging unsuspecting traders.
You don’t need to become a full‑time on‑chain analyst to protect yourself. If you consistently:
- Check mint/freeze authority
- Verify LP size, ownership, and lock status
- Inspect holder distribution and chart behavior
- Run tokens through Solana‑aware safety scanners
…you’ll automatically filter out a large share of the most blatant rug pulls on Solana.
Rugs will keep evolving, but the core mechanics—who controls supply, who controls freezing, and who controls liquidity—are on‑chain and visible. Learn to read those signals, and you’ll survive long enough to catch the real opportunities instead of being someone else’s exit liquidity.