LEVIA Documentation
The cosmic space whale navigating the Solana token ocean. Track, analyze, and trade with confidence.
Overview
LEVIA is a comprehensive Solana token tracking and trading platform. It provides real-time data, advanced analytics, and seamless trading capabilities all in one beautiful interface.
Quick Start
Get started with LEVIA in minutes:
1. Connect Your Wallet
Click the Connect button and select your preferred wallet (Phantom, Solflare, or Backpack).
2. Browse Tokens
Explore the token table with tabs for All Tokens, Graduated, Bonding, Recent, 30D Calls, and Leaderboard.
3. Buy Tokens
Click the Buy button on any token, enter your SOL amount, and confirm the transaction.
4. Manage Portfolio
Switch to the Portfolio tab to see your positions with PnL tracking and quick sell buttons.
Use keyboard shortcuts: R to refresh, S to search, 1-7 for tabs.
Organic Score
The Organic Score measures how natural and healthy a token's trading activity is. Higher scores indicate more genuine community interest.
Score Ranges
- 80-100% - Excellent organic activity, low bot presence
- 50-79% - Moderate organic activity, some concerns
- 0-49% - Low organic activity, high manipulation risk
Factors Considered
- Unique wallet diversity
- Transaction patterns and timing
- Holder distribution
- Buy/sell pressure ratios
- Developer activity
Organic scores are rounded to whole percentages for clarity (e.g., 58.58% displays as 59%).
Trading
LEVIA uses Jupiter Aggregator for optimal swap routing, ensuring you get the best prices across all Solana DEXes.
Buying Tokens
Enter your SOL amount and see the estimated tokens you'll receive. Default slippage is 1%.
Selling Tokens
From your Portfolio, use the quick sell buttons:
- 25% - Take some profit while keeping majority
- 50% - Classic half-out strategy
- 75% - Secure most profits
- 100% - Full exit
API Reference
LEVIA provides a REST API for developers.
Get All Tokens
GET /api/tokens
Response:
{
"success": true,
"tokens": [
{
"token_address": "...",
"token_name": "...",
"current_price": 0.001,
"current_mcap": 50000,
"organic_score": 75,
...
}
]
}
Get Token Details
GET /api/token/:address
Response:
{
"success": true,
"token": { ... },
"warnings": [...],
"riskScore": 20
}
WebSocket Events
Connect to real-time updates via WebSocket.
const ws = new WebSocket('wss://your-server.com');
ws.onmessage = (event) => {
const data = JSON.parse(event.data);
switch(data.type) {
case 'token_update':
// Token price/data changed
break;
case 'kol_alert':
// KOL bought a token
break;
case 'whale_alert':
// Whale activity detected
break;
}
};