@madeonsol/plugin-madeonsol 0.3.1 → 0.3.3

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
@@ -2,6 +2,8 @@
2
2
 
3
3
  ElizaOS plugin for [MadeOnSol](https://madeonsol.com) — Solana KOL trading intelligence and deployer analytics.
4
4
 
5
+ > Real-time Solana trading intelligence: track 1,000+ KOL wallets with <3s latency, score 6,700+ Pump.fun deployers by reputation, detect multi-KOL coordination signals, and stream every DEX trade. Free tier: 200 requests/day at [madeonsol.com/developer](https://madeonsol.com/developer) — no credit card required.
6
+
5
7
  ## Authentication
6
8
 
7
9
  Three options (in priority order):
@@ -18,10 +20,11 @@ Gives your ElizaOS agent access to MadeOnSol's Solana intelligence API.
18
20
 
19
21
  | Action | Endpoint |
20
22
  |--------|----------|
21
- | `GET_KOL_FEED` | Real-time KOL trade feed (946 wallets) |
23
+ | `GET_KOL_FEED` | Real-time KOL trade feed (1,000+ wallets) |
22
24
  | `GET_KOL_COORDINATION` | Multi-KOL convergence signals |
23
25
  | `GET_KOL_LEADERBOARD` | KOL PnL/win-rate rankings |
24
26
  | `GET_DEPLOYER_ALERTS` | Pump.fun elite deployer alerts |
27
+ | `GET_TOKEN_INFO` | Token intelligence — price, market cap, deployer, KOL activity |
25
28
 
26
29
  ## Install
27
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@madeonsol/plugin-madeonsol",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "ElizaOS plugin for MadeOnSol — Solana KOL intelligence and deployer analytics via x402 micropayments",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -9,7 +9,7 @@ function getClient(runtime: IAgentRuntime): MadeOnSolClient {
9
9
  export const kolFeedAction: Action = {
10
10
  name: "GET_KOL_FEED",
11
11
  description:
12
- "Get the real-time Solana KOL trade feed from MadeOnSol. Shows latest buys and sells from 946 tracked KOL wallets with deployer enrichment.",
12
+ "Get the real-time Solana KOL trade feed from MadeOnSol. Shows latest buys and sells from 1,000+ tracked KOL wallets with deployer enrichment.",
13
13
  similes: [
14
14
  "kol trades",
15
15
  "what are kols buying",
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@ export const MADEONSOL_CLIENT_KEY = "madeonsol:client";
11
11
  export const madeOnSolPlugin: Plugin = {
12
12
  name: "madeonsol",
13
13
  description:
14
- "Query Solana KOL trading intelligence and deployer analytics from MadeOnSol. Tracks 946 KOL wallets and 4000+ Pump.fun deployers.",
14
+ "Query Solana KOL trading intelligence and deployer analytics from MadeOnSol. Tracks 1,000+ KOL wallets and 4000+ Pump.fun deployers.",
15
15
  actions: [
16
16
  kolFeedAction,
17
17
  kolCoordinationAction,