solana-agent-kit-plugin-madeonsol 0.3.3 → 0.4.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 +2 -2
- package/dist/actions/deployerAlerts.d.ts +4 -0
- package/dist/actions/deployerAlerts.js +4 -0
- package/dist/actions/kolFeed.js +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/tools/index.d.ts +6 -0
- package/dist/tools/index.js +5 -0
- package/package.json +40 -40
package/README.md
CHANGED
|
@@ -54,8 +54,8 @@ const trades = await agent.methods.kolFeed(agent, { limit: 10, action: "buy" });
|
|
|
54
54
|
|---|---|
|
|
55
55
|
| `MADEONSOL_KOL_FEED_ACTION` | "kol trades", "what are kols buying" |
|
|
56
56
|
| `MADEONSOL_KOL_COORDINATION_ACTION` | "kol convergence", "tokens kols accumulating" |
|
|
57
|
-
| `MADEONSOL_KOL_LEADERBOARD_ACTION` | "top kols", "kol rankings", "best kol" |
|
|
58
|
-
| `MADEONSOL_DEPLOYER_ALERTS_ACTION` | "deployer alerts", "pump fun launches" |
|
|
57
|
+
| `MADEONSOL_KOL_LEADERBOARD_ACTION` | "top kols", "kol rankings", "best kol" — periods: today, 7d, 30d, 90d, 180d (180-day retention) |
|
|
58
|
+
| `MADEONSOL_DEPLOYER_ALERTS_ACTION` | "deployer alerts", "pump fun launches" — PRO/ULTRA: filter by tier (elite/good/moderate/rising/cold) |
|
|
59
59
|
| `MADEONSOL_TOKEN_INFO_ACTION` | "token info", "token price", "what is this token" |
|
|
60
60
|
|
|
61
61
|
## Also Available
|
|
@@ -16,19 +16,23 @@ export declare const deployerAlertsAction: {
|
|
|
16
16
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
17
17
|
offset: z.ZodDefault<z.ZodNumber>;
|
|
18
18
|
since: z.ZodOptional<z.ZodString>;
|
|
19
|
+
tier: z.ZodOptional<z.ZodEnum<["elite", "good", "moderate", "rising", "cold"]>>;
|
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
|
20
21
|
limit: number;
|
|
21
22
|
offset: number;
|
|
22
23
|
since?: string | undefined;
|
|
24
|
+
tier?: "elite" | "good" | "moderate" | "rising" | "cold" | undefined;
|
|
23
25
|
}, {
|
|
24
26
|
limit?: number | undefined;
|
|
25
27
|
offset?: number | undefined;
|
|
26
28
|
since?: string | undefined;
|
|
29
|
+
tier?: "elite" | "good" | "moderate" | "rising" | "cold" | undefined;
|
|
27
30
|
}>;
|
|
28
31
|
handler: (agent: unknown, input: {
|
|
29
32
|
limit?: number;
|
|
30
33
|
offset?: number;
|
|
31
34
|
since?: string;
|
|
35
|
+
tier?: "elite" | "good" | "moderate" | "rising" | "cold";
|
|
32
36
|
}) => Promise<{
|
|
33
37
|
status: string;
|
|
34
38
|
result: any;
|
|
@@ -11,6 +11,10 @@ export const deployerAlertsAction = {
|
|
|
11
11
|
limit: z.number().min(1).max(100).default(10).describe("Number of alerts"),
|
|
12
12
|
offset: z.number().min(0).default(0).describe("Pagination offset"),
|
|
13
13
|
since: z.string().optional().describe("ISO8601 timestamp to filter alerts after"),
|
|
14
|
+
tier: z
|
|
15
|
+
.enum(["elite", "good", "moderate", "rising", "cold"])
|
|
16
|
+
.optional()
|
|
17
|
+
.describe("Filter by deployer tier. PRO/ULTRA subscribers only — BASIC callers receive 403."),
|
|
14
18
|
}),
|
|
15
19
|
handler: async (agent, input) => {
|
|
16
20
|
try {
|
package/dist/actions/kolFeed.js
CHANGED
|
@@ -3,7 +3,7 @@ import { kolFeed } from "../tools/index.js";
|
|
|
3
3
|
export const kolFeedAction = {
|
|
4
4
|
name: "MADEONSOL_KOL_FEED_ACTION",
|
|
5
5
|
similes: ["kol trades", "what are kols buying", "kol feed", "smart money trades", "kol activity"],
|
|
6
|
-
description: "Get real-time Solana KOL trades from
|
|
6
|
+
description: "Get real-time Solana KOL trades from 1,000+ tracked wallets via MadeOnSol x402 API. Costs $0.005 USDC per request.",
|
|
7
7
|
examples: [
|
|
8
8
|
[{ input: { limit: 10, action: "buy" }, output: { status: "success" }, explanation: "Fetch the 10 most recent KOL buy trades" }],
|
|
9
9
|
],
|
package/dist/index.d.ts
CHANGED
|
@@ -149,19 +149,23 @@ declare const MadeOnSolPlugin: {
|
|
|
149
149
|
limit: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
150
150
|
offset: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
151
151
|
since: import("zod").ZodOptional<import("zod").ZodString>;
|
|
152
|
+
tier: import("zod").ZodOptional<import("zod").ZodEnum<["elite", "good", "moderate", "rising", "cold"]>>;
|
|
152
153
|
}, "strip", import("zod").ZodTypeAny, {
|
|
153
154
|
limit: number;
|
|
154
155
|
offset: number;
|
|
155
156
|
since?: string | undefined;
|
|
157
|
+
tier?: "elite" | "good" | "moderate" | "rising" | "cold" | undefined;
|
|
156
158
|
}, {
|
|
157
159
|
limit?: number | undefined;
|
|
158
160
|
offset?: number | undefined;
|
|
159
161
|
since?: string | undefined;
|
|
162
|
+
tier?: "elite" | "good" | "moderate" | "rising" | "cold" | undefined;
|
|
160
163
|
}>;
|
|
161
164
|
handler: (agent: unknown, input: {
|
|
162
165
|
limit?: number;
|
|
163
166
|
offset?: number;
|
|
164
167
|
since?: string;
|
|
168
|
+
tier?: "elite" | "good" | "moderate" | "rising" | "cold";
|
|
165
169
|
}) => Promise<{
|
|
166
170
|
status: string;
|
|
167
171
|
result: any;
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -21,10 +21,16 @@ export declare function kolLeaderboard(agent: Agent, params?: {
|
|
|
21
21
|
period?: string;
|
|
22
22
|
limit?: number;
|
|
23
23
|
}): Promise<any>;
|
|
24
|
+
/**
|
|
25
|
+
* Get Pump.fun deployer alerts with KOL buy enrichment.
|
|
26
|
+
* The `tier` filter (elite/good/moderate/rising/cold) is PRO/ULTRA only —
|
|
27
|
+
* BASIC callers passing it receive HTTP 403.
|
|
28
|
+
*/
|
|
24
29
|
export declare function deployerAlerts(agent: Agent, params?: {
|
|
25
30
|
limit?: number;
|
|
26
31
|
since?: string;
|
|
27
32
|
offset?: number;
|
|
33
|
+
tier?: "elite" | "good" | "moderate" | "rising" | "cold";
|
|
28
34
|
}): Promise<any>;
|
|
29
35
|
export declare function kolPairs(agent: Agent, params?: {
|
|
30
36
|
period?: string;
|
package/dist/tools/index.js
CHANGED
|
@@ -85,6 +85,11 @@ export async function kolLeaderboard(agent, params = {}) {
|
|
|
85
85
|
await initAuth(agent);
|
|
86
86
|
return query("/api/x402/kol/leaderboard", params);
|
|
87
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* Get Pump.fun deployer alerts with KOL buy enrichment.
|
|
90
|
+
* The `tier` filter (elite/good/moderate/rising/cold) is PRO/ULTRA only —
|
|
91
|
+
* BASIC callers passing it receive HTTP 403.
|
|
92
|
+
*/
|
|
88
93
|
export async function deployerAlerts(agent, params = {}) {
|
|
89
94
|
await initAuth(agent);
|
|
90
95
|
return query("/api/x402/deployer-hunter/alerts", params);
|
package/package.json
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "solana-agent-kit-plugin-madeonsol",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Solana Agent Kit plugin for MadeOnSol
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist",
|
|
10
|
-
"README.md"
|
|
11
|
-
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsc",
|
|
14
|
-
"prepublishOnly": ""
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"solana",
|
|
18
|
-
"agent-kit",
|
|
19
|
-
"x402",
|
|
20
|
-
"kol",
|
|
21
|
-
"trading",
|
|
22
|
-
"madeonsol"
|
|
23
|
-
],
|
|
24
|
-
"license": "MIT",
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "https://github.com/LamboPoewert/solana-agent-kit-plugin-madeonsol"
|
|
28
|
-
},
|
|
29
|
-
"peerDependencies": {
|
|
30
|
-
"solana-agent-kit": ">=2.0.0",
|
|
31
|
-
"@x402/fetch": ">=0.1.0",
|
|
32
|
-
"@x402/core": ">=0.1.0",
|
|
33
|
-
"@x402/svm": ">=0.1.0",
|
|
34
|
-
"@solana/kit": ">=2.0.0",
|
|
35
|
-
"@scure/base": ">=1.0.0"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"zod": "^3.24.0"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "solana-agent-kit-plugin-madeonsol",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Solana Agent Kit plugin for MadeOnSol \u00e2\u20ac\u201d KOL intelligence and deployer analytics via x402 micropayments",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsc",
|
|
14
|
+
"prepublishOnly": ""
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"solana",
|
|
18
|
+
"agent-kit",
|
|
19
|
+
"x402",
|
|
20
|
+
"kol",
|
|
21
|
+
"trading",
|
|
22
|
+
"madeonsol"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/LamboPoewert/solana-agent-kit-plugin-madeonsol"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"solana-agent-kit": ">=2.0.0",
|
|
31
|
+
"@x402/fetch": ">=0.1.0",
|
|
32
|
+
"@x402/core": ">=0.1.0",
|
|
33
|
+
"@x402/svm": ">=0.1.0",
|
|
34
|
+
"@solana/kit": ">=2.0.0",
|
|
35
|
+
"@scure/base": ">=1.0.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"zod": "^3.24.0"
|
|
39
|
+
}
|
|
40
|
+
}
|