features
Position Tracking
Real-time monitoring of high-accuracy actor activity
Read Time
2 min read
Words
259
Sections
10
Loading...
Real-time monitoring of high-accuracy actor activity
Once we've identified high-accuracy actors, we monitor their every move in real-time.
For each tracked wallet, we maintain:
interface WalletPosition {
token: string;
entryPrice: number;
currentPrice: number;
quantity: number;
unrealizedPnL: number;
holdTime: number;
transactions: Transaction[];
}
Our tracking infrastructure processes data with minimal latency:
| Chain | Average Latency |
|---|---|
| Ethereum | < 2 seconds |
| Solana | < 500ms |
| Base | < 1 second |
Block Confirmation
We wait for sufficient block confirmations before processing to avoid tracking reorganized transactions.
View a real-time feed of high-accuracy actor activity:
{
"type": "buy",
"wallet": "0x1234...abcd",
"walletScore": 87,
"token": {
"symbol": "TOKEN",
"address": "0xabcd...1234"
},
"amount": 50000,
"price": 0.0025,
"totalUsd": 125,
"timestamp": "2025-01-15T10:30:00Z"
}
See all high-accuracy actor activity for a specific token:
Track a specific wallet's full portfolio:
Set up alerts for specific tracking events: