π Troubleshooting
Connection Issues
WebSocket Not Connecting
Symptom: No live trades showingSolutions:
Check browser console for errors
Verify internet connection
Try different browser
Clear cache and reload
Check if PumpPortal is online
RPC Errors
Symptom: Balances not updatingSolutions:
Verify Helius API key in config.js
Check API rate limits
Try alternative RPC endpoint
Manually refresh balances
Trading Problems
Transaction Failures
Error: "Transaction failed"Fixes:
Increase slippage (try 95%+)
Add more priority fee
Check wallet balance
Verify token is tradeable
Missing Positions
Symptom: Bought but not showingDebug:
Check browser console
Verify transaction on Solscan
Manual balance refresh
Re-track token
UI Issues
Frozen Interface
Quick Fixes:
Refresh page (F5)
Clear browser cache
Close excess browser tabs
Restart browser
Windows Not Dragging
Solutions:
Check if click is on header
Disable browser extensions
Try different browser
Reset window positions
Data Problems
Lost Wallet Configuration
Recovery Steps:
Check browser localStorage
Use browser history
Import from backup
Re-enter manually
Incorrect Balances
Verification:
javascript
// Console command to check
console.log(walletBalances);
console.log(walletPositions);Performance Issues
Slow Loading
Reduce active wallets
Close trade flow if not needed
Disable unused features
Use faster RPC endpoint
Memory Usage
Clear old activity logs
Limit trade history
Restart browser periodically
Close unused windows
Advanced Debugging
Enable Debug Mode
javascript
// In console
localStorage.setItem('debug', 'true');
location.reload();Check WebSocket Status
javascript
// Console commands
console.log(ws.readyState);
// 0=CONNECTING, 1=OPEN, 2=CLOSING, 3=CLOSEDExport Debug Data
javascript
// Full state export
const debugData = {
wallets: Array.from(walletPositions.entries()),
balances: Array.from(walletBalances.entries()),
config: autoTradeConfig,
activity: recentActivity
};
console.log(JSON.stringify(debugData, null, 2));Common Error Messages
Getting Help
If issues persist:
Document the error (screenshot console)
Note reproduction steps
Check official Telegram/Discord
Review recent updates
Try fresh browser profile
Last updated
