solana-agent-kit-plugin-madeonsol 1.1.0 → 1.1.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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,7 +86,7 @@ These are exposed via `agent.methods.*` (no LLM action wrappers — call directl
|
|
|
86
86
|
Scored from 47,000+ early-buyer records (wallets seen in the first 20 buyers of Pump.fun tokens).
|
|
87
87
|
|
|
88
88
|
```ts
|
|
89
|
-
await agent.methods.alphaLeaderboard(agent, { limit: 100 }); //
|
|
89
|
+
await agent.methods.alphaLeaderboard(agent, { limit: 100 }); // Free/Pro=100, ULTRA=500 + bot signals
|
|
90
90
|
await agent.methods.alphaWallet(agent, { wallet: "WALLET" }); // ULTRA only — full breakdown + bot signals
|
|
91
91
|
await agent.methods.alphaLinked(agent, { wallet: "WALLET" }); // ULTRA only — co-bought 3+ tokens within 2s
|
|
92
92
|
```
|
|
@@ -153,11 +153,11 @@ console.log(lastRateLimit); // { limit: "10000", remaining: "9999", reset: "..."
|
|
|
153
153
|
|
|
154
154
|
| Tier | Price | Wallets tracked | Requests/day |
|
|
155
155
|
|------|-------|-----------------|--------------|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
|
|
|
156
|
+
| Free | $0 | 10 | 200 |
|
|
157
|
+
| Pro | $49/mo | 50 | 10,000 |
|
|
158
|
+
| Ultra | $149/mo | 100 + WS events | 100,000 |
|
|
159
159
|
|
|
160
|
-
Get a key at [madeonsol.com/developer](https://madeonsol.com/developer).
|
|
160
|
+
Free tier returns the full REST response shape on every endpoint — real wallets, TX signatures, full precision. Paid tiers unlock webhooks, WebSockets, rule engines, and ULTRA-only data depth. Get a key at [madeonsol.com/developer](https://madeonsol.com/developer).
|
|
161
161
|
|
|
162
162
|
## Also Available
|
|
163
163
|
|
package/package.json
CHANGED