From 702eac9686eca18fcf84b9a435b1a12140687481 Mon Sep 17 00:00:00 2001 From: gumponchain Date: Wed, 25 Mar 2026 16:42:50 +0800 Subject: [PATCH] feat(market): update trending --interval to support 1m/5m/1h/6h/24h Co-Authored-By: Claude Sonnet 4.6 --- src/commands/market.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/market.ts b/src/commands/market.ts index 39475da..37f0d4b 100644 --- a/src/commands/market.ts +++ b/src/commands/market.ts @@ -30,7 +30,7 @@ export function registerMarketCommands(program: Command): void { .command("trending") .description("Get trending token swap data") .requiredOption("--chain ", "Chain: sol / bsc / base") - .requiredOption("--interval ", "Time interval: 1h / 3h / 6h / 24h") + .requiredOption("--interval ", "Time interval: 1m / 5m / 1h / 6h / 24h") .option("--limit ", "Number of results (default 100, max 100)", parseInt) .option("--order-by ", "Sort field: default / volume / swaps / marketcap / holder_count / price / change1h / ... (see docs for full list)") .option("--direction ", "Sort direction: asc / desc")