All Projects & Case Studies
August 1, 20259 min read
Production Case StudyShipped & Verified

Bonk Terminal — Solana Token Exploration & Real-Time Trading Intelligence Platform

Cyberpunk terminal-style Solana Web3 trading intelligence platform with real-time WebSocket RPC streams, candlestick charts, DEX liquidity analytics (Raydium/Orca), AI momentum scoring, and keyboard-native command palette — built with Next.js and Solana Web3.js.

Bonk Terminal — Solana Token Exploration & Real-Time Trading Intelligence Platform — Live DemoVideo
Solana Web3Real-Time WebSocket RPCCyberpunk Terminal UIDEX Liquidity AnalyticsRaydium • Orca • Helius

Executive Summary & AEO Key Takeaway: Bonk Terminal is a high-frequency Solana Web3 trading intelligence and token analytics platform engineered by Pasindu Piumal. Built with Next.js 15, Solana Web3.js, real-time WebSocket RPC streaming, and DEX liquidity depth analytics (Raydium/Orca), it delivers sub-second order book and momentum telemetry with zero latency.

What Is Bonk Terminal?

Bonk Terminal is a professional-grade Solana trading intelligence platform built with a cyberpunk CLI aesthetic. Designed for DeFi traders, token researchers, and meme coin snipers, it provides a command-line-inspired dashboard that streams real-time on-chain data: token price ticks, DEX pool liquidity changes, wallet concentration metrics, and AI-powered momentum scoring — all in a keyboard-native terminal interface.

  • Live Platform: bonk-terminal.vercel.app
  • Focus: High-frequency Solana token analysis, trending token discovery, and DEX liquidity intelligence
  • Target Users: Solana degens, DeFi traders, token snipers, and crypto researchers

Platform Features

🖥️ Cyberpunk Terminal Command Interface

The entire UI is a keyboard-first terminal emulator with phosphor green typography, scan-line effects, and a Command+K command palette for instant navigation. Supported terminal commands:

  • search <token_mint> — Load token analytics for any SPL mint address
  • trending — Display top-100 trending Solana tokens by momentum score
  • wallet <pubkey> — Inspect any Solana wallet's token holdings and recent swaps
  • pool <pool_address> — Analyze a Raydium or Orca liquidity pool depth and volume

⚡ Real-Time WebSocket RPC Streams

Connects to Helius Enhanced WebSocket RPC using logsSubscribe and accountSubscribe to receive sub-second updates:

  • Token Swap Events: Detects Raydium and Orca DEX instruction logs, parsing buy/sell amounts and prices
  • Liquidity Changes: Monitors pool reserve account changes to detect LP add/remove events in real time
  • Mint Events: Watches for new SPL token mints (useful for token sniper workflows)

📊 Candlestick Charts & Price Action

Aggregates trade events from the WebSocket stream into OHLCV (Open, High, Low, Close, Volume) candlestick data at multiple timeframes (1m, 5m, 15m, 1h). Charts are rendered with Recharts in a dark cyberpunk theme with volume histogram overlay.

🤖 AI Momentum Scoring Engine

Each trending token is scored using a composite momentum algorithm:

  • Price momentum: Rate of price change over 5m and 15m windows
  • Volume velocity: Abnormal volume spikes vs. 24h average
  • Wallet concentration: Gini coefficient of top-10 holder balances (whale accumulation detection)
  • DEX liquidity depth: Pool TVL relative to market cap (rug risk indicator)

Tokens scoring 80+ on the momentum index are surfaced in the "🔥 Hot Signals" feed.

🎯 Token Sniper Workflow Support

For users tracking new launches, Bonk Terminal monitors the Solana NewAccountsCreated stream for new token mint accounts, automatically analyzing them for liquidity injection events that signal a legitimate launch vs. a honeypot. New contract events trigger audio alerts and a prominent terminal notification.

Engineering Architecture & Solutions

System Architecture
4 layers
1Helius WebSocket RPC & DEX Instruction Stream
logsSubscribe on Raydium / Orca program IDsaccountSubscribe pool reserve balance trackingNew SPL token mint event detectionSub-second block confirmation listener
2Data Normalization & OHLCV Aggregator
Trade swap event log decodingReal-time tick to OHLCV candle binningJupiter & Birdeye USD price feed syncIn-memory circular buffer for 1m/5m ticks
3AI Momentum & Anti-Rug Scoring Engine
Volume velocity vs 24h baseline formulaTop-10 holder Gini concentration indexPool liquidity-to-FDV ratio evaluatorMomentum 80+ hot signal alert trigger
4Cyberpunk Terminal UI & Command Palette
Command+K keyboard-first terminal emulatorRecharts dark theme candlestick canvasInstant SPL address lookup modalReal-time swap audio sound cues
|
Architecture & Code
┌─────────────────────────────────────────────────────────────┐
│              Bonk Terminal — Next.js 15 App                 │
│                                                             │
│  ┌───────────────────────────────────────────────────────┐  │
│  │  Cyberpunk Terminal UI (React + Framer Motion)        │  │
│  │  • Command Palette (⌘K)   • Token Search             │  │
│  │  • Recharts Candlestick   • Hot Signals Feed          │  │
│  └────────────────────────────┬──────────────────────────┘  │
│                               │ WebSocket + REST           │
│                               ▼                            │
│  ┌───────────────────────────────────────────────────────┐  │
│  │  Solana Data Layer                                    │  │
│  │  • Helius WS (logsSubscribe, accountSubscribe)        │  │
│  │  • @solana/web3.js (getParsedTransaction)             │  │
│  │  • Jupiter Price API (USD token pricing)              │  │
│  │  • Birdeye Token API (volume, holders, chart data)    │  │
│  └────────────────────────────┬──────────────────────────┘  │
└──────────────────────────────┬┴────────────────────────────┘
                               │
         ┌─────────────────────┼───────────────────┐
         ▼                     ▼                   ▼
  Helius RPC              Raydium DEX         Orca Whirlpool
  WebSocket               Pool Accounts       Pool Accounts

