@defisaver/sdk 1.0.61 → 1.0.63-dev-1
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/esm/src/Action.d.ts +2 -2
- package/esm/src/actions/aave/AaveBorrowAction.js +8 -0
- package/esm/src/actions/basic/ApproveTokenAction.js +5 -0
- package/esm/src/actions/basic/ExecuteSafeTxAction.d.ts +23 -0
- package/esm/src/actions/basic/ExecuteSafeTxAction.js +60 -0
- package/esm/src/actions/basic/LSVSellAction.d.ts +23 -0
- package/esm/src/actions/basic/LSVSellAction.js +61 -0
- package/esm/src/actions/basic/LimitSellAction.d.ts +24 -0
- package/esm/src/actions/basic/LimitSellAction.js +63 -0
- package/esm/src/actions/basic/RemoveTokenApprovalAction.d.ts +15 -0
- package/esm/src/actions/basic/RemoveTokenApprovalAction.js +42 -0
- package/esm/src/actions/basic/index.d.ts +5 -1
- package/esm/src/actions/basic/index.js +5 -1
- package/esm/src/actions/checkers/AaveV2RatioCheckAction.d.ts +14 -0
- package/esm/src/actions/checkers/AaveV2RatioCheckAction.js +20 -0
- package/esm/src/actions/checkers/CompoundV2RatioCheckAction.d.ts +14 -0
- package/esm/src/actions/checkers/CompoundV2RatioCheckAction.js +20 -0
- package/esm/src/actions/checkers/CurveUsdCollRatioCheck.d.ts +15 -0
- package/esm/src/actions/checkers/CurveUsdCollRatioCheck.js +22 -0
- package/esm/src/actions/checkers/index.d.ts +4 -1
- package/esm/src/actions/checkers/index.js +4 -1
- package/esm/src/actions/curveusd/CurveUsdGetDebtAction.d.ts +8 -0
- package/esm/src/actions/curveusd/CurveUsdGetDebtAction.js +13 -0
- package/esm/src/actions/curveusd/index.d.ts +1 -0
- package/esm/src/actions/curveusd/index.js +1 -0
- package/esm/src/actions/flashloan/AaveV3FlashLoanCarryDebtAction.d.ts +18 -0
- package/esm/src/actions/flashloan/AaveV3FlashLoanCarryDebtAction.js +28 -0
- package/esm/src/actions/flashloan/FLAction.js +3 -0
- package/esm/src/actions/flashloan/MorphoBlueFlashLoanAction.d.ts +16 -0
- package/esm/src/actions/flashloan/MorphoBlueFlashLoanAction.js +18 -0
- package/esm/src/actions/flashloan/MorphoBlueFlashLoanPaybackAction.d.ts +14 -0
- package/esm/src/actions/flashloan/MorphoBlueFlashLoanPaybackAction.js +16 -0
- package/esm/src/actions/flashloan/index.d.ts +3 -0
- package/esm/src/actions/flashloan/index.js +3 -0
- package/esm/src/actions/index.d.ts +3 -1
- package/esm/src/actions/index.js +3 -1
- package/esm/src/actions/lsv/LSVBorrowAction.d.ts +14 -0
- package/esm/src/actions/lsv/LSVBorrowAction.js +19 -0
- package/esm/src/actions/lsv/LSVPaybackAction.d.ts +13 -0
- package/esm/src/actions/lsv/LSVPaybackAction.js +18 -0
- package/esm/src/actions/lsv/LSVSupplyAction.d.ts +15 -0
- package/esm/src/actions/lsv/LSVSupplyAction.js +21 -0
- package/esm/src/actions/lsv/LSVWithdrawAction.d.ts +15 -0
- package/esm/src/actions/lsv/LSVWithdrawAction.js +21 -0
- package/esm/src/actions/lsv/index.d.ts +4 -0
- package/esm/src/actions/lsv/index.js +4 -0
- package/esm/src/actions/maker/MakerGiveAction.d.ts +1 -2
- package/esm/src/actions/maker/MakerGiveAction.js +2 -3
- package/esm/src/actions/morpho/aaveV3/MorphoAaveV3SetManagerAction.d.ts +14 -0
- package/esm/src/actions/morpho/aaveV3/MorphoAaveV3SetManagerAction.js +24 -0
- package/esm/src/actions/morpho/index.d.ts +1 -0
- package/esm/src/actions/morpho/index.js +1 -0
- package/esm/src/actions/morpho-blue/MorphoBlueBorrowAction.d.ts +21 -0
- package/esm/src/actions/morpho-blue/MorphoBlueBorrowAction.js +46 -0
- package/esm/src/actions/morpho-blue/MorphoBluePaybackAction.d.ts +24 -0
- package/esm/src/actions/morpho-blue/MorphoBluePaybackAction.js +46 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSetAuthAction.d.ts +12 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSetAuthAction.js +18 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSetAuthWithSigAction.d.ts +12 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSetAuthWithSigAction.js +21 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSupplyAction.d.ts +24 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSupplyAction.js +46 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSupplyCollateralAction.d.ts +24 -0
- package/esm/src/actions/morpho-blue/MorphoBlueSupplyCollateralAction.js +46 -0
- package/esm/src/actions/morpho-blue/MorphoBlueWithdrawAction.d.ts +21 -0
- package/esm/src/actions/morpho-blue/MorphoBlueWithdrawAction.js +46 -0
- package/esm/src/actions/morpho-blue/MorphoBlueWithdrawCollateralAction.d.ts +21 -0
- package/esm/src/actions/morpho-blue/MorphoBlueWithdrawCollateralAction.js +46 -0
- package/esm/src/actions/morpho-blue/index.d.ts +8 -0
- package/esm/src/actions/morpho-blue/index.js +8 -0
- package/esm/src/addresses.d.ts +79 -3
- package/esm/src/addresses.js +24 -3
- package/esm/src/index.d.ts +316 -12
- package/esm/src/triggers/AaveV2RatioTrigger.d.ts +10 -0
- package/esm/src/triggers/AaveV2RatioTrigger.js +12 -0
- package/esm/src/triggers/CurveUsdCollRatioTrigger.d.ts +10 -0
- package/esm/src/triggers/CurveUsdCollRatioTrigger.js +12 -0
- package/esm/src/triggers/OffchainPriceTrigger.d.ts +10 -0
- package/esm/src/triggers/OffchainPriceTrigger.js +12 -0
- package/esm/src/triggers/index.d.ts +3 -0
- package/esm/src/triggers/index.js +3 -0
- package/esm/src/types.d.ts +20 -20
- package/esm/src/utils/curveusd-utils.d.ts +10 -0
- package/esm/src/utils/curveusd-utils.js +7 -3
- package/package.json +1 -1
- package/src/actions/aave/AaveBorrowAction.ts +9 -0
- package/src/actions/basic/ApproveTokenAction.ts +5 -0
- package/src/actions/basic/ExecuteSafeTxAction.ts +85 -0
- package/src/actions/basic/LSVSellAction.ts +61 -0
- package/src/actions/basic/LimitSellAction.ts +63 -0
- package/src/actions/basic/RemoveTokenApprovalAction.ts +39 -0
- package/src/actions/basic/index.ts +5 -1
- package/src/actions/checkers/AaveV2RatioCheckAction.ts +23 -0
- package/src/actions/checkers/CompoundV2RatioCheckAction.ts +23 -0
- package/src/actions/checkers/CurveUsdCollRatioCheck.ts +25 -0
- package/src/actions/checkers/index.ts +4 -1
- package/src/actions/curveusd/CurveUsdGetDebtAction.ts +21 -0
- package/src/actions/curveusd/index.ts +2 -1
- package/src/actions/flashloan/AaveV3FlashLoanCarryDebtAction.ts +35 -0
- package/src/actions/flashloan/FLAction.ts +3 -0
- package/src/actions/flashloan/MorphoBlueFlashLoanAction.ts +25 -0
- package/src/actions/flashloan/MorphoBlueFlashLoanPaybackAction.ts +18 -0
- package/src/actions/flashloan/index.ts +4 -1
- package/src/actions/index.ts +4 -0
- package/src/actions/lsv/LSVBorrowAction.ts +21 -0
- package/src/actions/lsv/LSVPaybackAction.ts +20 -0
- package/src/actions/lsv/LSVSupplyAction.ts +23 -0
- package/src/actions/lsv/LSVWithdrawAction.ts +23 -0
- package/src/actions/lsv/index.ts +4 -0
- package/src/actions/maker/MakerGiveAction.ts +2 -3
- package/src/actions/morpho/aaveV3/MorphoAaveV3SetManagerAction.ts +32 -0
- package/src/actions/morpho/index.ts +1 -0
- package/src/actions/morpho-blue/MorphoBlueBorrowAction.ts +54 -0
- package/src/actions/morpho-blue/MorphoBluePaybackAction.ts +54 -0
- package/src/actions/morpho-blue/MorphoBlueSetAuthAction.ts +25 -0
- package/src/actions/morpho-blue/MorphoBlueSetAuthWithSigAction.ts +39 -0
- package/src/actions/morpho-blue/MorphoBlueSupplyAction.ts +54 -0
- package/src/actions/morpho-blue/MorphoBlueSupplyCollateralAction.ts +54 -0
- package/src/actions/morpho-blue/MorphoBlueWithdrawAction.ts +54 -0
- package/src/actions/morpho-blue/MorphoBlueWithdrawCollateralAction.ts +54 -0
- package/src/actions/morpho-blue/index.ts +8 -0
- package/src/addresses.ts +26 -3
- package/src/triggers/AaveV2RatioTrigger.ts +14 -0
- package/src/triggers/CurveUsdCollRatioTrigger.ts +14 -0
- package/src/triggers/OffchainPriceTrigger.ts +14 -0
- package/src/triggers/index.ts +4 -0
- package/src/utils/basic-utils.ts +1 -1
- package/src/utils/curveusd-utils.ts +7 -3
- package/umd/index.js +1627 -584
- package/yarn-error.log +0 -3976
package/esm/src/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare const actionAddressesAllChains: {
|
|
|
26
26
|
UpdateSub: string;
|
|
27
27
|
TransferNFT: string;
|
|
28
28
|
CreateSub: string;
|
|
29
|
+
ApproveToken: string;
|
|
29
30
|
SDaiWrap: string;
|
|
30
31
|
SDaiUnwrap: string;
|
|
31
32
|
TokenizedVaultAdapter: string;
|
|
@@ -66,6 +67,11 @@ declare const actionAddressesAllChains: {
|
|
|
66
67
|
AaveV3Borrow: string;
|
|
67
68
|
AaveV3ATokenPayback: string;
|
|
68
69
|
AaveV3View: string;
|
|
70
|
+
LSVWithdraw: string;
|
|
71
|
+
LSVBorrow: string;
|
|
72
|
+
LSVSupply: string;
|
|
73
|
+
LSVPayback: string;
|
|
74
|
+
LSVSell: string;
|
|
69
75
|
MorphoAaveV2Borrow: string;
|
|
70
76
|
MorphoAaveV2Payback: string;
|
|
71
77
|
MorphoAaveV2Supply: string;
|
|
@@ -75,6 +81,7 @@ declare const actionAddressesAllChains: {
|
|
|
75
81
|
MorphoAaveV3Payback: string;
|
|
76
82
|
MorphoAaveV3Supply: string;
|
|
77
83
|
MorphoAaveV3Withdraw: string;
|
|
84
|
+
MorphoAaveV3SetManager: string;
|
|
78
85
|
SparkBorrow: string;
|
|
79
86
|
SparkClaimRewards: string;
|
|
80
87
|
SparkCollateralSwitch: string;
|
|
@@ -94,6 +101,7 @@ declare const actionAddressesAllChains: {
|
|
|
94
101
|
CompCollateralSwitch: string;
|
|
95
102
|
FLAaveV2: string;
|
|
96
103
|
FLAaveV3NoFee: string;
|
|
104
|
+
FLAaveV3CarryDebt: string;
|
|
97
105
|
FLAaveV3: string;
|
|
98
106
|
FLDyDx: string;
|
|
99
107
|
FLMaker: string;
|
|
@@ -102,6 +110,7 @@ declare const actionAddressesAllChains: {
|
|
|
102
110
|
FLAction: string;
|
|
103
111
|
FLUniV3: string;
|
|
104
112
|
FLGho: string;
|
|
113
|
+
FLMorphoBlue: string;
|
|
105
114
|
UniSupply: string;
|
|
106
115
|
UniWithdraw: string;
|
|
107
116
|
UniCollectV3: string;
|
|
@@ -182,7 +191,17 @@ declare const actionAddressesAllChains: {
|
|
|
182
191
|
CurveUsdSwapper: string;
|
|
183
192
|
CurveUsdSelfLiquidate: string;
|
|
184
193
|
CurveUsdSelfLiquidateWithColl: string;
|
|
185
|
-
|
|
194
|
+
CurveUsdGetDebt: string;
|
|
195
|
+
CurveUsdCollRatioTrigger: string;
|
|
196
|
+
CurveUsdCollRatioCheck: string;
|
|
197
|
+
MorphoBlueSupply: string;
|
|
198
|
+
MorphoBlueSupplyCollateral: string;
|
|
199
|
+
MorphoBlueWithdraw: string;
|
|
200
|
+
MorphoBlueWithdrawCollateral: string;
|
|
201
|
+
MorphoBlueBorrow: string;
|
|
202
|
+
MorphoBluePayback: string;
|
|
203
|
+
MorphoBlueSetAuth: string;
|
|
204
|
+
MorphoBlueSetAuthWithSig: string;
|
|
186
205
|
AaveV3DelegateCredit?: undefined;
|
|
187
206
|
AaveV3RatioTrigger?: undefined;
|
|
188
207
|
GasFeeTakerL2?: undefined;
|
|
@@ -256,6 +275,11 @@ declare const actionAddressesAllChains: {
|
|
|
256
275
|
AaveClaimAAVE?: undefined;
|
|
257
276
|
AaveClaimStkAave?: undefined;
|
|
258
277
|
AaveV3View?: undefined;
|
|
278
|
+
LSVWithdraw?: undefined;
|
|
279
|
+
LSVBorrow?: undefined;
|
|
280
|
+
LSVSupply?: undefined;
|
|
281
|
+
LSVPayback?: undefined;
|
|
282
|
+
LSVSell?: undefined;
|
|
259
283
|
MorphoAaveV2Borrow?: undefined;
|
|
260
284
|
MorphoAaveV2Payback?: undefined;
|
|
261
285
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -265,6 +289,7 @@ declare const actionAddressesAllChains: {
|
|
|
265
289
|
MorphoAaveV3Payback?: undefined;
|
|
266
290
|
MorphoAaveV3Supply?: undefined;
|
|
267
291
|
MorphoAaveV3Withdraw?: undefined;
|
|
292
|
+
MorphoAaveV3SetManager?: undefined;
|
|
268
293
|
SparkBorrow?: undefined;
|
|
269
294
|
SparkClaimRewards?: undefined;
|
|
270
295
|
SparkCollateralSwitch?: undefined;
|
|
@@ -283,11 +308,13 @@ declare const actionAddressesAllChains: {
|
|
|
283
308
|
CompGetDebt?: undefined;
|
|
284
309
|
CompCollateralSwitch?: undefined;
|
|
285
310
|
FLAaveV2?: undefined;
|
|
311
|
+
FLAaveV3CarryDebt?: undefined;
|
|
286
312
|
FLDyDx?: undefined;
|
|
287
313
|
FLMaker?: undefined;
|
|
288
314
|
FLSpark?: undefined;
|
|
289
315
|
FLUniV3?: undefined;
|
|
290
316
|
FLGho?: undefined;
|
|
317
|
+
FLMorphoBlue?: undefined;
|
|
291
318
|
UniSupply?: undefined;
|
|
292
319
|
UniWithdraw?: undefined;
|
|
293
320
|
DyDxWithdraw?: undefined;
|
|
@@ -363,6 +390,17 @@ declare const actionAddressesAllChains: {
|
|
|
363
390
|
CurveUsdSwapper?: undefined;
|
|
364
391
|
CurveUsdSelfLiquidate?: undefined;
|
|
365
392
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
393
|
+
CurveUsdGetDebt?: undefined;
|
|
394
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
395
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
396
|
+
MorphoBlueSupply?: undefined;
|
|
397
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
398
|
+
MorphoBlueWithdraw?: undefined;
|
|
399
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
400
|
+
MorphoBlueBorrow?: undefined;
|
|
401
|
+
MorphoBluePayback?: undefined;
|
|
402
|
+
MorphoBlueSetAuth?: undefined;
|
|
403
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
366
404
|
} | {
|
|
367
405
|
DFSSell: string;
|
|
368
406
|
WrapEth: string;
|
|
@@ -406,6 +444,7 @@ declare const actionAddressesAllChains: {
|
|
|
406
444
|
UpdateSub?: undefined;
|
|
407
445
|
TransferNFT?: undefined;
|
|
408
446
|
CreateSub?: undefined;
|
|
447
|
+
ApproveToken?: undefined;
|
|
409
448
|
SDaiWrap?: undefined;
|
|
410
449
|
SDaiUnwrap?: undefined;
|
|
411
450
|
McdGenerate?: undefined;
|
|
@@ -436,6 +475,11 @@ declare const actionAddressesAllChains: {
|
|
|
436
475
|
AaveClaimStkAave?: undefined;
|
|
437
476
|
AaveV3ClaimRewards?: undefined;
|
|
438
477
|
AaveV3View?: undefined;
|
|
478
|
+
LSVWithdraw?: undefined;
|
|
479
|
+
LSVBorrow?: undefined;
|
|
480
|
+
LSVSupply?: undefined;
|
|
481
|
+
LSVPayback?: undefined;
|
|
482
|
+
LSVSell?: undefined;
|
|
439
483
|
MorphoAaveV2Borrow?: undefined;
|
|
440
484
|
MorphoAaveV2Payback?: undefined;
|
|
441
485
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -445,6 +489,7 @@ declare const actionAddressesAllChains: {
|
|
|
445
489
|
MorphoAaveV3Payback?: undefined;
|
|
446
490
|
MorphoAaveV3Supply?: undefined;
|
|
447
491
|
MorphoAaveV3Withdraw?: undefined;
|
|
492
|
+
MorphoAaveV3SetManager?: undefined;
|
|
448
493
|
SparkBorrow?: undefined;
|
|
449
494
|
SparkClaimRewards?: undefined;
|
|
450
495
|
SparkCollateralSwitch?: undefined;
|
|
@@ -463,11 +508,13 @@ declare const actionAddressesAllChains: {
|
|
|
463
508
|
CompGetDebt?: undefined;
|
|
464
509
|
CompCollateralSwitch?: undefined;
|
|
465
510
|
FLAaveV2?: undefined;
|
|
511
|
+
FLAaveV3CarryDebt?: undefined;
|
|
466
512
|
FLDyDx?: undefined;
|
|
467
513
|
FLMaker?: undefined;
|
|
468
514
|
FLSpark?: undefined;
|
|
469
515
|
FLUniV3?: undefined;
|
|
470
516
|
FLGho?: undefined;
|
|
517
|
+
FLMorphoBlue?: undefined;
|
|
471
518
|
UniSupply?: undefined;
|
|
472
519
|
UniWithdraw?: undefined;
|
|
473
520
|
DyDxWithdraw?: undefined;
|
|
@@ -536,7 +583,17 @@ declare const actionAddressesAllChains: {
|
|
|
536
583
|
CurveUsdSwapper?: undefined;
|
|
537
584
|
CurveUsdSelfLiquidate?: undefined;
|
|
538
585
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
539
|
-
|
|
586
|
+
CurveUsdGetDebt?: undefined;
|
|
587
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
588
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
589
|
+
MorphoBlueSupply?: undefined;
|
|
590
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
591
|
+
MorphoBlueWithdraw?: undefined;
|
|
592
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
593
|
+
MorphoBlueBorrow?: undefined;
|
|
594
|
+
MorphoBluePayback?: undefined;
|
|
595
|
+
MorphoBlueSetAuth?: undefined;
|
|
596
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
540
597
|
AaveV3DelegateCredit?: undefined;
|
|
541
598
|
AaveV3RatioTrigger?: undefined;
|
|
542
599
|
} | {
|
|
@@ -575,6 +632,7 @@ declare const actionAddressesAllChains: {
|
|
|
575
632
|
UpdateSub?: undefined;
|
|
576
633
|
TransferNFT?: undefined;
|
|
577
634
|
CreateSub?: undefined;
|
|
635
|
+
ApproveToken?: undefined;
|
|
578
636
|
SDaiWrap?: undefined;
|
|
579
637
|
SDaiUnwrap?: undefined;
|
|
580
638
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -604,6 +662,11 @@ declare const actionAddressesAllChains: {
|
|
|
604
662
|
AaveUnstake?: undefined;
|
|
605
663
|
AaveClaimAAVE?: undefined;
|
|
606
664
|
AaveClaimStkAave?: undefined;
|
|
665
|
+
LSVWithdraw?: undefined;
|
|
666
|
+
LSVBorrow?: undefined;
|
|
667
|
+
LSVSupply?: undefined;
|
|
668
|
+
LSVPayback?: undefined;
|
|
669
|
+
LSVSell?: undefined;
|
|
607
670
|
MorphoAaveV2Borrow?: undefined;
|
|
608
671
|
MorphoAaveV2Payback?: undefined;
|
|
609
672
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -613,6 +676,7 @@ declare const actionAddressesAllChains: {
|
|
|
613
676
|
MorphoAaveV3Payback?: undefined;
|
|
614
677
|
MorphoAaveV3Supply?: undefined;
|
|
615
678
|
MorphoAaveV3Withdraw?: undefined;
|
|
679
|
+
MorphoAaveV3SetManager?: undefined;
|
|
616
680
|
SparkBorrow?: undefined;
|
|
617
681
|
SparkClaimRewards?: undefined;
|
|
618
682
|
SparkCollateralSwitch?: undefined;
|
|
@@ -632,11 +696,13 @@ declare const actionAddressesAllChains: {
|
|
|
632
696
|
CompCollateralSwitch?: undefined;
|
|
633
697
|
FLAaveV2?: undefined;
|
|
634
698
|
FLAaveV3NoFee?: undefined;
|
|
699
|
+
FLAaveV3CarryDebt?: undefined;
|
|
635
700
|
FLDyDx?: undefined;
|
|
636
701
|
FLMaker?: undefined;
|
|
637
702
|
FLSpark?: undefined;
|
|
638
703
|
FLAction?: undefined;
|
|
639
704
|
FLGho?: undefined;
|
|
705
|
+
FLMorphoBlue?: undefined;
|
|
640
706
|
UniSupply?: undefined;
|
|
641
707
|
UniWithdraw?: undefined;
|
|
642
708
|
UniCollectV3?: undefined;
|
|
@@ -710,7 +776,17 @@ declare const actionAddressesAllChains: {
|
|
|
710
776
|
CurveUsdSwapper?: undefined;
|
|
711
777
|
CurveUsdSelfLiquidate?: undefined;
|
|
712
778
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
713
|
-
|
|
779
|
+
CurveUsdGetDebt?: undefined;
|
|
780
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
781
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
782
|
+
MorphoBlueSupply?: undefined;
|
|
783
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
784
|
+
MorphoBlueWithdraw?: undefined;
|
|
785
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
786
|
+
MorphoBlueBorrow?: undefined;
|
|
787
|
+
MorphoBluePayback?: undefined;
|
|
788
|
+
MorphoBlueSetAuth?: undefined;
|
|
789
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
714
790
|
AaveV3DelegateCredit?: undefined;
|
|
715
791
|
AaveV3RatioTrigger?: undefined;
|
|
716
792
|
GasFeeTakerL2?: undefined;
|
|
@@ -732,6 +808,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
732
808
|
UpdateSub: string;
|
|
733
809
|
TransferNFT: string;
|
|
734
810
|
CreateSub: string;
|
|
811
|
+
ApproveToken: string;
|
|
735
812
|
SDaiWrap: string;
|
|
736
813
|
SDaiUnwrap: string;
|
|
737
814
|
TokenizedVaultAdapter: string;
|
|
@@ -772,6 +849,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
772
849
|
AaveV3Borrow: string;
|
|
773
850
|
AaveV3ATokenPayback: string;
|
|
774
851
|
AaveV3View: string;
|
|
852
|
+
LSVWithdraw: string;
|
|
853
|
+
LSVBorrow: string;
|
|
854
|
+
LSVSupply: string;
|
|
855
|
+
LSVPayback: string;
|
|
856
|
+
LSVSell: string;
|
|
775
857
|
MorphoAaveV2Borrow: string;
|
|
776
858
|
MorphoAaveV2Payback: string;
|
|
777
859
|
MorphoAaveV2Supply: string;
|
|
@@ -781,6 +863,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
781
863
|
MorphoAaveV3Payback: string;
|
|
782
864
|
MorphoAaveV3Supply: string;
|
|
783
865
|
MorphoAaveV3Withdraw: string;
|
|
866
|
+
MorphoAaveV3SetManager: string;
|
|
784
867
|
SparkBorrow: string;
|
|
785
868
|
SparkClaimRewards: string;
|
|
786
869
|
SparkCollateralSwitch: string;
|
|
@@ -800,6 +883,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
800
883
|
CompCollateralSwitch: string;
|
|
801
884
|
FLAaveV2: string;
|
|
802
885
|
FLAaveV3NoFee: string;
|
|
886
|
+
FLAaveV3CarryDebt: string;
|
|
803
887
|
FLAaveV3: string;
|
|
804
888
|
FLDyDx: string;
|
|
805
889
|
FLMaker: string;
|
|
@@ -808,6 +892,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
808
892
|
FLAction: string;
|
|
809
893
|
FLUniV3: string;
|
|
810
894
|
FLGho: string;
|
|
895
|
+
FLMorphoBlue: string;
|
|
811
896
|
UniSupply: string;
|
|
812
897
|
UniWithdraw: string;
|
|
813
898
|
UniCollectV3: string;
|
|
@@ -888,7 +973,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
888
973
|
CurveUsdSwapper: string;
|
|
889
974
|
CurveUsdSelfLiquidate: string;
|
|
890
975
|
CurveUsdSelfLiquidateWithColl: string;
|
|
891
|
-
|
|
976
|
+
CurveUsdGetDebt: string;
|
|
977
|
+
CurveUsdCollRatioTrigger: string;
|
|
978
|
+
CurveUsdCollRatioCheck: string;
|
|
979
|
+
MorphoBlueSupply: string;
|
|
980
|
+
MorphoBlueSupplyCollateral: string;
|
|
981
|
+
MorphoBlueWithdraw: string;
|
|
982
|
+
MorphoBlueWithdrawCollateral: string;
|
|
983
|
+
MorphoBlueBorrow: string;
|
|
984
|
+
MorphoBluePayback: string;
|
|
985
|
+
MorphoBlueSetAuth: string;
|
|
986
|
+
MorphoBlueSetAuthWithSig: string;
|
|
892
987
|
AaveV3DelegateCredit?: undefined;
|
|
893
988
|
AaveV3RatioTrigger?: undefined;
|
|
894
989
|
GasFeeTakerL2?: undefined;
|
|
@@ -962,6 +1057,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
962
1057
|
AaveClaimAAVE?: undefined;
|
|
963
1058
|
AaveClaimStkAave?: undefined;
|
|
964
1059
|
AaveV3View?: undefined;
|
|
1060
|
+
LSVWithdraw?: undefined;
|
|
1061
|
+
LSVBorrow?: undefined;
|
|
1062
|
+
LSVSupply?: undefined;
|
|
1063
|
+
LSVPayback?: undefined;
|
|
1064
|
+
LSVSell?: undefined;
|
|
965
1065
|
MorphoAaveV2Borrow?: undefined;
|
|
966
1066
|
MorphoAaveV2Payback?: undefined;
|
|
967
1067
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -971,6 +1071,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
971
1071
|
MorphoAaveV3Payback?: undefined;
|
|
972
1072
|
MorphoAaveV3Supply?: undefined;
|
|
973
1073
|
MorphoAaveV3Withdraw?: undefined;
|
|
1074
|
+
MorphoAaveV3SetManager?: undefined;
|
|
974
1075
|
SparkBorrow?: undefined;
|
|
975
1076
|
SparkClaimRewards?: undefined;
|
|
976
1077
|
SparkCollateralSwitch?: undefined;
|
|
@@ -989,11 +1090,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
989
1090
|
CompGetDebt?: undefined;
|
|
990
1091
|
CompCollateralSwitch?: undefined;
|
|
991
1092
|
FLAaveV2?: undefined;
|
|
1093
|
+
FLAaveV3CarryDebt?: undefined;
|
|
992
1094
|
FLDyDx?: undefined;
|
|
993
1095
|
FLMaker?: undefined;
|
|
994
1096
|
FLSpark?: undefined;
|
|
995
1097
|
FLUniV3?: undefined;
|
|
996
1098
|
FLGho?: undefined;
|
|
1099
|
+
FLMorphoBlue?: undefined;
|
|
997
1100
|
UniSupply?: undefined;
|
|
998
1101
|
UniWithdraw?: undefined;
|
|
999
1102
|
DyDxWithdraw?: undefined;
|
|
@@ -1069,6 +1172,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1069
1172
|
CurveUsdSwapper?: undefined;
|
|
1070
1173
|
CurveUsdSelfLiquidate?: undefined;
|
|
1071
1174
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1175
|
+
CurveUsdGetDebt?: undefined;
|
|
1176
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1177
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1178
|
+
MorphoBlueSupply?: undefined;
|
|
1179
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
1180
|
+
MorphoBlueWithdraw?: undefined;
|
|
1181
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
1182
|
+
MorphoBlueBorrow?: undefined;
|
|
1183
|
+
MorphoBluePayback?: undefined;
|
|
1184
|
+
MorphoBlueSetAuth?: undefined;
|
|
1185
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1072
1186
|
} | {
|
|
1073
1187
|
DFSSell: string;
|
|
1074
1188
|
WrapEth: string;
|
|
@@ -1112,6 +1226,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1112
1226
|
UpdateSub?: undefined;
|
|
1113
1227
|
TransferNFT?: undefined;
|
|
1114
1228
|
CreateSub?: undefined;
|
|
1229
|
+
ApproveToken?: undefined;
|
|
1115
1230
|
SDaiWrap?: undefined;
|
|
1116
1231
|
SDaiUnwrap?: undefined;
|
|
1117
1232
|
McdGenerate?: undefined;
|
|
@@ -1142,6 +1257,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1142
1257
|
AaveClaimStkAave?: undefined;
|
|
1143
1258
|
AaveV3ClaimRewards?: undefined;
|
|
1144
1259
|
AaveV3View?: undefined;
|
|
1260
|
+
LSVWithdraw?: undefined;
|
|
1261
|
+
LSVBorrow?: undefined;
|
|
1262
|
+
LSVSupply?: undefined;
|
|
1263
|
+
LSVPayback?: undefined;
|
|
1264
|
+
LSVSell?: undefined;
|
|
1145
1265
|
MorphoAaveV2Borrow?: undefined;
|
|
1146
1266
|
MorphoAaveV2Payback?: undefined;
|
|
1147
1267
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -1151,6 +1271,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1151
1271
|
MorphoAaveV3Payback?: undefined;
|
|
1152
1272
|
MorphoAaveV3Supply?: undefined;
|
|
1153
1273
|
MorphoAaveV3Withdraw?: undefined;
|
|
1274
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1154
1275
|
SparkBorrow?: undefined;
|
|
1155
1276
|
SparkClaimRewards?: undefined;
|
|
1156
1277
|
SparkCollateralSwitch?: undefined;
|
|
@@ -1169,11 +1290,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1169
1290
|
CompGetDebt?: undefined;
|
|
1170
1291
|
CompCollateralSwitch?: undefined;
|
|
1171
1292
|
FLAaveV2?: undefined;
|
|
1293
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1172
1294
|
FLDyDx?: undefined;
|
|
1173
1295
|
FLMaker?: undefined;
|
|
1174
1296
|
FLSpark?: undefined;
|
|
1175
1297
|
FLUniV3?: undefined;
|
|
1176
1298
|
FLGho?: undefined;
|
|
1299
|
+
FLMorphoBlue?: undefined;
|
|
1177
1300
|
UniSupply?: undefined;
|
|
1178
1301
|
UniWithdraw?: undefined;
|
|
1179
1302
|
DyDxWithdraw?: undefined;
|
|
@@ -1242,7 +1365,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1242
1365
|
CurveUsdSwapper?: undefined;
|
|
1243
1366
|
CurveUsdSelfLiquidate?: undefined;
|
|
1244
1367
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1245
|
-
|
|
1368
|
+
CurveUsdGetDebt?: undefined;
|
|
1369
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1370
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1371
|
+
MorphoBlueSupply?: undefined;
|
|
1372
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
1373
|
+
MorphoBlueWithdraw?: undefined;
|
|
1374
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
1375
|
+
MorphoBlueBorrow?: undefined;
|
|
1376
|
+
MorphoBluePayback?: undefined;
|
|
1377
|
+
MorphoBlueSetAuth?: undefined;
|
|
1378
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1246
1379
|
AaveV3DelegateCredit?: undefined;
|
|
1247
1380
|
AaveV3RatioTrigger?: undefined;
|
|
1248
1381
|
} | {
|
|
@@ -1281,6 +1414,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1281
1414
|
UpdateSub?: undefined;
|
|
1282
1415
|
TransferNFT?: undefined;
|
|
1283
1416
|
CreateSub?: undefined;
|
|
1417
|
+
ApproveToken?: undefined;
|
|
1284
1418
|
SDaiWrap?: undefined;
|
|
1285
1419
|
SDaiUnwrap?: undefined;
|
|
1286
1420
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -1310,6 +1444,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1310
1444
|
AaveUnstake?: undefined;
|
|
1311
1445
|
AaveClaimAAVE?: undefined;
|
|
1312
1446
|
AaveClaimStkAave?: undefined;
|
|
1447
|
+
LSVWithdraw?: undefined;
|
|
1448
|
+
LSVBorrow?: undefined;
|
|
1449
|
+
LSVSupply?: undefined;
|
|
1450
|
+
LSVPayback?: undefined;
|
|
1451
|
+
LSVSell?: undefined;
|
|
1313
1452
|
MorphoAaveV2Borrow?: undefined;
|
|
1314
1453
|
MorphoAaveV2Payback?: undefined;
|
|
1315
1454
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -1319,6 +1458,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1319
1458
|
MorphoAaveV3Payback?: undefined;
|
|
1320
1459
|
MorphoAaveV3Supply?: undefined;
|
|
1321
1460
|
MorphoAaveV3Withdraw?: undefined;
|
|
1461
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1322
1462
|
SparkBorrow?: undefined;
|
|
1323
1463
|
SparkClaimRewards?: undefined;
|
|
1324
1464
|
SparkCollateralSwitch?: undefined;
|
|
@@ -1338,11 +1478,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1338
1478
|
CompCollateralSwitch?: undefined;
|
|
1339
1479
|
FLAaveV2?: undefined;
|
|
1340
1480
|
FLAaveV3NoFee?: undefined;
|
|
1481
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1341
1482
|
FLDyDx?: undefined;
|
|
1342
1483
|
FLMaker?: undefined;
|
|
1343
1484
|
FLSpark?: undefined;
|
|
1344
1485
|
FLAction?: undefined;
|
|
1345
1486
|
FLGho?: undefined;
|
|
1487
|
+
FLMorphoBlue?: undefined;
|
|
1346
1488
|
UniSupply?: undefined;
|
|
1347
1489
|
UniWithdraw?: undefined;
|
|
1348
1490
|
UniCollectV3?: undefined;
|
|
@@ -1416,7 +1558,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1416
1558
|
CurveUsdSwapper?: undefined;
|
|
1417
1559
|
CurveUsdSelfLiquidate?: undefined;
|
|
1418
1560
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1419
|
-
|
|
1561
|
+
CurveUsdGetDebt?: undefined;
|
|
1562
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1563
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1564
|
+
MorphoBlueSupply?: undefined;
|
|
1565
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
1566
|
+
MorphoBlueWithdraw?: undefined;
|
|
1567
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
1568
|
+
MorphoBlueBorrow?: undefined;
|
|
1569
|
+
MorphoBluePayback?: undefined;
|
|
1570
|
+
MorphoBlueSetAuth?: undefined;
|
|
1571
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1420
1572
|
AaveV3DelegateCredit?: undefined;
|
|
1421
1573
|
AaveV3RatioTrigger?: undefined;
|
|
1422
1574
|
GasFeeTakerL2?: undefined;
|
|
@@ -1581,6 +1733,7 @@ declare const _default: {
|
|
|
1581
1733
|
UpdateSub: string;
|
|
1582
1734
|
TransferNFT: string;
|
|
1583
1735
|
CreateSub: string;
|
|
1736
|
+
ApproveToken: string;
|
|
1584
1737
|
SDaiWrap: string;
|
|
1585
1738
|
SDaiUnwrap: string;
|
|
1586
1739
|
TokenizedVaultAdapter: string;
|
|
@@ -1621,6 +1774,11 @@ declare const _default: {
|
|
|
1621
1774
|
AaveV3Borrow: string;
|
|
1622
1775
|
AaveV3ATokenPayback: string;
|
|
1623
1776
|
AaveV3View: string;
|
|
1777
|
+
LSVWithdraw: string;
|
|
1778
|
+
LSVBorrow: string;
|
|
1779
|
+
LSVSupply: string;
|
|
1780
|
+
LSVPayback: string;
|
|
1781
|
+
LSVSell: string;
|
|
1624
1782
|
MorphoAaveV2Borrow: string;
|
|
1625
1783
|
MorphoAaveV2Payback: string;
|
|
1626
1784
|
MorphoAaveV2Supply: string;
|
|
@@ -1630,6 +1788,7 @@ declare const _default: {
|
|
|
1630
1788
|
MorphoAaveV3Payback: string;
|
|
1631
1789
|
MorphoAaveV3Supply: string;
|
|
1632
1790
|
MorphoAaveV3Withdraw: string;
|
|
1791
|
+
MorphoAaveV3SetManager: string;
|
|
1633
1792
|
SparkBorrow: string;
|
|
1634
1793
|
SparkClaimRewards: string;
|
|
1635
1794
|
SparkCollateralSwitch: string;
|
|
@@ -1649,6 +1808,7 @@ declare const _default: {
|
|
|
1649
1808
|
CompCollateralSwitch: string;
|
|
1650
1809
|
FLAaveV2: string;
|
|
1651
1810
|
FLAaveV3NoFee: string;
|
|
1811
|
+
FLAaveV3CarryDebt: string;
|
|
1652
1812
|
FLAaveV3: string;
|
|
1653
1813
|
FLDyDx: string;
|
|
1654
1814
|
FLMaker: string;
|
|
@@ -1657,6 +1817,7 @@ declare const _default: {
|
|
|
1657
1817
|
FLAction: string;
|
|
1658
1818
|
FLUniV3: string;
|
|
1659
1819
|
FLGho: string;
|
|
1820
|
+
FLMorphoBlue: string;
|
|
1660
1821
|
UniSupply: string;
|
|
1661
1822
|
UniWithdraw: string;
|
|
1662
1823
|
UniCollectV3: string;
|
|
@@ -1737,7 +1898,17 @@ declare const _default: {
|
|
|
1737
1898
|
CurveUsdSwapper: string;
|
|
1738
1899
|
CurveUsdSelfLiquidate: string;
|
|
1739
1900
|
CurveUsdSelfLiquidateWithColl: string;
|
|
1740
|
-
|
|
1901
|
+
CurveUsdGetDebt: string;
|
|
1902
|
+
CurveUsdCollRatioTrigger: string;
|
|
1903
|
+
CurveUsdCollRatioCheck: string;
|
|
1904
|
+
MorphoBlueSupply: string;
|
|
1905
|
+
MorphoBlueSupplyCollateral: string;
|
|
1906
|
+
MorphoBlueWithdraw: string;
|
|
1907
|
+
MorphoBlueWithdrawCollateral: string;
|
|
1908
|
+
MorphoBlueBorrow: string;
|
|
1909
|
+
MorphoBluePayback: string;
|
|
1910
|
+
MorphoBlueSetAuth: string;
|
|
1911
|
+
MorphoBlueSetAuthWithSig: string;
|
|
1741
1912
|
AaveV3DelegateCredit?: undefined;
|
|
1742
1913
|
AaveV3RatioTrigger?: undefined;
|
|
1743
1914
|
GasFeeTakerL2?: undefined;
|
|
@@ -1811,6 +1982,11 @@ declare const _default: {
|
|
|
1811
1982
|
AaveClaimAAVE?: undefined;
|
|
1812
1983
|
AaveClaimStkAave?: undefined;
|
|
1813
1984
|
AaveV3View?: undefined;
|
|
1985
|
+
LSVWithdraw?: undefined;
|
|
1986
|
+
LSVBorrow?: undefined;
|
|
1987
|
+
LSVSupply?: undefined;
|
|
1988
|
+
LSVPayback?: undefined;
|
|
1989
|
+
LSVSell?: undefined;
|
|
1814
1990
|
MorphoAaveV2Borrow?: undefined;
|
|
1815
1991
|
MorphoAaveV2Payback?: undefined;
|
|
1816
1992
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -1820,6 +1996,7 @@ declare const _default: {
|
|
|
1820
1996
|
MorphoAaveV3Payback?: undefined;
|
|
1821
1997
|
MorphoAaveV3Supply?: undefined;
|
|
1822
1998
|
MorphoAaveV3Withdraw?: undefined;
|
|
1999
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1823
2000
|
SparkBorrow?: undefined;
|
|
1824
2001
|
SparkClaimRewards?: undefined;
|
|
1825
2002
|
SparkCollateralSwitch?: undefined;
|
|
@@ -1838,11 +2015,13 @@ declare const _default: {
|
|
|
1838
2015
|
CompGetDebt?: undefined;
|
|
1839
2016
|
CompCollateralSwitch?: undefined;
|
|
1840
2017
|
FLAaveV2?: undefined;
|
|
2018
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1841
2019
|
FLDyDx?: undefined;
|
|
1842
2020
|
FLMaker?: undefined;
|
|
1843
2021
|
FLSpark?: undefined;
|
|
1844
2022
|
FLUniV3?: undefined;
|
|
1845
2023
|
FLGho?: undefined;
|
|
2024
|
+
FLMorphoBlue?: undefined;
|
|
1846
2025
|
UniSupply?: undefined;
|
|
1847
2026
|
UniWithdraw?: undefined;
|
|
1848
2027
|
DyDxWithdraw?: undefined;
|
|
@@ -1918,6 +2097,17 @@ declare const _default: {
|
|
|
1918
2097
|
CurveUsdSwapper?: undefined;
|
|
1919
2098
|
CurveUsdSelfLiquidate?: undefined;
|
|
1920
2099
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2100
|
+
CurveUsdGetDebt?: undefined;
|
|
2101
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2102
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2103
|
+
MorphoBlueSupply?: undefined;
|
|
2104
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
2105
|
+
MorphoBlueWithdraw?: undefined;
|
|
2106
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
2107
|
+
MorphoBlueBorrow?: undefined;
|
|
2108
|
+
MorphoBluePayback?: undefined;
|
|
2109
|
+
MorphoBlueSetAuth?: undefined;
|
|
2110
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1921
2111
|
} | {
|
|
1922
2112
|
DFSSell: string;
|
|
1923
2113
|
WrapEth: string;
|
|
@@ -1961,6 +2151,7 @@ declare const _default: {
|
|
|
1961
2151
|
UpdateSub?: undefined;
|
|
1962
2152
|
TransferNFT?: undefined;
|
|
1963
2153
|
CreateSub?: undefined;
|
|
2154
|
+
ApproveToken?: undefined;
|
|
1964
2155
|
SDaiWrap?: undefined;
|
|
1965
2156
|
SDaiUnwrap?: undefined;
|
|
1966
2157
|
McdGenerate?: undefined;
|
|
@@ -1991,6 +2182,11 @@ declare const _default: {
|
|
|
1991
2182
|
AaveClaimStkAave?: undefined;
|
|
1992
2183
|
AaveV3ClaimRewards?: undefined;
|
|
1993
2184
|
AaveV3View?: undefined;
|
|
2185
|
+
LSVWithdraw?: undefined;
|
|
2186
|
+
LSVBorrow?: undefined;
|
|
2187
|
+
LSVSupply?: undefined;
|
|
2188
|
+
LSVPayback?: undefined;
|
|
2189
|
+
LSVSell?: undefined;
|
|
1994
2190
|
MorphoAaveV2Borrow?: undefined;
|
|
1995
2191
|
MorphoAaveV2Payback?: undefined;
|
|
1996
2192
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2000,6 +2196,7 @@ declare const _default: {
|
|
|
2000
2196
|
MorphoAaveV3Payback?: undefined;
|
|
2001
2197
|
MorphoAaveV3Supply?: undefined;
|
|
2002
2198
|
MorphoAaveV3Withdraw?: undefined;
|
|
2199
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2003
2200
|
SparkBorrow?: undefined;
|
|
2004
2201
|
SparkClaimRewards?: undefined;
|
|
2005
2202
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2018,11 +2215,13 @@ declare const _default: {
|
|
|
2018
2215
|
CompGetDebt?: undefined;
|
|
2019
2216
|
CompCollateralSwitch?: undefined;
|
|
2020
2217
|
FLAaveV2?: undefined;
|
|
2218
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2021
2219
|
FLDyDx?: undefined;
|
|
2022
2220
|
FLMaker?: undefined;
|
|
2023
2221
|
FLSpark?: undefined;
|
|
2024
2222
|
FLUniV3?: undefined;
|
|
2025
2223
|
FLGho?: undefined;
|
|
2224
|
+
FLMorphoBlue?: undefined;
|
|
2026
2225
|
UniSupply?: undefined;
|
|
2027
2226
|
UniWithdraw?: undefined;
|
|
2028
2227
|
DyDxWithdraw?: undefined;
|
|
@@ -2091,7 +2290,17 @@ declare const _default: {
|
|
|
2091
2290
|
CurveUsdSwapper?: undefined;
|
|
2092
2291
|
CurveUsdSelfLiquidate?: undefined;
|
|
2093
2292
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2094
|
-
|
|
2293
|
+
CurveUsdGetDebt?: undefined;
|
|
2294
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2295
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2296
|
+
MorphoBlueSupply?: undefined;
|
|
2297
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
2298
|
+
MorphoBlueWithdraw?: undefined;
|
|
2299
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
2300
|
+
MorphoBlueBorrow?: undefined;
|
|
2301
|
+
MorphoBluePayback?: undefined;
|
|
2302
|
+
MorphoBlueSetAuth?: undefined;
|
|
2303
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
2095
2304
|
AaveV3DelegateCredit?: undefined;
|
|
2096
2305
|
AaveV3RatioTrigger?: undefined;
|
|
2097
2306
|
} | {
|
|
@@ -2130,6 +2339,7 @@ declare const _default: {
|
|
|
2130
2339
|
UpdateSub?: undefined;
|
|
2131
2340
|
TransferNFT?: undefined;
|
|
2132
2341
|
CreateSub?: undefined;
|
|
2342
|
+
ApproveToken?: undefined;
|
|
2133
2343
|
SDaiWrap?: undefined;
|
|
2134
2344
|
SDaiUnwrap?: undefined;
|
|
2135
2345
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -2159,6 +2369,11 @@ declare const _default: {
|
|
|
2159
2369
|
AaveUnstake?: undefined;
|
|
2160
2370
|
AaveClaimAAVE?: undefined;
|
|
2161
2371
|
AaveClaimStkAave?: undefined;
|
|
2372
|
+
LSVWithdraw?: undefined;
|
|
2373
|
+
LSVBorrow?: undefined;
|
|
2374
|
+
LSVSupply?: undefined;
|
|
2375
|
+
LSVPayback?: undefined;
|
|
2376
|
+
LSVSell?: undefined;
|
|
2162
2377
|
MorphoAaveV2Borrow?: undefined;
|
|
2163
2378
|
MorphoAaveV2Payback?: undefined;
|
|
2164
2379
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2168,6 +2383,7 @@ declare const _default: {
|
|
|
2168
2383
|
MorphoAaveV3Payback?: undefined;
|
|
2169
2384
|
MorphoAaveV3Supply?: undefined;
|
|
2170
2385
|
MorphoAaveV3Withdraw?: undefined;
|
|
2386
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2171
2387
|
SparkBorrow?: undefined;
|
|
2172
2388
|
SparkClaimRewards?: undefined;
|
|
2173
2389
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2187,11 +2403,13 @@ declare const _default: {
|
|
|
2187
2403
|
CompCollateralSwitch?: undefined;
|
|
2188
2404
|
FLAaveV2?: undefined;
|
|
2189
2405
|
FLAaveV3NoFee?: undefined;
|
|
2406
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2190
2407
|
FLDyDx?: undefined;
|
|
2191
2408
|
FLMaker?: undefined;
|
|
2192
2409
|
FLSpark?: undefined;
|
|
2193
2410
|
FLAction?: undefined;
|
|
2194
2411
|
FLGho?: undefined;
|
|
2412
|
+
FLMorphoBlue?: undefined;
|
|
2195
2413
|
UniSupply?: undefined;
|
|
2196
2414
|
UniWithdraw?: undefined;
|
|
2197
2415
|
UniCollectV3?: undefined;
|
|
@@ -2265,7 +2483,17 @@ declare const _default: {
|
|
|
2265
2483
|
CurveUsdSwapper?: undefined;
|
|
2266
2484
|
CurveUsdSelfLiquidate?: undefined;
|
|
2267
2485
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2268
|
-
|
|
2486
|
+
CurveUsdGetDebt?: undefined;
|
|
2487
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2488
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2489
|
+
MorphoBlueSupply?: undefined;
|
|
2490
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
2491
|
+
MorphoBlueWithdraw?: undefined;
|
|
2492
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
2493
|
+
MorphoBlueBorrow?: undefined;
|
|
2494
|
+
MorphoBluePayback?: undefined;
|
|
2495
|
+
MorphoBlueSetAuth?: undefined;
|
|
2496
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
2269
2497
|
AaveV3DelegateCredit?: undefined;
|
|
2270
2498
|
AaveV3RatioTrigger?: undefined;
|
|
2271
2499
|
GasFeeTakerL2?: undefined;
|
|
@@ -2287,6 +2515,7 @@ declare const _default: {
|
|
|
2287
2515
|
UpdateSub: string;
|
|
2288
2516
|
TransferNFT: string;
|
|
2289
2517
|
CreateSub: string;
|
|
2518
|
+
ApproveToken: string;
|
|
2290
2519
|
SDaiWrap: string;
|
|
2291
2520
|
SDaiUnwrap: string;
|
|
2292
2521
|
TokenizedVaultAdapter: string;
|
|
@@ -2327,6 +2556,11 @@ declare const _default: {
|
|
|
2327
2556
|
AaveV3Borrow: string;
|
|
2328
2557
|
AaveV3ATokenPayback: string;
|
|
2329
2558
|
AaveV3View: string;
|
|
2559
|
+
LSVWithdraw: string;
|
|
2560
|
+
LSVBorrow: string;
|
|
2561
|
+
LSVSupply: string;
|
|
2562
|
+
LSVPayback: string;
|
|
2563
|
+
LSVSell: string;
|
|
2330
2564
|
MorphoAaveV2Borrow: string;
|
|
2331
2565
|
MorphoAaveV2Payback: string;
|
|
2332
2566
|
MorphoAaveV2Supply: string;
|
|
@@ -2336,6 +2570,7 @@ declare const _default: {
|
|
|
2336
2570
|
MorphoAaveV3Payback: string;
|
|
2337
2571
|
MorphoAaveV3Supply: string;
|
|
2338
2572
|
MorphoAaveV3Withdraw: string;
|
|
2573
|
+
MorphoAaveV3SetManager: string;
|
|
2339
2574
|
SparkBorrow: string;
|
|
2340
2575
|
SparkClaimRewards: string;
|
|
2341
2576
|
SparkCollateralSwitch: string;
|
|
@@ -2355,6 +2590,7 @@ declare const _default: {
|
|
|
2355
2590
|
CompCollateralSwitch: string;
|
|
2356
2591
|
FLAaveV2: string;
|
|
2357
2592
|
FLAaveV3NoFee: string;
|
|
2593
|
+
FLAaveV3CarryDebt: string;
|
|
2358
2594
|
FLAaveV3: string;
|
|
2359
2595
|
FLDyDx: string;
|
|
2360
2596
|
FLMaker: string;
|
|
@@ -2363,6 +2599,7 @@ declare const _default: {
|
|
|
2363
2599
|
FLAction: string;
|
|
2364
2600
|
FLUniV3: string;
|
|
2365
2601
|
FLGho: string;
|
|
2602
|
+
FLMorphoBlue: string;
|
|
2366
2603
|
UniSupply: string;
|
|
2367
2604
|
UniWithdraw: string;
|
|
2368
2605
|
UniCollectV3: string;
|
|
@@ -2443,7 +2680,17 @@ declare const _default: {
|
|
|
2443
2680
|
CurveUsdSwapper: string;
|
|
2444
2681
|
CurveUsdSelfLiquidate: string;
|
|
2445
2682
|
CurveUsdSelfLiquidateWithColl: string;
|
|
2446
|
-
|
|
2683
|
+
CurveUsdGetDebt: string;
|
|
2684
|
+
CurveUsdCollRatioTrigger: string;
|
|
2685
|
+
CurveUsdCollRatioCheck: string;
|
|
2686
|
+
MorphoBlueSupply: string;
|
|
2687
|
+
MorphoBlueSupplyCollateral: string;
|
|
2688
|
+
MorphoBlueWithdraw: string;
|
|
2689
|
+
MorphoBlueWithdrawCollateral: string;
|
|
2690
|
+
MorphoBlueBorrow: string;
|
|
2691
|
+
MorphoBluePayback: string;
|
|
2692
|
+
MorphoBlueSetAuth: string;
|
|
2693
|
+
MorphoBlueSetAuthWithSig: string;
|
|
2447
2694
|
AaveV3DelegateCredit?: undefined;
|
|
2448
2695
|
AaveV3RatioTrigger?: undefined;
|
|
2449
2696
|
GasFeeTakerL2?: undefined;
|
|
@@ -2517,6 +2764,11 @@ declare const _default: {
|
|
|
2517
2764
|
AaveClaimAAVE?: undefined;
|
|
2518
2765
|
AaveClaimStkAave?: undefined;
|
|
2519
2766
|
AaveV3View?: undefined;
|
|
2767
|
+
LSVWithdraw?: undefined;
|
|
2768
|
+
LSVBorrow?: undefined;
|
|
2769
|
+
LSVSupply?: undefined;
|
|
2770
|
+
LSVPayback?: undefined;
|
|
2771
|
+
LSVSell?: undefined;
|
|
2520
2772
|
MorphoAaveV2Borrow?: undefined;
|
|
2521
2773
|
MorphoAaveV2Payback?: undefined;
|
|
2522
2774
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2526,6 +2778,7 @@ declare const _default: {
|
|
|
2526
2778
|
MorphoAaveV3Payback?: undefined;
|
|
2527
2779
|
MorphoAaveV3Supply?: undefined;
|
|
2528
2780
|
MorphoAaveV3Withdraw?: undefined;
|
|
2781
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2529
2782
|
SparkBorrow?: undefined;
|
|
2530
2783
|
SparkClaimRewards?: undefined;
|
|
2531
2784
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2544,11 +2797,13 @@ declare const _default: {
|
|
|
2544
2797
|
CompGetDebt?: undefined;
|
|
2545
2798
|
CompCollateralSwitch?: undefined;
|
|
2546
2799
|
FLAaveV2?: undefined;
|
|
2800
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2547
2801
|
FLDyDx?: undefined;
|
|
2548
2802
|
FLMaker?: undefined;
|
|
2549
2803
|
FLSpark?: undefined;
|
|
2550
2804
|
FLUniV3?: undefined;
|
|
2551
2805
|
FLGho?: undefined;
|
|
2806
|
+
FLMorphoBlue?: undefined;
|
|
2552
2807
|
UniSupply?: undefined;
|
|
2553
2808
|
UniWithdraw?: undefined;
|
|
2554
2809
|
DyDxWithdraw?: undefined;
|
|
@@ -2624,6 +2879,17 @@ declare const _default: {
|
|
|
2624
2879
|
CurveUsdSwapper?: undefined;
|
|
2625
2880
|
CurveUsdSelfLiquidate?: undefined;
|
|
2626
2881
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2882
|
+
CurveUsdGetDebt?: undefined;
|
|
2883
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2884
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2885
|
+
MorphoBlueSupply?: undefined;
|
|
2886
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
2887
|
+
MorphoBlueWithdraw?: undefined;
|
|
2888
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
2889
|
+
MorphoBlueBorrow?: undefined;
|
|
2890
|
+
MorphoBluePayback?: undefined;
|
|
2891
|
+
MorphoBlueSetAuth?: undefined;
|
|
2892
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
2627
2893
|
} | {
|
|
2628
2894
|
DFSSell: string;
|
|
2629
2895
|
WrapEth: string;
|
|
@@ -2667,6 +2933,7 @@ declare const _default: {
|
|
|
2667
2933
|
UpdateSub?: undefined;
|
|
2668
2934
|
TransferNFT?: undefined;
|
|
2669
2935
|
CreateSub?: undefined;
|
|
2936
|
+
ApproveToken?: undefined;
|
|
2670
2937
|
SDaiWrap?: undefined;
|
|
2671
2938
|
SDaiUnwrap?: undefined;
|
|
2672
2939
|
McdGenerate?: undefined;
|
|
@@ -2697,6 +2964,11 @@ declare const _default: {
|
|
|
2697
2964
|
AaveClaimStkAave?: undefined;
|
|
2698
2965
|
AaveV3ClaimRewards?: undefined;
|
|
2699
2966
|
AaveV3View?: undefined;
|
|
2967
|
+
LSVWithdraw?: undefined;
|
|
2968
|
+
LSVBorrow?: undefined;
|
|
2969
|
+
LSVSupply?: undefined;
|
|
2970
|
+
LSVPayback?: undefined;
|
|
2971
|
+
LSVSell?: undefined;
|
|
2700
2972
|
MorphoAaveV2Borrow?: undefined;
|
|
2701
2973
|
MorphoAaveV2Payback?: undefined;
|
|
2702
2974
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2706,6 +2978,7 @@ declare const _default: {
|
|
|
2706
2978
|
MorphoAaveV3Payback?: undefined;
|
|
2707
2979
|
MorphoAaveV3Supply?: undefined;
|
|
2708
2980
|
MorphoAaveV3Withdraw?: undefined;
|
|
2981
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2709
2982
|
SparkBorrow?: undefined;
|
|
2710
2983
|
SparkClaimRewards?: undefined;
|
|
2711
2984
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2724,11 +2997,13 @@ declare const _default: {
|
|
|
2724
2997
|
CompGetDebt?: undefined;
|
|
2725
2998
|
CompCollateralSwitch?: undefined;
|
|
2726
2999
|
FLAaveV2?: undefined;
|
|
3000
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2727
3001
|
FLDyDx?: undefined;
|
|
2728
3002
|
FLMaker?: undefined;
|
|
2729
3003
|
FLSpark?: undefined;
|
|
2730
3004
|
FLUniV3?: undefined;
|
|
2731
3005
|
FLGho?: undefined;
|
|
3006
|
+
FLMorphoBlue?: undefined;
|
|
2732
3007
|
UniSupply?: undefined;
|
|
2733
3008
|
UniWithdraw?: undefined;
|
|
2734
3009
|
DyDxWithdraw?: undefined;
|
|
@@ -2797,7 +3072,17 @@ declare const _default: {
|
|
|
2797
3072
|
CurveUsdSwapper?: undefined;
|
|
2798
3073
|
CurveUsdSelfLiquidate?: undefined;
|
|
2799
3074
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2800
|
-
|
|
3075
|
+
CurveUsdGetDebt?: undefined;
|
|
3076
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
3077
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
3078
|
+
MorphoBlueSupply?: undefined;
|
|
3079
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
3080
|
+
MorphoBlueWithdraw?: undefined;
|
|
3081
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
3082
|
+
MorphoBlueBorrow?: undefined;
|
|
3083
|
+
MorphoBluePayback?: undefined;
|
|
3084
|
+
MorphoBlueSetAuth?: undefined;
|
|
3085
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
2801
3086
|
AaveV3DelegateCredit?: undefined;
|
|
2802
3087
|
AaveV3RatioTrigger?: undefined;
|
|
2803
3088
|
} | {
|
|
@@ -2836,6 +3121,7 @@ declare const _default: {
|
|
|
2836
3121
|
UpdateSub?: undefined;
|
|
2837
3122
|
TransferNFT?: undefined;
|
|
2838
3123
|
CreateSub?: undefined;
|
|
3124
|
+
ApproveToken?: undefined;
|
|
2839
3125
|
SDaiWrap?: undefined;
|
|
2840
3126
|
SDaiUnwrap?: undefined;
|
|
2841
3127
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -2865,6 +3151,11 @@ declare const _default: {
|
|
|
2865
3151
|
AaveUnstake?: undefined;
|
|
2866
3152
|
AaveClaimAAVE?: undefined;
|
|
2867
3153
|
AaveClaimStkAave?: undefined;
|
|
3154
|
+
LSVWithdraw?: undefined;
|
|
3155
|
+
LSVBorrow?: undefined;
|
|
3156
|
+
LSVSupply?: undefined;
|
|
3157
|
+
LSVPayback?: undefined;
|
|
3158
|
+
LSVSell?: undefined;
|
|
2868
3159
|
MorphoAaveV2Borrow?: undefined;
|
|
2869
3160
|
MorphoAaveV2Payback?: undefined;
|
|
2870
3161
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2874,6 +3165,7 @@ declare const _default: {
|
|
|
2874
3165
|
MorphoAaveV3Payback?: undefined;
|
|
2875
3166
|
MorphoAaveV3Supply?: undefined;
|
|
2876
3167
|
MorphoAaveV3Withdraw?: undefined;
|
|
3168
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2877
3169
|
SparkBorrow?: undefined;
|
|
2878
3170
|
SparkClaimRewards?: undefined;
|
|
2879
3171
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2893,11 +3185,13 @@ declare const _default: {
|
|
|
2893
3185
|
CompCollateralSwitch?: undefined;
|
|
2894
3186
|
FLAaveV2?: undefined;
|
|
2895
3187
|
FLAaveV3NoFee?: undefined;
|
|
3188
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2896
3189
|
FLDyDx?: undefined;
|
|
2897
3190
|
FLMaker?: undefined;
|
|
2898
3191
|
FLSpark?: undefined;
|
|
2899
3192
|
FLAction?: undefined;
|
|
2900
3193
|
FLGho?: undefined;
|
|
3194
|
+
FLMorphoBlue?: undefined;
|
|
2901
3195
|
UniSupply?: undefined;
|
|
2902
3196
|
UniWithdraw?: undefined;
|
|
2903
3197
|
UniCollectV3?: undefined;
|
|
@@ -2971,7 +3265,17 @@ declare const _default: {
|
|
|
2971
3265
|
CurveUsdSwapper?: undefined;
|
|
2972
3266
|
CurveUsdSelfLiquidate?: undefined;
|
|
2973
3267
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2974
|
-
|
|
3268
|
+
CurveUsdGetDebt?: undefined;
|
|
3269
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
3270
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
3271
|
+
MorphoBlueSupply?: undefined;
|
|
3272
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
3273
|
+
MorphoBlueWithdraw?: undefined;
|
|
3274
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
3275
|
+
MorphoBlueBorrow?: undefined;
|
|
3276
|
+
MorphoBluePayback?: undefined;
|
|
3277
|
+
MorphoBlueSetAuth?: undefined;
|
|
3278
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
2975
3279
|
AaveV3DelegateCredit?: undefined;
|
|
2976
3280
|
AaveV3RatioTrigger?: undefined;
|
|
2977
3281
|
GasFeeTakerL2?: undefined;
|