solana-agent-kit-plugin-madeonsol 1.9.0 → 1.9.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 +9 -5
- package/dist/tools/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,8 +9,12 @@
|
|
|
9
9
|
|
|
10
10
|
[Solana Agent Kit](https://github.com/sendaifun/solana-agent-kit) plugin for [MadeOnSol](https://madeonsol.com) — Solana KOL intelligence, deployer analytics, and wallet tracking.
|
|
11
11
|
|
|
12
|
-
> Real-time Solana trading intelligence: track 1,
|
|
12
|
+
> Real-time Solana trading intelligence: track 1,069 KOL wallets with <3s latency, score 23,000+ Pump.fun deployers, surface deshred deploy signals ~500ms before on-chain confirmation, detect multi-KOL coordination, and stream every DEX trade. Free tier: 200 requests/day at [madeonsol.com/pricing](https://madeonsol.com/pricing) — no credit card required.
|
|
13
13
|
|
|
14
|
+
> **New in 1.9** — **Price alerts, scout leaderboard, coordination history.** `agent.methods.priceAlertsCreate()` (PRO=5, ULTRA=25). `agent.methods.scoutLeaderboard()`, `kolConsensus()`, `peakHistory()`, `coordinationHistory()`. `walletStats` now returns `derived`: win_rate, roi, verdict, biggest_miss.
|
|
15
|
+
>
|
|
16
|
+
> **New in 1.8** — **Universal Wallet API.** `agent.methods.walletStats()`, `walletPnl()`, `walletPositions()`, `walletTrades()` — FIFO cost-basis PnL for any wallet. PRO+. Cache hits free.
|
|
17
|
+
>
|
|
14
18
|
> **New in 1.7.0** *(2026-05-12)* — **Account introspection + filtered token directory.** Two new actions: `meAction` (`GET /me`) returns your tier, daily/burst quota state, remaining requests, and per-feature usage so the agent can self-throttle; `tokensListAction` (`GET /tokens`, PRO+) exposes the full filtered/sortable token directory with MC band, liquidity floor, recent-activity window, primary DEX, authority flags, computed 1h volume floor, MEV-share ceiling, and MC change deltas — defaults to `min_liq=2000` to skip dust. Token responses now carry velocity / MEV-share fields. `/token/{mint}` returns structured 400 errors (`code`, `reason`, `example`, `docs`) instead of bare 400s. Deprecated `avg_entry_mc_usd` removed from leaderboards.
|
|
15
19
|
|
|
16
20
|
## Quick start (10 seconds)
|
|
@@ -99,7 +103,7 @@ These are exposed via `agent.methods.*` (no LLM action wrappers — call directl
|
|
|
99
103
|
|
|
100
104
|
### Alpha Wallet Intelligence
|
|
101
105
|
|
|
102
|
-
Scored from
|
|
106
|
+
Scored from 1M+ early-buyer records (wallets seen in the first 20 buyers of Pump.fun tokens).
|
|
103
107
|
|
|
104
108
|
```ts
|
|
105
109
|
await agent.methods.alphaLeaderboard(agent, { limit: 100 }); // Free/Pro=100, ULTRA=500 + bot signals
|
|
@@ -251,9 +255,9 @@ console.log(lastRateLimit); // { limit: "10000", remaining: "9999", reset: "..."
|
|
|
251
255
|
|
|
252
256
|
| Tier | Price | Wallets tracked | Requests/day |
|
|
253
257
|
|------|-------|-----------------|--------------|
|
|
254
|
-
|
|
|
255
|
-
|
|
|
256
|
-
|
|
|
258
|
+
| BASIC (free) | $0 | 10 | 200 |
|
|
259
|
+
| PRO | $49/mo ($490/yr) | 50 | 10,000 |
|
|
260
|
+
| ULTRA | $149/mo ($1,490/yr) | 100 + WS events | 100,000 |
|
|
257
261
|
|
|
258
262
|
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/pricing](https://madeonsol.com/pricing).
|
|
259
263
|
|
package/dist/tools/index.js
CHANGED
|
@@ -30,7 +30,7 @@ export async function initAuth(agent) {
|
|
|
30
30
|
const privateKey = getConfig(agent, "SVM_PRIVATE_KEY");
|
|
31
31
|
if (apiKey) {
|
|
32
32
|
_authMode = "madeonsol";
|
|
33
|
-
_authHeaders = { Authorization: `Bearer ${apiKey}
|
|
33
|
+
_authHeaders = { Authorization: `Bearer ${apiKey}`, "User-Agent": "solana-agent-kit-plugin-madeonsol/1.9.0" };
|
|
34
34
|
_paidFetch = fetch;
|
|
35
35
|
console.log("[madeonsol] Using MadeOnSol API key (Bearer auth)");
|
|
36
36
|
}
|
package/package.json
CHANGED