@yuants/vendor-okx 0.26.0 → 0.27.0

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.
@@ -0,0 +1,39 @@
1
+ import { provideAccountActionsWithCredential } from '@yuants/data-account';
2
+ import { Terminal } from '@yuants/protocol';
3
+ import { getAccountIds } from './accountInfos/uid';
4
+ import { getEarningAccountInfo, getFundingAccountInfo, getLoanAccountInfo, getStrategyAccountInfo, getTradingAccountInfo, } from './accountInfos';
5
+ provideAccountActionsWithCredential(Terminal.fromNodeEnv(), 'OKX', {
6
+ type: 'object',
7
+ required: ['access_key', 'secret_key', 'passphrase'],
8
+ properties: {
9
+ access_key: { type: 'string' },
10
+ secret_key: { type: 'string' },
11
+ passphrase: { type: 'string' },
12
+ },
13
+ }, {
14
+ listAccounts: async (credential) => {
15
+ const accountIds = await getAccountIds(credential);
16
+ if (!accountIds)
17
+ throw new Error('Failed to get account IDs');
18
+ return Object.values(accountIds).map((account_id) => ({ account_id }));
19
+ },
20
+ getAccountInfo: async (credential, account_id) => {
21
+ const accountIds = await getAccountIds(credential);
22
+ if (!accountIds)
23
+ throw new Error('Failed to get account IDs');
24
+ switch (account_id) {
25
+ case accountIds.trading:
26
+ return getTradingAccountInfo(credential);
27
+ case accountIds.funding:
28
+ return getFundingAccountInfo(credential);
29
+ case accountIds.earning:
30
+ return getEarningAccountInfo(credential);
31
+ case accountIds.loan:
32
+ return getLoanAccountInfo(credential);
33
+ case accountIds.strategy:
34
+ return getStrategyAccountInfo(credential);
35
+ }
36
+ throw new Error(`Unsupported account_id: ${account_id}`);
37
+ },
38
+ });
39
+ //# sourceMappingURL=account-actions-with-credential.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"account-actions-with-credential.js","sourceRoot":"","sources":["../src/account-actions-with-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mCAAmC,EAAE,MAAM,sBAAsB,CAAC;AAC3E,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EACL,qBAAqB,EACrB,qBAAqB,EACrB,kBAAkB,EAClB,sBAAsB,EACtB,qBAAqB,GACtB,MAAM,gBAAgB,CAAC;AAExB,mCAAmC,CACjC,QAAQ,CAAC,WAAW,EAAE,EACtB,KAAK,EACL;IACE,IAAI,EAAE,QAAQ;IACd,QAAQ,EAAE,CAAC,YAAY,EAAE,YAAY,EAAE,YAAY,CAAC;IACpD,UAAU,EAAE;QACV,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAC9B,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAC9B,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;KAC/B;CACF,EACD;IACE,YAAY,EAAE,KAAK,EAAE,UAAU,EAAE,EAAE;QACjC,MAAM,UAAU,GAAG,MAAM,aAAa,CAAC,UAAU,CAAC,CAAC;QACnD,IAAI,CAAC,UAAU;YAAE,MAAM,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAC;QAC9D,OAAO,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC;IACzE,CAAC;IACD,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,EAAE;QAC/C,MAAM,UAAU,GAAG,MAAM,aAAa,CAAC,UAAU,CAAC,CAAC;QACnD,IAAI,CAAC,UAAU;YAAE,MAAM,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAC;QAC9D,QAAQ,UAAU,EAAE;YAClB,KAAK,UAAU,CAAC,OAAO;gBACrB,OAAO,qBAAqB,CAAC,UAAU,CAAC,CAAC;YAC3C,KAAK,UAAU,CAAC,OAAO;gBACrB,OAAO,qBAAqB,CAAC,UAAU,CAAC,CAAC;YAC3C,KAAK,UAAU,CAAC,OAAO;gBACrB,OAAO,qBAAqB,CAAC,UAAU,CAAC,CAAC;YAC3C,KAAK,UAAU,CAAC,IAAI;gBAClB,OAAO,kBAAkB,CAAC,UAAU,CAAC,CAAC;YACxC,KAAK,UAAU,CAAC,QAAQ;gBACtB,OAAO,sBAAsB,CAAC,UAAU,CAAC,CAAC;SAC7C;QACD,MAAM,IAAI,KAAK,CAAC,2BAA2B,UAAU,EAAE,CAAC,CAAC;IAC3D,CAAC;CACF,CACF,CAAC","sourcesContent":["import { provideAccountActionsWithCredential } from '@yuants/data-account';\nimport { Terminal } from '@yuants/protocol';\nimport { ICredential } from './api/private-api';\nimport { getAccountIds } from './accountInfos/uid';\nimport {\n getEarningAccountInfo,\n getFundingAccountInfo,\n getLoanAccountInfo,\n getStrategyAccountInfo,\n getTradingAccountInfo,\n} from './accountInfos';\n\nprovideAccountActionsWithCredential<ICredential>(\n Terminal.fromNodeEnv(),\n 'OKX',\n {\n type: 'object',\n required: ['access_key', 'secret_key', 'passphrase'],\n properties: {\n access_key: { type: 'string' },\n secret_key: { type: 'string' },\n passphrase: { type: 'string' },\n },\n },\n {\n listAccounts: async (credential) => {\n const accountIds = await getAccountIds(credential);\n if (!accountIds) throw new Error('Failed to get account IDs');\n return Object.values(accountIds).map((account_id) => ({ account_id }));\n },\n getAccountInfo: async (credential, account_id) => {\n const accountIds = await getAccountIds(credential);\n if (!accountIds) throw new Error('Failed to get account IDs');\n switch (account_id) {\n case accountIds.trading:\n return getTradingAccountInfo(credential);\n case accountIds.funding:\n return getFundingAccountInfo(credential);\n case accountIds.earning:\n return getEarningAccountInfo(credential);\n case accountIds.loan:\n return getLoanAccountInfo(credential);\n case accountIds.strategy:\n return getStrategyAccountInfo(credential);\n }\n throw new Error(`Unsupported account_id: ${account_id}`);\n },\n },\n);\n"]}
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import './account';
2
+ import './account-actions-with-credential';
2
3
  import './api-service';
