A modern wallet tracker for solana ecosystem
Solana Wallet Tracker is a full-stack application that lets users explore any Solana wallet in detail. It displays live balances (SOL + SPL tokens), recent transactions, and price data — including memecoin swaps — using reliable APIs like Helius and Birdeye.
###🔧 Backend
-
Helius API – Blockchain data and enhanced Solana indexing
-
Birdeye API – Real-time token prices and memecoin data
-
Express.js – Backend framework
-
@solana/web3.js – Solana RPC and account utilities
-
PostgreSQL – For optional persistence and caching
-
React – Modern UI framework
-
ShadCN – Accessible and beautiful component library
-
Magic UI – Smooth animations and microinteractions
-
🔎 Lookup any Solana wallet by public address
-
💰 Display SOL and SPL token balances
-
📜 View recent transaction history
-
💱 Decode memecoin swaps using BirdEye
-
🌐 Responsive, fast, and clean UI
- Create .env file in both frontend and backend directories Include the following credentials:
Helius
PostgresDB
BirdEye- Start the project You can run frontend and backend independently: Backend:
cd backend
npm install
ts-node index.tsFrontend:
cd frontend
npm install
npm run dev