Solana Address Explorer Docs
This page explains the technical flow and how to extend or integrate your own features.
Architecture Overview
The explorer runs directly on Solana's JSON-RPC API (via Helius). It uses standard @solana/web3.js calls plus custom enriched transaction endpoints to decode on-chain data.
Core Data Sources
| Type | Endpoint | Description |
|---|---|---|
| RPC | getParsedAccountInfo, getTokenSupply | Fetches live token + wallet info |
| Helius | getEnrichedTransactions | Decodes and aggregates transactions |
| Metadata | getAsset | Retrieves NFT & token metadata |
| Balance | getBalance, getTokenAccountsByOwner | Returns all wallet holdings |
Features
1. Address Analysis
Paste any Solana wallet or token mint address to fetch:
- Balance (SOL + SPL Tokens)
- Token supply and authorities
- NFT holdings
- Transaction overview
2. Profit Tracker
Calculates total net SOL inflow/outflow:
- 24-hour, 7-day, and 30-day periods
- Includes transaction fees and SOL transfers
- Powered by Helius getEnrichedTransactions
3. Real-Time Stats
Pulls live Solana network data:
- TPS (Transactions per second)
- Current slot
- Total supply
4. Privacy
All lookups run directly through your RPC endpoint — no third-party indexing or analytics tracking.
API Example
POST https://mainnet.helius-rpc.com/?api-key=YOUR_KEY
{
"jsonrpc": "2.0",
"id": "explorer",
"method": "getEnrichedTransactions",
"params": [{
"account": "<wallet_address>",
"limit": 100
}]
}This returns structured data for swaps, transfers, mints, and burns — decoded and labeled.
Extending the Explorer
You can extend functionality using:
- Helius Webhooks for real-time wallet updates
- Jupiter API for token price conversions
- Metaplex SDK for richer NFT data
Requirements
- • Node.js v18+
- • React 18 / Next.js
- • Tailwind CSS
- • Valid Helius API Key
Security Notes
This explorer is read-only. It never stores wallet keys, private data, or credentials. All lookups occur client-side via HTTPS RPC calls.
Support & Updates
Follow updates on X (Twitter) or check the Pump.fun page for new integrations and community projects.
We'll soon release modules for:
- NFT valuation
- Token burn analysis
- Wallet inflow/outflow graphs
Solana data is limitless — this is just the beginning.