@pendle/sdk-boros 0.4.33 → 0.4.34
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/contracts/abis/viemAbis.d.ts +326 -126
- package/dist/contracts/abis/viemAbis.js +202 -40
- package/dist/contracts/abis/viemAbis.js.map +1 -1
- package/dist/contracts/market.d.ts +29 -18
- package/dist/entities/exchange/exchange.d.ts +521 -235
- package/dist/entities/exchange/utils.d.ts +109 -54
- package/dist/types/encoders.d.ts +4 -0
- package/dist/types/encoders.js +1 -1
- package/dist/types/encoders.js.map +1 -1
- package/package.json +1 -1
|
@@ -1432,16 +1432,6 @@ export declare function parseEvents(txHash: Hex): Promise<{
|
|
|
1432
1432
|
readonly internalType: "uint64";
|
|
1433
1433
|
readonly name: "newTThresh";
|
|
1434
1434
|
readonly type: "uint64";
|
|
1435
|
-
}, {
|
|
1436
|
-
readonly indexed: false;
|
|
1437
|
-
readonly internalType: "uint16";
|
|
1438
|
-
readonly name: "newMaxRateDeviationFactorBase1e4";
|
|
1439
|
-
readonly type: "uint16";
|
|
1440
|
-
}, {
|
|
1441
|
-
readonly indexed: false;
|
|
1442
|
-
readonly internalType: "uint16";
|
|
1443
|
-
readonly name: "newClosingOrderBoundBase1e4";
|
|
1444
|
-
readonly type: "uint16";
|
|
1445
1435
|
}];
|
|
1446
1436
|
readonly name: "MarginConfigUpdated";
|
|
1447
1437
|
readonly type: "event";
|
|
@@ -1630,6 +1620,21 @@ export declare function parseEvents(txHash: Hex): Promise<{
|
|
|
1630
1620
|
}];
|
|
1631
1621
|
readonly name: "PersonalMarginConfigUpdated";
|
|
1632
1622
|
readonly type: "event";
|
|
1623
|
+
}, {
|
|
1624
|
+
readonly anonymous: false;
|
|
1625
|
+
readonly inputs: readonly [{
|
|
1626
|
+
readonly indexed: false;
|
|
1627
|
+
readonly internalType: "uint16";
|
|
1628
|
+
readonly name: "newMaxRateDeviationFactorBase1e4";
|
|
1629
|
+
readonly type: "uint16";
|
|
1630
|
+
}, {
|
|
1631
|
+
readonly indexed: false;
|
|
1632
|
+
readonly internalType: "uint16";
|
|
1633
|
+
readonly name: "newClosingOrderBoundBase1e4";
|
|
1634
|
+
readonly type: "uint16";
|
|
1635
|
+
}];
|
|
1636
|
+
readonly name: "RateBoundConfigUpdated";
|
|
1637
|
+
readonly type: "event";
|
|
1633
1638
|
}, {
|
|
1634
1639
|
readonly anonymous: false;
|
|
1635
1640
|
readonly inputs: readonly [{
|
|
@@ -2684,14 +2689,6 @@ export declare function parseEvents(txHash: Hex): Promise<{
|
|
|
2684
2689
|
readonly internalType: "uint32";
|
|
2685
2690
|
readonly name: "newTThresh";
|
|
2686
2691
|
readonly type: "uint32";
|
|
2687
|
-
}, {
|
|
2688
|
-
readonly internalType: "uint16";
|
|
2689
|
-
readonly name: "newMaxRateDeviationFactorBase1e4";
|
|
2690
|
-
readonly type: "uint16";
|
|
2691
|
-
}, {
|
|
2692
|
-
readonly internalType: "uint16";
|
|
2693
|
-
readonly name: "newClosingOrderBoundBase1e4";
|
|
2694
|
-
readonly type: "uint16";
|
|
2695
2692
|
}];
|
|
2696
2693
|
readonly name: "setGlobalMarginConfig";
|
|
2697
2694
|
readonly outputs: readonly [];
|
|
@@ -2721,6 +2718,20 @@ export declare function parseEvents(txHash: Hex): Promise<{
|
|
|
2721
2718
|
readonly outputs: readonly [];
|
|
2722
2719
|
readonly stateMutability: "nonpayable";
|
|
2723
2720
|
readonly type: "function";
|
|
2721
|
+
}, {
|
|
2722
|
+
readonly inputs: readonly [{
|
|
2723
|
+
readonly internalType: "uint16";
|
|
2724
|
+
readonly name: "newMaxRateDeviationFactorBase1e4";
|
|
2725
|
+
readonly type: "uint16";
|
|
2726
|
+
}, {
|
|
2727
|
+
readonly internalType: "uint16";
|
|
2728
|
+
readonly name: "newClosingOrderBoundBase1e4";
|
|
2729
|
+
readonly type: "uint16";
|
|
2730
|
+
}];
|
|
2731
|
+
readonly name: "setGlobalRateBoundConfig";
|
|
2732
|
+
readonly outputs: readonly [];
|
|
2733
|
+
readonly stateMutability: "nonpayable";
|
|
2734
|
+
readonly type: "function";
|
|
2724
2735
|
}, {
|
|
2725
2736
|
readonly inputs: readonly [{
|
|
2726
2737
|
readonly internalType: "enum IMarketAllTypes.MarketStatus";
|
|
@@ -3851,50 +3862,34 @@ export declare function decodeLog(log: Log<bigint, number, false>): {
|
|
|
3851
3862
|
newKIM: bigint;
|
|
3852
3863
|
newKMM: bigint;
|
|
3853
3864
|
newTThresh: bigint;
|
|
3854
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3855
|
-
newClosingOrderBoundBase1e4: number;
|
|
3856
3865
|
} | {
|
|
3857
3866
|
newKIM: bigint;
|
|
3858
3867
|
newKMM: bigint;
|
|
3859
3868
|
newTThresh: bigint;
|
|
3860
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3861
|
-
newClosingOrderBoundBase1e4: number;
|
|
3862
3869
|
} | {
|
|
3863
3870
|
newKIM: bigint;
|
|
3864
3871
|
newKMM: bigint;
|
|
3865
3872
|
newTThresh: bigint;
|
|
3866
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3867
|
-
newClosingOrderBoundBase1e4: number;
|
|
3868
3873
|
} | {
|
|
3869
3874
|
newKIM: bigint;
|
|
3870
3875
|
newKMM: bigint;
|
|
3871
3876
|
newTThresh: bigint;
|
|
3872
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3873
|
-
newClosingOrderBoundBase1e4: number;
|
|
3874
3877
|
} | {
|
|
3875
3878
|
newKIM: bigint;
|
|
3876
3879
|
newKMM: bigint;
|
|
3877
3880
|
newTThresh: bigint;
|
|
3878
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3879
|
-
newClosingOrderBoundBase1e4: number;
|
|
3880
3881
|
} | {
|
|
3881
3882
|
newKIM: bigint;
|
|
3882
3883
|
newKMM: bigint;
|
|
3883
3884
|
newTThresh: bigint;
|
|
3884
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3885
|
-
newClosingOrderBoundBase1e4: number;
|
|
3886
3885
|
} | {
|
|
3887
3886
|
newKIM: bigint;
|
|
3888
3887
|
newKMM: bigint;
|
|
3889
3888
|
newTThresh: bigint;
|
|
3890
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3891
|
-
newClosingOrderBoundBase1e4: number;
|
|
3892
3889
|
} | {
|
|
3893
3890
|
newKIM: bigint;
|
|
3894
3891
|
newKMM: bigint;
|
|
3895
3892
|
newTThresh: bigint;
|
|
3896
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
3897
|
-
newClosingOrderBoundBase1e4: number;
|
|
3898
3893
|
};
|
|
3899
3894
|
} | {
|
|
3900
3895
|
eventName: "MarketOrdersFilled";
|
|
@@ -4222,6 +4217,33 @@ export declare function decodeLog(log: Log<bigint, number, false>): {
|
|
|
4222
4217
|
newKIM: bigint;
|
|
4223
4218
|
newKMM: bigint;
|
|
4224
4219
|
};
|
|
4220
|
+
} | {
|
|
4221
|
+
eventName: "RateBoundConfigUpdated";
|
|
4222
|
+
args: {
|
|
4223
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4224
|
+
newClosingOrderBoundBase1e4: number;
|
|
4225
|
+
} | {
|
|
4226
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4227
|
+
newClosingOrderBoundBase1e4: number;
|
|
4228
|
+
} | {
|
|
4229
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4230
|
+
newClosingOrderBoundBase1e4: number;
|
|
4231
|
+
} | {
|
|
4232
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4233
|
+
newClosingOrderBoundBase1e4: number;
|
|
4234
|
+
} | {
|
|
4235
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4236
|
+
newClosingOrderBoundBase1e4: number;
|
|
4237
|
+
} | {
|
|
4238
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4239
|
+
newClosingOrderBoundBase1e4: number;
|
|
4240
|
+
} | {
|
|
4241
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4242
|
+
newClosingOrderBoundBase1e4: number;
|
|
4243
|
+
} | {
|
|
4244
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
4245
|
+
newClosingOrderBoundBase1e4: number;
|
|
4246
|
+
};
|
|
4225
4247
|
} | {
|
|
4226
4248
|
eventName: "StatusUpdated";
|
|
4227
4249
|
args: {
|
|
@@ -4325,9 +4347,9 @@ export declare function decodeLog(log: Log<bigint, number, false>): {
|
|
|
4325
4347
|
profit: bigint;
|
|
4326
4348
|
};
|
|
4327
4349
|
} | {
|
|
4328
|
-
eventName: "
|
|
4350
|
+
eventName: "HealthJumpCancelThresHRSet";
|
|
4329
4351
|
args: {
|
|
4330
|
-
|
|
4352
|
+
newHealthJumpCancelThresHR: bigint;
|
|
4331
4353
|
};
|
|
4332
4354
|
} | {
|
|
4333
4355
|
eventName: "MinTotalMMSet";
|
|
@@ -4351,6 +4373,17 @@ export declare function decodeLog(log: Log<bigint, number, false>): {
|
|
|
4351
4373
|
args: {
|
|
4352
4374
|
user: `0x${string}`;
|
|
4353
4375
|
};
|
|
4376
|
+
} | {
|
|
4377
|
+
eventName: "RestrictWithdrawal";
|
|
4378
|
+
args: {
|
|
4379
|
+
user: `0x${string}`;
|
|
4380
|
+
newCooldown: number;
|
|
4381
|
+
};
|
|
4382
|
+
} | {
|
|
4383
|
+
eventName: "RestrictedCooldownSet";
|
|
4384
|
+
args: {
|
|
4385
|
+
newRestrictedCooldown: number;
|
|
4386
|
+
};
|
|
4354
4387
|
} | {
|
|
4355
4388
|
eventName: "MaxDeltaSet";
|
|
4356
4389
|
args: {
|
|
@@ -5425,50 +5458,34 @@ export declare function getTransactionData(txHash: Hex): Promise<{
|
|
|
5425
5458
|
newKIM: bigint;
|
|
5426
5459
|
newKMM: bigint;
|
|
5427
5460
|
newTThresh: bigint;
|
|
5428
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5429
|
-
newClosingOrderBoundBase1e4: number;
|
|
5430
5461
|
} | {
|
|
5431
5462
|
newKIM: bigint;
|
|
5432
5463
|
newKMM: bigint;
|
|
5433
5464
|
newTThresh: bigint;
|
|
5434
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5435
|
-
newClosingOrderBoundBase1e4: number;
|
|
5436
5465
|
} | {
|
|
5437
5466
|
newKIM: bigint;
|
|
5438
5467
|
newKMM: bigint;
|
|
5439
5468
|
newTThresh: bigint;
|
|
5440
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5441
|
-
newClosingOrderBoundBase1e4: number;
|
|
5442
5469
|
} | {
|
|
5443
5470
|
newKIM: bigint;
|
|
5444
5471
|
newKMM: bigint;
|
|
5445
5472
|
newTThresh: bigint;
|
|
5446
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5447
|
-
newClosingOrderBoundBase1e4: number;
|
|
5448
5473
|
} | {
|
|
5449
5474
|
newKIM: bigint;
|
|
5450
5475
|
newKMM: bigint;
|
|
5451
5476
|
newTThresh: bigint;
|
|
5452
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5453
|
-
newClosingOrderBoundBase1e4: number;
|
|
5454
5477
|
} | {
|
|
5455
5478
|
newKIM: bigint;
|
|
5456
5479
|
newKMM: bigint;
|
|
5457
5480
|
newTThresh: bigint;
|
|
5458
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5459
|
-
newClosingOrderBoundBase1e4: number;
|
|
5460
5481
|
} | {
|
|
5461
5482
|
newKIM: bigint;
|
|
5462
5483
|
newKMM: bigint;
|
|
5463
5484
|
newTThresh: bigint;
|
|
5464
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5465
|
-
newClosingOrderBoundBase1e4: number;
|
|
5466
5485
|
} | {
|
|
5467
5486
|
newKIM: bigint;
|
|
5468
5487
|
newKMM: bigint;
|
|
5469
5488
|
newTThresh: bigint;
|
|
5470
|
-
newMaxRateDeviationFactorBase1e4: number;
|
|
5471
|
-
newClosingOrderBoundBase1e4: number;
|
|
5472
5489
|
};
|
|
5473
5490
|
} | {
|
|
5474
5491
|
eventName: "MarketOrdersFilled";
|
|
@@ -5796,6 +5813,33 @@ export declare function getTransactionData(txHash: Hex): Promise<{
|
|
|
5796
5813
|
newKIM: bigint;
|
|
5797
5814
|
newKMM: bigint;
|
|
5798
5815
|
};
|
|
5816
|
+
} | {
|
|
5817
|
+
eventName: "RateBoundConfigUpdated";
|
|
5818
|
+
args: {
|
|
5819
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5820
|
+
newClosingOrderBoundBase1e4: number;
|
|
5821
|
+
} | {
|
|
5822
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5823
|
+
newClosingOrderBoundBase1e4: number;
|
|
5824
|
+
} | {
|
|
5825
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5826
|
+
newClosingOrderBoundBase1e4: number;
|
|
5827
|
+
} | {
|
|
5828
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5829
|
+
newClosingOrderBoundBase1e4: number;
|
|
5830
|
+
} | {
|
|
5831
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5832
|
+
newClosingOrderBoundBase1e4: number;
|
|
5833
|
+
} | {
|
|
5834
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5835
|
+
newClosingOrderBoundBase1e4: number;
|
|
5836
|
+
} | {
|
|
5837
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5838
|
+
newClosingOrderBoundBase1e4: number;
|
|
5839
|
+
} | {
|
|
5840
|
+
newMaxRateDeviationFactorBase1e4: number;
|
|
5841
|
+
newClosingOrderBoundBase1e4: number;
|
|
5842
|
+
};
|
|
5799
5843
|
} | {
|
|
5800
5844
|
eventName: "StatusUpdated";
|
|
5801
5845
|
args: {
|
|
@@ -5899,9 +5943,9 @@ export declare function getTransactionData(txHash: Hex): Promise<{
|
|
|
5899
5943
|
profit: bigint;
|
|
5900
5944
|
};
|
|
5901
5945
|
} | {
|
|
5902
|
-
eventName: "
|
|
5946
|
+
eventName: "HealthJumpCancelThresHRSet";
|
|
5903
5947
|
args: {
|
|
5904
|
-
|
|
5948
|
+
newHealthJumpCancelThresHR: bigint;
|
|
5905
5949
|
};
|
|
5906
5950
|
} | {
|
|
5907
5951
|
eventName: "MinTotalMMSet";
|
|
@@ -5925,6 +5969,17 @@ export declare function getTransactionData(txHash: Hex): Promise<{
|
|
|
5925
5969
|
args: {
|
|
5926
5970
|
user: `0x${string}`;
|
|
5927
5971
|
};
|
|
5972
|
+
} | {
|
|
5973
|
+
eventName: "RestrictWithdrawal";
|
|
5974
|
+
args: {
|
|
5975
|
+
user: `0x${string}`;
|
|
5976
|
+
newCooldown: number;
|
|
5977
|
+
};
|
|
5978
|
+
} | {
|
|
5979
|
+
eventName: "RestrictedCooldownSet";
|
|
5980
|
+
args: {
|
|
5981
|
+
newRestrictedCooldown: number;
|
|
5982
|
+
};
|
|
5928
5983
|
} | {
|
|
5929
5984
|
eventName: "MaxDeltaSet";
|
|
5930
5985
|
args: {
|
package/dist/types/encoders.d.ts
CHANGED
|
@@ -86,6 +86,8 @@ export interface AddLiquiditySingleCashToAmmReq {
|
|
|
86
86
|
netCashIn: bigint;
|
|
87
87
|
minLpOut: bigint;
|
|
88
88
|
enterMarket: boolean;
|
|
89
|
+
desiredSwapSide: Side;
|
|
90
|
+
desiredSwapRate: bigint;
|
|
89
91
|
}
|
|
90
92
|
export interface RemoveLiquidityDualFromAmmReq {
|
|
91
93
|
cross: boolean;
|
|
@@ -100,6 +102,8 @@ export interface RemoveLiquiditySingleCashFromAmmReq {
|
|
|
100
102
|
ammId: number;
|
|
101
103
|
lpToRemove: bigint;
|
|
102
104
|
minCashOut: bigint;
|
|
105
|
+
desiredSwapSide: Side;
|
|
106
|
+
desiredSwapRate: bigint;
|
|
103
107
|
}
|
|
104
108
|
export interface PlaceSingleOrderReq {
|
|
105
109
|
order: OrderReq;
|
package/dist/types/encoders.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"encoders.js","sourceRoot":"","sources":["../../src/types/encoders.ts"],"names":[],"mappings":";;;AAAA,+BAAwD;AACxD,yDAAsG;
|
|
1
|
+
{"version":3,"file":"encoders.js","sourceRoot":"","sources":["../../src/types/encoders.ts"],"names":[],"mappings":"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"}
|