diff --git a/docs/cli-usage.md b/docs/cli-usage.md index 7bf9a2e..6749cb2 100644 --- a/docs/cli-usage.md +++ b/docs/cli-usage.md @@ -749,7 +749,7 @@ gmgn-cli cooking create \ [--fourmeme-rate-conf ] \ [--bags-fee-share-list ] \ [--bonk-model ] \ - [--buy-wallets ] [--snip-buy-wallets ] [--interval-seconds ] \ + [--buy-wallets ] [--snip-buy-wallets ] \ [--buy-trade-config ] [--sell-trade-config ] [--sell-configs ] \ [--raw] ``` @@ -795,7 +795,6 @@ gmgn-cli cooking create \ | `--bonk-model` | No | Bonk model identifier (**bonk DEX only**) | | `--buy-wallets` | No | Multi-wallet buy config as JSON array: `[{"from_address":"","buy_amt":""}]` | | `--snip-buy-wallets` | No | Snipe-buy wallet config as JSON array: `[{"from_address":"","buy_amt":""}]` | -| `--interval-seconds` | No | Interval between multi-wallet buys in seconds | | `--buy-trade-config` | No | Buy-side trade config for CondMarket orders as JSON (TradeParam) | | `--sell-trade-config` | No | Sell-side trade config for auto-sell / pending_sell as JSON (TradeParam) | | `--sell-configs` | No | Auto-sell strategy list as JSON array (CookingSellConfig[]): `[{"sell_type":"delay_sell","delay_sec":,"sell_ratio":"0.5","wallet_addresses":[""]}]` | diff --git a/skills/gmgn-cooking/SKILL.md b/skills/gmgn-cooking/SKILL.md index ee5f4be..b44e312 100644 --- a/skills/gmgn-cooking/SKILL.md +++ b/skills/gmgn-cooking/SKILL.md @@ -180,7 +180,6 @@ gmgn-cli cooking stats [--raw] | `--bonk-model` | No | Bonk model identifier (**bonk DEX only**) | | `--buy-wallets` | No | Multi-wallet buy config as JSON array: `[{"from_address":"","buy_amt":""}]` | | `--snip-buy-wallets` | No | Snipe-buy wallet config as JSON array: `[{"from_address":"","buy_amt":""}]` | -| `--interval-seconds` | No | Interval between multi-wallet buys in seconds | | `--buy-trade-config` | No | Buy-side trade config for CondMarket orders as JSON (TradeParam) — see Advanced API Fields | | `--sell-trade-config` | No | Sell-side trade config for auto-sell / pending_sell as JSON (TradeParam) — see Advanced API Fields | | `--sell-configs` | No | Auto-sell strategy list as JSON array (CookingSellConfig[]) — see Auto-Sell Configuration | diff --git a/src/client/OpenApiClient.ts b/src/client/OpenApiClient.ts index 30050b7..1f4c749 100644 --- a/src/client/OpenApiClient.ts +++ b/src/client/OpenApiClient.ts @@ -314,7 +314,6 @@ export interface CreateTokenParams { // Multi-wallet buy buy_wallets?: BuyWalletInfo[]; snip_buy_wallets?: BuyWalletInfo[]; - interval_seconds?: number; } export class OpenApiClient { diff --git a/src/commands/cooking.ts b/src/commands/cooking.ts index b58d0c1..9a529be 100644 --- a/src/commands/cooking.ts +++ b/src/commands/cooking.ts @@ -66,7 +66,6 @@ export function registerCookingCommands(program: Command): void { // Multi-wallet buy .option("--buy-wallets ", "Multi-wallet buy config as JSON array [{from_address, buy_amt}]") .option("--snip-buy-wallets ", "Snipe-buy wallet config as JSON array [{from_address, buy_amt}]") - .option("--interval-seconds ", "Interval between multi-wallet buys in seconds", parseInt) // CondMarket execution config + auto-sell (JSON) .option("--buy-trade-config ", "Buy-side trade config for CondMarket orders as JSON (TradeParam)") .option("--sell-trade-config ", "Sell-side trade config for auto-sell / pending_sell as JSON (TradeParam)") @@ -124,7 +123,6 @@ export function registerCookingCommands(program: Command): void { if (opts.bonkModel) params.bonk_model = opts.bonkModel; if (opts.buyWallets) params.buy_wallets = JSON.parse(opts.buyWallets); if (opts.snipBuyWallets) params.snip_buy_wallets = JSON.parse(opts.snipBuyWallets); - if (opts.intervalSeconds != null) params.interval_seconds = opts.intervalSeconds; if (opts.buyTradeConfig) params.buy_trade_config = JSON.parse(opts.buyTradeConfig); if (opts.sellTradeConfig) params.sell_trade_config = JSON.parse(opts.sellTradeConfig); if (opts.sellConfigs) params.sell_configs = JSON.parse(opts.sellConfigs);