@madeonsol/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 @@ ElizaOS plugin for [MadeOnSol](https://madeonsol.com) — Solana KOL trading int
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** — `client.getTokensList()` 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, wallet derived stats.** `PRICE_ALERTS_*` actions (PRO=5, ULTRA=25 rules). `SCOUT_LEADERBOARD`, `KOL_CONSENSUS`, `PEAK_HISTORY`, `COORDINATION_HISTORY`. `WALLET_STATS` now returns `derived`: win_rate, roi, verdict, biggest_miss.
package/dist/client.d.ts CHANGED
@@ -439,6 +439,12 @@ export declare class MadeOnSolClient {
439
439
  max_age_min?: string;
440
440
  mc_change_1h_min_pct?: string;
441
441
  mc_change_1h_max_pct?: string;
442
+ /** v1.10 — minimum liquidity-to-MC ratio (0-1). */
443
+ min_liq_mc_ratio?: string;
444
+ /** v1.10 — maximum liquidity-to-MC ratio (0-1). */
445
+ max_liq_mc_ratio?: string;
446
+ /** v1.10 — filter by deployer tier: "elite" | "good" | "moderate" | "rising" | "cold" | "unranked". */
447
+ deployer_tier?: string;
442
448
  sort?: string;
443
449
  order?: string;
444
450
  }): Promise<{
package/dist/client.js CHANGED
@@ -19,7 +19,7 @@ export class MadeOnSolClient {
19
19
  this.authHeaders = {};
20
20
  if (options.apiKey) {
21
21
  this.authMode = "madeonsol";
22
- this.authHeaders = { Authorization: `Bearer ${options.apiKey}`, "User-Agent": "plugin-madeonsol/1.9.0" };
22
+ this.authHeaders = { Authorization: `Bearer ${options.apiKey}`, "User-Agent": "plugin-madeonsol/1.10.0" };
23
23
  }
24
24
  else if (options.fetchFn) {
25
25
  this.authMode = "x402";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@madeonsol/plugin-madeonsol",
3
- "version": "1.9.2",
3
+ "version": "1.10.0",
4
4
  "description": "ElizaOS plugin for MadeOnSol — Solana KOL intelligence and deployer analytics via x402 micropayments",
5
5
  "repository": {
6
6
  "type": "git",