3
4
  import './order';
4
5
  import './order-actions';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,CAAC;AACnB,OAAO,eAAe,CAAC;AACvB,OAAO,SAAS,CAAC;AACjB,OAAO,iBAAiB,CAAC;AACzB,OAAO,iCAAiC,CAAC;AACzC,OAAO,6BAA6B,CAAC;AACrC,OAAO,4BAA4B,CAAC;AACpC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,qBAAqB,CAAC;AAC7B,OAAO,YAAY,CAAC;AACpB,OAAO,oBAAoB,CAAC;AAC5B,OAAO,SAAS,CAAC;AACjB,OAAO,YAAY,CAAC","sourcesContent":["import './account';\nimport './api-service';\nimport './order';\nimport './order-actions';\nimport './order-actions-with-credential';\nimport './public-data/interest_rate';\nimport './public-data/market-order';\nimport './public-data/ohlc';\nimport './public-data/quote';\nimport './services';\nimport './strategy-account';\nimport './trade';\nimport './transfer';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,CAAC;AACnB,OAAO,mCAAmC,CAAC;AAC3C,OAAO,eAAe,CAAC;AACvB,OAAO,SAAS,CAAC;AACjB,OAAO,iBAAiB,CAAC;AACzB,OAAO,iCAAiC,CAAC;AACzC,OAAO,6BAA6B,CAAC;AACrC,OAAO,4BAA4B,CAAC;AACpC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,qBAAqB,CAAC;AAC7B,OAAO,YAAY,CAAC;AACpB,OAAO,oBAAoB,CAAC;AAC5B,OAAO,SAAS,CAAC;AACjB,OAAO,YAAY,CAAC","sourcesContent":["import './account';\nimport './account-actions-with-credential';\nimport './api-service';\nimport './order';\nimport './order-actions';\nimport './order-actions-with-credential';\nimport './public-data/interest_rate';\nimport './public-data/market-order';\nimport './public-data/ohlc';\nimport './public-data/quote';\nimport './services';\nimport './strategy-account';\nimport './trade';\nimport './transfer';\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=account-actions-with-credential.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"account-actions-with-credential.d.ts","sourceRoot":"","sources":["../src/account-actions-with-credential.ts"],"names":[],"mappings":""}
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const data_account_1 = require("@yuants/data-account");
4
+ const protocol_1 = require("@yuants/protocol");
5
+ const uid_1 = require("./accountInfos/uid");
6
+ const accountInfos_1 = require("./accountInfos");
7
+ (0, data_account_1.provideAccountActionsWithCredential)(protocol_1.Terminal.fromNodeEnv(), 'OKX', {
8
+ type: 'object',
9
+ required: ['access_key', 'secret_key', 'passphrase'],
10
+ properties: {
11
+ access_key: { type: 'string' },
12
+ secret_key: { type: 'string' },
13
+ passphrase: { type: 'string' },
14
+ },
15
+ }, {
16
+ listAccounts: async (credential) => {
17
+ const accountIds = await (0, uid_1.getAccountIds)(credential);
18
+ if (!accountIds)
19
+ throw new Error('Failed to get account IDs');
20
+ return Object.values(accountIds).map((account_id) => ({ account_id }));
21
+ },
22
+ getAccountInfo: async (credential, account_id) => {
23
+ const accountIds = await (0, uid_1.getAccountIds)(credential);
24
+ if (!accountIds)
25
+ throw new Error('Failed to get account IDs');
26
+ switch (account_id) {
27
+ case accountIds.trading:
28
+ return (0, accountInfos_1.getTradingAccountInfo)(credential);
29
+ case accountIds.funding:
30
+ return (0, accountInfos_1.getFundingAccountInfo)(credential);
31
+ case accountIds.earning:
32
+ return (0, accountInfos_1.getEarningAccountInfo)(credential);
33
+ case accountIds.loan:
34
+ return (0, accountInfos_1.getLoanAccountInfo)(credential);
35
+ case accountIds.strategy:
36
+ return (0, accountInfos_1.getStrategyAccountInfo)(credential);
37
+ }
38
+ throw new Error(`Unsupported account_id: ${account_id}`);
39
+ },
40
+ });
41
+ //# sourceMappingURL=account-actions-with-credential.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"account-actions-with-credential.js","sourceRoot":"","sources":["../src/account-actions-with-credential.ts"],"names":[],"mappings":";;AAAA,uDAA2E;AAC3E,+CAA4C;AAE5C,4CAAmD;AACnD,iDAMwB;AAExB,IAAA,kDAAmC,EACjC,mBAAQ,CAAC,WAAW,EAAE,EACtB,KAAK,EACL;IACE,IAAI,EAAE,QAAQ;IACd,QAAQ,EAAE,CAAC,YAAY,EAAE,YAAY,EAAE,YAAY,CAAC;IACpD,UAAU,EAAE;QACV,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAC9B,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAC9B,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;KAC/B;CACF,EACD;IACE,YAAY,EAAE,KAAK,EAAE,UAAU,EAAE,EAAE;QACjC,MAAM,UAAU,GAAG,MAAM,IAAA,mBAAa,EAAC,UAAU,CAAC,CAAC;QACnD,IAAI,CAAC,UAAU;YAAE,MAAM,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAC;QAC9D,OAAO,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,EAAE,UAAU,EAAE,CAAC,CAAC,CAAC;IACzE,CAAC;IACD,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,EAAE;QAC/C,MAAM,UAAU,GAAG,MAAM,IAAA,mBAAa,EAAC,UAAU,CAAC,CAAC;QACnD,IAAI,CAAC,UAAU;YAAE,MAAM,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAC;QAC9D,QAAQ,UAAU,EAAE;YAClB,KAAK,UAAU,CAAC,OAAO;gBACrB,OAAO,IAAA,oCAAqB,EAAC,UAAU,CAAC,CAAC;YAC3C,KAAK,UAAU,CAAC,OAAO;gBACrB,OAAO,IAAA,oCAAqB,EAAC,UAAU,CAAC,CAAC;YAC3C,KAAK,UAAU,CAAC,OAAO;gBACrB,OAAO,IAAA,oCAAqB,EAAC,UAAU,CAAC,CAAC;YAC3C,KAAK,UAAU,CAAC,IAAI;gBAClB,OAAO,IAAA,iCAAkB,EAAC,UAAU,CAAC,CAAC;YACxC,KAAK,UAAU,CAAC,QAAQ;gBACtB,OAAO,IAAA,qCAAsB,EAAC,UAAU,CAAC,CAAC;SAC7C;QACD,MAAM,IAAI,KAAK,CAAC,2BAA2B,UAAU,EAAE,CAAC,CAAC;IAC3D,CAAC;CACF,CACF,CAAC","sourcesContent":["import { provideAccountActionsWithCredential } from '@yuants/data-account';\nimport { Terminal } from '@yuants/protocol';\nimport { ICredential } from './api/private-api';\nimport { getAccountIds } from './accountInfos/uid';\nimport {\n getEarningAccountInfo,\n getFundingAccountInfo,\n getLoanAccountInfo,\n getStrategyAccountInfo,\n getTradingAccountInfo,\n} from './accountInfos';\n\nprovideAccountActionsWithCredential<ICredential>(\n Terminal.fromNodeEnv(),\n 'OKX',\n {\n type: 'object',\n required: ['access_key', 'secret_key', 'passphrase'],\n properties: {\n access_key: { type: 'string' },\n secret_key: { type: 'string' },\n passphrase: { type: 'string' },\n },\n },\n {\n listAccounts: async (credential) => {\n const accountIds = await getAccountIds(credential);\n if (!accountIds) throw new Error('Failed to get account IDs');\n return Object.values(accountIds).map((account_id) => ({ account_id }));\n },\n getAccountInfo: async (credential, account_id) => {\n const accountIds = await getAccountIds(credential);\n if (!accountIds) throw new Error('Failed to get account IDs');\n switch (account_id) {\n case accountIds.trading:\n return getTradingAccountInfo(credential);\n case accountIds.funding:\n return getFundingAccountInfo(credential);\n case accountIds.earning:\n return getEarningAccountInfo(credential);\n case accountIds.loan:\n return getLoanAccountInfo(credential);\n case accountIds.strategy:\n return getStrategyAccountInfo(credential);\n }\n throw new Error(`Unsupported account_id: ${account_id}`);\n },\n },\n);\n"]}
package/lib/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import './account';
2
+ import './account-actions-with-credential';
2
3
  import './api-service';
