solana-agent-kit-plugin-madeonsol 0.3.0 → 0.3.2

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
  [Solana Agent Kit](https://github.com/sendaifun/solana-agent-kit) plugin for [MadeOnSol](https://madeonsol.com) — Solana KOL 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):
@@ -26,6 +26,23 @@ export declare function deployerAlerts(agent: Agent, params?: {
26
26
  since?: string;
27
27
  offset?: number;
28
28
  }): Promise<any>;
29
+ export declare function kolPairs(agent: Agent, params?: {
30
+ period?: string;
31
+ min_shared?: number;
32
+ limit?: number;
33
+ }): Promise<any>;
34
+ export declare function kolHotTokens(agent: Agent, params?: {
35
+ period?: string;
36
+ min_kols?: number;
37
+ limit?: number;
38
+ }): Promise<any>;
39
+ export declare function kolTiming(agent: Agent, params: {
40
+ wallet: string;
41
+ period?: string;
42
+ }): Promise<any>;
43
+ export declare function deployerTrajectory(agent: Agent, params: {
44
+ wallet: string;
45
+ }): Promise<any>;
29
46
  export declare function createWebhook(agent: Agent, params: {
30
47
  url: string;
31
48
  events: string[];
@@ -89,6 +89,21 @@ export async function deployerAlerts(agent, params = {}) {
89
89
  await initAuth(agent);
90
90
  return query("/api/x402/deployer-hunter/alerts", params);
91
91
  }
92
+ export async function kolPairs(agent, params = {}) {
93
+ await initAuth(agent);
94
+ return query("/api/x402/kol/pairs", params);
95
+ }
96
+ export async function kolHotTokens(agent, params = {}) {
97
+ await initAuth(agent);
98
+ return query("/api/x402/kol/tokens/hot", params);
99
+ }
100
+ export async function kolTiming(agent, params) {
101
+ const qs = params.period ? `?period=${params.period}` : "";
102
+ return restQuery(agent, "GET", `/kol/${params.wallet}/timing${qs}`);
103
+ }
104
+ export async function deployerTrajectory(agent, params) {
105
+ return restQuery(agent, "GET", `/deployer-hunter/${params.wallet}/trajectory`);
106
+ }
92
107
  // ── Webhook & Streaming (requires API key or RapidAPI key) ──
93
108
  async function restQuery(agent, method, path, body) {
94
109
  await initAuth(agent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solana-agent-kit-plugin-madeonsol",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
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",