Tracking Raydium liquidity pools on the Solana blockchain involves monitoring pool activity, liquidity changes, and trading volumes. Here’s a step-by-step guide to help you track Raydium pools effectively:
1. Use Raydium’s Official Interface

Visit Raydium.io → Navigate to the "Pools" section.
Here, you can see:
Total liquidity across all pools.
APR/APY for farming.
Volume and fee statistics.
Click on a specific pool to see detailed metrics.
2. Track Liquidity Pools via Solana Block Explorers
Solscan (solscan.io) or SolanaFM (solanafm.com) allow you to check Raydium pool addresses.
Search for the pool address (e.g., find it on Raydium’s UI or GitHub).
View:
Token balances (base & quote).
Transaction history (adds/withdrawals).
LP token mint & supply.
3. Use DeFi Dashboards & Analytics Tools
Birdeye (birdeye.so) → Tracks Raydium pools with price, liquidity, and volume trends.
DexScreener (dexscreener.com/solana) → Monitors Raydium pools in real-time.
Step Finance (step.finance) → Portfolio tracker for Solana DeFi, including LP positions.
4. Monitor Liquidity Changes Programmatically
Use Solana’s RPC API or Raydium’s SDK to fetch pool data.
Example (JavaScript):
const connection = new Connection("https://api.mainnet-beta.solana.com");
const poolAddress = new PublicKey("RAYDIUM_POOL_ADDRESS_HERE");
const poolInfo = await connection.getAccountInfo(poolAddress);
console.log(poolInfo.data);Alternatively, use Raydium’s GitHub for pool addresses & ABIs.
5. Track LP Token Holdings
If you provide liquidity, your LP tokens represent your share.
Check your wallet on:
Solscan (search your wallet address).
Step Finance (for yield tracking).
Raydium’s "Farms" tab (if staked).
6. Follow Raydium’s API & Developer Docs
Raydium API Docs → For programmatic access.
Raydium GitHub → Pool addresses & SDK.
Key Metrics to Watch
| Metric | Tool to Check |
|---|---|
| Total Liquidity | Raydium UI, Birdeye |
| 24h Volume | DexScreener, Birdeye |
| APR/APY | Raydium Farms |
| Pool Transactions | Solscan, SolanaFM |
| LP Token Value | Step Finance, Birdeye |
By combining these methods, you can effectively track Raydium liquidity pools on Solana, whether for trading, yield farming, or analytics. Let me know if you need help with a specific pool!