3
4
  import './order';
4
5
  import './order-actions';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,CAAC;AACnB,OAAO,eAAe,CAAC;AACvB,OAAO,SAAS,CAAC;AACjB,OAAO,iBAAiB,CAAC;AACzB,OAAO,iCAAiC,CAAC;AACzC,OAAO,6BAA6B,CAAC;AACrC,OAAO,4BAA4B,CAAC;AACpC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,qBAAqB,CAAC;AAC7B,OAAO,YAAY,CAAC;AACpB,OAAO,oBAAoB,CAAC;AAC5B,OAAO,SAAS,CAAC;AACjB,OAAO,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,CAAC;AACnB,OAAO,mCAAmC,CAAC;AAC3C,OAAO,eAAe,CAAC;AACvB,OAAO,SAAS,CAAC;AACjB,OAAO,iBAAiB,CAAC;AACzB,OAAO,iCAAiC,CAAC;AACzC,OAAO,6BAA6B,CAAC;AACrC,OAAO,4BAA4B,CAAC;AACpC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,qBAAqB,CAAC;AAC7B,OAAO,YAAY,CAAC;AACpB,OAAO,oBAAoB,CAAC;AAC5B,OAAO,SAAS,CAAC;AACjB,OAAO,YAAY,CAAC"}
package/lib/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  require("./account");
4
+ require("./account-actions-with-credential");
4
5
  require("./api-service");
