@defisaver/sdk 1.3.26 → 1.3.27-midnight-dev
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.js +23 -5
- package/esm/src/actions/aaveV3/AaveV3DelegateCredit.d.ts +1 -1
- package/esm/src/actions/aaveV3/AaveV3DelegateCredit.js +1 -1
- package/esm/src/actions/flashloan/AaveV3FlashLoanAction.d.ts +1 -1
- package/esm/src/actions/flashloan/AaveV3FlashLoanAction.js +1 -1
- package/esm/src/actions/flashloan/AaveV3FlashLoanCarryDebtAction.d.ts +4 -2
- package/esm/src/actions/flashloan/AaveV3FlashLoanCarryDebtAction.js +12 -6
- package/esm/src/actions/flashloan/AaveV3FlashLoanNoFeeAction.d.ts +1 -1
- package/esm/src/actions/flashloan/AaveV3FlashLoanNoFeeAction.js +1 -1
- package/esm/src/actions/index.d.ts +2 -1
- package/esm/src/actions/index.js +2 -1
- package/esm/src/actions/midnight/MidnightBorrowFromOrdersAction.d.ts +18 -0
- package/esm/src/actions/midnight/MidnightBorrowFromOrdersAction.js +28 -0
- package/esm/src/actions/midnight/MidnightPaybackDirectAction.d.ts +16 -0
- package/esm/src/actions/midnight/MidnightPaybackDirectAction.js +24 -0
- package/esm/src/actions/midnight/MidnightPaybackFromOrdersAction.d.ts +18 -0
- package/esm/src/actions/midnight/MidnightPaybackFromOrdersAction.js +28 -0
- package/esm/src/actions/midnight/MidnightSupplyCollateralAction.d.ts +17 -0
- package/esm/src/actions/midnight/MidnightSupplyCollateralAction.js +26 -0
- package/esm/src/actions/midnight/MidnightWithdrawCollateralAction.d.ts +17 -0
- package/esm/src/actions/midnight/MidnightWithdrawCollateralAction.js +26 -0
- package/esm/src/actions/midnight/index.d.ts +5 -0
- package/esm/src/actions/midnight/index.js +5 -0
- package/esm/src/actions/uniswap/index.d.ts +0 -1
- package/esm/src/actions/uniswap/index.js +0 -1
- package/esm/src/addresses.d.ts +44 -14
- package/esm/src/addresses.js +10 -13
- package/esm/src/index.d.ts +176 -56
- package/package.json +1 -1
- package/src/Action.ts +21 -5
- package/src/actions/aaveV3/AaveV3DelegateCredit.ts +1 -1
- package/src/actions/flashloan/AaveV3FlashLoanAction.ts +1 -1
- package/src/actions/flashloan/AaveV3FlashLoanCarryDebtAction.ts +13 -7
- package/src/actions/flashloan/AaveV3FlashLoanNoFeeAction.ts +1 -1
- package/src/actions/index.ts +2 -0
- package/src/actions/midnight/MidnightBorrowFromOrdersAction.ts +44 -0
- package/src/actions/midnight/MidnightPaybackDirectAction.ts +36 -0
- package/src/actions/midnight/MidnightPaybackFromOrdersAction.ts +44 -0
- package/src/actions/midnight/MidnightSupplyCollateralAction.ts +39 -0
- package/src/actions/midnight/MidnightWithdrawCollateralAction.ts +39 -0
- package/src/actions/midnight/index.ts +5 -0
- package/src/actions/uniswap/index.ts +1 -2
- package/src/addresses.ts +11 -13
- package/umd/index.js +898 -727
- package/esm/src/actions/uniswap/UniswapClaimAction.d.ts +0 -16
- package/esm/src/actions/uniswap/UniswapClaimAction.js +0 -23
- package/src/actions/uniswap/UniswapClaimAction.ts +0 -31
- package/test/actions/uniswap/UniswapClaimAction.js +0 -31
package/esm/src/index.d.ts
CHANGED
|
@@ -83,7 +83,6 @@ declare const actionAddressesAllChains: {
|
|
|
83
83
|
AaveV3ATokenPayback: string;
|
|
84
84
|
AaveV3View: string;
|
|
85
85
|
AaveV3DelegateWithSig: string;
|
|
86
|
-
AaveV3DelegateCredit: string;
|
|
87
86
|
GhoClaimAAVE: string;
|
|
88
87
|
GhoUnstake: string;
|
|
89
88
|
GhoStake: string;
|
|
@@ -135,7 +134,6 @@ declare const actionAddressesAllChains: {
|
|
|
135
134
|
FLMorphoBlue: string;
|
|
136
135
|
UniSupply: string;
|
|
137
136
|
UniWithdraw: string;
|
|
138
|
-
UniswapClaim: string;
|
|
139
137
|
UniCollectV3: string;
|
|
140
138
|
UniMintV3: string;
|
|
141
139
|
UniSupplyV3: string;
|
|
@@ -300,10 +298,17 @@ declare const actionAddressesAllChains: {
|
|
|
300
298
|
AaveV4DelegateWithdrawWithSig: string;
|
|
301
299
|
AaveV4DelegateBorrowWithSig: string;
|
|
302
300
|
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
301
|
+
AaveV3DelegateCredit?: undefined;
|
|
303
302
|
AaveV3RatioTrigger?: undefined;
|
|
304
303
|
GasFeeTakerL2?: undefined;
|
|
305
304
|
AaveV3RatioCheck?: undefined;
|
|
306
305
|
MorphoBlueView?: undefined;
|
|
306
|
+
MidnightPaybackDirect?: undefined;
|
|
307
|
+
MidnightBorrowFromOrders?: undefined;
|
|
308
|
+
MidnightPaybackFromOrders?: undefined;
|
|
309
|
+
MidnightSupplyCollateral?: undefined;
|
|
310
|
+
MidnightWithdrawCollateral?: undefined;
|
|
311
|
+
MidnightView?: undefined;
|
|
307
312
|
} | {
|
|
308
313
|
DFSSell: string;
|
|
309
314
|
DFSSellNoFee: string;
|
|
@@ -340,7 +345,6 @@ declare const actionAddressesAllChains: {
|
|
|
340
345
|
FLAaveV3: string;
|
|
341
346
|
FLBalancer: string;
|
|
342
347
|
FLAction: string;
|
|
343
|
-
FLAaveV3CarryDebt: string;
|
|
344
348
|
AaveV3RatioTrigger: string;
|
|
345
349
|
GasFeeTakerL2: string;
|
|
346
350
|
AaveV3RatioCheck: string;
|
|
@@ -439,6 +443,7 @@ declare const actionAddressesAllChains: {
|
|
|
439
443
|
CompGetDebt?: undefined;
|
|
440
444
|
CompCollateralSwitch?: undefined;
|
|
441
445
|
FLAaveV2?: undefined;
|
|
446
|
+
FLAaveV3CarryDebt?: undefined;
|
|
442
447
|
FLDyDx?: undefined;
|
|
443
448
|
FLMaker?: undefined;
|
|
444
449
|
FLSpark?: undefined;
|
|
@@ -447,7 +452,6 @@ declare const actionAddressesAllChains: {
|
|
|
447
452
|
FLMorphoBlue?: undefined;
|
|
448
453
|
UniSupply?: undefined;
|
|
449
454
|
UniWithdraw?: undefined;
|
|
450
|
-
UniswapClaim?: undefined;
|
|
451
455
|
DyDxWithdraw?: undefined;
|
|
452
456
|
YearnSupply?: undefined;
|
|
453
457
|
YearnWithdraw?: undefined;
|
|
@@ -597,6 +601,12 @@ declare const actionAddressesAllChains: {
|
|
|
597
601
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
598
602
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
599
603
|
MorphoBlueView?: undefined;
|
|
604
|
+
MidnightPaybackDirect?: undefined;
|
|
605
|
+
MidnightBorrowFromOrders?: undefined;
|
|
606
|
+
MidnightPaybackFromOrders?: undefined;
|
|
607
|
+
MidnightSupplyCollateral?: undefined;
|
|
608
|
+
MidnightWithdrawCollateral?: undefined;
|
|
609
|
+
MidnightView?: undefined;
|
|
600
610
|
} | {
|
|
601
611
|
DFSSell: string;
|
|
602
612
|
DFSSellNoFee: string;
|
|
@@ -629,7 +639,6 @@ declare const actionAddressesAllChains: {
|
|
|
629
639
|
AaveV3Withdraw: string;
|
|
630
640
|
AaveV3ClaimRewards: string;
|
|
631
641
|
AaveV3DelegateWithSig: string;
|
|
632
|
-
AaveV3DelegateCredit: string;
|
|
633
642
|
CompV3Allow: string;
|
|
634
643
|
CompV3Borrow: string;
|
|
635
644
|
CompV3Claim: string;
|
|
@@ -643,7 +652,6 @@ declare const actionAddressesAllChains: {
|
|
|
643
652
|
FLUniV3: string;
|
|
644
653
|
FLAction: string;
|
|
645
654
|
FLMorphoBlue: string;
|
|
646
|
-
FLAaveV3CarryDebt: string;
|
|
647
655
|
GasFeeTakerL2: string;
|
|
648
656
|
AaveV3RatioCheck: string;
|
|
649
657
|
UniCollectV3: string;
|
|
@@ -767,13 +775,13 @@ declare const actionAddressesAllChains: {
|
|
|
767
775
|
CompGetDebt?: undefined;
|
|
768
776
|
CompCollateralSwitch?: undefined;
|
|
769
777
|
FLAaveV2?: undefined;
|
|
778
|
+
FLAaveV3CarryDebt?: undefined;
|
|
770
779
|
FLDyDx?: undefined;
|
|
771
780
|
FLMaker?: undefined;
|
|
772
781
|
FLSpark?: undefined;
|
|
773
782
|
FLGho?: undefined;
|
|
774
783
|
UniSupply?: undefined;
|
|
775
784
|
UniWithdraw?: undefined;
|
|
776
|
-
UniswapClaim?: undefined;
|
|
777
785
|
DyDxWithdraw?: undefined;
|
|
778
786
|
YearnSupply?: undefined;
|
|
779
787
|
YearnWithdraw?: undefined;
|
|
@@ -889,7 +897,14 @@ declare const actionAddressesAllChains: {
|
|
|
889
897
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
890
898
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
891
899
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
900
|
+
AaveV3DelegateCredit?: undefined;
|
|
892
901
|
AaveV3RatioTrigger?: undefined;
|
|
902
|
+
MidnightPaybackDirect?: undefined;
|
|
903
|
+
MidnightBorrowFromOrders?: undefined;
|
|
904
|
+
MidnightPaybackFromOrders?: undefined;
|
|
905
|
+
MidnightSupplyCollateral?: undefined;
|
|
906
|
+
MidnightWithdrawCollateral?: undefined;
|
|
907
|
+
MidnightView?: undefined;
|
|
893
908
|
} | {
|
|
894
909
|
DFSSell: string;
|
|
895
910
|
DFSSellNoFee: string;
|
|
@@ -916,7 +931,6 @@ declare const actionAddressesAllChains: {
|
|
|
916
931
|
FLUniV3: string;
|
|
917
932
|
FLAction: string;
|
|
918
933
|
FLMorphoBlue: string;
|
|
919
|
-
FLAaveV3CarryDebt: string;
|
|
920
934
|
AaveV3Withdraw: string;
|
|
921
935
|
AaveV3SwapBorrowRateMode: string;
|
|
922
936
|
AaveV3Supply: string;
|
|
@@ -928,7 +942,6 @@ declare const actionAddressesAllChains: {
|
|
|
928
942
|
AaveV3ATokenPayback: string;
|
|
929
943
|
AaveV3View: string;
|
|
930
944
|
AaveV3DelegateWithSig: string;
|
|
931
|
-
AaveV3DelegateCredit: string;
|
|
932
945
|
CompV3Allow: string;
|
|
933
946
|
CompV3Borrow: string;
|
|
934
947
|
CompV3Claim: string;
|
|
@@ -963,6 +976,12 @@ declare const actionAddressesAllChains: {
|
|
|
963
976
|
SFApproveTokens: string;
|
|
964
977
|
SummerfiUnsub: string;
|
|
965
978
|
SummerfiUnsubV2: string;
|
|
979
|
+
MidnightPaybackDirect: string;
|
|
980
|
+
MidnightBorrowFromOrders: string;
|
|
981
|
+
MidnightPaybackFromOrders: string;
|
|
982
|
+
MidnightSupplyCollateral: string;
|
|
983
|
+
MidnightWithdrawCollateral: string;
|
|
984
|
+
MidnightView: string;
|
|
966
985
|
AutomationV2Unsub?: undefined;
|
|
967
986
|
SendTokenAndUnwrap?: undefined;
|
|
968
987
|
SDaiWrap?: undefined;
|
|
@@ -1043,13 +1062,13 @@ declare const actionAddressesAllChains: {
|
|
|
1043
1062
|
CompCollateralSwitch?: undefined;
|
|
1044
1063
|
FLAaveV2?: undefined;
|
|
1045
1064
|
FLAaveV3NoFee?: undefined;
|
|
1065
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1046
1066
|
FLDyDx?: undefined;
|
|
1047
1067
|
FLMaker?: undefined;
|
|
1048
1068
|
FLSpark?: undefined;
|
|
1049
1069
|
FLGho?: undefined;
|
|
1050
1070
|
UniSupply?: undefined;
|
|
1051
1071
|
UniWithdraw?: undefined;
|
|
1052
|
-
UniswapClaim?: undefined;
|
|
1053
1072
|
UniCollectV3?: undefined;
|
|
1054
1073
|
UniMintV3?: undefined;
|
|
1055
1074
|
UniSupplyV3?: undefined;
|
|
@@ -1181,6 +1200,7 @@ declare const actionAddressesAllChains: {
|
|
|
1181
1200
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
1182
1201
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
1183
1202
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
1203
|
+
AaveV3DelegateCredit?: undefined;
|
|
1184
1204
|
AaveV3RatioTrigger?: undefined;
|
|
1185
1205
|
AaveV3RatioCheck?: undefined;
|
|
1186
1206
|
} | {
|
|
@@ -1202,7 +1222,6 @@ declare const actionAddressesAllChains: {
|
|
|
1202
1222
|
TokenizedVaultAdapter: string;
|
|
1203
1223
|
FLAction: string;
|
|
1204
1224
|
FLAaveV3: string;
|
|
1205
|
-
FLAaveV3CarryDebt: string;
|
|
1206
1225
|
AaveV3Withdraw: string;
|
|
1207
1226
|
AaveV3Supply: string;
|
|
1208
1227
|
AaveV3SetEMode: string;
|
|
@@ -1299,6 +1318,7 @@ declare const actionAddressesAllChains: {
|
|
|
1299
1318
|
CompCollateralSwitch?: undefined;
|
|
1300
1319
|
FLAaveV2?: undefined;
|
|
1301
1320
|
FLAaveV3NoFee?: undefined;
|
|
1321
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1302
1322
|
FLDyDx?: undefined;
|
|
1303
1323
|
FLMaker?: undefined;
|
|
1304
1324
|
FLBalancer?: undefined;
|
|
@@ -1308,7 +1328,6 @@ declare const actionAddressesAllChains: {
|
|
|
1308
1328
|
FLMorphoBlue?: undefined;
|
|
1309
1329
|
UniSupply?: undefined;
|
|
1310
1330
|
UniWithdraw?: undefined;
|
|
1311
|
-
UniswapClaim?: undefined;
|
|
1312
1331
|
UniCollectV3?: undefined;
|
|
1313
1332
|
UniMintV3?: undefined;
|
|
1314
1333
|
UniSupplyV3?: undefined;
|
|
@@ -1476,6 +1495,12 @@ declare const actionAddressesAllChains: {
|
|
|
1476
1495
|
GasFeeTakerL2?: undefined;
|
|
1477
1496
|
AaveV3RatioCheck?: undefined;
|
|
1478
1497
|
MorphoBlueView?: undefined;
|
|
1498
|
+
MidnightPaybackDirect?: undefined;
|
|
1499
|
+
MidnightBorrowFromOrders?: undefined;
|
|
1500
|
+
MidnightPaybackFromOrders?: undefined;
|
|
1501
|
+
MidnightSupplyCollateral?: undefined;
|
|
1502
|
+
MidnightWithdrawCollateral?: undefined;
|
|
1503
|
+
MidnightView?: undefined;
|
|
1479
1504
|
} | {
|
|
1480
1505
|
DFSSell: string;
|
|
1481
1506
|
DFSSellNoFee: string;
|
|
@@ -1495,7 +1520,6 @@ declare const actionAddressesAllChains: {
|
|
|
1495
1520
|
TokenizedVaultAdapter: string;
|
|
1496
1521
|
FLAction: string;
|
|
1497
1522
|
FLAaveV3: string;
|
|
1498
|
-
FLAaveV3CarryDebt: string;
|
|
1499
1523
|
AaveV3Withdraw: string;
|
|
1500
1524
|
AaveV3Supply: string;
|
|
1501
1525
|
AaveV3SetEMode: string;
|
|
@@ -1605,6 +1629,7 @@ declare const actionAddressesAllChains: {
|
|
|
1605
1629
|
CompCollateralSwitch?: undefined;
|
|
1606
1630
|
FLAaveV2?: undefined;
|
|
1607
1631
|
FLAaveV3NoFee?: undefined;
|
|
1632
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1608
1633
|
FLDyDx?: undefined;
|
|
1609
1634
|
FLMaker?: undefined;
|
|
1610
1635
|
FLBalancer?: undefined;
|
|
@@ -1614,7 +1639,6 @@ declare const actionAddressesAllChains: {
|
|
|
1614
1639
|
FLMorphoBlue?: undefined;
|
|
1615
1640
|
UniSupply?: undefined;
|
|
1616
1641
|
UniWithdraw?: undefined;
|
|
1617
|
-
UniswapClaim?: undefined;
|
|
1618
1642
|
UniCollectV3?: undefined;
|
|
1619
1643
|
UniMintV3?: undefined;
|
|
1620
1644
|
UniSupplyV3?: undefined;
|
|
@@ -1769,6 +1793,12 @@ declare const actionAddressesAllChains: {
|
|
|
1769
1793
|
GasFeeTakerL2?: undefined;
|
|
1770
1794
|
AaveV3RatioCheck?: undefined;
|
|
1771
1795
|
MorphoBlueView?: undefined;
|
|
1796
|
+
MidnightPaybackDirect?: undefined;
|
|
1797
|
+
MidnightBorrowFromOrders?: undefined;
|
|
1798
|
+
MidnightPaybackFromOrders?: undefined;
|
|
1799
|
+
MidnightSupplyCollateral?: undefined;
|
|
1800
|
+
MidnightWithdrawCollateral?: undefined;
|
|
1801
|
+
MidnightView?: undefined;
|
|
1772
1802
|
};
|
|
1773
1803
|
};
|
|
1774
1804
|
declare const actionAddresses: (chainId?: null) => {
|
|
@@ -1843,7 +1873,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1843
1873
|
AaveV3ATokenPayback: string;
|
|
1844
1874
|
AaveV3View: string;
|
|
1845
1875
|
AaveV3DelegateWithSig: string;
|
|
1846
|
-
AaveV3DelegateCredit: string;
|
|
1847
1876
|
GhoClaimAAVE: string;
|
|
1848
1877
|
GhoUnstake: string;
|
|
1849
1878
|
GhoStake: string;
|
|
@@ -1895,7 +1924,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1895
1924
|
FLMorphoBlue: string;
|
|
1896
1925
|
UniSupply: string;
|
|
1897
1926
|
UniWithdraw: string;
|
|
1898
|
-
UniswapClaim: string;
|
|
1899
1927
|
UniCollectV3: string;
|
|
1900
1928
|
UniMintV3: string;
|
|
1901
1929
|
UniSupplyV3: string;
|
|
@@ -2060,10 +2088,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2060
2088
|
AaveV4DelegateWithdrawWithSig: string;
|
|
2061
2089
|
AaveV4DelegateBorrowWithSig: string;
|
|
2062
2090
|
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
2091
|
+
AaveV3DelegateCredit?: undefined;
|
|
2063
2092
|
AaveV3RatioTrigger?: undefined;
|
|
2064
2093
|
GasFeeTakerL2?: undefined;
|
|
2065
2094
|
AaveV3RatioCheck?: undefined;
|
|
2066
2095
|
MorphoBlueView?: undefined;
|
|
2096
|
+
MidnightPaybackDirect?: undefined;
|
|
2097
|
+
MidnightBorrowFromOrders?: undefined;
|
|
2098
|
+
MidnightPaybackFromOrders?: undefined;
|
|
2099
|
+
MidnightSupplyCollateral?: undefined;
|
|
2100
|
+
MidnightWithdrawCollateral?: undefined;
|
|
2101
|
+
MidnightView?: undefined;
|
|
2067
2102
|
} | {
|
|
2068
2103
|
DFSSell: string;
|
|
2069
2104
|
DFSSellNoFee: string;
|
|
@@ -2100,7 +2135,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2100
2135
|
FLAaveV3: string;
|
|
2101
2136
|
FLBalancer: string;
|
|
2102
2137
|
FLAction: string;
|
|
2103
|
-
FLAaveV3CarryDebt: string;
|
|
2104
2138
|
AaveV3RatioTrigger: string;
|
|
2105
2139
|
GasFeeTakerL2: string;
|
|
2106
2140
|
AaveV3RatioCheck: string;
|
|
@@ -2199,6 +2233,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2199
2233
|
CompGetDebt?: undefined;
|
|
2200
2234
|
CompCollateralSwitch?: undefined;
|
|
2201
2235
|
FLAaveV2?: undefined;
|
|
2236
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2202
2237
|
FLDyDx?: undefined;
|
|
2203
2238
|
FLMaker?: undefined;
|
|
2204
2239
|
FLSpark?: undefined;
|
|
@@ -2207,7 +2242,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2207
2242
|
FLMorphoBlue?: undefined;
|
|
2208
2243
|
UniSupply?: undefined;
|
|
2209
2244
|
UniWithdraw?: undefined;
|
|
2210
|
-
UniswapClaim?: undefined;
|
|
2211
2245
|
DyDxWithdraw?: undefined;
|
|
2212
2246
|
YearnSupply?: undefined;
|
|
2213
2247
|
YearnWithdraw?: undefined;
|
|
@@ -2357,6 +2391,12 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2357
2391
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
2358
2392
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
2359
2393
|
MorphoBlueView?: undefined;
|
|
2394
|
+
MidnightPaybackDirect?: undefined;
|
|
2395
|
+
MidnightBorrowFromOrders?: undefined;
|
|
2396
|
+
MidnightPaybackFromOrders?: undefined;
|
|
2397
|
+
MidnightSupplyCollateral?: undefined;
|
|
2398
|
+
MidnightWithdrawCollateral?: undefined;
|
|
2399
|
+
MidnightView?: undefined;
|
|
2360
2400
|
} | {
|
|
2361
2401
|
DFSSell: string;
|
|
2362
2402
|
DFSSellNoFee: string;
|
|
@@ -2389,7 +2429,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2389
2429
|
AaveV3Withdraw: string;
|
|
2390
2430
|
AaveV3ClaimRewards: string;
|
|
2391
2431
|
AaveV3DelegateWithSig: string;
|
|
2392
|
-
AaveV3DelegateCredit: string;
|
|
2393
2432
|
CompV3Allow: string;
|
|
2394
2433
|
CompV3Borrow: string;
|
|
2395
2434
|
CompV3Claim: string;
|
|
@@ -2403,7 +2442,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2403
2442
|
FLUniV3: string;
|
|
2404
2443
|
FLAction: string;
|
|
2405
2444
|
FLMorphoBlue: string;
|
|
2406
|
-
FLAaveV3CarryDebt: string;
|
|
2407
2445
|
GasFeeTakerL2: string;
|
|
2408
2446
|
AaveV3RatioCheck: string;
|
|
2409
2447
|
UniCollectV3: string;
|
|
@@ -2527,13 +2565,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2527
2565
|
CompGetDebt?: undefined;
|
|
2528
2566
|
CompCollateralSwitch?: undefined;
|
|
2529
2567
|
FLAaveV2?: undefined;
|
|
2568
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2530
2569
|
FLDyDx?: undefined;
|
|
2531
2570
|
FLMaker?: undefined;
|
|
2532
2571
|
FLSpark?: undefined;
|
|
2533
2572
|
FLGho?: undefined;
|
|
2534
2573
|
UniSupply?: undefined;
|
|
2535
2574
|
UniWithdraw?: undefined;
|
|
2536
|
-
UniswapClaim?: undefined;
|
|
2537
2575
|
DyDxWithdraw?: undefined;
|
|
2538
2576
|
YearnSupply?: undefined;
|
|
2539
2577
|
YearnWithdraw?: undefined;
|
|
@@ -2649,7 +2687,14 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2649
2687
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
2650
2688
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
2651
2689
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
2690
|
+
AaveV3DelegateCredit?: undefined;
|
|
2652
2691
|
AaveV3RatioTrigger?: undefined;
|
|
2692
|
+
MidnightPaybackDirect?: undefined;
|
|
2693
|
+
MidnightBorrowFromOrders?: undefined;
|
|
2694
|
+
MidnightPaybackFromOrders?: undefined;
|
|
2695
|
+
MidnightSupplyCollateral?: undefined;
|
|
2696
|
+
MidnightWithdrawCollateral?: undefined;
|
|
2697
|
+
MidnightView?: undefined;
|
|
2653
2698
|
} | {
|
|
2654
2699
|
DFSSell: string;
|
|
2655
2700
|
DFSSellNoFee: string;
|
|
@@ -2676,7 +2721,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2676
2721
|
FLUniV3: string;
|
|
2677
2722
|
FLAction: string;
|
|
2678
2723
|
FLMorphoBlue: string;
|
|
2679
|
-
FLAaveV3CarryDebt: string;
|
|
2680
2724
|
AaveV3Withdraw: string;
|
|
2681
2725
|
AaveV3SwapBorrowRateMode: string;
|
|
2682
2726
|
AaveV3Supply: string;
|
|
@@ -2688,7 +2732,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2688
2732
|
AaveV3ATokenPayback: string;
|
|
2689
2733
|
AaveV3View: string;
|
|
2690
2734
|
AaveV3DelegateWithSig: string;
|
|
2691
|
-
AaveV3DelegateCredit: string;
|
|
2692
2735
|
CompV3Allow: string;
|
|
2693
2736
|
CompV3Borrow: string;
|
|
2694
2737
|
CompV3Claim: string;
|
|
@@ -2723,6 +2766,12 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2723
2766
|
SFApproveTokens: string;
|
|
2724
2767
|
SummerfiUnsub: string;
|
|
2725
2768
|
SummerfiUnsubV2: string;
|
|
2769
|
+
MidnightPaybackDirect: string;
|
|
2770
|
+
MidnightBorrowFromOrders: string;
|
|
2771
|
+
MidnightPaybackFromOrders: string;
|
|
2772
|
+
MidnightSupplyCollateral: string;
|
|
2773
|
+
MidnightWithdrawCollateral: string;
|
|
2774
|
+
MidnightView: string;
|
|
2726
2775
|
AutomationV2Unsub?: undefined;
|
|
2727
2776
|
SendTokenAndUnwrap?: undefined;
|
|
2728
2777
|
SDaiWrap?: undefined;
|
|
@@ -2803,13 +2852,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2803
2852
|
CompCollateralSwitch?: undefined;
|
|
2804
2853
|
FLAaveV2?: undefined;
|
|
2805
2854
|
FLAaveV3NoFee?: undefined;
|
|
2855
|
+
FLAaveV3CarryDebt?: undefined;
|
|
2806
2856
|
FLDyDx?: undefined;
|
|
2807
2857
|
FLMaker?: undefined;
|
|
2808
2858
|
FLSpark?: undefined;
|
|
2809
2859
|
FLGho?: undefined;
|
|
2810
2860
|
UniSupply?: undefined;
|
|
2811
2861
|
UniWithdraw?: undefined;
|
|
2812
|
-
UniswapClaim?: undefined;
|
|
2813
2862
|
UniCollectV3?: undefined;
|
|
2814
2863
|
UniMintV3?: undefined;
|
|
2815
2864
|
UniSupplyV3?: undefined;
|
|
@@ -2941,6 +2990,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2941
2990
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
2942
2991
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
2943
2992
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
2993
|
+
AaveV3DelegateCredit?: undefined;
|
|
2944
2994
|
AaveV3RatioTrigger?: undefined;
|
|
2945
2995
|
AaveV3RatioCheck?: undefined;
|
|
2946
2996
|
} | {
|
|
@@ -2962,7 +3012,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2962
3012
|
TokenizedVaultAdapter: string;
|
|
2963
3013
|
FLAction: string;
|
|
2964
3014
|
FLAaveV3: string;
|
|
2965
|
-
FLAaveV3CarryDebt: string;
|
|
2966
3015
|
AaveV3Withdraw: string;
|
|
2967
3016
|
AaveV3Supply: string;
|
|
2968
3017
|
AaveV3SetEMode: string;
|
|
@@ -3059,6 +3108,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3059
3108
|
CompCollateralSwitch?: undefined;
|
|
3060
3109
|
FLAaveV2?: undefined;
|
|
3061
3110
|
FLAaveV3NoFee?: undefined;
|
|
3111
|
+
FLAaveV3CarryDebt?: undefined;
|
|
3062
3112
|
FLDyDx?: undefined;
|
|
3063
3113
|
FLMaker?: undefined;
|
|
3064
3114
|
FLBalancer?: undefined;
|
|
@@ -3068,7 +3118,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3068
3118
|
FLMorphoBlue?: undefined;
|
|
3069
3119
|
UniSupply?: undefined;
|
|
3070
3120
|
UniWithdraw?: undefined;
|
|
3071
|
-
UniswapClaim?: undefined;
|
|
3072
3121
|
UniCollectV3?: undefined;
|
|
3073
3122
|
UniMintV3?: undefined;
|
|
3074
3123
|
UniSupplyV3?: undefined;
|
|
@@ -3236,6 +3285,12 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3236
3285
|
GasFeeTakerL2?: undefined;
|
|
3237
3286
|
AaveV3RatioCheck?: undefined;
|
|
3238
3287
|
MorphoBlueView?: undefined;
|
|
3288
|
+
MidnightPaybackDirect?: undefined;
|
|
3289
|
+
MidnightBorrowFromOrders?: undefined;
|
|
3290
|
+
MidnightPaybackFromOrders?: undefined;
|
|
3291
|
+
MidnightSupplyCollateral?: undefined;
|
|
3292
|
+
MidnightWithdrawCollateral?: undefined;
|
|
3293
|
+
MidnightView?: undefined;
|
|
3239
3294
|
} | {
|
|
3240
3295
|
DFSSell: string;
|
|
3241
3296
|
DFSSellNoFee: string;
|
|
@@ -3255,7 +3310,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3255
3310
|
TokenizedVaultAdapter: string;
|
|
3256
3311
|
FLAction: string;
|
|
3257
3312
|
FLAaveV3: string;
|
|
3258
|
-
FLAaveV3CarryDebt: string;
|
|
3259
3313
|
AaveV3Withdraw: string;
|
|
3260
3314
|
AaveV3Supply: string;
|
|
3261
3315
|
AaveV3SetEMode: string;
|
|
@@ -3365,6 +3419,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3365
3419
|
CompCollateralSwitch?: undefined;
|
|
3366
3420
|
FLAaveV2?: undefined;
|
|
3367
3421
|
FLAaveV3NoFee?: undefined;
|
|
3422
|
+
FLAaveV3CarryDebt?: undefined;
|
|
3368
3423
|
FLDyDx?: undefined;
|
|
3369
3424
|
FLMaker?: undefined;
|
|
3370
3425
|
FLBalancer?: undefined;
|
|
@@ -3374,7 +3429,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3374
3429
|
FLMorphoBlue?: undefined;
|
|
3375
3430
|
UniSupply?: undefined;
|
|
3376
3431
|
UniWithdraw?: undefined;
|
|
3377
|
-
UniswapClaim?: undefined;
|
|
3378
3432
|
UniCollectV3?: undefined;
|
|
3379
3433
|
UniMintV3?: undefined;
|
|
3380
3434
|
UniSupplyV3?: undefined;
|
|
@@ -3529,6 +3583,12 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
3529
3583
|
GasFeeTakerL2?: undefined;
|
|
3530
3584
|
AaveV3RatioCheck?: undefined;
|
|
3531
3585
|
MorphoBlueView?: undefined;
|
|
3586
|
+
MidnightPaybackDirect?: undefined;
|
|
3587
|
+
MidnightBorrowFromOrders?: undefined;
|
|
3588
|
+
MidnightPaybackFromOrders?: undefined;
|
|
3589
|
+
MidnightSupplyCollateral?: undefined;
|
|
3590
|
+
MidnightWithdrawCollateral?: undefined;
|
|
3591
|
+
MidnightView?: undefined;
|
|
3532
3592
|
};
|
|
3533
3593
|
declare const otherAddressesAllChains: {
|
|
3534
3594
|
[x: number]: {
|
|
@@ -3840,7 +3900,6 @@ declare const _default: {
|
|
|
3840
3900
|
AaveV3ATokenPayback: string;
|
|
3841
3901
|
AaveV3View: string;
|
|
3842
3902
|
AaveV3DelegateWithSig: string;
|
|
3843
|
-
AaveV3DelegateCredit: string;
|
|
3844
3903
|
GhoClaimAAVE: string;
|
|
3845
3904
|
GhoUnstake: string;
|
|
3846
3905
|
GhoStake: string;
|
|
@@ -3892,7 +3951,6 @@ declare const _default: {
|
|
|
3892
3951
|
FLMorphoBlue: string;
|
|
3893
3952
|
UniSupply: string;
|
|
3894
3953
|
UniWithdraw: string;
|
|
3895
|
-
UniswapClaim: string;
|
|
3896
3954
|
UniCollectV3: string;
|
|
3897
3955
|
UniMintV3: string;
|
|
3898
3956
|
UniSupplyV3: string;
|
|
@@ -4057,10 +4115,17 @@ declare const _default: {
|
|
|
4057
4115
|
AaveV4DelegateWithdrawWithSig: string;
|
|
4058
4116
|
AaveV4DelegateBorrowWithSig: string;
|
|
4059
4117
|
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
4118
|
+
AaveV3DelegateCredit?: undefined;
|
|
4060
4119
|
AaveV3RatioTrigger?: undefined;
|
|
4061
4120
|
GasFeeTakerL2?: undefined;
|
|
4062
4121
|
AaveV3RatioCheck?: undefined;
|
|
4063
4122
|
MorphoBlueView?: undefined;
|
|
4123
|
+
MidnightPaybackDirect?: undefined;
|
|
4124
|
+
MidnightBorrowFromOrders?: undefined;
|
|
4125
|
+
MidnightPaybackFromOrders?: undefined;
|
|
4126
|
+
MidnightSupplyCollateral?: undefined;
|
|
4127
|
+
MidnightWithdrawCollateral?: undefined;
|
|
4128
|
+
MidnightView?: undefined;
|
|
4064
4129
|
} | {
|
|
4065
4130
|
DFSSell: string;
|
|
4066
4131
|
DFSSellNoFee: string;
|
|
@@ -4097,7 +4162,6 @@ declare const _default: {
|
|
|
4097
4162
|
FLAaveV3: string;
|
|
4098
4163
|
FLBalancer: string;
|
|
4099
4164
|
FLAction: string;
|
|
4100
|
-
FLAaveV3CarryDebt: string;
|
|
4101
4165
|
AaveV3RatioTrigger: string;
|
|
4102
4166
|
GasFeeTakerL2: string;
|
|
4103
4167
|
AaveV3RatioCheck: string;
|
|
@@ -4196,6 +4260,7 @@ declare const _default: {
|
|
|
4196
4260
|
CompGetDebt?: undefined;
|
|
4197
4261
|
CompCollateralSwitch?: undefined;
|
|
4198
4262
|
FLAaveV2?: undefined;
|
|
4263
|
+
FLAaveV3CarryDebt?: undefined;
|
|
4199
4264
|
FLDyDx?: undefined;
|
|
4200
4265
|
FLMaker?: undefined;
|
|
4201
4266
|
FLSpark?: undefined;
|
|
@@ -4204,7 +4269,6 @@ declare const _default: {
|
|
|
4204
4269
|
FLMorphoBlue?: undefined;
|
|
4205
4270
|
UniSupply?: undefined;
|
|
4206
4271
|
UniWithdraw?: undefined;
|
|
4207
|
-
UniswapClaim?: undefined;
|
|
4208
4272
|
DyDxWithdraw?: undefined;
|
|
4209
4273
|
YearnSupply?: undefined;
|
|
4210
4274
|
YearnWithdraw?: undefined;
|
|
@@ -4354,6 +4418,12 @@ declare const _default: {
|
|
|
4354
4418
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
4355
4419
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
4356
4420
|
MorphoBlueView?: undefined;
|
|
4421
|
+
MidnightPaybackDirect?: undefined;
|
|
4422
|
+
MidnightBorrowFromOrders?: undefined;
|
|
4423
|
+
MidnightPaybackFromOrders?: undefined;
|
|
4424
|
+
MidnightSupplyCollateral?: undefined;
|
|
4425
|
+
MidnightWithdrawCollateral?: undefined;
|
|
4426
|
+
MidnightView?: undefined;
|
|
4357
4427
|
} | {
|
|
4358
4428
|
DFSSell: string;
|
|
4359
4429
|
DFSSellNoFee: string;
|
|
@@ -4386,7 +4456,6 @@ declare const _default: {
|
|
|
4386
4456
|
AaveV3Withdraw: string;
|
|
4387
4457
|
AaveV3ClaimRewards: string;
|
|
4388
4458
|
AaveV3DelegateWithSig: string;
|
|
4389
|
-
AaveV3DelegateCredit: string;
|
|
4390
4459
|
CompV3Allow: string;
|
|
4391
4460
|
CompV3Borrow: string;
|
|
4392
4461
|
CompV3Claim: string;
|
|
@@ -4400,7 +4469,6 @@ declare const _default: {
|
|
|
4400
4469
|
FLUniV3: string;
|
|
4401
4470
|
FLAction: string;
|
|
4402
4471
|
FLMorphoBlue: string;
|
|
4403
|
-
FLAaveV3CarryDebt: string;
|
|
4404
4472
|
GasFeeTakerL2: string;
|
|
4405
4473
|
AaveV3RatioCheck: string;
|
|
4406
4474
|
UniCollectV3: string;
|
|
@@ -4524,13 +4592,13 @@ declare const _default: {
|
|
|
4524
4592
|
CompGetDebt?: undefined;
|
|
4525
4593
|
CompCollateralSwitch?: undefined;
|
|
4526
4594
|
FLAaveV2?: undefined;
|
|
4595
|
+
FLAaveV3CarryDebt?: undefined;
|
|
4527
4596
|
FLDyDx?: undefined;
|
|
4528
4597
|
FLMaker?: undefined;
|
|
4529
4598
|
FLSpark?: undefined;
|
|
4530
4599
|
FLGho?: undefined;
|
|
4531
4600
|
UniSupply?: undefined;
|
|
4532
4601
|
UniWithdraw?: undefined;
|
|
4533
|
-
UniswapClaim?: undefined;
|
|
4534
4602
|
DyDxWithdraw?: undefined;
|
|
4535
4603
|
YearnSupply?: undefined;
|
|
4536
4604
|
YearnWithdraw?: undefined;
|
|
@@ -4646,7 +4714,14 @@ declare const _default: {
|
|
|
4646
4714
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
4647
4715
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
4648
4716
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
4717
|
+
AaveV3DelegateCredit?: undefined;
|
|
4649
4718
|
AaveV3RatioTrigger?: undefined;
|
|
4719
|
+
MidnightPaybackDirect?: undefined;
|
|
4720
|
+
MidnightBorrowFromOrders?: undefined;
|
|
4721
|
+
MidnightPaybackFromOrders?: undefined;
|
|
4722
|
+
MidnightSupplyCollateral?: undefined;
|
|
4723
|
+
MidnightWithdrawCollateral?: undefined;
|
|
4724
|
+
MidnightView?: undefined;
|
|
4650
4725
|
} | {
|
|
4651
4726
|
DFSSell: string;
|
|
4652
4727
|
DFSSellNoFee: string;
|
|
@@ -4673,7 +4748,6 @@ declare const _default: {
|
|
|
4673
4748
|
FLUniV3: string;
|
|
4674
4749
|
FLAction: string;
|
|
4675
4750
|
FLMorphoBlue: string;
|
|
4676
|
-
FLAaveV3CarryDebt: string;
|
|
4677
4751
|
AaveV3Withdraw: string;
|
|
4678
4752
|
AaveV3SwapBorrowRateMode: string;
|
|
4679
4753
|
AaveV3Supply: string;
|
|
@@ -4685,7 +4759,6 @@ declare const _default: {
|
|
|
4685
4759
|
AaveV3ATokenPayback: string;
|
|
4686
4760
|
AaveV3View: string;
|
|
4687
4761
|
AaveV3DelegateWithSig: string;
|
|
4688
|
-
AaveV3DelegateCredit: string;
|
|
4689
4762
|
CompV3Allow: string;
|
|
4690
4763
|
CompV3Borrow: string;
|
|
4691
4764
|
CompV3Claim: string;
|
|
@@ -4720,6 +4793,12 @@ declare const _default: {
|
|
|
4720
4793
|
SFApproveTokens: string;
|
|
4721
4794
|
SummerfiUnsub: string;
|
|
4722
4795
|
SummerfiUnsubV2: string;
|
|
4796
|
+
MidnightPaybackDirect: string;
|
|
4797
|
+
MidnightBorrowFromOrders: string;
|
|
4798
|
+
MidnightPaybackFromOrders: string;
|
|
4799
|
+
MidnightSupplyCollateral: string;
|
|
4800
|
+
MidnightWithdrawCollateral: string;
|
|
4801
|
+
MidnightView: string;
|
|
4723
4802
|
AutomationV2Unsub?: undefined;
|
|
4724
4803
|
SendTokenAndUnwrap?: undefined;
|
|
4725
4804
|
SDaiWrap?: undefined;
|
|
@@ -4800,13 +4879,13 @@ declare const _default: {
|
|
|
4800
4879
|
CompCollateralSwitch?: undefined;
|
|
4801
4880
|
FLAaveV2?: undefined;
|
|
4802
4881
|
FLAaveV3NoFee?: undefined;
|
|
4882
|
+
FLAaveV3CarryDebt?: undefined;
|
|
4803
4883
|
FLDyDx?: undefined;
|
|
4804
4884
|
FLMaker?: undefined;
|
|
4805
4885
|
FLSpark?: undefined;
|
|
4806
4886
|
FLGho?: undefined;
|
|
4807
4887
|
UniSupply?: undefined;
|
|
4808
4888
|
UniWithdraw?: undefined;
|
|
4809
|
-
UniswapClaim?: undefined;
|
|
4810
4889
|
UniCollectV3?: undefined;
|
|
4811
4890
|
UniMintV3?: undefined;
|
|
4812
4891
|
UniSupplyV3?: undefined;
|
|
@@ -4938,6 +5017,7 @@ declare const _default: {
|
|
|
4938
5017
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
4939
5018
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
4940
5019
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
5020
|
+
AaveV3DelegateCredit?: undefined;
|
|
4941
5021
|
AaveV3RatioTrigger?: undefined;
|
|
4942
5022
|
AaveV3RatioCheck?: undefined;
|
|
4943
5023
|
} | {
|
|
@@ -4959,7 +5039,6 @@ declare const _default: {
|
|
|
4959
5039
|
TokenizedVaultAdapter: string;
|
|
4960
5040
|
FLAction: string;
|
|
4961
5041
|
FLAaveV3: string;
|
|
4962
|
-
FLAaveV3CarryDebt: string;
|
|
4963
5042
|
AaveV3Withdraw: string;
|
|
4964
5043
|
AaveV3Supply: string;
|
|
4965
5044
|
AaveV3SetEMode: string;
|
|
@@ -5056,6 +5135,7 @@ declare const _default: {
|
|
|
5056
5135
|
CompCollateralSwitch?: undefined;
|
|
5057
5136
|
FLAaveV2?: undefined;
|
|
5058
5137
|
FLAaveV3NoFee?: undefined;
|
|
5138
|
+
FLAaveV3CarryDebt?: undefined;
|
|
5059
5139
|
FLDyDx?: undefined;
|
|
5060
5140
|
FLMaker?: undefined;
|
|
5061
5141
|
FLBalancer?: undefined;
|
|
@@ -5065,7 +5145,6 @@ declare const _default: {
|
|
|
5065
5145
|
FLMorphoBlue?: undefined;
|
|
5066
5146
|
UniSupply?: undefined;
|
|
5067
5147
|
UniWithdraw?: undefined;
|
|
5068
|
-
UniswapClaim?: undefined;
|
|
5069
5148
|
UniCollectV3?: undefined;
|
|
5070
5149
|
UniMintV3?: undefined;
|
|
5071
5150
|
UniSupplyV3?: undefined;
|
|
@@ -5233,6 +5312,12 @@ declare const _default: {
|
|
|
5233
5312
|
GasFeeTakerL2?: undefined;
|
|
5234
5313
|
AaveV3RatioCheck?: undefined;
|
|
5235
5314
|
MorphoBlueView?: undefined;
|
|
5315
|
+
MidnightPaybackDirect?: undefined;
|
|
5316
|
+
MidnightBorrowFromOrders?: undefined;
|
|
5317
|
+
MidnightPaybackFromOrders?: undefined;
|
|
5318
|
+
MidnightSupplyCollateral?: undefined;
|
|
5319
|
+
MidnightWithdrawCollateral?: undefined;
|
|
5320
|
+
MidnightView?: undefined;
|
|
5236
5321
|
} | {
|
|
5237
5322
|
DFSSell: string;
|
|
5238
5323
|
DFSSellNoFee: string;
|
|
@@ -5252,7 +5337,6 @@ declare const _default: {
|
|
|
5252
5337
|
TokenizedVaultAdapter: string;
|
|
5253
5338
|
FLAction: string;
|
|
5254
5339
|
FLAaveV3: string;
|
|
5255
|
-
FLAaveV3CarryDebt: string;
|
|
5256
5340
|
AaveV3Withdraw: string;
|
|
5257
5341
|
AaveV3Supply: string;
|
|
5258
5342
|
AaveV3SetEMode: string;
|
|
@@ -5362,6 +5446,7 @@ declare const _default: {
|
|
|
5362
5446
|
CompCollateralSwitch?: undefined;
|
|
5363
5447
|
FLAaveV2?: undefined;
|
|
5364
5448
|
FLAaveV3NoFee?: undefined;
|
|
5449
|
+
FLAaveV3CarryDebt?: undefined;
|
|
5365
5450
|
FLDyDx?: undefined;
|
|
5366
5451
|
FLMaker?: undefined;
|
|
5367
5452
|
FLBalancer?: undefined;
|
|
@@ -5371,7 +5456,6 @@ declare const _default: {
|
|
|
5371
5456
|
FLMorphoBlue?: undefined;
|
|
5372
5457
|
UniSupply?: undefined;
|
|
5373
5458
|
UniWithdraw?: undefined;
|
|
5374
|
-
UniswapClaim?: undefined;
|
|
5375
5459
|
UniCollectV3?: undefined;
|
|
5376
5460
|
UniMintV3?: undefined;
|
|
5377
5461
|
UniSupplyV3?: undefined;
|
|
@@ -5526,6 +5610,12 @@ declare const _default: {
|
|
|
5526
5610
|
GasFeeTakerL2?: undefined;
|
|
5527
5611
|
AaveV3RatioCheck?: undefined;
|
|
5528
5612
|
MorphoBlueView?: undefined;
|
|
5613
|
+
MidnightPaybackDirect?: undefined;
|
|
5614
|
+
MidnightBorrowFromOrders?: undefined;
|
|
5615
|
+
MidnightPaybackFromOrders?: undefined;
|
|
5616
|
+
MidnightSupplyCollateral?: undefined;
|
|
5617
|
+
MidnightWithdrawCollateral?: undefined;
|
|
5618
|
+
MidnightView?: undefined;
|
|
5529
5619
|
};
|
|
5530
5620
|
actionAddressesAllChains: {
|
|
5531
5621
|
[x: number]: {
|
|
@@ -5600,7 +5690,6 @@ declare const _default: {
|
|
|
5600
5690
|
AaveV3ATokenPayback: string;
|
|
5601
5691
|
AaveV3View: string;
|
|
5602
5692
|
AaveV3DelegateWithSig: string;
|
|
5603
|
-
AaveV3DelegateCredit: string;
|
|
5604
5693
|
GhoClaimAAVE: string;
|
|
5605
5694
|
GhoUnstake: string;
|
|
5606
5695
|
GhoStake: string;
|
|
@@ -5652,7 +5741,6 @@ declare const _default: {
|
|
|
5652
5741
|
FLMorphoBlue: string;
|
|
5653
5742
|
UniSupply: string;
|
|
5654
5743
|
UniWithdraw: string;
|
|
5655
|
-
UniswapClaim: string;
|
|
5656
5744
|
UniCollectV3: string;
|
|
5657
5745
|
UniMintV3: string;
|
|
5658
5746
|
UniSupplyV3: string;
|
|
@@ -5817,10 +5905,17 @@ declare const _default: {
|
|
|
5817
5905
|
AaveV4DelegateWithdrawWithSig: string;
|
|
5818
5906
|
AaveV4DelegateBorrowWithSig: string;
|
|
5819
5907
|
AaveV4DelegateSetUsingAsCollateralWithSig: string;
|
|
5908
|
+
AaveV3DelegateCredit?: undefined;
|
|
5820
5909
|
AaveV3RatioTrigger?: undefined;
|
|
5821
5910
|
GasFeeTakerL2?: undefined;
|
|
5822
5911
|
AaveV3RatioCheck?: undefined;
|
|
5823
5912
|
MorphoBlueView?: undefined;
|
|
5913
|
+
MidnightPaybackDirect?: undefined;
|
|
5914
|
+
MidnightBorrowFromOrders?: undefined;
|
|
5915
|
+
MidnightPaybackFromOrders?: undefined;
|
|
5916
|
+
MidnightSupplyCollateral?: undefined;
|
|
5917
|
+
MidnightWithdrawCollateral?: undefined;
|
|
5918
|
+
MidnightView?: undefined;
|
|
5824
5919
|
} | {
|
|
5825
5920
|
DFSSell: string;
|
|
5826
5921
|
DFSSellNoFee: string;
|
|
@@ -5857,7 +5952,6 @@ declare const _default: {
|
|
|
5857
5952
|
FLAaveV3: string;
|
|
5858
5953
|
FLBalancer: string;
|
|
5859
5954
|
FLAction: string;
|
|
5860
|
-
FLAaveV3CarryDebt: string;
|
|
5861
5955
|
AaveV3RatioTrigger: string;
|
|
5862
5956
|
GasFeeTakerL2: string;
|
|
5863
5957
|
AaveV3RatioCheck: string;
|
|
@@ -5956,6 +6050,7 @@ declare const _default: {
|
|
|
5956
6050
|
CompGetDebt?: undefined;
|
|
5957
6051
|
CompCollateralSwitch?: undefined;
|
|
5958
6052
|
FLAaveV2?: undefined;
|
|
6053
|
+
FLAaveV3CarryDebt?: undefined;
|
|
5959
6054
|
FLDyDx?: undefined;
|
|
5960
6055
|
FLMaker?: undefined;
|
|
5961
6056
|
FLSpark?: undefined;
|
|
@@ -5964,7 +6059,6 @@ declare const _default: {
|
|
|
5964
6059
|
FLMorphoBlue?: undefined;
|
|
5965
6060
|
UniSupply?: undefined;
|
|
5966
6061
|
UniWithdraw?: undefined;
|
|
5967
|
-
UniswapClaim?: undefined;
|
|
5968
6062
|
DyDxWithdraw?: undefined;
|
|
5969
6063
|
YearnSupply?: undefined;
|
|
5970
6064
|
YearnWithdraw?: undefined;
|
|
@@ -6114,6 +6208,12 @@ declare const _default: {
|
|
|
6114
6208
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
6115
6209
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
6116
6210
|
MorphoBlueView?: undefined;
|
|
6211
|
+
MidnightPaybackDirect?: undefined;
|
|
6212
|
+
MidnightBorrowFromOrders?: undefined;
|
|
6213
|
+
MidnightPaybackFromOrders?: undefined;
|
|
6214
|
+
MidnightSupplyCollateral?: undefined;
|
|
6215
|
+
MidnightWithdrawCollateral?: undefined;
|
|
6216
|
+
MidnightView?: undefined;
|
|
6117
6217
|
} | {
|
|
6118
6218
|
DFSSell: string;
|
|
6119
6219
|
DFSSellNoFee: string;
|
|
@@ -6146,7 +6246,6 @@ declare const _default: {
|
|
|
6146
6246
|
AaveV3Withdraw: string;
|
|
6147
6247
|
AaveV3ClaimRewards: string;
|
|
6148
6248
|
AaveV3DelegateWithSig: string;
|
|
6149
|
-
AaveV3DelegateCredit: string;
|
|
6150
6249
|
CompV3Allow: string;
|
|
6151
6250
|
CompV3Borrow: string;
|
|
6152
6251
|
CompV3Claim: string;
|
|
@@ -6160,7 +6259,6 @@ declare const _default: {
|
|
|
6160
6259
|
FLUniV3: string;
|
|
6161
6260
|
FLAction: string;
|
|
6162
6261
|
FLMorphoBlue: string;
|
|
6163
|
-
FLAaveV3CarryDebt: string;
|
|
6164
6262
|
GasFeeTakerL2: string;
|
|
6165
6263
|
AaveV3RatioCheck: string;
|
|
6166
6264
|
UniCollectV3: string;
|
|
@@ -6284,13 +6382,13 @@ declare const _default: {
|
|
|
6284
6382
|
CompGetDebt?: undefined;
|
|
6285
6383
|
CompCollateralSwitch?: undefined;
|
|
6286
6384
|
FLAaveV2?: undefined;
|
|
6385
|
+
FLAaveV3CarryDebt?: undefined;
|
|
6287
6386
|
FLDyDx?: undefined;
|
|
6288
6387
|
FLMaker?: undefined;
|
|
6289
6388
|
FLSpark?: undefined;
|
|
6290
6389
|
FLGho?: undefined;
|
|
6291
6390
|
UniSupply?: undefined;
|
|
6292
6391
|
UniWithdraw?: undefined;
|
|
6293
|
-
UniswapClaim?: undefined;
|
|
6294
6392
|
DyDxWithdraw?: undefined;
|
|
6295
6393
|
YearnSupply?: undefined;
|
|
6296
6394
|
YearnWithdraw?: undefined;
|
|
@@ -6406,7 +6504,14 @@ declare const _default: {
|
|
|
6406
6504
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
6407
6505
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
6408
6506
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
6507
|
+
AaveV3DelegateCredit?: undefined;
|
|
6409
6508
|
AaveV3RatioTrigger?: undefined;
|
|
6509
|
+
MidnightPaybackDirect?: undefined;
|
|
6510
|
+
MidnightBorrowFromOrders?: undefined;
|
|
6511
|
+
MidnightPaybackFromOrders?: undefined;
|
|
6512
|
+
MidnightSupplyCollateral?: undefined;
|
|
6513
|
+
MidnightWithdrawCollateral?: undefined;
|
|
6514
|
+
MidnightView?: undefined;
|
|
6410
6515
|
} | {
|
|
6411
6516
|
DFSSell: string;
|
|
6412
6517
|
DFSSellNoFee: string;
|
|
@@ -6433,7 +6538,6 @@ declare const _default: {
|
|
|
6433
6538
|
FLUniV3: string;
|
|
6434
6539
|
FLAction: string;
|
|
6435
6540
|
FLMorphoBlue: string;
|
|
6436
|
-
FLAaveV3CarryDebt: string;
|
|
6437
6541
|
AaveV3Withdraw: string;
|
|
6438
6542
|
AaveV3SwapBorrowRateMode: string;
|
|
6439
6543
|
AaveV3Supply: string;
|
|
@@ -6445,7 +6549,6 @@ declare const _default: {
|
|
|
6445
6549
|
AaveV3ATokenPayback: string;
|
|
6446
6550
|
AaveV3View: string;
|
|
6447
6551
|
AaveV3DelegateWithSig: string;
|
|
6448
|
-
AaveV3DelegateCredit: string;
|
|
6449
6552
|
CompV3Allow: string;
|
|
6450
6553
|
CompV3Borrow: string;
|
|
6451
6554
|
CompV3Claim: string;
|
|
@@ -6480,6 +6583,12 @@ declare const _default: {
|
|
|
6480
6583
|
SFApproveTokens: string;
|
|
6481
6584
|
SummerfiUnsub: string;
|
|
6482
6585
|
SummerfiUnsubV2: string;
|
|
6586
|
+
MidnightPaybackDirect: string;
|
|
6587
|
+
MidnightBorrowFromOrders: string;
|
|
6588
|
+
MidnightPaybackFromOrders: string;
|
|
6589
|
+
MidnightSupplyCollateral: string;
|
|
6590
|
+
MidnightWithdrawCollateral: string;
|
|
6591
|
+
MidnightView: string;
|
|
6483
6592
|
AutomationV2Unsub?: undefined;
|
|
6484
6593
|
SendTokenAndUnwrap?: undefined;
|
|
6485
6594
|
SDaiWrap?: undefined;
|
|
@@ -6560,13 +6669,13 @@ declare const _default: {
|
|
|
6560
6669
|
CompCollateralSwitch?: undefined;
|
|
6561
6670
|
FLAaveV2?: undefined;
|
|
6562
6671
|
FLAaveV3NoFee?: undefined;
|
|
6672
|
+
FLAaveV3CarryDebt?: undefined;
|
|
6563
6673
|
FLDyDx?: undefined;
|
|
6564
6674
|
FLMaker?: undefined;
|
|
6565
6675
|
FLSpark?: undefined;
|
|
6566
6676
|
FLGho?: undefined;
|
|
6567
6677
|
UniSupply?: undefined;
|
|
6568
6678
|
UniWithdraw?: undefined;
|
|
6569
|
-
UniswapClaim?: undefined;
|
|
6570
6679
|
UniCollectV3?: undefined;
|
|
6571
6680
|
UniMintV3?: undefined;
|
|
6572
6681
|
UniSupplyV3?: undefined;
|
|
@@ -6698,6 +6807,7 @@ declare const _default: {
|
|
|
6698
6807
|
AaveV4DelegateWithdrawWithSig?: undefined;
|
|
6699
6808
|
AaveV4DelegateBorrowWithSig?: undefined;
|
|
6700
6809
|
AaveV4DelegateSetUsingAsCollateralWithSig?: undefined;
|
|
6810
|
+
AaveV3DelegateCredit?: undefined;
|
|
6701
6811
|
AaveV3RatioTrigger?: undefined;
|
|
6702
6812
|
AaveV3RatioCheck?: undefined;
|
|
6703
6813
|
} | {
|
|
@@ -6719,7 +6829,6 @@ declare const _default: {
|
|
|
6719
6829
|
TokenizedVaultAdapter: string;
|
|
6720
6830
|
FLAction: string;
|
|
6721
6831
|
FLAaveV3: string;
|
|
6722
|
-
FLAaveV3CarryDebt: string;
|
|
6723
6832
|
AaveV3Withdraw: string;
|
|
6724
6833
|
AaveV3Supply: string;
|
|
6725
6834
|
AaveV3SetEMode: string;
|
|
@@ -6816,6 +6925,7 @@ declare const _default: {
|
|
|
6816
6925
|
CompCollateralSwitch?: undefined;
|
|
6817
6926
|
FLAaveV2?: undefined;
|
|
6818
6927
|
FLAaveV3NoFee?: undefined;
|
|
6928
|
+
FLAaveV3CarryDebt?: undefined;
|
|
6819
6929
|
FLDyDx?: undefined;
|
|
6820
6930
|
FLMaker?: undefined;
|
|
6821
6931
|
FLBalancer?: undefined;
|
|
@@ -6825,7 +6935,6 @@ declare const _default: {
|
|
|
6825
6935
|
FLMorphoBlue?: undefined;
|
|
6826
6936
|
UniSupply?: undefined;
|
|
6827
6937
|
UniWithdraw?: undefined;
|
|
6828
|
-
UniswapClaim?: undefined;
|
|
6829
6938
|
UniCollectV3?: undefined;
|
|
6830
6939
|
UniMintV3?: undefined;
|
|
6831
6940
|
UniSupplyV3?: undefined;
|
|
@@ -6993,6 +7102,12 @@ declare const _default: {
|
|
|
6993
7102
|
GasFeeTakerL2?: undefined;
|
|
6994
7103
|
AaveV3RatioCheck?: undefined;
|
|
6995
7104
|
MorphoBlueView?: undefined;
|
|
7105
|
+
MidnightPaybackDirect?: undefined;
|
|
7106
|
+
MidnightBorrowFromOrders?: undefined;
|
|
7107
|
+
MidnightPaybackFromOrders?: undefined;
|
|
7108
|
+
MidnightSupplyCollateral?: undefined;
|
|
7109
|
+
MidnightWithdrawCollateral?: undefined;
|
|
7110
|
+
MidnightView?: undefined;
|
|
6996
7111
|
} | {
|
|
6997
7112
|
DFSSell: string;
|
|
6998
7113
|
DFSSellNoFee: string;
|
|
@@ -7012,7 +7127,6 @@ declare const _default: {
|
|
|
7012
7127
|
TokenizedVaultAdapter: string;
|
|
7013
7128
|
FLAction: string;
|
|
7014
7129
|
FLAaveV3: string;
|
|
7015
|
-
FLAaveV3CarryDebt: string;
|
|
7016
7130
|
AaveV3Withdraw: string;
|
|
7017
7131
|
AaveV3Supply: string;
|
|
7018
7132
|
AaveV3SetEMode: string;
|
|
@@ -7122,6 +7236,7 @@ declare const _default: {
|
|
|
7122
7236
|
CompCollateralSwitch?: undefined;
|
|
7123
7237
|
FLAaveV2?: undefined;
|
|
7124
7238
|
FLAaveV3NoFee?: undefined;
|
|
7239
|
+
FLAaveV3CarryDebt?: undefined;
|
|
7125
7240
|
FLDyDx?: undefined;
|
|
7126
7241
|
FLMaker?: undefined;
|
|
7127
7242
|
FLBalancer?: undefined;
|
|
@@ -7131,7 +7246,6 @@ declare const _default: {
|
|
|
7131
7246
|
FLMorphoBlue?: undefined;
|
|
7132
7247
|
UniSupply?: undefined;
|
|
7133
7248
|
UniWithdraw?: undefined;
|
|
7134
|
-
UniswapClaim?: undefined;
|
|
7135
7249
|
UniCollectV3?: undefined;
|
|
7136
7250
|
UniMintV3?: undefined;
|
|
7137
7251
|
UniSupplyV3?: undefined;
|
|
@@ -7286,6 +7400,12 @@ declare const _default: {
|
|
|
7286
7400
|
GasFeeTakerL2?: undefined;
|
|
7287
7401
|
AaveV3RatioCheck?: undefined;
|
|
7288
7402
|
MorphoBlueView?: undefined;
|
|
7403
|
+
MidnightPaybackDirect?: undefined;
|
|
7404
|
+
MidnightBorrowFromOrders?: undefined;
|
|
7405
|
+
MidnightPaybackFromOrders?: undefined;
|
|
7406
|
+
MidnightSupplyCollateral?: undefined;
|
|
7407
|
+
MidnightWithdrawCollateral?: undefined;
|
|
7408
|
+
MidnightView?: undefined;
|
|
7289
7409
|
};
|
|
7290
7410
|
};
|
|
7291
7411
|
otherAddresses: (chainId?: null) => {
|