diff --git a/skills/gmgn-market/SKILL.md b/skills/gmgn-market/SKILL.md index ced6360..f4b80f6 100644 --- a/skills/gmgn-market/SKILL.md +++ b/skills/gmgn-market/SKILL.md @@ -492,6 +492,7 @@ All filter flags are sent as part of the API request body — the server filters | `--min-creator-created-count` / `--max-creator-created-count` | int | Creator's total token creation count | | `--min-creator-created-open-count` / `--max-creator-created-open-count` | int | Creator's graduated token count | | `--min-creator-created-open-ratio` / `--max-creator-created-open-ratio` | float | Creator's graduation ratio (0–1) | +| `--min-x-follower` / `--max-x-follower` | int | Twitter / X follower count | | `--min-twitter-rename-count` / `--max-twitter-rename-count` | int | Twitter rename count | | `--min-tg-call-count` / `--max-tg-call-count` | int | Telegram call count | diff --git a/src/commands/market.ts b/src/commands/market.ts index 9e066f7..78c7542 100644 --- a/src/commands/market.ts +++ b/src/commands/market.ts @@ -193,7 +193,9 @@ const TRENCHES_FILTER_FIELDS: TrenchesFilterField[] = [ { api: "max_creator_created_open_count", type: "int", desc: "Max creator graduated token count" }, { api: "min_creator_created_open_ratio", type: "float", desc: "Min creator graduation ratio (0–1)" }, { api: "max_creator_created_open_ratio", type: "float", desc: "Max creator graduation ratio (0–1)" }, - // Social (x_follower is not supported by the API — silently ignored) + // Social + { api: "min_x_follower", type: "int", desc: "Min Twitter / X follower count" }, + { api: "max_x_follower", type: "int", desc: "Max Twitter / X follower count" }, { api: "min_twitter_rename_count", type: "int", desc: "Min Twitter rename count (high = suspicious)" }, { api: "max_twitter_rename_count", type: "int", desc: "Max Twitter rename count" }, { api: "min_tg_call_count", type: "int", desc: "Min Telegram call count" },