5
6
  require("./order");
6
7
  require("./order-actions");
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,qBAAmB;AACnB,yBAAuB;AACvB,mBAAiB;AACjB,2BAAyB;AACzB,2CAAyC;AACzC,uCAAqC;AACrC,sCAAoC;AACpC,8BAA4B;AAC5B,+BAA6B;AAC7B,sBAAoB;AACpB,8BAA4B;AAC5B,mBAAiB;AACjB,sBAAoB","sourcesContent":["import './account';\nimport './api-service';\nimport './order';\nimport './order-actions';\nimport './order-actions-with-credential';\nimport './public-data/interest_rate';\nimport './public-data/market-order';\nimport './public-data/ohlc';\nimport './public-data/quote';\nimport './services';\nimport './strategy-account';\nimport './trade';\nimport './transfer';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,qBAAmB;AACnB,6CAA2C;AAC3C,yBAAuB;AACvB,mBAAiB;AACjB,2BAAyB;AACzB,2CAAyC;AACzC,uCAAqC;AACrC,sCAAoC;AACpC,8BAA4B;AAC5B,+BAA6B;AAC7B,sBAAoB;AACpB,8BAA4B;AAC5B,mBAAiB;AACjB,sBAAoB","sourcesContent":["import './account';\nimport './account-actions-with-credential';\nimport './api-service';\nimport './order';\nimport './order-actions';\nimport './order-actions-with-credential';\nimport './public-data/interest_rate';\nimport './public-data/market-order';\nimport './public-data/ohlc';\nimport './public-data/quote';\nimport './services';\nimport './strategy-account';\nimport './trade';\nimport './transfer';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuants/vendor-okx",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "bin": "lib/cli.js",
5
5
  "main": "lib/index.js",
