solana-agent-kit-plugin-madeonsol 1.16.0 → 1.16.1
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 +1 -1
- package/dist/actions/tokenBundle.js +1 -1
- package/dist/tools/index.d.ts +1 -1
- package/dist/tools/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
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, every endpoint — no signup payment. Get a key at [madeonsol.com/pricing](https://madeonsol.com/pricing).
|
|
13
13
|
|
|
14
|
-
> **New in 1.16.0** — **Bundle-cohort holdings.** New tool `tokenBundle()` + action `MADEONSOL_TOKEN_BUNDLE_ACTION` — which same-slot "bundle" wallets (≥3 buying in one slot) bought a token and how much of supply they STILL hold, from confirmed on-chain data. Returns a `bundle` summary (`wallet_count`, `bundle_kind` [`atomic_tx`/`same_slot`/`none`], `held_ratio`, **`held_pct_of_supply`** [the headline rug/insider signal], `fully_exited`, `buy_volume`, `tokens_held`) plus a `wallets[]` list (`rank`, `wallet`, `held_ratio`, `has_sold`, `atomic`, `is_kol`). BASIC
|
|
14
|
+
> **New in 1.16.0** — **Bundle-cohort holdings.** New tool `tokenBundle()` + action `MADEONSOL_TOKEN_BUNDLE_ACTION` — which same-slot "bundle" wallets (≥3 buying in one slot) bought a token and how much of supply they STILL hold, from confirmed on-chain data. Returns a `bundle` summary (`wallet_count`, `bundle_kind` [`atomic_tx`/`same_slot`/`none`], `held_ratio`, **`held_pct_of_supply`** [the headline rug/insider signal], `fully_exited`, `buy_volume`, `tokens_held`) plus a `wallets[]` list (`rank`, `wallet`, `held_ratio`, `has_sold`, `atomic`, `is_kol`). BASIC get the `bundle` block only (`wallets: []`); PRO gets top-10 flags-only; ULTRA adds full holdings + wallet identity (`kol_name`, `win_rate`, `bot_confidence`, `tokens_held`). PRO/ULTRA only.
|
|
15
15
|
>
|
|
16
16
|
> **New in 1.15.0** — **Batch risk scoring + WebSocket session control.** New tool `tokenRiskBatch()` + action `MADEONSOL_TOKEN_RISK_BATCH_ACTION` — bulk 0–100 rug-risk/safety scoring for 1–50 mints in one call (`{ tokens, count }`, same per-mint shape as `tokenRisk()` plus an `as_of` ISO string; untracked mints come back as `{ mint, error: "not_tracked" }` without failing the batch; counts as one request). New tools `streamSessions()` / `streamSessionKill({ id })` + actions `MADEONSOL_STREAM_SESSIONS_ACTION` / `MADEONSOL_STREAM_SESSION_KILL_ACTION` — list your live ws-streaming/dex-stream sessions (`id`, `service`, `tier`, `channels[]`, `connected_at`, `remote_ip`, `messages_sent`) and evict one by id to free a connection slot. PRO/ULTRA only.
|
|
17
17
|
>
|
|
@@ -3,7 +3,7 @@ import { tokenBundle } from "../tools/index.js";
|
|
|
3
3
|
export const tokenBundleAction = {
|
|
4
4
|
name: "MADEONSOL_TOKEN_BUNDLE_ACTION",
|
|
5
5
|
similes: ["token bundle holdings", "bundle wallets", "same slot buyers", "insider bundle", "how much do bundlers still hold"],
|
|
6
|
-
description: "Get bundle-cohort holdings for a Solana token — which same-slot 'bundle' wallets (≥3 buying in one slot) bought the token and how much of supply they STILL hold (the held_pct_of_supply rug/insider signal, from confirmed on-chain data). Returns a bundle summary (wallet_count, bundle_kind, held_ratio, held_pct_of_supply headline, fully_exited, buy_volume, tokens_held) and a wallets[] list. BASIC
|
|
6
|
+
description: "Get bundle-cohort holdings for a Solana token — which same-slot 'bundle' wallets (≥3 buying in one slot) bought the token and how much of supply they STILL hold (the held_pct_of_supply rug/insider signal, from confirmed on-chain data). Returns a bundle summary (wallet_count, bundle_kind, held_ratio, held_pct_of_supply headline, fully_exited, buy_volume, tokens_held) and a wallets[] list. BASIC get the bundle block only; PRO gets top-10 flags-only; ULTRA gets full holdings + wallet identity (kol_name, win_rate, bot_confidence). PRO/ULTRA only — BASIC receives HTTP 403.",
|
|
7
7
|
examples: [
|
|
8
8
|
[{ input: { mint: "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU" }, output: { status: "success" }, explanation: "How much of this token do the bundle wallets still hold?" }],
|
|
9
9
|
],
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -184,7 +184,7 @@ export declare function tokenBuyerQuality(agent: Agent, params: {
|
|
|
184
184
|
export declare function tokenRisk(agent: Agent, params: {
|
|
185
185
|
mint: string;
|
|
186
186
|
}): Promise<any>;
|
|
187
|
-
/** Bundle-cohort holdings: which same-slot "bundle" wallets bought a token and how much of supply they STILL hold (held_pct_of_supply headline rug/insider signal). BASIC
|
|
187
|
+
/** Bundle-cohort holdings: which same-slot "bundle" wallets bought a token and how much of supply they STILL hold (held_pct_of_supply headline rug/insider signal). BASIC=bundle block only; PRO=top-10 flags; ULTRA=full + identity. PRO/ULTRA only. */
|
|
188
188
|
export declare function tokenBundle(agent: Agent, params: {
|
|
189
189
|
mint: string;
|
|
190
190
|
}): Promise<any>;
|
package/dist/tools/index.js
CHANGED
|
@@ -30,7 +30,7 @@ export async function initAuth(agent) {
|
|
|
30
30
|
const privateKey = getConfig(agent, "SVM_PRIVATE_KEY");
|
|
31
31
|
if (apiKey) {
|
|
32
32
|
_authMode = "madeonsol";
|
|
33
|
-
_authHeaders = { Authorization: `Bearer ${apiKey}`, "User-Agent": "solana-agent-kit-plugin-madeonsol/1.
|
|
33
|
+
_authHeaders = { Authorization: `Bearer ${apiKey}`, "User-Agent": "solana-agent-kit-plugin-madeonsol/1.16.1" };
|
|
34
34
|
_paidFetch = fetch;
|
|
35
35
|
console.log("[madeonsol] Using MadeOnSol API key (Bearer auth)");
|
|
36
36
|
}
|
|
@@ -279,7 +279,7 @@ export async function tokenBuyerQuality(agent, params) {
|
|
|
279
279
|
export async function tokenRisk(agent, params) {
|
|
280
280
|
return restQuery(agent, "GET", `/tokens/${encodeURIComponent(params.mint)}/risk`);
|
|
281
281
|
}
|
|
282
|
-
/** Bundle-cohort holdings: which same-slot "bundle" wallets bought a token and how much of supply they STILL hold (held_pct_of_supply headline rug/insider signal). BASIC
|
|
282
|
+
/** Bundle-cohort holdings: which same-slot "bundle" wallets bought a token and how much of supply they STILL hold (held_pct_of_supply headline rug/insider signal). BASIC=bundle block only; PRO=top-10 flags; ULTRA=full + identity. PRO/ULTRA only. */
|
|
283
283
|
export async function tokenBundle(agent, params) {
|
|
284
284
|
return restQuery(agent, "GET", `/tokens/${encodeURIComponent(params.mint)}/bundle`);
|
|
285
285
|
}
|
package/package.json
CHANGED