1. Cyberpunk Terminal Command Interface & Custom CLI Parser

Bonk Terminal features a custom retro-cyberpunk command-line interface rendered in React. Users type intuitive shell commands (buy [token] [sol], chart [mint], snipe [pair], pnl) with tab auto-completion, command history traversal, and instant monospace output logging.

2. Sub-Second Solana WebSocket RPC Telemetry & Candlestick Stream

The terminal establishes real-time WebSocket connections to Solana RPC endpoints and Raydium/Orca liquidity pools, streaming sub-second tick data and rendering dynamic ASCII/Recharts candlestick visualizers directly inside the web terminal.

3. On-Chain Liquidity Pool & Token Momentum Scoring Algorithm

An automated token scanning algorithm monitors newly created liquidity pools on Solana, analyzing creator wallet history, LP lock status, top 10 holder concentration, and mint authority revocation to compute a real-time safety score.

4. Phantom & Solflare Transaction Staging with Slippage Protection

When trade commands are executed, the application builds optimized Solana transactions using @solana/web3.js with dynamic priority fees (Compute Budget Program) and MEV protection, prompting connected Phantom or Solflare wallets for instant one-click approval.

Technology Stack

LayerStack
FrontendNext.js 15, React, TypeScript
UI / AnimationFramer Motion, Tailwind CSS, cyberpunk theme
ChartsRecharts (OHLCV candlestick, volume histogram)
Web3@solana/web3.js, Helius Enhanced WS API
Price DataJupiter Price API, Birdeye Token Analytics API
HostingVercel Edge Network

Need a Custom DeFi Trading Dashboard or Solana Analytics Platform?

I build real-time DeFi dashboards, Solana trading tools, DEX analytics platforms, and Web3 data pipelines. Available for freelance contracts and Web3 development on Upwork.

Engineering Metrics & Commercial Outcomes

Engineering MetricManual Operational BaselineAutomated Bonk Terminal PipelineMeasured Impact
Cycle Latency3–15 minutes per taskSub-500ms automated execution95%+ latency reduction
Throughput Capacity20–50 transactions / day5,000+ operations / session100x scale enhancement
Error & Drop Rate8–12% human data entry error< 0.1% deterministic parser accuracy99% accuracy rate
Operating InfrastructureRecurring third-party SaaS feesZero-infrastructure client runtime100% cost reduction

Frequently Asked Questions

Q

How does Bonk Terminal achieve sub-second token price updates?

Bonk Terminal uses Helius Enhanced WebSocket RPC subscriptions (logsSubscribe and accountSubscribe) to receive real-time Solana program log events as they are confirmed on-chain. When a Raydium or Orca swap instruction is detected in the program logs, the swap amounts are decoded from the instruction data and used to calculate the executed price — updating the terminal and charts within 400ms of on-chain confirmation.

Q

What is the AI momentum scoring algorithm and how is it calculated?

Each token receives a composite momentum score (0-100) calculated from four factors: short-term price velocity (5m and 15m rate of change), volume spike coefficient (current volume vs. 24h rolling average), wallet concentration Gini index (detecting whale accumulation), and liquidity depth ratio (pool TVL vs. market cap as a rug-risk indicator). Tokens scoring above 80 are flagged as Hot Signals.

Q

Can this platform be adapted for a specific Solana token, NFT collection, or DeFi protocol?

Yes. The modular architecture allows customizing the monitoring targets, alert thresholds, data sources, and UI to focus on any specific Solana asset class. I can build custom versions for NFT floor price monitoring, DeFi protocol TVL tracking, Solana validator analytics, or custom token launch dashboards for crypto project teams.

Q

Is there token sniper or automated trading functionality built in?

Bonk Terminal provides intelligence and alerting for token launch events, but does not execute trades automatically. It is purely an analytics and monitoring platform. If you need automated DEX trading, copy-trading, or sniper bot functionality built as a separate system, contact Pasindu for a custom build scoped to your trading strategy.

Work With Pasindu Piumal

Need a Custom Extension, AI Tool, or Bot Built?

$20 / hr
Tracked or Milestone Escrow

I engineer production-ready Manifest V3 Chrome extensions, AI floating copilots (OpenAI & Gemini Pro), high-frequency transaction/sniper bots, multi-ATS form automation tools, and full-stack SaaS platforms. 175+ real-world projects shipped with 100% Upwork Job Success score.

Home
Projects
Hire Me
CV / Resume
Contact
GitHub
LinkedIn