madeonsol 1.1.0 → 1.2.0
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/LICENSE +21 -21
- package/README.md +363 -436
- package/dist/index.d.ts +21 -68
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +62 -95
- package/dist/index.js.map +1 -1
- package/package.json +57 -59
- package/llms.txt +0 -72
package/llms.txt
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
# MadeOnSol SDK
|
|
2
|
-
|
|
3
|
-
> Official TypeScript/JavaScript SDK for the MadeOnSol Solana API
|
|
4
|
-
|
|
5
|
-
## What is MadeOnSol?
|
|
6
|
-
|
|
7
|
-
MadeOnSol (https://madeonsol.com) is the largest Solana ecosystem tool directory with 950+ indexed tools and dApps. The API provides programmatic access to:
|
|
8
|
-
|
|
9
|
-
- **KOL Tracker**: Real-time trade feed for 946 tracked Solana KOL (Key Opinion Leader) wallets, PnL leaderboards, coordination detection, and per-wallet profiles.
|
|
10
|
-
- **Deployer Hunter**: Pump.fun deployer wallet scoring, tier-based leaderboards, deploy alerts, and bonding curve intelligence.
|
|
11
|
-
- **DEX Trade Stream**: Real-time WebSocket stream of ALL Solana DEX trades across 9 programs (Ultra only). Filter by token, wallet, program, trade size, or direction.
|
|
12
|
-
- **Webhooks**: Push notifications for KOL trades, deployer alerts, and coordination signals (Pro/Ultra).
|
|
13
|
-
- **Tool Directory**: Search and browse 950+ Solana tools and dApps.
|
|
14
|
-
|
|
15
|
-
## Installation
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
npm install madeonsol
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Authentication
|
|
22
|
-
|
|
23
|
-
Get your API key at: https://rapidapi.com/ClaudeTools/api/madeonsol-solana-kol-tracker-tools-api
|
|
24
|
-
|
|
25
|
-
```typescript
|
|
26
|
-
import { MadeOnSol } from "madeonsol";
|
|
27
|
-
const client = new MadeOnSol({ apiKey: "your-rapidapi-key" });
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
## Available Methods
|
|
31
|
-
|
|
32
|
-
### KOL Tracker (client.kol)
|
|
33
|
-
- `client.kol.feed(params?)` - Live KOL trade feed (buy/sell, filter by wallet)
|
|
34
|
-
- `client.kol.leaderboard(params?)` - PnL leaderboard (today, 7d, 30d)
|
|
35
|
-
- `client.kol.wallet(wallet, params?)` - Single KOL wallet profile + PnL breakdown
|
|
36
|
-
- `client.kol.coordination(params?)` - Detect coordinated KOL buying (pump signals)
|
|
37
|
-
- `client.kol.token(mint)` - KOL activity for a specific token
|
|
38
|
-
|
|
39
|
-
### Deployer Hunter (client.deployer)
|
|
40
|
-
- `client.deployer.stats()` - Global deployer statistics
|
|
41
|
-
- `client.deployer.leaderboard(params?)` - Deployers ranked by bonding rate
|
|
42
|
-
- `client.deployer.profile(wallet)` - Single deployer profile
|
|
43
|
-
- `client.deployer.tokens(wallet, params?)` - Tokens deployed by a wallet
|
|
44
|
-
- `client.deployer.alerts(params?)` - Real-time deploy alerts
|
|
45
|
-
- `client.deployer.alertStats(params?)` - Alert statistics by tier
|
|
46
|
-
- `client.deployer.bestTokens(params?)` - Top tokens by peak market cap
|
|
47
|
-
- `client.deployer.recentBonds(params?)` - Recently bonded tokens
|
|
48
|
-
|
|
49
|
-
### Tool Directory (client.tools)
|
|
50
|
-
- `client.tools.search(params?)` - Search 950+ Solana tools (full-text + category filter)
|
|
51
|
-
|
|
52
|
-
### WebSocket Streaming (client.stream) — Pro/Ultra
|
|
53
|
-
- `client.stream.getToken()` - Get 24h WebSocket token. Returns ws_url (KOL/deployer events) and dex_ws_url (all-DEX trades, Ultra only)
|
|
54
|
-
|
|
55
|
-
### Webhooks (client.webhooks) — Pro/Ultra
|
|
56
|
-
- `client.webhooks.list()` - List all webhooks
|
|
57
|
-
- `client.webhooks.create(params)` - Create webhook (url, events, filters)
|
|
58
|
-
- `client.webhooks.update(id, params)` - Update webhook
|
|
59
|
-
- `client.webhooks.delete(id)` - Delete webhook
|
|
60
|
-
- `client.webhooks.test(id)` - Send test payload
|
|
61
|
-
|
|
62
|
-
## Error Handling
|
|
63
|
-
|
|
64
|
-
All methods throw `MadeOnSolError` with `.message`, `.status`, and `.body` properties.
|
|
65
|
-
|
|
66
|
-
## Links
|
|
67
|
-
|
|
68
|
-
- Documentation: https://madeonsol.com/solana-api
|
|
69
|
-
- Website: https://madeonsol.com
|
|
70
|
-
- RapidAPI: https://rapidapi.com/ClaudeTools/api/madeonsol-solana-kol-tracker-tools-api
|
|
71
|
-
- GitHub: https://github.com/LamboPoewert/madeonsol-sdk
|
|
72
|
-
- npm: https://www.npmjs.com/package/madeonsol
|