@deriverse/kit 1.0.24 → 1.0.26
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 +59 -44
- package/dist/instruction_models.d.ts +6 -4
- package/dist/instruction_models.js +61 -39
- package/dist/logs_models.d.ts +33 -1
- package/dist/logs_models.js +47 -1
- package/dist/structure_models.d.ts +151 -124
- package/dist/structure_models.js +155 -128
- package/package.json +1 -1
|
@@ -30,7 +30,6 @@ export declare enum AccountType {
|
|
|
30
30
|
spotAsksTree = 15,
|
|
31
31
|
spotBidOrders = 16,
|
|
32
32
|
spotBidsTree = 14,
|
|
33
|
-
spotClientAccounts = 11,
|
|
34
33
|
spotClientInfos = 12,
|
|
35
34
|
spotClientInfos2 = 13,
|
|
36
35
|
spotDayCandles = 21,
|
|
@@ -41,7 +40,6 @@ export declare enum AccountType {
|
|
|
41
40
|
perpAsksTree = 37,
|
|
42
41
|
perpBidOrders = 38,
|
|
43
42
|
perpBidsTree = 39,
|
|
44
|
-
perpClientAccounts = 40,
|
|
45
43
|
perpClientInfos = 41,
|
|
46
44
|
perpClientInfos2 = 42,
|
|
47
45
|
perpClientInfos3 = 43,
|
|
@@ -51,8 +49,7 @@ export declare enum AccountType {
|
|
|
51
49
|
perpMaps = 47,
|
|
52
50
|
perpLongPxTree = 48,
|
|
53
51
|
perpShortPxTree = 49,
|
|
54
|
-
perpRebalanceTimeTree = 50
|
|
55
|
-
perpPriorityTree = 51
|
|
52
|
+
perpRebalanceTimeTree = 50
|
|
56
53
|
}
|
|
57
54
|
export declare class ClientCommunityRecordModel {
|
|
58
55
|
static readonly LENGTH: number;
|
|
@@ -60,13 +57,15 @@ export declare class ClientCommunityRecordModel {
|
|
|
60
57
|
static readonly OFFSET_DIVIDENDS_VALUE = 8;
|
|
61
58
|
static readonly OFFSET_FEES_PREPAYMENT = 16;
|
|
62
59
|
static readonly OFFSET_FEES_RATIO = 24;
|
|
63
|
-
static readonly
|
|
64
|
-
static readonly
|
|
65
|
-
static readonly
|
|
60
|
+
static readonly OFFSET_REF_REWARDS = 32;
|
|
61
|
+
static readonly OFFSET_REF_PAYMENTS = 40;
|
|
62
|
+
static readonly OFFSET_LAST_FEES_PREPAYMENT_TIME = 48;
|
|
63
|
+
static readonly OFFSET_CRNCY_TOKEN_ID = 52;
|
|
66
64
|
dividendsRate: number;
|
|
67
65
|
dividendsValue: number;
|
|
68
66
|
feesPrepayment: number;
|
|
69
67
|
feesRatio: number;
|
|
68
|
+
refRewards: number;
|
|
70
69
|
refPayments: number;
|
|
71
70
|
lastFeesPrepaymentTime: number;
|
|
72
71
|
crncyTokenId: number;
|
|
@@ -121,13 +120,19 @@ export declare class CommunityAccountHeaderModel {
|
|
|
121
120
|
static readonly OFFSET_VOTING_END_TIME = 96;
|
|
122
121
|
static readonly OFFSET_SPOT_FEE_RATE = 100;
|
|
123
122
|
static readonly OFFSET_PERP_FEE_RATE = 104;
|
|
124
|
-
static readonly
|
|
125
|
-
static readonly
|
|
126
|
-
static readonly
|
|
127
|
-
static readonly
|
|
128
|
-
static readonly
|
|
129
|
-
static readonly
|
|
130
|
-
static readonly
|
|
123
|
+
static readonly OFFSET_SPOT_POOL_RATIO = 108;
|
|
124
|
+
static readonly OFFSET_MARGIN_CALL_PENALTY_RATE = 112;
|
|
125
|
+
static readonly OFFSET_FEES_PREPAYMENT_FOR_MAX_DISCOUNT = 116;
|
|
126
|
+
static readonly OFFSET_MAX_DISCOUNT = 120;
|
|
127
|
+
static readonly OFFSET_RESERVED_VALUE1 = 124;
|
|
128
|
+
static readonly OFFSET_RESERVED_VALUE2 = 128;
|
|
129
|
+
static readonly OFFSET_RESERVED_VALUE3 = 132;
|
|
130
|
+
static readonly OFFSET_RESERVED_VALUE4 = 136;
|
|
131
|
+
static readonly OFFSET_RESERVED_VALUE5 = 140;
|
|
132
|
+
static readonly OFFSET_RESERVED_VALUE6 = 144;
|
|
133
|
+
static readonly OFFSET_RESERVED_VALUE7 = 148;
|
|
134
|
+
static readonly OFFSET_RESERVED_VALUE8 = 152;
|
|
135
|
+
static readonly OFFSET_COUNT = 156;
|
|
131
136
|
tag: number;
|
|
132
137
|
version: number;
|
|
133
138
|
drvsTokens: number;
|
|
@@ -145,12 +150,18 @@ export declare class CommunityAccountHeaderModel {
|
|
|
145
150
|
votingEndTime: number;
|
|
146
151
|
spotFeeRate: number;
|
|
147
152
|
perpFeeRate: number;
|
|
148
|
-
futuresFeeRate: number;
|
|
149
|
-
optionsFeeRate: number;
|
|
150
153
|
spotPoolRatio: number;
|
|
151
|
-
optionsPoolRatio: number;
|
|
152
154
|
marginCallPenaltyRate: number;
|
|
153
155
|
feesPrepaymentForMaxDiscount: number;
|
|
156
|
+
maxDiscount: number;
|
|
157
|
+
reservedValue1: number;
|
|
158
|
+
reservedValue2: number;
|
|
159
|
+
reservedValue3: number;
|
|
160
|
+
reservedValue4: number;
|
|
161
|
+
reservedValue5: number;
|
|
162
|
+
reservedValue6: number;
|
|
163
|
+
reservedValue7: number;
|
|
164
|
+
reservedValue8: number;
|
|
154
165
|
count: number;
|
|
155
166
|
static fromBuffer(data: Base64EncodedDataResponse, offset?: number): CommunityAccountHeaderModel;
|
|
156
167
|
}
|
|
@@ -205,11 +216,9 @@ export declare class PdfAccountHeaderModel {
|
|
|
205
216
|
export declare class OperatorModel {
|
|
206
217
|
static readonly LENGTH: number;
|
|
207
218
|
static readonly OFFSET_OPERATOR_ADDRESS = 0;
|
|
208
|
-
static readonly
|
|
209
|
-
static readonly
|
|
210
|
-
static readonly OFFSET_RESERVED = 68;
|
|
219
|
+
static readonly OFFSET_VERSION = 32;
|
|
220
|
+
static readonly OFFSET_RESERVED = 36;
|
|
211
221
|
operatorAddress: Address<any>;
|
|
212
|
-
rootAddress: Address<any>;
|
|
213
222
|
version: number;
|
|
214
223
|
reserved: number;
|
|
215
224
|
static fromBuffer(data: Base64EncodedDataResponse, offset?: number): OperatorModel;
|
|
@@ -274,7 +283,7 @@ export declare class InstrAccountHeaderModel {
|
|
|
274
283
|
static readonly LENGTH: number;
|
|
275
284
|
static readonly OFFSET_TAG = 0;
|
|
276
285
|
static readonly OFFSET_VERSION = 4;
|
|
277
|
-
static readonly
|
|
286
|
+
static readonly OFFSET_INSTR_ID = 8;
|
|
278
287
|
static readonly OFFSET_ASSET_TOKEN_ID = 12;
|
|
279
288
|
static readonly OFFSET_CRNCY_TOKEN_ID = 16;
|
|
280
289
|
static readonly OFFSET_MASK = 20;
|
|
@@ -322,92 +331,95 @@ export declare class InstrAccountHeaderModel {
|
|
|
322
331
|
static readonly OFFSET_BEST_BID = 352;
|
|
323
332
|
static readonly OFFSET_BEST_ASK = 360;
|
|
324
333
|
static readonly OFFSET_FIXING_PX = 368;
|
|
325
|
-
static readonly
|
|
326
|
-
static readonly
|
|
327
|
-
static readonly
|
|
328
|
-
static readonly
|
|
329
|
-
static readonly
|
|
330
|
-
static readonly
|
|
331
|
-
static readonly
|
|
332
|
-
static readonly
|
|
333
|
-
static readonly
|
|
334
|
-
static readonly
|
|
335
|
-
static readonly
|
|
336
|
-
static readonly
|
|
337
|
-
static readonly
|
|
338
|
-
static readonly
|
|
339
|
-
static readonly
|
|
340
|
-
static readonly
|
|
341
|
-
static readonly
|
|
342
|
-
static readonly
|
|
343
|
-
static readonly
|
|
344
|
-
static readonly
|
|
345
|
-
static readonly
|
|
346
|
-
static readonly
|
|
347
|
-
static readonly
|
|
348
|
-
static readonly
|
|
349
|
-
static readonly
|
|
350
|
-
static readonly
|
|
351
|
-
static readonly
|
|
352
|
-
static readonly
|
|
353
|
-
static readonly
|
|
354
|
-
static readonly
|
|
355
|
-
static readonly
|
|
356
|
-
static readonly
|
|
357
|
-
static readonly
|
|
358
|
-
static readonly
|
|
359
|
-
static readonly
|
|
360
|
-
static readonly
|
|
361
|
-
static readonly
|
|
362
|
-
static readonly
|
|
363
|
-
static readonly
|
|
364
|
-
static readonly
|
|
365
|
-
static readonly
|
|
366
|
-
static readonly
|
|
367
|
-
static readonly
|
|
368
|
-
static readonly
|
|
369
|
-
static readonly
|
|
370
|
-
static readonly
|
|
371
|
-
static readonly
|
|
372
|
-
static readonly
|
|
373
|
-
static readonly
|
|
374
|
-
static readonly
|
|
375
|
-
static readonly
|
|
376
|
-
static readonly
|
|
377
|
-
static readonly
|
|
378
|
-
static readonly
|
|
379
|
-
static readonly
|
|
380
|
-
static readonly
|
|
381
|
-
static readonly
|
|
382
|
-
static readonly
|
|
383
|
-
static readonly
|
|
384
|
-
static readonly
|
|
385
|
-
static readonly
|
|
386
|
-
static readonly
|
|
387
|
-
static readonly
|
|
388
|
-
static readonly
|
|
389
|
-
static readonly
|
|
390
|
-
static readonly
|
|
391
|
-
static readonly
|
|
392
|
-
static readonly
|
|
393
|
-
static readonly
|
|
394
|
-
static readonly
|
|
395
|
-
static readonly
|
|
396
|
-
static readonly
|
|
397
|
-
static readonly
|
|
398
|
-
static readonly
|
|
399
|
-
static readonly
|
|
400
|
-
static readonly
|
|
401
|
-
static readonly
|
|
402
|
-
static readonly
|
|
403
|
-
static readonly
|
|
404
|
-
static readonly
|
|
405
|
-
static readonly
|
|
406
|
-
static readonly
|
|
407
|
-
static readonly
|
|
334
|
+
static readonly OFFSET_VARIANCE = 376;
|
|
335
|
+
static readonly OFFSET_AVG_SPREAD = 384;
|
|
336
|
+
static readonly OFFSET_LAST_SPREAD = 392;
|
|
337
|
+
static readonly OFFSET_LAST_SPREAD_TIME = 400;
|
|
338
|
+
static readonly OFFSET_TOTAL_SPREAD_PERIOD = 404;
|
|
339
|
+
static readonly OFFSET_LAST_CLOSE = 408;
|
|
340
|
+
static readonly OFFSET_DAY_ASSET_TOKENS = 416;
|
|
341
|
+
static readonly OFFSET_DAY_CRNCY_TOKENS = 424;
|
|
342
|
+
static readonly OFFSET_DAY_LOW = 432;
|
|
343
|
+
static readonly OFFSET_DAY_HIGH = 440;
|
|
344
|
+
static readonly OFFSET_PREV_DAY_ASSET_TOKENS = 448;
|
|
345
|
+
static readonly OFFSET_PREV_DAY_CRNCY_TOKENS = 456;
|
|
346
|
+
static readonly OFFSET_ALLTIME_ASSET_TOKENS = 464;
|
|
347
|
+
static readonly OFFSET_ALLTIME_CRNCY_TOKENS = 472;
|
|
348
|
+
static readonly OFFSET_DAY_TRADES = 480;
|
|
349
|
+
static readonly OFFSET_PREV_DAY_TRADES = 484;
|
|
350
|
+
static readonly OFFSET_LP_DAY_TRADES = 488;
|
|
351
|
+
static readonly OFFSET_LP_PREV_DAY_TRADES = 492;
|
|
352
|
+
static readonly OFFSET_ALLTIME_TRADES = 496;
|
|
353
|
+
static readonly OFFSET_DEC_FACTOR = 504;
|
|
354
|
+
static readonly OFFSET_PERP_CLIENTS_COUNT = 512;
|
|
355
|
+
static readonly OFFSET_PERP_SLOT = 516;
|
|
356
|
+
static readonly OFFSET_PERP_TIME = 520;
|
|
357
|
+
static readonly OFFSET_PERP_FUNDING_RATE_SLOT = 524;
|
|
358
|
+
static readonly OFFSET_PERP_FUNDING_RATE_TIME = 528;
|
|
359
|
+
static readonly OFFSET_PERP_LONG_PX_TREE_NODES_COUNT = 532;
|
|
360
|
+
static readonly OFFSET_PERP_LONG_PX_TREE_ENTRY = 536;
|
|
361
|
+
static readonly OFFSET_PERP_SHORT_PX_TREE_NODES_COUNT = 540;
|
|
362
|
+
static readonly OFFSET_PERP_SHORT_PX_TREE_ENTRY = 544;
|
|
363
|
+
static readonly OFFSET_PERP_REBALANCE_TIME_TREE_NODES_COUNT = 548;
|
|
364
|
+
static readonly OFFSET_PERP_REBALANCE_TIME_TREE_ENTRY = 552;
|
|
365
|
+
static readonly OFFSET_PERP_BIDS_TREE_NODES_COUNT = 556;
|
|
366
|
+
static readonly OFFSET_PERP_BIDS_TREE_LINES_ENTRY = 560;
|
|
367
|
+
static readonly OFFSET_PERP_BIDS_TREE_ORDERS_ENTRY = 564;
|
|
368
|
+
static readonly OFFSET_PERP_ASKS_TREE_NODES_COUNT = 568;
|
|
369
|
+
static readonly OFFSET_PERP_ASKS_TREE_LINES_ENTRY = 572;
|
|
370
|
+
static readonly OFFSET_PERP_ASKS_TREE_ORDERS_ENTRY = 576;
|
|
371
|
+
static readonly OFFSET_PERP_BID_LINES_BEGIN = 580;
|
|
372
|
+
static readonly OFFSET_PERP_BID_LINES_END = 584;
|
|
373
|
+
static readonly OFFSET_PERP_BID_LINES_COUNT = 588;
|
|
374
|
+
static readonly OFFSET_PERP_ASK_LINES_BEGIN = 592;
|
|
375
|
+
static readonly OFFSET_PERP_ASK_LINES_END = 596;
|
|
376
|
+
static readonly OFFSET_PERP_ASK_LINES_COUNT = 600;
|
|
377
|
+
static readonly OFFSET_PERP_BID_ORDERS_COUNT = 604;
|
|
378
|
+
static readonly OFFSET_PERP_ASK_ORDERS_COUNT = 608;
|
|
379
|
+
static readonly OFFSET_PERP_DAY_TRADES = 612;
|
|
380
|
+
static readonly OFFSET_PERP_PREV_DAY_TRADES = 616;
|
|
381
|
+
static readonly OFFSET_RESERVED = 620;
|
|
382
|
+
static readonly OFFSET_PERP_ALLTIME_TRADES = 624;
|
|
383
|
+
static readonly OFFSET_PERP_SPOT_PRICE_FOR_WITHDROWAL = 632;
|
|
384
|
+
static readonly OFFSET_PERP_SOC_LOSS_LONG_RATE = 640;
|
|
385
|
+
static readonly OFFSET_PERP_SOC_LOSS_SHORT_RATE = 648;
|
|
386
|
+
static readonly OFFSET_PERP_OPEN_INT = 656;
|
|
387
|
+
static readonly OFFSET_PERP_PRICE_DELTA = 664;
|
|
388
|
+
static readonly OFFSET_PERP_FUNDING_RATE = 672;
|
|
389
|
+
static readonly OFFSET_PERP_FUNDING_FUNDS = 680;
|
|
390
|
+
static readonly OFFSET_PERP_SOC_LOSS_FUNDS = 688;
|
|
391
|
+
static readonly OFFSET_PERP_INSURANCE_FUND = 696;
|
|
392
|
+
static readonly OFFSET_PERP_LAST_CLOSE = 704;
|
|
393
|
+
static readonly OFFSET_PERP_LAST_ASSET_TOKENS = 712;
|
|
394
|
+
static readonly OFFSET_PERP_LAST_CRNCY_TOKENS = 720;
|
|
395
|
+
static readonly OFFSET_PERP_LAST_PX = 728;
|
|
396
|
+
static readonly OFFSET_PERP_BEST_BID = 736;
|
|
397
|
+
static readonly OFFSET_PERP_BEST_ASK = 744;
|
|
398
|
+
static readonly OFFSET_PERP_DAY_ASSET_TOKENS = 752;
|
|
399
|
+
static readonly OFFSET_PERP_DAY_CRNCY_TOKENS = 760;
|
|
400
|
+
static readonly OFFSET_PERP_DAY_LOW = 768;
|
|
401
|
+
static readonly OFFSET_PERP_DAY_HIGH = 776;
|
|
402
|
+
static readonly OFFSET_PERP_PREV_DAY_ASSET_TOKENS = 784;
|
|
403
|
+
static readonly OFFSET_PERP_PREV_DAY_CRNCY_TOKENS = 792;
|
|
404
|
+
static readonly OFFSET_PERP_ALLTIME_ASSET_TOKENS = 800;
|
|
405
|
+
static readonly OFFSET_PERP_ALLTIME_CRNCY_TOKENS = 808;
|
|
406
|
+
static readonly OFFSET_MAX_LEVERAGE = 816;
|
|
407
|
+
static readonly OFFSET_DAY_VOLATILITY = 824;
|
|
408
|
+
static readonly OFFSET_LIQUIDATION_THRESHOLD = 832;
|
|
409
|
+
static readonly OFFSET_RESERVED_VALUE1 = 840;
|
|
410
|
+
static readonly OFFSET_RESERVED_VALUE2 = 848;
|
|
411
|
+
static readonly OFFSET_RESERVED_VALUE3 = 856;
|
|
412
|
+
static readonly OFFSET_RESERVED_VALUE4 = 864;
|
|
413
|
+
static readonly OFFSET_RESERVED_VALUE5 = 872;
|
|
414
|
+
static readonly OFFSET_RESERVED_VALUE6 = 880;
|
|
415
|
+
static readonly OFFSET_RESERVED_VALUE7 = 888;
|
|
416
|
+
static readonly OFFSET_RESERVED_VALUE8 = 896;
|
|
417
|
+
static readonly OFFSET_RESERVED_VALUE9 = 904;
|
|
418
|
+
static readonly OFFSET_RESERVED_VALUE10 = 912;
|
|
419
|
+
static readonly OFFSET_SEATS_RESERVE = 920;
|
|
408
420
|
tag: number;
|
|
409
421
|
version: number;
|
|
410
|
-
|
|
422
|
+
instrId: number;
|
|
411
423
|
assetTokenId: number;
|
|
412
424
|
crncyTokenId: number;
|
|
413
425
|
mask: number;
|
|
@@ -455,7 +467,6 @@ export declare class InstrAccountHeaderModel {
|
|
|
455
467
|
bestBid: number;
|
|
456
468
|
bestAsk: number;
|
|
457
469
|
fixingPx: number;
|
|
458
|
-
lastHourPx: number;
|
|
459
470
|
variance: number;
|
|
460
471
|
avgSpread: number;
|
|
461
472
|
lastSpread: number;
|
|
@@ -476,14 +487,6 @@ export declare class InstrAccountHeaderModel {
|
|
|
476
487
|
lpPrevDayTrades: number;
|
|
477
488
|
alltimeTrades: number;
|
|
478
489
|
decFactor: number;
|
|
479
|
-
optionsPoolTokenId: number;
|
|
480
|
-
optionsPoolClientId: number;
|
|
481
|
-
optionsPoolSupply: number;
|
|
482
|
-
optionsPoolExposure: number;
|
|
483
|
-
optionsPoolEstPayoff: number;
|
|
484
|
-
optionsPoolFinalPayoff: number;
|
|
485
|
-
optionsPoolFunds: number;
|
|
486
|
-
optionsPoolTokenPx: number;
|
|
487
490
|
perpClientsCount: number;
|
|
488
491
|
perpSlot: number;
|
|
489
492
|
perpTime: number;
|
|
@@ -495,8 +498,6 @@ export declare class InstrAccountHeaderModel {
|
|
|
495
498
|
perpShortPxTreeEntry: number;
|
|
496
499
|
perpRebalanceTimeTreeNodesCount: number;
|
|
497
500
|
perpRebalanceTimeTreeEntry: number;
|
|
498
|
-
perpPriorityTreeNodesCount: number;
|
|
499
|
-
perpPriorityTreeEntry: number;
|
|
500
501
|
perpBidsTreeNodesCount: number;
|
|
501
502
|
perpBidsTreeLinesEntry: number;
|
|
502
503
|
perpBidsTreeOrdersEntry: number;
|
|
@@ -538,6 +539,20 @@ export declare class InstrAccountHeaderModel {
|
|
|
538
539
|
perpPrevDayCrncyTokens: number;
|
|
539
540
|
perpAlltimeAssetTokens: number;
|
|
540
541
|
perpAlltimeCrncyTokens: number;
|
|
542
|
+
maxLeverage: number;
|
|
543
|
+
dayVolatility: number;
|
|
544
|
+
liquidationThreshold: number;
|
|
545
|
+
reservedValue1: number;
|
|
546
|
+
reservedValue2: number;
|
|
547
|
+
reservedValue3: number;
|
|
548
|
+
reservedValue4: number;
|
|
549
|
+
reservedValue5: number;
|
|
550
|
+
reservedValue6: number;
|
|
551
|
+
reservedValue7: number;
|
|
552
|
+
reservedValue8: number;
|
|
553
|
+
reservedValue9: number;
|
|
554
|
+
reservedValue10: number;
|
|
555
|
+
seatsReserve: number;
|
|
541
556
|
static fromBuffer(data: Base64EncodedDataResponse, offset?: number): InstrAccountHeaderModel;
|
|
542
557
|
}
|
|
543
558
|
export declare class RootStateModel {
|
|
@@ -770,11 +785,17 @@ export declare class ClientPrimaryAccountHeaderModel {
|
|
|
770
785
|
static readonly OFFSET_SPOT_TRADES = 264;
|
|
771
786
|
static readonly OFFSET_PERP_TRADES = 268;
|
|
772
787
|
static readonly OFFSET_LP_TRADES = 272;
|
|
773
|
-
static readonly
|
|
774
|
-
static readonly
|
|
775
|
-
static readonly
|
|
776
|
-
static readonly
|
|
777
|
-
static readonly
|
|
788
|
+
static readonly OFFSET_POINTS = 276;
|
|
789
|
+
static readonly OFFSET_SLOT = 280;
|
|
790
|
+
static readonly OFFSET_ASSETS_COUNT = 284;
|
|
791
|
+
static readonly OFFSET_RESERVED_VALUE1 = 288;
|
|
792
|
+
static readonly OFFSET_RESERVED_VALUE2 = 296;
|
|
793
|
+
static readonly OFFSET_RESERVED_VALUE3 = 304;
|
|
794
|
+
static readonly OFFSET_RESERVED_VALUE4 = 312;
|
|
795
|
+
static readonly OFFSET_RESERVED_VALUE5 = 320;
|
|
796
|
+
static readonly OFFSET_RESERVED_VALUE6 = 328;
|
|
797
|
+
static readonly OFFSET_RESERVED_VALUE7 = 336;
|
|
798
|
+
static readonly OFFSET_RESERVED_VALUE8 = 344;
|
|
778
799
|
tag: number;
|
|
779
800
|
version: number;
|
|
780
801
|
walletAddress: Address<any>;
|
|
@@ -801,11 +822,17 @@ export declare class ClientPrimaryAccountHeaderModel {
|
|
|
801
822
|
spotTrades: number;
|
|
802
823
|
perpTrades: number;
|
|
803
824
|
lpTrades: number;
|
|
804
|
-
futuresTrades: number;
|
|
805
|
-
optionsTrades: number;
|
|
806
825
|
points: number;
|
|
807
826
|
slot: number;
|
|
808
827
|
assetsCount: number;
|
|
828
|
+
reservedValue1: number;
|
|
829
|
+
reservedValue2: number;
|
|
830
|
+
reservedValue3: number;
|
|
831
|
+
reservedValue4: number;
|
|
832
|
+
reservedValue5: number;
|
|
833
|
+
reservedValue6: number;
|
|
834
|
+
reservedValue7: number;
|
|
835
|
+
reservedValue8: number;
|
|
809
836
|
static fromBuffer(data: Base64EncodedDataResponse, offset?: number): ClientPrimaryAccountHeaderModel;
|
|
810
837
|
}
|
|
811
838
|
export declare class ClientDrvAccountHeaderModel {
|