solana-agent-kit-plugin-madeonsol 1.9.2 → 1.10.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/README.md CHANGED
@@ -11,6 +11,10 @@
11
11
 
12
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.10.0** — `tokensList()` gains three new filter params: `min_liq_mc_ratio`, `max_liq_mc_ratio`, and `deployer_tier`. Response items now include `liquidity_to_mc_ratio` and `deployer_tier`. KOL leaderboard entries now include `median_hold_minutes_30d` and `percentile_early_entry_30d`. Token endpoints now return `liquidity_to_mc_ratio`, `launch_cohort_sol`, and `launch_cohort_size`.
15
+
16
+ > **New in 1.9.3** — Deployer alerts now surface `runner_rate` + `labeled_tokens` (fraction of a deployer's labeled tokens that ran vs dumped, gate on `labeled_tokens` ≥3) and `avg_time_to_bond_minutes`.
17
+
14
18
  > **New in 1.9.2** — **Dump-cluster detection.** Buyer-quality breakdown now includes `dump_cluster_count` (3+ dump-cluster wallets in the first-20 → 94% historical dump rate vs 61% base) and `recycled_early_buyer_count`, on all tiers. The API also pushes every pump.fun graduation in real time (`token:graduations` WS channel).
15
19
 
16
20
  > **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.
@@ -279,6 +279,12 @@ export declare function tokensList(agent: Agent, params?: {
279
279
  max_mev_share_pct?: number;
280
280
  mc_change_1h_min_pct?: number;
281
281
  mc_change_1h_max_pct?: number;
282
+ /** v1.10 — minimum liquidity-to-MC ratio (0-1). */
283
+ min_liq_mc_ratio?: number;
284
+ /** v1.10 — maximum liquidity-to-MC ratio (0-1). */
285
+ max_liq_mc_ratio?: number;
286
+ /** v1.10 — filter by deployer tier. */
287
+ deployer_tier?: "elite" | "good" | "moderate" | "rising" | "cold" | "unranked";
282
288
  sort?: "mc_desc" | "mc_asc" | "last_trade_desc" | "liquidity_desc" | "cumulative_volume_desc";
283
289
  limit?: number;
284
290
  offset?: number;
@@ -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}`, "User-Agent": "solana-agent-kit-plugin-madeonsol/1.9.0" };
33
+ _authHeaders = { Authorization: `Bearer ${apiKey}`, "User-Agent": "solana-agent-kit-plugin-madeonsol/1.10.0" };
34
34
  _paidFetch = fetch;
35
35
  console.log("[madeonsol] Using MadeOnSol API key (Bearer auth)");
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solana-agent-kit-plugin-madeonsol",
3
- "version": "1.9.2",
3
+ "version": "1.10.0",
4
4
  "description": "Solana Agent Kit plugin for MadeOnSol — KOL intelligence and deployer analytics via x402 micropayments",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",