@grvt/client 1.6.17 → 1.6.19
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/interfaces/codegen/data.interface.d.ts +20 -8
- package/interfaces/codegen/enums/cluster-config-type.d.ts +2 -1
- package/interfaces/codegen/enums/cluster-config-type.js +4 -1
- package/interfaces/codegen/enums/position-margin-type.d.ts +1 -0
- package/interfaces/codegen/enums/position-margin-type.js +3 -0
- package/interfaces/codegen/enums/sub-account-trade-interval.d.ts +7 -0
- package/interfaces/codegen/enums/sub-account-trade-interval.js +20 -0
- package/interfaces/codegen/enums/time-interval.d.ts +2 -1
- package/interfaces/codegen/enums/time-interval.js +4 -1
- package/interfaces/codegen/schema-maps/api_account_performance_trend.js +2 -0
- package/interfaces/codegen/schema-maps/api_query_account_performance_trend_response.js +4 -2
- package/interfaces/codegen/schema-maps/api_snap_aggregated_account_summary.js +2 -20
- package/interfaces/codegen/schema-maps/query_first_vault_snapshots_request.d.ts +2 -0
- package/interfaces/codegen/schema-maps/query_first_vault_snapshots_request.js +12 -0
- package/interfaces/codegen/schema-maps/query_first_vault_snapshots_response.d.ts +2 -0
- package/interfaces/codegen/schema-maps/query_first_vault_snapshots_response.js +13 -0
- package/interfaces/codegen/schema-maps/query_latest_vault_snapshot_request.d.ts +2 -0
- package/interfaces/codegen/schema-maps/query_latest_vault_snapshot_request.js +12 -0
- package/interfaces/codegen/schema-maps/query_latest_vault_snapshots_response.d.ts +2 -0
- package/interfaces/codegen/schema-maps/query_latest_vault_snapshots_response.js +13 -0
- package/interfaces/codegen/schema-maps/snap_vault_summary_lite.d.ts +2 -0
- package/interfaces/codegen/schema-maps/snap_vault_summary_lite.js +16 -0
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ import type { ERewardEpochStatus } from './enums/reward-epoch-status.ts';
|
|
|
26
26
|
import type { ERewardProgramType } from './enums/reward-program-type.ts';
|
|
27
27
|
import type { ERewardSession } from './enums/reward-session.ts';
|
|
28
28
|
import type { ESource } from './enums/source.ts';
|
|
29
|
+
import type { ESubAccountTradeInterval } from './enums/sub-account-trade-interval.ts';
|
|
29
30
|
import type { ETimeInForce } from './enums/time-in-force.ts';
|
|
30
31
|
import type { ETimeInterval } from './enums/time-interval.ts';
|
|
31
32
|
import type { ETransactionType } from './enums/transaction-type.ts';
|
|
@@ -97,6 +98,7 @@ export interface IAggregatedAccountSummary {
|
|
|
97
98
|
}
|
|
98
99
|
export interface IApiAccountPerformanceTrend {
|
|
99
100
|
start_interval?: string;
|
|
101
|
+
end_interval?: string;
|
|
100
102
|
aggregated_pnl?: string;
|
|
101
103
|
investment_pnl?: string;
|
|
102
104
|
}
|
|
@@ -887,6 +889,7 @@ export interface IApiQueryAccountPerformanceTrendRequest {
|
|
|
887
889
|
}
|
|
888
890
|
export interface IApiQueryAccountPerformanceTrendResponse {
|
|
889
891
|
result?: IApiAccountPerformanceTrend[];
|
|
892
|
+
interval?: ESubAccountTradeInterval;
|
|
890
893
|
}
|
|
891
894
|
export interface IApiQueryAccountTodayPerformanceResponse {
|
|
892
895
|
aggregated_pnl?: string;
|
|
@@ -1109,15 +1112,7 @@ export interface IApiSettlementPriceResponse {
|
|
|
1109
1112
|
export interface IApiSnapAggregatedAccountSummary {
|
|
1110
1113
|
event_time?: string;
|
|
1111
1114
|
start_interval?: string;
|
|
1112
|
-
main_account_id?: string;
|
|
1113
1115
|
total_equity?: string;
|
|
1114
|
-
spot_balances?: ISpotBalance[];
|
|
1115
|
-
vault_investments?: IVaultInvestment[];
|
|
1116
|
-
funding_account_balance?: string;
|
|
1117
|
-
total_sub_account_balance?: string;
|
|
1118
|
-
total_vault_investments_balance?: string;
|
|
1119
|
-
funding_account_equity?: string;
|
|
1120
|
-
total_sub_account_equity?: string;
|
|
1121
1116
|
}
|
|
1122
1117
|
export interface IApiSocializedLossStatusResponse {
|
|
1123
1118
|
is_active?: boolean;
|
|
@@ -1797,6 +1792,11 @@ export interface ILPSubAccountSnapshot {
|
|
|
1797
1792
|
export interface IListRewardEpochResponse {
|
|
1798
1793
|
result?: IAdminRewardEpoch[];
|
|
1799
1794
|
}
|
|
1795
|
+
export interface ILiteSnapVaultSummary {
|
|
1796
|
+
start_interval?: string;
|
|
1797
|
+
vault_id?: string;
|
|
1798
|
+
share_price?: string;
|
|
1799
|
+
}
|
|
1800
1800
|
export interface ILiveFundingRateComparisonEntry {
|
|
1801
1801
|
instrument?: string;
|
|
1802
1802
|
next_funding_time?: string;
|
|
@@ -1998,6 +1998,12 @@ export interface IQueryFindEpochRequest {
|
|
|
1998
1998
|
export interface IQueryFindEpochResponse {
|
|
1999
1999
|
epoch?: IEpoch;
|
|
2000
2000
|
}
|
|
2001
|
+
export interface IQueryFirstVaultSnapshotsRequest {
|
|
2002
|
+
vault_i_ds?: string[];
|
|
2003
|
+
}
|
|
2004
|
+
export interface IQueryFirstVaultSnapshotsResponse {
|
|
2005
|
+
result?: ILiteSnapVaultSummary[];
|
|
2006
|
+
}
|
|
2001
2007
|
export interface IQueryGetLatestLPSnapshotResponse {
|
|
2002
2008
|
snapshot?: ILPSnapshot;
|
|
2003
2009
|
}
|
|
@@ -2013,6 +2019,12 @@ export interface IQueryLatestSubAccountSummaryRequest {
|
|
|
2013
2019
|
export interface IQueryLatestSubAccountSummaryResponse {
|
|
2014
2020
|
result?: ISnapSubAccountSummary;
|
|
2015
2021
|
}
|
|
2022
|
+
export interface IQueryLatestVaultSnapshotRequest {
|
|
2023
|
+
vault_i_ds?: string[];
|
|
2024
|
+
}
|
|
2025
|
+
export interface IQueryLatestVaultSnapshotsResponse {
|
|
2026
|
+
result?: ILiteSnapVaultSummary[];
|
|
2027
|
+
}
|
|
2016
2028
|
export interface IQueryListSubAccountHistoryRequest {
|
|
2017
2029
|
sub_account_id?: string;
|
|
2018
2030
|
start_time?: string;
|
|
@@ -62,6 +62,7 @@ export declare enum EClusterConfigType {
|
|
|
62
62
|
FLAG_ENABLE_SET_SUB_ACCOUNT_POSITION_MARGIN_CONFIG = "FLAG_ENABLE_SET_SUB_ACCOUNT_POSITION_MARGIN_CONFIG",
|
|
63
63
|
FLAG_ENABLE_ADD_ISOLATED_POSITION_MARGIN = "FLAG_ENABLE_ADD_ISOLATED_POSITION_MARGIN",
|
|
64
64
|
FLAG_BUILDER_CODE = "FLAG_BUILDER_CODE",
|
|
65
|
-
FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION = "FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION"
|
|
65
|
+
FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION = "FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION",
|
|
66
|
+
FLAG_FIX_CROSS_LIQUIDATION_POST_TRADE = "FLAG_FIX_CROSS_LIQUIDATION_POST_TRADE"
|
|
66
67
|
}
|
|
67
68
|
export declare const EClusterConfigTypeInt: Record<EClusterConfigType, number>;
|
|
@@ -131,6 +131,8 @@ var EClusterConfigType;
|
|
|
131
131
|
EClusterConfigType["FLAG_BUILDER_CODE"] = "FLAG_BUILDER_CODE";
|
|
132
132
|
// Flag to enable adjust is reducing position
|
|
133
133
|
EClusterConfigType["FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION"] = "FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION";
|
|
134
|
+
// Flag to fix cross liquidation post trade
|
|
135
|
+
EClusterConfigType["FLAG_FIX_CROSS_LIQUIDATION_POST_TRADE"] = "FLAG_FIX_CROSS_LIQUIDATION_POST_TRADE";
|
|
134
136
|
})(EClusterConfigType || (exports.EClusterConfigType = EClusterConfigType = {}));
|
|
135
137
|
exports.EClusterConfigTypeInt = Object.freeze({
|
|
136
138
|
[EClusterConfigType.CLIENT_TIER]: 1,
|
|
@@ -196,5 +198,6 @@ exports.EClusterConfigTypeInt = Object.freeze({
|
|
|
196
198
|
[EClusterConfigType.FLAG_ENABLE_SET_SUB_ACCOUNT_POSITION_MARGIN_CONFIG]: 61,
|
|
197
199
|
[EClusterConfigType.FLAG_ENABLE_ADD_ISOLATED_POSITION_MARGIN]: 62,
|
|
198
200
|
[EClusterConfigType.FLAG_BUILDER_CODE]: 63,
|
|
199
|
-
[EClusterConfigType.FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION]: 64
|
|
201
|
+
[EClusterConfigType.FLAG_ENABLE_ADJUST_IS_REDUCING_POSITION]: 64,
|
|
202
|
+
[EClusterConfigType.FLAG_FIX_CROSS_LIQUIDATION_POST_TRADE]: 65
|
|
200
203
|
});
|
|
@@ -3,9 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.EPositionMarginTypeInt = exports.EPositionMarginType = void 0;
|
|
4
4
|
var EPositionMarginType;
|
|
5
5
|
(function (EPositionMarginType) {
|
|
6
|
+
// Isolated Margin Mode: each position is allocated a fixed amount of collateral
|
|
7
|
+
EPositionMarginType["ISOLATED"] = "ISOLATED";
|
|
6
8
|
// Cross Margin Mode: uses all available funds in your account as collateral across all cross margin positions
|
|
7
9
|
EPositionMarginType["CROSS"] = "CROSS";
|
|
8
10
|
})(EPositionMarginType || (exports.EPositionMarginType = EPositionMarginType = {}));
|
|
9
11
|
exports.EPositionMarginTypeInt = Object.freeze({
|
|
12
|
+
[EPositionMarginType.ISOLATED]: 1,
|
|
10
13
|
[EPositionMarginType.CROSS]: 2
|
|
11
14
|
});
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ESubAccountTradeIntervalInt = exports.ESubAccountTradeInterval = void 0;
|
|
4
|
+
var ESubAccountTradeInterval;
|
|
5
|
+
(function (ESubAccountTradeInterval) {
|
|
6
|
+
// 1 month
|
|
7
|
+
ESubAccountTradeInterval["SAT_1_MO"] = "SAT_1_MO";
|
|
8
|
+
// 1 day
|
|
9
|
+
ESubAccountTradeInterval["SAT_1_D"] = "SAT_1_D";
|
|
10
|
+
// 1 hour
|
|
11
|
+
ESubAccountTradeInterval["SAT_1_H"] = "SAT_1_H";
|
|
12
|
+
// 4 hour
|
|
13
|
+
ESubAccountTradeInterval["SAT_4_H"] = "SAT_4_H";
|
|
14
|
+
})(ESubAccountTradeInterval || (exports.ESubAccountTradeInterval = ESubAccountTradeInterval = {}));
|
|
15
|
+
exports.ESubAccountTradeIntervalInt = Object.freeze({
|
|
16
|
+
[ESubAccountTradeInterval.SAT_1_MO]: 1,
|
|
17
|
+
[ESubAccountTradeInterval.SAT_1_D]: 2,
|
|
18
|
+
[ESubAccountTradeInterval.SAT_1_H]: 3,
|
|
19
|
+
[ESubAccountTradeInterval.SAT_4_H]: 4
|
|
20
|
+
});
|
|
@@ -3,6 +3,7 @@ export declare enum ETimeInterval {
|
|
|
3
3
|
INTERVAL_7_D = "INTERVAL_7_D",
|
|
4
4
|
INTERVAL_30_D = "INTERVAL_30_D",
|
|
5
5
|
INTERVAL_90_D = "INTERVAL_90_D",
|
|
6
|
-
INTERVAL_LIFETIME = "INTERVAL_LIFETIME"
|
|
6
|
+
INTERVAL_LIFETIME = "INTERVAL_LIFETIME",
|
|
7
|
+
INTERVAL_14_D = "INTERVAL_14_D"
|
|
7
8
|
}
|
|
8
9
|
export declare const ETimeIntervalInt: Record<ETimeInterval, number>;
|
|
@@ -14,11 +14,14 @@ var ETimeInterval;
|
|
|
14
14
|
ETimeInterval["INTERVAL_90_D"] = "INTERVAL_90_D";
|
|
15
15
|
// Lifetime
|
|
16
16
|
ETimeInterval["INTERVAL_LIFETIME"] = "INTERVAL_LIFETIME";
|
|
17
|
+
// 14 days
|
|
18
|
+
ETimeInterval["INTERVAL_14_D"] = "INTERVAL_14_D";
|
|
17
19
|
})(ETimeInterval || (exports.ETimeInterval = ETimeInterval = {}));
|
|
18
20
|
exports.ETimeIntervalInt = Object.freeze({
|
|
19
21
|
[ETimeInterval.INTERVAL_1_D]: 1,
|
|
20
22
|
[ETimeInterval.INTERVAL_7_D]: 2,
|
|
21
23
|
[ETimeInterval.INTERVAL_30_D]: 3,
|
|
22
24
|
[ETimeInterval.INTERVAL_90_D]: 4,
|
|
23
|
-
[ETimeInterval.INTERVAL_LIFETIME]: 5
|
|
25
|
+
[ETimeInterval.INTERVAL_LIFETIME]: 5,
|
|
26
|
+
[ETimeInterval.INTERVAL_14_D]: 6
|
|
24
27
|
});
|
|
@@ -5,11 +5,13 @@ exports.API_ACCOUNT_PERFORMANCE_TREND_MAP = void 0;
|
|
|
5
5
|
exports.API_ACCOUNT_PERFORMANCE_TREND_MAP = Object.freeze({
|
|
6
6
|
FULL_TO_LITE: {
|
|
7
7
|
start_interval: 'si',
|
|
8
|
+
end_interval: 'ei',
|
|
8
9
|
aggregated_pnl: 'ap',
|
|
9
10
|
investment_pnl: 'ip'
|
|
10
11
|
},
|
|
11
12
|
LITE_TO_FULL: {
|
|
12
13
|
si: 'start_interval',
|
|
14
|
+
ei: 'end_interval',
|
|
13
15
|
ap: 'aggregated_pnl',
|
|
14
16
|
ip: 'investment_pnl'
|
|
15
17
|
}
|
|
@@ -5,9 +5,11 @@ const api_account_performance_trend_1 = require("./api_account_performance_trend
|
|
|
5
5
|
// Schema map for the 'API_QUERY_ACCOUNT_PERFORMANCE_TREND_RESPONSE' struct.
|
|
6
6
|
exports.API_QUERY_ACCOUNT_PERFORMANCE_TREND_RESPONSE_MAP = Object.freeze({
|
|
7
7
|
FULL_TO_LITE: {
|
|
8
|
-
result: ['r', [api_account_performance_trend_1.API_ACCOUNT_PERFORMANCE_TREND_MAP.FULL_TO_LITE]]
|
|
8
|
+
result: ['r', [api_account_performance_trend_1.API_ACCOUNT_PERFORMANCE_TREND_MAP.FULL_TO_LITE]],
|
|
9
|
+
interval: 'i'
|
|
9
10
|
},
|
|
10
11
|
LITE_TO_FULL: {
|
|
11
|
-
r: ['result', [api_account_performance_trend_1.API_ACCOUNT_PERFORMANCE_TREND_MAP.LITE_TO_FULL]]
|
|
12
|
+
r: ['result', [api_account_performance_trend_1.API_ACCOUNT_PERFORMANCE_TREND_MAP.LITE_TO_FULL]],
|
|
13
|
+
i: 'interval'
|
|
12
14
|
}
|
|
13
15
|
});
|
|
@@ -1,34 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.API_SNAP_AGGREGATED_ACCOUNT_SUMMARY_MAP = void 0;
|
|
4
|
-
const api_spot_balance_1 = require("./api_spot_balance");
|
|
5
|
-
const vault_investment_1 = require("./vault_investment");
|
|
6
4
|
// Schema map for the 'API_SNAP_AGGREGATED_ACCOUNT_SUMMARY' struct.
|
|
7
5
|
exports.API_SNAP_AGGREGATED_ACCOUNT_SUMMARY_MAP = Object.freeze({
|
|
8
6
|
FULL_TO_LITE: {
|
|
9
7
|
event_time: 'et',
|
|
10
8
|
start_interval: 'si',
|
|
11
|
-
|
|
12
|
-
total_equity: 'te',
|
|
13
|
-
spot_balances: ['sb', [api_spot_balance_1.SPOT_BALANCE_MAP.FULL_TO_LITE]],
|
|
14
|
-
vault_investments: ['vi', [vault_investment_1.VAULT_INVESTMENT_MAP.FULL_TO_LITE]],
|
|
15
|
-
funding_account_balance: 'fa',
|
|
16
|
-
total_sub_account_balance: 'ts',
|
|
17
|
-
total_vault_investments_balance: 'tv',
|
|
18
|
-
funding_account_equity: 'fa1',
|
|
19
|
-
total_sub_account_equity: 'ts1'
|
|
9
|
+
total_equity: 'te'
|
|
20
10
|
},
|
|
21
11
|
LITE_TO_FULL: {
|
|
22
12
|
et: 'event_time',
|
|
23
13
|
si: 'start_interval',
|
|
24
|
-
|
|
25
|
-
te: 'total_equity',
|
|
26
|
-
sb: ['spot_balances', [api_spot_balance_1.SPOT_BALANCE_MAP.LITE_TO_FULL]],
|
|
27
|
-
vi: ['vault_investments', [vault_investment_1.VAULT_INVESTMENT_MAP.LITE_TO_FULL]],
|
|
28
|
-
fa: 'funding_account_balance',
|
|
29
|
-
ts: 'total_sub_account_balance',
|
|
30
|
-
tv: 'total_vault_investments_balance',
|
|
31
|
-
fa1: 'funding_account_equity',
|
|
32
|
-
ts1: 'total_sub_account_equity'
|
|
14
|
+
te: 'total_equity'
|
|
33
15
|
}
|
|
34
16
|
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QUERY_FIRST_VAULT_SNAPSHOTS_REQUEST_MAP = void 0;
|
|
4
|
+
// Schema map for the 'QUERY_FIRST_VAULT_SNAPSHOTS_REQUEST' struct.
|
|
5
|
+
exports.QUERY_FIRST_VAULT_SNAPSHOTS_REQUEST_MAP = Object.freeze({
|
|
6
|
+
FULL_TO_LITE: {
|
|
7
|
+
vault_i_ds: 'vi'
|
|
8
|
+
},
|
|
9
|
+
LITE_TO_FULL: {
|
|
10
|
+
vi: 'vault_i_ds'
|
|
11
|
+
}
|
|
12
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QUERY_FIRST_VAULT_SNAPSHOTS_RESPONSE_MAP = void 0;
|
|
4
|
+
const snap_vault_summary_lite_1 = require("./snap_vault_summary_lite");
|
|
5
|
+
// Schema map for the 'QUERY_FIRST_VAULT_SNAPSHOTS_RESPONSE' struct.
|
|
6
|
+
exports.QUERY_FIRST_VAULT_SNAPSHOTS_RESPONSE_MAP = Object.freeze({
|
|
7
|
+
FULL_TO_LITE: {
|
|
8
|
+
result: ['r', [snap_vault_summary_lite_1.LITE_SNAP_VAULT_SUMMARY_MAP.FULL_TO_LITE]]
|
|
9
|
+
},
|
|
10
|
+
LITE_TO_FULL: {
|
|
11
|
+
r: ['result', [snap_vault_summary_lite_1.LITE_SNAP_VAULT_SUMMARY_MAP.LITE_TO_FULL]]
|
|
12
|
+
}
|
|
13
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QUERY_LATEST_VAULT_SNAPSHOT_REQUEST_MAP = void 0;
|
|
4
|
+
// Schema map for the 'QUERY_LATEST_VAULT_SNAPSHOT_REQUEST' struct.
|
|
5
|
+
exports.QUERY_LATEST_VAULT_SNAPSHOT_REQUEST_MAP = Object.freeze({
|
|
6
|
+
FULL_TO_LITE: {
|
|
7
|
+
vault_i_ds: 'vi'
|
|
8
|
+
},
|
|
9
|
+
LITE_TO_FULL: {
|
|
10
|
+
vi: 'vault_i_ds'
|
|
11
|
+
}
|
|
12
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QUERY_LATEST_VAULT_SNAPSHOTS_RESPONSE_MAP = void 0;
|
|
4
|
+
const snap_vault_summary_lite_1 = require("./snap_vault_summary_lite");
|
|
5
|
+
// Schema map for the 'QUERY_LATEST_VAULT_SNAPSHOTS_RESPONSE' struct.
|
|
6
|
+
exports.QUERY_LATEST_VAULT_SNAPSHOTS_RESPONSE_MAP = Object.freeze({
|
|
7
|
+
FULL_TO_LITE: {
|
|
8
|
+
result: ['r', [snap_vault_summary_lite_1.LITE_SNAP_VAULT_SUMMARY_MAP.FULL_TO_LITE]]
|
|
9
|
+
},
|
|
10
|
+
LITE_TO_FULL: {
|
|
11
|
+
r: ['result', [snap_vault_summary_lite_1.LITE_SNAP_VAULT_SUMMARY_MAP.LITE_TO_FULL]]
|
|
12
|
+
}
|
|
13
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LITE_SNAP_VAULT_SUMMARY_MAP = void 0;
|
|
4
|
+
// Schema map for the 'LITE_SNAP_VAULT_SUMMARY' struct.
|
|
5
|
+
exports.LITE_SNAP_VAULT_SUMMARY_MAP = Object.freeze({
|
|
6
|
+
FULL_TO_LITE: {
|
|
7
|
+
start_interval: 'si',
|
|
8
|
+
vault_id: 'vi',
|
|
9
|
+
share_price: 'sp'
|
|
10
|
+
},
|
|
11
|
+
LITE_TO_FULL: {
|
|
12
|
+
si: 'start_interval',
|
|
13
|
+
vi: 'vault_id',
|
|
14
|
+
sp: 'share_price'
|
|
15
|
+
}
|
|
16
|
+
});
|