@ocap/sdk 1.18.95 → 1.18.97
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/index.d.ts +110 -71
- package/package.json +11 -11
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
/// <reference types="jest" />
|
|
3
|
-
import { LiteralUnion } from 'type-fest';
|
|
3
|
+
import type { LiteralUnion } from 'type-fest';
|
|
4
4
|
import rightPad from 'lodash/padEnd';
|
|
5
5
|
import leftPad from 'lodash/padStart';
|
|
6
6
|
import BN from 'bn.js';
|
|
@@ -426,139 +426,103 @@ declare interface OcapSDK {
|
|
|
426
426
|
sendAccountMigrateTx(
|
|
427
427
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.AccountMigrateTx>>,
|
|
428
428
|
extra?: any
|
|
429
|
-
): Promise<
|
|
429
|
+
): Promise<string>;
|
|
430
430
|
sendAcquireAssetV2Tx(
|
|
431
431
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.AcquireAssetV2Tx>>,
|
|
432
432
|
extra?: any
|
|
433
|
-
): Promise<
|
|
433
|
+
): Promise<string>;
|
|
434
434
|
sendAcquireAssetV3Tx(
|
|
435
435
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.AcquireAssetV3Tx>>,
|
|
436
436
|
extra?: any
|
|
437
|
-
): Promise<
|
|
437
|
+
): Promise<string>;
|
|
438
438
|
sendClaimBlockRewardTx(
|
|
439
439
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ClaimBlockRewardTx>>,
|
|
440
440
|
extra?: any
|
|
441
|
-
): Promise<
|
|
442
|
-
sendClaimStakeTx(
|
|
443
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ClaimStakeTx>>,
|
|
444
|
-
extra?: any
|
|
445
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
441
|
+
): Promise<string>;
|
|
442
|
+
sendClaimStakeTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ClaimStakeTx>>, extra?: any): Promise<string>;
|
|
446
443
|
sendCloseRollupTx(
|
|
447
444
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.CloseRollupTx>>,
|
|
448
445
|
extra?: any
|
|
449
|
-
): Promise<
|
|
446
|
+
): Promise<string>;
|
|
450
447
|
sendConsumeAssetTx(
|
|
451
448
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ConsumeAssetTx>>,
|
|
452
449
|
extra?: any
|
|
453
|
-
): Promise<
|
|
450
|
+
): Promise<string>;
|
|
454
451
|
sendCreateAssetTx(
|
|
455
452
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.CreateAssetTx>>,
|
|
456
453
|
extra?: any
|
|
457
|
-
): Promise<
|
|
454
|
+
): Promise<string>;
|
|
458
455
|
sendCreateFactoryTx(
|
|
459
456
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.CreateFactoryTx>>,
|
|
460
457
|
extra?: any
|
|
461
|
-
): Promise<
|
|
458
|
+
): Promise<string>;
|
|
462
459
|
sendCreateRollupBlockTx(
|
|
463
460
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.CreateRollupBlockTx>>,
|
|
464
461
|
extra?: any
|
|
465
|
-
): Promise<
|
|
462
|
+
): Promise<string>;
|
|
466
463
|
sendCreateRollupTx(
|
|
467
464
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.CreateRollupTx>>,
|
|
468
465
|
extra?: any
|
|
469
|
-
): Promise<
|
|
466
|
+
): Promise<string>;
|
|
470
467
|
sendCreateTokenTx(
|
|
471
468
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.CreateTokenTx>>,
|
|
472
469
|
extra?: any
|
|
473
|
-
): Promise<
|
|
474
|
-
sendDeclareTx(
|
|
475
|
-
|
|
476
|
-
extra?: any
|
|
477
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
478
|
-
sendDelegateTx(
|
|
479
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.DelegateTx>>,
|
|
480
|
-
extra?: any
|
|
481
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
470
|
+
): Promise<string>;
|
|
471
|
+
sendDeclareTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.DeclareTx>>, extra?: any): Promise<string>;
|
|
472
|
+
sendDelegateTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.DelegateTx>>, extra?: any): Promise<string>;
|
|
482
473
|
sendDepositTokenV2Tx(
|
|
483
474
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.DepositTokenV2Tx>>,
|
|
484
475
|
extra?: any
|
|
485
|
-
): Promise<
|
|
486
|
-
sendExchangeTx(
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
490
|
-
sendExchangeV2Tx(
|
|
491
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ExchangeV2Tx>>,
|
|
492
|
-
extra?: any
|
|
493
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
494
|
-
sendJoinRollupTx(
|
|
495
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.JoinRollupTx>>,
|
|
496
|
-
extra?: any
|
|
497
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
476
|
+
): Promise<string>;
|
|
477
|
+
sendExchangeTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ExchangeTx>>, extra?: any): Promise<string>;
|
|
478
|
+
sendExchangeV2Tx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ExchangeV2Tx>>, extra?: any): Promise<string>;
|
|
479
|
+
sendJoinRollupTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.JoinRollupTx>>, extra?: any): Promise<string>;
|
|
498
480
|
sendLeaveRollupTx(
|
|
499
481
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.LeaveRollupTx>>,
|
|
500
482
|
extra?: any
|
|
501
|
-
): Promise<
|
|
483
|
+
): Promise<string>;
|
|
502
484
|
sendMigrateRollupTx(
|
|
503
485
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.MigrateRollupTx>>,
|
|
504
486
|
extra?: any
|
|
505
|
-
): Promise<
|
|
506
|
-
sendMintAssetTx(
|
|
507
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.MintAssetTx>>,
|
|
508
|
-
extra?: any
|
|
509
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
487
|
+
): Promise<string>;
|
|
488
|
+
sendMintAssetTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.MintAssetTx>>, extra?: any): Promise<string>;
|
|
510
489
|
sendPauseRollupTx(
|
|
511
490
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.PauseRollupTx>>,
|
|
512
491
|
extra?: any
|
|
513
|
-
): Promise<
|
|
492
|
+
): Promise<string>;
|
|
514
493
|
sendResumeRollupTx(
|
|
515
494
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.ResumeRollupTx>>,
|
|
516
495
|
extra?: any
|
|
517
|
-
): Promise<
|
|
496
|
+
): Promise<string>;
|
|
518
497
|
sendRevokeDelegateTx(
|
|
519
498
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.RevokeDelegateTx>>,
|
|
520
499
|
extra?: any
|
|
521
|
-
): Promise<
|
|
500
|
+
): Promise<string>;
|
|
522
501
|
sendRevokeStakeTx(
|
|
523
502
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.RevokeStakeTx>>,
|
|
524
503
|
extra?: any
|
|
525
|
-
): Promise<
|
|
526
|
-
sendSlashStakeTx(
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
): Promise<
|
|
530
|
-
|
|
531
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.StakeTx>>,
|
|
532
|
-
extra?: any
|
|
533
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
534
|
-
sendTransferTx(
|
|
535
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.TransferTx>>,
|
|
536
|
-
extra?: any
|
|
537
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
538
|
-
sendTransferV2Tx(
|
|
539
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.TransferV2Tx>>,
|
|
540
|
-
extra?: any
|
|
541
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
542
|
-
sendTransferV3Tx(
|
|
543
|
-
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.TransferV3Tx>>,
|
|
544
|
-
extra?: any
|
|
545
|
-
): Promise<GraphQLClient.ResponseSendTx>;
|
|
504
|
+
): Promise<string>;
|
|
505
|
+
sendSlashStakeTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.SlashStakeTx>>, extra?: any): Promise<string>;
|
|
506
|
+
sendStakeTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.StakeTx>>, extra?: any): Promise<string>;
|
|
507
|
+
sendTransferTx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.TransferTx>>, extra?: any): Promise<string>;
|
|
508
|
+
sendTransferV2Tx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.TransferV2Tx>>, extra?: any): Promise<string>;
|
|
509
|
+
sendTransferV3Tx(param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.TransferV3Tx>>, extra?: any): Promise<string>;
|
|
546
510
|
sendUpdateAssetTx(
|
|
547
511
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.UpdateAssetTx>>,
|
|
548
512
|
extra?: any
|
|
549
|
-
): Promise<
|
|
513
|
+
): Promise<string>;
|
|
550
514
|
sendUpdateRollupTx(
|
|
551
515
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.UpdateRollupTx>>,
|
|
552
516
|
extra?: any
|
|
553
|
-
): Promise<
|
|
517
|
+
): Promise<string>;
|
|
554
518
|
sendUpgradeNodeTx(
|
|
555
519
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.UpgradeNodeTx>>,
|
|
556
520
|
extra?: any
|
|
557
|
-
): Promise<
|
|
521
|
+
): Promise<string>;
|
|
558
522
|
sendWithdrawTokenV2Tx(
|
|
559
523
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.WithdrawTokenV2Tx>>,
|
|
560
524
|
extra?: any
|
|
561
|
-
): Promise<
|
|
525
|
+
): Promise<string>;
|
|
562
526
|
encodeAccountMigrateTx(
|
|
563
527
|
param: GraphQLClient.TxParam<PartialDeep<GraphQLClient.AccountMigrateTx>>
|
|
564
528
|
): Promise<GraphQLClient.EncodeTxResult>;
|
|
@@ -888,6 +852,9 @@ declare interface OcapSDK {
|
|
|
888
852
|
listRollupValidators(
|
|
889
853
|
params: PartialDeep<GraphQLClient.ListRollupValidatorsParams>
|
|
890
854
|
): Promise<GraphQLClient.GraphQLClient.ResponseListRollupValidators>;
|
|
855
|
+
listDelegations(
|
|
856
|
+
params: PartialDeep<GraphQLClient.ListDelegationsParams>
|
|
857
|
+
): Promise<GraphQLClient.GraphQLClient.ResponseListDelegations>;
|
|
891
858
|
search(params: PartialDeep<GraphQLClient.SearchParams>): Promise<GraphQLClient.GraphQLClient.ResponseSearch>;
|
|
892
859
|
estimateGas(
|
|
893
860
|
params: PartialDeep<GraphQLClient.EstimateGasParams>
|
|
@@ -1199,6 +1166,13 @@ declare namespace GraphQLClient {
|
|
|
1199
1166
|
numInvalidTxsFilter: GraphQLClient.RangeFilterInput;
|
|
1200
1167
|
}
|
|
1201
1168
|
|
|
1169
|
+
interface RequestListDelegationsInput {
|
|
1170
|
+
paging: GraphQLClient.PageInput;
|
|
1171
|
+
from: string;
|
|
1172
|
+
to: string;
|
|
1173
|
+
timeFilter: GraphQLClient.TimeFilterInput;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1202
1176
|
interface RequestListFactoriesInput {
|
|
1203
1177
|
paging: GraphQLClient.PageInput;
|
|
1204
1178
|
ownerAddress: string;
|
|
@@ -1417,6 +1391,16 @@ declare namespace GraphQLClient {
|
|
|
1417
1391
|
lastSettlement: string;
|
|
1418
1392
|
}
|
|
1419
1393
|
|
|
1394
|
+
interface AssetLimit {
|
|
1395
|
+
address: string[];
|
|
1396
|
+
to: string[];
|
|
1397
|
+
txCount: number;
|
|
1398
|
+
validUntil: number;
|
|
1399
|
+
rate: GraphQLClient.RateLimit;
|
|
1400
|
+
txSent: number;
|
|
1401
|
+
lastTx: number;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1420
1404
|
interface AssetState {
|
|
1421
1405
|
address: string;
|
|
1422
1406
|
owner: string;
|
|
@@ -1644,9 +1628,15 @@ declare namespace GraphQLClient {
|
|
|
1644
1628
|
typeUrls: string[];
|
|
1645
1629
|
}
|
|
1646
1630
|
|
|
1631
|
+
interface DelegateLimit {
|
|
1632
|
+
tokens: GraphQLClient.TokenLimit[];
|
|
1633
|
+
assets: GraphQLClient.AssetLimit[];
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1647
1636
|
interface DelegateOp {
|
|
1648
1637
|
typeUrl: string;
|
|
1649
1638
|
rules: string[];
|
|
1639
|
+
limit: GraphQLClient.DelegateLimit;
|
|
1650
1640
|
}
|
|
1651
1641
|
|
|
1652
1642
|
interface DelegateOpState {
|
|
@@ -1655,11 +1645,14 @@ declare namespace GraphQLClient {
|
|
|
1655
1645
|
numTxsDelta: number;
|
|
1656
1646
|
balance: string;
|
|
1657
1647
|
balanceDelta: string;
|
|
1648
|
+
limit: GraphQLClient.DelegateLimit;
|
|
1658
1649
|
}
|
|
1659
1650
|
|
|
1660
1651
|
interface DelegateState {
|
|
1661
1652
|
address: string;
|
|
1662
1653
|
ops: GraphQLClient.DelegateState_OpsEntry[];
|
|
1654
|
+
from: string;
|
|
1655
|
+
to: string;
|
|
1663
1656
|
context: GraphQLClient.StateContext;
|
|
1664
1657
|
data: GraphQLClient.Any;
|
|
1665
1658
|
}
|
|
@@ -1839,6 +1832,21 @@ declare namespace GraphQLClient {
|
|
|
1839
1832
|
numInvalidTxs: string;
|
|
1840
1833
|
}
|
|
1841
1834
|
|
|
1835
|
+
interface IndexedDelegationState {
|
|
1836
|
+
address: string;
|
|
1837
|
+
from: string;
|
|
1838
|
+
to: string;
|
|
1839
|
+
genesisTime: string;
|
|
1840
|
+
renaissanceTime: string;
|
|
1841
|
+
ops: GraphQLClient.IndexedDelegationState_OpsEntry[];
|
|
1842
|
+
data: GraphQLClient.Any;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
interface IndexedDelegationState_OpsEntry {
|
|
1846
|
+
key: string;
|
|
1847
|
+
value: GraphQLClient.DelegateOpState;
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1842
1850
|
interface IndexedFactoryInput {
|
|
1843
1851
|
value: string;
|
|
1844
1852
|
tokens: GraphQLClient.IndexedTokenInput[];
|
|
@@ -2131,6 +2139,11 @@ declare namespace GraphQLClient {
|
|
|
2131
2139
|
data: string;
|
|
2132
2140
|
}
|
|
2133
2141
|
|
|
2142
|
+
interface RateLimit {
|
|
2143
|
+
interval: number;
|
|
2144
|
+
anchor: number;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2134
2147
|
interface ReceiptChange {
|
|
2135
2148
|
target: string;
|
|
2136
2149
|
action: string;
|
|
@@ -2266,6 +2279,12 @@ declare namespace GraphQLClient {
|
|
|
2266
2279
|
blocks: GraphQLClient.IndexedBlock[];
|
|
2267
2280
|
}
|
|
2268
2281
|
|
|
2282
|
+
interface ResponseListDelegations {
|
|
2283
|
+
code: string;
|
|
2284
|
+
page: GraphQLClient.PageInfo;
|
|
2285
|
+
delegations: GraphQLClient.IndexedDelegationState[];
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2269
2288
|
interface ResponseListFactories {
|
|
2270
2289
|
code: string;
|
|
2271
2290
|
page: GraphQLClient.PageInfo;
|
|
@@ -2472,6 +2491,19 @@ declare namespace GraphQLClient {
|
|
|
2472
2491
|
value: string;
|
|
2473
2492
|
}
|
|
2474
2493
|
|
|
2494
|
+
interface TokenLimit {
|
|
2495
|
+
address: string;
|
|
2496
|
+
to: string[];
|
|
2497
|
+
txCount: number;
|
|
2498
|
+
txAllowance: string;
|
|
2499
|
+
totalAllowance: string;
|
|
2500
|
+
validUntil: number;
|
|
2501
|
+
rate: GraphQLClient.RateLimit;
|
|
2502
|
+
txSent: number;
|
|
2503
|
+
spentAllowance: string;
|
|
2504
|
+
lastTx: number;
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2475
2507
|
interface TokenState {
|
|
2476
2508
|
address: string;
|
|
2477
2509
|
issuer: string;
|
|
@@ -2861,6 +2893,13 @@ declare namespace GraphQLClient {
|
|
|
2861
2893
|
rollupAddress: string;
|
|
2862
2894
|
}
|
|
2863
2895
|
|
|
2896
|
+
interface ListDelegationsParams {
|
|
2897
|
+
from: string;
|
|
2898
|
+
to: string;
|
|
2899
|
+
paging: GraphQLClient.PageInput;
|
|
2900
|
+
timeFilter: GraphQLClient.TimeFilterInput;
|
|
2901
|
+
}
|
|
2902
|
+
|
|
2864
2903
|
interface SearchParams {
|
|
2865
2904
|
paging: GraphQLClient.PageInput;
|
|
2866
2905
|
keyword: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/sdk",
|
|
3
3
|
"description": "Forge javascript SDK packages all-in-one",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.97",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "wangshijun",
|
|
7
7
|
"email": "shijun@arcblock.io",
|
|
@@ -11,18 +11,18 @@
|
|
|
11
11
|
"wangshijun <shijun@arcblock.io> (https://github.com/wangshijun)"
|
|
12
12
|
],
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/ArcBlock/
|
|
14
|
+
"url": "https://github.com/ArcBlock/blockchain/issues",
|
|
15
15
|
"email": "shijun@arcblock.io"
|
|
16
16
|
},
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcblock/did-util": "1.18.
|
|
22
|
-
"@ocap/client": "1.18.
|
|
23
|
-
"@ocap/message": "1.18.
|
|
24
|
-
"@ocap/util": "1.18.
|
|
25
|
-
"@ocap/wallet": "1.18.
|
|
21
|
+
"@arcblock/did-util": "1.18.97",
|
|
22
|
+
"@ocap/client": "1.18.97",
|
|
23
|
+
"@ocap/message": "1.18.97",
|
|
24
|
+
"@ocap/util": "1.18.97",
|
|
25
|
+
"@ocap/wallet": "1.18.97",
|
|
26
26
|
"buffer": "6.0.3",
|
|
27
27
|
"debug": "^4.3.4",
|
|
28
28
|
"react-app-polyfill": "^1.0.6",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"preset-github",
|
|
46
46
|
[
|
|
47
47
|
{
|
|
48
|
-
"repository": "ArcBlock/
|
|
48
|
+
"repository": "ArcBlock/blockchain"
|
|
49
49
|
}
|
|
50
50
|
]
|
|
51
51
|
]
|
|
52
52
|
},
|
|
53
|
-
"homepage": "https://github.com/ArcBlock/
|
|
53
|
+
"homepage": "https://github.com/ArcBlock/blockchain/tree/master/core/forge-sdk",
|
|
54
54
|
"keywords": [
|
|
55
55
|
"blockchain",
|
|
56
56
|
"arcblock",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
],
|
|
68
68
|
"repository": {
|
|
69
69
|
"type": "git",
|
|
70
|
-
"url": "https://github.com/ArcBlock/
|
|
70
|
+
"url": "https://github.com/ArcBlock/blockchain/tree/master/core/forge-sdk"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"lint": "eslint lib *.js tests",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"test": "jest --forceExit --detectOpenHandles",
|
|
83
83
|
"coverage": "yarn test -- --coverage"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "691aabefd37f53b6fbcf771ce130f09197f0b268"
|
|
86
86
|
}
|