From 7d16bd80e80277c12bd426e54a0ce061a94b715b Mon Sep 17 00:00:00 2001 From: gina888666 Date: Mon, 25 May 2026 16:02:17 +0800 Subject: [PATCH] fix(gmgn-token): correct fee_distribution usage hint and volume fields note - Add usage context to fee_distribution section so agents know to use token info when querying claim status and royalty allocation - Fix incorrect Note that said trading volume is not in token info; price.volume_{window}, buys_{window}, sells_{window}, swaps_{window} are all available in the token info price object Co-Authored-By: Claude Sonnet 4.6 --- skills/gmgn-token/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/gmgn-token/SKILL.md b/skills/gmgn-token/SKILL.md index c6e7dff..3ab13e0 100644 --- a/skills/gmgn-token/SKILL.md +++ b/skills/gmgn-token/SKILL.md @@ -288,7 +288,7 @@ The response has five nested objects: `pool`, `dev`, `link`, `stat`, `wallet_tag | `price.swaps_{window}` | Total swap count for the window | | `price.hot_level` | Heat level integer | -**`fee_distribution` Object** — Launchpad fee-sharing config (optional; present for `pump` / `bankr` tokens) +**`fee_distribution` Object** — Launchpad fee-sharing config (optional; present for `pump` / `bankr` tokens). Use `token info` to check fee distribution, creator reward claim status (`has_claimed_fee`), and royalty allocation for pump/bankr tokens. | Field | Description | |-------|-------------| @@ -724,7 +724,7 @@ Show top rows only. Highlight wallets tagged `kol`, `smart_degen`, or flagged `b ## Notes - **Market cap is not returned directly** — calculate it as `price.price × circulating_supply` (`price` is now a nested object; use `price.price` for the current USD price string, and `circulating_supply` is a top-level field already in human-readable token units). Example: `price.price="3.11"` × `circulating_supply=999999151` ≈ $3.11B market cap. -- **Trading volume (1h, 24h, etc.) is not included in `token info`** — to get volume or OHLCV data, use the `gmgn-market` skill and query K-line data: `gmgn-cli market kline --chain --address --resolution <1m|5m|15m|1h|4h|1d>`. See the `gmgn-market` SKILL.md for full details. +- **Trading volume and swap counts by window are available in `token info`** via the `price` object: `volume_{window}`, `buy_volume_{window}`, `sell_volume_{window}`, `buys_{window}`, `sells_{window}`, `swaps_{window}` (windows: `1m`, `5m`, `1h`, `6h`, `24h`). For OHLCV candlestick data, use `gmgn-market kline`. - All token commands use exist auth (API Key only, no signature required) - Use `--raw` to get single-line JSON for further processing - `--tag` applies to both `holders` and `traders` and filters to only wallets with that tag — if few results are returned, try the other tag value