Every 100x story starts the same way: someone found a token minutes after its liquidity pool went live. So does every rug story. New pools are where the asymmetric upside lives — and where the vast majority of outright scams live too. This post covers where to actually find fresh pools, and the 60-second checklist that filters out most of the garbage.
Where fresh pools show up first
GeckoTerminal has a new pools page per network. It's raw and unfiltered — you'll see everything, including pools with $30 of liquidity that exist only to appear in this list. The API is free and keyless (/networks/{network}/new_pools), which makes it the best base layer if you want to build your own feed.
DexScreener has a similar new pairs view with better filtering UI (min liquidity, min volume). Their API is also free.
Telegram channels are how most degens actually consume this. Raw firehose channels exist for every chain, but the noise ratio is brutal. I run @FreshPoolsFeed which posts hourly with two filters applied: liquidity above $25k (kills the dust) and FDV below $2M (kills "new pool for a token that's already a top-500 coin" — you're not early to anything with a $300M FDV). What's left is the actual hunting ground: small, fresh, liquid enough to exit.
The 60-second checklist before you touch a fresh pool
A new pool with real liquidity still has maybe a 70–90% chance of being designed to take your money, depending on chain and market phase. Here's what to check, in order of how fast each check kills a scam:
1. Can you sell? The most common trap is still the honeypot: buys work, sells revert or get taxed 99%. Don't trust the contract source — simulate. honeypot.is runs an actual sell simulation on ETH/BSC/Base and reports effective buy/sell tax.
2. Is the contract still mutable? GoPlus (free API) flags proxy contracts, mintable supply, owner-can-change-tax, blacklist functions, trading-pause switches. Any one of these means the dev can change the rules after you buy. On TON, check if the jetton admin is still set — same idea, different mechanics.
3. Who holds the supply? If the top 10 wallets (excluding the pool and burn addresses) hold 40%+, one wallet can nuke the chart at will. GoPlus and tonapi both expose holder breakdowns.
4. Is the liquidity locked or burned? Unlocked LP means the deployer can pull the pool whenever. LP burn/lock status shows up in GoPlus data and on DexScreener's pair page.
5. How old is the deployer wallet? A wallet created yesterday that deployed five tokens this week is a serial rugger. This one's harder to automate but the pattern is common.
Automating the checklist
Running four browser tabs per token gets old fast when you're checking a dozen pools an hour. Options:
- Script it yourself. GoPlus + honeypot.is + DexScreener APIs are all keyless. Maybe 100 lines of code for EVM chains. GoPlus alone covers checks 2–4.
- Use a bot. I built @RugLens_bot for exactly this workflow: paste a contract address (or tap a token in @FreshPoolsFeed), get the full checklist back in one report — honeypot simulation, contract flags, holder concentration, liquidity status. Works for 7 EVM networks and TON jettons. Source is on GitHub (MIT) if you'd rather self-host. There's also a no-install web version that runs the same EVM checks in your browser.
- Wallet built-ins. Some wallets (Rabby, for one) run basic token checks on approval. Good last line of defense, too late as a screening tool.
The honest caveat
No checklist catches everything. A token can pass every automated check and still dump 95% because the "community" was three guys and a meme template. Screening filters out mechanical scams — honeypots, hidden mints, pullable liquidity. It cannot tell you whether anyone will still care about the token tomorrow. Size accordingly.
Top comments (0)