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

Token Risk Check

Paste any contract address for an instant on-chain risk assessment -- honeypot detection, liquidity analysis, holder concentration, and contract permissions.

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.7 / 5 from 2,235 users Direct on-chain reads 🔐 Non-custodial — no wallet connect required Sub-5-second scan 🔗 Solana · Ethereum · Base · Arbitrum · BNB · Polygon · Avalanche 📊 59,975 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

Proxy contracts represent a fundamental architectural pattern in smart contract development, designed primarily to enable upgradeability by decoupling the contract’s logic from its data storage. This separation allows the contract’s behavior to be modified post-deployment without changing the contract’s address, which is critical in a blockchain environment where code immutability is a foundational principle. At first glance, a proxy contract can appear deceptively simple—it acts as a forwarding mechanism that delegates calls to an implementation contract where the actual business logic resides. However, this forwarding can obscure the true code being executed, creating a disconnect between the contract’s on-chain bytecode and the functional behavior experienced by users or interacting contracts.

The proxy pattern’s complexity means that a contract’s apparent immutability, as seen on block explorers or through static code analysis, can be misleading. Because the proxy delegates calls dynamically, the logic it executes can be swapped out by pointing to a different implementation contract. This mutable behavior complicates security analysis, as the contract’s functionality is not static but can evolve over time. Static analysis tools alone may fail to capture this dynamic nature, which is why specialized tools known as proxy contract checkers are essential. These checkers trace the delegation path to uncover the actual logic being executed, providing critical insight into upgrade paths and potential vulnerabilities.

One of the most analytically significant aspects of proxy contracts is the upgrade authority mechanism. This mechanism determines who has the power to change the implementation contract to which the proxy points. Typically, this authority is held by a private key or a multisignature wallet. The presence of an upgrade authority introduces a mutable control vector that can sometimes be exploited if compromised, mismanaged, or if the upgrade process itself is inadequately designed. The mere existence of an upgrade function does not necessarily indicate malicious intent, but it does represent a latent risk that must be carefully evaluated. In some cases, the upgrade authority might be decentralized or governed by time-locked contracts, which can mitigate risks, but these controls vary widely in sophistication and transparency.

Understanding the conditions under which the upgrade authority can exercise its power is critical for assessing the security posture of proxy-based contracts. For instance, if the upgrade authority is a single private key controlled by a centralized party, the risk profile is significantly higher than if the authority is distributed among multiple signers with strict governance rules. Furthermore, the documentation and audit coverage of the upgrade mechanism are often limited or incomplete, which can leave latent vulnerabilities undetected. A proxy contract checker can help reveal whether the upgrade function is publicly accessible, restricted, or governed by complex conditions, but it alone does not confirm the intent behind these mechanisms.

Proxy contracts also operate within broader operational and economic contexts that influence their risk dynamics. Transaction fee structures on the underlying blockchain can affect how frequently upgrades occur and how easily an attacker might attempt to exploit the upgrade path. On high-fee networks, the cost of executing upgrades or conducting spam transactions is higher, which can reduce the likelihood of rapid or frequent changes but may also slow legitimate maintenance. Conversely, on low-fee networks, upgrades can be executed more cheaply and with greater speed, increasing the importance of robust multisignature governance to prevent unilateral or malicious changes. Multisig wallets, while reducing single points of failure, introduce their own complexities, including the risk of coordination delays or vulnerabilities in signer management.

The interplay between economic incentives, governance models, and technical implementation shapes the overall security landscape of proxy contracts. Multisig governance can sometimes provide a reasonable balance between security and operational flexibility, but it is not infallible. The risk of collusion, social engineering, or key compromise remains, underscoring the need for transparency and continuous monitoring. Moreover, the upgrade process itself may be subject to social or community oversight, which can act as an informal check on upgrade authority, but such mechanisms are inherently subjective and vary by project.

In generalized terms, the proxy contract pattern embodies a trade-off between flexibility and risk. It enables projects to deploy contracts that can evolve over time, incorporating improvements, bug fixes, or new features without forcing users to migrate to new addresses. This capability is particularly valuable for long-lived projects or those operating in rapidly changing environments. However, the mutable upgrade path introduces governance risks that are not present in fully immutable contracts. Concentration of upgrade authority, lack of transparency around upgrade conditions, and insufficient audit coverage can all create latent vulnerabilities. The pattern itself does not inherently imply malicious intent or unsafety, but it requires nuanced analysis to distinguish between legitimate upgradeability and potential exploit vectors. This analytical challenge is why proxy contract checkers are indispensable tools for anyone seeking to understand the true behavior and risk profile of upgradeable smart contracts.

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 →