@madeonsol/plugin-madeonsol 1.1.0 → 1.1.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
@@ -99,17 +99,18 @@ Your agent can then respond to queries like:
99
99
 
100
100
  | Tier | Price | Wallets tracked | Requests/day |
101
101
  |------|-------|-----------------|--------------|
102
- | BASIC | Free | 10 | 200 |
103
- | PRO | $49/mo | 50 | 10,000 |
104
- | ULTRA | $149/mo | 100 + WS events | 100,000 |
102
+ | Free | $0 | 10 | 200 |
103
+ | Pro | $49/mo | 50 | 10,000 |
104
+ | Ultra | $149/mo | 100 + WS events | 100,000 |
105
105
 
106
- Get a key at [madeonsol.com/developer](https://madeonsol.com/developer).
106
+ Free tier returns the full REST response shape on every endpoint — real wallets, TX signatures, full precision. Paid tiers unlock webhooks, WebSockets, rule engines, and ULTRA-only data depth. Get a key at [madeonsol.com/developer](https://madeonsol.com/developer).
107
107
 
108
108
  ## Also Available
109
109
 
110
110
  | Platform | Package |
111
111
  |---|---|
112
112
  | TypeScript SDK | [`madeonsol`](https://www.npmjs.com/package/madeonsol) on npm |
113
+ | Rust SDK | [`madeonsol`](https://crates.io/crates/madeonsol) on crates.io |
113
114
  | Python (LangChain, CrewAI) | [`madeonsol-x402`](https://pypi.org/project/madeonsol-x402/) on PyPI |
114
115
  | MCP Server (Claude, Cursor) | [`mcp-server-madeonsol`](https://www.npmjs.com/package/mcp-server-madeonsol) |
115
116
  | Solana Agent Kit | [`solana-agent-kit-plugin-madeonsol`](https://www.npmjs.com/package/solana-agent-kit-plugin-madeonsol) |
@@ -29,7 +29,7 @@ export const deployerAlertsAction = {
29
29
  const result = await client.getDeployerAlerts(tier ? { limit, tier } : { limit });
30
30
  if (result.error) {
31
31
  callback?.({ text: result.status === 402
32
- ? "Authentication required. Set MADEONSOL_API_KEY (free at madeonsol.com/developer) or SVM_PRIVATE_KEY."
32
+ ? "Authentication required. Set MADEONSOL_API_KEY free at https://madeonsol.com/developer or SVM_PRIVATE_KEY."
33
33
  : `Error: ${result.error}` });
34
34
  return undefined;
35
35
  }
@@ -24,7 +24,7 @@ export const kolAlertsRecentAction = {
24
24
  const result = await client.getKolAlertsRecent({ window, limit: "20" });
25
25
  if (result.error) {
26
26
  callback?.({ text: result.status === 402
27
- ? "Authentication required. Set MADEONSOL_API_KEY (free at madeonsol.com/developer) or SVM_PRIVATE_KEY."
27
+ ? "Authentication required. Set MADEONSOL_API_KEY free at https://madeonsol.com/developer or SVM_PRIVATE_KEY."
28
28
  : `Error: ${result.error}` });
29
29
  return undefined;
30
30
  }
@@ -29,7 +29,7 @@ export const kolCompareAction = {
29
29
  const result = await client.getKolCompare(wallets);
30
30
  if (result.error) {
31
31
  callback?.({ text: result.status === 402
32
- ? "Authentication required. Set MADEONSOL_API_KEY (free at madeonsol.com/developer) or SVM_PRIVATE_KEY."
32
+ ? "Authentication required. Set MADEONSOL_API_KEY free at https://madeonsol.com/developer or SVM_PRIVATE_KEY."
33
33
  : `Error: ${result.error}` });
34
34
  return undefined;
35
35
  }
@@ -24,7 +24,7 @@ export const kolCoordinationAction = {
24
24
  const result = await client.getKolCoordination({ period, limit: "10" });
25
25
  if (result.error) {
26
26
  callback?.({ text: result.status === 402
27
- ? "Authentication required. Set MADEONSOL_API_KEY (free at madeonsol.com/developer) or SVM_PRIVATE_KEY."
27
+ ? "Authentication required. Set MADEONSOL_API_KEY free at https://madeonsol.com/developer or SVM_PRIVATE_KEY."
28
28
  : `Error: ${result.error}` });
29
29
  return undefined;
30
30
  }
@@ -25,7 +25,7 @@ export const kolFeedAction = {
25
25
  const result = await client.getKolFeed({ limit: "10", ...(action ? { action } : {}) });
26
26
  if (result.error) {
27
27
  callback?.({ text: result.status === 402
28
- ? "Authentication required. Set MADEONSOL_API_KEY (free at madeonsol.com/developer) or SVM_PRIVATE_KEY."
28
+ ? "Authentication required. Set MADEONSOL_API_KEY free at https://madeonsol.com/developer or SVM_PRIVATE_KEY."
29
29
  : `Error: ${result.error}` });
30
30
  return undefined;
31
31
  }
@@ -24,7 +24,7 @@ export const kolLeaderboardAction = {
24
24
  const result = await client.getKolLeaderboard({ period, limit: "10" });
25
25
  if (result.error) {
26
26
  callback?.({ text: result.status === 402
27
- ? "Authentication required. Set MADEONSOL_API_KEY (free at madeonsol.com/developer) or SVM_PRIVATE_KEY."
27
+ ? "Authentication required. Set MADEONSOL_API_KEY free at https://madeonsol.com/developer or SVM_PRIVATE_KEY."
28
28
  : `Error: ${result.error}` });
29
29
  return undefined;
30
30
  }
@@ -28,7 +28,7 @@ export const kolTokenEntryOrderAction = {
28
28
  const result = await client.getKolTokenEntryOrder(mint, { limit: "20" });
29
29
  if (result.error) {
30
30
  callback?.({ text: result.status === 402
31
- ? "Authentication required. Set MADEONSOL_API_KEY (free at madeonsol.com/developer) or SVM_PRIVATE_KEY."
31
+ ? "Authentication required. Set MADEONSOL_API_KEY free at https://madeonsol.com/developer or SVM_PRIVATE_KEY."
32
32
  : `Error: ${result.error}` });
33
33
  return undefined;
34
34
  }
package/dist/client.d.ts CHANGED
@@ -7,7 +7,7 @@
7
7
  */
8
8
  export interface MadeOnSolClientOptions {
9
9
  baseUrl?: string;
10
- /** MadeOnSol API key (get one free at madeonsol.com/developer). Preferred. */
10
+ /** MadeOnSol API key get one free at https://madeonsol.com/developer. Preferred. */
11
11
  apiKey?: string;
12
12
  /** x402 payment-enabled fetch (for AI agents with SVM_PRIVATE_KEY). */
13
13
  fetchFn?: typeof fetch;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@madeonsol/plugin-madeonsol",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
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",