From b83422769f10e29e995460f52b6997aaabfa9dff Mon Sep 17 00:00:00 2001 From: wuyanling Date: Wed, 22 Apr 2026 15:22:44 +0800 Subject: [PATCH] fix(trenches): remove 1h example from min/max-created desc, align with s/m only Co-Authored-By: Claude Sonnet 4.6 --- src/commands/market.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/market.ts b/src/commands/market.ts index c126b5f..7cede05 100644 --- a/src/commands/market.ts +++ b/src/commands/market.ts @@ -219,8 +219,8 @@ const TRENCHES_FILTER_FIELDS: TrenchesFilterField[] = [ { api: "min_liquidity", type: "float", desc: "Min liquidity (USD)" }, { api: "max_liquidity", type: "float", desc: "Max liquidity (USD)" }, // Token age - { api: "min_created", type: "duration", desc: "Min token age — unit required: seconds (e.g. 30s) or minutes (e.g. 0.5m / 1m / 5m / 30m / 1h)" }, - { api: "max_created", type: "duration", desc: "Max token age — unit required: seconds (e.g. 30s) or minutes (e.g. 0.5m / 1m / 5m / 30m / 1h)" }, + { api: "min_created", type: "duration", desc: "Min token age — unit recommended: seconds (e.g. 30s) or minutes (e.g. 0.5m / 1m / 5m / 30m). Bare numbers treated as minutes." }, + { api: "max_created", type: "duration", desc: "Max token age — unit recommended: seconds (e.g. 30s) or minutes (e.g. 0.5m / 1m / 5m / 30m). Bare numbers treated as minutes." }, // Holders { api: "min_holder_count", type: "int", desc: "Min holder count" }, { api: "max_holder_count", type: "int", desc: "Max holder count" },