@yuants/vendor-gate 0.4.27 → 0.5.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.
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/services/accounts/profile.js +5 -26
- package/dist/services/accounts/profile.js.map +1 -1
- package/dist/services/accounts/unified.js +8 -25
- package/dist/services/accounts/unified.js.map +1 -1
- package/dist/services/markets/product.js +0 -3
- package/dist/services/markets/product.js.map +1 -1
- package/dist/services/markets/quote.js.map +1 -1
- package/dist/services/quotes.js +51 -0
- package/dist/services/quotes.js.map +1 -0
- package/dist/services/transfer.js +132 -106
- package/dist/services/transfer.js.map +1 -1
- package/lib/index.d.ts +4 -3
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +4 -3
- package/lib/index.js.map +1 -1
- package/lib/services/accounts/profile.d.ts +0 -8
- package/lib/services/accounts/profile.d.ts.map +1 -1
- package/lib/services/accounts/profile.js +6 -28
- package/lib/services/accounts/profile.js.map +1 -1
- package/lib/services/accounts/unified.d.ts +1 -1
- package/lib/services/accounts/unified.d.ts.map +1 -1
- package/lib/services/accounts/unified.js +8 -25
- package/lib/services/accounts/unified.js.map +1 -1
- package/lib/services/markets/product.d.ts +0 -1
- package/lib/services/markets/product.d.ts.map +1 -1
- package/lib/services/markets/product.js +1 -4
- package/lib/services/markets/product.js.map +1 -1
- package/lib/services/markets/quote.js.map +1 -1
- package/lib/services/quotes.d.ts +2 -0
- package/lib/services/quotes.d.ts.map +1 -0
- package/lib/services/quotes.js +53 -0
- package/lib/services/quotes.js.map +1 -0
- package/lib/services/transfer.d.ts +0 -1
- package/lib/services/transfer.js +131 -107
- package/lib/services/transfer.js.map +1 -1
- package/package.json +2 -2
- package/temp/package-deps.json +11 -10
package/lib/services/transfer.js
CHANGED
|
@@ -1,109 +1,133 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
2
|
+
// import { Terminal } from '@yuants/protocol';
|
|
3
|
+
// import { addAccountTransferAddress } from '@yuants/transfer';
|
|
4
|
+
// import { formatTime } from '@yuants/utils';
|
|
5
|
+
// import {
|
|
6
|
+
// getDepositAddress,
|
|
7
|
+
// getDepositHistory,
|
|
8
|
+
// getSubAccountList,
|
|
9
|
+
// getWithdrawalHistory,
|
|
10
|
+
// ICredential,
|
|
11
|
+
// postWalletTransfer,
|
|
12
|
+
// postWithdrawals,
|
|
13
|
+
// } from '../api/private-api';
|
|
14
|
+
// import { resolveAccountProfile } from './accounts/profile';
|
|
15
|
+
// import { getDefaultCredential } from './default-credential';
|
|
16
|
+
// const credential = getDefaultCredential();
|
|
17
|
+
// const registerInternalTransfer = (
|
|
18
|
+
// terminal: Terminal,
|
|
19
|
+
// credential: ICredential,
|
|
20
|
+
// accountId: string,
|
|
21
|
+
// direction: 'spot_to_future' | 'future_to_spot',
|
|
22
|
+
// network_id: string,
|
|
23
|
+
// ) => {
|
|
24
|
+
// const params =
|
|
25
|
+
// direction === 'spot_to_future'
|
|
26
|
+
// ? {
|
|
27
|
+
// account_id: accountId,
|
|
28
|
+
// from: 'spot',
|
|
29
|
+
// to: 'futures',
|
|
30
|
+
// address: 'SPOT',
|
|
31
|
+
// }
|
|
32
|
+
// : {
|
|
33
|
+
// account_id: accountId,
|
|
34
|
+
// from: 'futures',
|
|
35
|
+
// to: 'spot',
|
|
36
|
+
// address: 'USDT_FUTURE',
|
|
37
|
+
// };
|
|
38
|
+
// addAccountTransferAddress({
|
|
39
|
+
// terminal,
|
|
40
|
+
// account_id: params.account_id,
|
|
41
|
+
// network_id,
|
|
42
|
+
// currency: 'USDT',
|
|
43
|
+
// address: params.address,
|
|
44
|
+
// onApply: {
|
|
45
|
+
// INIT: async (order) => {
|
|
46
|
+
// const transferResult = await postWalletTransfer(credential, {
|
|
47
|
+
// currency: 'USDT',
|
|
48
|
+
// from: params.from,
|
|
49
|
+
// to: params.to,
|
|
50
|
+
// amount: `${order.current_amount}`,
|
|
51
|
+
// settle: 'usdt',
|
|
52
|
+
// });
|
|
53
|
+
// if (transferResult.tx_id !== undefined) {
|
|
54
|
+
// return { state: 'COMPLETE', transaction_id: transferResult.tx_id };
|
|
55
|
+
// }
|
|
56
|
+
// return { state: 'INIT', message: JSON.stringify(transferResult) };
|
|
57
|
+
// },
|
|
58
|
+
// },
|
|
59
|
+
// onEval: async (transferOrder) => ({
|
|
60
|
+
// state: 'COMPLETE',
|
|
61
|
+
// received_amount: transferOrder.current_amount,
|
|
62
|
+
// }),
|
|
63
|
+
// });
|
|
64
|
+
// };
|
|
65
|
+
// if (credential) {
|
|
66
|
+
// (async () => {
|
|
67
|
+
// const terminal = Terminal.fromNodeEnv();
|
|
68
|
+
// const accountIds = await resolveAccountProfile(credential);
|
|
69
|
+
// const ACCOUNT_INTERNAL_NETWORK_ID = `Gate/${accountIds.uid}/ACCOUNT_INTERNAL`;
|
|
70
|
+
// registerInternalTransfer(
|
|
71
|
+
// terminal,
|
|
72
|
+
// credential,
|
|
73
|
+
// accountIds.future,
|
|
74
|
+
// 'future_to_spot',
|
|
75
|
+
// ACCOUNT_INTERNAL_NETWORK_ID,
|
|
76
|
+
// );
|
|
77
|
+
// const subAccountsResult = await getSubAccountList(credential, { type: '0' });
|
|
78
|
+
// const isMainAccount = Array.isArray(subAccountsResult);
|
|
79
|
+
// if (isMainAccount) {
|
|
80
|
+
// const depositAddressRes = await getDepositAddress(credential, { currency: 'USDT' });
|
|
81
|
+
// console.info(formatTime(Date.now()), 'DepositAddress', JSON.stringify(depositAddressRes));
|
|
82
|
+
// const addresses = depositAddressRes.multichain_addresses.filter((item) => item.chain === 'TRX');
|
|
83
|
+
// for (const address of addresses) {
|
|
84
|
+
// addAccountTransferAddress({
|
|
85
|
+
// terminal,
|
|
86
|
+
// account_id: accountIds.spot,
|
|
87
|
+
// network_id: 'TRC20',
|
|
88
|
+
// currency: 'USDT',
|
|
89
|
+
// address: address.address,
|
|
90
|
+
// onApply: {
|
|
91
|
+
// INIT: async (transferOrder) => {
|
|
92
|
+
// const transferResult = await postWithdrawals(credential, {
|
|
93
|
+
// amount: `${transferOrder.current_amount}`,
|
|
94
|
+
// currency: 'USDT',
|
|
95
|
+
// address: transferOrder.current_rx_address!,
|
|
96
|
+
// chain: 'TRX',
|
|
97
|
+
// });
|
|
98
|
+
// const { txid, withdraw_order_id } = transferResult;
|
|
99
|
+
// if (txid && txid.length > 0) {
|
|
100
|
+
// return { state: 'COMPLETE', transaction_id: txid };
|
|
101
|
+
// }
|
|
102
|
+
// return { state: 'PENDING', context: withdraw_order_id };
|
|
103
|
+
// },
|
|
104
|
+
// PENDING: async (transferOrder) => {
|
|
105
|
+
// const wdId = transferOrder.current_tx_context;
|
|
106
|
+
// const withdrawalRecordsResult = await getWithdrawalHistory(credential, {});
|
|
107
|
+
// const withdrawalRecord = withdrawalRecordsResult.find(
|
|
108
|
+
// (item) => item.withdraw_order_id === wdId,
|
|
109
|
+
// );
|
|
110
|
+
// if (withdrawalRecord && withdrawalRecord.txid && withdrawalRecord.txid.length > 0) {
|
|
111
|
+
// return { state: 'COMPLETE', transaction_id: withdrawalRecord.txid };
|
|
112
|
+
// }
|
|
113
|
+
// return { state: 'PENDING', context: wdId };
|
|
114
|
+
// },
|
|
115
|
+
// },
|
|
116
|
+
// onEval: async (transferOrder) => {
|
|
117
|
+
// const checkResult = await getDepositHistory(credential, { currency: 'USDT' });
|
|
118
|
+
// const depositRecord = checkResult.find(
|
|
119
|
+
// (item) => item.txid === transferOrder.current_transaction_id,
|
|
120
|
+
// );
|
|
121
|
+
// if (depositRecord && depositRecord.status === 'DONE') {
|
|
122
|
+
// return { state: 'COMPLETE', received_amount: Number(depositRecord.amount) };
|
|
123
|
+
// }
|
|
124
|
+
// return { state: 'PENDING' };
|
|
125
|
+
// },
|
|
126
|
+
// });
|
|
127
|
+
// }
|
|
128
|
+
// }
|
|
129
|
+
// })().catch((error) => {
|
|
130
|
+
// console.error(formatTime(Date.now()), 'GateTransferInitFailed', error);
|
|
131
|
+
// });
|
|
132
|
+
// }
|
|
109
133
|
//# sourceMappingURL=transfer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transfer.js","sourceRoot":"","sources":["../../src/services/transfer.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"transfer.js","sourceRoot":"","sources":["../../src/services/transfer.ts"],"names":[],"mappings":";AAAA,+CAA+C;AAC/C,gEAAgE;AAChE,8CAA8C;AAC9C,WAAW;AACX,uBAAuB;AACvB,uBAAuB;AACvB,uBAAuB;AACvB,0BAA0B;AAC1B,iBAAiB;AACjB,wBAAwB;AACxB,qBAAqB;AACrB,+BAA+B;AAC/B,8DAA8D;AAC9D,+DAA+D;AAE/D,6CAA6C;AAE7C,qCAAqC;AACrC,wBAAwB;AACxB,6BAA6B;AAC7B,uBAAuB;AACvB,oDAAoD;AACpD,wBAAwB;AACxB,SAAS;AACT,mBAAmB;AACnB,qCAAqC;AACrC,YAAY;AACZ,mCAAmC;AACnC,0BAA0B;AAC1B,2BAA2B;AAC3B,6BAA6B;AAC7B,YAAY;AACZ,YAAY;AACZ,mCAAmC;AACnC,6BAA6B;AAC7B,wBAAwB;AACxB,oCAAoC;AACpC,aAAa;AAEb,gCAAgC;AAChC,gBAAgB;AAChB,qCAAqC;AACrC,kBAAkB;AAClB,wBAAwB;AACxB,+BAA+B;AAC/B,iBAAiB;AACjB,iCAAiC;AACjC,wEAAwE;AACxE,8BAA8B;AAC9B,+BAA+B;AAC/B,2BAA2B;AAC3B,+CAA+C;AAC/C,4BAA4B;AAC5B,cAAc;AACd,oDAAoD;AACpD,gFAAgF;AAChF,YAAY;AACZ,6EAA6E;AAC7E,WAAW;AACX,SAAS;AACT,0CAA0C;AAC1C,2BAA2B;AAC3B,uDAAuD;AACvD,UAAU;AACV,QAAQ;AACR,KAAK;AAEL,oBAAoB;AACpB,mBAAmB;AACnB,+CAA+C;AAC/C,kEAAkE;AAClE,qFAAqF;AAErF,gCAAgC;AAChC,kBAAkB;AAClB,oBAAoB;AACpB,2BAA2B;AAC3B,0BAA0B;AAC1B,qCAAqC;AACrC,SAAS;AAET,oFAAoF;AACpF,8DAA8D;AAC9D,2BAA2B;AAC3B,6FAA6F;AAC7F,mGAAmG;AACnG,yGAAyG;AACzG,2CAA2C;AAC3C,sCAAsC;AACtC,sBAAsB;AACtB,yCAAyC;AACzC,iCAAiC;AACjC,8BAA8B;AAC9B,sCAAsC;AACtC,uBAAuB;AACvB,+CAA+C;AAC/C,2EAA2E;AAC3E,6DAA6D;AAC7D,oCAAoC;AACpC,8DAA8D;AAC9D,gCAAgC;AAChC,oBAAoB;AACpB,oEAAoE;AACpE,+CAA+C;AAC/C,sEAAsE;AACtE,kBAAkB;AAClB,yEAAyE;AACzE,iBAAiB;AACjB,kDAAkD;AAClD,+DAA+D;AAC/D,4FAA4F;AAC5F,uEAAuE;AACvE,6DAA6D;AAC7D,mBAAmB;AACnB,qGAAqG;AACrG,uFAAuF;AACvF,kBAAkB;AAClB,4DAA4D;AAC5D,iBAAiB;AACjB,eAAe;AACf,+CAA+C;AAC/C,6FAA6F;AAC7F,sDAAsD;AACtD,8EAA8E;AAC9E,iBAAiB;AACjB,sEAAsE;AACtE,6FAA6F;AAC7F,gBAAgB;AAChB,2CAA2C;AAC3C,eAAe;AACf,cAAc;AACd,UAAU;AACV,QAAQ;AACR,4BAA4B;AAC5B,8EAA8E;AAC9E,QAAQ;AACR,IAAI","sourcesContent":["// import { Terminal } from '@yuants/protocol';\n// import { addAccountTransferAddress } from '@yuants/transfer';\n// import { formatTime } from '@yuants/utils';\n// import {\n// getDepositAddress,\n// getDepositHistory,\n// getSubAccountList,\n// getWithdrawalHistory,\n// ICredential,\n// postWalletTransfer,\n// postWithdrawals,\n// } from '../api/private-api';\n// import { resolveAccountProfile } from './accounts/profile';\n// import { getDefaultCredential } from './default-credential';\n\n// const credential = getDefaultCredential();\n\n// const registerInternalTransfer = (\n// terminal: Terminal,\n// credential: ICredential,\n// accountId: string,\n// direction: 'spot_to_future' | 'future_to_spot',\n// network_id: string,\n// ) => {\n// const params =\n// direction === 'spot_to_future'\n// ? {\n// account_id: accountId,\n// from: 'spot',\n// to: 'futures',\n// address: 'SPOT',\n// }\n// : {\n// account_id: accountId,\n// from: 'futures',\n// to: 'spot',\n// address: 'USDT_FUTURE',\n// };\n\n// addAccountTransferAddress({\n// terminal,\n// account_id: params.account_id,\n// network_id,\n// currency: 'USDT',\n// address: params.address,\n// onApply: {\n// INIT: async (order) => {\n// const transferResult = await postWalletTransfer(credential, {\n// currency: 'USDT',\n// from: params.from,\n// to: params.to,\n// amount: `${order.current_amount}`,\n// settle: 'usdt',\n// });\n// if (transferResult.tx_id !== undefined) {\n// return { state: 'COMPLETE', transaction_id: transferResult.tx_id };\n// }\n// return { state: 'INIT', message: JSON.stringify(transferResult) };\n// },\n// },\n// onEval: async (transferOrder) => ({\n// state: 'COMPLETE',\n// received_amount: transferOrder.current_amount,\n// }),\n// });\n// };\n\n// if (credential) {\n// (async () => {\n// const terminal = Terminal.fromNodeEnv();\n// const accountIds = await resolveAccountProfile(credential);\n// const ACCOUNT_INTERNAL_NETWORK_ID = `Gate/${accountIds.uid}/ACCOUNT_INTERNAL`;\n\n// registerInternalTransfer(\n// terminal,\n// credential,\n// accountIds.future,\n// 'future_to_spot',\n// ACCOUNT_INTERNAL_NETWORK_ID,\n// );\n\n// const subAccountsResult = await getSubAccountList(credential, { type: '0' });\n// const isMainAccount = Array.isArray(subAccountsResult);\n// if (isMainAccount) {\n// const depositAddressRes = await getDepositAddress(credential, { currency: 'USDT' });\n// console.info(formatTime(Date.now()), 'DepositAddress', JSON.stringify(depositAddressRes));\n// const addresses = depositAddressRes.multichain_addresses.filter((item) => item.chain === 'TRX');\n// for (const address of addresses) {\n// addAccountTransferAddress({\n// terminal,\n// account_id: accountIds.spot,\n// network_id: 'TRC20',\n// currency: 'USDT',\n// address: address.address,\n// onApply: {\n// INIT: async (transferOrder) => {\n// const transferResult = await postWithdrawals(credential, {\n// amount: `${transferOrder.current_amount}`,\n// currency: 'USDT',\n// address: transferOrder.current_rx_address!,\n// chain: 'TRX',\n// });\n// const { txid, withdraw_order_id } = transferResult;\n// if (txid && txid.length > 0) {\n// return { state: 'COMPLETE', transaction_id: txid };\n// }\n// return { state: 'PENDING', context: withdraw_order_id };\n// },\n// PENDING: async (transferOrder) => {\n// const wdId = transferOrder.current_tx_context;\n// const withdrawalRecordsResult = await getWithdrawalHistory(credential, {});\n// const withdrawalRecord = withdrawalRecordsResult.find(\n// (item) => item.withdraw_order_id === wdId,\n// );\n// if (withdrawalRecord && withdrawalRecord.txid && withdrawalRecord.txid.length > 0) {\n// return { state: 'COMPLETE', transaction_id: withdrawalRecord.txid };\n// }\n// return { state: 'PENDING', context: wdId };\n// },\n// },\n// onEval: async (transferOrder) => {\n// const checkResult = await getDepositHistory(credential, { currency: 'USDT' });\n// const depositRecord = checkResult.find(\n// (item) => item.txid === transferOrder.current_transaction_id,\n// );\n// if (depositRecord && depositRecord.status === 'DONE') {\n// return { state: 'COMPLETE', received_amount: Number(depositRecord.amount) };\n// }\n// return { state: 'PENDING' };\n// },\n// });\n// }\n// }\n// })().catch((error) => {\n// console.error(formatTime(Date.now()), 'GateTransferInitFailed', error);\n// });\n// }\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuants/vendor-gate",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"lib",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@yuants/utils": "0.14.0",
|
|
19
19
|
"@yuants/data-series": "0.3.52",
|
|
20
20
|
"@yuants/data-interest-rate": "0.1.48",
|
|
21
|
-
"@yuants/exchange": "0.
|
|
21
|
+
"@yuants/exchange": "0.6.0",
|
|
22
22
|
"@yuants/data-quote": "0.3.0",
|
|
23
23
|
"rxjs": "~7.5.6"
|
|
24
24
|
},
|
package/temp/package-deps.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"apps/vendor-gate/AGENTS.md": "59be8d734f8a91ae5f7377e7c688f1fccb8641b7",
|
|
3
|
-
"apps/vendor-gate/CHANGELOG.json": "
|
|
4
|
-
"apps/vendor-gate/CHANGELOG.md": "
|
|
3
|
+
"apps/vendor-gate/CHANGELOG.json": "e2378932c9aecdfea979acd5d1b1b01ef4740a0b",
|
|
4
|
+
"apps/vendor-gate/CHANGELOG.md": "0adec1b9a2411e7b43cac87513a701b3e0154e96",
|
|
5
5
|
"apps/vendor-gate/README.md": "ea5ee3a61cd87d9104d729902dfaccac9b9913e0",
|
|
6
6
|
"apps/vendor-gate/SESSION_NOTES.md": "eefeaa9e02b039bde7180b6a479fc3fa0e72321c",
|
|
7
7
|
"apps/vendor-gate/api-extractor.json": "62f4fd324425b9a235f0c117975967aab09ced0c",
|
|
@@ -9,23 +9,24 @@
|
|
|
9
9
|
"apps/vendor-gate/config/rig.json": "f6c7b5537dc77a3170ba9f008bae3b6c3ee11956",
|
|
10
10
|
"apps/vendor-gate/config/typescript.json": "854907e8a821f2050f6533368db160c649c25348",
|
|
11
11
|
"apps/vendor-gate/etc/vendor-gate.api.md": "970682cd589432de553cc5cee2a0abe73814a515",
|
|
12
|
-
"apps/vendor-gate/package.json": "
|
|
12
|
+
"apps/vendor-gate/package.json": "5b7b9b0a3313034045daeec70d583390fba58d40",
|
|
13
13
|
"apps/vendor-gate/src/api/http-client.ts": "97e0e70454c6072f388f90442ec4afabe6feb93b",
|
|
14
14
|
"apps/vendor-gate/src/api/private-api.ts": "7a3e2f74881651ee940d23d34025deab07abe3f0",
|
|
15
15
|
"apps/vendor-gate/src/api/public-api.ts": "ee1a246a8833a7d9bb06e829b09a3bd80e0d86bf",
|
|
16
16
|
"apps/vendor-gate/src/api/rate-limiter.ts": "047c51029ffcaf98190cfd04d96816bbced5fa7c",
|
|
17
|
-
"apps/vendor-gate/src/index.ts": "
|
|
18
|
-
"apps/vendor-gate/src/services/accounts/profile.ts": "
|
|
19
|
-
"apps/vendor-gate/src/services/accounts/unified.ts": "
|
|
17
|
+
"apps/vendor-gate/src/index.ts": "6d36c17dd95c5b03031a056d53a4a9dc249f6a97",
|
|
18
|
+
"apps/vendor-gate/src/services/accounts/profile.ts": "1420e22dfce97f741106abccd3bb769db34dfb5c",
|
|
19
|
+
"apps/vendor-gate/src/services/accounts/unified.ts": "2955a652857c54404f2c14142ef31d2ad67a05e0",
|
|
20
20
|
"apps/vendor-gate/src/services/default-credential.ts": "b9ffa157b818148450bfaaf4851597e91901190c",
|
|
21
21
|
"apps/vendor-gate/src/services/exchange.ts": "3a8fbaecaf7ea0c5a03f3a61f21fb8d2d4588394",
|
|
22
22
|
"apps/vendor-gate/src/services/markets/interest-rate.ts": "e669eb1d664448f309bb062907b273157d1c111e",
|
|
23
|
-
"apps/vendor-gate/src/services/markets/product.ts": "
|
|
24
|
-
"apps/vendor-gate/src/services/markets/quote.ts": "
|
|
23
|
+
"apps/vendor-gate/src/services/markets/product.ts": "1e62a06379a7833936ca1385bf639b5be5d5e07e",
|
|
24
|
+
"apps/vendor-gate/src/services/markets/quote.ts": "a213aa6505f0619e456403c764ee14d9d7cf3931",
|
|
25
25
|
"apps/vendor-gate/src/services/orders/cancelOrder.ts": "7dfdd30eaac89742f1050bf0fb47d8053ccecb28",
|
|
26
26
|
"apps/vendor-gate/src/services/orders/listOrders.ts": "cc59845c6ab9acb6b0513866aff56031a68328c2",
|
|
27
27
|
"apps/vendor-gate/src/services/orders/submitOrder.ts": "321398ad18bb4012d2a40e4f704bc827ccfaff93",
|
|
28
|
-
"apps/vendor-gate/src/services/
|
|
28
|
+
"apps/vendor-gate/src/services/quotes.ts": "7fa15e4e61197737cce040bbf4faadb968abbfbe",
|
|
29
|
+
"apps/vendor-gate/src/services/transfer.ts": "a1a7df99d74d5301b4f36ee9c168079874e73a40",
|
|
29
30
|
"apps/vendor-gate/tsconfig.json": "81da8f78196974b5d15da0edb6b2d9f48641063c",
|
|
30
31
|
"apps/vendor-gate/.rush/temp/shrinkwrap-deps.json": "9aa98bfacea2eaf6aa77491dda2ea7632a0ce879",
|
|
31
32
|
"libraries/cache/temp/package-deps.json": "a4afa15e6462983f9d3735d31dc1ed8a683fb4dc",
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
"libraries/utils/temp/package-deps.json": "6d58e9b325e8d16de8a878c32010f626b12a01da",
|
|
39
40
|
"libraries/data-series/temp/package-deps.json": "e12b4c97d2b8c8b21d1a033cdd3683e01f81401a",
|
|
40
41
|
"libraries/data-interest-rate/temp/package-deps.json": "cef1e1cb0116ad593c24635684e0cbf03488d67c",
|
|
41
|
-
"libraries/exchange/temp/package-deps.json": "
|
|
42
|
+
"libraries/exchange/temp/package-deps.json": "8fdfc5722901308d3c49c438eed674f35508c062",
|
|
42
43
|
"libraries/data-quote/temp/package-deps.json": "d5fd89abda84b46f6c14925eda0c381c36b94dfe",
|
|
43
44
|
"libraries/extension/temp/package-deps.json": "9569c553c2f9a7d50b70d8f101fc2d3825aaccb9",
|
|
44
45
|
"tools/toolkit/temp/package-deps.json": "23e053490eb8feade23e4d45de4e54883e322711"
|