Skip to content

co-numina/holdtech

Repository files navigation

πŸ”¬ HOLDTECH

X-ray any Solana token's holder quality.

Most tokens look organic on the surface β€” 500 holders, growing chart, active community. But underneath: 70% are fresh wallets from the same funding source, bundled in the same slot, holding nothing else. The chart is manufactured. The "community" is one person with 50 wallets. You just became their drillpig.

HoldTech fixes this.

🌐 Website: holdtech.fun 🧩 Chrome Extension: Chrome Web Store (pending review) πŸ“œ Privacy Policy: holdtech.fun/privacy


What It Does

Paste any Solana token address β†’ get a complete holder quality analysis in ~15 seconds.

Feature Description
Bundle Detection Identifies wallets funded from the same source that bought in the same slot
Concentration Analysis Top 5/10/20 holder %, Gini coefficient, HHI index
Fresh Wallet Flagging Flags wallets created < 7 days ago
Wallet Age Distribution Maps when each holder wallet was first active on-chain
SOL Balance Analysis Detects bot farms (100 wallets each holding 0.01 SOL)
Funding Cluster Tracing Traces wallets back to common funding sources
Buy Timeline Visualizes when holders bought β€” same-slot clusters = coordinated buys
AI Verdict Letter grade (A–F), score (0–100), plain-English explanation

Screenshots

Token Overview & Verdict

Token overview with AI verdict showing grade, score, and key metrics

Holder Analysis & Distribution

Wallet age distribution, hold duration, radar chart, and top holders table

Deep Scan β€” Bundles & Concentration

Token concentration bar, bundle detection, funding clusters, SOL distribution

Wallet Scatter Plot

Bubble chart showing wallet age vs holdings percentage, colored by wallet type


How It Works

Token Address
     β”‚
     β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  getToken   │────▢│   Helius     β”‚  Fetch top 100 holder accounts
β”‚  Accounts   β”‚     β”‚   RPC        β”‚  with balances
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
     β”‚
     β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Wallet     │────▢│   Solana     β”‚  First tx timestamp, SOL balance,
β”‚  Profiling  β”‚     β”‚   RPC        β”‚  transaction count, token diversity
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
     β”‚
     β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Analysis   β”‚  Concentration metrics, wallet age distribution,
β”‚  Engine     β”‚  buy timing patterns, funding source clustering
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
     β”‚
     β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  AI Verdict │────▢│   Claude /   β”‚  Grade + score + natural language
β”‚  Generator  β”‚     β”‚   GPT        β”‚  explanation of holder structure
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
     β”‚
     β–Ό
  Results Dashboard
  (grade, charts, tables, deep scan)

Chrome Extension

Two ways to use it:

Popup Scanner

Click the HoldTech icon on any page β†’ paste a CA β†’ instant grade + key metrics.

Auto-Inject

Browse normally on supported sites. HoldTech detects the token and injects a score badge automatically.

Supported sites:

  • pump.fun
  • DexScreener (Solana pairs)
  • Birdeye
  • Solscan
  • Defined.fi

SPA-aware β€” navigates between tokens without reload. Results cached 5 minutes.

Install (Developer Mode)

git clone https://github.com/co-numina/holdtech.git
  1. Open chrome://extensions
  2. Enable Developer Mode
  3. Click Load unpacked β†’ select the extension/ folder

Tech Stack

Layer Tech
Frontend Next.js 14, React, TypeScript, Tailwind-inspired inline styles
API Next.js API routes (serverless)
RPC Helius (Solana)
AI Claude / GPT for verdict generation
Hosting Vercel
Extension Manifest V3, vanilla JS

API Endpoints

Endpoint Method Description
/api/analyze POST Main analysis β€” returns top holders with wallet profiles
/api/holder-count POST Binary search holder count (accurate, ~8 RPC calls)
/api/token-info POST Market data via DexScreener + pump.fun
/api/verdict POST AI-generated grade, score, and summary
/api/deep-scan POST Bundle detection, funding clusters, buy timeline

Example

curl -X POST https://holdtech.fun/api/analyze \
  -H "Content-Type: application/json" \
  -d '{"mint": "So11111111111111111111111111111111111111112"}'

Metrics Explained

Concentration

  • Top 5/10/20% β€” What percentage of total supply the largest holders control
  • Gini Coefficient β€” 0 = perfectly equal distribution, 1 = one wallet holds everything
  • HHI (Herfindahl-Hirschman Index) β€” Market concentration metric adapted for holder analysis

Wallet Quality

  • Fresh Wallets β€” Created < 7 days ago. High % = likely manufactured
  • Veteran Wallets β€” Active 90+ days. High % = organic holders
  • Low Activity β€” < 10 lifetime transactions. Likely single-purpose wallets
  • Avg Wallet Age β€” Mean age across all analyzed holders

Bundle Detection

  • Same-slot buys β€” Multiple wallets buying in the exact same Solana slot = coordinated
  • Funding clusters β€” Wallets funded from the same parent wallet
  • Bundle count β€” Number of distinct bundle groups detected

Comparison

Rugcheck Bubblemaps HoldTech
Contract safety βœ… ❌ ❌
Visual clusters ❌ βœ… ❌
Individual wallet profiling ❌ ❌ βœ…
Funding source tracing ❌ Partial βœ…
Bundle detection ❌ ❌ βœ…
Buy timing analysis ❌ ❌ βœ…
Concentration metrics ❌ ❌ βœ…
AI verdict ❌ ❌ βœ…
Chrome extension ❌ ❌ βœ…

Self-Hosting

git clone https://github.com/co-numina/holdtech.git
cd holdtech
npm install

Create .env.local:

HELIUS_API_KEY=your_helius_key
OPENAI_API_KEY=your_openai_key  # for AI verdicts
npm run dev

Open localhost:3000.

Get a free Helius API key at helius.dev.


$HOLDTECH

HoldTech is free. $HOLDTECH holders get the edge.

Tier Holding Access
Free 0 Single scans, rate-limited
Scout 5M Watchlist, historical scans, batch scan, trajectory alerts
Operator 10M Real-time launch feed, drill alerts, known bundler warnings, API access
Whale 50M Unlimited everything, raw data export, priority RPC, early features

Coming soon:

  • πŸ“‘ Real-time feed β€” New pump.fun deploys auto-scanned within 30 seconds
  • πŸ”© Drill intelligence β€” Known bundler database, crowdsourced from every scan
  • πŸ“ˆ Trajectory tracking β€” Holder quality over time, not just snapshots

CA dropping soon.


Contributing

Open source. PRs welcome.

git clone https://github.com/co-numina/holdtech.git
cd holdtech
npm install
npm run dev

License

MIT


Stop being the drillpig.
holdtech.fun Β· @co_numina Β· GitHub

About

X-ray any Solana token's holder quality. Bundle detection, concentration analysis, wallet age scoring, and AI-powered verdicts. Chrome extension included.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages