From c4ad85d37e9ab81c715aa888e2df572316a50f52 Mon Sep 17 00:00:00 2001 From: Tom You <> Date: Tue, 22 Jul 2025 17:03:50 +0900 Subject: [PATCH] fix: update X-CHANNEL-API-CODE header value --- src/util/BaseRestClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/BaseRestClient.ts b/src/util/BaseRestClient.ts index e02be75..b723acb 100644 --- a/src/util/BaseRestClient.ts +++ b/src/util/BaseRestClient.ts @@ -107,7 +107,7 @@ export default abstract class BaseRestClient { /** inject custom rquest options based on axios specs - see axios docs for more guidance on AxiosRequestConfig: https://github.com/axios/axios#request-config */ ...networkOptions, headers: { - 'X-CHANNEL-API-CODE': 'hbnni', + 'X-CHANNEL-API-CODE': 'elga', 'Content-Type': 'application/json', locale: 'en-US', ...(restOptions.demoTrading ? { paptrading: '1' } : {}),