6
6
  "files": [
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@yuants/protocol": "0.50.4",
13
13
  "@yuants/transfer": "0.2.33",
14
- "@yuants/data-account": "0.6.16",
14
+ "@yuants/data-account": "0.7.0",
15
15
  "@yuants/data-order": "0.5.0",
16
16
  "@yuants/utils": "0.11.0",
17
17
  "@yuants/cache": "0.3.0",
@@ -1,13 +1,14 @@
1
1
  {
2
- "apps/vendor-okx/CHANGELOG.json": "a6a2081e00bb6c0d8cbefa3eaefacff4e9872278",
3
- "apps/vendor-okx/CHANGELOG.md": "4ae1dacf973d2ace845988bdffe24abc8be16c95",
2
+ "apps/vendor-okx/CHANGELOG.json": "87ab1578052da827ca0572b23fd77343a01ec548",
3
+ "apps/vendor-okx/CHANGELOG.md": "28a1b5c6fe444063d5b777e2d0c7f91778639dee",
4
4
  "apps/vendor-okx/README.md": "68caeb8e383d77ece973cd70f4b167b86abb54c3",
5
5
  "apps/vendor-okx/api-extractor.json": "62f4fd324425b9a235f0c117975967aab09ced0c",
6
6
  "apps/vendor-okx/config/jest.config.json": "4bb17bde3ee911163a3edb36a6eb71491d80b1bd",
7
7
  "apps/vendor-okx/config/rig.json": "f6c7b5537dc77a3170ba9f008bae3b6c3ee11956",
8
8
  "apps/vendor-okx/config/typescript.json": "854907e8a821f2050f6533368db160c649c25348",
9
9
  "apps/vendor-okx/etc/vendor-okx.api.md": "92c54ccd547d2ad81ca6088158ca193e85c208df",
10
- "apps/vendor-okx/package.json": "97264f6d337148a4028a74fcaf8a0a53036ed584",
10
+ "apps/vendor-okx/package.json": "5537c245ac8b66301e70d195b30408423ef71c09",
11
+ "apps/vendor-okx/src/account-actions-with-credential.ts": "6b3f2a6f03112ca4d48ab7716f5830df2033272b",
11
12
  "apps/vendor-okx/src/account.ts": "c39c37b06fb5896acf18d0c2b715b6d01da2c0e4",
12
13
  "apps/vendor-okx/src/accountInfos/earning.ts": "fbf76a6c2010a371dfc3bdde81dc90ae572473ed",
13
14
  "apps/vendor-okx/src/accountInfos/funding.ts": "d9e4e1a104ec6350effc91838b5d9390bae34241",
@@ -21,7 +22,7 @@
21
22
  "apps/vendor-okx/src/api/private-api.ts": "73ab6b99249ebb73769e903cc356627eaf19b433",
22
23
  "apps/vendor-okx/src/api/public-api.ts": "05b9cddafd09b5c9f65ce4eaeab42832e7d60449",
23
24
  "apps/vendor-okx/src/cli.ts": "9bf6b5559a6c6f33da20e74cc6c5d702c60ec891",
24
- "apps/vendor-okx/src/index.ts": "1237215811691c4cafef2399e531610da73ce9f2",
25
+ "apps/vendor-okx/src/index.ts": "59493ae3757a3daca854330895f15fb0b18d2bc3",
25
26
  "apps/vendor-okx/src/order-actions-with-credential.ts": "f58b164c57a776db0fd0ad3a9f7197603ab2f66e",
26
27
  "apps/vendor-okx/src/order-actions.ts": "18907924c81ab679bf8a58142fcbc3addd160a94",
27
28
  "apps/vendor-okx/src/order.ts": "342f08dbc4a760e5f29bdaa1fe840872219f9ab5",
@@ -45,7 +46,7 @@
45
46
  "apps/vendor-okx/.rush/temp/shrinkwrap-deps.json": "d2bbb3cc7c98f79d7add8c772fbe32efcb48b7b7",
46
47
  "libraries/protocol/temp/package-deps.json": "35bc77333a1c85db1cd130579963e8cefa00f56c",
47
48
  "libraries/transfer/temp/package-deps.json": "708a4caf79d042cad56a39f0b00d399bca04af40",
48
- "libraries/data-account/temp/package-deps.json": "f10239e42ff14419c0d9eaf09424fdf68297e724",
49
+ "libraries/data-account/temp/package-deps.json": "23ce351fb7d34192c8885a00c1f0e8d49f592a9c",
49
50
  "libraries/data-order/temp/package-deps.json": "921c6745e9a502669524f7a7d276bff69c25491c",
50
51
  "libraries/utils/temp/package-deps.json": "c58f1ca8f498315d9a0219ca8c498299a41d297b",
51
52
  "libraries/cache/temp/package-deps.json": "49789a92426969daa31f0c956bb56bd783929765",