@defisaver/sdk 1.3.2 → 1.3.4-dev.0
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/sky/SkyClaimRewardsAction.d.ts +2 -2
- package/esm/src/actions/sky/SkyClaimRewardsAction.js +2 -2
- package/esm/src/actions/sky/SkyStakingEngineClaimRewards.d.ts +16 -0
- package/esm/src/actions/sky/SkyStakingEngineClaimRewards.js +24 -0
- package/esm/src/actions/sky/SkyStakingEngineOpen.d.ts +13 -0
- package/esm/src/actions/sky/SkyStakingEngineOpen.js +18 -0
- package/esm/src/actions/sky/SkyStakingEngineSelectFarm.d.ts +15 -0
- package/esm/src/actions/sky/SkyStakingEngineSelectFarm.js +22 -0
- package/esm/src/actions/sky/SkyStakingEngineStake.d.ts +16 -0
- package/esm/src/actions/sky/SkyStakingEngineStake.js +24 -0
- package/esm/src/actions/sky/SkyStakingEngineUnstake.d.ts +16 -0
- package/esm/src/actions/sky/SkyStakingEngineUnstake.js +24 -0
- package/esm/src/actions/sky/SkyUnstakeAction.d.ts +1 -1
- package/esm/src/actions/sky/SkyUnstakeAction.js +1 -1
- package/esm/src/actions/sky/index.d.ts +5 -0
- package/esm/src/actions/sky/index.js +6 -0
- package/esm/src/addresses.d.ts +321 -0
- package/esm/src/addresses.js +48 -1
- package/esm/src/config.js +8 -0
- package/esm/src/index.d.ts +1674 -390
- package/esm/src/types.d.ts +1 -0
- package/package.json +2 -2
- package/src/actions/sky/SkyClaimRewardsAction.ts +3 -4
- package/src/actions/sky/SkyStakeAction.ts +0 -1
- package/src/actions/sky/SkyStakingEngineClaimRewards.ts +36 -0
- package/src/actions/sky/SkyStakingEngineOpen.ts +25 -0
- package/src/actions/sky/SkyStakingEngineSelectFarm.ts +29 -0
- package/src/actions/sky/SkyStakingEngineStake.ts +36 -0
- package/src/actions/sky/SkyStakingEngineUnstake.ts +36 -0
- package/src/actions/sky/SkyUnstakeAction.ts +1 -2
- package/src/actions/sky/index.ts +8 -1
- package/src/addresses.ts +50 -1
- package/src/config.ts +8 -0
- package/src/types.ts +1 -0
- package/umd/index.js +407 -179
- package/yarn-error.log +0 -3976
package/esm/src/index.d.ts
CHANGED
|
@@ -39,6 +39,11 @@ declare const actionAddressesAllChains: {
|
|
|
39
39
|
SkyStake: string;
|
|
40
40
|
SkyUnstake: string;
|
|
41
41
|
SkyClaimRewards: string;
|
|
42
|
+
SkyStakingEngineOpen: string;
|
|
43
|
+
SkyStakingEngineSelectFarm: string;
|
|
44
|
+
SkyStakingEngineStake: string;
|
|
45
|
+
SkyStakingEngineUnstake: string;
|
|
46
|
+
SkyStakingEngineClaimRewards: string;
|
|
42
47
|
McdGenerate: string;
|
|
43
48
|
McdGive: string;
|
|
44
49
|
McdMerge: string;
|
|
@@ -346,6 +351,11 @@ declare const actionAddressesAllChains: {
|
|
|
346
351
|
SkyStake?: undefined;
|
|
347
352
|
SkyUnstake?: undefined;
|
|
348
353
|
SkyClaimRewards?: undefined;
|
|
354
|
+
SkyStakingEngineOpen?: undefined;
|
|
355
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
356
|
+
SkyStakingEngineStake?: undefined;
|
|
357
|
+
SkyStakingEngineUnstake?: undefined;
|
|
358
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
349
359
|
McdGenerate?: undefined;
|
|
350
360
|
McdGive?: undefined;
|
|
351
361
|
McdMerge?: undefined;
|
|
@@ -643,6 +653,11 @@ declare const actionAddressesAllChains: {
|
|
|
643
653
|
SkyStake?: undefined;
|
|
644
654
|
SkyUnstake?: undefined;
|
|
645
655
|
SkyClaimRewards?: undefined;
|
|
656
|
+
SkyStakingEngineOpen?: undefined;
|
|
657
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
658
|
+
SkyStakingEngineStake?: undefined;
|
|
659
|
+
SkyStakingEngineUnstake?: undefined;
|
|
660
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
646
661
|
McdGenerate?: undefined;
|
|
647
662
|
McdGive?: undefined;
|
|
648
663
|
McdMerge?: undefined;
|
|
@@ -908,6 +923,11 @@ declare const actionAddressesAllChains: {
|
|
|
908
923
|
SkyStake?: undefined;
|
|
909
924
|
SkyUnstake?: undefined;
|
|
910
925
|
SkyClaimRewards?: undefined;
|
|
926
|
+
SkyStakingEngineOpen?: undefined;
|
|
927
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
928
|
+
SkyStakingEngineStake?: undefined;
|
|
929
|
+
SkyStakingEngineUnstake?: undefined;
|
|
930
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
911
931
|
McdGenerate?: undefined;
|
|
912
932
|
McdGive?: undefined;
|
|
913
933
|
McdMerge?: undefined;
|
|
@@ -1111,6 +1131,286 @@ declare const actionAddressesAllChains: {
|
|
|
1111
1131
|
AaveV3DelegateCredit?: undefined;
|
|
1112
1132
|
AaveV3RatioTrigger?: undefined;
|
|
1113
1133
|
AaveV3RatioCheck?: undefined;
|
|
1134
|
+
} | {
|
|
1135
|
+
DFSSell: string;
|
|
1136
|
+
DFSSellNoFee: string;
|
|
1137
|
+
WrapEth: string;
|
|
1138
|
+
UnwrapEth: string;
|
|
1139
|
+
SendToken: string;
|
|
1140
|
+
SendTokens: string;
|
|
1141
|
+
SendTokenAndUnwrap: string;
|
|
1142
|
+
PullToken: string;
|
|
1143
|
+
ApproveToken: string;
|
|
1144
|
+
SumInputs: string;
|
|
1145
|
+
SubInputs: string;
|
|
1146
|
+
TokenBalance: string;
|
|
1147
|
+
PermitToken: string;
|
|
1148
|
+
MerklClaim: string;
|
|
1149
|
+
TransferNFT: string;
|
|
1150
|
+
TokenizedVaultAdapter: string;
|
|
1151
|
+
FLAction: string;
|
|
1152
|
+
FLAaveV3: string;
|
|
1153
|
+
AaveV3Withdraw: string;
|
|
1154
|
+
AaveV3Supply: string;
|
|
1155
|
+
AaveV3SetEMode: string;
|
|
1156
|
+
AaveV3Payback: string;
|
|
1157
|
+
AaveV3CollateralSwitch: string;
|
|
1158
|
+
AaveV3ClaimRewards: string;
|
|
1159
|
+
AaveV3Borrow: string;
|
|
1160
|
+
AaveV3ATokenPayback: string;
|
|
1161
|
+
AaveV3View: string;
|
|
1162
|
+
AaveV3DelegateWithSig: string;
|
|
1163
|
+
AaveV3DelegateCredit: string;
|
|
1164
|
+
ChangeProxyOwner?: undefined;
|
|
1165
|
+
AutomationV2Unsub?: undefined;
|
|
1166
|
+
ToggleSub?: undefined;
|
|
1167
|
+
UpdateSub?: undefined;
|
|
1168
|
+
CreateSub?: undefined;
|
|
1169
|
+
SDaiWrap?: undefined;
|
|
1170
|
+
SDaiUnwrap?: undefined;
|
|
1171
|
+
StarknetClaim?: undefined;
|
|
1172
|
+
HandleAuth?: undefined;
|
|
1173
|
+
SkyStake?: undefined;
|
|
1174
|
+
SkyUnstake?: undefined;
|
|
1175
|
+
SkyClaimRewards?: undefined;
|
|
1176
|
+
SkyStakingEngineOpen?: undefined;
|
|
1177
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
1178
|
+
SkyStakingEngineStake?: undefined;
|
|
1179
|
+
SkyStakingEngineUnstake?: undefined;
|
|
1180
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
1181
|
+
McdGenerate?: undefined;
|
|
1182
|
+
McdGive?: undefined;
|
|
1183
|
+
McdMerge?: undefined;
|
|
1184
|
+
McdOpen?: undefined;
|
|
1185
|
+
McdPayback?: undefined;
|
|
1186
|
+
McdSupply?: undefined;
|
|
1187
|
+
McdWithdraw?: undefined;
|
|
1188
|
+
McdClaim?: undefined;
|
|
1189
|
+
McdDsrDeposit?: undefined;
|
|
1190
|
+
McdDsrWithdraw?: undefined;
|
|
1191
|
+
McdTokenConverter?: undefined;
|
|
1192
|
+
ReflexerSupply?: undefined;
|
|
1193
|
+
ReflexerWithdraw?: undefined;
|
|
1194
|
+
ReflexerPayback?: undefined;
|
|
1195
|
+
ReflexerGenerate?: undefined;
|
|
1196
|
+
ReflexerOpen?: undefined;
|
|
1197
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
1198
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
1199
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
1200
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
1201
|
+
AaveBorrow?: undefined;
|
|
1202
|
+
AavePayback?: undefined;
|
|
1203
|
+
AaveSupply?: undefined;
|
|
1204
|
+
AaveWithdraw?: undefined;
|
|
1205
|
+
AaveCollateralSwitch?: undefined;
|
|
1206
|
+
AaveUnstake?: undefined;
|
|
1207
|
+
AaveClaimAAVE?: undefined;
|
|
1208
|
+
AaveClaimStkAave?: undefined;
|
|
1209
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
1210
|
+
GhoClaimAAVE?: undefined;
|
|
1211
|
+
GhoUnstake?: undefined;
|
|
1212
|
+
GhoStake?: undefined;
|
|
1213
|
+
LSVWithdraw?: undefined;
|
|
1214
|
+
LSVBorrow?: undefined;
|
|
1215
|
+
LSVSupply?: undefined;
|
|
1216
|
+
LSVPayback?: undefined;
|
|
1217
|
+
LSVSell?: undefined;
|
|
1218
|
+
MorphoAaveV2Borrow?: undefined;
|
|
1219
|
+
MorphoAaveV2Payback?: undefined;
|
|
1220
|
+
MorphoAaveV2Supply?: undefined;
|
|
1221
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
1222
|
+
MorphoClaim?: undefined;
|
|
1223
|
+
MorphoAaveV3Borrow?: undefined;
|
|
1224
|
+
MorphoAaveV3Payback?: undefined;
|
|
1225
|
+
MorphoAaveV3Supply?: undefined;
|
|
1226
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
1227
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1228
|
+
SparkBorrow?: undefined;
|
|
1229
|
+
SparkClaimRewards?: undefined;
|
|
1230
|
+
SparkCollateralSwitch?: undefined;
|
|
1231
|
+
SparkPayback?: undefined;
|
|
1232
|
+
SparkSetEMode?: undefined;
|
|
1233
|
+
SparkSpTokenPayback?: undefined;
|
|
1234
|
+
SparkSupply?: undefined;
|
|
1235
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
1236
|
+
SparkWithdraw?: undefined;
|
|
1237
|
+
SparkDelegateCredit?: undefined;
|
|
1238
|
+
SparkDelegateWithSig?: undefined;
|
|
1239
|
+
SparkSPKClaim?: undefined;
|
|
1240
|
+
CompBorrow?: undefined;
|
|
1241
|
+
CompClaim?: undefined;
|
|
1242
|
+
CompPayback?: undefined;
|
|
1243
|
+
CompSupply?: undefined;
|
|
1244
|
+
CompWithdraw?: undefined;
|
|
1245
|
+
CompGetDebt?: undefined;
|
|
1246
|
+
CompCollateralSwitch?: undefined;
|
|
1247
|
+
FLAaveV2?: undefined;
|
|
1248
|
+
FLAaveV3NoFee?: undefined;
|
|
1249
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1250
|
+
FLDyDx?: undefined;
|
|
1251
|
+
FLMaker?: undefined;
|
|
1252
|
+
FLBalancer?: undefined;
|
|
1253
|
+
FLSpark?: undefined;
|
|
1254
|
+
FLUniV3?: undefined;
|
|
1255
|
+
FLGho?: undefined;
|
|
1256
|
+
FLMorphoBlue?: undefined;
|
|
1257
|
+
UniSupply?: undefined;
|
|
1258
|
+
UniWithdraw?: undefined;
|
|
1259
|
+
UniCollectV3?: undefined;
|
|
1260
|
+
UniMintV3?: undefined;
|
|
1261
|
+
UniSupplyV3?: undefined;
|
|
1262
|
+
UniWithdrawV3?: undefined;
|
|
1263
|
+
UniCreatePoolV3?: undefined;
|
|
1264
|
+
DyDxWithdraw?: undefined;
|
|
1265
|
+
YearnSupply?: undefined;
|
|
1266
|
+
YearnWithdraw?: undefined;
|
|
1267
|
+
LiquityClose?: undefined;
|
|
1268
|
+
LiquityBorrow?: undefined;
|
|
1269
|
+
LiquityOpen?: undefined;
|
|
1270
|
+
LiquityPayback?: undefined;
|
|
1271
|
+
LiquityWithdraw?: undefined;
|
|
1272
|
+
LiquitySupply?: undefined;
|
|
1273
|
+
LiquitySPDeposit?: undefined;
|
|
1274
|
+
LiquitySPWithdraw?: undefined;
|
|
1275
|
+
LiquityStake?: undefined;
|
|
1276
|
+
LiquityUnstake?: undefined;
|
|
1277
|
+
LiquityEthGainToTrove?: undefined;
|
|
1278
|
+
LiquityClaim?: undefined;
|
|
1279
|
+
LiquityRedeem?: undefined;
|
|
1280
|
+
LiquityAdjust?: undefined;
|
|
1281
|
+
LiquityV2CloseLegacy?: undefined;
|
|
1282
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
1283
|
+
LiquityV2Open?: undefined;
|
|
1284
|
+
LiquityV2Close?: undefined;
|
|
1285
|
+
LiquityV2Supply?: undefined;
|
|
1286
|
+
LiquityV2Withdraw?: undefined;
|
|
1287
|
+
LiquityV2Borrow?: undefined;
|
|
1288
|
+
LiquityV2Payback?: undefined;
|
|
1289
|
+
LiquityV2Claim?: undefined;
|
|
1290
|
+
LiquityV2Adjust?: undefined;
|
|
1291
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
1292
|
+
LiquityV2SPDeposit?: undefined;
|
|
1293
|
+
LiquityV2SPWithdraw?: undefined;
|
|
1294
|
+
LiquityV2SPClaimColl?: undefined;
|
|
1295
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
1296
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
1297
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
1298
|
+
LidoStake?: undefined;
|
|
1299
|
+
LidoWrap?: undefined;
|
|
1300
|
+
LidoUnwrap?: undefined;
|
|
1301
|
+
InstPullTokens?: undefined;
|
|
1302
|
+
BalancerV2Supply?: undefined;
|
|
1303
|
+
BalancerV2Withdraw?: undefined;
|
|
1304
|
+
BalancerV2Claim?: undefined;
|
|
1305
|
+
GUniWithdraw?: undefined;
|
|
1306
|
+
GUniDeposit?: undefined;
|
|
1307
|
+
RariDeposit?: undefined;
|
|
1308
|
+
RariWithdraw?: undefined;
|
|
1309
|
+
MStableDeposit?: undefined;
|
|
1310
|
+
MStableWithdraw?: undefined;
|
|
1311
|
+
MStableClaim?: undefined;
|
|
1312
|
+
McdRatioCheck?: undefined;
|
|
1313
|
+
GasFeeTaker?: undefined;
|
|
1314
|
+
CurveStethPoolDeposit?: undefined;
|
|
1315
|
+
CurveStethPoolWithdraw?: undefined;
|
|
1316
|
+
CurveDeposit?: undefined;
|
|
1317
|
+
CurveWithdraw?: undefined;
|
|
1318
|
+
McdBoostComposite?: undefined;
|
|
1319
|
+
McdRepayComposite?: undefined;
|
|
1320
|
+
FLEuler?: undefined;
|
|
1321
|
+
TrailingStopTrigger?: undefined;
|
|
1322
|
+
CBRebondTrigger?: undefined;
|
|
1323
|
+
CBUpdateRebondSub?: undefined;
|
|
1324
|
+
LiquityRatioCheck?: undefined;
|
|
1325
|
+
ConvexDeposit?: undefined;
|
|
1326
|
+
ConvexWithdraw?: undefined;
|
|
1327
|
+
ConvexClaim?: undefined;
|
|
1328
|
+
CBCreate?: undefined;
|
|
1329
|
+
CBRedeem?: undefined;
|
|
1330
|
+
CBChickenIn?: undefined;
|
|
1331
|
+
CBChickenOut?: undefined;
|
|
1332
|
+
CBCreateRebondSub?: undefined;
|
|
1333
|
+
FetchBondId?: undefined;
|
|
1334
|
+
CompV3Allow?: undefined;
|
|
1335
|
+
CompV3Borrow?: undefined;
|
|
1336
|
+
CompV3Claim?: undefined;
|
|
1337
|
+
CompV3Payback?: undefined;
|
|
1338
|
+
CompV3Supply?: undefined;
|
|
1339
|
+
CompV3Transfer?: undefined;
|
|
1340
|
+
CompV3Withdraw?: undefined;
|
|
1341
|
+
CurveUsdBorrow?: undefined;
|
|
1342
|
+
CurveUsdCreate?: undefined;
|
|
1343
|
+
CurveUsdPayback?: undefined;
|
|
1344
|
+
CurveUsdSupply?: undefined;
|
|
1345
|
+
CurveUsdAdjust?: undefined;
|
|
1346
|
+
CurveUsdWithdraw?: undefined;
|
|
1347
|
+
CurveUsdLevCreate?: undefined;
|
|
1348
|
+
CurveUsdRepay?: undefined;
|
|
1349
|
+
CurveUsdSwapper?: undefined;
|
|
1350
|
+
CurveUsdSwapperTransient?: undefined;
|
|
1351
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
1352
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1353
|
+
CurveUsdGetDebt?: undefined;
|
|
1354
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1355
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1356
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
1357
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
1358
|
+
CurveUsdRepayTransient?: undefined;
|
|
1359
|
+
MorphoBlueSupply?: undefined;
|
|
1360
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
1361
|
+
MorphoBlueWithdraw?: undefined;
|
|
1362
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
1363
|
+
MorphoBlueBorrow?: undefined;
|
|
1364
|
+
MorphoBluePayback?: undefined;
|
|
1365
|
+
MorphoBlueSetAuth?: undefined;
|
|
1366
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1367
|
+
MorphoTokenWrap?: undefined;
|
|
1368
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
1369
|
+
MorphoBlueClaim?: undefined;
|
|
1370
|
+
LlamaLendCreate?: undefined;
|
|
1371
|
+
LlamaLendSupply?: undefined;
|
|
1372
|
+
LlamaLendBorrow?: undefined;
|
|
1373
|
+
LlamaLendWithdraw?: undefined;
|
|
1374
|
+
LlamaLendPayback?: undefined;
|
|
1375
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
1376
|
+
LlamaLendGetDebt?: undefined;
|
|
1377
|
+
LlamaLendBoost?: undefined;
|
|
1378
|
+
LlamaLendRepay?: undefined;
|
|
1379
|
+
LlamaLendLevCreate?: undefined;
|
|
1380
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
1381
|
+
EulerV2Supply?: undefined;
|
|
1382
|
+
EulerV2Withdraw?: undefined;
|
|
1383
|
+
EulerV2Borrow?: undefined;
|
|
1384
|
+
EulerV2Payback?: undefined;
|
|
1385
|
+
EulerV2CollateralSwitch?: undefined;
|
|
1386
|
+
EulerV2View?: undefined;
|
|
1387
|
+
RenzoStake?: undefined;
|
|
1388
|
+
EtherFiStake?: undefined;
|
|
1389
|
+
EtherFiWrap?: undefined;
|
|
1390
|
+
EtherFiUnwrap?: undefined;
|
|
1391
|
+
KingClaim?: undefined;
|
|
1392
|
+
FluidVaultT1Open?: undefined;
|
|
1393
|
+
FluidVaultT1Adjust?: undefined;
|
|
1394
|
+
FluidVaultT1Borrow?: undefined;
|
|
1395
|
+
FluidVaultT1Payback?: undefined;
|
|
1396
|
+
FluidVaultT1Withdraw?: undefined;
|
|
1397
|
+
FluidVaultT1Supply?: undefined;
|
|
1398
|
+
FluidView?: undefined;
|
|
1399
|
+
FluidClaim?: undefined;
|
|
1400
|
+
FluidDexOpen?: undefined;
|
|
1401
|
+
FluidDexSupply?: undefined;
|
|
1402
|
+
FluidDexBorrow?: undefined;
|
|
1403
|
+
FluidDexPayback?: undefined;
|
|
1404
|
+
FluidDexWithdraw?: undefined;
|
|
1405
|
+
PendleTokenRedeem?: undefined;
|
|
1406
|
+
UmbrellaClaimRewards?: undefined;
|
|
1407
|
+
UmbrellaStake?: undefined;
|
|
1408
|
+
UmbrellaUnstake?: undefined;
|
|
1409
|
+
SFApproveTokens?: undefined;
|
|
1410
|
+
AaveV3RatioTrigger?: undefined;
|
|
1411
|
+
GasFeeTakerL2?: undefined;
|
|
1412
|
+
AaveV3RatioCheck?: undefined;
|
|
1413
|
+
MorphoBlueView?: undefined;
|
|
1114
1414
|
};
|
|
1115
1415
|
};
|
|
1116
1416
|
declare const actionAddresses: (chainId?: null) => {
|
|
@@ -1141,6 +1441,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1141
1441
|
SkyStake: string;
|
|
1142
1442
|
SkyUnstake: string;
|
|
1143
1443
|
SkyClaimRewards: string;
|
|
1444
|
+
SkyStakingEngineOpen: string;
|
|
1445
|
+
SkyStakingEngineSelectFarm: string;
|
|
1446
|
+
SkyStakingEngineStake: string;
|
|
1447
|
+
SkyStakingEngineUnstake: string;
|
|
1448
|
+
SkyStakingEngineClaimRewards: string;
|
|
1144
1449
|
McdGenerate: string;
|
|
1145
1450
|
McdGive: string;
|
|
1146
1451
|
McdMerge: string;
|
|
@@ -1398,8 +1703,288 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1398
1703
|
PullToken: string;
|
|
1399
1704
|
SumInputs: string;
|
|
1400
1705
|
SubInputs: string;
|
|
1401
|
-
ApproveToken: string;
|
|
1706
|
+
ApproveToken: string;
|
|
1707
|
+
SendTokenAndUnwrap: string;
|
|
1708
|
+
ToggleSub: string;
|
|
1709
|
+
CreateSub: string;
|
|
1710
|
+
TokenBalance: string;
|
|
1711
|
+
TokenizedVaultAdapter: string;
|
|
1712
|
+
ChangeProxyOwner: string;
|
|
1713
|
+
PermitToken: string;
|
|
1714
|
+
HandleAuth: string;
|
|
1715
|
+
MerklClaim: string;
|
|
1716
|
+
AaveV3ATokenPayback: string;
|
|
1717
|
+
AaveV3Borrow: string;
|
|
1718
|
+
AaveV3CollateralSwitch: string;
|
|
1719
|
+
AaveV3Payback: string;
|
|
1720
|
+
AaveV3SetEMode: string;
|
|
1721
|
+
AaveV3Supply: string;
|
|
1722
|
+
AaveV3SwapBorrowRateMode: string;
|
|
1723
|
+
AaveV3Withdraw: string;
|
|
1724
|
+
AaveV3ClaimRewards: string;
|
|
1725
|
+
AaveV3DelegateWithSig: string;
|
|
1726
|
+
AaveV3DelegateCredit: string;
|
|
1727
|
+
FLAaveV3NoFee: string;
|
|
1728
|
+
FLAaveV3: string;
|
|
1729
|
+
FLBalancer: string;
|
|
1730
|
+
FLAction: string;
|
|
1731
|
+
AaveV3RatioTrigger: string;
|
|
1732
|
+
GasFeeTakerL2: string;
|
|
1733
|
+
AaveV3RatioCheck: string;
|
|
1734
|
+
UniCollectV3: string;
|
|
1735
|
+
UniMintV3: string;
|
|
1736
|
+
UniSupplyV3: string;
|
|
1737
|
+
UniWithdrawV3: string;
|
|
1738
|
+
UniCreatePoolV3: string;
|
|
1739
|
+
CompV3Allow: string;
|
|
1740
|
+
CompV3Borrow: string;
|
|
1741
|
+
CompV3Claim: string;
|
|
1742
|
+
CompV3Payback: string;
|
|
1743
|
+
CompV3Supply: string;
|
|
1744
|
+
CompV3Transfer: string;
|
|
1745
|
+
CompV3Withdraw: string;
|
|
1746
|
+
SFApproveTokens: string;
|
|
1747
|
+
AutomationV2Unsub?: undefined;
|
|
1748
|
+
UpdateSub?: undefined;
|
|
1749
|
+
TransferNFT?: undefined;
|
|
1750
|
+
SDaiWrap?: undefined;
|
|
1751
|
+
SDaiUnwrap?: undefined;
|
|
1752
|
+
StarknetClaim?: undefined;
|
|
1753
|
+
SkyStake?: undefined;
|
|
1754
|
+
SkyUnstake?: undefined;
|
|
1755
|
+
SkyClaimRewards?: undefined;
|
|
1756
|
+
SkyStakingEngineOpen?: undefined;
|
|
1757
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
1758
|
+
SkyStakingEngineStake?: undefined;
|
|
1759
|
+
SkyStakingEngineUnstake?: undefined;
|
|
1760
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
1761
|
+
McdGenerate?: undefined;
|
|
1762
|
+
McdGive?: undefined;
|
|
1763
|
+
McdMerge?: undefined;
|
|
1764
|
+
McdOpen?: undefined;
|
|
1765
|
+
McdPayback?: undefined;
|
|
1766
|
+
McdSupply?: undefined;
|
|
1767
|
+
McdWithdraw?: undefined;
|
|
1768
|
+
McdClaim?: undefined;
|
|
1769
|
+
McdDsrDeposit?: undefined;
|
|
1770
|
+
McdDsrWithdraw?: undefined;
|
|
1771
|
+
McdTokenConverter?: undefined;
|
|
1772
|
+
ReflexerSupply?: undefined;
|
|
1773
|
+
ReflexerWithdraw?: undefined;
|
|
1774
|
+
ReflexerPayback?: undefined;
|
|
1775
|
+
ReflexerGenerate?: undefined;
|
|
1776
|
+
ReflexerOpen?: undefined;
|
|
1777
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
1778
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
1779
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
1780
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
1781
|
+
AaveBorrow?: undefined;
|
|
1782
|
+
AavePayback?: undefined;
|
|
1783
|
+
AaveSupply?: undefined;
|
|
1784
|
+
AaveWithdraw?: undefined;
|
|
1785
|
+
AaveCollateralSwitch?: undefined;
|
|
1786
|
+
AaveUnstake?: undefined;
|
|
1787
|
+
AaveClaimAAVE?: undefined;
|
|
1788
|
+
AaveClaimStkAave?: undefined;
|
|
1789
|
+
AaveV3View?: undefined;
|
|
1790
|
+
GhoClaimAAVE?: undefined;
|
|
1791
|
+
GhoUnstake?: undefined;
|
|
1792
|
+
GhoStake?: undefined;
|
|
1793
|
+
LSVWithdraw?: undefined;
|
|
1794
|
+
LSVBorrow?: undefined;
|
|
1795
|
+
LSVSupply?: undefined;
|
|
1796
|
+
LSVPayback?: undefined;
|
|
1797
|
+
LSVSell?: undefined;
|
|
1798
|
+
MorphoAaveV2Borrow?: undefined;
|
|
1799
|
+
MorphoAaveV2Payback?: undefined;
|
|
1800
|
+
MorphoAaveV2Supply?: undefined;
|
|
1801
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
1802
|
+
MorphoClaim?: undefined;
|
|
1803
|
+
MorphoAaveV3Borrow?: undefined;
|
|
1804
|
+
MorphoAaveV3Payback?: undefined;
|
|
1805
|
+
MorphoAaveV3Supply?: undefined;
|
|
1806
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
1807
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1808
|
+
SparkBorrow?: undefined;
|
|
1809
|
+
SparkClaimRewards?: undefined;
|
|
1810
|
+
SparkCollateralSwitch?: undefined;
|
|
1811
|
+
SparkPayback?: undefined;
|
|
1812
|
+
SparkSetEMode?: undefined;
|
|
1813
|
+
SparkSpTokenPayback?: undefined;
|
|
1814
|
+
SparkSupply?: undefined;
|
|
1815
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
1816
|
+
SparkWithdraw?: undefined;
|
|
1817
|
+
SparkDelegateCredit?: undefined;
|
|
1818
|
+
SparkDelegateWithSig?: undefined;
|
|
1819
|
+
SparkSPKClaim?: undefined;
|
|
1820
|
+
CompBorrow?: undefined;
|
|
1821
|
+
CompClaim?: undefined;
|
|
1822
|
+
CompPayback?: undefined;
|
|
1823
|
+
CompSupply?: undefined;
|
|
1824
|
+
CompWithdraw?: undefined;
|
|
1825
|
+
CompGetDebt?: undefined;
|
|
1826
|
+
CompCollateralSwitch?: undefined;
|
|
1827
|
+
FLAaveV2?: undefined;
|
|
1828
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1829
|
+
FLDyDx?: undefined;
|
|
1830
|
+
FLMaker?: undefined;
|
|
1831
|
+
FLSpark?: undefined;
|
|
1832
|
+
FLUniV3?: undefined;
|
|
1833
|
+
FLGho?: undefined;
|
|
1834
|
+
FLMorphoBlue?: undefined;
|
|
1835
|
+
UniSupply?: undefined;
|
|
1836
|
+
UniWithdraw?: undefined;
|
|
1837
|
+
DyDxWithdraw?: undefined;
|
|
1838
|
+
YearnSupply?: undefined;
|
|
1839
|
+
YearnWithdraw?: undefined;
|
|
1840
|
+
LiquityClose?: undefined;
|
|
1841
|
+
LiquityBorrow?: undefined;
|
|
1842
|
+
LiquityOpen?: undefined;
|
|
1843
|
+
LiquityPayback?: undefined;
|
|
1844
|
+
LiquityWithdraw?: undefined;
|
|
1845
|
+
LiquitySupply?: undefined;
|
|
1846
|
+
LiquitySPDeposit?: undefined;
|
|
1847
|
+
LiquitySPWithdraw?: undefined;
|
|
1848
|
+
LiquityStake?: undefined;
|
|
1849
|
+
LiquityUnstake?: undefined;
|
|
1850
|
+
LiquityEthGainToTrove?: undefined;
|
|
1851
|
+
LiquityClaim?: undefined;
|
|
1852
|
+
LiquityRedeem?: undefined;
|
|
1853
|
+
LiquityAdjust?: undefined;
|
|
1854
|
+
LiquityV2CloseLegacy?: undefined;
|
|
1855
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
1856
|
+
LiquityV2Open?: undefined;
|
|
1857
|
+
LiquityV2Close?: undefined;
|
|
1858
|
+
LiquityV2Supply?: undefined;
|
|
1859
|
+
LiquityV2Withdraw?: undefined;
|
|
1860
|
+
LiquityV2Borrow?: undefined;
|
|
1861
|
+
LiquityV2Payback?: undefined;
|
|
1862
|
+
LiquityV2Claim?: undefined;
|
|
1863
|
+
LiquityV2Adjust?: undefined;
|
|
1864
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
1865
|
+
LiquityV2SPDeposit?: undefined;
|
|
1866
|
+
LiquityV2SPWithdraw?: undefined;
|
|
1867
|
+
LiquityV2SPClaimColl?: undefined;
|
|
1868
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
1869
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
1870
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
1871
|
+
LidoStake?: undefined;
|
|
1872
|
+
LidoWrap?: undefined;
|
|
1873
|
+
LidoUnwrap?: undefined;
|
|
1874
|
+
InstPullTokens?: undefined;
|
|
1875
|
+
BalancerV2Supply?: undefined;
|
|
1876
|
+
BalancerV2Withdraw?: undefined;
|
|
1877
|
+
BalancerV2Claim?: undefined;
|
|
1878
|
+
GUniWithdraw?: undefined;
|
|
1879
|
+
GUniDeposit?: undefined;
|
|
1880
|
+
RariDeposit?: undefined;
|
|
1881
|
+
RariWithdraw?: undefined;
|
|
1882
|
+
MStableDeposit?: undefined;
|
|
1883
|
+
MStableWithdraw?: undefined;
|
|
1884
|
+
MStableClaim?: undefined;
|
|
1885
|
+
McdRatioCheck?: undefined;
|
|
1886
|
+
GasFeeTaker?: undefined;
|
|
1887
|
+
CurveStethPoolDeposit?: undefined;
|
|
1888
|
+
CurveStethPoolWithdraw?: undefined;
|
|
1889
|
+
CurveDeposit?: undefined;
|
|
1890
|
+
CurveWithdraw?: undefined;
|
|
1891
|
+
McdBoostComposite?: undefined;
|
|
1892
|
+
McdRepayComposite?: undefined;
|
|
1893
|
+
FLEuler?: undefined;
|
|
1894
|
+
TrailingStopTrigger?: undefined;
|
|
1895
|
+
CBRebondTrigger?: undefined;
|
|
1896
|
+
CBUpdateRebondSub?: undefined;
|
|
1897
|
+
LiquityRatioCheck?: undefined;
|
|
1898
|
+
ConvexDeposit?: undefined;
|
|
1899
|
+
ConvexWithdraw?: undefined;
|
|
1900
|
+
ConvexClaim?: undefined;
|
|
1901
|
+
CBCreate?: undefined;
|
|
1902
|
+
CBRedeem?: undefined;
|
|
1903
|
+
CBChickenIn?: undefined;
|
|
1904
|
+
CBChickenOut?: undefined;
|
|
1905
|
+
CBCreateRebondSub?: undefined;
|
|
1906
|
+
FetchBondId?: undefined;
|
|
1907
|
+
CurveUsdBorrow?: undefined;
|
|
1908
|
+
CurveUsdCreate?: undefined;
|
|
1909
|
+
CurveUsdPayback?: undefined;
|
|
1910
|
+
CurveUsdSupply?: undefined;
|
|
1911
|
+
CurveUsdAdjust?: undefined;
|
|
1912
|
+
CurveUsdWithdraw?: undefined;
|
|
1913
|
+
CurveUsdLevCreate?: undefined;
|
|
1914
|
+
CurveUsdRepay?: undefined;
|
|
1915
|
+
CurveUsdSwapper?: undefined;
|
|
1916
|
+
CurveUsdSwapperTransient?: undefined;
|
|
1917
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
1918
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1919
|
+
CurveUsdGetDebt?: undefined;
|
|
1920
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1921
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1922
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
1923
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
1924
|
+
CurveUsdRepayTransient?: undefined;
|
|
1925
|
+
MorphoBlueSupply?: undefined;
|
|
1926
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
1927
|
+
MorphoBlueWithdraw?: undefined;
|
|
1928
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
1929
|
+
MorphoBlueBorrow?: undefined;
|
|
1930
|
+
MorphoBluePayback?: undefined;
|
|
1931
|
+
MorphoBlueSetAuth?: undefined;
|
|
1932
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1933
|
+
MorphoTokenWrap?: undefined;
|
|
1934
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
1935
|
+
MorphoBlueClaim?: undefined;
|
|
1936
|
+
LlamaLendCreate?: undefined;
|
|
1937
|
+
LlamaLendSupply?: undefined;
|
|
1938
|
+
LlamaLendBorrow?: undefined;
|
|
1939
|
+
LlamaLendWithdraw?: undefined;
|
|
1940
|
+
LlamaLendPayback?: undefined;
|
|
1941
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
1942
|
+
LlamaLendGetDebt?: undefined;
|
|
1943
|
+
LlamaLendBoost?: undefined;
|
|
1944
|
+
LlamaLendRepay?: undefined;
|
|
1945
|
+
LlamaLendLevCreate?: undefined;
|
|
1946
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
1947
|
+
EulerV2Supply?: undefined;
|
|
1948
|
+
EulerV2Withdraw?: undefined;
|
|
1949
|
+
EulerV2Borrow?: undefined;
|
|
1950
|
+
EulerV2Payback?: undefined;
|
|
1951
|
+
EulerV2CollateralSwitch?: undefined;
|
|
1952
|
+
EulerV2View?: undefined;
|
|
1953
|
+
RenzoStake?: undefined;
|
|
1954
|
+
EtherFiStake?: undefined;
|
|
1955
|
+
EtherFiWrap?: undefined;
|
|
1956
|
+
EtherFiUnwrap?: undefined;
|
|
1957
|
+
KingClaim?: undefined;
|
|
1958
|
+
FluidVaultT1Open?: undefined;
|
|
1959
|
+
FluidVaultT1Adjust?: undefined;
|
|
1960
|
+
FluidVaultT1Borrow?: undefined;
|
|
1961
|
+
FluidVaultT1Payback?: undefined;
|
|
1962
|
+
FluidVaultT1Withdraw?: undefined;
|
|
1963
|
+
FluidVaultT1Supply?: undefined;
|
|
1964
|
+
FluidView?: undefined;
|
|
1965
|
+
FluidClaim?: undefined;
|
|
1966
|
+
FluidDexOpen?: undefined;
|
|
1967
|
+
FluidDexSupply?: undefined;
|
|
1968
|
+
FluidDexBorrow?: undefined;
|
|
1969
|
+
FluidDexPayback?: undefined;
|
|
1970
|
+
FluidDexWithdraw?: undefined;
|
|
1971
|
+
PendleTokenRedeem?: undefined;
|
|
1972
|
+
UmbrellaClaimRewards?: undefined;
|
|
1973
|
+
UmbrellaStake?: undefined;
|
|
1974
|
+
UmbrellaUnstake?: undefined;
|
|
1975
|
+
MorphoBlueView?: undefined;
|
|
1976
|
+
} | {
|
|
1977
|
+
DFSSell: string;
|
|
1978
|
+
DFSSellNoFee: string;
|
|
1979
|
+
WrapEth: string;
|
|
1980
|
+
UnwrapEth: string;
|
|
1981
|
+
SendToken: string;
|
|
1982
|
+
SendTokens: string;
|
|
1983
|
+
PullToken: string;
|
|
1984
|
+
SumInputs: string;
|
|
1985
|
+
SubInputs: string;
|
|
1402
1986
|
SendTokenAndUnwrap: string;
|
|
1987
|
+
ApproveToken: string;
|
|
1403
1988
|
ToggleSub: string;
|
|
1404
1989
|
CreateSub: string;
|
|
1405
1990
|
TokenBalance: string;
|
|
@@ -1407,6 +1992,8 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1407
1992
|
ChangeProxyOwner: string;
|
|
1408
1993
|
PermitToken: string;
|
|
1409
1994
|
HandleAuth: string;
|
|
1995
|
+
UpdateSub: string;
|
|
1996
|
+
TransferNFT: string;
|
|
1410
1997
|
MerklClaim: string;
|
|
1411
1998
|
AaveV3ATokenPayback: string;
|
|
1412
1999
|
AaveV3Borrow: string;
|
|
@@ -1418,12 +2005,18 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1418
2005
|
AaveV3Withdraw: string;
|
|
1419
2006
|
AaveV3ClaimRewards: string;
|
|
1420
2007
|
AaveV3DelegateWithSig: string;
|
|
1421
|
-
|
|
2008
|
+
CompV3Allow: string;
|
|
2009
|
+
CompV3Borrow: string;
|
|
2010
|
+
CompV3Claim: string;
|
|
2011
|
+
CompV3Payback: string;
|
|
2012
|
+
CompV3Supply: string;
|
|
2013
|
+
CompV3Transfer: string;
|
|
2014
|
+
CompV3Withdraw: string;
|
|
1422
2015
|
FLAaveV3NoFee: string;
|
|
1423
2016
|
FLAaveV3: string;
|
|
1424
2017
|
FLBalancer: string;
|
|
2018
|
+
FLUniV3: string;
|
|
1425
2019
|
FLAction: string;
|
|
1426
|
-
AaveV3RatioTrigger: string;
|
|
1427
2020
|
GasFeeTakerL2: string;
|
|
1428
2021
|
AaveV3RatioCheck: string;
|
|
1429
2022
|
UniCollectV3: string;
|
|
@@ -1431,23 +2024,42 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1431
2024
|
UniSupplyV3: string;
|
|
1432
2025
|
UniWithdrawV3: string;
|
|
1433
2026
|
UniCreatePoolV3: string;
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
2027
|
+
LlamaLendCreate: string;
|
|
2028
|
+
LlamaLendSupply: string;
|
|
2029
|
+
LlamaLendBorrow: string;
|
|
2030
|
+
LlamaLendWithdraw: string;
|
|
2031
|
+
LlamaLendPayback: string;
|
|
2032
|
+
LlamaLendSelfLiquidate: string;
|
|
2033
|
+
LlamaLendGetDebt: string;
|
|
2034
|
+
LlamaLendBoost: string;
|
|
2035
|
+
LlamaLendRepay: string;
|
|
2036
|
+
LlamaLendLevCreate: string;
|
|
2037
|
+
LlamaLendSelfLiquidateWithColl: string;
|
|
2038
|
+
FluidVaultT1Open: string;
|
|
2039
|
+
FluidVaultT1Adjust: string;
|
|
2040
|
+
FluidVaultT1Borrow: string;
|
|
2041
|
+
FluidVaultT1Payback: string;
|
|
2042
|
+
FluidVaultT1Withdraw: string;
|
|
2043
|
+
FluidVaultT1Supply: string;
|
|
2044
|
+
FluidView: string;
|
|
2045
|
+
FluidDexOpen: string;
|
|
2046
|
+
FluidDexSupply: string;
|
|
2047
|
+
FluidDexBorrow: string;
|
|
2048
|
+
FluidDexPayback: string;
|
|
2049
|
+
FluidDexWithdraw: string;
|
|
1441
2050
|
SFApproveTokens: string;
|
|
1442
2051
|
AutomationV2Unsub?: undefined;
|
|
1443
|
-
UpdateSub?: undefined;
|
|
1444
|
-
TransferNFT?: undefined;
|
|
1445
2052
|
SDaiWrap?: undefined;
|
|
1446
2053
|
SDaiUnwrap?: undefined;
|
|
1447
2054
|
StarknetClaim?: undefined;
|
|
1448
2055
|
SkyStake?: undefined;
|
|
1449
2056
|
SkyUnstake?: undefined;
|
|
1450
2057
|
SkyClaimRewards?: undefined;
|
|
2058
|
+
SkyStakingEngineOpen?: undefined;
|
|
2059
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
2060
|
+
SkyStakingEngineStake?: undefined;
|
|
2061
|
+
SkyStakingEngineUnstake?: undefined;
|
|
2062
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
1451
2063
|
McdGenerate?: undefined;
|
|
1452
2064
|
McdGive?: undefined;
|
|
1453
2065
|
McdMerge?: undefined;
|
|
@@ -1519,7 +2131,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1519
2131
|
FLDyDx?: undefined;
|
|
1520
2132
|
FLMaker?: undefined;
|
|
1521
2133
|
FLSpark?: undefined;
|
|
1522
|
-
FLUniV3?: undefined;
|
|
1523
2134
|
FLGho?: undefined;
|
|
1524
2135
|
FLMorphoBlue?: undefined;
|
|
1525
2136
|
UniSupply?: undefined;
|
|
@@ -1623,17 +2234,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1623
2234
|
MorphoTokenWrap?: undefined;
|
|
1624
2235
|
MorphoBlueReallocateLiquidity?: undefined;
|
|
1625
2236
|
MorphoBlueClaim?: undefined;
|
|
1626
|
-
LlamaLendCreate?: undefined;
|
|
1627
|
-
LlamaLendSupply?: undefined;
|
|
1628
|
-
LlamaLendBorrow?: undefined;
|
|
1629
|
-
LlamaLendWithdraw?: undefined;
|
|
1630
|
-
LlamaLendPayback?: undefined;
|
|
1631
|
-
LlamaLendSelfLiquidate?: undefined;
|
|
1632
|
-
LlamaLendGetDebt?: undefined;
|
|
1633
|
-
LlamaLendBoost?: undefined;
|
|
1634
|
-
LlamaLendRepay?: undefined;
|
|
1635
|
-
LlamaLendLevCreate?: undefined;
|
|
1636
|
-
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
1637
2237
|
EulerV2Supply?: undefined;
|
|
1638
2238
|
EulerV2Withdraw?: undefined;
|
|
1639
2239
|
EulerV2Borrow?: undefined;
|
|
@@ -1645,23 +2245,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1645
2245
|
EtherFiWrap?: undefined;
|
|
1646
2246
|
EtherFiUnwrap?: undefined;
|
|
1647
2247
|
KingClaim?: undefined;
|
|
1648
|
-
FluidVaultT1Open?: undefined;
|
|
1649
|
-
FluidVaultT1Adjust?: undefined;
|
|
1650
|
-
FluidVaultT1Borrow?: undefined;
|
|
1651
|
-
FluidVaultT1Payback?: undefined;
|
|
1652
|
-
FluidVaultT1Withdraw?: undefined;
|
|
1653
|
-
FluidVaultT1Supply?: undefined;
|
|
1654
|
-
FluidView?: undefined;
|
|
1655
2248
|
FluidClaim?: undefined;
|
|
1656
|
-
FluidDexOpen?: undefined;
|
|
1657
|
-
FluidDexSupply?: undefined;
|
|
1658
|
-
FluidDexBorrow?: undefined;
|
|
1659
|
-
FluidDexPayback?: undefined;
|
|
1660
|
-
FluidDexWithdraw?: undefined;
|
|
1661
2249
|
PendleTokenRedeem?: undefined;
|
|
1662
2250
|
UmbrellaClaimRewards?: undefined;
|
|
1663
2251
|
UmbrellaStake?: undefined;
|
|
1664
2252
|
UmbrellaUnstake?: undefined;
|
|
2253
|
+
AaveV3DelegateCredit?: undefined;
|
|
2254
|
+
AaveV3RatioTrigger?: undefined;
|
|
1665
2255
|
MorphoBlueView?: undefined;
|
|
1666
2256
|
} | {
|
|
1667
2257
|
DFSSell: string;
|
|
@@ -1671,29 +2261,34 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1671
2261
|
SendToken: string;
|
|
1672
2262
|
SendTokens: string;
|
|
1673
2263
|
PullToken: string;
|
|
2264
|
+
ApproveToken: string;
|
|
1674
2265
|
SumInputs: string;
|
|
1675
2266
|
SubInputs: string;
|
|
1676
|
-
SendTokenAndUnwrap: string;
|
|
1677
|
-
ApproveToken: string;
|
|
1678
|
-
ToggleSub: string;
|
|
1679
|
-
CreateSub: string;
|
|
1680
2267
|
TokenBalance: string;
|
|
1681
|
-
TokenizedVaultAdapter: string;
|
|
1682
2268
|
ChangeProxyOwner: string;
|
|
1683
2269
|
PermitToken: string;
|
|
1684
2270
|
HandleAuth: string;
|
|
2271
|
+
ToggleSub: string;
|
|
2272
|
+
CreateSub: string;
|
|
1685
2273
|
UpdateSub: string;
|
|
1686
|
-
TransferNFT: string;
|
|
1687
2274
|
MerklClaim: string;
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
2275
|
+
TransferNFT: string;
|
|
2276
|
+
GasFeeTakerL2: string;
|
|
2277
|
+
FLAaveV3: string;
|
|
2278
|
+
FLBalancer: string;
|
|
2279
|
+
FLUniV3: string;
|
|
2280
|
+
FLAction: string;
|
|
2281
|
+
FLMorphoBlue: string;
|
|
1695
2282
|
AaveV3Withdraw: string;
|
|
2283
|
+
AaveV3SwapBorrowRateMode: string;
|
|
2284
|
+
AaveV3Supply: string;
|
|
2285
|
+
AaveV3SetEMode: string;
|
|
2286
|
+
AaveV3Payback: string;
|
|
2287
|
+
AaveV3CollateralSwitch: string;
|
|
1696
2288
|
AaveV3ClaimRewards: string;
|
|
2289
|
+
AaveV3Borrow: string;
|
|
2290
|
+
AaveV3ATokenPayback: string;
|
|
2291
|
+
AaveV3View: string;
|
|
1697
2292
|
AaveV3DelegateWithSig: string;
|
|
1698
2293
|
CompV3Allow: string;
|
|
1699
2294
|
CompV3Borrow: string;
|
|
@@ -1702,29 +2297,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1702
2297
|
CompV3Supply: string;
|
|
1703
2298
|
CompV3Transfer: string;
|
|
1704
2299
|
CompV3Withdraw: string;
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
UniCreatePoolV3: string;
|
|
1717
|
-
LlamaLendCreate: string;
|
|
1718
|
-
LlamaLendSupply: string;
|
|
1719
|
-
LlamaLendBorrow: string;
|
|
1720
|
-
LlamaLendWithdraw: string;
|
|
1721
|
-
LlamaLendPayback: string;
|
|
1722
|
-
LlamaLendSelfLiquidate: string;
|
|
1723
|
-
LlamaLendGetDebt: string;
|
|
1724
|
-
LlamaLendBoost: string;
|
|
1725
|
-
LlamaLendRepay: string;
|
|
1726
|
-
LlamaLendLevCreate: string;
|
|
1727
|
-
LlamaLendSelfLiquidateWithColl: string;
|
|
2300
|
+
MorphoBlueSupply: string;
|
|
2301
|
+
MorphoBlueSupplyCollateral: string;
|
|
2302
|
+
MorphoBlueWithdraw: string;
|
|
2303
|
+
MorphoBlueWithdrawCollateral: string;
|
|
2304
|
+
MorphoBlueBorrow: string;
|
|
2305
|
+
MorphoBluePayback: string;
|
|
2306
|
+
MorphoBlueSetAuth: string;
|
|
2307
|
+
MorphoBlueSetAuthWithSig: string;
|
|
2308
|
+
MorphoBlueView: string;
|
|
2309
|
+
MorphoBlueReallocateLiquidity: string;
|
|
2310
|
+
MorphoBlueClaim: string;
|
|
1728
2311
|
FluidVaultT1Open: string;
|
|
1729
2312
|
FluidVaultT1Adjust: string;
|
|
1730
2313
|
FluidVaultT1Borrow: string;
|
|
@@ -1732,19 +2315,21 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1732
2315
|
FluidVaultT1Withdraw: string;
|
|
1733
2316
|
FluidVaultT1Supply: string;
|
|
1734
2317
|
FluidView: string;
|
|
1735
|
-
|
|
1736
|
-
FluidDexSupply: string;
|
|
1737
|
-
FluidDexBorrow: string;
|
|
1738
|
-
FluidDexPayback: string;
|
|
1739
|
-
FluidDexWithdraw: string;
|
|
2318
|
+
TokenizedVaultAdapter: string;
|
|
1740
2319
|
SFApproveTokens: string;
|
|
1741
2320
|
AutomationV2Unsub?: undefined;
|
|
2321
|
+
SendTokenAndUnwrap?: undefined;
|
|
1742
2322
|
SDaiWrap?: undefined;
|
|
1743
2323
|
SDaiUnwrap?: undefined;
|
|
1744
2324
|
StarknetClaim?: undefined;
|
|
1745
2325
|
SkyStake?: undefined;
|
|
1746
2326
|
SkyUnstake?: undefined;
|
|
1747
2327
|
SkyClaimRewards?: undefined;
|
|
2328
|
+
SkyStakingEngineOpen?: undefined;
|
|
2329
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
2330
|
+
SkyStakingEngineStake?: undefined;
|
|
2331
|
+
SkyStakingEngineUnstake?: undefined;
|
|
2332
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
1748
2333
|
McdGenerate?: undefined;
|
|
1749
2334
|
McdGive?: undefined;
|
|
1750
2335
|
McdMerge?: undefined;
|
|
@@ -1773,7 +2358,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1773
2358
|
AaveUnstake?: undefined;
|
|
1774
2359
|
AaveClaimAAVE?: undefined;
|
|
1775
2360
|
AaveClaimStkAave?: undefined;
|
|
1776
|
-
AaveV3View?: undefined;
|
|
1777
2361
|
GhoClaimAAVE?: undefined;
|
|
1778
2362
|
GhoUnstake?: undefined;
|
|
1779
2363
|
GhoStake?: undefined;
|
|
@@ -1812,14 +2396,19 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1812
2396
|
CompGetDebt?: undefined;
|
|
1813
2397
|
CompCollateralSwitch?: undefined;
|
|
1814
2398
|
FLAaveV2?: undefined;
|
|
2399
|
+
FLAaveV3NoFee?: undefined;
|
|
1815
2400
|
FLAaveV3CarryDebt?: undefined;
|
|
1816
2401
|
FLDyDx?: undefined;
|
|
1817
2402
|
FLMaker?: undefined;
|
|
1818
2403
|
FLSpark?: undefined;
|
|
1819
2404
|
FLGho?: undefined;
|
|
1820
|
-
FLMorphoBlue?: undefined;
|
|
1821
2405
|
UniSupply?: undefined;
|
|
1822
2406
|
UniWithdraw?: undefined;
|
|
2407
|
+
UniCollectV3?: undefined;
|
|
2408
|
+
UniMintV3?: undefined;
|
|
2409
|
+
UniSupplyV3?: undefined;
|
|
2410
|
+
UniWithdrawV3?: undefined;
|
|
2411
|
+
UniCreatePoolV3?: undefined;
|
|
1823
2412
|
DyDxWithdraw?: undefined;
|
|
1824
2413
|
YearnSupply?: undefined;
|
|
1825
2414
|
YearnWithdraw?: undefined;
|
|
@@ -1908,17 +2497,18 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1908
2497
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
1909
2498
|
CurveUsdLevCreateTransient?: undefined;
|
|
1910
2499
|
CurveUsdRepayTransient?: undefined;
|
|
1911
|
-
MorphoBlueSupply?: undefined;
|
|
1912
|
-
MorphoBlueSupplyCollateral?: undefined;
|
|
1913
|
-
MorphoBlueWithdraw?: undefined;
|
|
1914
|
-
MorphoBlueWithdrawCollateral?: undefined;
|
|
1915
|
-
MorphoBlueBorrow?: undefined;
|
|
1916
|
-
MorphoBluePayback?: undefined;
|
|
1917
|
-
MorphoBlueSetAuth?: undefined;
|
|
1918
|
-
MorphoBlueSetAuthWithSig?: undefined;
|
|
1919
2500
|
MorphoTokenWrap?: undefined;
|
|
1920
|
-
|
|
1921
|
-
|
|
2501
|
+
LlamaLendCreate?: undefined;
|
|
2502
|
+
LlamaLendSupply?: undefined;
|
|
2503
|
+
LlamaLendBorrow?: undefined;
|
|
2504
|
+
LlamaLendWithdraw?: undefined;
|
|
2505
|
+
LlamaLendPayback?: undefined;
|
|
2506
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
2507
|
+
LlamaLendGetDebt?: undefined;
|
|
2508
|
+
LlamaLendBoost?: undefined;
|
|
2509
|
+
LlamaLendRepay?: undefined;
|
|
2510
|
+
LlamaLendLevCreate?: undefined;
|
|
2511
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
1922
2512
|
EulerV2Supply?: undefined;
|
|
1923
2513
|
EulerV2Withdraw?: undefined;
|
|
1924
2514
|
EulerV2Borrow?: undefined;
|
|
@@ -1931,13 +2521,18 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1931
2521
|
EtherFiUnwrap?: undefined;
|
|
1932
2522
|
KingClaim?: undefined;
|
|
1933
2523
|
FluidClaim?: undefined;
|
|
2524
|
+
FluidDexOpen?: undefined;
|
|
2525
|
+
FluidDexSupply?: undefined;
|
|
2526
|
+
FluidDexBorrow?: undefined;
|
|
2527
|
+
FluidDexPayback?: undefined;
|
|
2528
|
+
FluidDexWithdraw?: undefined;
|
|
1934
2529
|
PendleTokenRedeem?: undefined;
|
|
1935
2530
|
UmbrellaClaimRewards?: undefined;
|
|
1936
2531
|
UmbrellaStake?: undefined;
|
|
1937
2532
|
UmbrellaUnstake?: undefined;
|
|
1938
2533
|
AaveV3DelegateCredit?: undefined;
|
|
1939
2534
|
AaveV3RatioTrigger?: undefined;
|
|
1940
|
-
|
|
2535
|
+
AaveV3RatioCheck?: undefined;
|
|
1941
2536
|
} | {
|
|
1942
2537
|
DFSSell: string;
|
|
1943
2538
|
DFSSellNoFee: string;
|
|
@@ -1945,27 +2540,19 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1945
2540
|
UnwrapEth: string;
|
|
1946
2541
|
SendToken: string;
|
|
1947
2542
|
SendTokens: string;
|
|
2543
|
+
SendTokenAndUnwrap: string;
|
|
1948
2544
|
PullToken: string;
|
|
1949
2545
|
ApproveToken: string;
|
|
1950
2546
|
SumInputs: string;
|
|
1951
2547
|
SubInputs: string;
|
|
1952
2548
|
TokenBalance: string;
|
|
1953
|
-
ChangeProxyOwner: string;
|
|
1954
2549
|
PermitToken: string;
|
|
1955
|
-
HandleAuth: string;
|
|
1956
|
-
ToggleSub: string;
|
|
1957
|
-
CreateSub: string;
|
|
1958
|
-
UpdateSub: string;
|
|
1959
2550
|
MerklClaim: string;
|
|
1960
2551
|
TransferNFT: string;
|
|
1961
|
-
|
|
1962
|
-
FLAaveV3: string;
|
|
1963
|
-
FLBalancer: string;
|
|
1964
|
-
FLUniV3: string;
|
|
2552
|
+
TokenizedVaultAdapter: string;
|
|
1965
2553
|
FLAction: string;
|
|
1966
|
-
|
|
2554
|
+
FLAaveV3: string;
|
|
1967
2555
|
AaveV3Withdraw: string;
|
|
1968
|
-
AaveV3SwapBorrowRateMode: string;
|
|
1969
2556
|
AaveV3Supply: string;
|
|
1970
2557
|
AaveV3SetEMode: string;
|
|
1971
2558
|
AaveV3Payback: string;
|
|
@@ -1975,41 +2562,24 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1975
2562
|
AaveV3ATokenPayback: string;
|
|
1976
2563
|
AaveV3View: string;
|
|
1977
2564
|
AaveV3DelegateWithSig: string;
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
CompV3Claim: string;
|
|
1981
|
-
CompV3Payback: string;
|
|
1982
|
-
CompV3Supply: string;
|
|
1983
|
-
CompV3Transfer: string;
|
|
1984
|
-
CompV3Withdraw: string;
|
|
1985
|
-
MorphoBlueSupply: string;
|
|
1986
|
-
MorphoBlueSupplyCollateral: string;
|
|
1987
|
-
MorphoBlueWithdraw: string;
|
|
1988
|
-
MorphoBlueWithdrawCollateral: string;
|
|
1989
|
-
MorphoBlueBorrow: string;
|
|
1990
|
-
MorphoBluePayback: string;
|
|
1991
|
-
MorphoBlueSetAuth: string;
|
|
1992
|
-
MorphoBlueSetAuthWithSig: string;
|
|
1993
|
-
MorphoBlueView: string;
|
|
1994
|
-
MorphoBlueReallocateLiquidity: string;
|
|
1995
|
-
MorphoBlueClaim: string;
|
|
1996
|
-
FluidVaultT1Open: string;
|
|
1997
|
-
FluidVaultT1Adjust: string;
|
|
1998
|
-
FluidVaultT1Borrow: string;
|
|
1999
|
-
FluidVaultT1Payback: string;
|
|
2000
|
-
FluidVaultT1Withdraw: string;
|
|
2001
|
-
FluidVaultT1Supply: string;
|
|
2002
|
-
FluidView: string;
|
|
2003
|
-
TokenizedVaultAdapter: string;
|
|
2004
|
-
SFApproveTokens: string;
|
|
2565
|
+
AaveV3DelegateCredit: string;
|
|
2566
|
+
ChangeProxyOwner?: undefined;
|
|
2005
2567
|
AutomationV2Unsub?: undefined;
|
|
2006
|
-
|
|
2568
|
+
ToggleSub?: undefined;
|
|
2569
|
+
UpdateSub?: undefined;
|
|
2570
|
+
CreateSub?: undefined;
|
|
2007
2571
|
SDaiWrap?: undefined;
|
|
2008
2572
|
SDaiUnwrap?: undefined;
|
|
2009
2573
|
StarknetClaim?: undefined;
|
|
2574
|
+
HandleAuth?: undefined;
|
|
2010
2575
|
SkyStake?: undefined;
|
|
2011
2576
|
SkyUnstake?: undefined;
|
|
2012
2577
|
SkyClaimRewards?: undefined;
|
|
2578
|
+
SkyStakingEngineOpen?: undefined;
|
|
2579
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
2580
|
+
SkyStakingEngineStake?: undefined;
|
|
2581
|
+
SkyStakingEngineUnstake?: undefined;
|
|
2582
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
2013
2583
|
McdGenerate?: undefined;
|
|
2014
2584
|
McdGive?: undefined;
|
|
2015
2585
|
McdMerge?: undefined;
|
|
@@ -2038,6 +2608,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2038
2608
|
AaveUnstake?: undefined;
|
|
2039
2609
|
AaveClaimAAVE?: undefined;
|
|
2040
2610
|
AaveClaimStkAave?: undefined;
|
|
2611
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
2041
2612
|
GhoClaimAAVE?: undefined;
|
|
2042
2613
|
GhoUnstake?: undefined;
|
|
2043
2614
|
GhoStake?: undefined;
|
|
@@ -2080,8 +2651,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2080
2651
|
FLAaveV3CarryDebt?: undefined;
|
|
2081
2652
|
FLDyDx?: undefined;
|
|
2082
2653
|
FLMaker?: undefined;
|
|
2654
|
+
FLBalancer?: undefined;
|
|
2083
2655
|
FLSpark?: undefined;
|
|
2656
|
+
FLUniV3?: undefined;
|
|
2084
2657
|
FLGho?: undefined;
|
|
2658
|
+
FLMorphoBlue?: undefined;
|
|
2085
2659
|
UniSupply?: undefined;
|
|
2086
2660
|
UniWithdraw?: undefined;
|
|
2087
2661
|
UniCollectV3?: undefined;
|
|
@@ -2159,6 +2733,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2159
2733
|
CBChickenOut?: undefined;
|
|
2160
2734
|
CBCreateRebondSub?: undefined;
|
|
2161
2735
|
FetchBondId?: undefined;
|
|
2736
|
+
CompV3Allow?: undefined;
|
|
2737
|
+
CompV3Borrow?: undefined;
|
|
2738
|
+
CompV3Claim?: undefined;
|
|
2739
|
+
CompV3Payback?: undefined;
|
|
2740
|
+
CompV3Supply?: undefined;
|
|
2741
|
+
CompV3Transfer?: undefined;
|
|
2742
|
+
CompV3Withdraw?: undefined;
|
|
2162
2743
|
CurveUsdBorrow?: undefined;
|
|
2163
2744
|
CurveUsdCreate?: undefined;
|
|
2164
2745
|
CurveUsdPayback?: undefined;
|
|
@@ -2177,7 +2758,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2177
2758
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
2178
2759
|
CurveUsdLevCreateTransient?: undefined;
|
|
2179
2760
|
CurveUsdRepayTransient?: undefined;
|
|
2761
|
+
MorphoBlueSupply?: undefined;
|
|
2762
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
2763
|
+
MorphoBlueWithdraw?: undefined;
|
|
2764
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
2765
|
+
MorphoBlueBorrow?: undefined;
|
|
2766
|
+
MorphoBluePayback?: undefined;
|
|
2767
|
+
MorphoBlueSetAuth?: undefined;
|
|
2768
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
2180
2769
|
MorphoTokenWrap?: undefined;
|
|
2770
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
2771
|
+
MorphoBlueClaim?: undefined;
|
|
2181
2772
|
LlamaLendCreate?: undefined;
|
|
2182
2773
|
LlamaLendSupply?: undefined;
|
|
2183
2774
|
LlamaLendBorrow?: undefined;
|
|
@@ -2200,6 +2791,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2200
2791
|
EtherFiWrap?: undefined;
|
|
2201
2792
|
EtherFiUnwrap?: undefined;
|
|
2202
2793
|
KingClaim?: undefined;
|
|
2794
|
+
FluidVaultT1Open?: undefined;
|
|
2795
|
+
FluidVaultT1Adjust?: undefined;
|
|
2796
|
+
FluidVaultT1Borrow?: undefined;
|
|
2797
|
+
FluidVaultT1Payback?: undefined;
|
|
2798
|
+
FluidVaultT1Withdraw?: undefined;
|
|
2799
|
+
FluidVaultT1Supply?: undefined;
|
|
2800
|
+
FluidView?: undefined;
|
|
2203
2801
|
FluidClaim?: undefined;
|
|
2204
2802
|
FluidDexOpen?: undefined;
|
|
2205
2803
|
FluidDexSupply?: undefined;
|
|
@@ -2210,9 +2808,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2210
2808
|
UmbrellaClaimRewards?: undefined;
|
|
2211
2809
|
UmbrellaStake?: undefined;
|
|
2212
2810
|
UmbrellaUnstake?: undefined;
|
|
2213
|
-
|
|
2811
|
+
SFApproveTokens?: undefined;
|
|
2214
2812
|
AaveV3RatioTrigger?: undefined;
|
|
2813
|
+
GasFeeTakerL2?: undefined;
|
|
2215
2814
|
AaveV3RatioCheck?: undefined;
|
|
2815
|
+
MorphoBlueView?: undefined;
|
|
2216
2816
|
};
|
|
2217
2817
|
declare const otherAddressesAllChains: {
|
|
2218
2818
|
[x: number]: {
|
|
@@ -2278,6 +2878,27 @@ declare const otherAddressesAllChains: {
|
|
|
2278
2878
|
GHO?: undefined;
|
|
2279
2879
|
LUSD?: undefined;
|
|
2280
2880
|
BLUSD?: undefined;
|
|
2881
|
+
} | {
|
|
2882
|
+
RecipeExecutor: string;
|
|
2883
|
+
DFSRegistry: string;
|
|
2884
|
+
DSGuardFactory: string;
|
|
2885
|
+
AdminVault: string;
|
|
2886
|
+
DefisaverLogger: string;
|
|
2887
|
+
Empty: string;
|
|
2888
|
+
DFSProxyRegistry?: undefined;
|
|
2889
|
+
ProxyRegistry?: undefined;
|
|
2890
|
+
McdCdpManager?: undefined;
|
|
2891
|
+
BCdpManager?: undefined;
|
|
2892
|
+
AaveDefaultMarket?: undefined;
|
|
2893
|
+
UniswapV3PositionManager?: undefined;
|
|
2894
|
+
RaiWethUniV2LPToken?: undefined;
|
|
2895
|
+
BalancerToken?: undefined;
|
|
2896
|
+
CrvToken?: undefined;
|
|
2897
|
+
CvxToken?: undefined;
|
|
2898
|
+
DAI?: undefined;
|
|
2899
|
+
GHO?: undefined;
|
|
2900
|
+
LUSD?: undefined;
|
|
2901
|
+
BLUSD?: undefined;
|
|
2281
2902
|
};
|
|
2282
2903
|
};
|
|
2283
2904
|
declare const otherAddresses: (chainId?: null) => {
|
|
@@ -2343,6 +2964,27 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
2343
2964
|
GHO?: undefined;
|
|
2344
2965
|
LUSD?: undefined;
|
|
2345
2966
|
BLUSD?: undefined;
|
|
2967
|
+
} | {
|
|
2968
|
+
RecipeExecutor: string;
|
|
2969
|
+
DFSRegistry: string;
|
|
2970
|
+
DSGuardFactory: string;
|
|
2971
|
+
AdminVault: string;
|
|
2972
|
+
DefisaverLogger: string;
|
|
2973
|
+
Empty: string;
|
|
2974
|
+
DFSProxyRegistry?: undefined;
|
|
2975
|
+
ProxyRegistry?: undefined;
|
|
2976
|
+
McdCdpManager?: undefined;
|
|
2977
|
+
BCdpManager?: undefined;
|
|
2978
|
+
AaveDefaultMarket?: undefined;
|
|
2979
|
+
UniswapV3PositionManager?: undefined;
|
|
2980
|
+
RaiWethUniV2LPToken?: undefined;
|
|
2981
|
+
BalancerToken?: undefined;
|
|
2982
|
+
CrvToken?: undefined;
|
|
2983
|
+
CvxToken?: undefined;
|
|
2984
|
+
DAI?: undefined;
|
|
2985
|
+
GHO?: undefined;
|
|
2986
|
+
LUSD?: undefined;
|
|
2987
|
+
BLUSD?: undefined;
|
|
2346
2988
|
};
|
|
2347
2989
|
export { Action, ActionWithL2, Recipe, Strategy, DfsWeb3, actions, triggers, utils, configure, getNetworkData, CONFIG, networks, actionAddresses, actionAddressesAllChains, otherAddresses, otherAddressesAllChains, getAddr, };
|
|
2348
2990
|
declare const _default: {
|
|
@@ -2386,6 +3028,11 @@ declare const _default: {
|
|
|
2386
3028
|
SkyStake: string;
|
|
2387
3029
|
SkyUnstake: string;
|
|
2388
3030
|
SkyClaimRewards: string;
|
|
3031
|
+
SkyStakingEngineOpen: string;
|
|
3032
|
+
SkyStakingEngineSelectFarm: string;
|
|
3033
|
+
SkyStakingEngineStake: string;
|
|
3034
|
+
SkyStakingEngineUnstake: string;
|
|
3035
|
+
SkyStakingEngineClaimRewards: string;
|
|
2389
3036
|
McdGenerate: string;
|
|
2390
3037
|
McdGive: string;
|
|
2391
3038
|
McdMerge: string;
|
|
@@ -2643,8 +3290,288 @@ declare const _default: {
|
|
|
2643
3290
|
PullToken: string;
|
|
2644
3291
|
SumInputs: string;
|
|
2645
3292
|
SubInputs: string;
|
|
2646
|
-
ApproveToken: string;
|
|
3293
|
+
ApproveToken: string;
|
|
3294
|
+
SendTokenAndUnwrap: string;
|
|
3295
|
+
ToggleSub: string;
|
|
3296
|
+
CreateSub: string;
|
|
3297
|
+
TokenBalance: string;
|
|
3298
|
+
TokenizedVaultAdapter: string;
|
|
3299
|
+
ChangeProxyOwner: string;
|
|
3300
|
+
PermitToken: string;
|
|
3301
|
+
HandleAuth: string;
|
|
3302
|
+
MerklClaim: string;
|
|
3303
|
+
AaveV3ATokenPayback: string;
|
|
3304
|
+
AaveV3Borrow: string;
|
|
3305
|
+
AaveV3CollateralSwitch: string;
|
|
3306
|
+
AaveV3Payback: string;
|
|
3307
|
+
AaveV3SetEMode: string;
|
|
3308
|
+
AaveV3Supply: string;
|
|
3309
|
+
AaveV3SwapBorrowRateMode: string;
|
|
3310
|
+
AaveV3Withdraw: string;
|
|
3311
|
+
AaveV3ClaimRewards: string;
|
|
3312
|
+
AaveV3DelegateWithSig: string;
|
|
3313
|
+
AaveV3DelegateCredit: string;
|
|
3314
|
+
FLAaveV3NoFee: string;
|
|
3315
|
+
FLAaveV3: string;
|
|
3316
|
+
FLBalancer: string;
|
|
3317
|
+
FLAction: string;
|
|
3318
|
+
AaveV3RatioTrigger: string;
|
|
3319
|
+
GasFeeTakerL2: string;
|
|
3320
|
+
AaveV3RatioCheck: string;
|
|
3321
|
+
UniCollectV3: string;
|
|
3322
|
+
UniMintV3: string;
|
|
3323
|
+
UniSupplyV3: string;
|
|
3324
|
+
UniWithdrawV3: string;
|
|
3325
|
+
UniCreatePoolV3: string;
|
|
3326
|
+
CompV3Allow: string;
|
|
3327
|
+
CompV3Borrow: string;
|
|
3328
|
+
CompV3Claim: string;
|
|
3329
|
+
CompV3Payback: string;
|
|
3330
|
+
CompV3Supply: string;
|
|
3331
|
+
CompV3Transfer: string;
|
|
3332
|
+
CompV3Withdraw: string;
|
|
3333
|
+
SFApproveTokens: string;
|
|
3334
|
+
AutomationV2Unsub?: undefined;
|
|
3335
|
+
UpdateSub?: undefined;
|
|
3336
|
+
TransferNFT?: undefined;
|
|
3337
|
+
SDaiWrap?: undefined;
|
|
3338
|
+
SDaiUnwrap?: undefined;
|
|
3339
|
+
StarknetClaim?: undefined;
|
|
3340
|
+
SkyStake?: undefined;
|
|
3341
|
+
SkyUnstake?: undefined;
|
|
3342
|
+
SkyClaimRewards?: undefined;
|
|
3343
|
+
SkyStakingEngineOpen?: undefined;
|
|
3344
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
3345
|
+
SkyStakingEngineStake?: undefined;
|
|
3346
|
+
SkyStakingEngineUnstake?: undefined;
|
|
3347
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
3348
|
+
McdGenerate?: undefined;
|
|
3349
|
+
McdGive?: undefined;
|
|
3350
|
+
McdMerge?: undefined;
|
|
3351
|
+
McdOpen?: undefined;
|
|
3352
|
+
McdPayback?: undefined;
|
|
3353
|
+
McdSupply?: undefined;
|
|
3354
|
+
McdWithdraw?: undefined;
|
|
3355
|
+
McdClaim?: undefined;
|
|
3356
|
+
McdDsrDeposit?: undefined;
|
|
3357
|
+
McdDsrWithdraw?: undefined;
|
|
3358
|
+
McdTokenConverter?: undefined;
|
|
3359
|
+
ReflexerSupply?: undefined;
|
|
3360
|
+
ReflexerWithdraw?: undefined;
|
|
3361
|
+
ReflexerPayback?: undefined;
|
|
3362
|
+
ReflexerGenerate?: undefined;
|
|
3363
|
+
ReflexerOpen?: undefined;
|
|
3364
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
3365
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
3366
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
3367
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
3368
|
+
AaveBorrow?: undefined;
|
|
3369
|
+
AavePayback?: undefined;
|
|
3370
|
+
AaveSupply?: undefined;
|
|
3371
|
+
AaveWithdraw?: undefined;
|
|
3372
|
+
AaveCollateralSwitch?: undefined;
|
|
3373
|
+
AaveUnstake?: undefined;
|
|
3374
|
+
AaveClaimAAVE?: undefined;
|
|
3375
|
+
AaveClaimStkAave?: undefined;
|
|
3376
|
+
AaveV3View?: undefined;
|
|
3377
|
+
GhoClaimAAVE?: undefined;
|
|
3378
|
+
GhoUnstake?: undefined;
|
|
3379
|
+
GhoStake?: undefined;
|
|
3380
|
+
LSVWithdraw?: undefined;
|
|
3381
|
+
LSVBorrow?: undefined;
|
|
3382
|
+
LSVSupply?: undefined;
|
|
3383
|
+
LSVPayback?: undefined;
|
|
3384
|
+
LSVSell?: undefined;
|
|
3385
|
+
MorphoAaveV2Borrow?: undefined;
|
|
3386
|
+
MorphoAaveV2Payback?: undefined;
|
|
3387
|
+
MorphoAaveV2Supply?: undefined;
|
|
3388
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
3389
|
+
MorphoClaim?: undefined;
|
|
3390
|
+
MorphoAaveV3Borrow?: undefined;
|
|
3391
|
+
MorphoAaveV3Payback?: undefined;
|
|
3392
|
+
MorphoAaveV3Supply?: undefined;
|
|
3393
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
3394
|
+
MorphoAaveV3SetManager?: undefined;
|
|
3395
|
+
SparkBorrow?: undefined;
|
|
3396
|
+
SparkClaimRewards?: undefined;
|
|
3397
|
+
SparkCollateralSwitch?: undefined;
|
|
3398
|
+
SparkPayback?: undefined;
|
|
3399
|
+
SparkSetEMode?: undefined;
|
|
3400
|
+
SparkSpTokenPayback?: undefined;
|
|
3401
|
+
SparkSupply?: undefined;
|
|
3402
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
3403
|
+
SparkWithdraw?: undefined;
|
|
3404
|
+
SparkDelegateCredit?: undefined;
|
|
3405
|
+
SparkDelegateWithSig?: undefined;
|
|
3406
|
+
SparkSPKClaim?: undefined;
|
|
3407
|
+
CompBorrow?: undefined;
|
|
3408
|
+
CompClaim?: undefined;
|
|
3409
|
+
CompPayback?: undefined;
|
|
3410
|
+
CompSupply?: undefined;
|
|
3411
|
+
CompWithdraw?: undefined;
|
|
3412
|
+
CompGetDebt?: undefined;
|
|
3413
|
+
CompCollateralSwitch?: undefined;
|
|
3414
|
+
FLAaveV2?: undefined;
|
|
3415
|
+
FLAaveV3CarryDebt?: undefined;
|
|
3416
|
+
FLDyDx?: undefined;
|
|
3417
|
+
FLMaker?: undefined;
|
|
3418
|
+
FLSpark?: undefined;
|
|
3419
|
+
FLUniV3?: undefined;
|
|
3420
|
+
FLGho?: undefined;
|
|
3421
|
+
FLMorphoBlue?: undefined;
|
|
3422
|
+
UniSupply?: undefined;
|
|
3423
|
+
UniWithdraw?: undefined;
|
|
3424
|
+
DyDxWithdraw?: undefined;
|
|
3425
|
+
YearnSupply?: undefined;
|
|
3426
|
+
YearnWithdraw?: undefined;
|
|
3427
|
+
LiquityClose?: undefined;
|
|
3428
|
+
LiquityBorrow?: undefined;
|
|
3429
|
+
LiquityOpen?: undefined;
|
|
3430
|
+
LiquityPayback?: undefined;
|
|
3431
|
+
LiquityWithdraw?: undefined;
|
|
3432
|
+
LiquitySupply?: undefined;
|
|
3433
|
+
LiquitySPDeposit?: undefined;
|
|
3434
|
+
LiquitySPWithdraw?: undefined;
|
|
3435
|
+
LiquityStake?: undefined;
|
|
3436
|
+
LiquityUnstake?: undefined;
|
|
3437
|
+
LiquityEthGainToTrove?: undefined;
|
|
3438
|
+
LiquityClaim?: undefined;
|
|
3439
|
+
LiquityRedeem?: undefined;
|
|
3440
|
+
LiquityAdjust?: undefined;
|
|
3441
|
+
LiquityV2CloseLegacy?: undefined;
|
|
3442
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
3443
|
+
LiquityV2Open?: undefined;
|
|
3444
|
+
LiquityV2Close?: undefined;
|
|
3445
|
+
LiquityV2Supply?: undefined;
|
|
3446
|
+
LiquityV2Withdraw?: undefined;
|
|
3447
|
+
LiquityV2Borrow?: undefined;
|
|
3448
|
+
LiquityV2Payback?: undefined;
|
|
3449
|
+
LiquityV2Claim?: undefined;
|
|
3450
|
+
LiquityV2Adjust?: undefined;
|
|
3451
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
3452
|
+
LiquityV2SPDeposit?: undefined;
|
|
3453
|
+
LiquityV2SPWithdraw?: undefined;
|
|
3454
|
+
LiquityV2SPClaimColl?: undefined;
|
|
3455
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
3456
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
3457
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
3458
|
+
LidoStake?: undefined;
|
|
3459
|
+
LidoWrap?: undefined;
|
|
3460
|
+
LidoUnwrap?: undefined;
|
|
3461
|
+
InstPullTokens?: undefined;
|
|
3462
|
+
BalancerV2Supply?: undefined;
|
|
3463
|
+
BalancerV2Withdraw?: undefined;
|
|
3464
|
+
BalancerV2Claim?: undefined;
|
|
3465
|
+
GUniWithdraw?: undefined;
|
|
3466
|
+
GUniDeposit?: undefined;
|
|
3467
|
+
RariDeposit?: undefined;
|
|
3468
|
+
RariWithdraw?: undefined;
|
|
3469
|
+
MStableDeposit?: undefined;
|
|
3470
|
+
MStableWithdraw?: undefined;
|
|
3471
|
+
MStableClaim?: undefined;
|
|
3472
|
+
McdRatioCheck?: undefined;
|
|
3473
|
+
GasFeeTaker?: undefined;
|
|
3474
|
+
CurveStethPoolDeposit?: undefined;
|
|
3475
|
+
CurveStethPoolWithdraw?: undefined;
|
|
3476
|
+
CurveDeposit?: undefined;
|
|
3477
|
+
CurveWithdraw?: undefined;
|
|
3478
|
+
McdBoostComposite?: undefined;
|
|
3479
|
+
McdRepayComposite?: undefined;
|
|
3480
|
+
FLEuler?: undefined;
|
|
3481
|
+
TrailingStopTrigger?: undefined;
|
|
3482
|
+
CBRebondTrigger?: undefined;
|
|
3483
|
+
CBUpdateRebondSub?: undefined;
|
|
3484
|
+
LiquityRatioCheck?: undefined;
|
|
3485
|
+
ConvexDeposit?: undefined;
|
|
3486
|
+
ConvexWithdraw?: undefined;
|
|
3487
|
+
ConvexClaim?: undefined;
|
|
3488
|
+
CBCreate?: undefined;
|
|
3489
|
+
CBRedeem?: undefined;
|
|
3490
|
+
CBChickenIn?: undefined;
|
|
3491
|
+
CBChickenOut?: undefined;
|
|
3492
|
+
CBCreateRebondSub?: undefined;
|
|
3493
|
+
FetchBondId?: undefined;
|
|
3494
|
+
CurveUsdBorrow?: undefined;
|
|
3495
|
+
CurveUsdCreate?: undefined;
|
|
3496
|
+
CurveUsdPayback?: undefined;
|
|
3497
|
+
CurveUsdSupply?: undefined;
|
|
3498
|
+
CurveUsdAdjust?: undefined;
|
|
3499
|
+
CurveUsdWithdraw?: undefined;
|
|
3500
|
+
CurveUsdLevCreate?: undefined;
|
|
3501
|
+
CurveUsdRepay?: undefined;
|
|
3502
|
+
CurveUsdSwapper?: undefined;
|
|
3503
|
+
CurveUsdSwapperTransient?: undefined;
|
|
3504
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
3505
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
3506
|
+
CurveUsdGetDebt?: undefined;
|
|
3507
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
3508
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
3509
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
3510
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
3511
|
+
CurveUsdRepayTransient?: undefined;
|
|
3512
|
+
MorphoBlueSupply?: undefined;
|
|
3513
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
3514
|
+
MorphoBlueWithdraw?: undefined;
|
|
3515
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
3516
|
+
MorphoBlueBorrow?: undefined;
|
|
3517
|
+
MorphoBluePayback?: undefined;
|
|
3518
|
+
MorphoBlueSetAuth?: undefined;
|
|
3519
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
3520
|
+
MorphoTokenWrap?: undefined;
|
|
3521
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
3522
|
+
MorphoBlueClaim?: undefined;
|
|
3523
|
+
LlamaLendCreate?: undefined;
|
|
3524
|
+
LlamaLendSupply?: undefined;
|
|
3525
|
+
LlamaLendBorrow?: undefined;
|
|
3526
|
+
LlamaLendWithdraw?: undefined;
|
|
3527
|
+
LlamaLendPayback?: undefined;
|
|
3528
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
3529
|
+
LlamaLendGetDebt?: undefined;
|
|
3530
|
+
LlamaLendBoost?: undefined;
|
|
3531
|
+
LlamaLendRepay?: undefined;
|
|
3532
|
+
LlamaLendLevCreate?: undefined;
|
|
3533
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
3534
|
+
EulerV2Supply?: undefined;
|
|
3535
|
+
EulerV2Withdraw?: undefined;
|
|
3536
|
+
EulerV2Borrow?: undefined;
|
|
3537
|
+
EulerV2Payback?: undefined;
|
|
3538
|
+
EulerV2CollateralSwitch?: undefined;
|
|
3539
|
+
EulerV2View?: undefined;
|
|
3540
|
+
RenzoStake?: undefined;
|
|
3541
|
+
EtherFiStake?: undefined;
|
|
3542
|
+
EtherFiWrap?: undefined;
|
|
3543
|
+
EtherFiUnwrap?: undefined;
|
|
3544
|
+
KingClaim?: undefined;
|
|
3545
|
+
FluidVaultT1Open?: undefined;
|
|
3546
|
+
FluidVaultT1Adjust?: undefined;
|
|
3547
|
+
FluidVaultT1Borrow?: undefined;
|
|
3548
|
+
FluidVaultT1Payback?: undefined;
|
|
3549
|
+
FluidVaultT1Withdraw?: undefined;
|
|
3550
|
+
FluidVaultT1Supply?: undefined;
|
|
3551
|
+
FluidView?: undefined;
|
|
3552
|
+
FluidClaim?: undefined;
|
|
3553
|
+
FluidDexOpen?: undefined;
|
|
3554
|
+
FluidDexSupply?: undefined;
|
|
3555
|
+
FluidDexBorrow?: undefined;
|
|
3556
|
+
FluidDexPayback?: undefined;
|
|
3557
|
+
FluidDexWithdraw?: undefined;
|
|
3558
|
+
PendleTokenRedeem?: undefined;
|
|
3559
|
+
UmbrellaClaimRewards?: undefined;
|
|
3560
|
+
UmbrellaStake?: undefined;
|
|
3561
|
+
UmbrellaUnstake?: undefined;
|
|
3562
|
+
MorphoBlueView?: undefined;
|
|
3563
|
+
} | {
|
|
3564
|
+
DFSSell: string;
|
|
3565
|
+
DFSSellNoFee: string;
|
|
3566
|
+
WrapEth: string;
|
|
3567
|
+
UnwrapEth: string;
|
|
3568
|
+
SendToken: string;
|
|
3569
|
+
SendTokens: string;
|
|
3570
|
+
PullToken: string;
|
|
3571
|
+
SumInputs: string;
|
|
3572
|
+
SubInputs: string;
|
|
2647
3573
|
SendTokenAndUnwrap: string;
|
|
3574
|
+
ApproveToken: string;
|
|
2648
3575
|
ToggleSub: string;
|
|
2649
3576
|
CreateSub: string;
|
|
2650
3577
|
TokenBalance: string;
|
|
@@ -2652,6 +3579,8 @@ declare const _default: {
|
|
|
2652
3579
|
ChangeProxyOwner: string;
|
|
2653
3580
|
PermitToken: string;
|
|
2654
3581
|
HandleAuth: string;
|
|
3582
|
+
UpdateSub: string;
|
|
3583
|
+
TransferNFT: string;
|
|
2655
3584
|
MerklClaim: string;
|
|
2656
3585
|
AaveV3ATokenPayback: string;
|
|
2657
3586
|
AaveV3Borrow: string;
|
|
@@ -2663,12 +3592,18 @@ declare const _default: {
|
|
|
2663
3592
|
AaveV3Withdraw: string;
|
|
2664
3593
|
AaveV3ClaimRewards: string;
|
|
2665
3594
|
AaveV3DelegateWithSig: string;
|
|
2666
|
-
|
|
3595
|
+
CompV3Allow: string;
|
|
3596
|
+
CompV3Borrow: string;
|
|
3597
|
+
CompV3Claim: string;
|
|
3598
|
+
CompV3Payback: string;
|
|
3599
|
+
CompV3Supply: string;
|
|
3600
|
+
CompV3Transfer: string;
|
|
3601
|
+
CompV3Withdraw: string;
|
|
2667
3602
|
FLAaveV3NoFee: string;
|
|
2668
3603
|
FLAaveV3: string;
|
|
2669
3604
|
FLBalancer: string;
|
|
3605
|
+
FLUniV3: string;
|
|
2670
3606
|
FLAction: string;
|
|
2671
|
-
AaveV3RatioTrigger: string;
|
|
2672
3607
|
GasFeeTakerL2: string;
|
|
2673
3608
|
AaveV3RatioCheck: string;
|
|
2674
3609
|
UniCollectV3: string;
|
|
@@ -2676,23 +3611,42 @@ declare const _default: {
|
|
|
2676
3611
|
UniSupplyV3: string;
|
|
2677
3612
|
UniWithdrawV3: string;
|
|
2678
3613
|
UniCreatePoolV3: string;
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
3614
|
+
LlamaLendCreate: string;
|
|
3615
|
+
LlamaLendSupply: string;
|
|
3616
|
+
LlamaLendBorrow: string;
|
|
3617
|
+
LlamaLendWithdraw: string;
|
|
3618
|
+
LlamaLendPayback: string;
|
|
3619
|
+
LlamaLendSelfLiquidate: string;
|
|
3620
|
+
LlamaLendGetDebt: string;
|
|
3621
|
+
LlamaLendBoost: string;
|
|
3622
|
+
LlamaLendRepay: string;
|
|
3623
|
+
LlamaLendLevCreate: string;
|
|
3624
|
+
LlamaLendSelfLiquidateWithColl: string;
|
|
3625
|
+
FluidVaultT1Open: string;
|
|
3626
|
+
FluidVaultT1Adjust: string;
|
|
3627
|
+
FluidVaultT1Borrow: string;
|
|
3628
|
+
FluidVaultT1Payback: string;
|
|
3629
|
+
FluidVaultT1Withdraw: string;
|
|
3630
|
+
FluidVaultT1Supply: string;
|
|
3631
|
+
FluidView: string;
|
|
3632
|
+
FluidDexOpen: string;
|
|
3633
|
+
FluidDexSupply: string;
|
|
3634
|
+
FluidDexBorrow: string;
|
|
3635
|
+
FluidDexPayback: string;
|
|
3636
|
+
FluidDexWithdraw: string;
|
|
2686
3637
|
SFApproveTokens: string;
|
|
2687
3638
|
AutomationV2Unsub?: undefined;
|
|
2688
|
-
UpdateSub?: undefined;
|
|
2689
|
-
TransferNFT?: undefined;
|
|
2690
3639
|
SDaiWrap?: undefined;
|
|
2691
3640
|
SDaiUnwrap?: undefined;
|
|
2692
3641
|
StarknetClaim?: undefined;
|
|
2693
3642
|
SkyStake?: undefined;
|
|
2694
3643
|
SkyUnstake?: undefined;
|
|
2695
3644
|
SkyClaimRewards?: undefined;
|
|
3645
|
+
SkyStakingEngineOpen?: undefined;
|
|
3646
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
3647
|
+
SkyStakingEngineStake?: undefined;
|
|
3648
|
+
SkyStakingEngineUnstake?: undefined;
|
|
3649
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
2696
3650
|
McdGenerate?: undefined;
|
|
2697
3651
|
McdGive?: undefined;
|
|
2698
3652
|
McdMerge?: undefined;
|
|
@@ -2764,7 +3718,6 @@ declare const _default: {
|
|
|
2764
3718
|
FLDyDx?: undefined;
|
|
2765
3719
|
FLMaker?: undefined;
|
|
2766
3720
|
FLSpark?: undefined;
|
|
2767
|
-
FLUniV3?: undefined;
|
|
2768
3721
|
FLGho?: undefined;
|
|
2769
3722
|
FLMorphoBlue?: undefined;
|
|
2770
3723
|
UniSupply?: undefined;
|
|
@@ -2868,17 +3821,6 @@ declare const _default: {
|
|
|
2868
3821
|
MorphoTokenWrap?: undefined;
|
|
2869
3822
|
MorphoBlueReallocateLiquidity?: undefined;
|
|
2870
3823
|
MorphoBlueClaim?: undefined;
|
|
2871
|
-
LlamaLendCreate?: undefined;
|
|
2872
|
-
LlamaLendSupply?: undefined;
|
|
2873
|
-
LlamaLendBorrow?: undefined;
|
|
2874
|
-
LlamaLendWithdraw?: undefined;
|
|
2875
|
-
LlamaLendPayback?: undefined;
|
|
2876
|
-
LlamaLendSelfLiquidate?: undefined;
|
|
2877
|
-
LlamaLendGetDebt?: undefined;
|
|
2878
|
-
LlamaLendBoost?: undefined;
|
|
2879
|
-
LlamaLendRepay?: undefined;
|
|
2880
|
-
LlamaLendLevCreate?: undefined;
|
|
2881
|
-
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
2882
3824
|
EulerV2Supply?: undefined;
|
|
2883
3825
|
EulerV2Withdraw?: undefined;
|
|
2884
3826
|
EulerV2Borrow?: undefined;
|
|
@@ -2890,23 +3832,13 @@ declare const _default: {
|
|
|
2890
3832
|
EtherFiWrap?: undefined;
|
|
2891
3833
|
EtherFiUnwrap?: undefined;
|
|
2892
3834
|
KingClaim?: undefined;
|
|
2893
|
-
FluidVaultT1Open?: undefined;
|
|
2894
|
-
FluidVaultT1Adjust?: undefined;
|
|
2895
|
-
FluidVaultT1Borrow?: undefined;
|
|
2896
|
-
FluidVaultT1Payback?: undefined;
|
|
2897
|
-
FluidVaultT1Withdraw?: undefined;
|
|
2898
|
-
FluidVaultT1Supply?: undefined;
|
|
2899
|
-
FluidView?: undefined;
|
|
2900
3835
|
FluidClaim?: undefined;
|
|
2901
|
-
FluidDexOpen?: undefined;
|
|
2902
|
-
FluidDexSupply?: undefined;
|
|
2903
|
-
FluidDexBorrow?: undefined;
|
|
2904
|
-
FluidDexPayback?: undefined;
|
|
2905
|
-
FluidDexWithdraw?: undefined;
|
|
2906
3836
|
PendleTokenRedeem?: undefined;
|
|
2907
3837
|
UmbrellaClaimRewards?: undefined;
|
|
2908
3838
|
UmbrellaStake?: undefined;
|
|
2909
3839
|
UmbrellaUnstake?: undefined;
|
|
3840
|
+
AaveV3DelegateCredit?: undefined;
|
|
3841
|
+
AaveV3RatioTrigger?: undefined;
|
|
2910
3842
|
MorphoBlueView?: undefined;
|
|
2911
3843
|
} | {
|
|
2912
3844
|
DFSSell: string;
|
|
@@ -2916,29 +3848,34 @@ declare const _default: {
|
|
|
2916
3848
|
SendToken: string;
|
|
2917
3849
|
SendTokens: string;
|
|
2918
3850
|
PullToken: string;
|
|
3851
|
+
ApproveToken: string;
|
|
2919
3852
|
SumInputs: string;
|
|
2920
3853
|
SubInputs: string;
|
|
2921
|
-
SendTokenAndUnwrap: string;
|
|
2922
|
-
ApproveToken: string;
|
|
2923
|
-
ToggleSub: string;
|
|
2924
|
-
CreateSub: string;
|
|
2925
3854
|
TokenBalance: string;
|
|
2926
|
-
TokenizedVaultAdapter: string;
|
|
2927
3855
|
ChangeProxyOwner: string;
|
|
2928
3856
|
PermitToken: string;
|
|
2929
3857
|
HandleAuth: string;
|
|
3858
|
+
ToggleSub: string;
|
|
3859
|
+
CreateSub: string;
|
|
2930
3860
|
UpdateSub: string;
|
|
2931
|
-
TransferNFT: string;
|
|
2932
3861
|
MerklClaim: string;
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
3862
|
+
TransferNFT: string;
|
|
3863
|
+
GasFeeTakerL2: string;
|
|
3864
|
+
FLAaveV3: string;
|
|
3865
|
+
FLBalancer: string;
|
|
3866
|
+
FLUniV3: string;
|
|
3867
|
+
FLAction: string;
|
|
3868
|
+
FLMorphoBlue: string;
|
|
2940
3869
|
AaveV3Withdraw: string;
|
|
3870
|
+
AaveV3SwapBorrowRateMode: string;
|
|
3871
|
+
AaveV3Supply: string;
|
|
3872
|
+
AaveV3SetEMode: string;
|
|
3873
|
+
AaveV3Payback: string;
|
|
3874
|
+
AaveV3CollateralSwitch: string;
|
|
2941
3875
|
AaveV3ClaimRewards: string;
|
|
3876
|
+
AaveV3Borrow: string;
|
|
3877
|
+
AaveV3ATokenPayback: string;
|
|
3878
|
+
AaveV3View: string;
|
|
2942
3879
|
AaveV3DelegateWithSig: string;
|
|
2943
3880
|
CompV3Allow: string;
|
|
2944
3881
|
CompV3Borrow: string;
|
|
@@ -2947,29 +3884,17 @@ declare const _default: {
|
|
|
2947
3884
|
CompV3Supply: string;
|
|
2948
3885
|
CompV3Transfer: string;
|
|
2949
3886
|
CompV3Withdraw: string;
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
UniCreatePoolV3: string;
|
|
2962
|
-
LlamaLendCreate: string;
|
|
2963
|
-
LlamaLendSupply: string;
|
|
2964
|
-
LlamaLendBorrow: string;
|
|
2965
|
-
LlamaLendWithdraw: string;
|
|
2966
|
-
LlamaLendPayback: string;
|
|
2967
|
-
LlamaLendSelfLiquidate: string;
|
|
2968
|
-
LlamaLendGetDebt: string;
|
|
2969
|
-
LlamaLendBoost: string;
|
|
2970
|
-
LlamaLendRepay: string;
|
|
2971
|
-
LlamaLendLevCreate: string;
|
|
2972
|
-
LlamaLendSelfLiquidateWithColl: string;
|
|
3887
|
+
MorphoBlueSupply: string;
|
|
3888
|
+
MorphoBlueSupplyCollateral: string;
|
|
3889
|
+
MorphoBlueWithdraw: string;
|
|
3890
|
+
MorphoBlueWithdrawCollateral: string;
|
|
3891
|
+
MorphoBlueBorrow: string;
|
|
3892
|
+
MorphoBluePayback: string;
|
|
3893
|
+
MorphoBlueSetAuth: string;
|
|
3894
|
+
MorphoBlueSetAuthWithSig: string;
|
|
3895
|
+
MorphoBlueView: string;
|
|
3896
|
+
MorphoBlueReallocateLiquidity: string;
|
|
3897
|
+
MorphoBlueClaim: string;
|
|
2973
3898
|
FluidVaultT1Open: string;
|
|
2974
3899
|
FluidVaultT1Adjust: string;
|
|
2975
3900
|
FluidVaultT1Borrow: string;
|
|
@@ -2977,19 +3902,21 @@ declare const _default: {
|
|
|
2977
3902
|
FluidVaultT1Withdraw: string;
|
|
2978
3903
|
FluidVaultT1Supply: string;
|
|
2979
3904
|
FluidView: string;
|
|
2980
|
-
|
|
2981
|
-
FluidDexSupply: string;
|
|
2982
|
-
FluidDexBorrow: string;
|
|
2983
|
-
FluidDexPayback: string;
|
|
2984
|
-
FluidDexWithdraw: string;
|
|
3905
|
+
TokenizedVaultAdapter: string;
|
|
2985
3906
|
SFApproveTokens: string;
|
|
2986
3907
|
AutomationV2Unsub?: undefined;
|
|
3908
|
+
SendTokenAndUnwrap?: undefined;
|
|
2987
3909
|
SDaiWrap?: undefined;
|
|
2988
3910
|
SDaiUnwrap?: undefined;
|
|
2989
3911
|
StarknetClaim?: undefined;
|
|
2990
3912
|
SkyStake?: undefined;
|
|
2991
3913
|
SkyUnstake?: undefined;
|
|
2992
3914
|
SkyClaimRewards?: undefined;
|
|
3915
|
+
SkyStakingEngineOpen?: undefined;
|
|
3916
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
3917
|
+
SkyStakingEngineStake?: undefined;
|
|
3918
|
+
SkyStakingEngineUnstake?: undefined;
|
|
3919
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
2993
3920
|
McdGenerate?: undefined;
|
|
2994
3921
|
McdGive?: undefined;
|
|
2995
3922
|
McdMerge?: undefined;
|
|
@@ -3018,7 +3945,6 @@ declare const _default: {
|
|
|
3018
3945
|
AaveUnstake?: undefined;
|
|
3019
3946
|
AaveClaimAAVE?: undefined;
|
|
3020
3947
|
AaveClaimStkAave?: undefined;
|
|
3021
|
-
AaveV3View?: undefined;
|
|
3022
3948
|
GhoClaimAAVE?: undefined;
|
|
3023
3949
|
GhoUnstake?: undefined;
|
|
3024
3950
|
GhoStake?: undefined;
|
|
@@ -3057,14 +3983,19 @@ declare const _default: {
|
|
|
3057
3983
|
CompGetDebt?: undefined;
|
|
3058
3984
|
CompCollateralSwitch?: undefined;
|
|
3059
3985
|
FLAaveV2?: undefined;
|
|
3986
|
+
FLAaveV3NoFee?: undefined;
|
|
3060
3987
|
FLAaveV3CarryDebt?: undefined;
|
|
3061
3988
|
FLDyDx?: undefined;
|
|
3062
3989
|
FLMaker?: undefined;
|
|
3063
3990
|
FLSpark?: undefined;
|
|
3064
3991
|
FLGho?: undefined;
|
|
3065
|
-
FLMorphoBlue?: undefined;
|
|
3066
3992
|
UniSupply?: undefined;
|
|
3067
3993
|
UniWithdraw?: undefined;
|
|
3994
|
+
UniCollectV3?: undefined;
|
|
3995
|
+
UniMintV3?: undefined;
|
|
3996
|
+
UniSupplyV3?: undefined;
|
|
3997
|
+
UniWithdrawV3?: undefined;
|
|
3998
|
+
UniCreatePoolV3?: undefined;
|
|
3068
3999
|
DyDxWithdraw?: undefined;
|
|
3069
4000
|
YearnSupply?: undefined;
|
|
3070
4001
|
YearnWithdraw?: undefined;
|
|
@@ -3153,17 +4084,18 @@ declare const _default: {
|
|
|
3153
4084
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
3154
4085
|
CurveUsdLevCreateTransient?: undefined;
|
|
3155
4086
|
CurveUsdRepayTransient?: undefined;
|
|
3156
|
-
MorphoBlueSupply?: undefined;
|
|
3157
|
-
MorphoBlueSupplyCollateral?: undefined;
|
|
3158
|
-
MorphoBlueWithdraw?: undefined;
|
|
3159
|
-
MorphoBlueWithdrawCollateral?: undefined;
|
|
3160
|
-
MorphoBlueBorrow?: undefined;
|
|
3161
|
-
MorphoBluePayback?: undefined;
|
|
3162
|
-
MorphoBlueSetAuth?: undefined;
|
|
3163
|
-
MorphoBlueSetAuthWithSig?: undefined;
|
|
3164
4087
|
MorphoTokenWrap?: undefined;
|
|
3165
|
-
|
|
3166
|
-
|
|
4088
|
+
LlamaLendCreate?: undefined;
|
|
4089
|
+
LlamaLendSupply?: undefined;
|
|
4090
|
+
LlamaLendBorrow?: undefined;
|
|
4091
|
+
LlamaLendWithdraw?: undefined;
|
|
4092
|
+
LlamaLendPayback?: undefined;
|
|
4093
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
4094
|
+
LlamaLendGetDebt?: undefined;
|
|
4095
|
+
LlamaLendBoost?: undefined;
|
|
4096
|
+
LlamaLendRepay?: undefined;
|
|
4097
|
+
LlamaLendLevCreate?: undefined;
|
|
4098
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
3167
4099
|
EulerV2Supply?: undefined;
|
|
3168
4100
|
EulerV2Withdraw?: undefined;
|
|
3169
4101
|
EulerV2Borrow?: undefined;
|
|
@@ -3176,13 +4108,18 @@ declare const _default: {
|
|
|
3176
4108
|
EtherFiUnwrap?: undefined;
|
|
3177
4109
|
KingClaim?: undefined;
|
|
3178
4110
|
FluidClaim?: undefined;
|
|
4111
|
+
FluidDexOpen?: undefined;
|
|
4112
|
+
FluidDexSupply?: undefined;
|
|
4113
|
+
FluidDexBorrow?: undefined;
|
|
4114
|
+
FluidDexPayback?: undefined;
|
|
4115
|
+
FluidDexWithdraw?: undefined;
|
|
3179
4116
|
PendleTokenRedeem?: undefined;
|
|
3180
4117
|
UmbrellaClaimRewards?: undefined;
|
|
3181
4118
|
UmbrellaStake?: undefined;
|
|
3182
4119
|
UmbrellaUnstake?: undefined;
|
|
3183
4120
|
AaveV3DelegateCredit?: undefined;
|
|
3184
4121
|
AaveV3RatioTrigger?: undefined;
|
|
3185
|
-
|
|
4122
|
+
AaveV3RatioCheck?: undefined;
|
|
3186
4123
|
} | {
|
|
3187
4124
|
DFSSell: string;
|
|
3188
4125
|
DFSSellNoFee: string;
|
|
@@ -3190,27 +4127,19 @@ declare const _default: {
|
|
|
3190
4127
|
UnwrapEth: string;
|
|
3191
4128
|
SendToken: string;
|
|
3192
4129
|
SendTokens: string;
|
|
4130
|
+
SendTokenAndUnwrap: string;
|
|
3193
4131
|
PullToken: string;
|
|
3194
4132
|
ApproveToken: string;
|
|
3195
4133
|
SumInputs: string;
|
|
3196
4134
|
SubInputs: string;
|
|
3197
4135
|
TokenBalance: string;
|
|
3198
|
-
ChangeProxyOwner: string;
|
|
3199
4136
|
PermitToken: string;
|
|
3200
|
-
HandleAuth: string;
|
|
3201
|
-
ToggleSub: string;
|
|
3202
|
-
CreateSub: string;
|
|
3203
|
-
UpdateSub: string;
|
|
3204
4137
|
MerklClaim: string;
|
|
3205
4138
|
TransferNFT: string;
|
|
3206
|
-
|
|
3207
|
-
FLAaveV3: string;
|
|
3208
|
-
FLBalancer: string;
|
|
3209
|
-
FLUniV3: string;
|
|
4139
|
+
TokenizedVaultAdapter: string;
|
|
3210
4140
|
FLAction: string;
|
|
3211
|
-
|
|
4141
|
+
FLAaveV3: string;
|
|
3212
4142
|
AaveV3Withdraw: string;
|
|
3213
|
-
AaveV3SwapBorrowRateMode: string;
|
|
3214
4143
|
AaveV3Supply: string;
|
|
3215
4144
|
AaveV3SetEMode: string;
|
|
3216
4145
|
AaveV3Payback: string;
|
|
@@ -3220,41 +4149,24 @@ declare const _default: {
|
|
|
3220
4149
|
AaveV3ATokenPayback: string;
|
|
3221
4150
|
AaveV3View: string;
|
|
3222
4151
|
AaveV3DelegateWithSig: string;
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
CompV3Claim: string;
|
|
3226
|
-
CompV3Payback: string;
|
|
3227
|
-
CompV3Supply: string;
|
|
3228
|
-
CompV3Transfer: string;
|
|
3229
|
-
CompV3Withdraw: string;
|
|
3230
|
-
MorphoBlueSupply: string;
|
|
3231
|
-
MorphoBlueSupplyCollateral: string;
|
|
3232
|
-
MorphoBlueWithdraw: string;
|
|
3233
|
-
MorphoBlueWithdrawCollateral: string;
|
|
3234
|
-
MorphoBlueBorrow: string;
|
|
3235
|
-
MorphoBluePayback: string;
|
|
3236
|
-
MorphoBlueSetAuth: string;
|
|
3237
|
-
MorphoBlueSetAuthWithSig: string;
|
|
3238
|
-
MorphoBlueView: string;
|
|
3239
|
-
MorphoBlueReallocateLiquidity: string;
|
|
3240
|
-
MorphoBlueClaim: string;
|
|
3241
|
-
FluidVaultT1Open: string;
|
|
3242
|
-
FluidVaultT1Adjust: string;
|
|
3243
|
-
FluidVaultT1Borrow: string;
|
|
3244
|
-
FluidVaultT1Payback: string;
|
|
3245
|
-
FluidVaultT1Withdraw: string;
|
|
3246
|
-
FluidVaultT1Supply: string;
|
|
3247
|
-
FluidView: string;
|
|
3248
|
-
TokenizedVaultAdapter: string;
|
|
3249
|
-
SFApproveTokens: string;
|
|
4152
|
+
AaveV3DelegateCredit: string;
|
|
4153
|
+
ChangeProxyOwner?: undefined;
|
|
3250
4154
|
AutomationV2Unsub?: undefined;
|
|
3251
|
-
|
|
4155
|
+
ToggleSub?: undefined;
|
|
4156
|
+
UpdateSub?: undefined;
|
|
4157
|
+
CreateSub?: undefined;
|
|
3252
4158
|
SDaiWrap?: undefined;
|
|
3253
4159
|
SDaiUnwrap?: undefined;
|
|
3254
4160
|
StarknetClaim?: undefined;
|
|
4161
|
+
HandleAuth?: undefined;
|
|
3255
4162
|
SkyStake?: undefined;
|
|
3256
4163
|
SkyUnstake?: undefined;
|
|
3257
4164
|
SkyClaimRewards?: undefined;
|
|
4165
|
+
SkyStakingEngineOpen?: undefined;
|
|
4166
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
4167
|
+
SkyStakingEngineStake?: undefined;
|
|
4168
|
+
SkyStakingEngineUnstake?: undefined;
|
|
4169
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
3258
4170
|
McdGenerate?: undefined;
|
|
3259
4171
|
McdGive?: undefined;
|
|
3260
4172
|
McdMerge?: undefined;
|
|
@@ -3283,6 +4195,7 @@ declare const _default: {
|
|
|
3283
4195
|
AaveUnstake?: undefined;
|
|
3284
4196
|
AaveClaimAAVE?: undefined;
|
|
3285
4197
|
AaveClaimStkAave?: undefined;
|
|
4198
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
3286
4199
|
GhoClaimAAVE?: undefined;
|
|
3287
4200
|
GhoUnstake?: undefined;
|
|
3288
4201
|
GhoStake?: undefined;
|
|
@@ -3325,8 +4238,11 @@ declare const _default: {
|
|
|
3325
4238
|
FLAaveV3CarryDebt?: undefined;
|
|
3326
4239
|
FLDyDx?: undefined;
|
|
3327
4240
|
FLMaker?: undefined;
|
|
4241
|
+
FLBalancer?: undefined;
|
|
3328
4242
|
FLSpark?: undefined;
|
|
4243
|
+
FLUniV3?: undefined;
|
|
3329
4244
|
FLGho?: undefined;
|
|
4245
|
+
FLMorphoBlue?: undefined;
|
|
3330
4246
|
UniSupply?: undefined;
|
|
3331
4247
|
UniWithdraw?: undefined;
|
|
3332
4248
|
UniCollectV3?: undefined;
|
|
@@ -3404,6 +4320,13 @@ declare const _default: {
|
|
|
3404
4320
|
CBChickenOut?: undefined;
|
|
3405
4321
|
CBCreateRebondSub?: undefined;
|
|
3406
4322
|
FetchBondId?: undefined;
|
|
4323
|
+
CompV3Allow?: undefined;
|
|
4324
|
+
CompV3Borrow?: undefined;
|
|
4325
|
+
CompV3Claim?: undefined;
|
|
4326
|
+
CompV3Payback?: undefined;
|
|
4327
|
+
CompV3Supply?: undefined;
|
|
4328
|
+
CompV3Transfer?: undefined;
|
|
4329
|
+
CompV3Withdraw?: undefined;
|
|
3407
4330
|
CurveUsdBorrow?: undefined;
|
|
3408
4331
|
CurveUsdCreate?: undefined;
|
|
3409
4332
|
CurveUsdPayback?: undefined;
|
|
@@ -3422,7 +4345,17 @@ declare const _default: {
|
|
|
3422
4345
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
3423
4346
|
CurveUsdLevCreateTransient?: undefined;
|
|
3424
4347
|
CurveUsdRepayTransient?: undefined;
|
|
4348
|
+
MorphoBlueSupply?: undefined;
|
|
4349
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
4350
|
+
MorphoBlueWithdraw?: undefined;
|
|
4351
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
4352
|
+
MorphoBlueBorrow?: undefined;
|
|
4353
|
+
MorphoBluePayback?: undefined;
|
|
4354
|
+
MorphoBlueSetAuth?: undefined;
|
|
4355
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
3425
4356
|
MorphoTokenWrap?: undefined;
|
|
4357
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
4358
|
+
MorphoBlueClaim?: undefined;
|
|
3426
4359
|
LlamaLendCreate?: undefined;
|
|
3427
4360
|
LlamaLendSupply?: undefined;
|
|
3428
4361
|
LlamaLendBorrow?: undefined;
|
|
@@ -3445,6 +4378,13 @@ declare const _default: {
|
|
|
3445
4378
|
EtherFiWrap?: undefined;
|
|
3446
4379
|
EtherFiUnwrap?: undefined;
|
|
3447
4380
|
KingClaim?: undefined;
|
|
4381
|
+
FluidVaultT1Open?: undefined;
|
|
4382
|
+
FluidVaultT1Adjust?: undefined;
|
|
4383
|
+
FluidVaultT1Borrow?: undefined;
|
|
4384
|
+
FluidVaultT1Payback?: undefined;
|
|
4385
|
+
FluidVaultT1Withdraw?: undefined;
|
|
4386
|
+
FluidVaultT1Supply?: undefined;
|
|
4387
|
+
FluidView?: undefined;
|
|
3448
4388
|
FluidClaim?: undefined;
|
|
3449
4389
|
FluidDexOpen?: undefined;
|
|
3450
4390
|
FluidDexSupply?: undefined;
|
|
@@ -3455,9 +4395,11 @@ declare const _default: {
|
|
|
3455
4395
|
UmbrellaClaimRewards?: undefined;
|
|
3456
4396
|
UmbrellaStake?: undefined;
|
|
3457
4397
|
UmbrellaUnstake?: undefined;
|
|
3458
|
-
|
|
4398
|
+
SFApproveTokens?: undefined;
|
|
3459
4399
|
AaveV3RatioTrigger?: undefined;
|
|
4400
|
+
GasFeeTakerL2?: undefined;
|
|
3460
4401
|
AaveV3RatioCheck?: undefined;
|
|
4402
|
+
MorphoBlueView?: undefined;
|
|
3461
4403
|
};
|
|
3462
4404
|
actionAddressesAllChains: {
|
|
3463
4405
|
[x: number]: {
|
|
@@ -3488,6 +4430,11 @@ declare const _default: {
|
|
|
3488
4430
|
SkyStake: string;
|
|
3489
4431
|
SkyUnstake: string;
|
|
3490
4432
|
SkyClaimRewards: string;
|
|
4433
|
+
SkyStakingEngineOpen: string;
|
|
4434
|
+
SkyStakingEngineSelectFarm: string;
|
|
4435
|
+
SkyStakingEngineStake: string;
|
|
4436
|
+
SkyStakingEngineUnstake: string;
|
|
4437
|
+
SkyStakingEngineClaimRewards: string;
|
|
3491
4438
|
McdGenerate: string;
|
|
3492
4439
|
McdGive: string;
|
|
3493
4440
|
McdMerge: string;
|
|
@@ -3745,8 +4692,288 @@ declare const _default: {
|
|
|
3745
4692
|
PullToken: string;
|
|
3746
4693
|
SumInputs: string;
|
|
3747
4694
|
SubInputs: string;
|
|
3748
|
-
ApproveToken: string;
|
|
4695
|
+
ApproveToken: string;
|
|
4696
|
+
SendTokenAndUnwrap: string;
|
|
4697
|
+
ToggleSub: string;
|
|
4698
|
+
CreateSub: string;
|
|
4699
|
+
TokenBalance: string;
|
|
4700
|
+
TokenizedVaultAdapter: string;
|
|
4701
|
+
ChangeProxyOwner: string;
|
|
4702
|
+
PermitToken: string;
|
|
4703
|
+
HandleAuth: string;
|
|
4704
|
+
MerklClaim: string;
|
|
4705
|
+
AaveV3ATokenPayback: string;
|
|
4706
|
+
AaveV3Borrow: string;
|
|
4707
|
+
AaveV3CollateralSwitch: string;
|
|
4708
|
+
AaveV3Payback: string;
|
|
4709
|
+
AaveV3SetEMode: string;
|
|
4710
|
+
AaveV3Supply: string;
|
|
4711
|
+
AaveV3SwapBorrowRateMode: string;
|
|
4712
|
+
AaveV3Withdraw: string;
|
|
4713
|
+
AaveV3ClaimRewards: string;
|
|
4714
|
+
AaveV3DelegateWithSig: string;
|
|
4715
|
+
AaveV3DelegateCredit: string;
|
|
4716
|
+
FLAaveV3NoFee: string;
|
|
4717
|
+
FLAaveV3: string;
|
|
4718
|
+
FLBalancer: string;
|
|
4719
|
+
FLAction: string;
|
|
4720
|
+
AaveV3RatioTrigger: string;
|
|
4721
|
+
GasFeeTakerL2: string;
|
|
4722
|
+
AaveV3RatioCheck: string;
|
|
4723
|
+
UniCollectV3: string;
|
|
4724
|
+
UniMintV3: string;
|
|
4725
|
+
UniSupplyV3: string;
|
|
4726
|
+
UniWithdrawV3: string;
|
|
4727
|
+
UniCreatePoolV3: string;
|
|
4728
|
+
CompV3Allow: string;
|
|
4729
|
+
CompV3Borrow: string;
|
|
4730
|
+
CompV3Claim: string;
|
|
4731
|
+
CompV3Payback: string;
|
|
4732
|
+
CompV3Supply: string;
|
|
4733
|
+
CompV3Transfer: string;
|
|
4734
|
+
CompV3Withdraw: string;
|
|
4735
|
+
SFApproveTokens: string;
|
|
4736
|
+
AutomationV2Unsub?: undefined;
|
|
4737
|
+
UpdateSub?: undefined;
|
|
4738
|
+
TransferNFT?: undefined;
|
|
4739
|
+
SDaiWrap?: undefined;
|
|
4740
|
+
SDaiUnwrap?: undefined;
|
|
4741
|
+
StarknetClaim?: undefined;
|
|
4742
|
+
SkyStake?: undefined;
|
|
4743
|
+
SkyUnstake?: undefined;
|
|
4744
|
+
SkyClaimRewards?: undefined;
|
|
4745
|
+
SkyStakingEngineOpen?: undefined;
|
|
4746
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
4747
|
+
SkyStakingEngineStake?: undefined;
|
|
4748
|
+
SkyStakingEngineUnstake?: undefined;
|
|
4749
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
4750
|
+
McdGenerate?: undefined;
|
|
4751
|
+
McdGive?: undefined;
|
|
4752
|
+
McdMerge?: undefined;
|
|
4753
|
+
McdOpen?: undefined;
|
|
4754
|
+
McdPayback?: undefined;
|
|
4755
|
+
McdSupply?: undefined;
|
|
4756
|
+
McdWithdraw?: undefined;
|
|
4757
|
+
McdClaim?: undefined;
|
|
4758
|
+
McdDsrDeposit?: undefined;
|
|
4759
|
+
McdDsrWithdraw?: undefined;
|
|
4760
|
+
McdTokenConverter?: undefined;
|
|
4761
|
+
ReflexerSupply?: undefined;
|
|
4762
|
+
ReflexerWithdraw?: undefined;
|
|
4763
|
+
ReflexerPayback?: undefined;
|
|
4764
|
+
ReflexerGenerate?: undefined;
|
|
4765
|
+
ReflexerOpen?: undefined;
|
|
4766
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
4767
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
4768
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
4769
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
4770
|
+
AaveBorrow?: undefined;
|
|
4771
|
+
AavePayback?: undefined;
|
|
4772
|
+
AaveSupply?: undefined;
|
|
4773
|
+
AaveWithdraw?: undefined;
|
|
4774
|
+
AaveCollateralSwitch?: undefined;
|
|
4775
|
+
AaveUnstake?: undefined;
|
|
4776
|
+
AaveClaimAAVE?: undefined;
|
|
4777
|
+
AaveClaimStkAave?: undefined;
|
|
4778
|
+
AaveV3View?: undefined;
|
|
4779
|
+
GhoClaimAAVE?: undefined;
|
|
4780
|
+
GhoUnstake?: undefined;
|
|
4781
|
+
GhoStake?: undefined;
|
|
4782
|
+
LSVWithdraw?: undefined;
|
|
4783
|
+
LSVBorrow?: undefined;
|
|
4784
|
+
LSVSupply?: undefined;
|
|
4785
|
+
LSVPayback?: undefined;
|
|
4786
|
+
LSVSell?: undefined;
|
|
4787
|
+
MorphoAaveV2Borrow?: undefined;
|
|
4788
|
+
MorphoAaveV2Payback?: undefined;
|
|
4789
|
+
MorphoAaveV2Supply?: undefined;
|
|
4790
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
4791
|
+
MorphoClaim?: undefined;
|
|
4792
|
+
MorphoAaveV3Borrow?: undefined;
|
|
4793
|
+
MorphoAaveV3Payback?: undefined;
|
|
4794
|
+
MorphoAaveV3Supply?: undefined;
|
|
4795
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
4796
|
+
MorphoAaveV3SetManager?: undefined;
|
|
4797
|
+
SparkBorrow?: undefined;
|
|
4798
|
+
SparkClaimRewards?: undefined;
|
|
4799
|
+
SparkCollateralSwitch?: undefined;
|
|
4800
|
+
SparkPayback?: undefined;
|
|
4801
|
+
SparkSetEMode?: undefined;
|
|
4802
|
+
SparkSpTokenPayback?: undefined;
|
|
4803
|
+
SparkSupply?: undefined;
|
|
4804
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
4805
|
+
SparkWithdraw?: undefined;
|
|
4806
|
+
SparkDelegateCredit?: undefined;
|
|
4807
|
+
SparkDelegateWithSig?: undefined;
|
|
4808
|
+
SparkSPKClaim?: undefined;
|
|
4809
|
+
CompBorrow?: undefined;
|
|
4810
|
+
CompClaim?: undefined;
|
|
4811
|
+
CompPayback?: undefined;
|
|
4812
|
+
CompSupply?: undefined;
|
|
4813
|
+
CompWithdraw?: undefined;
|
|
4814
|
+
CompGetDebt?: undefined;
|
|
4815
|
+
CompCollateralSwitch?: undefined;
|
|
4816
|
+
FLAaveV2?: undefined;
|
|
4817
|
+
FLAaveV3CarryDebt?: undefined;
|
|
4818
|
+
FLDyDx?: undefined;
|
|
4819
|
+
FLMaker?: undefined;
|
|
4820
|
+
FLSpark?: undefined;
|
|
4821
|
+
FLUniV3?: undefined;
|
|
4822
|
+
FLGho?: undefined;
|
|
4823
|
+
FLMorphoBlue?: undefined;
|
|
4824
|
+
UniSupply?: undefined;
|
|
4825
|
+
UniWithdraw?: undefined;
|
|
4826
|
+
DyDxWithdraw?: undefined;
|
|
4827
|
+
YearnSupply?: undefined;
|
|
4828
|
+
YearnWithdraw?: undefined;
|
|
4829
|
+
LiquityClose?: undefined;
|
|
4830
|
+
LiquityBorrow?: undefined;
|
|
4831
|
+
LiquityOpen?: undefined;
|
|
4832
|
+
LiquityPayback?: undefined;
|
|
4833
|
+
LiquityWithdraw?: undefined;
|
|
4834
|
+
LiquitySupply?: undefined;
|
|
4835
|
+
LiquitySPDeposit?: undefined;
|
|
4836
|
+
LiquitySPWithdraw?: undefined;
|
|
4837
|
+
LiquityStake?: undefined;
|
|
4838
|
+
LiquityUnstake?: undefined;
|
|
4839
|
+
LiquityEthGainToTrove?: undefined;
|
|
4840
|
+
LiquityClaim?: undefined;
|
|
4841
|
+
LiquityRedeem?: undefined;
|
|
4842
|
+
LiquityAdjust?: undefined;
|
|
4843
|
+
LiquityV2CloseLegacy?: undefined;
|
|
4844
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
4845
|
+
LiquityV2Open?: undefined;
|
|
4846
|
+
LiquityV2Close?: undefined;
|
|
4847
|
+
LiquityV2Supply?: undefined;
|
|
4848
|
+
LiquityV2Withdraw?: undefined;
|
|
4849
|
+
LiquityV2Borrow?: undefined;
|
|
4850
|
+
LiquityV2Payback?: undefined;
|
|
4851
|
+
LiquityV2Claim?: undefined;
|
|
4852
|
+
LiquityV2Adjust?: undefined;
|
|
4853
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
4854
|
+
LiquityV2SPDeposit?: undefined;
|
|
4855
|
+
LiquityV2SPWithdraw?: undefined;
|
|
4856
|
+
LiquityV2SPClaimColl?: undefined;
|
|
4857
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
4858
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
4859
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
4860
|
+
LidoStake?: undefined;
|
|
4861
|
+
LidoWrap?: undefined;
|
|
4862
|
+
LidoUnwrap?: undefined;
|
|
4863
|
+
InstPullTokens?: undefined;
|
|
4864
|
+
BalancerV2Supply?: undefined;
|
|
4865
|
+
BalancerV2Withdraw?: undefined;
|
|
4866
|
+
BalancerV2Claim?: undefined;
|
|
4867
|
+
GUniWithdraw?: undefined;
|
|
4868
|
+
GUniDeposit?: undefined;
|
|
4869
|
+
RariDeposit?: undefined;
|
|
4870
|
+
RariWithdraw?: undefined;
|
|
4871
|
+
MStableDeposit?: undefined;
|
|
4872
|
+
MStableWithdraw?: undefined;
|
|
4873
|
+
MStableClaim?: undefined;
|
|
4874
|
+
McdRatioCheck?: undefined;
|
|
4875
|
+
GasFeeTaker?: undefined;
|
|
4876
|
+
CurveStethPoolDeposit?: undefined;
|
|
4877
|
+
CurveStethPoolWithdraw?: undefined;
|
|
4878
|
+
CurveDeposit?: undefined;
|
|
4879
|
+
CurveWithdraw?: undefined;
|
|
4880
|
+
McdBoostComposite?: undefined;
|
|
4881
|
+
McdRepayComposite?: undefined;
|
|
4882
|
+
FLEuler?: undefined;
|
|
4883
|
+
TrailingStopTrigger?: undefined;
|
|
4884
|
+
CBRebondTrigger?: undefined;
|
|
4885
|
+
CBUpdateRebondSub?: undefined;
|
|
4886
|
+
LiquityRatioCheck?: undefined;
|
|
4887
|
+
ConvexDeposit?: undefined;
|
|
4888
|
+
ConvexWithdraw?: undefined;
|
|
4889
|
+
ConvexClaim?: undefined;
|
|
4890
|
+
CBCreate?: undefined;
|
|
4891
|
+
CBRedeem?: undefined;
|
|
4892
|
+
CBChickenIn?: undefined;
|
|
4893
|
+
CBChickenOut?: undefined;
|
|
4894
|
+
CBCreateRebondSub?: undefined;
|
|
4895
|
+
FetchBondId?: undefined;
|
|
4896
|
+
CurveUsdBorrow?: undefined;
|
|
4897
|
+
CurveUsdCreate?: undefined;
|
|
4898
|
+
CurveUsdPayback?: undefined;
|
|
4899
|
+
CurveUsdSupply?: undefined;
|
|
4900
|
+
CurveUsdAdjust?: undefined;
|
|
4901
|
+
CurveUsdWithdraw?: undefined;
|
|
4902
|
+
CurveUsdLevCreate?: undefined;
|
|
4903
|
+
CurveUsdRepay?: undefined;
|
|
4904
|
+
CurveUsdSwapper?: undefined;
|
|
4905
|
+
CurveUsdSwapperTransient?: undefined;
|
|
4906
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
4907
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
4908
|
+
CurveUsdGetDebt?: undefined;
|
|
4909
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
4910
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
4911
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
4912
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
4913
|
+
CurveUsdRepayTransient?: undefined;
|
|
4914
|
+
MorphoBlueSupply?: undefined;
|
|
4915
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
4916
|
+
MorphoBlueWithdraw?: undefined;
|
|
4917
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
4918
|
+
MorphoBlueBorrow?: undefined;
|
|
4919
|
+
MorphoBluePayback?: undefined;
|
|
4920
|
+
MorphoBlueSetAuth?: undefined;
|
|
4921
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
4922
|
+
MorphoTokenWrap?: undefined;
|
|
4923
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
4924
|
+
MorphoBlueClaim?: undefined;
|
|
4925
|
+
LlamaLendCreate?: undefined;
|
|
4926
|
+
LlamaLendSupply?: undefined;
|
|
4927
|
+
LlamaLendBorrow?: undefined;
|
|
4928
|
+
LlamaLendWithdraw?: undefined;
|
|
4929
|
+
LlamaLendPayback?: undefined;
|
|
4930
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
4931
|
+
LlamaLendGetDebt?: undefined;
|
|
4932
|
+
LlamaLendBoost?: undefined;
|
|
4933
|
+
LlamaLendRepay?: undefined;
|
|
4934
|
+
LlamaLendLevCreate?: undefined;
|
|
4935
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
4936
|
+
EulerV2Supply?: undefined;
|
|
4937
|
+
EulerV2Withdraw?: undefined;
|
|
4938
|
+
EulerV2Borrow?: undefined;
|
|
4939
|
+
EulerV2Payback?: undefined;
|
|
4940
|
+
EulerV2CollateralSwitch?: undefined;
|
|
4941
|
+
EulerV2View?: undefined;
|
|
4942
|
+
RenzoStake?: undefined;
|
|
4943
|
+
EtherFiStake?: undefined;
|
|
4944
|
+
EtherFiWrap?: undefined;
|
|
4945
|
+
EtherFiUnwrap?: undefined;
|
|
4946
|
+
KingClaim?: undefined;
|
|
4947
|
+
FluidVaultT1Open?: undefined;
|
|
4948
|
+
FluidVaultT1Adjust?: undefined;
|
|
4949
|
+
FluidVaultT1Borrow?: undefined;
|
|
4950
|
+
FluidVaultT1Payback?: undefined;
|
|
4951
|
+
FluidVaultT1Withdraw?: undefined;
|
|
4952
|
+
FluidVaultT1Supply?: undefined;
|
|
4953
|
+
FluidView?: undefined;
|
|
4954
|
+
FluidClaim?: undefined;
|
|
4955
|
+
FluidDexOpen?: undefined;
|
|
4956
|
+
FluidDexSupply?: undefined;
|
|
4957
|
+
FluidDexBorrow?: undefined;
|
|
4958
|
+
FluidDexPayback?: undefined;
|
|
4959
|
+
FluidDexWithdraw?: undefined;
|
|
4960
|
+
PendleTokenRedeem?: undefined;
|
|
4961
|
+
UmbrellaClaimRewards?: undefined;
|
|
4962
|
+
UmbrellaStake?: undefined;
|
|
4963
|
+
UmbrellaUnstake?: undefined;
|
|
4964
|
+
MorphoBlueView?: undefined;
|
|
4965
|
+
} | {
|
|
4966
|
+
DFSSell: string;
|
|
4967
|
+
DFSSellNoFee: string;
|
|
4968
|
+
WrapEth: string;
|
|
4969
|
+
UnwrapEth: string;
|
|
4970
|
+
SendToken: string;
|
|
4971
|
+
SendTokens: string;
|
|
4972
|
+
PullToken: string;
|
|
4973
|
+
SumInputs: string;
|
|
4974
|
+
SubInputs: string;
|
|
3749
4975
|
SendTokenAndUnwrap: string;
|
|
4976
|
+
ApproveToken: string;
|
|
3750
4977
|
ToggleSub: string;
|
|
3751
4978
|
CreateSub: string;
|
|
3752
4979
|
TokenBalance: string;
|
|
@@ -3754,6 +4981,8 @@ declare const _default: {
|
|
|
3754
4981
|
ChangeProxyOwner: string;
|
|
3755
4982
|
PermitToken: string;
|
|
3756
4983
|
HandleAuth: string;
|
|
4984
|
+
UpdateSub: string;
|
|
4985
|
+
TransferNFT: string;
|
|
3757
4986
|
MerklClaim: string;
|
|
3758
4987
|
AaveV3ATokenPayback: string;
|
|
3759
4988
|
AaveV3Borrow: string;
|
|
@@ -3765,12 +4994,18 @@ declare const _default: {
|
|
|
3765
4994
|
AaveV3Withdraw: string;
|
|
3766
4995
|
AaveV3ClaimRewards: string;
|
|
3767
4996
|
AaveV3DelegateWithSig: string;
|
|
3768
|
-
|
|
4997
|
+
CompV3Allow: string;
|
|
4998
|
+
CompV3Borrow: string;
|
|
4999
|
+
CompV3Claim: string;
|
|
5000
|
+
CompV3Payback: string;
|
|
5001
|
+
CompV3Supply: string;
|
|
5002
|
+
CompV3Transfer: string;
|
|
5003
|
+
CompV3Withdraw: string;
|
|
3769
5004
|
FLAaveV3NoFee: string;
|
|
3770
5005
|
FLAaveV3: string;
|
|
3771
5006
|
FLBalancer: string;
|
|
5007
|
+
FLUniV3: string;
|
|
3772
5008
|
FLAction: string;
|
|
3773
|
-
AaveV3RatioTrigger: string;
|
|
3774
5009
|
GasFeeTakerL2: string;
|
|
3775
5010
|
AaveV3RatioCheck: string;
|
|
3776
5011
|
UniCollectV3: string;
|
|
@@ -3778,23 +5013,42 @@ declare const _default: {
|
|
|
3778
5013
|
UniSupplyV3: string;
|
|
3779
5014
|
UniWithdrawV3: string;
|
|
3780
5015
|
UniCreatePoolV3: string;
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
5016
|
+
LlamaLendCreate: string;
|
|
5017
|
+
LlamaLendSupply: string;
|
|
5018
|
+
LlamaLendBorrow: string;
|
|
5019
|
+
LlamaLendWithdraw: string;
|
|
5020
|
+
LlamaLendPayback: string;
|
|
5021
|
+
LlamaLendSelfLiquidate: string;
|
|
5022
|
+
LlamaLendGetDebt: string;
|
|
5023
|
+
LlamaLendBoost: string;
|
|
5024
|
+
LlamaLendRepay: string;
|
|
5025
|
+
LlamaLendLevCreate: string;
|
|
5026
|
+
LlamaLendSelfLiquidateWithColl: string;
|
|
5027
|
+
FluidVaultT1Open: string;
|
|
5028
|
+
FluidVaultT1Adjust: string;
|
|
5029
|
+
FluidVaultT1Borrow: string;
|
|
5030
|
+
FluidVaultT1Payback: string;
|
|
5031
|
+
FluidVaultT1Withdraw: string;
|
|
5032
|
+
FluidVaultT1Supply: string;
|
|
5033
|
+
FluidView: string;
|
|
5034
|
+
FluidDexOpen: string;
|
|
5035
|
+
FluidDexSupply: string;
|
|
5036
|
+
FluidDexBorrow: string;
|
|
5037
|
+
FluidDexPayback: string;
|
|
5038
|
+
FluidDexWithdraw: string;
|
|
3788
5039
|
SFApproveTokens: string;
|
|
3789
5040
|
AutomationV2Unsub?: undefined;
|
|
3790
|
-
UpdateSub?: undefined;
|
|
3791
|
-
TransferNFT?: undefined;
|
|
3792
5041
|
SDaiWrap?: undefined;
|
|
3793
5042
|
SDaiUnwrap?: undefined;
|
|
3794
5043
|
StarknetClaim?: undefined;
|
|
3795
5044
|
SkyStake?: undefined;
|
|
3796
5045
|
SkyUnstake?: undefined;
|
|
3797
5046
|
SkyClaimRewards?: undefined;
|
|
5047
|
+
SkyStakingEngineOpen?: undefined;
|
|
5048
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
5049
|
+
SkyStakingEngineStake?: undefined;
|
|
5050
|
+
SkyStakingEngineUnstake?: undefined;
|
|
5051
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
3798
5052
|
McdGenerate?: undefined;
|
|
3799
5053
|
McdGive?: undefined;
|
|
3800
5054
|
McdMerge?: undefined;
|
|
@@ -3866,7 +5120,6 @@ declare const _default: {
|
|
|
3866
5120
|
FLDyDx?: undefined;
|
|
3867
5121
|
FLMaker?: undefined;
|
|
3868
5122
|
FLSpark?: undefined;
|
|
3869
|
-
FLUniV3?: undefined;
|
|
3870
5123
|
FLGho?: undefined;
|
|
3871
5124
|
FLMorphoBlue?: undefined;
|
|
3872
5125
|
UniSupply?: undefined;
|
|
@@ -3970,17 +5223,6 @@ declare const _default: {
|
|
|
3970
5223
|
MorphoTokenWrap?: undefined;
|
|
3971
5224
|
MorphoBlueReallocateLiquidity?: undefined;
|
|
3972
5225
|
MorphoBlueClaim?: undefined;
|
|
3973
|
-
LlamaLendCreate?: undefined;
|
|
3974
|
-
LlamaLendSupply?: undefined;
|
|
3975
|
-
LlamaLendBorrow?: undefined;
|
|
3976
|
-
LlamaLendWithdraw?: undefined;
|
|
3977
|
-
LlamaLendPayback?: undefined;
|
|
3978
|
-
LlamaLendSelfLiquidate?: undefined;
|
|
3979
|
-
LlamaLendGetDebt?: undefined;
|
|
3980
|
-
LlamaLendBoost?: undefined;
|
|
3981
|
-
LlamaLendRepay?: undefined;
|
|
3982
|
-
LlamaLendLevCreate?: undefined;
|
|
3983
|
-
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
3984
5226
|
EulerV2Supply?: undefined;
|
|
3985
5227
|
EulerV2Withdraw?: undefined;
|
|
3986
5228
|
EulerV2Borrow?: undefined;
|
|
@@ -3992,23 +5234,13 @@ declare const _default: {
|
|
|
3992
5234
|
EtherFiWrap?: undefined;
|
|
3993
5235
|
EtherFiUnwrap?: undefined;
|
|
3994
5236
|
KingClaim?: undefined;
|
|
3995
|
-
FluidVaultT1Open?: undefined;
|
|
3996
|
-
FluidVaultT1Adjust?: undefined;
|
|
3997
|
-
FluidVaultT1Borrow?: undefined;
|
|
3998
|
-
FluidVaultT1Payback?: undefined;
|
|
3999
|
-
FluidVaultT1Withdraw?: undefined;
|
|
4000
|
-
FluidVaultT1Supply?: undefined;
|
|
4001
|
-
FluidView?: undefined;
|
|
4002
5237
|
FluidClaim?: undefined;
|
|
4003
|
-
FluidDexOpen?: undefined;
|
|
4004
|
-
FluidDexSupply?: undefined;
|
|
4005
|
-
FluidDexBorrow?: undefined;
|
|
4006
|
-
FluidDexPayback?: undefined;
|
|
4007
|
-
FluidDexWithdraw?: undefined;
|
|
4008
5238
|
PendleTokenRedeem?: undefined;
|
|
4009
5239
|
UmbrellaClaimRewards?: undefined;
|
|
4010
5240
|
UmbrellaStake?: undefined;
|
|
4011
5241
|
UmbrellaUnstake?: undefined;
|
|
5242
|
+
AaveV3DelegateCredit?: undefined;
|
|
5243
|
+
AaveV3RatioTrigger?: undefined;
|
|
4012
5244
|
MorphoBlueView?: undefined;
|
|
4013
5245
|
} | {
|
|
4014
5246
|
DFSSell: string;
|
|
@@ -4018,29 +5250,34 @@ declare const _default: {
|
|
|
4018
5250
|
SendToken: string;
|
|
4019
5251
|
SendTokens: string;
|
|
4020
5252
|
PullToken: string;
|
|
5253
|
+
ApproveToken: string;
|
|
4021
5254
|
SumInputs: string;
|
|
4022
5255
|
SubInputs: string;
|
|
4023
|
-
SendTokenAndUnwrap: string;
|
|
4024
|
-
ApproveToken: string;
|
|
4025
|
-
ToggleSub: string;
|
|
4026
|
-
CreateSub: string;
|
|
4027
5256
|
TokenBalance: string;
|
|
4028
|
-
TokenizedVaultAdapter: string;
|
|
4029
5257
|
ChangeProxyOwner: string;
|
|
4030
5258
|
PermitToken: string;
|
|
4031
5259
|
HandleAuth: string;
|
|
5260
|
+
ToggleSub: string;
|
|
5261
|
+
CreateSub: string;
|
|
4032
5262
|
UpdateSub: string;
|
|
4033
|
-
TransferNFT: string;
|
|
4034
5263
|
MerklClaim: string;
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
5264
|
+
TransferNFT: string;
|
|
5265
|
+
GasFeeTakerL2: string;
|
|
5266
|
+
FLAaveV3: string;
|
|
5267
|
+
FLBalancer: string;
|
|
5268
|
+
FLUniV3: string;
|
|
5269
|
+
FLAction: string;
|
|
5270
|
+
FLMorphoBlue: string;
|
|
4042
5271
|
AaveV3Withdraw: string;
|
|
5272
|
+
AaveV3SwapBorrowRateMode: string;
|
|
5273
|
+
AaveV3Supply: string;
|
|
5274
|
+
AaveV3SetEMode: string;
|
|
5275
|
+
AaveV3Payback: string;
|
|
5276
|
+
AaveV3CollateralSwitch: string;
|
|
4043
5277
|
AaveV3ClaimRewards: string;
|
|
5278
|
+
AaveV3Borrow: string;
|
|
5279
|
+
AaveV3ATokenPayback: string;
|
|
5280
|
+
AaveV3View: string;
|
|
4044
5281
|
AaveV3DelegateWithSig: string;
|
|
4045
5282
|
CompV3Allow: string;
|
|
4046
5283
|
CompV3Borrow: string;
|
|
@@ -4049,29 +5286,17 @@ declare const _default: {
|
|
|
4049
5286
|
CompV3Supply: string;
|
|
4050
5287
|
CompV3Transfer: string;
|
|
4051
5288
|
CompV3Withdraw: string;
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
UniCreatePoolV3: string;
|
|
4064
|
-
LlamaLendCreate: string;
|
|
4065
|
-
LlamaLendSupply: string;
|
|
4066
|
-
LlamaLendBorrow: string;
|
|
4067
|
-
LlamaLendWithdraw: string;
|
|
4068
|
-
LlamaLendPayback: string;
|
|
4069
|
-
LlamaLendSelfLiquidate: string;
|
|
4070
|
-
LlamaLendGetDebt: string;
|
|
4071
|
-
LlamaLendBoost: string;
|
|
4072
|
-
LlamaLendRepay: string;
|
|
4073
|
-
LlamaLendLevCreate: string;
|
|
4074
|
-
LlamaLendSelfLiquidateWithColl: string;
|
|
5289
|
+
MorphoBlueSupply: string;
|
|
5290
|
+
MorphoBlueSupplyCollateral: string;
|
|
5291
|
+
MorphoBlueWithdraw: string;
|
|
5292
|
+
MorphoBlueWithdrawCollateral: string;
|
|
5293
|
+
MorphoBlueBorrow: string;
|
|
5294
|
+
MorphoBluePayback: string;
|
|
5295
|
+
MorphoBlueSetAuth: string;
|
|
5296
|
+
MorphoBlueSetAuthWithSig: string;
|
|
5297
|
+
MorphoBlueView: string;
|
|
5298
|
+
MorphoBlueReallocateLiquidity: string;
|
|
5299
|
+
MorphoBlueClaim: string;
|
|
4075
5300
|
FluidVaultT1Open: string;
|
|
4076
5301
|
FluidVaultT1Adjust: string;
|
|
4077
5302
|
FluidVaultT1Borrow: string;
|
|
@@ -4079,19 +5304,21 @@ declare const _default: {
|
|
|
4079
5304
|
FluidVaultT1Withdraw: string;
|
|
4080
5305
|
FluidVaultT1Supply: string;
|
|
4081
5306
|
FluidView: string;
|
|
4082
|
-
|
|
4083
|
-
FluidDexSupply: string;
|
|
4084
|
-
FluidDexBorrow: string;
|
|
4085
|
-
FluidDexPayback: string;
|
|
4086
|
-
FluidDexWithdraw: string;
|
|
5307
|
+
TokenizedVaultAdapter: string;
|
|
4087
5308
|
SFApproveTokens: string;
|
|
4088
5309
|
AutomationV2Unsub?: undefined;
|
|
5310
|
+
SendTokenAndUnwrap?: undefined;
|
|
4089
5311
|
SDaiWrap?: undefined;
|
|
4090
5312
|
SDaiUnwrap?: undefined;
|
|
4091
5313
|
StarknetClaim?: undefined;
|
|
4092
5314
|
SkyStake?: undefined;
|
|
4093
5315
|
SkyUnstake?: undefined;
|
|
4094
5316
|
SkyClaimRewards?: undefined;
|
|
5317
|
+
SkyStakingEngineOpen?: undefined;
|
|
5318
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
5319
|
+
SkyStakingEngineStake?: undefined;
|
|
5320
|
+
SkyStakingEngineUnstake?: undefined;
|
|
5321
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
4095
5322
|
McdGenerate?: undefined;
|
|
4096
5323
|
McdGive?: undefined;
|
|
4097
5324
|
McdMerge?: undefined;
|
|
@@ -4120,7 +5347,6 @@ declare const _default: {
|
|
|
4120
5347
|
AaveUnstake?: undefined;
|
|
4121
5348
|
AaveClaimAAVE?: undefined;
|
|
4122
5349
|
AaveClaimStkAave?: undefined;
|
|
4123
|
-
AaveV3View?: undefined;
|
|
4124
5350
|
GhoClaimAAVE?: undefined;
|
|
4125
5351
|
GhoUnstake?: undefined;
|
|
4126
5352
|
GhoStake?: undefined;
|
|
@@ -4159,14 +5385,19 @@ declare const _default: {
|
|
|
4159
5385
|
CompGetDebt?: undefined;
|
|
4160
5386
|
CompCollateralSwitch?: undefined;
|
|
4161
5387
|
FLAaveV2?: undefined;
|
|
5388
|
+
FLAaveV3NoFee?: undefined;
|
|
4162
5389
|
FLAaveV3CarryDebt?: undefined;
|
|
4163
5390
|
FLDyDx?: undefined;
|
|
4164
5391
|
FLMaker?: undefined;
|
|
4165
5392
|
FLSpark?: undefined;
|
|
4166
5393
|
FLGho?: undefined;
|
|
4167
|
-
FLMorphoBlue?: undefined;
|
|
4168
5394
|
UniSupply?: undefined;
|
|
4169
5395
|
UniWithdraw?: undefined;
|
|
5396
|
+
UniCollectV3?: undefined;
|
|
5397
|
+
UniMintV3?: undefined;
|
|
5398
|
+
UniSupplyV3?: undefined;
|
|
5399
|
+
UniWithdrawV3?: undefined;
|
|
5400
|
+
UniCreatePoolV3?: undefined;
|
|
4170
5401
|
DyDxWithdraw?: undefined;
|
|
4171
5402
|
YearnSupply?: undefined;
|
|
4172
5403
|
YearnWithdraw?: undefined;
|
|
@@ -4255,17 +5486,18 @@ declare const _default: {
|
|
|
4255
5486
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
4256
5487
|
CurveUsdLevCreateTransient?: undefined;
|
|
4257
5488
|
CurveUsdRepayTransient?: undefined;
|
|
4258
|
-
MorphoBlueSupply?: undefined;
|
|
4259
|
-
MorphoBlueSupplyCollateral?: undefined;
|
|
4260
|
-
MorphoBlueWithdraw?: undefined;
|
|
4261
|
-
MorphoBlueWithdrawCollateral?: undefined;
|
|
4262
|
-
MorphoBlueBorrow?: undefined;
|
|
4263
|
-
MorphoBluePayback?: undefined;
|
|
4264
|
-
MorphoBlueSetAuth?: undefined;
|
|
4265
|
-
MorphoBlueSetAuthWithSig?: undefined;
|
|
4266
5489
|
MorphoTokenWrap?: undefined;
|
|
4267
|
-
|
|
4268
|
-
|
|
5490
|
+
LlamaLendCreate?: undefined;
|
|
5491
|
+
LlamaLendSupply?: undefined;
|
|
5492
|
+
LlamaLendBorrow?: undefined;
|
|
5493
|
+
LlamaLendWithdraw?: undefined;
|
|
5494
|
+
LlamaLendPayback?: undefined;
|
|
5495
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
5496
|
+
LlamaLendGetDebt?: undefined;
|
|
5497
|
+
LlamaLendBoost?: undefined;
|
|
5498
|
+
LlamaLendRepay?: undefined;
|
|
5499
|
+
LlamaLendLevCreate?: undefined;
|
|
5500
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
4269
5501
|
EulerV2Supply?: undefined;
|
|
4270
5502
|
EulerV2Withdraw?: undefined;
|
|
4271
5503
|
EulerV2Borrow?: undefined;
|
|
@@ -4278,13 +5510,18 @@ declare const _default: {
|
|
|
4278
5510
|
EtherFiUnwrap?: undefined;
|
|
4279
5511
|
KingClaim?: undefined;
|
|
4280
5512
|
FluidClaim?: undefined;
|
|
5513
|
+
FluidDexOpen?: undefined;
|
|
5514
|
+
FluidDexSupply?: undefined;
|
|
5515
|
+
FluidDexBorrow?: undefined;
|
|
5516
|
+
FluidDexPayback?: undefined;
|
|
5517
|
+
FluidDexWithdraw?: undefined;
|
|
4281
5518
|
PendleTokenRedeem?: undefined;
|
|
4282
5519
|
UmbrellaClaimRewards?: undefined;
|
|
4283
5520
|
UmbrellaStake?: undefined;
|
|
4284
5521
|
UmbrellaUnstake?: undefined;
|
|
4285
5522
|
AaveV3DelegateCredit?: undefined;
|
|
4286
5523
|
AaveV3RatioTrigger?: undefined;
|
|
4287
|
-
|
|
5524
|
+
AaveV3RatioCheck?: undefined;
|
|
4288
5525
|
} | {
|
|
4289
5526
|
DFSSell: string;
|
|
4290
5527
|
DFSSellNoFee: string;
|
|
@@ -4292,27 +5529,19 @@ declare const _default: {
|
|
|
4292
5529
|
UnwrapEth: string;
|
|
4293
5530
|
SendToken: string;
|
|
4294
5531
|
SendTokens: string;
|
|
5532
|
+
SendTokenAndUnwrap: string;
|
|
4295
5533
|
PullToken: string;
|
|
4296
5534
|
ApproveToken: string;
|
|
4297
5535
|
SumInputs: string;
|
|
4298
5536
|
SubInputs: string;
|
|
4299
5537
|
TokenBalance: string;
|
|
4300
|
-
ChangeProxyOwner: string;
|
|
4301
5538
|
PermitToken: string;
|
|
4302
|
-
HandleAuth: string;
|
|
4303
|
-
ToggleSub: string;
|
|
4304
|
-
CreateSub: string;
|
|
4305
|
-
UpdateSub: string;
|
|
4306
5539
|
MerklClaim: string;
|
|
4307
5540
|
TransferNFT: string;
|
|
4308
|
-
|
|
4309
|
-
FLAaveV3: string;
|
|
4310
|
-
FLBalancer: string;
|
|
4311
|
-
FLUniV3: string;
|
|
5541
|
+
TokenizedVaultAdapter: string;
|
|
4312
5542
|
FLAction: string;
|
|
4313
|
-
|
|
5543
|
+
FLAaveV3: string;
|
|
4314
5544
|
AaveV3Withdraw: string;
|
|
4315
|
-
AaveV3SwapBorrowRateMode: string;
|
|
4316
5545
|
AaveV3Supply: string;
|
|
4317
5546
|
AaveV3SetEMode: string;
|
|
4318
5547
|
AaveV3Payback: string;
|
|
@@ -4322,41 +5551,24 @@ declare const _default: {
|
|
|
4322
5551
|
AaveV3ATokenPayback: string;
|
|
4323
5552
|
AaveV3View: string;
|
|
4324
5553
|
AaveV3DelegateWithSig: string;
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
CompV3Claim: string;
|
|
4328
|
-
CompV3Payback: string;
|
|
4329
|
-
CompV3Supply: string;
|
|
4330
|
-
CompV3Transfer: string;
|
|
4331
|
-
CompV3Withdraw: string;
|
|
4332
|
-
MorphoBlueSupply: string;
|
|
4333
|
-
MorphoBlueSupplyCollateral: string;
|
|
4334
|
-
MorphoBlueWithdraw: string;
|
|
4335
|
-
MorphoBlueWithdrawCollateral: string;
|
|
4336
|
-
MorphoBlueBorrow: string;
|
|
4337
|
-
MorphoBluePayback: string;
|
|
4338
|
-
MorphoBlueSetAuth: string;
|
|
4339
|
-
MorphoBlueSetAuthWithSig: string;
|
|
4340
|
-
MorphoBlueView: string;
|
|
4341
|
-
MorphoBlueReallocateLiquidity: string;
|
|
4342
|
-
MorphoBlueClaim: string;
|
|
4343
|
-
FluidVaultT1Open: string;
|
|
4344
|
-
FluidVaultT1Adjust: string;
|
|
4345
|
-
FluidVaultT1Borrow: string;
|
|
4346
|
-
FluidVaultT1Payback: string;
|
|
4347
|
-
FluidVaultT1Withdraw: string;
|
|
4348
|
-
FluidVaultT1Supply: string;
|
|
4349
|
-
FluidView: string;
|
|
4350
|
-
TokenizedVaultAdapter: string;
|
|
4351
|
-
SFApproveTokens: string;
|
|
5554
|
+
AaveV3DelegateCredit: string;
|
|
5555
|
+
ChangeProxyOwner?: undefined;
|
|
4352
5556
|
AutomationV2Unsub?: undefined;
|
|
4353
|
-
|
|
5557
|
+
ToggleSub?: undefined;
|
|
5558
|
+
UpdateSub?: undefined;
|
|
5559
|
+
CreateSub?: undefined;
|
|
4354
5560
|
SDaiWrap?: undefined;
|
|
4355
5561
|
SDaiUnwrap?: undefined;
|
|
4356
5562
|
StarknetClaim?: undefined;
|
|
5563
|
+
HandleAuth?: undefined;
|
|
4357
5564
|
SkyStake?: undefined;
|
|
4358
5565
|
SkyUnstake?: undefined;
|
|
4359
5566
|
SkyClaimRewards?: undefined;
|
|
5567
|
+
SkyStakingEngineOpen?: undefined;
|
|
5568
|
+
SkyStakingEngineSelectFarm?: undefined;
|
|
5569
|
+
SkyStakingEngineStake?: undefined;
|
|
5570
|
+
SkyStakingEngineUnstake?: undefined;
|
|
5571
|
+
SkyStakingEngineClaimRewards?: undefined;
|
|
4360
5572
|
McdGenerate?: undefined;
|
|
4361
5573
|
McdGive?: undefined;
|
|
4362
5574
|
McdMerge?: undefined;
|
|
@@ -4385,6 +5597,7 @@ declare const _default: {
|
|
|
4385
5597
|
AaveUnstake?: undefined;
|
|
4386
5598
|
AaveClaimAAVE?: undefined;
|
|
4387
5599
|
AaveClaimStkAave?: undefined;
|
|
5600
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
4388
5601
|
GhoClaimAAVE?: undefined;
|
|
4389
5602
|
GhoUnstake?: undefined;
|
|
4390
5603
|
GhoStake?: undefined;
|
|
@@ -4427,8 +5640,11 @@ declare const _default: {
|
|
|
4427
5640
|
FLAaveV3CarryDebt?: undefined;
|
|
4428
5641
|
FLDyDx?: undefined;
|
|
4429
5642
|
FLMaker?: undefined;
|
|
5643
|
+
FLBalancer?: undefined;
|
|
4430
5644
|
FLSpark?: undefined;
|
|
5645
|
+
FLUniV3?: undefined;
|
|
4431
5646
|
FLGho?: undefined;
|
|
5647
|
+
FLMorphoBlue?: undefined;
|
|
4432
5648
|
UniSupply?: undefined;
|
|
4433
5649
|
UniWithdraw?: undefined;
|
|
4434
5650
|
UniCollectV3?: undefined;
|
|
@@ -4506,6 +5722,13 @@ declare const _default: {
|
|
|
4506
5722
|
CBChickenOut?: undefined;
|
|
4507
5723
|
CBCreateRebondSub?: undefined;
|
|
4508
5724
|
FetchBondId?: undefined;
|
|
5725
|
+
CompV3Allow?: undefined;
|
|
5726
|
+
CompV3Borrow?: undefined;
|
|
5727
|
+
CompV3Claim?: undefined;
|
|
5728
|
+
CompV3Payback?: undefined;
|
|
5729
|
+
CompV3Supply?: undefined;
|
|
5730
|
+
CompV3Transfer?: undefined;
|
|
5731
|
+
CompV3Withdraw?: undefined;
|
|
4509
5732
|
CurveUsdBorrow?: undefined;
|
|
4510
5733
|
CurveUsdCreate?: undefined;
|
|
4511
5734
|
CurveUsdPayback?: undefined;
|
|
@@ -4524,7 +5747,17 @@ declare const _default: {
|
|
|
4524
5747
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
4525
5748
|
CurveUsdLevCreateTransient?: undefined;
|
|
4526
5749
|
CurveUsdRepayTransient?: undefined;
|
|
5750
|
+
MorphoBlueSupply?: undefined;
|
|
5751
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
5752
|
+
MorphoBlueWithdraw?: undefined;
|
|
5753
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
5754
|
+
MorphoBlueBorrow?: undefined;
|
|
5755
|
+
MorphoBluePayback?: undefined;
|
|
5756
|
+
MorphoBlueSetAuth?: undefined;
|
|
5757
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
4527
5758
|
MorphoTokenWrap?: undefined;
|
|
5759
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
5760
|
+
MorphoBlueClaim?: undefined;
|
|
4528
5761
|
LlamaLendCreate?: undefined;
|
|
4529
5762
|
LlamaLendSupply?: undefined;
|
|
4530
5763
|
LlamaLendBorrow?: undefined;
|
|
@@ -4547,6 +5780,13 @@ declare const _default: {
|
|
|
4547
5780
|
EtherFiWrap?: undefined;
|
|
4548
5781
|
EtherFiUnwrap?: undefined;
|
|
4549
5782
|
KingClaim?: undefined;
|
|
5783
|
+
FluidVaultT1Open?: undefined;
|
|
5784
|
+
FluidVaultT1Adjust?: undefined;
|
|
5785
|
+
FluidVaultT1Borrow?: undefined;
|
|
5786
|
+
FluidVaultT1Payback?: undefined;
|
|
5787
|
+
FluidVaultT1Withdraw?: undefined;
|
|
5788
|
+
FluidVaultT1Supply?: undefined;
|
|
5789
|
+
FluidView?: undefined;
|
|
4550
5790
|
FluidClaim?: undefined;
|
|
4551
5791
|
FluidDexOpen?: undefined;
|
|
4552
5792
|
FluidDexSupply?: undefined;
|
|
@@ -4557,9 +5797,11 @@ declare const _default: {
|
|
|
4557
5797
|
UmbrellaClaimRewards?: undefined;
|
|
4558
5798
|
UmbrellaStake?: undefined;
|
|
4559
5799
|
UmbrellaUnstake?: undefined;
|
|
4560
|
-
|
|
5800
|
+
SFApproveTokens?: undefined;
|
|
4561
5801
|
AaveV3RatioTrigger?: undefined;
|
|
5802
|
+
GasFeeTakerL2?: undefined;
|
|
4562
5803
|
AaveV3RatioCheck?: undefined;
|
|
5804
|
+
MorphoBlueView?: undefined;
|
|
4563
5805
|
};
|
|
4564
5806
|
};
|
|
4565
5807
|
otherAddresses: (chainId?: null) => {
|
|
@@ -4625,6 +5867,27 @@ declare const _default: {
|
|
|
4625
5867
|
GHO?: undefined;
|
|
4626
5868
|
LUSD?: undefined;
|
|
4627
5869
|
BLUSD?: undefined;
|
|
5870
|
+
} | {
|
|
5871
|
+
RecipeExecutor: string;
|
|
5872
|
+
DFSRegistry: string;
|
|
5873
|
+
DSGuardFactory: string;
|
|
5874
|
+
AdminVault: string;
|
|
5875
|
+
DefisaverLogger: string;
|
|
5876
|
+
Empty: string;
|
|
5877
|
+
DFSProxyRegistry?: undefined;
|
|
5878
|
+
ProxyRegistry?: undefined;
|
|
5879
|
+
McdCdpManager?: undefined;
|
|
5880
|
+
BCdpManager?: undefined;
|
|
5881
|
+
AaveDefaultMarket?: undefined;
|
|
5882
|
+
UniswapV3PositionManager?: undefined;
|
|
5883
|
+
RaiWethUniV2LPToken?: undefined;
|
|
5884
|
+
BalancerToken?: undefined;
|
|
5885
|
+
CrvToken?: undefined;
|
|
5886
|
+
CvxToken?: undefined;
|
|
5887
|
+
DAI?: undefined;
|
|
5888
|
+
GHO?: undefined;
|
|
5889
|
+
LUSD?: undefined;
|
|
5890
|
+
BLUSD?: undefined;
|
|
4628
5891
|
};
|
|
4629
5892
|
otherAddressesAllChains: {
|
|
4630
5893
|
[x: number]: {
|
|
@@ -4690,6 +5953,27 @@ declare const _default: {
|
|
|
4690
5953
|
GHO?: undefined;
|
|
4691
5954
|
LUSD?: undefined;
|
|
4692
5955
|
BLUSD?: undefined;
|
|
5956
|
+
} | {
|
|
5957
|
+
RecipeExecutor: string;
|
|
5958
|
+
DFSRegistry: string;
|
|
5959
|
+
DSGuardFactory: string;
|
|
5960
|
+
AdminVault: string;
|
|
5961
|
+
DefisaverLogger: string;
|
|
5962
|
+
Empty: string;
|
|
5963
|
+
DFSProxyRegistry?: undefined;
|
|
5964
|
+
ProxyRegistry?: undefined;
|
|
5965
|
+
McdCdpManager?: undefined;
|
|
5966
|
+
BCdpManager?: undefined;
|
|
5967
|
+
AaveDefaultMarket?: undefined;
|
|
5968
|
+
UniswapV3PositionManager?: undefined;
|
|
5969
|
+
RaiWethUniV2LPToken?: undefined;
|
|
5970
|
+
BalancerToken?: undefined;
|
|
5971
|
+
CrvToken?: undefined;
|
|
5972
|
+
CvxToken?: undefined;
|
|
5973
|
+
DAI?: undefined;
|
|
5974
|
+
GHO?: undefined;
|
|
5975
|
+
LUSD?: undefined;
|
|
5976
|
+
BLUSD?: undefined;
|
|
4693
5977
|
};
|
|
4694
5978
|
};
|
|
4695
5979
|
getAddr: (name: string, chainId?: number) => string;
|