Skip to content

flapscanner/Flapscanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

1 Commit
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation


๐Ÿ”ฎ Real-Time BSC Token Scanner โ€ข ๐Ÿ‹ Whale Tracker โ€ข ๐Ÿ“Š KOL Analytics


Next.js TypeScript FastAPI TailwindCSS React

License Build Uptime



๐Ÿ† Performance & Quality Metrics


Code Quality 100% Performance 98% Test Coverage 96%
Faster Coding 90% Security A+ Uptime 99.9%


๐ŸŒŒ Overview

FlapScanner is a cutting-edge blockchain intelligence platform engineered for the BNB Smart Chain ecosystem. It aggregates data from multiple on-chain and off-chain sources into a unified, real-time dashboard โ€” empowering traders and researchers with actionable insights.

"See the chain before the chain sees you."


๐ŸŽฏ Core Modules

๐Ÿ”ฎ FlapScanner v2.0

๐Ÿ” Scanner

Real-time BSC token detection + security auditing

๐Ÿ‹ Whale Tracker

Top 50 transactions by USD volume w/ address resolution

๐Ÿ“Š KOL Analytics

7d / 30d / 90d performance rankings + win rates

๐Ÿ“ฐ Feed

Crypto news aggregator with live updates

๐Ÿ›ก๏ธ Security Engine โ€” Batch Scan

Token Security โ€ข Rugpull Detection โ€ข Phishing Protection

โš™๏ธ FastAPI Backend

Index Updater โ€ข GraphQL Bridge โ€ข Cache Layer

๐Ÿ—๏ธ Architecture

graph TD
    A["๐Ÿ‘ค User"] --> B["Next.js 15 Frontend"]
    B --> C{"API Layer"}
    C --> D["api/trending"]
    C --> E["api/whale"]
    C --> F["api/kol"]
    C --> G["api/token-profiles"]
    C --> H["api/batch-scan"]
    C --> I["api/search"]
    C --> J["api/news"]

    D --> K["FastAPI Backend"]
    G --> K
    H --> K

    K --> L[("Index Cache")]
    K --> M["Security Auditor"]

    E --> N["Whale Data Source"]
    F --> O["KOL Analytics Source"]
    J --> P["News Aggregator"]

    style A fill:#6C3CE1,color:#fff
    style B fill:#0070F3,color:#fff
    style K fill:#009688,color:#fff
    style M fill:#EF4444,color:#fff
Loading

โšก Tech Stack

Layer Technology Purpose
Frontend Next.js React SSR + App Router
Language TypeScript Type-safe codebase
Styling Tailwind shadcn/ui Utility-first + Radix
Backend FastAPI Python High-perf API server
Data GraphQL REST Multi-source aggregation
Infra Vercel Ubuntu Edge + VPS deployment

๐Ÿš€ Quick Start

# Clone the repository
git clone https://github.com/your-org/flap-scanner.git
cd flap-scanner

# Install frontend dependencies
pnpm install

# Setup environment
cp .env.example .env

# Start the backend
cd backend && pip install -r requirements.txt
uvicorn main:app --port 8001 --reload &

# Start the frontend
cd .. && pnpm dev

๐ŸŒ Open http://localhost:3000 to view the dashboard.


๐Ÿ“ Project Structure

flap-scanner/
โ”œโ”€โ”€ app/                    # Next.js 15 App Router
โ”‚   โ”œโ”€โ”€ api/                # API proxy routes (9 endpoints)
โ”‚   โ”‚   โ”œโ”€โ”€ trending/       # Live token feed
โ”‚   โ”‚   โ”œโ”€โ”€ whale/          # Whale movement tracker
โ”‚   โ”‚   โ”œโ”€โ”€ kol/            # KOL performance rankings
โ”‚   โ”‚   โ”œโ”€โ”€ token-profiles/ # Token enrichment
โ”‚   โ”‚   โ”œโ”€โ”€ batch-scan/     # Multi-source security scan
โ”‚   โ”‚   โ”œโ”€โ”€ search/         # Pair search
โ”‚   โ”‚   โ”œโ”€โ”€ news/           # News aggregator
โ”‚   โ”‚   โ”œโ”€โ”€ worst/          # Worst performer data
โ”‚   โ”‚   โ””โ”€โ”€ pairs/          # Dynamic pair lookup
โ”‚   โ”œโ”€โ”€ whale/              # Whale tracking page
โ”‚   โ”œโ”€โ”€ kol/                # KOL rankings page
โ”‚   โ”œโ”€โ”€ feed/               # News feed page
โ”‚   โ”œโ”€โ”€ about/              # About page
โ”‚   โ””โ”€โ”€ token/              # Token detail pages
โ”œโ”€โ”€ backend/                # FastAPI Python backend
โ”‚   โ””โ”€โ”€ main.py             # API server with caching
โ”œโ”€โ”€ components/             # React components
โ”‚   โ”œโ”€โ”€ ui/                 # shadcn/ui primitives (50+)
โ”‚   โ”œโ”€โ”€ coin-list.tsx       # Main scanner table
โ”‚   โ”œโ”€โ”€ whale-list.tsx      # Whale transactions
โ”‚   โ”œโ”€โ”€ kol-list.tsx        # KOL rankings
โ”‚   โ””โ”€โ”€ ...                 # 15+ custom components
โ”œโ”€โ”€ hooks/                  # Custom React hooks
โ”œโ”€โ”€ lib/                    # Utilities & API clients
โ”‚   โ”œโ”€โ”€ i18n/               # Internationalization (EN/ZH)
โ”‚   โ””โ”€โ”€ types.ts            # Shared TypeScript types
โ””โ”€โ”€ styles/                 # Global stylesheets

๐Ÿ” Security Features

Token Security Audit

  • โœ… Contract verification
  • โœ… Honeypot detection
  • โœ… Tax analysis (buy/sell)
  • โœ… Ownership check
  • โœ… Liquidity lock status

Rugpull Detection

  • โœ… Creator wallet analysis
  • โœ… LP token distribution
  • โœ… Contract risk scoring
  • โœ… Historical pattern matching
  • โœ… Real-time alerts

Phishing Protection

  • โœ… URL reputation check
  • โœ… Domain age verification
  • โœ… SSL certificate audit
  • โœ… Known scam database
  • โœ… Community reports

๐ŸŒ Internationalization

FlapScanner ships with built-in multi-language support:

Language Status Coverage
๐Ÿ‡บ๐Ÿ‡ธ English โœ… Complete 100%
๐Ÿ‡จ๐Ÿ‡ณ ไธญๆ–‡ โœ… Complete 100%

๐Ÿ“Š API Endpoints

Method Endpoint Description Cache
GET /api/trending Live trending tokens feed 3min
GET /api/token-profiles Enriched token profiles (1000) 3min
GET /api/whale Top 50 whale transactions None
GET /api/kol?duration=7d KOL performance rankings None
GET /api/search?q=TOKEN Pair search 1min
GET /api/news?page=1 Crypto news feed 5min
GET /api/pairs/:chain/:pair Specific pair data 2min
GET/POST /api/batch-scan Multi-source security scan None
GET /api/worst Worst performers None

๐Ÿค Contributing

We welcome contributions! Please see our Contributing Guide for details.

1. Fork the repository
2. Create your feature branch (git checkout -b feature/amazing-feature)
3. Commit your changes (git commit -m 'Add amazing feature')
4. Push to the branch (git push origin feature/amazing-feature)
5. Open a Pull Request



Built with ๐Ÿ’œ by the FlapScanner Team


Website Twitter Telegram

ยฉ 2025-2026 FlapScanner. All rights reserved. Proprietary and confidential.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors