Verify every token before you buy Unlimited checks · $3.99/wk · Cancel anytime
Get Unlimited
Swap on Verixia
[ on-chain  ·  solana + evm ]

Honeypot Token Check

Check whether this token blocks selling at the contract level. Honeypot tokens look identical to legitimate tokens on price charts until you try to exit.

Read the contract before the contract reads you. Honeypot, rug, and scam detection from on-chain state — not market data.

⚠️ Token Risk Check
✓ On-Chain Analysis
🔒 No Signup
⚡ Results in Seconds
🔍 Honeypot detection
💧 LP lock status
👥 Holder concentration
⚡ Solana + EVM
4.9 / 5 from 2,353 users Direct on-chain reads 🔐 Non-custodial — no wallet connect required Sub-5-second scan 🔗 Solana · Ethereum · Base · Arbitrum · BNB · Polygon · Avalanche 📊 71,914 risk checks run
Live
🔍 On-chain read ⚡ Seconds ✓ No signup
>_
Enter the full token contract address for the most accurate on-chain analysis
No address? Try a popular check:
1 free check · Unlimited from $3.99/wk
No signup required · Results in seconds
Unlimited checks from $3.99 / week · Cancel anytime
Use the same email entered during checkout to restore access
Unlimited token checks active

Unlimited Token Risk Checks

Verify every contract before buying. Honeypot detection, LP lock analysis, and holder concentration reviews across Solana and EVM.
$5.6BFBI crypto losses 2023
$1B+FTC losses 2023
<5sper contract scan
Best Value -- Save 80%
Yearly Access
$39.99 / yr  ·  $3.33/mo
Popular
Monthly Access
$11.99 / month
Try it -- no commitment
Weekly Access
$3.99 / week · cancel anytime
SSL Secured Stripe Cancel anytime No hidden fees
Live Detections
127 scans today
49K+Scans Run
6Chains
15+Risk Signals
FreeFirst Check
What the checker detects
Example signals · run a scan to see live results
⚠️Sell TaxDETECTED
💧LP LockUNLOCKED
🔑Mint AuthorityACTIVE
OwnershipRENOUNCED
🐋Whale Wallet42%
📅Token Age3 DAYS
🚨Approval RiskHIGH
CooldownACTIVE
🔄Last Update48H AGO
📉Liquidity 24h-12%
🚫Transfer LockENCODED
Freeze AuthENABLED
📋ContractVERIFIED
💰LP Depth$48K
🔗Blacklist FnPRESENT
🔍
Honeypot Detection
Simulates sell transactions to detect transfer locks, fee traps, and whitelist-only exit conditions before you buy in. Reads the contract directly — not market data. Works across Solana SPL tokens and all major EVM chains.
💧
Liquidity & Holders
Reviews pool depth, LP lock status, and top wallet percentages. Surfaces unlocked pools and concentrated wallets before the price collapses.
Results in Seconds
On-chain read — no API delays, no market data lag. Raw contract analysis returned in under 5 seconds.
Token verified? Swap at best price.
Route across Raydium, Orca, Meteora & 50+ DEXes — non-custodial, no KYC
Swap on Verixia →
SOL ETH BASE ARB BNB AVAX Powered by Verixia

Token Risk Analysis -- Contract, Liquidity & Holders

🔗 TL;DR

A token's risk lives in three places: contract permissions (can the dev mint, freeze, or block sells?), liquidity structure (is the LP locked and deep enough to exit?), and holder distribution (can a handful of wallets dump the entire float?). The checker above reads all three directly on-chain in under five seconds.

Scan time< 5 sec
Signals checked15+
Cost (first check)Free

The structural pattern central to the “best honeypot checker” query revolves around contract-level transfer restrictions designed to selectively revert transactions based on the sender’s address or the nature of the transaction. This pattern typically manifests in smart contracts through conditional checks embedded within the core transfer mechanism—often the transfer() function—where logic dictates who can sell tokens and under what circumstances. A classic instantiation involves a require() statement that permits buying from any address but reverts sell attempts unless the sender is included in a pre-approved whitelist. Mechanically, this creates a one-way liquidity flow: buyers can freely acquire tokens, but when holders try to exit via selling, their transactions fail, resulting in lost gas fees and trapped capital.

This behavior is often implemented using mappings or storage variables that track whitelisted addresses or flags that toggle sell permissions. These controls can be dynamic or static. Dynamic whitelists allow the contract owner to add or remove addresses post-deployment, while static whitelists are immutable once the contract is launched. The ability to detect this pattern through static code analysis is particularly valuable because it does not require on-chain interactions or trade execution. Analysts can examine the bytecode or source code to identify these conditional statements, enabling proactive risk identification before capital is at stake.

The risk relevance of this pattern depends heavily on the mutability and scope of the whitelist or sell permissions. If the contract owner maintains the authority to modify whitelist status after launch, it opens the door to a soft honeypot scenario. In such cases, holders may initially be allowed to sell, but the owner can later revoke these permissions, effectively trapping tokens without an outright sell-blocking revert visible from the outset. This mutability introduces a layer of operational risk that can sometimes be harder to detect through on-chain behaviors alone, as the contract’s state may appear benign before changes occur. Conversely, if the whitelist is fixed at deployment or controlled by decentralized governance mechanisms, it typically reduces risk by limiting unilateral owner actions. A fixed whitelist, especially one that is publicly auditable and transparently governed, may serve legitimate purposes such as compliance enforcement or anti-bot measures, thereby mitigating concerns that the mechanism is purely malicious.

It is important to note that the presence of this pattern alone does not confirm malicious intent or guarantee a honeypot. Contract developers may implement whitelist-enforced sell permissions to comply with regulatory frameworks, restrict trading to approved participants, or prevent automated bots from manipulating token prices. In some cases, the pattern is deployed to safeguard early liquidity providers or stabilize markets during initial launch phases. The nuance here is that while the structural capability to restrict sells exists, the intent and operational context determine whether it constitutes a risk or a responsible feature.

Additional contract features can shift the risk assessment either towards or away from honeypot classification. Contracts that allow the owner to adjust sell tax parameters arbitrarily introduce a soft honeypot variant: by raising sell taxes to punitive levels, the contract can effectively discourage or block sells without triggering reverts. This results in a financial disincentive rather than a hard transaction failure, which can sometimes be overlooked without deep inspection of tax logic. Similarly, the existence of a blacklist function that the owner can invoke to freeze or block transfers from particular addresses intensifies risk by enabling selective exit restrictions. This capability can trap holders individually, often without broader market awareness.

Mitigating factors include the presence of timelocks, multisignature controls, or governance mechanisms that restrict or delay owner actions related to whitelist modifications, tax changes, or blacklisting. When these controls are in place, they reduce the likelihood of sudden, unilateral changes that could trap users. Likewise, renouncement of mint authority or owner privileges further limits the contract’s capacity to evolve into a honeypot post-launch. Observing on-chain activity related to these permissions—such as historical pauses in transfers, abrupt tax hikes, or blacklist activations—can provide empirical evidence that informs risk profiles, although the absence of such activity does not guarantee safety.

The interaction of whitelist enforcement with other contract features shapes the practical implications of this pattern. For instance, pairing whitelist-only sell permissions with an upgradeable proxy contract lacking timelocks or multisig governance increases risk substantially. In such cases, the contract owner can replace or alter the logic to introduce new restrictions or honeypot behaviors after deployment, potentially catching holders unaware. Additionally, on chains like Solana where SPL tokens may include freeze authority, combining whitelist enforcement with active freeze controls can enable wallet-level transfer halts without observable market signals. This subtlety complicates risk detection and underscores the importance of considering the broader permission landscape.

Conversely, when whitelist enforcement is accompanied by transparent governance, fixed parameters, and clear operational rationale, it can support compliance, anti-fraud, or anti-bot objectives without necessarily trapping users. The key lies in understanding the interplay between whitelist mutability, owner permissions, upgradeability features, and on-chain governance. This multifaceted analysis is crucial for distinguishing between benign operational controls and structural capabilities that could be exploited to create honeypots. The best honeypot checker tools therefore incorporate layered heuristics and context-aware analysis to weigh these factors, rather than relying solely on the detection of whitelist-based transfer restrictions.

Pre-buy on-chain checklist

  • Mint authority renouncedConfirms supply is capped — no new tokens can be issued post-launch.
  • LP locked or burnedLiquidity cannot be removed in a single transaction. Lock duration and locker contract are both verifiable on-chain.
  • !Top 10 holders under 40%Lower concentration means coordinated dumps are mechanically harder. Above 40% is a structural caution.
  • !No active freeze authorityActive freeze means wallets can be paused at the contract level — no exit possible during a freeze.
  • ×No transfer restrictionsThe transfer function should accept any holder selling. Encoded sell blocks, whitelist exits, and hidden tax functions are honeypot signatures.

Frequently asked questions

Verify the contract address before you buy in. Paste it into the scanner above for the full on-chain breakdown.

Why on-chain signals matter

🔒
Non-custodial Your wallet keys never leave your device. Funds move directly between wallets through the smart contract — Verixia holds nothing.
No account required No sign-up, no KYC, no email. Connect your wallet and swap. Disconnect at any time — no ongoing permissions required.
Solana + EVM Checks SPL tokens and EVM contracts across Ethereum, Base, Arbitrum, BNB Chain, Polygon, and Avalanche.
⚙ Methodology
Every risk verdict is generated from three on-chain reads run in parallel: (1) direct contract bytecode analysis for honeypot patterns, mint/freeze authority, and blacklist functions; (2) liquidity pool inspection for LP lock status, depth, and removable percentage; (3) holder distribution from token-account snapshots. No editorial opinion is layered on the output. Read the full methodology →