@defisaver/sdk 1.0.60 → 1.0.62
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/actions/aave/AaveBorrowAction.js +8 -0
- package/esm/src/actions/basic/ApproveTokenAction.js +5 -0
- package/esm/src/actions/basic/CreateSubAction.js +2 -1
- package/esm/src/actions/basic/LSVSellAction.d.ts +23 -0
- package/esm/src/actions/basic/LSVSellAction.js +61 -0
- package/esm/src/actions/basic/UpdateSubAction.js +1 -1
- package/esm/src/actions/basic/index.d.ts +2 -1
- package/esm/src/actions/basic/index.js +2 -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/index.d.ts +1 -0
- package/esm/src/actions/flashloan/index.js +1 -0
- package/esm/src/actions/index.d.ts +2 -1
- package/esm/src/actions/index.js +2 -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/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/addresses.d.ts +43 -3
- package/esm/src/addresses.js +12 -0
- package/esm/src/index.d.ts +172 -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/index.d.ts +2 -0
- package/esm/src/triggers/index.js +2 -0
- 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/CreateSubAction.ts +3 -3
- package/src/actions/basic/LSVSellAction.ts +61 -0
- package/src/actions/basic/UpdateSubAction.ts +1 -1
- package/src/actions/basic/index.ts +2 -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/index.ts +1 -0
- package/src/actions/index.ts +2 -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/morpho/aaveV3/MorphoAaveV3SetManagerAction.ts +32 -0
- package/src/actions/morpho/index.ts +1 -0
- package/src/addresses.ts +13 -0
- package/src/triggers/AaveV2RatioTrigger.ts +14 -0
- package/src/triggers/CurveUsdCollRatioTrigger.ts +14 -0
- package/src/triggers/index.ts +2 -0
- package/src/utils/basic-utils.ts +1 -1
- package/src/utils/curveusd-utils.ts +7 -3
- package/test/actions/basic/CreateSubAction.js +29 -0
- package/umd/index.js +1554 -1127
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;
|
|
@@ -182,7 +190,9 @@ declare const actionAddressesAllChains: {
|
|
|
182
190
|
CurveUsdSwapper: string;
|
|
183
191
|
CurveUsdSelfLiquidate: string;
|
|
184
192
|
CurveUsdSelfLiquidateWithColl: string;
|
|
185
|
-
|
|
193
|
+
CurveUsdGetDebt: string;
|
|
194
|
+
CurveUsdCollRatioTrigger: string;
|
|
195
|
+
CurveUsdCollRatioCheck: string;
|
|
186
196
|
AaveV3DelegateCredit?: undefined;
|
|
187
197
|
AaveV3RatioTrigger?: undefined;
|
|
188
198
|
GasFeeTakerL2?: undefined;
|
|
@@ -256,6 +266,11 @@ declare const actionAddressesAllChains: {
|
|
|
256
266
|
AaveClaimAAVE?: undefined;
|
|
257
267
|
AaveClaimStkAave?: undefined;
|
|
258
268
|
AaveV3View?: undefined;
|
|
269
|
+
LSVWithdraw?: undefined;
|
|
270
|
+
LSVBorrow?: undefined;
|
|
271
|
+
LSVSupply?: undefined;
|
|
272
|
+
LSVPayback?: undefined;
|
|
273
|
+
LSVSell?: undefined;
|
|
259
274
|
MorphoAaveV2Borrow?: undefined;
|
|
260
275
|
MorphoAaveV2Payback?: undefined;
|
|
261
276
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -265,6 +280,7 @@ declare const actionAddressesAllChains: {
|
|
|
265
280
|
MorphoAaveV3Payback?: undefined;
|
|
266
281
|
MorphoAaveV3Supply?: undefined;
|
|
267
282
|
MorphoAaveV3Withdraw?: undefined;
|
|
283
|
+
MorphoAaveV3SetManager?: undefined;
|
|
268
284
|
SparkBorrow?: undefined;
|
|
269
285
|
SparkClaimRewards?: undefined;
|
|
270
286
|
SparkCollateralSwitch?: undefined;
|
|
@@ -283,6 +299,7 @@ declare const actionAddressesAllChains: {
|
|
|
283
299
|
CompGetDebt?: undefined;
|
|
284
300
|
CompCollateralSwitch?: undefined;
|
|
285
301
|
FLAaveV2?: undefined;
|
|
302
|
+
FLAaveV3CarryDebt?: undefined;
|
|
286
303
|
FLDyDx?: undefined;
|
|
287
304
|
FLMaker?: undefined;
|
|
288
305
|
FLSpark?: undefined;
|
|
@@ -363,6 +380,9 @@ declare const actionAddressesAllChains: {
|
|
|
363
380
|
CurveUsdSwapper?: undefined;
|
|
364
381
|
CurveUsdSelfLiquidate?: undefined;
|
|
365
382
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
383
|
+
CurveUsdGetDebt?: undefined;
|
|
384
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
385
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
366
386
|
} | {
|
|
367
387
|
DFSSell: string;
|
|
368
388
|
WrapEth: string;
|
|
@@ -406,6 +426,7 @@ declare const actionAddressesAllChains: {
|
|
|
406
426
|
UpdateSub?: undefined;
|
|
407
427
|
TransferNFT?: undefined;
|
|
408
428
|
CreateSub?: undefined;
|
|
429
|
+
ApproveToken?: undefined;
|
|
409
430
|
SDaiWrap?: undefined;
|
|
410
431
|
SDaiUnwrap?: undefined;
|
|
411
432
|
McdGenerate?: undefined;
|
|
@@ -436,6 +457,11 @@ declare const actionAddressesAllChains: {
|
|
|
436
457
|
AaveClaimStkAave?: undefined;
|
|
437
458
|
AaveV3ClaimRewards?: undefined;
|
|
438
459
|
AaveV3View?: undefined;
|
|
460
|
+
LSVWithdraw?: undefined;
|
|
461
|
+
LSVBorrow?: undefined;
|
|
462
|
+
LSVSupply?: undefined;
|
|
463
|
+
LSVPayback?: undefined;
|
|
464
|
+
LSVSell?: undefined;
|
|
439
465
|
MorphoAaveV2Borrow?: undefined;
|
|
440
466
|
MorphoAaveV2Payback?: undefined;
|
|
441
467
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -445,6 +471,7 @@ declare const actionAddressesAllChains: {
|
|
|
445
471
|
MorphoAaveV3Payback?: undefined;
|
|
446
472
|
MorphoAaveV3Supply?: undefined;
|
|
447
473
|
MorphoAaveV3Withdraw?: undefined;
|
|
474
|
+
MorphoAaveV3SetManager?: undefined;
|
|
448
475
|
SparkBorrow?: undefined;
|
|
449
476
|
SparkClaimRewards?: undefined;
|
|
450
477
|
SparkCollateralSwitch?: undefined;
|
|
@@ -463,6 +490,7 @@ declare const actionAddressesAllChains: {
|
|
|
463
490
|
CompGetDebt?: undefined;
|
|
464
491
|
CompCollateralSwitch?: undefined;
|
|
465
492
|
FLAaveV2?: undefined;
|
|
493
|
+
FLAaveV3CarryDebt?: undefined;
|
|
466
494
|
FLDyDx?: undefined;
|
|
467
495
|
FLMaker?: undefined;
|
|
468
496
|
FLSpark?: undefined;
|
|
@@ -536,7 +564,9 @@ declare const actionAddressesAllChains: {
|
|
|
536
564
|
CurveUsdSwapper?: undefined;
|
|
537
565
|
CurveUsdSelfLiquidate?: undefined;
|
|
538
566
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
539
|
-
|
|
567
|
+
CurveUsdGetDebt?: undefined;
|
|
568
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
569
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
540
570
|
AaveV3DelegateCredit?: undefined;
|
|
541
571
|
AaveV3RatioTrigger?: undefined;
|
|
542
572
|
} | {
|
|
@@ -575,6 +605,7 @@ declare const actionAddressesAllChains: {
|
|
|
575
605
|
UpdateSub?: undefined;
|
|
576
606
|
TransferNFT?: undefined;
|
|
577
607
|
CreateSub?: undefined;
|
|
608
|
+
ApproveToken?: undefined;
|
|
578
609
|
SDaiWrap?: undefined;
|
|
579
610
|
SDaiUnwrap?: undefined;
|
|
580
611
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -604,6 +635,11 @@ declare const actionAddressesAllChains: {
|
|
|
604
635
|
AaveUnstake?: undefined;
|
|
605
636
|
AaveClaimAAVE?: undefined;
|
|
606
637
|
AaveClaimStkAave?: undefined;
|
|
638
|
+
LSVWithdraw?: undefined;
|
|
639
|
+
LSVBorrow?: undefined;
|
|
640
|
+
LSVSupply?: undefined;
|
|
641
|
+
LSVPayback?: undefined;
|
|
642
|
+
LSVSell?: undefined;
|
|
607
643
|
MorphoAaveV2Borrow?: undefined;
|
|
608
644
|
MorphoAaveV2Payback?: undefined;
|
|
609
645
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -613,6 +649,7 @@ declare const actionAddressesAllChains: {
|
|
|
613
649
|
MorphoAaveV3Payback?: undefined;
|
|
614
650
|
MorphoAaveV3Supply?: undefined;
|
|
615
651
|
MorphoAaveV3Withdraw?: undefined;
|
|
652
|
+
MorphoAaveV3SetManager?: undefined;
|
|
616
653
|
SparkBorrow?: undefined;
|
|
617
654
|
SparkClaimRewards?: undefined;
|
|
618
655
|
SparkCollateralSwitch?: undefined;
|
|
@@ -632,6 +669,7 @@ declare const actionAddressesAllChains: {
|
|
|
632
669
|
CompCollateralSwitch?: undefined;
|
|
633
670
|
FLAaveV2?: undefined;
|
|
634
671
|
FLAaveV3NoFee?: undefined;
|
|
672
|
+
FLAaveV3CarryDebt?: undefined;
|
|
635
673
|
FLDyDx?: undefined;
|
|
636
674
|
FLMaker?: undefined;
|
|
637
675
|
FLSpark?: undefined;
|
|
@@ -710,7 +748,9 @@ declare const actionAddressesAllChains: {
|
|
|
710
748
|
CurveUsdSwapper?: undefined;
|
|
711
749
|
CurveUsdSelfLiquidate?: undefined;
|
|
712
750
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
713
|
-
|
|
751
|
+
CurveUsdGetDebt?: undefined;
|
|
752
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
753
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
714
754
|
AaveV3DelegateCredit?: undefined;
|
|
715
755
|
AaveV3RatioTrigger?: undefined;
|
|
716
756
|
GasFeeTakerL2?: undefined;
|
|
@@ -732,6 +772,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
732
772
|
UpdateSub: string;
|
|
733
773
|
TransferNFT: string;
|
|
734
774
|
CreateSub: string;
|
|
775
|
+
ApproveToken: string;
|
|
735
776
|
SDaiWrap: string;
|
|
736
777
|
SDaiUnwrap: string;
|
|
737
778
|
TokenizedVaultAdapter: string;
|
|
@@ -772,6 +813,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
772
813
|
AaveV3Borrow: string;
|
|
773
814
|
AaveV3ATokenPayback: string;
|
|
774
815
|
AaveV3View: string;
|
|
816
|
+
LSVWithdraw: string;
|
|
817
|
+
LSVBorrow: string;
|
|
818
|
+
LSVSupply: string;
|
|
819
|
+
LSVPayback: string;
|
|
820
|
+
LSVSell: string;
|
|
775
821
|
MorphoAaveV2Borrow: string;
|
|
776
822
|
MorphoAaveV2Payback: string;
|
|
777
823
|
MorphoAaveV2Supply: string;
|
|
@@ -781,6 +827,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
781
827
|
MorphoAaveV3Payback: string;
|
|
782
828
|
MorphoAaveV3Supply: string;
|
|
783
829
|
MorphoAaveV3Withdraw: string;
|
|
830
|
+
MorphoAaveV3SetManager: string;
|
|
784
831
|
SparkBorrow: string;
|
|
785
832
|
SparkClaimRewards: string;
|
|
786
833
|
SparkCollateralSwitch: string;
|
|
@@ -800,6 +847,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
800
847
|
CompCollateralSwitch: string;
|
|
801
848
|
FLAaveV2: string;
|
|
802
849
|
FLAaveV3NoFee: string;
|
|
850
|
+
FLAaveV3CarryDebt: string;
|
|
803
851
|
FLAaveV3: string;
|
|
804
852
|
FLDyDx: string;
|
|
805
853
|
FLMaker: string;
|
|
@@ -888,7 +936,9 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
888
936
|
CurveUsdSwapper: string;
|
|
889
937
|
CurveUsdSelfLiquidate: string;
|
|
890
938
|
CurveUsdSelfLiquidateWithColl: string;
|
|
891
|
-
|
|
939
|
+
CurveUsdGetDebt: string;
|
|
940
|
+
CurveUsdCollRatioTrigger: string;
|
|
941
|
+
CurveUsdCollRatioCheck: string;
|
|
892
942
|
AaveV3DelegateCredit?: undefined;
|
|
893
943
|
AaveV3RatioTrigger?: undefined;
|
|
894
944
|
GasFeeTakerL2?: undefined;
|
|
@@ -962,6 +1012,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
962
1012
|
AaveClaimAAVE?: undefined;
|
|
963
1013
|
AaveClaimStkAave?: undefined;
|
|
964
1014
|
AaveV3View?: undefined;
|
|
1015
|
+
LSVWithdraw?: undefined;
|
|
1016
|
+
LSVBorrow?: undefined;
|
|
1017
|
+
LSVSupply?: undefined;
|
|
1018
|
+
LSVPayback?: undefined;
|
|
1019
|
+
LSVSell?: undefined;
|
|
965
1020
|
MorphoAaveV2Borrow?: undefined;
|
|
966
1021
|
MorphoAaveV2Payback?: undefined;
|
|
967
1022
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -971,6 +1026,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
971
1026
|
MorphoAaveV3Payback?: undefined;
|
|
972
1027
|
MorphoAaveV3Supply?: undefined;
|
|
973
1028
|
MorphoAaveV3Withdraw?: undefined;
|
|
1029
|
+
MorphoAaveV3SetManager?: undefined;
|
|
974
1030
|
SparkBorrow?: undefined;
|
|
975
1031
|
SparkClaimRewards?: undefined;
|
|
976
1032
|
SparkCollateralSwitch?: undefined;
|
|
@@ -989,6 +1045,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
989
1045
|
CompGetDebt?: undefined;
|
|
990
1046
|
CompCollateralSwitch?: undefined;
|
|
991
1047
|
FLAaveV2?: undefined;
|
|
1048
|
+
FLAaveV3CarryDebt?: undefined;
|
|
992
1049
|
FLDyDx?: undefined;
|
|
993
1050
|
FLMaker?: undefined;
|
|
994
1051
|
FLSpark?: undefined;
|
|
@@ -1069,6 +1126,9 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1069
1126
|
CurveUsdSwapper?: undefined;
|
|
1070
1127
|
CurveUsdSelfLiquidate?: undefined;
|
|
1071
1128
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1129
|
+
CurveUsdGetDebt?: undefined;
|
|
1130
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1131
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1072
1132
|
} | {
|
|
1073
1133
|
DFSSell: string;
|
|
1074
1134
|
WrapEth: string;
|
|
@@ -1112,6 +1172,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1112
1172
|
UpdateSub?: undefined;
|
|
1113
1173
|
TransferNFT?: undefined;
|
|
1114
1174
|
CreateSub?: undefined;
|
|
1175
|
+
ApproveToken?: undefined;
|
|
1115
1176
|
SDaiWrap?: undefined;
|
|
1116
1177
|
SDaiUnwrap?: undefined;
|
|
1117
1178
|
McdGenerate?: undefined;
|
|
@@ -1142,6 +1203,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1142
1203
|
AaveClaimStkAave?: undefined;
|
|
1143
1204
|
AaveV3ClaimRewards?: undefined;
|
|
1144
1205
|
AaveV3View?: undefined;
|
|
1206
|
+
LSVWithdraw?: undefined;
|
|
1207
|
+
LSVBorrow?: undefined;
|
|
1208
|
+
LSVSupply?: undefined;
|
|
1209
|
+
LSVPayback?: undefined;
|
|
1210
|
+
LSVSell?: undefined;
|
|
1145
1211
|
MorphoAaveV2Borrow?: undefined;
|
|
1146
1212
|
MorphoAaveV2Payback?: undefined;
|
|
1147
1213
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -1151,6 +1217,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1151
1217
|
MorphoAaveV3Payback?: undefined;
|
|
1152
1218
|
MorphoAaveV3Supply?: undefined;
|
|
1153
1219
|
MorphoAaveV3Withdraw?: undefined;
|
|
1220
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1154
1221
|
SparkBorrow?: undefined;
|
|
1155
1222
|
SparkClaimRewards?: undefined;
|
|
1156
1223
|
SparkCollateralSwitch?: undefined;
|
|
@@ -1169,6 +1236,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1169
1236
|
CompGetDebt?: undefined;
|
|
1170
1237
|
CompCollateralSwitch?: undefined;
|
|
1171
1238
|
FLAaveV2?: undefined;
|
|
1239
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1172
1240
|
FLDyDx?: undefined;
|
|
1173
1241
|
FLMaker?: undefined;
|
|
1174
1242
|
FLSpark?: undefined;
|
|
@@ -1242,7 +1310,9 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1242
1310
|
CurveUsdSwapper?: undefined;
|
|
1243
1311
|
CurveUsdSelfLiquidate?: undefined;
|
|
1244
1312
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1245
|
-
|
|
1313
|
+
CurveUsdGetDebt?: undefined;
|
|
1314
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1315
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1246
1316
|
AaveV3DelegateCredit?: undefined;
|
|
1247
1317
|
AaveV3RatioTrigger?: undefined;
|
|
1248
1318
|
} | {
|
|
@@ -1281,6 +1351,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1281
1351
|
UpdateSub?: undefined;
|
|
1282
1352
|
TransferNFT?: undefined;
|
|
1283
1353
|
CreateSub?: undefined;
|
|
1354
|
+
ApproveToken?: undefined;
|
|
1284
1355
|
SDaiWrap?: undefined;
|
|
1285
1356
|
SDaiUnwrap?: undefined;
|
|
1286
1357
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -1310,6 +1381,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1310
1381
|
AaveUnstake?: undefined;
|
|
1311
1382
|
AaveClaimAAVE?: undefined;
|
|
1312
1383
|
AaveClaimStkAave?: undefined;
|
|
1384
|
+
LSVWithdraw?: undefined;
|
|
1385
|
+
LSVBorrow?: undefined;
|
|
1386
|
+
LSVSupply?: undefined;
|
|
1387
|
+
LSVPayback?: undefined;
|
|
1388
|
+
LSVSell?: undefined;
|
|
1313
1389
|
MorphoAaveV2Borrow?: undefined;
|
|
1314
1390
|
MorphoAaveV2Payback?: undefined;
|
|
1315
1391
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -1319,6 +1395,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1319
1395
|
MorphoAaveV3Payback?: undefined;
|
|
1320
1396
|
MorphoAaveV3Supply?: undefined;
|
|
1321
1397
|
MorphoAaveV3Withdraw?: undefined;
|
|
1398
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1322
1399
|
SparkBorrow?: undefined;
|
|
1323
1400
|
SparkClaimRewards?: undefined;
|
|
1324
1401
|
SparkCollateralSwitch?: undefined;
|
|
@@ -1338,6 +1415,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1338
1415
|
CompCollateralSwitch?: undefined;
|
|
1339
1416
|
FLAaveV2?: undefined;
|
|
1340
1417
|
FLAaveV3NoFee?: undefined;
|
|
1418
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1341
1419
|
FLDyDx?: undefined;
|
|
1342
1420
|
FLMaker?: undefined;
|
|
1343
1421
|
FLSpark?: undefined;
|
|
@@ -1416,7 +1494,9 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1416
1494
|
CurveUsdSwapper?: undefined;
|
|
1417
1495
|
CurveUsdSelfLiquidate?: undefined;
|
|
1418
1496
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1419
|
-
|
|
1497
|
+
CurveUsdGetDebt?: undefined;
|
|
1498
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1499
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1420
1500
|
AaveV3DelegateCredit?: undefined;
|
|
1421
1501
|
AaveV3RatioTrigger?: undefined;
|
|
1422
1502
|
GasFeeTakerL2?: undefined;
|
|
@@ -1581,6 +1661,7 @@ declare const _default: {
|
|
|
1581
1661
|
UpdateSub: string;
|
|
1582
1662
|
TransferNFT: string;
|
|
1583
1663
|
CreateSub: string;
|
|
1664
|
+
ApproveToken: string;
|
|
1584
1665
|
SDaiWrap: string;
|
|
1585
1666
|
SDaiUnwrap: string;
|
|
1586
1667
|
TokenizedVaultAdapter: string;
|
|
@@ -1621,6 +1702,11 @@ declare const _default: {
|
|
|
1621
1702
|
AaveV3Borrow: string;
|
|
1622
1703
|
AaveV3ATokenPayback: string;
|
|
1623
1704
|
AaveV3View: string;
|
|
1705
|
+
LSVWithdraw: string;
|
|
1706
|
+
LSVBorrow: string;
|
|
1707
|
+
LSVSupply: string;
|
|
1708
|
+
LSVPayback: string;
|
|
1709
|
+
LSVSell: string;
|
|
1624
1710
|
MorphoAaveV2Borrow: string;
|
|
1625
1711
|
MorphoAaveV2Payback: string;
|
|
1626
1712
|
MorphoAaveV2Supply: string;
|
|
@@ -1630,6 +1716,7 @@ declare const _default: {
|
|
|
1630
1716
|
MorphoAaveV3Payback: string;
|
|
1631
1717
|
MorphoAaveV3Supply: string;
|
|
1632
1718
|
MorphoAaveV3Withdraw: string;
|
|
1719
|
+
MorphoAaveV3SetManager: string;
|
|
1633
1720
|
SparkBorrow: string;
|
|
1634
1721
|
SparkClaimRewards: string;
|
|
1635
1722
|
SparkCollateralSwitch: string;
|
|
@@ -1649,6 +1736,7 @@ declare const _default: {
|
|
|
1649
1736
|
CompCollateralSwitch: string;
|
|
1650
1737
|
FLAaveV2: string;
|
|
1651
1738
|
FLAaveV3NoFee: string;
|
|
1739
|
+
FLAaveV3CarryDebt: string;
|
|
1652
1740
|
FLAaveV3: string;
|
|
1653
1741
|
FLDyDx: string;
|
|
1654
1742
|
FLMaker: string;
|
|
@@ -1737,7 +1825,9 @@ declare const _default: {
|
|
|
1737
1825
|
CurveUsdSwapper: string;
|
|
1738
1826
|
CurveUsdSelfLiquidate: string;
|
|
1739
1827
|
CurveUsdSelfLiquidateWithColl: string;
|
|
1740
|
-
|
|
1828
|
+
CurveUsdGetDebt: string;
|
|
1829
|
+
CurveUsdCollRatioTrigger: string;
|
|
1830
|
+
CurveUsdCollRatioCheck: string;
|
|
1741
1831
|
AaveV3DelegateCredit?: undefined;
|
|
1742
1832
|
AaveV3RatioTrigger?: undefined;
|
|
1743
1833
|
GasFeeTakerL2?: undefined;
|
|
@@ -1811,6 +1901,11 @@ declare const _default: {
|
|
|
1811
1901
|
AaveClaimAAVE?: undefined;
|
|
1812
1902
|
AaveClaimStkAave?: undefined;
|
|
1813
1903
|
AaveV3View?: undefined;
|
|
1904
|
+
LSVWithdraw?: undefined;
|
|
1905
|
+
LSVBorrow?: undefined;
|
|
1906
|
+
LSVSupply?: undefined;
|
|
1907
|
+
LSVPayback?: undefined;
|
|
1908
|
+
LSVSell?: undefined;
|
|
1814
1909
|
MorphoAaveV2Borrow?: undefined;
|
|
1815
1910
|
MorphoAaveV2Payback?: undefined;
|
|
1816
1911
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -1820,6 +1915,7 @@ declare const _default: {
|
|
|
1820
1915
|
MorphoAaveV3Payback?: undefined;
|
|
1821
1916
|
MorphoAaveV3Supply?: undefined;
|
|
1822
1917
|
MorphoAaveV3Withdraw?: undefined;
|
|
1918
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1823
1919
|
SparkBorrow?: undefined;
|
|
1824
1920
|
SparkClaimRewards?: undefined;
|
|
1825
1921
|
SparkCollateralSwitch?: undefined;
|
|
@@ -1838,6 +1934,7 @@ declare const _default: {
|
|
|
1838
1934
|
CompGetDebt?: undefined;
|
|
1839
1935
|
CompCollateralSwitch?: undefined;
|
|
1840
1936
|
FLAaveV2?: undefined;
|
|
1937
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1841
1938
|
FLDyDx?: undefined;
|
|
1842
1939
|
FLMaker?: undefined;
|
|
1843
1940
|
FLSpark?: undefined;
|
|
@@ -1918,6 +2015,9 @@ declare const _default: {
|
|
|
1918
2015
|
CurveUsdSwapper?: undefined;
|
|
1919
2016
|
CurveUsdSelfLiquidate?: undefined;
|
|
1920
2017
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2018
|
+
CurveUsdGetDebt?: undefined;
|
|
2019
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2020
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1921
2021
|
} | {
|
|
1922
2022
|
DFSSell: string;
|
|
1923
2023
|
WrapEth: string;
|
|
@@ -1961,6 +2061,7 @@ declare const _default: {
|
|
|
1961
2061
|
UpdateSub?: undefined;
|
|
1962
2062
|
TransferNFT?: undefined;
|
|
1963
2063
|
CreateSub?: undefined;
|
|
2064
|
+
ApproveToken?: undefined;
|
|
1964
2065
|
SDaiWrap?: undefined;
|
|
1965
2066
|
SDaiUnwrap?: undefined;
|
|
1966
2067
|
McdGenerate?: undefined;
|
|
@@ -1991,6 +2092,11 @@ declare const _default: {
|
|
|
1991
2092
|
AaveClaimStkAave?: undefined;
|
|
1992
2093
|
AaveV3ClaimRewards?: undefined;
|
|
1993
2094
|
AaveV3View?: undefined;
|
|
2095
|
+
LSVWithdraw?: undefined;
|
|
2096
|
+
LSVBorrow?: undefined;
|
|
2097
|
+
LSVSupply?: undefined;
|
|
2098
|
+
LSVPayback?: undefined;
|
|
2099
|
+
LSVSell?: undefined;
|
|
1994
2100
|
MorphoAaveV2Borrow?: undefined;
|
|
1995
2101
|
MorphoAaveV2Payback?: undefined;
|
|
1996
2102
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2000,6 +2106,7 @@ declare const _default: {
|
|
|
2000
2106
|
MorphoAaveV3Payback?: undefined;
|
|
2001
2107
|
MorphoAaveV3Supply?: undefined;
|
|
2002
2108
|
MorphoAaveV3Withdraw?: undefined;
|
|
2109
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2003
2110
|
SparkBorrow?: undefined;
|
|
2004
2111
|
SparkClaimRewards?: undefined;
|
|
2005
2112
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2018,6 +2125,7 @@ declare const _default: {
|
|
|
2018
2125
|
CompGetDebt?: undefined;
|
|
2019
2126
|
CompCollateralSwitch?: undefined;
|
|
2020
2127
|
FLAaveV2?: undefined;
|
|
2128
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2021
2129
|
FLDyDx?: undefined;
|
|
2022
2130
|
FLMaker?: undefined;
|
|
2023
2131
|
FLSpark?: undefined;
|
|
@@ -2091,7 +2199,9 @@ declare const _default: {
|
|
|
2091
2199
|
CurveUsdSwapper?: undefined;
|
|
2092
2200
|
CurveUsdSelfLiquidate?: undefined;
|
|
2093
2201
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2094
|
-
|
|
2202
|
+
CurveUsdGetDebt?: undefined;
|
|
2203
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2204
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2095
2205
|
AaveV3DelegateCredit?: undefined;
|
|
2096
2206
|
AaveV3RatioTrigger?: undefined;
|
|
2097
2207
|
} | {
|
|
@@ -2130,6 +2240,7 @@ declare const _default: {
|
|
|
2130
2240
|
UpdateSub?: undefined;
|
|
2131
2241
|
TransferNFT?: undefined;
|
|
2132
2242
|
CreateSub?: undefined;
|
|
2243
|
+
ApproveToken?: undefined;
|
|
2133
2244
|
SDaiWrap?: undefined;
|
|
2134
2245
|
SDaiUnwrap?: undefined;
|
|
2135
2246
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -2159,6 +2270,11 @@ declare const _default: {
|
|
|
2159
2270
|
AaveUnstake?: undefined;
|
|
2160
2271
|
AaveClaimAAVE?: undefined;
|
|
2161
2272
|
AaveClaimStkAave?: undefined;
|
|
2273
|
+
LSVWithdraw?: undefined;
|
|
2274
|
+
LSVBorrow?: undefined;
|
|
2275
|
+
LSVSupply?: undefined;
|
|
2276
|
+
LSVPayback?: undefined;
|
|
2277
|
+
LSVSell?: undefined;
|
|
2162
2278
|
MorphoAaveV2Borrow?: undefined;
|
|
2163
2279
|
MorphoAaveV2Payback?: undefined;
|
|
2164
2280
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2168,6 +2284,7 @@ declare const _default: {
|
|
|
2168
2284
|
MorphoAaveV3Payback?: undefined;
|
|
2169
2285
|
MorphoAaveV3Supply?: undefined;
|
|
2170
2286
|
MorphoAaveV3Withdraw?: undefined;
|
|
2287
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2171
2288
|
SparkBorrow?: undefined;
|
|
2172
2289
|
SparkClaimRewards?: undefined;
|
|
2173
2290
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2187,6 +2304,7 @@ declare const _default: {
|
|
|
2187
2304
|
CompCollateralSwitch?: undefined;
|
|
2188
2305
|
FLAaveV2?: undefined;
|
|
2189
2306
|
FLAaveV3NoFee?: undefined;
|
|
2307
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2190
2308
|
FLDyDx?: undefined;
|
|
2191
2309
|
FLMaker?: undefined;
|
|
2192
2310
|
FLSpark?: undefined;
|
|
@@ -2265,7 +2383,9 @@ declare const _default: {
|
|
|
2265
2383
|
CurveUsdSwapper?: undefined;
|
|
2266
2384
|
CurveUsdSelfLiquidate?: undefined;
|
|
2267
2385
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2268
|
-
|
|
2386
|
+
CurveUsdGetDebt?: undefined;
|
|
2387
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2388
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2269
2389
|
AaveV3DelegateCredit?: undefined;
|
|
2270
2390
|
AaveV3RatioTrigger?: undefined;
|
|
2271
2391
|
GasFeeTakerL2?: undefined;
|
|
@@ -2287,6 +2407,7 @@ declare const _default: {
|
|
|
2287
2407
|
UpdateSub: string;
|
|
2288
2408
|
TransferNFT: string;
|
|
2289
2409
|
CreateSub: string;
|
|
2410
|
+
ApproveToken: string;
|
|
2290
2411
|
SDaiWrap: string;
|
|
2291
2412
|
SDaiUnwrap: string;
|
|
2292
2413
|
TokenizedVaultAdapter: string;
|
|
@@ -2327,6 +2448,11 @@ declare const _default: {
|
|
|
2327
2448
|
AaveV3Borrow: string;
|
|
2328
2449
|
AaveV3ATokenPayback: string;
|
|
2329
2450
|
AaveV3View: string;
|
|
2451
|
+
LSVWithdraw: string;
|
|
2452
|
+
LSVBorrow: string;
|
|
2453
|
+
LSVSupply: string;
|
|
2454
|
+
LSVPayback: string;
|
|
2455
|
+
LSVSell: string;
|
|
2330
2456
|
MorphoAaveV2Borrow: string;
|
|
2331
2457
|
MorphoAaveV2Payback: string;
|
|
2332
2458
|
MorphoAaveV2Supply: string;
|
|
@@ -2336,6 +2462,7 @@ declare const _default: {
|
|
|
2336
2462
|
MorphoAaveV3Payback: string;
|
|
2337
2463
|
MorphoAaveV3Supply: string;
|
|
2338
2464
|
MorphoAaveV3Withdraw: string;
|
|
2465
|
+
MorphoAaveV3SetManager: string;
|
|
2339
2466
|
SparkBorrow: string;
|
|
2340
2467
|
SparkClaimRewards: string;
|
|
2341
2468
|
SparkCollateralSwitch: string;
|
|
@@ -2355,6 +2482,7 @@ declare const _default: {
|
|
|
2355
2482
|
CompCollateralSwitch: string;
|
|
2356
2483
|
FLAaveV2: string;
|
|
2357
2484
|
FLAaveV3NoFee: string;
|
|
2485
|
+
FLAaveV3CarryDebt: string;
|
|
2358
2486
|
FLAaveV3: string;
|
|
2359
2487
|
FLDyDx: string;
|
|
2360
2488
|
FLMaker: string;
|
|
@@ -2443,7 +2571,9 @@ declare const _default: {
|
|
|
2443
2571
|
CurveUsdSwapper: string;
|
|
2444
2572
|
CurveUsdSelfLiquidate: string;
|
|
2445
2573
|
CurveUsdSelfLiquidateWithColl: string;
|
|
2446
|
-
|
|
2574
|
+
CurveUsdGetDebt: string;
|
|
2575
|
+
CurveUsdCollRatioTrigger: string;
|
|
2576
|
+
CurveUsdCollRatioCheck: string;
|
|
2447
2577
|
AaveV3DelegateCredit?: undefined;
|
|
2448
2578
|
AaveV3RatioTrigger?: undefined;
|
|
2449
2579
|
GasFeeTakerL2?: undefined;
|
|
@@ -2517,6 +2647,11 @@ declare const _default: {
|
|
|
2517
2647
|
AaveClaimAAVE?: undefined;
|
|
2518
2648
|
AaveClaimStkAave?: undefined;
|
|
2519
2649
|
AaveV3View?: undefined;
|
|
2650
|
+
LSVWithdraw?: undefined;
|
|
2651
|
+
LSVBorrow?: undefined;
|
|
2652
|
+
LSVSupply?: undefined;
|
|
2653
|
+
LSVPayback?: undefined;
|
|
2654
|
+
LSVSell?: undefined;
|
|
2520
2655
|
MorphoAaveV2Borrow?: undefined;
|
|
2521
2656
|
MorphoAaveV2Payback?: undefined;
|
|
2522
2657
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2526,6 +2661,7 @@ declare const _default: {
|
|
|
2526
2661
|
MorphoAaveV3Payback?: undefined;
|
|
2527
2662
|
MorphoAaveV3Supply?: undefined;
|
|
2528
2663
|
MorphoAaveV3Withdraw?: undefined;
|
|
2664
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2529
2665
|
SparkBorrow?: undefined;
|
|
2530
2666
|
SparkClaimRewards?: undefined;
|
|
2531
2667
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2544,6 +2680,7 @@ declare const _default: {
|
|
|
2544
2680
|
CompGetDebt?: undefined;
|
|
2545
2681
|
CompCollateralSwitch?: undefined;
|
|
2546
2682
|
FLAaveV2?: undefined;
|
|
2683
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2547
2684
|
FLDyDx?: undefined;
|
|
2548
2685
|
FLMaker?: undefined;
|
|
2549
2686
|
FLSpark?: undefined;
|
|
@@ -2624,6 +2761,9 @@ declare const _default: {
|
|
|
2624
2761
|
CurveUsdSwapper?: undefined;
|
|
2625
2762
|
CurveUsdSelfLiquidate?: undefined;
|
|
2626
2763
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2764
|
+
CurveUsdGetDebt?: undefined;
|
|
2765
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2766
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2627
2767
|
} | {
|
|
2628
2768
|
DFSSell: string;
|
|
2629
2769
|
WrapEth: string;
|
|
@@ -2667,6 +2807,7 @@ declare const _default: {
|
|
|
2667
2807
|
UpdateSub?: undefined;
|
|
2668
2808
|
TransferNFT?: undefined;
|
|
2669
2809
|
CreateSub?: undefined;
|
|
2810
|
+
ApproveToken?: undefined;
|
|
2670
2811
|
SDaiWrap?: undefined;
|
|
2671
2812
|
SDaiUnwrap?: undefined;
|
|
2672
2813
|
McdGenerate?: undefined;
|
|
@@ -2697,6 +2838,11 @@ declare const _default: {
|
|
|
2697
2838
|
AaveClaimStkAave?: undefined;
|
|
2698
2839
|
AaveV3ClaimRewards?: undefined;
|
|
2699
2840
|
AaveV3View?: undefined;
|
|
2841
|
+
LSVWithdraw?: undefined;
|
|
2842
|
+
LSVBorrow?: undefined;
|
|
2843
|
+
LSVSupply?: undefined;
|
|
2844
|
+
LSVPayback?: undefined;
|
|
2845
|
+
LSVSell?: undefined;
|
|
2700
2846
|
MorphoAaveV2Borrow?: undefined;
|
|
2701
2847
|
MorphoAaveV2Payback?: undefined;
|
|
2702
2848
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2706,6 +2852,7 @@ declare const _default: {
|
|
|
2706
2852
|
MorphoAaveV3Payback?: undefined;
|
|
2707
2853
|
MorphoAaveV3Supply?: undefined;
|
|
2708
2854
|
MorphoAaveV3Withdraw?: undefined;
|
|
2855
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2709
2856
|
SparkBorrow?: undefined;
|
|
2710
2857
|
SparkClaimRewards?: undefined;
|
|
2711
2858
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2724,6 +2871,7 @@ declare const _default: {
|
|
|
2724
2871
|
CompGetDebt?: undefined;
|
|
2725
2872
|
CompCollateralSwitch?: undefined;
|
|
2726
2873
|
FLAaveV2?: undefined;
|
|
2874
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2727
2875
|
FLDyDx?: undefined;
|
|
2728
2876
|
FLMaker?: undefined;
|
|
2729
2877
|
FLSpark?: undefined;
|
|
@@ -2797,7 +2945,9 @@ declare const _default: {
|
|
|
2797
2945
|
CurveUsdSwapper?: undefined;
|
|
2798
2946
|
CurveUsdSelfLiquidate?: undefined;
|
|
2799
2947
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2800
|
-
|
|
2948
|
+
CurveUsdGetDebt?: undefined;
|
|
2949
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
2950
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2801
2951
|
AaveV3DelegateCredit?: undefined;
|
|
2802
2952
|
AaveV3RatioTrigger?: undefined;
|
|
2803
2953
|
} | {
|
|
@@ -2836,6 +2986,7 @@ declare const _default: {
|
|
|
2836
2986
|
UpdateSub?: undefined;
|
|
2837
2987
|
TransferNFT?: undefined;
|
|
2838
2988
|
CreateSub?: undefined;
|
|
2989
|
+
ApproveToken?: undefined;
|
|
2839
2990
|
SDaiWrap?: undefined;
|
|
2840
2991
|
SDaiUnwrap?: undefined;
|
|
2841
2992
|
TokenizedVaultAdapter?: undefined;
|
|
@@ -2865,6 +3016,11 @@ declare const _default: {
|
|
|
2865
3016
|
AaveUnstake?: undefined;
|
|
2866
3017
|
AaveClaimAAVE?: undefined;
|
|
2867
3018
|
AaveClaimStkAave?: undefined;
|
|
3019
|
+
LSVWithdraw?: undefined;
|
|
3020
|
+
LSVBorrow?: undefined;
|
|
3021
|
+
LSVSupply?: undefined;
|
|
3022
|
+
LSVPayback?: undefined;
|
|
3023
|
+
LSVSell?: undefined;
|
|
2868
3024
|
MorphoAaveV2Borrow?: undefined;
|
|
2869
3025
|
MorphoAaveV2Payback?: undefined;
|
|
2870
3026
|
MorphoAaveV2Supply?: undefined;
|
|
@@ -2874,6 +3030,7 @@ declare const _default: {
|
|
|
2874
3030
|
MorphoAaveV3Payback?: undefined;
|
|
2875
3031
|
MorphoAaveV3Supply?: undefined;
|
|
2876
3032
|
MorphoAaveV3Withdraw?: undefined;
|
|
3033
|
+
MorphoAaveV3SetManager?: undefined;
|
|
2877
3034
|
SparkBorrow?: undefined;
|
|
2878
3035
|
SparkClaimRewards?: undefined;
|
|
2879
3036
|
SparkCollateralSwitch?: undefined;
|
|
@@ -2893,6 +3050,7 @@ declare const _default: {
|
|
|
2893
3050
|
CompCollateralSwitch?: undefined;
|
|
2894
3051
|
FLAaveV2?: undefined;
|
|
2895
3052
|
FLAaveV3NoFee?: undefined;
|
|
3053
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2896
3054
|
FLDyDx?: undefined;
|
|
2897
3055
|
FLMaker?: undefined;
|
|
2898
3056
|
FLSpark?: undefined;
|
|
@@ -2971,7 +3129,9 @@ declare const _default: {
|
|
|
2971
3129
|
CurveUsdSwapper?: undefined;
|
|
2972
3130
|
CurveUsdSelfLiquidate?: undefined;
|
|
2973
3131
|
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
2974
|
-
|
|
3132
|
+
CurveUsdGetDebt?: undefined;
|
|
3133
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
3134
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
2975
3135
|
AaveV3DelegateCredit?: undefined;
|
|
2976
3136
|
AaveV3RatioTrigger?: undefined;
|
|
2977
3137
|
GasFeeTakerL2?: undefined;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Action } from '../Action';
|
|
2
|
+
import { EthAddress, uint256, uint8 } from '../types';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* @category Triggers
|
|
7
|
+
*/
|
|
8
|
+
export declare class AaveV2RatioTrigger extends Action {
|
|
9
|
+
constructor(user: EthAddress, market: EthAddress, ratio: uint256, state: uint8);
|
|
10
|
+
}
|