Live Dashboard
Overview
The X804 Live Dashboard provides real-time tracking of all reward distributions with full transparency.
Access Dashboard: https://x804.io/rewards
Dashboard Features
Real-Time Updates
The dashboard displays:
⚡ Live reward distributions as they happen
🔄 Updates every 5 seconds
📈 Recent transaction history
💰 Total rewards distributed
Statistics Cards
Total Rewards Distributed
Shows cumulative SOL distributed to all holders since launch.
Reward Recipients
Total number of unique wallets that have received rewards.
Last 24 Hours
SOL distributed in the past 24 hours.
Reward Table
Desktop View
a1b2c3d4...
So1a...
0.0523 SOL
2m ago
e5f6g7h8...
AB2c...
0.0412 SOL
5m ago
Mobile View
Optimized for mobile with stacked layout:
Transaction hash + Time (top row)
Wallet + Amount (bottom row)
Shorter addresses for readability
Transaction Details
Click Any Transaction
Clicking a transaction hash opens Solscan with full details:
Sender address
Recipient address
Amount transferred
Transaction fee
Block information
Timestamp
Example Transaction
{
"signature": "a1b2c3d4e5f6g7h8...",
"from": "X804_REWARD_POOL",
"to": "So1ana123...",
"amount": 0.0523,
"timestamp": 1703123456,
"block": 234567890
}Using the Dashboard
Filter & Search (Coming Soon)
Search by wallet address
Filter by date range
Sort by amount
Export to CSV
Performance
The dashboard is optimized for:
⚡ Fast loading
🔄 Real-time updates via WebSocket
📱 Mobile responsiveness
♿ Accessibility
API Access
Developers can access reward data:
// Fetch recent rewards
const response = await fetch('https://x804.io/api/rewards');
const rewards = await response.json();
console.log(rewards);
// [
// {
// txHash: "a1b2c3d4...",
// wallet: "So1ana123...",
// amount: "0.0523",
// timestamp: 1703123456
// },
// ...
// ]Technical Details
Data Source
The dashboard connects to:
PumpPortal WebSocket: Real-time trade monitoring
Solana RPC: Transaction verification
Custom Backend: Reward calculation and storage
Update Mechanism
// WebSocket connection
const ws = new WebSocket('wss://pumpportal.fun/api/data');
ws.onmessage = (event) => {
const data = JSON.parse(event.data);
// Update dashboard in real-time
updateRewardsList(data);
};Troubleshooting
Dashboard Not Loading
Check internet connection
Refresh page
Clear browser cache
Rewards Not Showing
Ensure trades are occurring
Wait for next reward distribution
Check wallet address
Mobile Issues
Use latest browser version
Enable JavaScript
Disable ad blockers
Track your rewards live! Visit x804.io/rewards
Last updated

