Login

Solana KOL Tracker
Real-Time PnL & Wallet Analytics

Monitor top Solana traders & KOLs: realized PnL, win rate, memecoin trades and on-chain wallet activity updated automatically, no wallet connection required.

Everything you need to analyze Solana KOLs

Never miss a KOL trade — get Telegram alerts
Our free bot sends you instant notifications when your watched KOLs buy or sell on-chain. No wallet, no sign-up required.

Top traders today

Trending KOLs

Discover the trending KOLs on Solana right now on KOL Explorer. Tracking trending Solana KOLs helps you anticipate pumps, refine strategies. No wallet connection needed: add them to your watchlist for personalized alerts!

View full leaderboard →

Most viewed KOLs

KOL Explorer ranks them by community views, rating, and on-chain metrics, helping you follow the most influential traders of 2026 for better memecoin decisions.

Find any Solana KOL in seconds →

Stay Updated - Follow us on X.


 Follow @kolexplorer

Frequently Asked Questions

What is KOL Explorer?

KOL Explorer is a professional Solana trading intelligence platform that lets you track and analyze the performance of Key Opinion Leaders (KOLs), whales and smart traders in real time.

Is the data real-time?

Yes, all data is sourced directly from on-chain activity and updated frequently using reliable indexers and APIs.

Do I need to connect a wallet?

No, you can use all core features (leaderboard, search, stats, watchlist) without connecting a wallet.

Is KOL Explorer free?

Yes, core features including leaderboard, search, real-time stats and basic watchlist are completely free forever. Premium features may be added later.

How accurate is the PnL and winrate data?

PnL and winrate are calculated based on on-chain buy/sell transactions and displayed in USD regardless Solana price.

Can I get alerts for KOL activity?

Currently you can monitor activity via the watchlist. Real-time notifications (Telegram, push) are planned for a future update.

How do I find the best KOLs to follow?

Use the leaderboard sorted by 7D or 30D PnL, or filter by winrate, TXS and volume. Adding them to your watchlist lets you track them closely.

Can I track any Solana wallet?

Yes, you can search and follow any public Solana wallet address via the search bar. The platform automatically shows available on-chain trading data.

// Reusable Modal Logic const modalOverlay = document.getElementById('wlModalOverlay'); const modalCloseBtn = document.getElementById('wlModalClose'); const modalOkBtn = document.getElementById('wlModalOk'); const modalCancelBtn = document.getElementById('wlModalCancel'); const modalDangerBtn = document.getElementById('wlModalDanger'); const modalTitleText = document.getElementById('wlModalTitleText'); const modalText = document.getElementById('wlModalText'); const modalHint = document.getElementById('wlModalHint'); const modalIcon = document.getElementById('wlModalIcon'); const kolBtn = document.getElementById('wlModalKOLBtn'); const partnerBtn = document.getElementById('wlModalPartnerBtn'); let lastFocusedElement = null; function setExtraLinksVisible(visible) { if (!kolBtn || !partnerBtn) return; kolBtn.style.display = visible ? '' : 'none'; partnerBtn.style.display = visible ? '' : 'none'; } function openLoginComingSoonModal() { lastFocusedElement = document.activeElement; modalTitleText.textContent = 'Account creation coming soon'; modalText.textContent = 'Account creation will start soon — come back later!'; modalHint.textContent = 'Want to join as a KOL or partner? Contact us on Telegram.'; modalHint.style.display = ''; modalIcon.className = 'fa-solid fa-circle-info'; modalIcon.style.color = 'rgba(234,179,8,0.75)'; setExtraLinksVisible(true); modalCancelBtn.style.display = 'none'; modalOkBtn.style.display = ''; modalDangerBtn.style.display = 'none'; modalOverlay.setAttribute('aria-hidden', 'false'); document.body.style.overflow = 'hidden'; modalOkBtn.focus(); } function closeModal() { modalOverlay.setAttribute('aria-hidden', 'true'); document.body.style.overflow = ''; if (lastFocusedElement) lastFocusedElement.focus(); } modalCloseBtn.addEventListener('click', closeModal); modalOkBtn.addEventListener('click', closeModal); modalOverlay.addEventListener('click', e => { if (e.target === modalOverlay) closeModal(); }); document.addEventListener('keydown', e => { if (modalOverlay.getAttribute('aria-hidden') === 'false' && e.key === 'Escape') { closeModal(); } }); // Wire up both login buttons const loginBtns = [ document.getElementById('loginSoonBtn'), // desktop document.getElementById('loginSoonBtnMobile') // mobile ]; loginBtns.forEach(btn => { if (btn) { btn.addEventListener('click', e => { e.preventDefault(); openLoginComingSoonModal(); }); } });