HoldTech Technical Documentation
HoldTech is a Solana token holderbase quality analysis tool. It profiles individual holder wallets, computes quality metrics, detects manipulation patterns, and generates AI-powered verdicts. This documentation covers the architecture, metric definitions, scoring methodology, and API reference.
System Architecture
The analysis pipeline runs in four stages, each as an independent API endpoint:
/api/token-info/api/analyze/api/holder-count/api/deep-scan/api/ai-verdictStages 1–3 run in parallel. Stage 4 (deep scan) runs after stage 2 completes. Stage 5 (AI verdict) runs after stage 3 (holder count) completes to ensure accurate holder count in the verdict.
Metrics Reference
freshWalletPct⚠ > 40%Percentage of holders whose wallets are less than 7 days old. High values suggest wallets created specifically to buy this token.
veryFreshWalletPct⚠ > 20%Wallets less than 24 hours old. Extreme risk signal.
veteranHolderPctWallets older than 90 days. Indicates experienced traders holding.
ogHolderPctWallets older than 180 days.
lowActivityPct⚠ > 40%Wallets with fewer than 10 lifetime transactions. Low activity typically indicates burner wallets.
singleTokenPct⚠ > 30%Wallets holding only this token (or this + 1 other). High values suggest manufactured holderbases.
diamondHandsPctWallets holding for more than 2 days. Indicates conviction.
avgSolBalance⚠ < 0.5 SOLAverage SOL balance across holder wallets. Low balances indicate underfunded burner wallets.
Grading Scale
The AI verdict generates a numerical score (0–100) and a letter grade (A–F). Scoring is based on holistic analysis of all metrics, not simple weighting.
Deep Scan
The deep scan runs after the base analysis, providing deeper on-chain intelligence. It analyzes the token's transaction history (up to 300 transactions) and traces funding sources for holder wallets.
3+ unique wallet buys in the same slot (~400ms) are flagged as potential bundle transactions.
Traces the first 5 transactions of each holder wallet looking for SOL funding source. Same source funding 2+ wallets = cluster.
Maps when each holder first bought. Buys within 5 minutes of the first transaction are flagged as insider risk.
Computes Top 5/10/20 holder percentages, Gini coefficient, and Herfindahl-Hirschman Index, excluding liquidity pools.
Concentration Analysis
Gini Coefficient
Measures inequality of token distribution across holders. 0 = perfectly equal distribution, 1 = one wallet holds everything. Used to detect whale-dominated tokens.
Herfindahl-Hirschman Index (HHI)
Standard measure of market concentration. Sum of squared market shares for each holder. More sensitive to large holders than Gini.
Bundle Detection
Bundle transactions occur when multiple wallets buy the same token in the same Solana slot (~400ms). This typically indicates a single entity coordinating multi-wallet buys using Jito bundles or similar tools to manufacture fake holder growth.
Funding Cluster Tracing
Funding cluster analysis traces the SOL funding source for each holder wallet. If multiple holder wallets were funded by the same wallet, this strongly suggests they're controlled by the same entity.
API Reference
All endpoints accept POST requests with Content-Type: application/json.
/api/analyzeAnalyze token holder wallets. Returns metrics, distributions, and holder details.
/api/deep-scanRun deep on-chain analysis: bundle detection, funding tracing, concentration.
/api/holder-countAccurately count non-zero balance holders via binary search pagination.
/api/ai-verdictGenerate AI verdict from metrics.
/api/token-infoFetch token metadata, price, and market data.