madeonsol 1.11.0 → 1.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ const { trades } = await client.kol.feed({ limit: 5, action: "buy" });
|
|
|
27
27
|
|---|---|
|
|
28
28
|
| **KOL Tracker** | Real-time trade feed, PnL leaderboard with five time windows (today, 7d, 30d, 90d, 180d), coordination detection, per-wallet profiles, and deep PnL analytics for 1,000+ tracked KOL wallets. **180 days of trade history** retained. |
|
|
29
29
|
| **Alpha Wallet Intel** | Leaderboard of 47,000+ scored early-buyer wallets, full wallet profiles, linked-wallet clustering, token cap-table enrichment, and 0–100 buyer quality scores. |
|
|
30
|
-
| **Wallet Tracker** | Monitor any Solana wallet for swaps and transfers. Track up to 10/50/100 wallets (
|
|
30
|
+
| **Wallet Tracker** | Monitor any Solana wallet for swaps and transfers. Track up to 10/50/100 wallets (Free/Pro/Ultra). Full wallets, counterparties, and tx_signatures on every tier. 120-day event retention. WS events on ULTRA. |
|
|
31
31
|
| **Deployer Hunter** | Pump.fun deployer scoring, tier leaderboard, deploy alerts, and bonding intelligence |
|
|
32
32
|
| **DEX Trade Stream** | Real-time WebSocket stream of ALL Solana DEX trades — filter by token, wallet, program, or trade size (Ultra) |
|
|
33
33
|
| **Webhooks** | Push notifications for KOL trades, coordination signals, deployer alerts, and wallet tracker events (Pro/Ultra) |
|
|
@@ -215,9 +215,8 @@ Deep per-wallet PnL breakdown with equity curve, risk metrics, and position hist
|
|
|
215
215
|
const pnl = await client.kol.pnl("7xKX...", {
|
|
216
216
|
period: "30d", // "7d" | "30d" | "90d" | "180d", default "30d"
|
|
217
217
|
});
|
|
218
|
-
//
|
|
219
|
-
//
|
|
220
|
-
// ULTRA: + open positions
|
|
218
|
+
// All tiers: summary + equity curve + closed positions
|
|
219
|
+
// ULTRA: + open positions (tokens bought but not yet sold)
|
|
221
220
|
```
|
|
222
221
|
|
|
223
222
|
Returns: `KolPnlResponse`
|
|
@@ -234,7 +233,7 @@ const { tokens } = await client.kol.trendingTokens({
|
|
|
234
233
|
min_kols: 2, // minimum distinct KOL buyers
|
|
235
234
|
limit: 20, // 1–50, default 20
|
|
236
235
|
});
|
|
237
|
-
//
|
|
236
|
+
// Available on all tiers; ULTRA unlocks full KOL wallet addresses per token
|
|
238
237
|
```
|
|
239
238
|
|
|
240
239
|
Returns: `KolTrendingTokensResponse`
|
|
@@ -254,7 +253,7 @@ const { wallets } = await client.alpha.leaderboard({
|
|
|
254
253
|
min_tokens: 5,
|
|
255
254
|
exclude_bots: true,
|
|
256
255
|
});
|
|
257
|
-
//
|
|
256
|
+
// Up to 100 results on Free/Pro; ULTRA unlocks 500 + bot signals
|
|
258
257
|
```
|
|
259
258
|
|
|
260
259
|
Returns: `AlphaLeaderboardResponse`
|
|
@@ -317,7 +316,7 @@ List your tracked wallets and remaining capacity.
|
|
|
317
316
|
|
|
318
317
|
```ts
|
|
319
318
|
const { wallets, capacity } = await client.walletTracker.watchlist();
|
|
320
|
-
// capacity: { used, limit } —
|
|
319
|
+
// capacity: { used, limit } — Free: 10, Pro: 50, Ultra: 100
|
|
321
320
|
```
|
|
322
321
|
|
|
323
322
|
Returns: `WatchlistResponse`
|
|
@@ -455,7 +454,7 @@ Real-time deploy alerts — fired when a tracked deployer launches a new token.
|
|
|
455
454
|
const { alerts } = await client.deployer.alerts({
|
|
456
455
|
since: "2025-01-01T00:00:00Z", // ISO 8601
|
|
457
456
|
limit: 20,
|
|
458
|
-
tier: "elite", // "elite" | "good" | "moderate" | "rising" | "cold"
|
|
457
|
+
tier: "elite", // "elite" | "good" | "moderate" | "rising" | "cold"
|
|
459
458
|
offset: 0,
|
|
460
459
|
});
|
|
461
460
|
```
|
package/package.json
CHANGED