fix(order-quote): switch quoteOrder to exist auth and update CLI help text

- OpenApiClient.quoteOrder now calls authExistRequest instead of authSignedRequest
- Remove all GMGN_PRIVATE_KEY references from the quote command description and options

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
David Lau
2026-06-24 16:13:37 +08:00
co-authored by Claude Sonnet 4.6
parent d0ca1b40ce
commit 25f4207351
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -470,7 +470,7 @@ export class OpenApiClient {
slippage: number
): Promise<unknown> {
const query = { chain, from_address, input_token, output_token, input_amount, slippage };
return this.authSignedRequest("GET", "/v1/trade/quote", query, null);
return this.authExistRequest("GET", "/v1/trade/quote", query);
}
// ---- Swap endpoints (signed auth) ----