@defisaver/sdk 1.2.36 → 1.3.1-dev-linea-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/src/addresses.d.ts +297 -1
- package/esm/src/addresses.js +41 -0
- package/esm/src/config.js +8 -0
- package/esm/src/index.d.ts +1832 -648
- package/esm/src/triggers/CompV3PriceRangeTrigger.d.ts +10 -0
- package/esm/src/triggers/CompV3PriceRangeTrigger.js +12 -0
- package/esm/src/triggers/CompV3PriceTrigger.d.ts +10 -0
- package/esm/src/triggers/CompV3PriceTrigger.js +12 -0
- package/esm/src/triggers/index.d.ts +2 -0
- package/esm/src/triggers/index.js +2 -0
- package/esm/src/types.d.ts +1 -0
- package/package.json +2 -2
- package/src/actions/checkers/index.ts +1 -1
- package/src/addresses.ts +43 -0
- package/src/config.ts +8 -0
- package/src/triggers/CompV3PriceRangeTrigger.ts +19 -0
- package/src/triggers/CompV3PriceTrigger.ts +25 -0
- package/src/triggers/index.ts +2 -0
- package/src/types.ts +1 -0
- package/umd/index.js +118 -11
package/esm/src/index.d.ts
CHANGED
|
@@ -299,6 +299,7 @@ declare const actionAddressesAllChains: {
|
|
|
299
299
|
ApproveToken: string;
|
|
300
300
|
SendTokenAndUnwrap: string;
|
|
301
301
|
ToggleSub: string;
|
|
302
|
+
CreateSub: string;
|
|
302
303
|
TokenBalance: string;
|
|
303
304
|
TokenizedVaultAdapter: string;
|
|
304
305
|
ChangeProxyOwner: string;
|
|
@@ -339,7 +340,6 @@ declare const actionAddressesAllChains: {
|
|
|
339
340
|
AutomationV2Unsub?: undefined;
|
|
340
341
|
UpdateSub?: undefined;
|
|
341
342
|
TransferNFT?: undefined;
|
|
342
|
-
CreateSub?: undefined;
|
|
343
343
|
SDaiWrap?: undefined;
|
|
344
344
|
SDaiUnwrap?: undefined;
|
|
345
345
|
StarknetClaim?: undefined;
|
|
@@ -1111,260 +1111,535 @@ declare const actionAddressesAllChains: {
|
|
|
1111
1111
|
AaveV3DelegateCredit?: undefined;
|
|
1112
1112
|
AaveV3RatioTrigger?: undefined;
|
|
1113
1113
|
AaveV3RatioCheck?: undefined;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1114
|
+
} | {
|
|
1115
|
+
DFSSell: string;
|
|
1116
|
+
DFSSellNoFee: string;
|
|
1117
|
+
WrapEth: string;
|
|
1118
|
+
UnwrapEth: string;
|
|
1119
|
+
SendToken: string;
|
|
1120
|
+
SendTokens: string;
|
|
1121
|
+
SendTokenAndUnwrap: string;
|
|
1122
|
+
PullToken: string;
|
|
1123
|
+
ApproveToken: string;
|
|
1124
|
+
SumInputs: string;
|
|
1125
|
+
SubInputs: string;
|
|
1126
|
+
TokenBalance: string;
|
|
1127
|
+
PermitToken: string;
|
|
1128
|
+
MerklClaim: string;
|
|
1129
|
+
TransferNFT: string;
|
|
1130
|
+
FLAction: string;
|
|
1131
|
+
AaveV3Withdraw: string;
|
|
1132
|
+
AaveV3Supply: string;
|
|
1133
|
+
AaveV3SetEMode: string;
|
|
1134
|
+
AaveV3Payback: string;
|
|
1135
|
+
AaveV3CollateralSwitch: string;
|
|
1136
|
+
AaveV3ClaimRewards: string;
|
|
1137
|
+
AaveV3Borrow: string;
|
|
1138
|
+
AaveV3ATokenPayback: string;
|
|
1139
|
+
AaveV3View: string;
|
|
1140
|
+
AaveV3DelegateWithSig: string;
|
|
1141
|
+
AaveV3DelegateCredit: string;
|
|
1142
|
+
ChangeProxyOwner?: undefined;
|
|
1143
|
+
AutomationV2Unsub?: undefined;
|
|
1144
|
+
ToggleSub?: undefined;
|
|
1145
|
+
UpdateSub?: undefined;
|
|
1146
|
+
CreateSub?: undefined;
|
|
1147
|
+
SDaiWrap?: undefined;
|
|
1148
|
+
SDaiUnwrap?: undefined;
|
|
1149
|
+
TokenizedVaultAdapter?: undefined;
|
|
1150
|
+
StarknetClaim?: undefined;
|
|
1151
|
+
HandleAuth?: undefined;
|
|
1152
|
+
SkyStake?: undefined;
|
|
1153
|
+
SkyUnstake?: undefined;
|
|
1154
|
+
SkyClaimRewards?: undefined;
|
|
1155
|
+
McdGenerate?: undefined;
|
|
1156
|
+
McdGive?: undefined;
|
|
1157
|
+
McdMerge?: undefined;
|
|
1158
|
+
McdOpen?: undefined;
|
|
1159
|
+
McdPayback?: undefined;
|
|
1160
|
+
McdSupply?: undefined;
|
|
1161
|
+
McdWithdraw?: undefined;
|
|
1162
|
+
McdClaim?: undefined;
|
|
1163
|
+
McdDsrDeposit?: undefined;
|
|
1164
|
+
McdDsrWithdraw?: undefined;
|
|
1165
|
+
McdTokenConverter?: undefined;
|
|
1166
|
+
ReflexerSupply?: undefined;
|
|
1167
|
+
ReflexerWithdraw?: undefined;
|
|
1168
|
+
ReflexerPayback?: undefined;
|
|
1169
|
+
ReflexerGenerate?: undefined;
|
|
1170
|
+
ReflexerOpen?: undefined;
|
|
1171
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
1172
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
1173
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
1174
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
1175
|
+
AaveBorrow?: undefined;
|
|
1176
|
+
AavePayback?: undefined;
|
|
1177
|
+
AaveSupply?: undefined;
|
|
1178
|
+
AaveWithdraw?: undefined;
|
|
1179
|
+
AaveCollateralSwitch?: undefined;
|
|
1180
|
+
AaveUnstake?: undefined;
|
|
1181
|
+
AaveClaimAAVE?: undefined;
|
|
1182
|
+
AaveClaimStkAave?: undefined;
|
|
1183
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
1184
|
+
GhoClaimAAVE?: undefined;
|
|
1185
|
+
GhoUnstake?: undefined;
|
|
1186
|
+
GhoStake?: undefined;
|
|
1187
|
+
LSVWithdraw?: undefined;
|
|
1188
|
+
LSVBorrow?: undefined;
|
|
1189
|
+
LSVSupply?: undefined;
|
|
1190
|
+
LSVPayback?: undefined;
|
|
1191
|
+
LSVSell?: undefined;
|
|
1192
|
+
MorphoAaveV2Borrow?: undefined;
|
|
1193
|
+
MorphoAaveV2Payback?: undefined;
|
|
1194
|
+
MorphoAaveV2Supply?: undefined;
|
|
1195
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
1196
|
+
MorphoClaim?: undefined;
|
|
1197
|
+
MorphoAaveV3Borrow?: undefined;
|
|
1198
|
+
MorphoAaveV3Payback?: undefined;
|
|
1199
|
+
MorphoAaveV3Supply?: undefined;
|
|
1200
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
1201
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1202
|
+
SparkBorrow?: undefined;
|
|
1203
|
+
SparkClaimRewards?: undefined;
|
|
1204
|
+
SparkCollateralSwitch?: undefined;
|
|
1205
|
+
SparkPayback?: undefined;
|
|
1206
|
+
SparkSetEMode?: undefined;
|
|
1207
|
+
SparkSpTokenPayback?: undefined;
|
|
1208
|
+
SparkSupply?: undefined;
|
|
1209
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
1210
|
+
SparkWithdraw?: undefined;
|
|
1211
|
+
SparkDelegateCredit?: undefined;
|
|
1212
|
+
SparkDelegateWithSig?: undefined;
|
|
1213
|
+
SparkSPKClaim?: undefined;
|
|
1214
|
+
CompBorrow?: undefined;
|
|
1215
|
+
CompClaim?: undefined;
|
|
1216
|
+
CompPayback?: undefined;
|
|
1217
|
+
CompSupply?: undefined;
|
|
1218
|
+
CompWithdraw?: undefined;
|
|
1219
|
+
CompGetDebt?: undefined;
|
|
1220
|
+
CompCollateralSwitch?: undefined;
|
|
1221
|
+
FLAaveV2?: undefined;
|
|
1222
|
+
FLAaveV3NoFee?: undefined;
|
|
1223
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1224
|
+
FLAaveV3?: undefined;
|
|
1225
|
+
FLDyDx?: undefined;
|
|
1226
|
+
FLMaker?: undefined;
|
|
1227
|
+
FLBalancer?: undefined;
|
|
1228
|
+
FLSpark?: undefined;
|
|
1229
|
+
FLUniV3?: undefined;
|
|
1230
|
+
FLGho?: undefined;
|
|
1231
|
+
FLMorphoBlue?: undefined;
|
|
1232
|
+
UniSupply?: undefined;
|
|
1233
|
+
UniWithdraw?: undefined;
|
|
1234
|
+
UniCollectV3?: undefined;
|
|
1235
|
+
UniMintV3?: undefined;
|
|
1236
|
+
UniSupplyV3?: undefined;
|
|
1237
|
+
UniWithdrawV3?: undefined;
|
|
1238
|
+
UniCreatePoolV3?: undefined;
|
|
1239
|
+
DyDxWithdraw?: undefined;
|
|
1240
|
+
YearnSupply?: undefined;
|
|
1241
|
+
YearnWithdraw?: undefined;
|
|
1242
|
+
LiquityClose?: undefined;
|
|
1243
|
+
LiquityBorrow?: undefined;
|
|
1244
|
+
LiquityOpen?: undefined;
|
|
1245
|
+
LiquityPayback?: undefined;
|
|
1246
|
+
LiquityWithdraw?: undefined;
|
|
1247
|
+
LiquitySupply?: undefined;
|
|
1248
|
+
LiquitySPDeposit?: undefined;
|
|
1249
|
+
LiquitySPWithdraw?: undefined;
|
|
1250
|
+
LiquityStake?: undefined;
|
|
1251
|
+
LiquityUnstake?: undefined;
|
|
1252
|
+
LiquityEthGainToTrove?: undefined;
|
|
1253
|
+
LiquityClaim?: undefined;
|
|
1254
|
+
LiquityRedeem?: undefined;
|
|
1255
|
+
LiquityAdjust?: undefined;
|
|
1256
|
+
LiquityV2CloseLegacy?: undefined;
|
|
1257
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
1258
|
+
LiquityV2Open?: undefined;
|
|
1259
|
+
LiquityV2Close?: undefined;
|
|
1260
|
+
LiquityV2Supply?: undefined;
|
|
1261
|
+
LiquityV2Withdraw?: undefined;
|
|
1262
|
+
LiquityV2Borrow?: undefined;
|
|
1263
|
+
LiquityV2Payback?: undefined;
|
|
1264
|
+
LiquityV2Claim?: undefined;
|
|
1265
|
+
LiquityV2Adjust?: undefined;
|
|
1266
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
1267
|
+
LiquityV2SPDeposit?: undefined;
|
|
1268
|
+
LiquityV2SPWithdraw?: undefined;
|
|
1269
|
+
LiquityV2SPClaimColl?: undefined;
|
|
1270
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
1271
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
1272
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
1273
|
+
LidoStake?: undefined;
|
|
1274
|
+
LidoWrap?: undefined;
|
|
1275
|
+
LidoUnwrap?: undefined;
|
|
1276
|
+
InstPullTokens?: undefined;
|
|
1277
|
+
BalancerV2Supply?: undefined;
|
|
1278
|
+
BalancerV2Withdraw?: undefined;
|
|
1279
|
+
BalancerV2Claim?: undefined;
|
|
1280
|
+
GUniWithdraw?: undefined;
|
|
1281
|
+
GUniDeposit?: undefined;
|
|
1282
|
+
RariDeposit?: undefined;
|
|
1283
|
+
RariWithdraw?: undefined;
|
|
1284
|
+
MStableDeposit?: undefined;
|
|
1285
|
+
MStableWithdraw?: undefined;
|
|
1286
|
+
MStableClaim?: undefined;
|
|
1287
|
+
McdRatioCheck?: undefined;
|
|
1288
|
+
GasFeeTaker?: undefined;
|
|
1289
|
+
CurveStethPoolDeposit?: undefined;
|
|
1290
|
+
CurveStethPoolWithdraw?: undefined;
|
|
1291
|
+
CurveDeposit?: undefined;
|
|
1292
|
+
CurveWithdraw?: undefined;
|
|
1293
|
+
McdBoostComposite?: undefined;
|
|
1294
|
+
McdRepayComposite?: undefined;
|
|
1295
|
+
FLEuler?: undefined;
|
|
1296
|
+
TrailingStopTrigger?: undefined;
|
|
1297
|
+
CBRebondTrigger?: undefined;
|
|
1298
|
+
CBUpdateRebondSub?: undefined;
|
|
1299
|
+
LiquityRatioCheck?: undefined;
|
|
1300
|
+
ConvexDeposit?: undefined;
|
|
1301
|
+
ConvexWithdraw?: undefined;
|
|
1302
|
+
ConvexClaim?: undefined;
|
|
1303
|
+
CBCreate?: undefined;
|
|
1304
|
+
CBRedeem?: undefined;
|
|
1305
|
+
CBChickenIn?: undefined;
|
|
1306
|
+
CBChickenOut?: undefined;
|
|
1307
|
+
CBCreateRebondSub?: undefined;
|
|
1308
|
+
FetchBondId?: undefined;
|
|
1309
|
+
CompV3Allow?: undefined;
|
|
1310
|
+
CompV3Borrow?: undefined;
|
|
1311
|
+
CompV3Claim?: undefined;
|
|
1312
|
+
CompV3Payback?: undefined;
|
|
1313
|
+
CompV3Supply?: undefined;
|
|
1314
|
+
CompV3Transfer?: undefined;
|
|
1315
|
+
CompV3Withdraw?: undefined;
|
|
1316
|
+
CurveUsdBorrow?: undefined;
|
|
1317
|
+
CurveUsdCreate?: undefined;
|
|
1318
|
+
CurveUsdPayback?: undefined;
|
|
1319
|
+
CurveUsdSupply?: undefined;
|
|
1320
|
+
CurveUsdAdjust?: undefined;
|
|
1321
|
+
CurveUsdWithdraw?: undefined;
|
|
1322
|
+
CurveUsdLevCreate?: undefined;
|
|
1323
|
+
CurveUsdRepay?: undefined;
|
|
1324
|
+
CurveUsdSwapper?: undefined;
|
|
1325
|
+
CurveUsdSwapperTransient?: undefined;
|
|
1326
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
1327
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1328
|
+
CurveUsdGetDebt?: undefined;
|
|
1329
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1330
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1331
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
1332
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
1333
|
+
CurveUsdRepayTransient?: undefined;
|
|
1334
|
+
MorphoBlueSupply?: undefined;
|
|
1335
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
1336
|
+
MorphoBlueWithdraw?: undefined;
|
|
1337
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
1338
|
+
MorphoBlueBorrow?: undefined;
|
|
1339
|
+
MorphoBluePayback?: undefined;
|
|
1340
|
+
MorphoBlueSetAuth?: undefined;
|
|
1341
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1342
|
+
MorphoTokenWrap?: undefined;
|
|
1343
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
1344
|
+
MorphoBlueClaim?: undefined;
|
|
1345
|
+
LlamaLendCreate?: undefined;
|
|
1346
|
+
LlamaLendSupply?: undefined;
|
|
1347
|
+
LlamaLendBorrow?: undefined;
|
|
1348
|
+
LlamaLendWithdraw?: undefined;
|
|
1349
|
+
LlamaLendPayback?: undefined;
|
|
1350
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
1351
|
+
LlamaLendGetDebt?: undefined;
|
|
1352
|
+
LlamaLendBoost?: undefined;
|
|
1353
|
+
LlamaLendRepay?: undefined;
|
|
1354
|
+
LlamaLendLevCreate?: undefined;
|
|
1355
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
1356
|
+
EulerV2Supply?: undefined;
|
|
1357
|
+
EulerV2Withdraw?: undefined;
|
|
1358
|
+
EulerV2Borrow?: undefined;
|
|
1359
|
+
EulerV2Payback?: undefined;
|
|
1360
|
+
EulerV2CollateralSwitch?: undefined;
|
|
1361
|
+
EulerV2View?: undefined;
|
|
1362
|
+
RenzoStake?: undefined;
|
|
1363
|
+
EtherFiStake?: undefined;
|
|
1364
|
+
EtherFiWrap?: undefined;
|
|
1365
|
+
EtherFiUnwrap?: undefined;
|
|
1366
|
+
KingClaim?: undefined;
|
|
1367
|
+
FluidVaultT1Open?: undefined;
|
|
1368
|
+
FluidVaultT1Adjust?: undefined;
|
|
1369
|
+
FluidVaultT1Borrow?: undefined;
|
|
1370
|
+
FluidVaultT1Payback?: undefined;
|
|
1371
|
+
FluidVaultT1Withdraw?: undefined;
|
|
1372
|
+
FluidVaultT1Supply?: undefined;
|
|
1373
|
+
FluidView?: undefined;
|
|
1374
|
+
FluidClaim?: undefined;
|
|
1375
|
+
FluidDexOpen?: undefined;
|
|
1376
|
+
FluidDexSupply?: undefined;
|
|
1377
|
+
FluidDexBorrow?: undefined;
|
|
1378
|
+
FluidDexPayback?: undefined;
|
|
1379
|
+
FluidDexWithdraw?: undefined;
|
|
1380
|
+
PendleTokenRedeem?: undefined;
|
|
1381
|
+
UmbrellaClaimRewards?: undefined;
|
|
1382
|
+
UmbrellaStake?: undefined;
|
|
1383
|
+
UmbrellaUnstake?: undefined;
|
|
1384
|
+
SFApproveTokens?: undefined;
|
|
1385
|
+
AaveV3RatioTrigger?: undefined;
|
|
1386
|
+
GasFeeTakerL2?: undefined;
|
|
1387
|
+
AaveV3RatioCheck?: undefined;
|
|
1388
|
+
MorphoBlueView?: undefined;
|
|
1389
|
+
};
|
|
1390
|
+
};
|
|
1391
|
+
declare const actionAddresses: (chainId?: null) => {
|
|
1392
|
+
WrapEth: string;
|
|
1393
|
+
UnwrapEth: string;
|
|
1394
|
+
PullToken: string;
|
|
1395
|
+
SendToken: string;
|
|
1396
|
+
SendTokens: string;
|
|
1397
|
+
SumInputs: string;
|
|
1398
|
+
SubInputs: string;
|
|
1399
|
+
ChangeProxyOwner: string;
|
|
1400
|
+
TokenBalance: string;
|
|
1401
|
+
AutomationV2Unsub: string;
|
|
1402
|
+
SendTokenAndUnwrap: string;
|
|
1403
|
+
ToggleSub: string;
|
|
1404
|
+
UpdateSub: string;
|
|
1405
|
+
TransferNFT: string;
|
|
1406
|
+
CreateSub: string;
|
|
1407
|
+
ApproveToken: string;
|
|
1408
|
+
SDaiWrap: string;
|
|
1409
|
+
SDaiUnwrap: string;
|
|
1410
|
+
TokenizedVaultAdapter: string;
|
|
1411
|
+
PermitToken: string;
|
|
1412
|
+
StarknetClaim: string;
|
|
1413
|
+
HandleAuth: string;
|
|
1414
|
+
DFSSell: string;
|
|
1415
|
+
DFSSellNoFee: string;
|
|
1416
|
+
SkyStake: string;
|
|
1417
|
+
SkyUnstake: string;
|
|
1418
|
+
SkyClaimRewards: string;
|
|
1419
|
+
McdGenerate: string;
|
|
1420
|
+
McdGive: string;
|
|
1421
|
+
McdMerge: string;
|
|
1422
|
+
McdOpen: string;
|
|
1423
|
+
McdPayback: string;
|
|
1424
|
+
McdSupply: string;
|
|
1425
|
+
McdWithdraw: string;
|
|
1426
|
+
McdClaim: string;
|
|
1427
|
+
McdDsrDeposit: string;
|
|
1428
|
+
McdDsrWithdraw: string;
|
|
1429
|
+
McdTokenConverter: string;
|
|
1430
|
+
ReflexerSupply: string;
|
|
1431
|
+
ReflexerWithdraw: string;
|
|
1432
|
+
ReflexerPayback: string;
|
|
1433
|
+
ReflexerGenerate: string;
|
|
1434
|
+
ReflexerOpen: string;
|
|
1435
|
+
ReflexerWithdrawStuckFunds: string;
|
|
1436
|
+
ReflexerNativeUniV2SaviourDeposit: string;
|
|
1437
|
+
ReflexerNativeUniV2SaviourGetReserves: string;
|
|
1438
|
+
ReflexerNativeUniV2SaviourWithdraw: string;
|
|
1439
|
+
AaveBorrow: string;
|
|
1440
|
+
AavePayback: string;
|
|
1441
|
+
AaveSupply: string;
|
|
1442
|
+
AaveWithdraw: string;
|
|
1443
|
+
AaveCollateralSwitch: string;
|
|
1444
|
+
AaveUnstake: string;
|
|
1445
|
+
AaveClaimAAVE: string;
|
|
1446
|
+
AaveClaimStkAave: string;
|
|
1447
|
+
AaveV3Withdraw: string;
|
|
1448
|
+
AaveV3SwapBorrowRateMode: string;
|
|
1449
|
+
AaveV3Supply: string;
|
|
1450
|
+
AaveV3SetEMode: string;
|
|
1451
|
+
AaveV3Payback: string;
|
|
1452
|
+
AaveV3CollateralSwitch: string;
|
|
1453
|
+
AaveV3ClaimRewards: string;
|
|
1454
|
+
AaveV3Borrow: string;
|
|
1455
|
+
AaveV3ATokenPayback: string;
|
|
1456
|
+
AaveV3View: string;
|
|
1457
|
+
AaveV3DelegateWithSig: string;
|
|
1458
|
+
GhoClaimAAVE: string;
|
|
1459
|
+
GhoUnstake: string;
|
|
1460
|
+
GhoStake: string;
|
|
1461
|
+
LSVWithdraw: string;
|
|
1462
|
+
LSVBorrow: string;
|
|
1463
|
+
LSVSupply: string;
|
|
1464
|
+
LSVPayback: string;
|
|
1465
|
+
LSVSell: string;
|
|
1466
|
+
MorphoAaveV2Borrow: string;
|
|
1467
|
+
MorphoAaveV2Payback: string;
|
|
1468
|
+
MorphoAaveV2Supply: string;
|
|
1469
|
+
MorphoAaveV2Withdraw: string;
|
|
1470
|
+
MorphoClaim: string;
|
|
1471
|
+
MorphoAaveV3Borrow: string;
|
|
1472
|
+
MorphoAaveV3Payback: string;
|
|
1473
|
+
MorphoAaveV3Supply: string;
|
|
1474
|
+
MorphoAaveV3Withdraw: string;
|
|
1475
|
+
MorphoAaveV3SetManager: string;
|
|
1476
|
+
SparkBorrow: string;
|
|
1477
|
+
SparkClaimRewards: string;
|
|
1478
|
+
SparkCollateralSwitch: string;
|
|
1479
|
+
SparkPayback: string;
|
|
1480
|
+
SparkSetEMode: string;
|
|
1481
|
+
SparkSpTokenPayback: string;
|
|
1482
|
+
SparkSupply: string;
|
|
1483
|
+
SparkSwapBorrowRateMode: string;
|
|
1484
|
+
SparkWithdraw: string;
|
|
1485
|
+
SparkDelegateCredit: string;
|
|
1486
|
+
SparkDelegateWithSig: string;
|
|
1487
|
+
SparkSPKClaim: string;
|
|
1488
|
+
CompBorrow: string;
|
|
1489
|
+
CompClaim: string;
|
|
1490
|
+
CompPayback: string;
|
|
1491
|
+
CompSupply: string;
|
|
1492
|
+
CompWithdraw: string;
|
|
1493
|
+
CompGetDebt: string;
|
|
1494
|
+
CompCollateralSwitch: string;
|
|
1495
|
+
FLAaveV2: string;
|
|
1496
|
+
FLAaveV3NoFee: string;
|
|
1497
|
+
FLAaveV3CarryDebt: string;
|
|
1498
|
+
FLAaveV3: string;
|
|
1499
|
+
FLDyDx: string;
|
|
1500
|
+
FLMaker: string;
|
|
1501
|
+
FLBalancer: string;
|
|
1502
|
+
FLSpark: string;
|
|
1503
|
+
FLAction: string;
|
|
1504
|
+
FLUniV3: string;
|
|
1505
|
+
FLGho: string;
|
|
1506
|
+
FLMorphoBlue: string;
|
|
1507
|
+
UniSupply: string;
|
|
1508
|
+
UniWithdraw: string;
|
|
1509
|
+
UniCollectV3: string;
|
|
1510
|
+
UniMintV3: string;
|
|
1511
|
+
UniSupplyV3: string;
|
|
1512
|
+
UniWithdrawV3: string;
|
|
1513
|
+
UniCreatePoolV3: string;
|
|
1514
|
+
DyDxWithdraw: string;
|
|
1515
|
+
YearnSupply: string;
|
|
1516
|
+
YearnWithdraw: string;
|
|
1517
|
+
LiquityClose: string;
|
|
1518
|
+
LiquityBorrow: string;
|
|
1519
|
+
LiquityOpen: string;
|
|
1520
|
+
LiquityPayback: string;
|
|
1521
|
+
LiquityWithdraw: string;
|
|
1522
|
+
LiquitySupply: string;
|
|
1523
|
+
LiquitySPDeposit: string;
|
|
1524
|
+
LiquitySPWithdraw: string;
|
|
1525
|
+
LiquityStake: string;
|
|
1526
|
+
LiquityUnstake: string;
|
|
1527
|
+
LiquityEthGainToTrove: string;
|
|
1528
|
+
LiquityClaim: string;
|
|
1529
|
+
LiquityRedeem: string;
|
|
1530
|
+
LiquityAdjust: string;
|
|
1531
|
+
LiquityV2CloseLegacy: string;
|
|
1532
|
+
LiquityV2PaybackLegacy: string;
|
|
1533
|
+
LiquityV2Open: string;
|
|
1534
|
+
LiquityV2Close: string;
|
|
1535
|
+
LiquityV2Supply: string;
|
|
1536
|
+
LiquityV2Withdraw: string;
|
|
1537
|
+
LiquityV2Borrow: string;
|
|
1538
|
+
LiquityV2Payback: string;
|
|
1539
|
+
LiquityV2Claim: string;
|
|
1540
|
+
LiquityV2Adjust: string;
|
|
1541
|
+
LiquityV2AdjustInterestRate: string;
|
|
1542
|
+
LiquityV2SPDeposit: string;
|
|
1543
|
+
LiquityV2SPWithdraw: string;
|
|
1544
|
+
LiquityV2SPClaimColl: string;
|
|
1545
|
+
LiquityV2AdjustZombieTrove: string;
|
|
1546
|
+
BprotocolLiquitySPDeposit: string;
|
|
1547
|
+
BprotocolLiquitySPWithdraw: string;
|
|
1548
|
+
LidoStake: string;
|
|
1549
|
+
LidoWrap: string;
|
|
1550
|
+
LidoUnwrap: string;
|
|
1551
|
+
InstPullTokens: string;
|
|
1552
|
+
BalancerV2Supply: string;
|
|
1553
|
+
BalancerV2Withdraw: string;
|
|
1554
|
+
BalancerV2Claim: string;
|
|
1555
|
+
GUniWithdraw: string;
|
|
1556
|
+
GUniDeposit: string;
|
|
1557
|
+
RariDeposit: string;
|
|
1558
|
+
RariWithdraw: string;
|
|
1559
|
+
MStableDeposit: string;
|
|
1560
|
+
MStableWithdraw: string;
|
|
1561
|
+
MStableClaim: string;
|
|
1562
|
+
McdRatioCheck: string;
|
|
1563
|
+
GasFeeTaker: string;
|
|
1564
|
+
CurveStethPoolDeposit: string;
|
|
1565
|
+
CurveStethPoolWithdraw: string;
|
|
1566
|
+
CurveDeposit: string;
|
|
1567
|
+
CurveWithdraw: string;
|
|
1568
|
+
McdBoostComposite: string;
|
|
1569
|
+
McdRepayComposite: string;
|
|
1570
|
+
FLEuler: string;
|
|
1571
|
+
TrailingStopTrigger: string;
|
|
1572
|
+
CBRebondTrigger: string;
|
|
1573
|
+
CBUpdateRebondSub: string;
|
|
1574
|
+
LiquityRatioCheck: string;
|
|
1575
|
+
ConvexDeposit: string;
|
|
1576
|
+
ConvexWithdraw: string;
|
|
1577
|
+
ConvexClaim: string;
|
|
1578
|
+
CBCreate: string;
|
|
1579
|
+
CBRedeem: string;
|
|
1580
|
+
CBChickenIn: string;
|
|
1581
|
+
CBChickenOut: string;
|
|
1582
|
+
CBCreateRebondSub: string;
|
|
1583
|
+
FetchBondId: string;
|
|
1584
|
+
CompV3Allow: string;
|
|
1585
|
+
CompV3Borrow: string;
|
|
1586
|
+
CompV3Claim: string;
|
|
1587
|
+
CompV3Payback: string;
|
|
1588
|
+
CompV3Supply: string;
|
|
1589
|
+
CompV3Transfer: string;
|
|
1590
|
+
CompV3Withdraw: string;
|
|
1591
|
+
CurveUsdBorrow: string;
|
|
1592
|
+
CurveUsdCreate: string;
|
|
1593
|
+
CurveUsdPayback: string;
|
|
1594
|
+
CurveUsdSupply: string;
|
|
1595
|
+
CurveUsdAdjust: string;
|
|
1596
|
+
CurveUsdWithdraw: string;
|
|
1597
|
+
CurveUsdLevCreate: string;
|
|
1598
|
+
CurveUsdRepay: string;
|
|
1599
|
+
CurveUsdSwapper: string;
|
|
1600
|
+
CurveUsdSwapperTransient: string;
|
|
1601
|
+
CurveUsdSelfLiquidate: string;
|
|
1602
|
+
CurveUsdSelfLiquidateWithColl: string;
|
|
1603
|
+
CurveUsdGetDebt: string;
|
|
1604
|
+
CurveUsdCollRatioTrigger: string;
|
|
1605
|
+
CurveUsdCollRatioCheck: string;
|
|
1606
|
+
CurveUsdSelfLiquidateWithCollTransient: string;
|
|
1607
|
+
CurveUsdLevCreateTransient: string;
|
|
1608
|
+
CurveUsdRepayTransient: string;
|
|
1609
|
+
MorphoBlueSupply: string;
|
|
1610
|
+
MorphoBlueSupplyCollateral: string;
|
|
1611
|
+
MorphoBlueWithdraw: string;
|
|
1612
|
+
MorphoBlueWithdrawCollateral: string;
|
|
1613
|
+
MorphoBlueBorrow: string;
|
|
1614
|
+
MorphoBluePayback: string;
|
|
1615
|
+
MorphoBlueSetAuth: string;
|
|
1616
|
+
MorphoBlueSetAuthWithSig: string;
|
|
1617
|
+
MorphoTokenWrap: string;
|
|
1618
|
+
MorphoBlueReallocateLiquidity: string;
|
|
1619
|
+
MorphoBlueClaim: string;
|
|
1620
|
+
LlamaLendCreate: string;
|
|
1621
|
+
LlamaLendSupply: string;
|
|
1622
|
+
LlamaLendBorrow: string;
|
|
1623
|
+
LlamaLendWithdraw: string;
|
|
1624
|
+
LlamaLendPayback: string;
|
|
1625
|
+
LlamaLendSelfLiquidate: string;
|
|
1626
|
+
LlamaLendGetDebt: string;
|
|
1627
|
+
LlamaLendBoost: string;
|
|
1628
|
+
LlamaLendRepay: string;
|
|
1629
|
+
LlamaLendLevCreate: string;
|
|
1630
|
+
LlamaLendSelfLiquidateWithColl: string;
|
|
1631
|
+
EulerV2Supply: string;
|
|
1632
|
+
EulerV2Withdraw: string;
|
|
1633
|
+
EulerV2Borrow: string;
|
|
1634
|
+
EulerV2Payback: string;
|
|
1635
|
+
EulerV2CollateralSwitch: string;
|
|
1636
|
+
EulerV2View: string;
|
|
1637
|
+
MerklClaim: string;
|
|
1638
|
+
RenzoStake: string;
|
|
1639
|
+
EtherFiStake: string;
|
|
1640
|
+
EtherFiWrap: string;
|
|
1641
|
+
EtherFiUnwrap: string;
|
|
1642
|
+
KingClaim: string;
|
|
1368
1643
|
FluidVaultT1Open: string;
|
|
1369
1644
|
FluidVaultT1Adjust: string;
|
|
1370
1645
|
FluidVaultT1Borrow: string;
|
|
@@ -1398,14 +1673,292 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1398
1673
|
PullToken: string;
|
|
1399
1674
|
SumInputs: string;
|
|
1400
1675
|
SubInputs: string;
|
|
1401
|
-
ApproveToken: string;
|
|
1676
|
+
ApproveToken: string;
|
|
1677
|
+
SendTokenAndUnwrap: string;
|
|
1678
|
+
ToggleSub: string;
|
|
1679
|
+
CreateSub: string;
|
|
1680
|
+
TokenBalance: string;
|
|
1681
|
+
TokenizedVaultAdapter: string;
|
|
1682
|
+
ChangeProxyOwner: string;
|
|
1683
|
+
PermitToken: string;
|
|
1684
|
+
HandleAuth: string;
|
|
1685
|
+
MerklClaim: string;
|
|
1686
|
+
AaveV3ATokenPayback: string;
|
|
1687
|
+
AaveV3Borrow: string;
|
|
1688
|
+
AaveV3CollateralSwitch: string;
|
|
1689
|
+
AaveV3Payback: string;
|
|
1690
|
+
AaveV3SetEMode: string;
|
|
1691
|
+
AaveV3Supply: string;
|
|
1692
|
+
AaveV3SwapBorrowRateMode: string;
|
|
1693
|
+
AaveV3Withdraw: string;
|
|
1694
|
+
AaveV3ClaimRewards: string;
|
|
1695
|
+
AaveV3DelegateWithSig: string;
|
|
1696
|
+
AaveV3DelegateCredit: string;
|
|
1697
|
+
FLAaveV3NoFee: string;
|
|
1698
|
+
FLAaveV3: string;
|
|
1699
|
+
FLBalancer: string;
|
|
1700
|
+
FLAction: string;
|
|
1701
|
+
AaveV3RatioTrigger: string;
|
|
1702
|
+
GasFeeTakerL2: string;
|
|
1703
|
+
AaveV3RatioCheck: string;
|
|
1704
|
+
UniCollectV3: string;
|
|
1705
|
+
UniMintV3: string;
|
|
1706
|
+
UniSupplyV3: string;
|
|
1707
|
+
UniWithdrawV3: string;
|
|
1708
|
+
UniCreatePoolV3: string;
|
|
1709
|
+
CompV3Allow: string;
|
|
1710
|
+
CompV3Borrow: string;
|
|
1711
|
+
CompV3Claim: string;
|
|
1712
|
+
CompV3Payback: string;
|
|
1713
|
+
CompV3Supply: string;
|
|
1714
|
+
CompV3Transfer: string;
|
|
1715
|
+
CompV3Withdraw: string;
|
|
1716
|
+
SFApproveTokens: string;
|
|
1717
|
+
AutomationV2Unsub?: undefined;
|
|
1718
|
+
UpdateSub?: undefined;
|
|
1719
|
+
TransferNFT?: undefined;
|
|
1720
|
+
SDaiWrap?: undefined;
|
|
1721
|
+
SDaiUnwrap?: undefined;
|
|
1722
|
+
StarknetClaim?: undefined;
|
|
1723
|
+
SkyStake?: undefined;
|
|
1724
|
+
SkyUnstake?: undefined;
|
|
1725
|
+
SkyClaimRewards?: undefined;
|
|
1726
|
+
McdGenerate?: undefined;
|
|
1727
|
+
McdGive?: undefined;
|
|
1728
|
+
McdMerge?: undefined;
|
|
1729
|
+
McdOpen?: undefined;
|
|
1730
|
+
McdPayback?: undefined;
|
|
1731
|
+
McdSupply?: undefined;
|
|
1732
|
+
McdWithdraw?: undefined;
|
|
1733
|
+
McdClaim?: undefined;
|
|
1734
|
+
McdDsrDeposit?: undefined;
|
|
1735
|
+
McdDsrWithdraw?: undefined;
|
|
1736
|
+
McdTokenConverter?: undefined;
|
|
1737
|
+
ReflexerSupply?: undefined;
|
|
1738
|
+
ReflexerWithdraw?: undefined;
|
|
1739
|
+
ReflexerPayback?: undefined;
|
|
1740
|
+
ReflexerGenerate?: undefined;
|
|
1741
|
+
ReflexerOpen?: undefined;
|
|
1742
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
1743
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
1744
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
1745
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
1746
|
+
AaveBorrow?: undefined;
|
|
1747
|
+
AavePayback?: undefined;
|
|
1748
|
+
AaveSupply?: undefined;
|
|
1749
|
+
AaveWithdraw?: undefined;
|
|
1750
|
+
AaveCollateralSwitch?: undefined;
|
|
1751
|
+
AaveUnstake?: undefined;
|
|
1752
|
+
AaveClaimAAVE?: undefined;
|
|
1753
|
+
AaveClaimStkAave?: undefined;
|
|
1754
|
+
AaveV3View?: undefined;
|
|
1755
|
+
GhoClaimAAVE?: undefined;
|
|
1756
|
+
GhoUnstake?: undefined;
|
|
1757
|
+
GhoStake?: undefined;
|
|
1758
|
+
LSVWithdraw?: undefined;
|
|
1759
|
+
LSVBorrow?: undefined;
|
|
1760
|
+
LSVSupply?: undefined;
|
|
1761
|
+
LSVPayback?: undefined;
|
|
1762
|
+
LSVSell?: undefined;
|
|
1763
|
+
MorphoAaveV2Borrow?: undefined;
|
|
1764
|
+
MorphoAaveV2Payback?: undefined;
|
|
1765
|
+
MorphoAaveV2Supply?: undefined;
|
|
1766
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
1767
|
+
MorphoClaim?: undefined;
|
|
1768
|
+
MorphoAaveV3Borrow?: undefined;
|
|
1769
|
+
MorphoAaveV3Payback?: undefined;
|
|
1770
|
+
MorphoAaveV3Supply?: undefined;
|
|
1771
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
1772
|
+
MorphoAaveV3SetManager?: undefined;
|
|
1773
|
+
SparkBorrow?: undefined;
|
|
1774
|
+
SparkClaimRewards?: undefined;
|
|
1775
|
+
SparkCollateralSwitch?: undefined;
|
|
1776
|
+
SparkPayback?: undefined;
|
|
1777
|
+
SparkSetEMode?: undefined;
|
|
1778
|
+
SparkSpTokenPayback?: undefined;
|
|
1779
|
+
SparkSupply?: undefined;
|
|
1780
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
1781
|
+
SparkWithdraw?: undefined;
|
|
1782
|
+
SparkDelegateCredit?: undefined;
|
|
1783
|
+
SparkDelegateWithSig?: undefined;
|
|
1784
|
+
SparkSPKClaim?: undefined;
|
|
1785
|
+
CompBorrow?: undefined;
|
|
1786
|
+
CompClaim?: undefined;
|
|
1787
|
+
CompPayback?: undefined;
|
|
1788
|
+
CompSupply?: undefined;
|
|
1789
|
+
CompWithdraw?: undefined;
|
|
1790
|
+
CompGetDebt?: undefined;
|
|
1791
|
+
CompCollateralSwitch?: undefined;
|
|
1792
|
+
FLAaveV2?: undefined;
|
|
1793
|
+
FLAaveV3CarryDebt?: undefined;
|
|
1794
|
+
FLDyDx?: undefined;
|
|
1795
|
+
FLMaker?: undefined;
|
|
1796
|
+
FLSpark?: undefined;
|
|
1797
|
+
FLUniV3?: undefined;
|
|
1798
|
+
FLGho?: undefined;
|
|
1799
|
+
FLMorphoBlue?: undefined;
|
|
1800
|
+
UniSupply?: undefined;
|
|
1801
|
+
UniWithdraw?: undefined;
|
|
1802
|
+
DyDxWithdraw?: undefined;
|
|
1803
|
+
YearnSupply?: undefined;
|
|
1804
|
+
YearnWithdraw?: undefined;
|
|
1805
|
+
LiquityClose?: undefined;
|
|
1806
|
+
LiquityBorrow?: undefined;
|
|
1807
|
+
LiquityOpen?: undefined;
|
|
1808
|
+
LiquityPayback?: undefined;
|
|
1809
|
+
LiquityWithdraw?: undefined;
|
|
1810
|
+
LiquitySupply?: undefined;
|
|
1811
|
+
LiquitySPDeposit?: undefined;
|
|
1812
|
+
LiquitySPWithdraw?: undefined;
|
|
1813
|
+
LiquityStake?: undefined;
|
|
1814
|
+
LiquityUnstake?: undefined;
|
|
1815
|
+
LiquityEthGainToTrove?: undefined;
|
|
1816
|
+
LiquityClaim?: undefined;
|
|
1817
|
+
LiquityRedeem?: undefined;
|
|
1818
|
+
LiquityAdjust?: undefined;
|
|
1819
|
+
LiquityV2CloseLegacy?: undefined;
|
|
1820
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
1821
|
+
LiquityV2Open?: undefined;
|
|
1822
|
+
LiquityV2Close?: undefined;
|
|
1823
|
+
LiquityV2Supply?: undefined;
|
|
1824
|
+
LiquityV2Withdraw?: undefined;
|
|
1825
|
+
LiquityV2Borrow?: undefined;
|
|
1826
|
+
LiquityV2Payback?: undefined;
|
|
1827
|
+
LiquityV2Claim?: undefined;
|
|
1828
|
+
LiquityV2Adjust?: undefined;
|
|
1829
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
1830
|
+
LiquityV2SPDeposit?: undefined;
|
|
1831
|
+
LiquityV2SPWithdraw?: undefined;
|
|
1832
|
+
LiquityV2SPClaimColl?: undefined;
|
|
1833
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
1834
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
1835
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
1836
|
+
LidoStake?: undefined;
|
|
1837
|
+
LidoWrap?: undefined;
|
|
1838
|
+
LidoUnwrap?: undefined;
|
|
1839
|
+
InstPullTokens?: undefined;
|
|
1840
|
+
BalancerV2Supply?: undefined;
|
|
1841
|
+
BalancerV2Withdraw?: undefined;
|
|
1842
|
+
BalancerV2Claim?: undefined;
|
|
1843
|
+
GUniWithdraw?: undefined;
|
|
1844
|
+
GUniDeposit?: undefined;
|
|
1845
|
+
RariDeposit?: undefined;
|
|
1846
|
+
RariWithdraw?: undefined;
|
|
1847
|
+
MStableDeposit?: undefined;
|
|
1848
|
+
MStableWithdraw?: undefined;
|
|
1849
|
+
MStableClaim?: undefined;
|
|
1850
|
+
McdRatioCheck?: undefined;
|
|
1851
|
+
GasFeeTaker?: undefined;
|
|
1852
|
+
CurveStethPoolDeposit?: undefined;
|
|
1853
|
+
CurveStethPoolWithdraw?: undefined;
|
|
1854
|
+
CurveDeposit?: undefined;
|
|
1855
|
+
CurveWithdraw?: undefined;
|
|
1856
|
+
McdBoostComposite?: undefined;
|
|
1857
|
+
McdRepayComposite?: undefined;
|
|
1858
|
+
FLEuler?: undefined;
|
|
1859
|
+
TrailingStopTrigger?: undefined;
|
|
1860
|
+
CBRebondTrigger?: undefined;
|
|
1861
|
+
CBUpdateRebondSub?: undefined;
|
|
1862
|
+
LiquityRatioCheck?: undefined;
|
|
1863
|
+
ConvexDeposit?: undefined;
|
|
1864
|
+
ConvexWithdraw?: undefined;
|
|
1865
|
+
ConvexClaim?: undefined;
|
|
1866
|
+
CBCreate?: undefined;
|
|
1867
|
+
CBRedeem?: undefined;
|
|
1868
|
+
CBChickenIn?: undefined;
|
|
1869
|
+
CBChickenOut?: undefined;
|
|
1870
|
+
CBCreateRebondSub?: undefined;
|
|
1871
|
+
FetchBondId?: undefined;
|
|
1872
|
+
CurveUsdBorrow?: undefined;
|
|
1873
|
+
CurveUsdCreate?: undefined;
|
|
1874
|
+
CurveUsdPayback?: undefined;
|
|
1875
|
+
CurveUsdSupply?: undefined;
|
|
1876
|
+
CurveUsdAdjust?: undefined;
|
|
1877
|
+
CurveUsdWithdraw?: undefined;
|
|
1878
|
+
CurveUsdLevCreate?: undefined;
|
|
1879
|
+
CurveUsdRepay?: undefined;
|
|
1880
|
+
CurveUsdSwapper?: undefined;
|
|
1881
|
+
CurveUsdSwapperTransient?: undefined;
|
|
1882
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
1883
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
1884
|
+
CurveUsdGetDebt?: undefined;
|
|
1885
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
1886
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
1887
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
1888
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
1889
|
+
CurveUsdRepayTransient?: undefined;
|
|
1890
|
+
MorphoBlueSupply?: undefined;
|
|
1891
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
1892
|
+
MorphoBlueWithdraw?: undefined;
|
|
1893
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
1894
|
+
MorphoBlueBorrow?: undefined;
|
|
1895
|
+
MorphoBluePayback?: undefined;
|
|
1896
|
+
MorphoBlueSetAuth?: undefined;
|
|
1897
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
1898
|
+
MorphoTokenWrap?: undefined;
|
|
1899
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
1900
|
+
MorphoBlueClaim?: undefined;
|
|
1901
|
+
LlamaLendCreate?: undefined;
|
|
1902
|
+
LlamaLendSupply?: undefined;
|
|
1903
|
+
LlamaLendBorrow?: undefined;
|
|
1904
|
+
LlamaLendWithdraw?: undefined;
|
|
1905
|
+
LlamaLendPayback?: undefined;
|
|
1906
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
1907
|
+
LlamaLendGetDebt?: undefined;
|
|
1908
|
+
LlamaLendBoost?: undefined;
|
|
1909
|
+
LlamaLendRepay?: undefined;
|
|
1910
|
+
LlamaLendLevCreate?: undefined;
|
|
1911
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
1912
|
+
EulerV2Supply?: undefined;
|
|
1913
|
+
EulerV2Withdraw?: undefined;
|
|
1914
|
+
EulerV2Borrow?: undefined;
|
|
1915
|
+
EulerV2Payback?: undefined;
|
|
1916
|
+
EulerV2CollateralSwitch?: undefined;
|
|
1917
|
+
EulerV2View?: undefined;
|
|
1918
|
+
RenzoStake?: undefined;
|
|
1919
|
+
EtherFiStake?: undefined;
|
|
1920
|
+
EtherFiWrap?: undefined;
|
|
1921
|
+
EtherFiUnwrap?: undefined;
|
|
1922
|
+
KingClaim?: undefined;
|
|
1923
|
+
FluidVaultT1Open?: undefined;
|
|
1924
|
+
FluidVaultT1Adjust?: undefined;
|
|
1925
|
+
FluidVaultT1Borrow?: undefined;
|
|
1926
|
+
FluidVaultT1Payback?: undefined;
|
|
1927
|
+
FluidVaultT1Withdraw?: undefined;
|
|
1928
|
+
FluidVaultT1Supply?: undefined;
|
|
1929
|
+
FluidView?: undefined;
|
|
1930
|
+
FluidClaim?: undefined;
|
|
1931
|
+
FluidDexOpen?: undefined;
|
|
1932
|
+
FluidDexSupply?: undefined;
|
|
1933
|
+
FluidDexBorrow?: undefined;
|
|
1934
|
+
FluidDexPayback?: undefined;
|
|
1935
|
+
FluidDexWithdraw?: undefined;
|
|
1936
|
+
PendleTokenRedeem?: undefined;
|
|
1937
|
+
UmbrellaClaimRewards?: undefined;
|
|
1938
|
+
UmbrellaStake?: undefined;
|
|
1939
|
+
UmbrellaUnstake?: undefined;
|
|
1940
|
+
MorphoBlueView?: undefined;
|
|
1941
|
+
} | {
|
|
1942
|
+
DFSSell: string;
|
|
1943
|
+
DFSSellNoFee: string;
|
|
1944
|
+
WrapEth: string;
|
|
1945
|
+
UnwrapEth: string;
|
|
1946
|
+
SendToken: string;
|
|
1947
|
+
SendTokens: string;
|
|
1948
|
+
PullToken: string;
|
|
1949
|
+
SumInputs: string;
|
|
1950
|
+
SubInputs: string;
|
|
1402
1951
|
SendTokenAndUnwrap: string;
|
|
1952
|
+
ApproveToken: string;
|
|
1403
1953
|
ToggleSub: string;
|
|
1954
|
+
CreateSub: string;
|
|
1404
1955
|
TokenBalance: string;
|
|
1405
1956
|
TokenizedVaultAdapter: string;
|
|
1406
1957
|
ChangeProxyOwner: string;
|
|
1407
1958
|
PermitToken: string;
|
|
1408
1959
|
HandleAuth: string;
|
|
1960
|
+
UpdateSub: string;
|
|
1961
|
+
TransferNFT: string;
|
|
1409
1962
|
MerklClaim: string;
|
|
1410
1963
|
AaveV3ATokenPayback: string;
|
|
1411
1964
|
AaveV3Borrow: string;
|
|
@@ -1417,12 +1970,18 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1417
1970
|
AaveV3Withdraw: string;
|
|
1418
1971
|
AaveV3ClaimRewards: string;
|
|
1419
1972
|
AaveV3DelegateWithSig: string;
|
|
1420
|
-
|
|
1973
|
+
CompV3Allow: string;
|
|
1974
|
+
CompV3Borrow: string;
|
|
1975
|
+
CompV3Claim: string;
|
|
1976
|
+
CompV3Payback: string;
|
|
1977
|
+
CompV3Supply: string;
|
|
1978
|
+
CompV3Transfer: string;
|
|
1979
|
+
CompV3Withdraw: string;
|
|
1421
1980
|
FLAaveV3NoFee: string;
|
|
1422
1981
|
FLAaveV3: string;
|
|
1423
1982
|
FLBalancer: string;
|
|
1983
|
+
FLUniV3: string;
|
|
1424
1984
|
FLAction: string;
|
|
1425
|
-
AaveV3RatioTrigger: string;
|
|
1426
1985
|
GasFeeTakerL2: string;
|
|
1427
1986
|
AaveV3RatioCheck: string;
|
|
1428
1987
|
UniCollectV3: string;
|
|
@@ -1430,18 +1989,31 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1430
1989
|
UniSupplyV3: string;
|
|
1431
1990
|
UniWithdrawV3: string;
|
|
1432
1991
|
UniCreatePoolV3: string;
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1992
|
+
LlamaLendCreate: string;
|
|
1993
|
+
LlamaLendSupply: string;
|
|
1994
|
+
LlamaLendBorrow: string;
|
|
1995
|
+
LlamaLendWithdraw: string;
|
|
1996
|
+
LlamaLendPayback: string;
|
|
1997
|
+
LlamaLendSelfLiquidate: string;
|
|
1998
|
+
LlamaLendGetDebt: string;
|
|
1999
|
+
LlamaLendBoost: string;
|
|
2000
|
+
LlamaLendRepay: string;
|
|
2001
|
+
LlamaLendLevCreate: string;
|
|
2002
|
+
LlamaLendSelfLiquidateWithColl: string;
|
|
2003
|
+
FluidVaultT1Open: string;
|
|
2004
|
+
FluidVaultT1Adjust: string;
|
|
2005
|
+
FluidVaultT1Borrow: string;
|
|
2006
|
+
FluidVaultT1Payback: string;
|
|
2007
|
+
FluidVaultT1Withdraw: string;
|
|
2008
|
+
FluidVaultT1Supply: string;
|
|
2009
|
+
FluidView: string;
|
|
2010
|
+
FluidDexOpen: string;
|
|
2011
|
+
FluidDexSupply: string;
|
|
2012
|
+
FluidDexBorrow: string;
|
|
2013
|
+
FluidDexPayback: string;
|
|
2014
|
+
FluidDexWithdraw: string;
|
|
1440
2015
|
SFApproveTokens: string;
|
|
1441
2016
|
AutomationV2Unsub?: undefined;
|
|
1442
|
-
UpdateSub?: undefined;
|
|
1443
|
-
TransferNFT?: undefined;
|
|
1444
|
-
CreateSub?: undefined;
|
|
1445
2017
|
SDaiWrap?: undefined;
|
|
1446
2018
|
SDaiUnwrap?: undefined;
|
|
1447
2019
|
StarknetClaim?: undefined;
|
|
@@ -1519,7 +2091,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1519
2091
|
FLDyDx?: undefined;
|
|
1520
2092
|
FLMaker?: undefined;
|
|
1521
2093
|
FLSpark?: undefined;
|
|
1522
|
-
FLUniV3?: undefined;
|
|
1523
2094
|
FLGho?: undefined;
|
|
1524
2095
|
FLMorphoBlue?: undefined;
|
|
1525
2096
|
UniSupply?: undefined;
|
|
@@ -1623,17 +2194,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1623
2194
|
MorphoTokenWrap?: undefined;
|
|
1624
2195
|
MorphoBlueReallocateLiquidity?: undefined;
|
|
1625
2196
|
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
2197
|
EulerV2Supply?: undefined;
|
|
1638
2198
|
EulerV2Withdraw?: undefined;
|
|
1639
2199
|
EulerV2Borrow?: undefined;
|
|
@@ -1645,23 +2205,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1645
2205
|
EtherFiWrap?: undefined;
|
|
1646
2206
|
EtherFiUnwrap?: undefined;
|
|
1647
2207
|
KingClaim?: undefined;
|
|
1648
|
-
FluidVaultT1Open?: undefined;
|
|
1649
|
-
FluidVaultT1Adjust?: undefined;
|
|
1650
|
-
FluidVaultT1Borrow?: undefined;
|
|
1651
|
-
FluidVaultT1Payback?: undefined;
|
|
1652
|
-
FluidVaultT1Withdraw?: undefined;
|
|
1653
|
-
FluidVaultT1Supply?: undefined;
|
|
1654
|
-
FluidView?: undefined;
|
|
1655
2208
|
FluidClaim?: undefined;
|
|
1656
|
-
FluidDexOpen?: undefined;
|
|
1657
|
-
FluidDexSupply?: undefined;
|
|
1658
|
-
FluidDexBorrow?: undefined;
|
|
1659
|
-
FluidDexPayback?: undefined;
|
|
1660
|
-
FluidDexWithdraw?: undefined;
|
|
1661
2209
|
PendleTokenRedeem?: undefined;
|
|
1662
2210
|
UmbrellaClaimRewards?: undefined;
|
|
1663
2211
|
UmbrellaStake?: undefined;
|
|
1664
2212
|
UmbrellaUnstake?: undefined;
|
|
2213
|
+
AaveV3DelegateCredit?: undefined;
|
|
2214
|
+
AaveV3RatioTrigger?: undefined;
|
|
1665
2215
|
MorphoBlueView?: undefined;
|
|
1666
2216
|
} | {
|
|
1667
2217
|
DFSSell: string;
|
|
@@ -1671,29 +2221,34 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1671
2221
|
SendToken: string;
|
|
1672
2222
|
SendTokens: string;
|
|
1673
2223
|
PullToken: string;
|
|
2224
|
+
ApproveToken: string;
|
|
1674
2225
|
SumInputs: string;
|
|
1675
2226
|
SubInputs: string;
|
|
1676
|
-
SendTokenAndUnwrap: string;
|
|
1677
|
-
ApproveToken: string;
|
|
1678
|
-
ToggleSub: string;
|
|
1679
|
-
CreateSub: string;
|
|
1680
2227
|
TokenBalance: string;
|
|
1681
|
-
TokenizedVaultAdapter: string;
|
|
1682
2228
|
ChangeProxyOwner: string;
|
|
1683
2229
|
PermitToken: string;
|
|
1684
2230
|
HandleAuth: string;
|
|
2231
|
+
ToggleSub: string;
|
|
2232
|
+
CreateSub: string;
|
|
1685
2233
|
UpdateSub: string;
|
|
1686
|
-
TransferNFT: string;
|
|
1687
2234
|
MerklClaim: string;
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
2235
|
+
TransferNFT: string;
|
|
2236
|
+
GasFeeTakerL2: string;
|
|
2237
|
+
FLAaveV3: string;
|
|
2238
|
+
FLBalancer: string;
|
|
2239
|
+
FLUniV3: string;
|
|
2240
|
+
FLAction: string;
|
|
2241
|
+
FLMorphoBlue: string;
|
|
1695
2242
|
AaveV3Withdraw: string;
|
|
2243
|
+
AaveV3SwapBorrowRateMode: string;
|
|
2244
|
+
AaveV3Supply: string;
|
|
2245
|
+
AaveV3SetEMode: string;
|
|
2246
|
+
AaveV3Payback: string;
|
|
2247
|
+
AaveV3CollateralSwitch: string;
|
|
1696
2248
|
AaveV3ClaimRewards: string;
|
|
2249
|
+
AaveV3Borrow: string;
|
|
2250
|
+
AaveV3ATokenPayback: string;
|
|
2251
|
+
AaveV3View: string;
|
|
1697
2252
|
AaveV3DelegateWithSig: string;
|
|
1698
2253
|
CompV3Allow: string;
|
|
1699
2254
|
CompV3Borrow: string;
|
|
@@ -1702,29 +2257,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1702
2257
|
CompV3Supply: string;
|
|
1703
2258
|
CompV3Transfer: string;
|
|
1704
2259
|
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;
|
|
2260
|
+
MorphoBlueSupply: string;
|
|
2261
|
+
MorphoBlueSupplyCollateral: string;
|
|
2262
|
+
MorphoBlueWithdraw: string;
|
|
2263
|
+
MorphoBlueWithdrawCollateral: string;
|
|
2264
|
+
MorphoBlueBorrow: string;
|
|
2265
|
+
MorphoBluePayback: string;
|
|
2266
|
+
MorphoBlueSetAuth: string;
|
|
2267
|
+
MorphoBlueSetAuthWithSig: string;
|
|
2268
|
+
MorphoBlueView: string;
|
|
2269
|
+
MorphoBlueReallocateLiquidity: string;
|
|
2270
|
+
MorphoBlueClaim: string;
|
|
1728
2271
|
FluidVaultT1Open: string;
|
|
1729
2272
|
FluidVaultT1Adjust: string;
|
|
1730
2273
|
FluidVaultT1Borrow: string;
|
|
@@ -1732,13 +2275,10 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1732
2275
|
FluidVaultT1Withdraw: string;
|
|
1733
2276
|
FluidVaultT1Supply: string;
|
|
1734
2277
|
FluidView: string;
|
|
1735
|
-
|
|
1736
|
-
FluidDexSupply: string;
|
|
1737
|
-
FluidDexBorrow: string;
|
|
1738
|
-
FluidDexPayback: string;
|
|
1739
|
-
FluidDexWithdraw: string;
|
|
2278
|
+
TokenizedVaultAdapter: string;
|
|
1740
2279
|
SFApproveTokens: string;
|
|
1741
2280
|
AutomationV2Unsub?: undefined;
|
|
2281
|
+
SendTokenAndUnwrap?: undefined;
|
|
1742
2282
|
SDaiWrap?: undefined;
|
|
1743
2283
|
SDaiUnwrap?: undefined;
|
|
1744
2284
|
StarknetClaim?: undefined;
|
|
@@ -1773,7 +2313,6 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1773
2313
|
AaveUnstake?: undefined;
|
|
1774
2314
|
AaveClaimAAVE?: undefined;
|
|
1775
2315
|
AaveClaimStkAave?: undefined;
|
|
1776
|
-
AaveV3View?: undefined;
|
|
1777
2316
|
GhoClaimAAVE?: undefined;
|
|
1778
2317
|
GhoUnstake?: undefined;
|
|
1779
2318
|
GhoStake?: undefined;
|
|
@@ -1812,14 +2351,19 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1812
2351
|
CompGetDebt?: undefined;
|
|
1813
2352
|
CompCollateralSwitch?: undefined;
|
|
1814
2353
|
FLAaveV2?: undefined;
|
|
2354
|
+
FLAaveV3NoFee?: undefined;
|
|
1815
2355
|
FLAaveV3CarryDebt?: undefined;
|
|
1816
2356
|
FLDyDx?: undefined;
|
|
1817
2357
|
FLMaker?: undefined;
|
|
1818
2358
|
FLSpark?: undefined;
|
|
1819
2359
|
FLGho?: undefined;
|
|
1820
|
-
FLMorphoBlue?: undefined;
|
|
1821
2360
|
UniSupply?: undefined;
|
|
1822
2361
|
UniWithdraw?: undefined;
|
|
2362
|
+
UniCollectV3?: undefined;
|
|
2363
|
+
UniMintV3?: undefined;
|
|
2364
|
+
UniSupplyV3?: undefined;
|
|
2365
|
+
UniWithdrawV3?: undefined;
|
|
2366
|
+
UniCreatePoolV3?: undefined;
|
|
1823
2367
|
DyDxWithdraw?: undefined;
|
|
1824
2368
|
YearnSupply?: undefined;
|
|
1825
2369
|
YearnWithdraw?: undefined;
|
|
@@ -1908,17 +2452,18 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1908
2452
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
1909
2453
|
CurveUsdLevCreateTransient?: undefined;
|
|
1910
2454
|
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
2455
|
MorphoTokenWrap?: undefined;
|
|
1920
|
-
|
|
1921
|
-
|
|
2456
|
+
LlamaLendCreate?: undefined;
|
|
2457
|
+
LlamaLendSupply?: undefined;
|
|
2458
|
+
LlamaLendBorrow?: undefined;
|
|
2459
|
+
LlamaLendWithdraw?: undefined;
|
|
2460
|
+
LlamaLendPayback?: undefined;
|
|
2461
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
2462
|
+
LlamaLendGetDebt?: undefined;
|
|
2463
|
+
LlamaLendBoost?: undefined;
|
|
2464
|
+
LlamaLendRepay?: undefined;
|
|
2465
|
+
LlamaLendLevCreate?: undefined;
|
|
2466
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
1922
2467
|
EulerV2Supply?: undefined;
|
|
1923
2468
|
EulerV2Withdraw?: undefined;
|
|
1924
2469
|
EulerV2Borrow?: undefined;
|
|
@@ -1931,13 +2476,18 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1931
2476
|
EtherFiUnwrap?: undefined;
|
|
1932
2477
|
KingClaim?: undefined;
|
|
1933
2478
|
FluidClaim?: undefined;
|
|
2479
|
+
FluidDexOpen?: undefined;
|
|
2480
|
+
FluidDexSupply?: undefined;
|
|
2481
|
+
FluidDexBorrow?: undefined;
|
|
2482
|
+
FluidDexPayback?: undefined;
|
|
2483
|
+
FluidDexWithdraw?: undefined;
|
|
1934
2484
|
PendleTokenRedeem?: undefined;
|
|
1935
2485
|
UmbrellaClaimRewards?: undefined;
|
|
1936
2486
|
UmbrellaStake?: undefined;
|
|
1937
2487
|
UmbrellaUnstake?: undefined;
|
|
1938
2488
|
AaveV3DelegateCredit?: undefined;
|
|
1939
2489
|
AaveV3RatioTrigger?: undefined;
|
|
1940
|
-
|
|
2490
|
+
AaveV3RatioCheck?: undefined;
|
|
1941
2491
|
} | {
|
|
1942
2492
|
DFSSell: string;
|
|
1943
2493
|
DFSSellNoFee: string;
|
|
@@ -1945,27 +2495,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1945
2495
|
UnwrapEth: string;
|
|
1946
2496
|
SendToken: string;
|
|
1947
2497
|
SendTokens: string;
|
|
2498
|
+
SendTokenAndUnwrap: string;
|
|
1948
2499
|
PullToken: string;
|
|
1949
2500
|
ApproveToken: string;
|
|
1950
2501
|
SumInputs: string;
|
|
1951
2502
|
SubInputs: string;
|
|
1952
2503
|
TokenBalance: string;
|
|
1953
|
-
ChangeProxyOwner: string;
|
|
1954
2504
|
PermitToken: string;
|
|
1955
|
-
HandleAuth: string;
|
|
1956
|
-
ToggleSub: string;
|
|
1957
|
-
CreateSub: string;
|
|
1958
|
-
UpdateSub: string;
|
|
1959
2505
|
MerklClaim: string;
|
|
1960
2506
|
TransferNFT: string;
|
|
1961
|
-
GasFeeTakerL2: string;
|
|
1962
|
-
FLAaveV3: string;
|
|
1963
|
-
FLBalancer: string;
|
|
1964
|
-
FLUniV3: string;
|
|
1965
2507
|
FLAction: string;
|
|
1966
|
-
FLMorphoBlue: string;
|
|
1967
2508
|
AaveV3Withdraw: string;
|
|
1968
|
-
AaveV3SwapBorrowRateMode: string;
|
|
1969
2509
|
AaveV3Supply: string;
|
|
1970
2510
|
AaveV3SetEMode: string;
|
|
1971
2511
|
AaveV3Payback: string;
|
|
@@ -1975,38 +2515,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
1975
2515
|
AaveV3ATokenPayback: string;
|
|
1976
2516
|
AaveV3View: string;
|
|
1977
2517
|
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;
|
|
2518
|
+
AaveV3DelegateCredit: string;
|
|
2519
|
+
ChangeProxyOwner?: undefined;
|
|
2005
2520
|
AutomationV2Unsub?: undefined;
|
|
2006
|
-
|
|
2521
|
+
ToggleSub?: undefined;
|
|
2522
|
+
UpdateSub?: undefined;
|
|
2523
|
+
CreateSub?: undefined;
|
|
2007
2524
|
SDaiWrap?: undefined;
|
|
2008
2525
|
SDaiUnwrap?: undefined;
|
|
2526
|
+
TokenizedVaultAdapter?: undefined;
|
|
2009
2527
|
StarknetClaim?: undefined;
|
|
2528
|
+
HandleAuth?: undefined;
|
|
2010
2529
|
SkyStake?: undefined;
|
|
2011
2530
|
SkyUnstake?: undefined;
|
|
2012
2531
|
SkyClaimRewards?: undefined;
|
|
@@ -2038,6 +2557,7 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2038
2557
|
AaveUnstake?: undefined;
|
|
2039
2558
|
AaveClaimAAVE?: undefined;
|
|
2040
2559
|
AaveClaimStkAave?: undefined;
|
|
2560
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
2041
2561
|
GhoClaimAAVE?: undefined;
|
|
2042
2562
|
GhoUnstake?: undefined;
|
|
2043
2563
|
GhoStake?: undefined;
|
|
@@ -2078,10 +2598,14 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2078
2598
|
FLAaveV2?: undefined;
|
|
2079
2599
|
FLAaveV3NoFee?: undefined;
|
|
2080
2600
|
FLAaveV3CarryDebt?: undefined;
|
|
2601
|
+
FLAaveV3?: undefined;
|
|
2081
2602
|
FLDyDx?: undefined;
|
|
2082
2603
|
FLMaker?: undefined;
|
|
2604
|
+
FLBalancer?: undefined;
|
|
2083
2605
|
FLSpark?: undefined;
|
|
2606
|
+
FLUniV3?: undefined;
|
|
2084
2607
|
FLGho?: undefined;
|
|
2608
|
+
FLMorphoBlue?: undefined;
|
|
2085
2609
|
UniSupply?: undefined;
|
|
2086
2610
|
UniWithdraw?: undefined;
|
|
2087
2611
|
UniCollectV3?: undefined;
|
|
@@ -2159,6 +2683,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2159
2683
|
CBChickenOut?: undefined;
|
|
2160
2684
|
CBCreateRebondSub?: undefined;
|
|
2161
2685
|
FetchBondId?: undefined;
|
|
2686
|
+
CompV3Allow?: undefined;
|
|
2687
|
+
CompV3Borrow?: undefined;
|
|
2688
|
+
CompV3Claim?: undefined;
|
|
2689
|
+
CompV3Payback?: undefined;
|
|
2690
|
+
CompV3Supply?: undefined;
|
|
2691
|
+
CompV3Transfer?: undefined;
|
|
2692
|
+
CompV3Withdraw?: undefined;
|
|
2162
2693
|
CurveUsdBorrow?: undefined;
|
|
2163
2694
|
CurveUsdCreate?: undefined;
|
|
2164
2695
|
CurveUsdPayback?: undefined;
|
|
@@ -2177,7 +2708,17 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2177
2708
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
2178
2709
|
CurveUsdLevCreateTransient?: undefined;
|
|
2179
2710
|
CurveUsdRepayTransient?: undefined;
|
|
2711
|
+
MorphoBlueSupply?: undefined;
|
|
2712
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
2713
|
+
MorphoBlueWithdraw?: undefined;
|
|
2714
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
2715
|
+
MorphoBlueBorrow?: undefined;
|
|
2716
|
+
MorphoBluePayback?: undefined;
|
|
2717
|
+
MorphoBlueSetAuth?: undefined;
|
|
2718
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
2180
2719
|
MorphoTokenWrap?: undefined;
|
|
2720
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
2721
|
+
MorphoBlueClaim?: undefined;
|
|
2181
2722
|
LlamaLendCreate?: undefined;
|
|
2182
2723
|
LlamaLendSupply?: undefined;
|
|
2183
2724
|
LlamaLendBorrow?: undefined;
|
|
@@ -2200,6 +2741,13 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2200
2741
|
EtherFiWrap?: undefined;
|
|
2201
2742
|
EtherFiUnwrap?: undefined;
|
|
2202
2743
|
KingClaim?: undefined;
|
|
2744
|
+
FluidVaultT1Open?: undefined;
|
|
2745
|
+
FluidVaultT1Adjust?: undefined;
|
|
2746
|
+
FluidVaultT1Borrow?: undefined;
|
|
2747
|
+
FluidVaultT1Payback?: undefined;
|
|
2748
|
+
FluidVaultT1Withdraw?: undefined;
|
|
2749
|
+
FluidVaultT1Supply?: undefined;
|
|
2750
|
+
FluidView?: undefined;
|
|
2203
2751
|
FluidClaim?: undefined;
|
|
2204
2752
|
FluidDexOpen?: undefined;
|
|
2205
2753
|
FluidDexSupply?: undefined;
|
|
@@ -2210,9 +2758,11 @@ declare const actionAddresses: (chainId?: null) => {
|
|
|
2210
2758
|
UmbrellaClaimRewards?: undefined;
|
|
2211
2759
|
UmbrellaStake?: undefined;
|
|
2212
2760
|
UmbrellaUnstake?: undefined;
|
|
2213
|
-
|
|
2761
|
+
SFApproveTokens?: undefined;
|
|
2214
2762
|
AaveV3RatioTrigger?: undefined;
|
|
2763
|
+
GasFeeTakerL2?: undefined;
|
|
2215
2764
|
AaveV3RatioCheck?: undefined;
|
|
2765
|
+
MorphoBlueView?: undefined;
|
|
2216
2766
|
};
|
|
2217
2767
|
declare const otherAddressesAllChains: {
|
|
2218
2768
|
[x: number]: {
|
|
@@ -2278,6 +2828,27 @@ declare const otherAddressesAllChains: {
|
|
|
2278
2828
|
GHO?: undefined;
|
|
2279
2829
|
LUSD?: undefined;
|
|
2280
2830
|
BLUSD?: undefined;
|
|
2831
|
+
} | {
|
|
2832
|
+
RecipeExecutor: string;
|
|
2833
|
+
DFSRegistry: string;
|
|
2834
|
+
DSGuardFactory: string;
|
|
2835
|
+
AdminVault: string;
|
|
2836
|
+
DefisaverLogger: string;
|
|
2837
|
+
Empty: string;
|
|
2838
|
+
DFSProxyRegistry?: undefined;
|
|
2839
|
+
ProxyRegistry?: undefined;
|
|
2840
|
+
McdCdpManager?: undefined;
|
|
2841
|
+
BCdpManager?: undefined;
|
|
2842
|
+
AaveDefaultMarket?: undefined;
|
|
2843
|
+
UniswapV3PositionManager?: undefined;
|
|
2844
|
+
RaiWethUniV2LPToken?: undefined;
|
|
2845
|
+
BalancerToken?: undefined;
|
|
2846
|
+
CrvToken?: undefined;
|
|
2847
|
+
CvxToken?: undefined;
|
|
2848
|
+
DAI?: undefined;
|
|
2849
|
+
GHO?: undefined;
|
|
2850
|
+
LUSD?: undefined;
|
|
2851
|
+
BLUSD?: undefined;
|
|
2281
2852
|
};
|
|
2282
2853
|
};
|
|
2283
2854
|
declare const otherAddresses: (chainId?: null) => {
|
|
@@ -2343,6 +2914,27 @@ declare const otherAddresses: (chainId?: null) => {
|
|
|
2343
2914
|
GHO?: undefined;
|
|
2344
2915
|
LUSD?: undefined;
|
|
2345
2916
|
BLUSD?: undefined;
|
|
2917
|
+
} | {
|
|
2918
|
+
RecipeExecutor: string;
|
|
2919
|
+
DFSRegistry: string;
|
|
2920
|
+
DSGuardFactory: string;
|
|
2921
|
+
AdminVault: string;
|
|
2922
|
+
DefisaverLogger: string;
|
|
2923
|
+
Empty: string;
|
|
2924
|
+
DFSProxyRegistry?: undefined;
|
|
2925
|
+
ProxyRegistry?: undefined;
|
|
2926
|
+
McdCdpManager?: undefined;
|
|
2927
|
+
BCdpManager?: undefined;
|
|
2928
|
+
AaveDefaultMarket?: undefined;
|
|
2929
|
+
UniswapV3PositionManager?: undefined;
|
|
2930
|
+
RaiWethUniV2LPToken?: undefined;
|
|
2931
|
+
BalancerToken?: undefined;
|
|
2932
|
+
CrvToken?: undefined;
|
|
2933
|
+
CvxToken?: undefined;
|
|
2934
|
+
DAI?: undefined;
|
|
2935
|
+
GHO?: undefined;
|
|
2936
|
+
LUSD?: undefined;
|
|
2937
|
+
BLUSD?: undefined;
|
|
2346
2938
|
};
|
|
2347
2939
|
export { Action, ActionWithL2, Recipe, Strategy, DfsWeb3, actions, triggers, utils, configure, getNetworkData, CONFIG, networks, actionAddresses, actionAddressesAllChains, otherAddresses, otherAddressesAllChains, getAddr, };
|
|
2348
2940
|
declare const _default: {
|
|
@@ -2643,14 +3235,292 @@ declare const _default: {
|
|
|
2643
3235
|
PullToken: string;
|
|
2644
3236
|
SumInputs: string;
|
|
2645
3237
|
SubInputs: string;
|
|
2646
|
-
ApproveToken: string;
|
|
3238
|
+
ApproveToken: string;
|
|
3239
|
+
SendTokenAndUnwrap: string;
|
|
3240
|
+
ToggleSub: string;
|
|
3241
|
+
CreateSub: string;
|
|
3242
|
+
TokenBalance: string;
|
|
3243
|
+
TokenizedVaultAdapter: string;
|
|
3244
|
+
ChangeProxyOwner: string;
|
|
3245
|
+
PermitToken: string;
|
|
3246
|
+
HandleAuth: string;
|
|
3247
|
+
MerklClaim: string;
|
|
3248
|
+
AaveV3ATokenPayback: string;
|
|
3249
|
+
AaveV3Borrow: string;
|
|
3250
|
+
AaveV3CollateralSwitch: string;
|
|
3251
|
+
AaveV3Payback: string;
|
|
3252
|
+
AaveV3SetEMode: string;
|
|
3253
|
+
AaveV3Supply: string;
|
|
3254
|
+
AaveV3SwapBorrowRateMode: string;
|
|
3255
|
+
AaveV3Withdraw: string;
|
|
3256
|
+
AaveV3ClaimRewards: string;
|
|
3257
|
+
AaveV3DelegateWithSig: string;
|
|
3258
|
+
AaveV3DelegateCredit: string;
|
|
3259
|
+
FLAaveV3NoFee: string;
|
|
3260
|
+
FLAaveV3: string;
|
|
3261
|
+
FLBalancer: string;
|
|
3262
|
+
FLAction: string;
|
|
3263
|
+
AaveV3RatioTrigger: string;
|
|
3264
|
+
GasFeeTakerL2: string;
|
|
3265
|
+
AaveV3RatioCheck: string;
|
|
3266
|
+
UniCollectV3: string;
|
|
3267
|
+
UniMintV3: string;
|
|
3268
|
+
UniSupplyV3: string;
|
|
3269
|
+
UniWithdrawV3: string;
|
|
3270
|
+
UniCreatePoolV3: string;
|
|
3271
|
+
CompV3Allow: string;
|
|
3272
|
+
CompV3Borrow: string;
|
|
3273
|
+
CompV3Claim: string;
|
|
3274
|
+
CompV3Payback: string;
|
|
3275
|
+
CompV3Supply: string;
|
|
3276
|
+
CompV3Transfer: string;
|
|
3277
|
+
CompV3Withdraw: string;
|
|
3278
|
+
SFApproveTokens: string;
|
|
3279
|
+
AutomationV2Unsub?: undefined;
|
|
3280
|
+
UpdateSub?: undefined;
|
|
3281
|
+
TransferNFT?: undefined;
|
|
3282
|
+
SDaiWrap?: undefined;
|
|
3283
|
+
SDaiUnwrap?: undefined;
|
|
3284
|
+
StarknetClaim?: undefined;
|
|
3285
|
+
SkyStake?: undefined;
|
|
3286
|
+
SkyUnstake?: undefined;
|
|
3287
|
+
SkyClaimRewards?: undefined;
|
|
3288
|
+
McdGenerate?: undefined;
|
|
3289
|
+
McdGive?: undefined;
|
|
3290
|
+
McdMerge?: undefined;
|
|
3291
|
+
McdOpen?: undefined;
|
|
3292
|
+
McdPayback?: undefined;
|
|
3293
|
+
McdSupply?: undefined;
|
|
3294
|
+
McdWithdraw?: undefined;
|
|
3295
|
+
McdClaim?: undefined;
|
|
3296
|
+
McdDsrDeposit?: undefined;
|
|
3297
|
+
McdDsrWithdraw?: undefined;
|
|
3298
|
+
McdTokenConverter?: undefined;
|
|
3299
|
+
ReflexerSupply?: undefined;
|
|
3300
|
+
ReflexerWithdraw?: undefined;
|
|
3301
|
+
ReflexerPayback?: undefined;
|
|
3302
|
+
ReflexerGenerate?: undefined;
|
|
3303
|
+
ReflexerOpen?: undefined;
|
|
3304
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
3305
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
3306
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
3307
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
3308
|
+
AaveBorrow?: undefined;
|
|
3309
|
+
AavePayback?: undefined;
|
|
3310
|
+
AaveSupply?: undefined;
|
|
3311
|
+
AaveWithdraw?: undefined;
|
|
3312
|
+
AaveCollateralSwitch?: undefined;
|
|
3313
|
+
AaveUnstake?: undefined;
|
|
3314
|
+
AaveClaimAAVE?: undefined;
|
|
3315
|
+
AaveClaimStkAave?: undefined;
|
|
3316
|
+
AaveV3View?: undefined;
|
|
3317
|
+
GhoClaimAAVE?: undefined;
|
|
3318
|
+
GhoUnstake?: undefined;
|
|
3319
|
+
GhoStake?: undefined;
|
|
3320
|
+
LSVWithdraw?: undefined;
|
|
3321
|
+
LSVBorrow?: undefined;
|
|
3322
|
+
LSVSupply?: undefined;
|
|
3323
|
+
LSVPayback?: undefined;
|
|
3324
|
+
LSVSell?: undefined;
|
|
3325
|
+
MorphoAaveV2Borrow?: undefined;
|
|
3326
|
+
MorphoAaveV2Payback?: undefined;
|
|
3327
|
+
MorphoAaveV2Supply?: undefined;
|
|
3328
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
3329
|
+
MorphoClaim?: undefined;
|
|
3330
|
+
MorphoAaveV3Borrow?: undefined;
|
|
3331
|
+
MorphoAaveV3Payback?: undefined;
|
|
3332
|
+
MorphoAaveV3Supply?: undefined;
|
|
3333
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
3334
|
+
MorphoAaveV3SetManager?: undefined;
|
|
3335
|
+
SparkBorrow?: undefined;
|
|
3336
|
+
SparkClaimRewards?: undefined;
|
|
3337
|
+
SparkCollateralSwitch?: undefined;
|
|
3338
|
+
SparkPayback?: undefined;
|
|
3339
|
+
SparkSetEMode?: undefined;
|
|
3340
|
+
SparkSpTokenPayback?: undefined;
|
|
3341
|
+
SparkSupply?: undefined;
|
|
3342
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
3343
|
+
SparkWithdraw?: undefined;
|
|
3344
|
+
SparkDelegateCredit?: undefined;
|
|
3345
|
+
SparkDelegateWithSig?: undefined;
|
|
3346
|
+
SparkSPKClaim?: undefined;
|
|
3347
|
+
CompBorrow?: undefined;
|
|
3348
|
+
CompClaim?: undefined;
|
|
3349
|
+
CompPayback?: undefined;
|
|
3350
|
+
CompSupply?: undefined;
|
|
3351
|
+
CompWithdraw?: undefined;
|
|
3352
|
+
CompGetDebt?: undefined;
|
|
3353
|
+
CompCollateralSwitch?: undefined;
|
|
3354
|
+
FLAaveV2?: undefined;
|
|
3355
|
+
FLAaveV3CarryDebt?: undefined;
|
|
3356
|
+
FLDyDx?: undefined;
|
|
3357
|
+
FLMaker?: undefined;
|
|
3358
|
+
FLSpark?: undefined;
|
|
3359
|
+
FLUniV3?: undefined;
|
|
3360
|
+
FLGho?: undefined;
|
|
3361
|
+
FLMorphoBlue?: undefined;
|
|
3362
|
+
UniSupply?: undefined;
|
|
3363
|
+
UniWithdraw?: undefined;
|
|
3364
|
+
DyDxWithdraw?: undefined;
|
|
3365
|
+
YearnSupply?: undefined;
|
|
3366
|
+
YearnWithdraw?: undefined;
|
|
3367
|
+
LiquityClose?: undefined;
|
|
3368
|
+
LiquityBorrow?: undefined;
|
|
3369
|
+
LiquityOpen?: undefined;
|
|
3370
|
+
LiquityPayback?: undefined;
|
|
3371
|
+
LiquityWithdraw?: undefined;
|
|
3372
|
+
LiquitySupply?: undefined;
|
|
3373
|
+
LiquitySPDeposit?: undefined;
|
|
3374
|
+
LiquitySPWithdraw?: undefined;
|
|
3375
|
+
LiquityStake?: undefined;
|
|
3376
|
+
LiquityUnstake?: undefined;
|
|
3377
|
+
LiquityEthGainToTrove?: undefined;
|
|
3378
|
+
LiquityClaim?: undefined;
|
|
3379
|
+
LiquityRedeem?: undefined;
|
|
3380
|
+
LiquityAdjust?: undefined;
|
|
3381
|
+
LiquityV2CloseLegacy?: undefined;
|
|
3382
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
3383
|
+
LiquityV2Open?: undefined;
|
|
3384
|
+
LiquityV2Close?: undefined;
|
|
3385
|
+
LiquityV2Supply?: undefined;
|
|
3386
|
+
LiquityV2Withdraw?: undefined;
|
|
3387
|
+
LiquityV2Borrow?: undefined;
|
|
3388
|
+
LiquityV2Payback?: undefined;
|
|
3389
|
+
LiquityV2Claim?: undefined;
|
|
3390
|
+
LiquityV2Adjust?: undefined;
|
|
3391
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
3392
|
+
LiquityV2SPDeposit?: undefined;
|
|
3393
|
+
LiquityV2SPWithdraw?: undefined;
|
|
3394
|
+
LiquityV2SPClaimColl?: undefined;
|
|
3395
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
3396
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
3397
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
3398
|
+
LidoStake?: undefined;
|
|
3399
|
+
LidoWrap?: undefined;
|
|
3400
|
+
LidoUnwrap?: undefined;
|
|
3401
|
+
InstPullTokens?: undefined;
|
|
3402
|
+
BalancerV2Supply?: undefined;
|
|
3403
|
+
BalancerV2Withdraw?: undefined;
|
|
3404
|
+
BalancerV2Claim?: undefined;
|
|
3405
|
+
GUniWithdraw?: undefined;
|
|
3406
|
+
GUniDeposit?: undefined;
|
|
3407
|
+
RariDeposit?: undefined;
|
|
3408
|
+
RariWithdraw?: undefined;
|
|
3409
|
+
MStableDeposit?: undefined;
|
|
3410
|
+
MStableWithdraw?: undefined;
|
|
3411
|
+
MStableClaim?: undefined;
|
|
3412
|
+
McdRatioCheck?: undefined;
|
|
3413
|
+
GasFeeTaker?: undefined;
|
|
3414
|
+
CurveStethPoolDeposit?: undefined;
|
|
3415
|
+
CurveStethPoolWithdraw?: undefined;
|
|
3416
|
+
CurveDeposit?: undefined;
|
|
3417
|
+
CurveWithdraw?: undefined;
|
|
3418
|
+
McdBoostComposite?: undefined;
|
|
3419
|
+
McdRepayComposite?: undefined;
|
|
3420
|
+
FLEuler?: undefined;
|
|
3421
|
+
TrailingStopTrigger?: undefined;
|
|
3422
|
+
CBRebondTrigger?: undefined;
|
|
3423
|
+
CBUpdateRebondSub?: undefined;
|
|
3424
|
+
LiquityRatioCheck?: undefined;
|
|
3425
|
+
ConvexDeposit?: undefined;
|
|
3426
|
+
ConvexWithdraw?: undefined;
|
|
3427
|
+
ConvexClaim?: undefined;
|
|
3428
|
+
CBCreate?: undefined;
|
|
3429
|
+
CBRedeem?: undefined;
|
|
3430
|
+
CBChickenIn?: undefined;
|
|
3431
|
+
CBChickenOut?: undefined;
|
|
3432
|
+
CBCreateRebondSub?: undefined;
|
|
3433
|
+
FetchBondId?: undefined;
|
|
3434
|
+
CurveUsdBorrow?: undefined;
|
|
3435
|
+
CurveUsdCreate?: undefined;
|
|
3436
|
+
CurveUsdPayback?: undefined;
|
|
3437
|
+
CurveUsdSupply?: undefined;
|
|
3438
|
+
CurveUsdAdjust?: undefined;
|
|
3439
|
+
CurveUsdWithdraw?: undefined;
|
|
3440
|
+
CurveUsdLevCreate?: undefined;
|
|
3441
|
+
CurveUsdRepay?: undefined;
|
|
3442
|
+
CurveUsdSwapper?: undefined;
|
|
3443
|
+
CurveUsdSwapperTransient?: undefined;
|
|
3444
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
3445
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
3446
|
+
CurveUsdGetDebt?: undefined;
|
|
3447
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
3448
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
3449
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
3450
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
3451
|
+
CurveUsdRepayTransient?: undefined;
|
|
3452
|
+
MorphoBlueSupply?: undefined;
|
|
3453
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
3454
|
+
MorphoBlueWithdraw?: undefined;
|
|
3455
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
3456
|
+
MorphoBlueBorrow?: undefined;
|
|
3457
|
+
MorphoBluePayback?: undefined;
|
|
3458
|
+
MorphoBlueSetAuth?: undefined;
|
|
3459
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
3460
|
+
MorphoTokenWrap?: undefined;
|
|
3461
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
3462
|
+
MorphoBlueClaim?: undefined;
|
|
3463
|
+
LlamaLendCreate?: undefined;
|
|
3464
|
+
LlamaLendSupply?: undefined;
|
|
3465
|
+
LlamaLendBorrow?: undefined;
|
|
3466
|
+
LlamaLendWithdraw?: undefined;
|
|
3467
|
+
LlamaLendPayback?: undefined;
|
|
3468
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
3469
|
+
LlamaLendGetDebt?: undefined;
|
|
3470
|
+
LlamaLendBoost?: undefined;
|
|
3471
|
+
LlamaLendRepay?: undefined;
|
|
3472
|
+
LlamaLendLevCreate?: undefined;
|
|
3473
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
3474
|
+
EulerV2Supply?: undefined;
|
|
3475
|
+
EulerV2Withdraw?: undefined;
|
|
3476
|
+
EulerV2Borrow?: undefined;
|
|
3477
|
+
EulerV2Payback?: undefined;
|
|
3478
|
+
EulerV2CollateralSwitch?: undefined;
|
|
3479
|
+
EulerV2View?: undefined;
|
|
3480
|
+
RenzoStake?: undefined;
|
|
3481
|
+
EtherFiStake?: undefined;
|
|
3482
|
+
EtherFiWrap?: undefined;
|
|
3483
|
+
EtherFiUnwrap?: undefined;
|
|
3484
|
+
KingClaim?: undefined;
|
|
3485
|
+
FluidVaultT1Open?: undefined;
|
|
3486
|
+
FluidVaultT1Adjust?: undefined;
|
|
3487
|
+
FluidVaultT1Borrow?: undefined;
|
|
3488
|
+
FluidVaultT1Payback?: undefined;
|
|
3489
|
+
FluidVaultT1Withdraw?: undefined;
|
|
3490
|
+
FluidVaultT1Supply?: undefined;
|
|
3491
|
+
FluidView?: undefined;
|
|
3492
|
+
FluidClaim?: undefined;
|
|
3493
|
+
FluidDexOpen?: undefined;
|
|
3494
|
+
FluidDexSupply?: undefined;
|
|
3495
|
+
FluidDexBorrow?: undefined;
|
|
3496
|
+
FluidDexPayback?: undefined;
|
|
3497
|
+
FluidDexWithdraw?: undefined;
|
|
3498
|
+
PendleTokenRedeem?: undefined;
|
|
3499
|
+
UmbrellaClaimRewards?: undefined;
|
|
3500
|
+
UmbrellaStake?: undefined;
|
|
3501
|
+
UmbrellaUnstake?: undefined;
|
|
3502
|
+
MorphoBlueView?: undefined;
|
|
3503
|
+
} | {
|
|
3504
|
+
DFSSell: string;
|
|
3505
|
+
DFSSellNoFee: string;
|
|
3506
|
+
WrapEth: string;
|
|
3507
|
+
UnwrapEth: string;
|
|
3508
|
+
SendToken: string;
|
|
3509
|
+
SendTokens: string;
|
|
3510
|
+
PullToken: string;
|
|
3511
|
+
SumInputs: string;
|
|
3512
|
+
SubInputs: string;
|
|
2647
3513
|
SendTokenAndUnwrap: string;
|
|
3514
|
+
ApproveToken: string;
|
|
2648
3515
|
ToggleSub: string;
|
|
3516
|
+
CreateSub: string;
|
|
2649
3517
|
TokenBalance: string;
|
|
2650
3518
|
TokenizedVaultAdapter: string;
|
|
2651
3519
|
ChangeProxyOwner: string;
|
|
2652
3520
|
PermitToken: string;
|
|
2653
3521
|
HandleAuth: string;
|
|
3522
|
+
UpdateSub: string;
|
|
3523
|
+
TransferNFT: string;
|
|
2654
3524
|
MerklClaim: string;
|
|
2655
3525
|
AaveV3ATokenPayback: string;
|
|
2656
3526
|
AaveV3Borrow: string;
|
|
@@ -2662,12 +3532,18 @@ declare const _default: {
|
|
|
2662
3532
|
AaveV3Withdraw: string;
|
|
2663
3533
|
AaveV3ClaimRewards: string;
|
|
2664
3534
|
AaveV3DelegateWithSig: string;
|
|
2665
|
-
|
|
3535
|
+
CompV3Allow: string;
|
|
3536
|
+
CompV3Borrow: string;
|
|
3537
|
+
CompV3Claim: string;
|
|
3538
|
+
CompV3Payback: string;
|
|
3539
|
+
CompV3Supply: string;
|
|
3540
|
+
CompV3Transfer: string;
|
|
3541
|
+
CompV3Withdraw: string;
|
|
2666
3542
|
FLAaveV3NoFee: string;
|
|
2667
3543
|
FLAaveV3: string;
|
|
2668
3544
|
FLBalancer: string;
|
|
3545
|
+
FLUniV3: string;
|
|
2669
3546
|
FLAction: string;
|
|
2670
|
-
AaveV3RatioTrigger: string;
|
|
2671
3547
|
GasFeeTakerL2: string;
|
|
2672
3548
|
AaveV3RatioCheck: string;
|
|
2673
3549
|
UniCollectV3: string;
|
|
@@ -2675,18 +3551,31 @@ declare const _default: {
|
|
|
2675
3551
|
UniSupplyV3: string;
|
|
2676
3552
|
UniWithdrawV3: string;
|
|
2677
3553
|
UniCreatePoolV3: string;
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
3554
|
+
LlamaLendCreate: string;
|
|
3555
|
+
LlamaLendSupply: string;
|
|
3556
|
+
LlamaLendBorrow: string;
|
|
3557
|
+
LlamaLendWithdraw: string;
|
|
3558
|
+
LlamaLendPayback: string;
|
|
3559
|
+
LlamaLendSelfLiquidate: string;
|
|
3560
|
+
LlamaLendGetDebt: string;
|
|
3561
|
+
LlamaLendBoost: string;
|
|
3562
|
+
LlamaLendRepay: string;
|
|
3563
|
+
LlamaLendLevCreate: string;
|
|
3564
|
+
LlamaLendSelfLiquidateWithColl: string;
|
|
3565
|
+
FluidVaultT1Open: string;
|
|
3566
|
+
FluidVaultT1Adjust: string;
|
|
3567
|
+
FluidVaultT1Borrow: string;
|
|
3568
|
+
FluidVaultT1Payback: string;
|
|
3569
|
+
FluidVaultT1Withdraw: string;
|
|
3570
|
+
FluidVaultT1Supply: string;
|
|
3571
|
+
FluidView: string;
|
|
3572
|
+
FluidDexOpen: string;
|
|
3573
|
+
FluidDexSupply: string;
|
|
3574
|
+
FluidDexBorrow: string;
|
|
3575
|
+
FluidDexPayback: string;
|
|
3576
|
+
FluidDexWithdraw: string;
|
|
2685
3577
|
SFApproveTokens: string;
|
|
2686
3578
|
AutomationV2Unsub?: undefined;
|
|
2687
|
-
UpdateSub?: undefined;
|
|
2688
|
-
TransferNFT?: undefined;
|
|
2689
|
-
CreateSub?: undefined;
|
|
2690
3579
|
SDaiWrap?: undefined;
|
|
2691
3580
|
SDaiUnwrap?: undefined;
|
|
2692
3581
|
StarknetClaim?: undefined;
|
|
@@ -2764,7 +3653,6 @@ declare const _default: {
|
|
|
2764
3653
|
FLDyDx?: undefined;
|
|
2765
3654
|
FLMaker?: undefined;
|
|
2766
3655
|
FLSpark?: undefined;
|
|
2767
|
-
FLUniV3?: undefined;
|
|
2768
3656
|
FLGho?: undefined;
|
|
2769
3657
|
FLMorphoBlue?: undefined;
|
|
2770
3658
|
UniSupply?: undefined;
|
|
@@ -2868,17 +3756,6 @@ declare const _default: {
|
|
|
2868
3756
|
MorphoTokenWrap?: undefined;
|
|
2869
3757
|
MorphoBlueReallocateLiquidity?: undefined;
|
|
2870
3758
|
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
3759
|
EulerV2Supply?: undefined;
|
|
2883
3760
|
EulerV2Withdraw?: undefined;
|
|
2884
3761
|
EulerV2Borrow?: undefined;
|
|
@@ -2890,23 +3767,13 @@ declare const _default: {
|
|
|
2890
3767
|
EtherFiWrap?: undefined;
|
|
2891
3768
|
EtherFiUnwrap?: undefined;
|
|
2892
3769
|
KingClaim?: undefined;
|
|
2893
|
-
FluidVaultT1Open?: undefined;
|
|
2894
|
-
FluidVaultT1Adjust?: undefined;
|
|
2895
|
-
FluidVaultT1Borrow?: undefined;
|
|
2896
|
-
FluidVaultT1Payback?: undefined;
|
|
2897
|
-
FluidVaultT1Withdraw?: undefined;
|
|
2898
|
-
FluidVaultT1Supply?: undefined;
|
|
2899
|
-
FluidView?: undefined;
|
|
2900
3770
|
FluidClaim?: undefined;
|
|
2901
|
-
FluidDexOpen?: undefined;
|
|
2902
|
-
FluidDexSupply?: undefined;
|
|
2903
|
-
FluidDexBorrow?: undefined;
|
|
2904
|
-
FluidDexPayback?: undefined;
|
|
2905
|
-
FluidDexWithdraw?: undefined;
|
|
2906
3771
|
PendleTokenRedeem?: undefined;
|
|
2907
3772
|
UmbrellaClaimRewards?: undefined;
|
|
2908
3773
|
UmbrellaStake?: undefined;
|
|
2909
3774
|
UmbrellaUnstake?: undefined;
|
|
3775
|
+
AaveV3DelegateCredit?: undefined;
|
|
3776
|
+
AaveV3RatioTrigger?: undefined;
|
|
2910
3777
|
MorphoBlueView?: undefined;
|
|
2911
3778
|
} | {
|
|
2912
3779
|
DFSSell: string;
|
|
@@ -2916,29 +3783,34 @@ declare const _default: {
|
|
|
2916
3783
|
SendToken: string;
|
|
2917
3784
|
SendTokens: string;
|
|
2918
3785
|
PullToken: string;
|
|
3786
|
+
ApproveToken: string;
|
|
2919
3787
|
SumInputs: string;
|
|
2920
3788
|
SubInputs: string;
|
|
2921
|
-
SendTokenAndUnwrap: string;
|
|
2922
|
-
ApproveToken: string;
|
|
2923
|
-
ToggleSub: string;
|
|
2924
|
-
CreateSub: string;
|
|
2925
3789
|
TokenBalance: string;
|
|
2926
|
-
TokenizedVaultAdapter: string;
|
|
2927
3790
|
ChangeProxyOwner: string;
|
|
2928
3791
|
PermitToken: string;
|
|
2929
3792
|
HandleAuth: string;
|
|
3793
|
+
ToggleSub: string;
|
|
3794
|
+
CreateSub: string;
|
|
2930
3795
|
UpdateSub: string;
|
|
2931
|
-
TransferNFT: string;
|
|
2932
3796
|
MerklClaim: string;
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
3797
|
+
TransferNFT: string;
|
|
3798
|
+
GasFeeTakerL2: string;
|
|
3799
|
+
FLAaveV3: string;
|
|
3800
|
+
FLBalancer: string;
|
|
3801
|
+
FLUniV3: string;
|
|
3802
|
+
FLAction: string;
|
|
3803
|
+
FLMorphoBlue: string;
|
|
2940
3804
|
AaveV3Withdraw: string;
|
|
3805
|
+
AaveV3SwapBorrowRateMode: string;
|
|
3806
|
+
AaveV3Supply: string;
|
|
3807
|
+
AaveV3SetEMode: string;
|
|
3808
|
+
AaveV3Payback: string;
|
|
3809
|
+
AaveV3CollateralSwitch: string;
|
|
2941
3810
|
AaveV3ClaimRewards: string;
|
|
3811
|
+
AaveV3Borrow: string;
|
|
3812
|
+
AaveV3ATokenPayback: string;
|
|
3813
|
+
AaveV3View: string;
|
|
2942
3814
|
AaveV3DelegateWithSig: string;
|
|
2943
3815
|
CompV3Allow: string;
|
|
2944
3816
|
CompV3Borrow: string;
|
|
@@ -2947,29 +3819,17 @@ declare const _default: {
|
|
|
2947
3819
|
CompV3Supply: string;
|
|
2948
3820
|
CompV3Transfer: string;
|
|
2949
3821
|
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;
|
|
3822
|
+
MorphoBlueSupply: string;
|
|
3823
|
+
MorphoBlueSupplyCollateral: string;
|
|
3824
|
+
MorphoBlueWithdraw: string;
|
|
3825
|
+
MorphoBlueWithdrawCollateral: string;
|
|
3826
|
+
MorphoBlueBorrow: string;
|
|
3827
|
+
MorphoBluePayback: string;
|
|
3828
|
+
MorphoBlueSetAuth: string;
|
|
3829
|
+
MorphoBlueSetAuthWithSig: string;
|
|
3830
|
+
MorphoBlueView: string;
|
|
3831
|
+
MorphoBlueReallocateLiquidity: string;
|
|
3832
|
+
MorphoBlueClaim: string;
|
|
2973
3833
|
FluidVaultT1Open: string;
|
|
2974
3834
|
FluidVaultT1Adjust: string;
|
|
2975
3835
|
FluidVaultT1Borrow: string;
|
|
@@ -2977,13 +3837,10 @@ declare const _default: {
|
|
|
2977
3837
|
FluidVaultT1Withdraw: string;
|
|
2978
3838
|
FluidVaultT1Supply: string;
|
|
2979
3839
|
FluidView: string;
|
|
2980
|
-
|
|
2981
|
-
FluidDexSupply: string;
|
|
2982
|
-
FluidDexBorrow: string;
|
|
2983
|
-
FluidDexPayback: string;
|
|
2984
|
-
FluidDexWithdraw: string;
|
|
3840
|
+
TokenizedVaultAdapter: string;
|
|
2985
3841
|
SFApproveTokens: string;
|
|
2986
3842
|
AutomationV2Unsub?: undefined;
|
|
3843
|
+
SendTokenAndUnwrap?: undefined;
|
|
2987
3844
|
SDaiWrap?: undefined;
|
|
2988
3845
|
SDaiUnwrap?: undefined;
|
|
2989
3846
|
StarknetClaim?: undefined;
|
|
@@ -3018,7 +3875,6 @@ declare const _default: {
|
|
|
3018
3875
|
AaveUnstake?: undefined;
|
|
3019
3876
|
AaveClaimAAVE?: undefined;
|
|
3020
3877
|
AaveClaimStkAave?: undefined;
|
|
3021
|
-
AaveV3View?: undefined;
|
|
3022
3878
|
GhoClaimAAVE?: undefined;
|
|
3023
3879
|
GhoUnstake?: undefined;
|
|
3024
3880
|
GhoStake?: undefined;
|
|
@@ -3057,14 +3913,19 @@ declare const _default: {
|
|
|
3057
3913
|
CompGetDebt?: undefined;
|
|
3058
3914
|
CompCollateralSwitch?: undefined;
|
|
3059
3915
|
FLAaveV2?: undefined;
|
|
3916
|
+
FLAaveV3NoFee?: undefined;
|
|
3060
3917
|
FLAaveV3CarryDebt?: undefined;
|
|
3061
3918
|
FLDyDx?: undefined;
|
|
3062
3919
|
FLMaker?: undefined;
|
|
3063
3920
|
FLSpark?: undefined;
|
|
3064
3921
|
FLGho?: undefined;
|
|
3065
|
-
FLMorphoBlue?: undefined;
|
|
3066
3922
|
UniSupply?: undefined;
|
|
3067
3923
|
UniWithdraw?: undefined;
|
|
3924
|
+
UniCollectV3?: undefined;
|
|
3925
|
+
UniMintV3?: undefined;
|
|
3926
|
+
UniSupplyV3?: undefined;
|
|
3927
|
+
UniWithdrawV3?: undefined;
|
|
3928
|
+
UniCreatePoolV3?: undefined;
|
|
3068
3929
|
DyDxWithdraw?: undefined;
|
|
3069
3930
|
YearnSupply?: undefined;
|
|
3070
3931
|
YearnWithdraw?: undefined;
|
|
@@ -3153,17 +4014,18 @@ declare const _default: {
|
|
|
3153
4014
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
3154
4015
|
CurveUsdLevCreateTransient?: undefined;
|
|
3155
4016
|
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
4017
|
MorphoTokenWrap?: undefined;
|
|
3165
|
-
|
|
3166
|
-
|
|
4018
|
+
LlamaLendCreate?: undefined;
|
|
4019
|
+
LlamaLendSupply?: undefined;
|
|
4020
|
+
LlamaLendBorrow?: undefined;
|
|
4021
|
+
LlamaLendWithdraw?: undefined;
|
|
4022
|
+
LlamaLendPayback?: undefined;
|
|
4023
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
4024
|
+
LlamaLendGetDebt?: undefined;
|
|
4025
|
+
LlamaLendBoost?: undefined;
|
|
4026
|
+
LlamaLendRepay?: undefined;
|
|
4027
|
+
LlamaLendLevCreate?: undefined;
|
|
4028
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
3167
4029
|
EulerV2Supply?: undefined;
|
|
3168
4030
|
EulerV2Withdraw?: undefined;
|
|
3169
4031
|
EulerV2Borrow?: undefined;
|
|
@@ -3176,13 +4038,18 @@ declare const _default: {
|
|
|
3176
4038
|
EtherFiUnwrap?: undefined;
|
|
3177
4039
|
KingClaim?: undefined;
|
|
3178
4040
|
FluidClaim?: undefined;
|
|
4041
|
+
FluidDexOpen?: undefined;
|
|
4042
|
+
FluidDexSupply?: undefined;
|
|
4043
|
+
FluidDexBorrow?: undefined;
|
|
4044
|
+
FluidDexPayback?: undefined;
|
|
4045
|
+
FluidDexWithdraw?: undefined;
|
|
3179
4046
|
PendleTokenRedeem?: undefined;
|
|
3180
4047
|
UmbrellaClaimRewards?: undefined;
|
|
3181
4048
|
UmbrellaStake?: undefined;
|
|
3182
4049
|
UmbrellaUnstake?: undefined;
|
|
3183
4050
|
AaveV3DelegateCredit?: undefined;
|
|
3184
4051
|
AaveV3RatioTrigger?: undefined;
|
|
3185
|
-
|
|
4052
|
+
AaveV3RatioCheck?: undefined;
|
|
3186
4053
|
} | {
|
|
3187
4054
|
DFSSell: string;
|
|
3188
4055
|
DFSSellNoFee: string;
|
|
@@ -3190,27 +4057,17 @@ declare const _default: {
|
|
|
3190
4057
|
UnwrapEth: string;
|
|
3191
4058
|
SendToken: string;
|
|
3192
4059
|
SendTokens: string;
|
|
4060
|
+
SendTokenAndUnwrap: string;
|
|
3193
4061
|
PullToken: string;
|
|
3194
4062
|
ApproveToken: string;
|
|
3195
4063
|
SumInputs: string;
|
|
3196
4064
|
SubInputs: string;
|
|
3197
4065
|
TokenBalance: string;
|
|
3198
|
-
ChangeProxyOwner: string;
|
|
3199
4066
|
PermitToken: string;
|
|
3200
|
-
HandleAuth: string;
|
|
3201
|
-
ToggleSub: string;
|
|
3202
|
-
CreateSub: string;
|
|
3203
|
-
UpdateSub: string;
|
|
3204
4067
|
MerklClaim: string;
|
|
3205
4068
|
TransferNFT: string;
|
|
3206
|
-
GasFeeTakerL2: string;
|
|
3207
|
-
FLAaveV3: string;
|
|
3208
|
-
FLBalancer: string;
|
|
3209
|
-
FLUniV3: string;
|
|
3210
4069
|
FLAction: string;
|
|
3211
|
-
FLMorphoBlue: string;
|
|
3212
4070
|
AaveV3Withdraw: string;
|
|
3213
|
-
AaveV3SwapBorrowRateMode: string;
|
|
3214
4071
|
AaveV3Supply: string;
|
|
3215
4072
|
AaveV3SetEMode: string;
|
|
3216
4073
|
AaveV3Payback: string;
|
|
@@ -3220,38 +4077,17 @@ declare const _default: {
|
|
|
3220
4077
|
AaveV3ATokenPayback: string;
|
|
3221
4078
|
AaveV3View: string;
|
|
3222
4079
|
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;
|
|
4080
|
+
AaveV3DelegateCredit: string;
|
|
4081
|
+
ChangeProxyOwner?: undefined;
|
|
3250
4082
|
AutomationV2Unsub?: undefined;
|
|
3251
|
-
|
|
4083
|
+
ToggleSub?: undefined;
|
|
4084
|
+
UpdateSub?: undefined;
|
|
4085
|
+
CreateSub?: undefined;
|
|
3252
4086
|
SDaiWrap?: undefined;
|
|
3253
4087
|
SDaiUnwrap?: undefined;
|
|
4088
|
+
TokenizedVaultAdapter?: undefined;
|
|
3254
4089
|
StarknetClaim?: undefined;
|
|
4090
|
+
HandleAuth?: undefined;
|
|
3255
4091
|
SkyStake?: undefined;
|
|
3256
4092
|
SkyUnstake?: undefined;
|
|
3257
4093
|
SkyClaimRewards?: undefined;
|
|
@@ -3283,6 +4119,7 @@ declare const _default: {
|
|
|
3283
4119
|
AaveUnstake?: undefined;
|
|
3284
4120
|
AaveClaimAAVE?: undefined;
|
|
3285
4121
|
AaveClaimStkAave?: undefined;
|
|
4122
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
3286
4123
|
GhoClaimAAVE?: undefined;
|
|
3287
4124
|
GhoUnstake?: undefined;
|
|
3288
4125
|
GhoStake?: undefined;
|
|
@@ -3323,10 +4160,14 @@ declare const _default: {
|
|
|
3323
4160
|
FLAaveV2?: undefined;
|
|
3324
4161
|
FLAaveV3NoFee?: undefined;
|
|
3325
4162
|
FLAaveV3CarryDebt?: undefined;
|
|
4163
|
+
FLAaveV3?: undefined;
|
|
3326
4164
|
FLDyDx?: undefined;
|
|
3327
4165
|
FLMaker?: undefined;
|
|
4166
|
+
FLBalancer?: undefined;
|
|
3328
4167
|
FLSpark?: undefined;
|
|
4168
|
+
FLUniV3?: undefined;
|
|
3329
4169
|
FLGho?: undefined;
|
|
4170
|
+
FLMorphoBlue?: undefined;
|
|
3330
4171
|
UniSupply?: undefined;
|
|
3331
4172
|
UniWithdraw?: undefined;
|
|
3332
4173
|
UniCollectV3?: undefined;
|
|
@@ -3404,6 +4245,13 @@ declare const _default: {
|
|
|
3404
4245
|
CBChickenOut?: undefined;
|
|
3405
4246
|
CBCreateRebondSub?: undefined;
|
|
3406
4247
|
FetchBondId?: undefined;
|
|
4248
|
+
CompV3Allow?: undefined;
|
|
4249
|
+
CompV3Borrow?: undefined;
|
|
4250
|
+
CompV3Claim?: undefined;
|
|
4251
|
+
CompV3Payback?: undefined;
|
|
4252
|
+
CompV3Supply?: undefined;
|
|
4253
|
+
CompV3Transfer?: undefined;
|
|
4254
|
+
CompV3Withdraw?: undefined;
|
|
3407
4255
|
CurveUsdBorrow?: undefined;
|
|
3408
4256
|
CurveUsdCreate?: undefined;
|
|
3409
4257
|
CurveUsdPayback?: undefined;
|
|
@@ -3422,7 +4270,17 @@ declare const _default: {
|
|
|
3422
4270
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
3423
4271
|
CurveUsdLevCreateTransient?: undefined;
|
|
3424
4272
|
CurveUsdRepayTransient?: undefined;
|
|
4273
|
+
MorphoBlueSupply?: undefined;
|
|
4274
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
4275
|
+
MorphoBlueWithdraw?: undefined;
|
|
4276
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
4277
|
+
MorphoBlueBorrow?: undefined;
|
|
4278
|
+
MorphoBluePayback?: undefined;
|
|
4279
|
+
MorphoBlueSetAuth?: undefined;
|
|
4280
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
3425
4281
|
MorphoTokenWrap?: undefined;
|
|
4282
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
4283
|
+
MorphoBlueClaim?: undefined;
|
|
3426
4284
|
LlamaLendCreate?: undefined;
|
|
3427
4285
|
LlamaLendSupply?: undefined;
|
|
3428
4286
|
LlamaLendBorrow?: undefined;
|
|
@@ -3445,6 +4303,13 @@ declare const _default: {
|
|
|
3445
4303
|
EtherFiWrap?: undefined;
|
|
3446
4304
|
EtherFiUnwrap?: undefined;
|
|
3447
4305
|
KingClaim?: undefined;
|
|
4306
|
+
FluidVaultT1Open?: undefined;
|
|
4307
|
+
FluidVaultT1Adjust?: undefined;
|
|
4308
|
+
FluidVaultT1Borrow?: undefined;
|
|
4309
|
+
FluidVaultT1Payback?: undefined;
|
|
4310
|
+
FluidVaultT1Withdraw?: undefined;
|
|
4311
|
+
FluidVaultT1Supply?: undefined;
|
|
4312
|
+
FluidView?: undefined;
|
|
3448
4313
|
FluidClaim?: undefined;
|
|
3449
4314
|
FluidDexOpen?: undefined;
|
|
3450
4315
|
FluidDexSupply?: undefined;
|
|
@@ -3455,9 +4320,11 @@ declare const _default: {
|
|
|
3455
4320
|
UmbrellaClaimRewards?: undefined;
|
|
3456
4321
|
UmbrellaStake?: undefined;
|
|
3457
4322
|
UmbrellaUnstake?: undefined;
|
|
3458
|
-
|
|
4323
|
+
SFApproveTokens?: undefined;
|
|
3459
4324
|
AaveV3RatioTrigger?: undefined;
|
|
4325
|
+
GasFeeTakerL2?: undefined;
|
|
3460
4326
|
AaveV3RatioCheck?: undefined;
|
|
4327
|
+
MorphoBlueView?: undefined;
|
|
3461
4328
|
};
|
|
3462
4329
|
actionAddressesAllChains: {
|
|
3463
4330
|
[x: number]: {
|
|
@@ -3745,14 +4612,292 @@ declare const _default: {
|
|
|
3745
4612
|
PullToken: string;
|
|
3746
4613
|
SumInputs: string;
|
|
3747
4614
|
SubInputs: string;
|
|
3748
|
-
ApproveToken: string;
|
|
4615
|
+
ApproveToken: string;
|
|
4616
|
+
SendTokenAndUnwrap: string;
|
|
4617
|
+
ToggleSub: string;
|
|
4618
|
+
CreateSub: string;
|
|
4619
|
+
TokenBalance: string;
|
|
4620
|
+
TokenizedVaultAdapter: string;
|
|
4621
|
+
ChangeProxyOwner: string;
|
|
4622
|
+
PermitToken: string;
|
|
4623
|
+
HandleAuth: string;
|
|
4624
|
+
MerklClaim: string;
|
|
4625
|
+
AaveV3ATokenPayback: string;
|
|
4626
|
+
AaveV3Borrow: string;
|
|
4627
|
+
AaveV3CollateralSwitch: string;
|
|
4628
|
+
AaveV3Payback: string;
|
|
4629
|
+
AaveV3SetEMode: string;
|
|
4630
|
+
AaveV3Supply: string;
|
|
4631
|
+
AaveV3SwapBorrowRateMode: string;
|
|
4632
|
+
AaveV3Withdraw: string;
|
|
4633
|
+
AaveV3ClaimRewards: string;
|
|
4634
|
+
AaveV3DelegateWithSig: string;
|
|
4635
|
+
AaveV3DelegateCredit: string;
|
|
4636
|
+
FLAaveV3NoFee: string;
|
|
4637
|
+
FLAaveV3: string;
|
|
4638
|
+
FLBalancer: string;
|
|
4639
|
+
FLAction: string;
|
|
4640
|
+
AaveV3RatioTrigger: string;
|
|
4641
|
+
GasFeeTakerL2: string;
|
|
4642
|
+
AaveV3RatioCheck: string;
|
|
4643
|
+
UniCollectV3: string;
|
|
4644
|
+
UniMintV3: string;
|
|
4645
|
+
UniSupplyV3: string;
|
|
4646
|
+
UniWithdrawV3: string;
|
|
4647
|
+
UniCreatePoolV3: string;
|
|
4648
|
+
CompV3Allow: string;
|
|
4649
|
+
CompV3Borrow: string;
|
|
4650
|
+
CompV3Claim: string;
|
|
4651
|
+
CompV3Payback: string;
|
|
4652
|
+
CompV3Supply: string;
|
|
4653
|
+
CompV3Transfer: string;
|
|
4654
|
+
CompV3Withdraw: string;
|
|
4655
|
+
SFApproveTokens: string;
|
|
4656
|
+
AutomationV2Unsub?: undefined;
|
|
4657
|
+
UpdateSub?: undefined;
|
|
4658
|
+
TransferNFT?: undefined;
|
|
4659
|
+
SDaiWrap?: undefined;
|
|
4660
|
+
SDaiUnwrap?: undefined;
|
|
4661
|
+
StarknetClaim?: undefined;
|
|
4662
|
+
SkyStake?: undefined;
|
|
4663
|
+
SkyUnstake?: undefined;
|
|
4664
|
+
SkyClaimRewards?: undefined;
|
|
4665
|
+
McdGenerate?: undefined;
|
|
4666
|
+
McdGive?: undefined;
|
|
4667
|
+
McdMerge?: undefined;
|
|
4668
|
+
McdOpen?: undefined;
|
|
4669
|
+
McdPayback?: undefined;
|
|
4670
|
+
McdSupply?: undefined;
|
|
4671
|
+
McdWithdraw?: undefined;
|
|
4672
|
+
McdClaim?: undefined;
|
|
4673
|
+
McdDsrDeposit?: undefined;
|
|
4674
|
+
McdDsrWithdraw?: undefined;
|
|
4675
|
+
McdTokenConverter?: undefined;
|
|
4676
|
+
ReflexerSupply?: undefined;
|
|
4677
|
+
ReflexerWithdraw?: undefined;
|
|
4678
|
+
ReflexerPayback?: undefined;
|
|
4679
|
+
ReflexerGenerate?: undefined;
|
|
4680
|
+
ReflexerOpen?: undefined;
|
|
4681
|
+
ReflexerWithdrawStuckFunds?: undefined;
|
|
4682
|
+
ReflexerNativeUniV2SaviourDeposit?: undefined;
|
|
4683
|
+
ReflexerNativeUniV2SaviourGetReserves?: undefined;
|
|
4684
|
+
ReflexerNativeUniV2SaviourWithdraw?: undefined;
|
|
4685
|
+
AaveBorrow?: undefined;
|
|
4686
|
+
AavePayback?: undefined;
|
|
4687
|
+
AaveSupply?: undefined;
|
|
4688
|
+
AaveWithdraw?: undefined;
|
|
4689
|
+
AaveCollateralSwitch?: undefined;
|
|
4690
|
+
AaveUnstake?: undefined;
|
|
4691
|
+
AaveClaimAAVE?: undefined;
|
|
4692
|
+
AaveClaimStkAave?: undefined;
|
|
4693
|
+
AaveV3View?: undefined;
|
|
4694
|
+
GhoClaimAAVE?: undefined;
|
|
4695
|
+
GhoUnstake?: undefined;
|
|
4696
|
+
GhoStake?: undefined;
|
|
4697
|
+
LSVWithdraw?: undefined;
|
|
4698
|
+
LSVBorrow?: undefined;
|
|
4699
|
+
LSVSupply?: undefined;
|
|
4700
|
+
LSVPayback?: undefined;
|
|
4701
|
+
LSVSell?: undefined;
|
|
4702
|
+
MorphoAaveV2Borrow?: undefined;
|
|
4703
|
+
MorphoAaveV2Payback?: undefined;
|
|
4704
|
+
MorphoAaveV2Supply?: undefined;
|
|
4705
|
+
MorphoAaveV2Withdraw?: undefined;
|
|
4706
|
+
MorphoClaim?: undefined;
|
|
4707
|
+
MorphoAaveV3Borrow?: undefined;
|
|
4708
|
+
MorphoAaveV3Payback?: undefined;
|
|
4709
|
+
MorphoAaveV3Supply?: undefined;
|
|
4710
|
+
MorphoAaveV3Withdraw?: undefined;
|
|
4711
|
+
MorphoAaveV3SetManager?: undefined;
|
|
4712
|
+
SparkBorrow?: undefined;
|
|
4713
|
+
SparkClaimRewards?: undefined;
|
|
4714
|
+
SparkCollateralSwitch?: undefined;
|
|
4715
|
+
SparkPayback?: undefined;
|
|
4716
|
+
SparkSetEMode?: undefined;
|
|
4717
|
+
SparkSpTokenPayback?: undefined;
|
|
4718
|
+
SparkSupply?: undefined;
|
|
4719
|
+
SparkSwapBorrowRateMode?: undefined;
|
|
4720
|
+
SparkWithdraw?: undefined;
|
|
4721
|
+
SparkDelegateCredit?: undefined;
|
|
4722
|
+
SparkDelegateWithSig?: undefined;
|
|
4723
|
+
SparkSPKClaim?: undefined;
|
|
4724
|
+
CompBorrow?: undefined;
|
|
4725
|
+
CompClaim?: undefined;
|
|
4726
|
+
CompPayback?: undefined;
|
|
4727
|
+
CompSupply?: undefined;
|
|
4728
|
+
CompWithdraw?: undefined;
|
|
4729
|
+
CompGetDebt?: undefined;
|
|
4730
|
+
CompCollateralSwitch?: undefined;
|
|
4731
|
+
FLAaveV2?: undefined;
|
|
4732
|
+
FLAaveV3CarryDebt?: undefined;
|
|
4733
|
+
FLDyDx?: undefined;
|
|
4734
|
+
FLMaker?: undefined;
|
|
4735
|
+
FLSpark?: undefined;
|
|
4736
|
+
FLUniV3?: undefined;
|
|
4737
|
+
FLGho?: undefined;
|
|
4738
|
+
FLMorphoBlue?: undefined;
|
|
4739
|
+
UniSupply?: undefined;
|
|
4740
|
+
UniWithdraw?: undefined;
|
|
4741
|
+
DyDxWithdraw?: undefined;
|
|
4742
|
+
YearnSupply?: undefined;
|
|
4743
|
+
YearnWithdraw?: undefined;
|
|
4744
|
+
LiquityClose?: undefined;
|
|
4745
|
+
LiquityBorrow?: undefined;
|
|
4746
|
+
LiquityOpen?: undefined;
|
|
4747
|
+
LiquityPayback?: undefined;
|
|
4748
|
+
LiquityWithdraw?: undefined;
|
|
4749
|
+
LiquitySupply?: undefined;
|
|
4750
|
+
LiquitySPDeposit?: undefined;
|
|
4751
|
+
LiquitySPWithdraw?: undefined;
|
|
4752
|
+
LiquityStake?: undefined;
|
|
4753
|
+
LiquityUnstake?: undefined;
|
|
4754
|
+
LiquityEthGainToTrove?: undefined;
|
|
4755
|
+
LiquityClaim?: undefined;
|
|
4756
|
+
LiquityRedeem?: undefined;
|
|
4757
|
+
LiquityAdjust?: undefined;
|
|
4758
|
+
LiquityV2CloseLegacy?: undefined;
|
|
4759
|
+
LiquityV2PaybackLegacy?: undefined;
|
|
4760
|
+
LiquityV2Open?: undefined;
|
|
4761
|
+
LiquityV2Close?: undefined;
|
|
4762
|
+
LiquityV2Supply?: undefined;
|
|
4763
|
+
LiquityV2Withdraw?: undefined;
|
|
4764
|
+
LiquityV2Borrow?: undefined;
|
|
4765
|
+
LiquityV2Payback?: undefined;
|
|
4766
|
+
LiquityV2Claim?: undefined;
|
|
4767
|
+
LiquityV2Adjust?: undefined;
|
|
4768
|
+
LiquityV2AdjustInterestRate?: undefined;
|
|
4769
|
+
LiquityV2SPDeposit?: undefined;
|
|
4770
|
+
LiquityV2SPWithdraw?: undefined;
|
|
4771
|
+
LiquityV2SPClaimColl?: undefined;
|
|
4772
|
+
LiquityV2AdjustZombieTrove?: undefined;
|
|
4773
|
+
BprotocolLiquitySPDeposit?: undefined;
|
|
4774
|
+
BprotocolLiquitySPWithdraw?: undefined;
|
|
4775
|
+
LidoStake?: undefined;
|
|
4776
|
+
LidoWrap?: undefined;
|
|
4777
|
+
LidoUnwrap?: undefined;
|
|
4778
|
+
InstPullTokens?: undefined;
|
|
4779
|
+
BalancerV2Supply?: undefined;
|
|
4780
|
+
BalancerV2Withdraw?: undefined;
|
|
4781
|
+
BalancerV2Claim?: undefined;
|
|
4782
|
+
GUniWithdraw?: undefined;
|
|
4783
|
+
GUniDeposit?: undefined;
|
|
4784
|
+
RariDeposit?: undefined;
|
|
4785
|
+
RariWithdraw?: undefined;
|
|
4786
|
+
MStableDeposit?: undefined;
|
|
4787
|
+
MStableWithdraw?: undefined;
|
|
4788
|
+
MStableClaim?: undefined;
|
|
4789
|
+
McdRatioCheck?: undefined;
|
|
4790
|
+
GasFeeTaker?: undefined;
|
|
4791
|
+
CurveStethPoolDeposit?: undefined;
|
|
4792
|
+
CurveStethPoolWithdraw?: undefined;
|
|
4793
|
+
CurveDeposit?: undefined;
|
|
4794
|
+
CurveWithdraw?: undefined;
|
|
4795
|
+
McdBoostComposite?: undefined;
|
|
4796
|
+
McdRepayComposite?: undefined;
|
|
4797
|
+
FLEuler?: undefined;
|
|
4798
|
+
TrailingStopTrigger?: undefined;
|
|
4799
|
+
CBRebondTrigger?: undefined;
|
|
4800
|
+
CBUpdateRebondSub?: undefined;
|
|
4801
|
+
LiquityRatioCheck?: undefined;
|
|
4802
|
+
ConvexDeposit?: undefined;
|
|
4803
|
+
ConvexWithdraw?: undefined;
|
|
4804
|
+
ConvexClaim?: undefined;
|
|
4805
|
+
CBCreate?: undefined;
|
|
4806
|
+
CBRedeem?: undefined;
|
|
4807
|
+
CBChickenIn?: undefined;
|
|
4808
|
+
CBChickenOut?: undefined;
|
|
4809
|
+
CBCreateRebondSub?: undefined;
|
|
4810
|
+
FetchBondId?: undefined;
|
|
4811
|
+
CurveUsdBorrow?: undefined;
|
|
4812
|
+
CurveUsdCreate?: undefined;
|
|
4813
|
+
CurveUsdPayback?: undefined;
|
|
4814
|
+
CurveUsdSupply?: undefined;
|
|
4815
|
+
CurveUsdAdjust?: undefined;
|
|
4816
|
+
CurveUsdWithdraw?: undefined;
|
|
4817
|
+
CurveUsdLevCreate?: undefined;
|
|
4818
|
+
CurveUsdRepay?: undefined;
|
|
4819
|
+
CurveUsdSwapper?: undefined;
|
|
4820
|
+
CurveUsdSwapperTransient?: undefined;
|
|
4821
|
+
CurveUsdSelfLiquidate?: undefined;
|
|
4822
|
+
CurveUsdSelfLiquidateWithColl?: undefined;
|
|
4823
|
+
CurveUsdGetDebt?: undefined;
|
|
4824
|
+
CurveUsdCollRatioTrigger?: undefined;
|
|
4825
|
+
CurveUsdCollRatioCheck?: undefined;
|
|
4826
|
+
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
4827
|
+
CurveUsdLevCreateTransient?: undefined;
|
|
4828
|
+
CurveUsdRepayTransient?: undefined;
|
|
4829
|
+
MorphoBlueSupply?: undefined;
|
|
4830
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
4831
|
+
MorphoBlueWithdraw?: undefined;
|
|
4832
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
4833
|
+
MorphoBlueBorrow?: undefined;
|
|
4834
|
+
MorphoBluePayback?: undefined;
|
|
4835
|
+
MorphoBlueSetAuth?: undefined;
|
|
4836
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
4837
|
+
MorphoTokenWrap?: undefined;
|
|
4838
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
4839
|
+
MorphoBlueClaim?: undefined;
|
|
4840
|
+
LlamaLendCreate?: undefined;
|
|
4841
|
+
LlamaLendSupply?: undefined;
|
|
4842
|
+
LlamaLendBorrow?: undefined;
|
|
4843
|
+
LlamaLendWithdraw?: undefined;
|
|
4844
|
+
LlamaLendPayback?: undefined;
|
|
4845
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
4846
|
+
LlamaLendGetDebt?: undefined;
|
|
4847
|
+
LlamaLendBoost?: undefined;
|
|
4848
|
+
LlamaLendRepay?: undefined;
|
|
4849
|
+
LlamaLendLevCreate?: undefined;
|
|
4850
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
4851
|
+
EulerV2Supply?: undefined;
|
|
4852
|
+
EulerV2Withdraw?: undefined;
|
|
4853
|
+
EulerV2Borrow?: undefined;
|
|
4854
|
+
EulerV2Payback?: undefined;
|
|
4855
|
+
EulerV2CollateralSwitch?: undefined;
|
|
4856
|
+
EulerV2View?: undefined;
|
|
4857
|
+
RenzoStake?: undefined;
|
|
4858
|
+
EtherFiStake?: undefined;
|
|
4859
|
+
EtherFiWrap?: undefined;
|
|
4860
|
+
EtherFiUnwrap?: undefined;
|
|
4861
|
+
KingClaim?: undefined;
|
|
4862
|
+
FluidVaultT1Open?: undefined;
|
|
4863
|
+
FluidVaultT1Adjust?: undefined;
|
|
4864
|
+
FluidVaultT1Borrow?: undefined;
|
|
4865
|
+
FluidVaultT1Payback?: undefined;
|
|
4866
|
+
FluidVaultT1Withdraw?: undefined;
|
|
4867
|
+
FluidVaultT1Supply?: undefined;
|
|
4868
|
+
FluidView?: undefined;
|
|
4869
|
+
FluidClaim?: undefined;
|
|
4870
|
+
FluidDexOpen?: undefined;
|
|
4871
|
+
FluidDexSupply?: undefined;
|
|
4872
|
+
FluidDexBorrow?: undefined;
|
|
4873
|
+
FluidDexPayback?: undefined;
|
|
4874
|
+
FluidDexWithdraw?: undefined;
|
|
4875
|
+
PendleTokenRedeem?: undefined;
|
|
4876
|
+
UmbrellaClaimRewards?: undefined;
|
|
4877
|
+
UmbrellaStake?: undefined;
|
|
4878
|
+
UmbrellaUnstake?: undefined;
|
|
4879
|
+
MorphoBlueView?: undefined;
|
|
4880
|
+
} | {
|
|
4881
|
+
DFSSell: string;
|
|
4882
|
+
DFSSellNoFee: string;
|
|
4883
|
+
WrapEth: string;
|
|
4884
|
+
UnwrapEth: string;
|
|
4885
|
+
SendToken: string;
|
|
4886
|
+
SendTokens: string;
|
|
4887
|
+
PullToken: string;
|
|
4888
|
+
SumInputs: string;
|
|
4889
|
+
SubInputs: string;
|
|
3749
4890
|
SendTokenAndUnwrap: string;
|
|
4891
|
+
ApproveToken: string;
|
|
3750
4892
|
ToggleSub: string;
|
|
4893
|
+
CreateSub: string;
|
|
3751
4894
|
TokenBalance: string;
|
|
3752
4895
|
TokenizedVaultAdapter: string;
|
|
3753
4896
|
ChangeProxyOwner: string;
|
|
3754
4897
|
PermitToken: string;
|
|
3755
4898
|
HandleAuth: string;
|
|
4899
|
+
UpdateSub: string;
|
|
4900
|
+
TransferNFT: string;
|
|
3756
4901
|
MerklClaim: string;
|
|
3757
4902
|
AaveV3ATokenPayback: string;
|
|
3758
4903
|
AaveV3Borrow: string;
|
|
@@ -3764,12 +4909,18 @@ declare const _default: {
|
|
|
3764
4909
|
AaveV3Withdraw: string;
|
|
3765
4910
|
AaveV3ClaimRewards: string;
|
|
3766
4911
|
AaveV3DelegateWithSig: string;
|
|
3767
|
-
|
|
4912
|
+
CompV3Allow: string;
|
|
4913
|
+
CompV3Borrow: string;
|
|
4914
|
+
CompV3Claim: string;
|
|
4915
|
+
CompV3Payback: string;
|
|
4916
|
+
CompV3Supply: string;
|
|
4917
|
+
CompV3Transfer: string;
|
|
4918
|
+
CompV3Withdraw: string;
|
|
3768
4919
|
FLAaveV3NoFee: string;
|
|
3769
4920
|
FLAaveV3: string;
|
|
3770
4921
|
FLBalancer: string;
|
|
4922
|
+
FLUniV3: string;
|
|
3771
4923
|
FLAction: string;
|
|
3772
|
-
AaveV3RatioTrigger: string;
|
|
3773
4924
|
GasFeeTakerL2: string;
|
|
3774
4925
|
AaveV3RatioCheck: string;
|
|
3775
4926
|
UniCollectV3: string;
|
|
@@ -3777,18 +4928,31 @@ declare const _default: {
|
|
|
3777
4928
|
UniSupplyV3: string;
|
|
3778
4929
|
UniWithdrawV3: string;
|
|
3779
4930
|
UniCreatePoolV3: string;
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
4931
|
+
LlamaLendCreate: string;
|
|
4932
|
+
LlamaLendSupply: string;
|
|
4933
|
+
LlamaLendBorrow: string;
|
|
4934
|
+
LlamaLendWithdraw: string;
|
|
4935
|
+
LlamaLendPayback: string;
|
|
4936
|
+
LlamaLendSelfLiquidate: string;
|
|
4937
|
+
LlamaLendGetDebt: string;
|
|
4938
|
+
LlamaLendBoost: string;
|
|
4939
|
+
LlamaLendRepay: string;
|
|
4940
|
+
LlamaLendLevCreate: string;
|
|
4941
|
+
LlamaLendSelfLiquidateWithColl: string;
|
|
4942
|
+
FluidVaultT1Open: string;
|
|
4943
|
+
FluidVaultT1Adjust: string;
|
|
4944
|
+
FluidVaultT1Borrow: string;
|
|
4945
|
+
FluidVaultT1Payback: string;
|
|
4946
|
+
FluidVaultT1Withdraw: string;
|
|
4947
|
+
FluidVaultT1Supply: string;
|
|
4948
|
+
FluidView: string;
|
|
4949
|
+
FluidDexOpen: string;
|
|
4950
|
+
FluidDexSupply: string;
|
|
4951
|
+
FluidDexBorrow: string;
|
|
4952
|
+
FluidDexPayback: string;
|
|
4953
|
+
FluidDexWithdraw: string;
|
|
3787
4954
|
SFApproveTokens: string;
|
|
3788
4955
|
AutomationV2Unsub?: undefined;
|
|
3789
|
-
UpdateSub?: undefined;
|
|
3790
|
-
TransferNFT?: undefined;
|
|
3791
|
-
CreateSub?: undefined;
|
|
3792
4956
|
SDaiWrap?: undefined;
|
|
3793
4957
|
SDaiUnwrap?: undefined;
|
|
3794
4958
|
StarknetClaim?: undefined;
|
|
@@ -3866,7 +5030,6 @@ declare const _default: {
|
|
|
3866
5030
|
FLDyDx?: undefined;
|
|
3867
5031
|
FLMaker?: undefined;
|
|
3868
5032
|
FLSpark?: undefined;
|
|
3869
|
-
FLUniV3?: undefined;
|
|
3870
5033
|
FLGho?: undefined;
|
|
3871
5034
|
FLMorphoBlue?: undefined;
|
|
3872
5035
|
UniSupply?: undefined;
|
|
@@ -3970,17 +5133,6 @@ declare const _default: {
|
|
|
3970
5133
|
MorphoTokenWrap?: undefined;
|
|
3971
5134
|
MorphoBlueReallocateLiquidity?: undefined;
|
|
3972
5135
|
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
5136
|
EulerV2Supply?: undefined;
|
|
3985
5137
|
EulerV2Withdraw?: undefined;
|
|
3986
5138
|
EulerV2Borrow?: undefined;
|
|
@@ -3992,23 +5144,13 @@ declare const _default: {
|
|
|
3992
5144
|
EtherFiWrap?: undefined;
|
|
3993
5145
|
EtherFiUnwrap?: undefined;
|
|
3994
5146
|
KingClaim?: undefined;
|
|
3995
|
-
FluidVaultT1Open?: undefined;
|
|
3996
|
-
FluidVaultT1Adjust?: undefined;
|
|
3997
|
-
FluidVaultT1Borrow?: undefined;
|
|
3998
|
-
FluidVaultT1Payback?: undefined;
|
|
3999
|
-
FluidVaultT1Withdraw?: undefined;
|
|
4000
|
-
FluidVaultT1Supply?: undefined;
|
|
4001
|
-
FluidView?: undefined;
|
|
4002
5147
|
FluidClaim?: undefined;
|
|
4003
|
-
FluidDexOpen?: undefined;
|
|
4004
|
-
FluidDexSupply?: undefined;
|
|
4005
|
-
FluidDexBorrow?: undefined;
|
|
4006
|
-
FluidDexPayback?: undefined;
|
|
4007
|
-
FluidDexWithdraw?: undefined;
|
|
4008
5148
|
PendleTokenRedeem?: undefined;
|
|
4009
5149
|
UmbrellaClaimRewards?: undefined;
|
|
4010
5150
|
UmbrellaStake?: undefined;
|
|
4011
5151
|
UmbrellaUnstake?: undefined;
|
|
5152
|
+
AaveV3DelegateCredit?: undefined;
|
|
5153
|
+
AaveV3RatioTrigger?: undefined;
|
|
4012
5154
|
MorphoBlueView?: undefined;
|
|
4013
5155
|
} | {
|
|
4014
5156
|
DFSSell: string;
|
|
@@ -4018,29 +5160,34 @@ declare const _default: {
|
|
|
4018
5160
|
SendToken: string;
|
|
4019
5161
|
SendTokens: string;
|
|
4020
5162
|
PullToken: string;
|
|
5163
|
+
ApproveToken: string;
|
|
4021
5164
|
SumInputs: string;
|
|
4022
5165
|
SubInputs: string;
|
|
4023
|
-
SendTokenAndUnwrap: string;
|
|
4024
|
-
ApproveToken: string;
|
|
4025
|
-
ToggleSub: string;
|
|
4026
|
-
CreateSub: string;
|
|
4027
5166
|
TokenBalance: string;
|
|
4028
|
-
TokenizedVaultAdapter: string;
|
|
4029
5167
|
ChangeProxyOwner: string;
|
|
4030
5168
|
PermitToken: string;
|
|
4031
5169
|
HandleAuth: string;
|
|
5170
|
+
ToggleSub: string;
|
|
5171
|
+
CreateSub: string;
|
|
4032
5172
|
UpdateSub: string;
|
|
4033
|
-
TransferNFT: string;
|
|
4034
5173
|
MerklClaim: string;
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
5174
|
+
TransferNFT: string;
|
|
5175
|
+
GasFeeTakerL2: string;
|
|
5176
|
+
FLAaveV3: string;
|
|
5177
|
+
FLBalancer: string;
|
|
5178
|
+
FLUniV3: string;
|
|
5179
|
+
FLAction: string;
|
|
5180
|
+
FLMorphoBlue: string;
|
|
4042
5181
|
AaveV3Withdraw: string;
|
|
5182
|
+
AaveV3SwapBorrowRateMode: string;
|
|
5183
|
+
AaveV3Supply: string;
|
|
5184
|
+
AaveV3SetEMode: string;
|
|
5185
|
+
AaveV3Payback: string;
|
|
5186
|
+
AaveV3CollateralSwitch: string;
|
|
4043
5187
|
AaveV3ClaimRewards: string;
|
|
5188
|
+
AaveV3Borrow: string;
|
|
5189
|
+
AaveV3ATokenPayback: string;
|
|
5190
|
+
AaveV3View: string;
|
|
4044
5191
|
AaveV3DelegateWithSig: string;
|
|
4045
5192
|
CompV3Allow: string;
|
|
4046
5193
|
CompV3Borrow: string;
|
|
@@ -4049,29 +5196,17 @@ declare const _default: {
|
|
|
4049
5196
|
CompV3Supply: string;
|
|
4050
5197
|
CompV3Transfer: string;
|
|
4051
5198
|
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;
|
|
5199
|
+
MorphoBlueSupply: string;
|
|
5200
|
+
MorphoBlueSupplyCollateral: string;
|
|
5201
|
+
MorphoBlueWithdraw: string;
|
|
5202
|
+
MorphoBlueWithdrawCollateral: string;
|
|
5203
|
+
MorphoBlueBorrow: string;
|
|
5204
|
+
MorphoBluePayback: string;
|
|
5205
|
+
MorphoBlueSetAuth: string;
|
|
5206
|
+
MorphoBlueSetAuthWithSig: string;
|
|
5207
|
+
MorphoBlueView: string;
|
|
5208
|
+
MorphoBlueReallocateLiquidity: string;
|
|
5209
|
+
MorphoBlueClaim: string;
|
|
4075
5210
|
FluidVaultT1Open: string;
|
|
4076
5211
|
FluidVaultT1Adjust: string;
|
|
4077
5212
|
FluidVaultT1Borrow: string;
|
|
@@ -4079,13 +5214,10 @@ declare const _default: {
|
|
|
4079
5214
|
FluidVaultT1Withdraw: string;
|
|
4080
5215
|
FluidVaultT1Supply: string;
|
|
4081
5216
|
FluidView: string;
|
|
4082
|
-
|
|
4083
|
-
FluidDexSupply: string;
|
|
4084
|
-
FluidDexBorrow: string;
|
|
4085
|
-
FluidDexPayback: string;
|
|
4086
|
-
FluidDexWithdraw: string;
|
|
5217
|
+
TokenizedVaultAdapter: string;
|
|
4087
5218
|
SFApproveTokens: string;
|
|
4088
5219
|
AutomationV2Unsub?: undefined;
|
|
5220
|
+
SendTokenAndUnwrap?: undefined;
|
|
4089
5221
|
SDaiWrap?: undefined;
|
|
4090
5222
|
SDaiUnwrap?: undefined;
|
|
4091
5223
|
StarknetClaim?: undefined;
|
|
@@ -4120,7 +5252,6 @@ declare const _default: {
|
|
|
4120
5252
|
AaveUnstake?: undefined;
|
|
4121
5253
|
AaveClaimAAVE?: undefined;
|
|
4122
5254
|
AaveClaimStkAave?: undefined;
|
|
4123
|
-
AaveV3View?: undefined;
|
|
4124
5255
|
GhoClaimAAVE?: undefined;
|
|
4125
5256
|
GhoUnstake?: undefined;
|
|
4126
5257
|
GhoStake?: undefined;
|
|
@@ -4159,14 +5290,19 @@ declare const _default: {
|
|
|
4159
5290
|
CompGetDebt?: undefined;
|
|
4160
5291
|
CompCollateralSwitch?: undefined;
|
|
4161
5292
|
FLAaveV2?: undefined;
|
|
5293
|
+
FLAaveV3NoFee?: undefined;
|
|
4162
5294
|
FLAaveV3CarryDebt?: undefined;
|
|
4163
5295
|
FLDyDx?: undefined;
|
|
4164
5296
|
FLMaker?: undefined;
|
|
4165
5297
|
FLSpark?: undefined;
|
|
4166
5298
|
FLGho?: undefined;
|
|
4167
|
-
FLMorphoBlue?: undefined;
|
|
4168
5299
|
UniSupply?: undefined;
|
|
4169
5300
|
UniWithdraw?: undefined;
|
|
5301
|
+
UniCollectV3?: undefined;
|
|
5302
|
+
UniMintV3?: undefined;
|
|
5303
|
+
UniSupplyV3?: undefined;
|
|
5304
|
+
UniWithdrawV3?: undefined;
|
|
5305
|
+
UniCreatePoolV3?: undefined;
|
|
4170
5306
|
DyDxWithdraw?: undefined;
|
|
4171
5307
|
YearnSupply?: undefined;
|
|
4172
5308
|
YearnWithdraw?: undefined;
|
|
@@ -4255,17 +5391,18 @@ declare const _default: {
|
|
|
4255
5391
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
4256
5392
|
CurveUsdLevCreateTransient?: undefined;
|
|
4257
5393
|
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
5394
|
MorphoTokenWrap?: undefined;
|
|
4267
|
-
|
|
4268
|
-
|
|
5395
|
+
LlamaLendCreate?: undefined;
|
|
5396
|
+
LlamaLendSupply?: undefined;
|
|
5397
|
+
LlamaLendBorrow?: undefined;
|
|
5398
|
+
LlamaLendWithdraw?: undefined;
|
|
5399
|
+
LlamaLendPayback?: undefined;
|
|
5400
|
+
LlamaLendSelfLiquidate?: undefined;
|
|
5401
|
+
LlamaLendGetDebt?: undefined;
|
|
5402
|
+
LlamaLendBoost?: undefined;
|
|
5403
|
+
LlamaLendRepay?: undefined;
|
|
5404
|
+
LlamaLendLevCreate?: undefined;
|
|
5405
|
+
LlamaLendSelfLiquidateWithColl?: undefined;
|
|
4269
5406
|
EulerV2Supply?: undefined;
|
|
4270
5407
|
EulerV2Withdraw?: undefined;
|
|
4271
5408
|
EulerV2Borrow?: undefined;
|
|
@@ -4278,13 +5415,18 @@ declare const _default: {
|
|
|
4278
5415
|
EtherFiUnwrap?: undefined;
|
|
4279
5416
|
KingClaim?: undefined;
|
|
4280
5417
|
FluidClaim?: undefined;
|
|
5418
|
+
FluidDexOpen?: undefined;
|
|
5419
|
+
FluidDexSupply?: undefined;
|
|
5420
|
+
FluidDexBorrow?: undefined;
|
|
5421
|
+
FluidDexPayback?: undefined;
|
|
5422
|
+
FluidDexWithdraw?: undefined;
|
|
4281
5423
|
PendleTokenRedeem?: undefined;
|
|
4282
5424
|
UmbrellaClaimRewards?: undefined;
|
|
4283
5425
|
UmbrellaStake?: undefined;
|
|
4284
5426
|
UmbrellaUnstake?: undefined;
|
|
4285
5427
|
AaveV3DelegateCredit?: undefined;
|
|
4286
5428
|
AaveV3RatioTrigger?: undefined;
|
|
4287
|
-
|
|
5429
|
+
AaveV3RatioCheck?: undefined;
|
|
4288
5430
|
} | {
|
|
4289
5431
|
DFSSell: string;
|
|
4290
5432
|
DFSSellNoFee: string;
|
|
@@ -4292,27 +5434,17 @@ declare const _default: {
|
|
|
4292
5434
|
UnwrapEth: string;
|
|
4293
5435
|
SendToken: string;
|
|
4294
5436
|
SendTokens: string;
|
|
5437
|
+
SendTokenAndUnwrap: string;
|
|
4295
5438
|
PullToken: string;
|
|
4296
5439
|
ApproveToken: string;
|
|
4297
5440
|
SumInputs: string;
|
|
4298
5441
|
SubInputs: string;
|
|
4299
5442
|
TokenBalance: string;
|
|
4300
|
-
ChangeProxyOwner: string;
|
|
4301
5443
|
PermitToken: string;
|
|
4302
|
-
HandleAuth: string;
|
|
4303
|
-
ToggleSub: string;
|
|
4304
|
-
CreateSub: string;
|
|
4305
|
-
UpdateSub: string;
|
|
4306
5444
|
MerklClaim: string;
|
|
4307
5445
|
TransferNFT: string;
|
|
4308
|
-
GasFeeTakerL2: string;
|
|
4309
|
-
FLAaveV3: string;
|
|
4310
|
-
FLBalancer: string;
|
|
4311
|
-
FLUniV3: string;
|
|
4312
5446
|
FLAction: string;
|
|
4313
|
-
FLMorphoBlue: string;
|
|
4314
5447
|
AaveV3Withdraw: string;
|
|
4315
|
-
AaveV3SwapBorrowRateMode: string;
|
|
4316
5448
|
AaveV3Supply: string;
|
|
4317
5449
|
AaveV3SetEMode: string;
|
|
4318
5450
|
AaveV3Payback: string;
|
|
@@ -4322,38 +5454,17 @@ declare const _default: {
|
|
|
4322
5454
|
AaveV3ATokenPayback: string;
|
|
4323
5455
|
AaveV3View: string;
|
|
4324
5456
|
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;
|
|
5457
|
+
AaveV3DelegateCredit: string;
|
|
5458
|
+
ChangeProxyOwner?: undefined;
|
|
4352
5459
|
AutomationV2Unsub?: undefined;
|
|
4353
|
-
|
|
5460
|
+
ToggleSub?: undefined;
|
|
5461
|
+
UpdateSub?: undefined;
|
|
5462
|
+
CreateSub?: undefined;
|
|
4354
5463
|
SDaiWrap?: undefined;
|
|
4355
5464
|
SDaiUnwrap?: undefined;
|
|
5465
|
+
TokenizedVaultAdapter?: undefined;
|
|
4356
5466
|
StarknetClaim?: undefined;
|
|
5467
|
+
HandleAuth?: undefined;
|
|
4357
5468
|
SkyStake?: undefined;
|
|
4358
5469
|
SkyUnstake?: undefined;
|
|
4359
5470
|
SkyClaimRewards?: undefined;
|
|
@@ -4385,6 +5496,7 @@ declare const _default: {
|
|
|
4385
5496
|
AaveUnstake?: undefined;
|
|
4386
5497
|
AaveClaimAAVE?: undefined;
|
|
4387
5498
|
AaveClaimStkAave?: undefined;
|
|
5499
|
+
AaveV3SwapBorrowRateMode?: undefined;
|
|
4388
5500
|
GhoClaimAAVE?: undefined;
|
|
4389
5501
|
GhoUnstake?: undefined;
|
|
4390
5502
|
GhoStake?: undefined;
|
|
@@ -4425,10 +5537,14 @@ declare const _default: {
|
|
|
4425
5537
|
FLAaveV2?: undefined;
|
|
4426
5538
|
FLAaveV3NoFee?: undefined;
|
|
4427
5539
|
FLAaveV3CarryDebt?: undefined;
|
|
5540
|
+
FLAaveV3?: undefined;
|
|
4428
5541
|
FLDyDx?: undefined;
|
|
4429
5542
|
FLMaker?: undefined;
|
|
5543
|
+
FLBalancer?: undefined;
|
|
4430
5544
|
FLSpark?: undefined;
|
|
5545
|
+
FLUniV3?: undefined;
|
|
4431
5546
|
FLGho?: undefined;
|
|
5547
|
+
FLMorphoBlue?: undefined;
|
|
4432
5548
|
UniSupply?: undefined;
|
|
4433
5549
|
UniWithdraw?: undefined;
|
|
4434
5550
|
UniCollectV3?: undefined;
|
|
@@ -4506,6 +5622,13 @@ declare const _default: {
|
|
|
4506
5622
|
CBChickenOut?: undefined;
|
|
4507
5623
|
CBCreateRebondSub?: undefined;
|
|
4508
5624
|
FetchBondId?: undefined;
|
|
5625
|
+
CompV3Allow?: undefined;
|
|
5626
|
+
CompV3Borrow?: undefined;
|
|
5627
|
+
CompV3Claim?: undefined;
|
|
5628
|
+
CompV3Payback?: undefined;
|
|
5629
|
+
CompV3Supply?: undefined;
|
|
5630
|
+
CompV3Transfer?: undefined;
|
|
5631
|
+
CompV3Withdraw?: undefined;
|
|
4509
5632
|
CurveUsdBorrow?: undefined;
|
|
4510
5633
|
CurveUsdCreate?: undefined;
|
|
4511
5634
|
CurveUsdPayback?: undefined;
|
|
@@ -4524,7 +5647,17 @@ declare const _default: {
|
|
|
4524
5647
|
CurveUsdSelfLiquidateWithCollTransient?: undefined;
|
|
4525
5648
|
CurveUsdLevCreateTransient?: undefined;
|
|
4526
5649
|
CurveUsdRepayTransient?: undefined;
|
|
5650
|
+
MorphoBlueSupply?: undefined;
|
|
5651
|
+
MorphoBlueSupplyCollateral?: undefined;
|
|
5652
|
+
MorphoBlueWithdraw?: undefined;
|
|
5653
|
+
MorphoBlueWithdrawCollateral?: undefined;
|
|
5654
|
+
MorphoBlueBorrow?: undefined;
|
|
5655
|
+
MorphoBluePayback?: undefined;
|
|
5656
|
+
MorphoBlueSetAuth?: undefined;
|
|
5657
|
+
MorphoBlueSetAuthWithSig?: undefined;
|
|
4527
5658
|
MorphoTokenWrap?: undefined;
|
|
5659
|
+
MorphoBlueReallocateLiquidity?: undefined;
|
|
5660
|
+
MorphoBlueClaim?: undefined;
|
|
4528
5661
|
LlamaLendCreate?: undefined;
|
|
4529
5662
|
LlamaLendSupply?: undefined;
|
|
4530
5663
|
LlamaLendBorrow?: undefined;
|
|
@@ -4547,6 +5680,13 @@ declare const _default: {
|
|
|
4547
5680
|
EtherFiWrap?: undefined;
|
|
4548
5681
|
EtherFiUnwrap?: undefined;
|
|
4549
5682
|
KingClaim?: undefined;
|
|
5683
|
+
FluidVaultT1Open?: undefined;
|
|
5684
|
+
FluidVaultT1Adjust?: undefined;
|
|
5685
|
+
FluidVaultT1Borrow?: undefined;
|
|
5686
|
+
FluidVaultT1Payback?: undefined;
|
|
5687
|
+
FluidVaultT1Withdraw?: undefined;
|
|
5688
|
+
FluidVaultT1Supply?: undefined;
|
|
5689
|
+
FluidView?: undefined;
|
|
4550
5690
|
FluidClaim?: undefined;
|
|
4551
5691
|
FluidDexOpen?: undefined;
|
|
4552
5692
|
FluidDexSupply?: undefined;
|
|
@@ -4557,9 +5697,11 @@ declare const _default: {
|
|
|
4557
5697
|
UmbrellaClaimRewards?: undefined;
|
|
4558
5698
|
UmbrellaStake?: undefined;
|
|
4559
5699
|
UmbrellaUnstake?: undefined;
|
|
4560
|
-
|
|
5700
|
+
SFApproveTokens?: undefined;
|
|
4561
5701
|
AaveV3RatioTrigger?: undefined;
|
|
5702
|
+
GasFeeTakerL2?: undefined;
|
|
4562
5703
|
AaveV3RatioCheck?: undefined;
|
|
5704
|
+
MorphoBlueView?: undefined;
|
|
4563
5705
|
};
|
|
4564
5706
|
};
|
|
4565
5707
|
otherAddresses: (chainId?: null) => {
|
|
@@ -4625,6 +5767,27 @@ declare const _default: {
|
|
|
4625
5767
|
GHO?: undefined;
|
|
4626
5768
|
LUSD?: undefined;
|
|
4627
5769
|
BLUSD?: undefined;
|
|
5770
|
+
} | {
|
|
5771
|
+
RecipeExecutor: string;
|
|
5772
|
+
DFSRegistry: string;
|
|
5773
|
+
DSGuardFactory: string;
|
|
5774
|
+
AdminVault: string;
|
|
5775
|
+
DefisaverLogger: string;
|
|
5776
|
+
Empty: string;
|
|
5777
|
+
DFSProxyRegistry?: undefined;
|
|
5778
|
+
ProxyRegistry?: undefined;
|
|
5779
|
+
McdCdpManager?: undefined;
|
|
5780
|
+
BCdpManager?: undefined;
|
|
5781
|
+
AaveDefaultMarket?: undefined;
|
|
5782
|
+
UniswapV3PositionManager?: undefined;
|
|
5783
|
+
RaiWethUniV2LPToken?: undefined;
|
|
5784
|
+
BalancerToken?: undefined;
|
|
5785
|
+
CrvToken?: undefined;
|
|
5786
|
+
CvxToken?: undefined;
|
|
5787
|
+
DAI?: undefined;
|
|
5788
|
+
GHO?: undefined;
|
|
5789
|
+
LUSD?: undefined;
|
|
5790
|
+
BLUSD?: undefined;
|
|
4628
5791
|
};
|
|
4629
5792
|
otherAddressesAllChains: {
|
|
4630
5793
|
[x: number]: {
|
|
@@ -4690,6 +5853,27 @@ declare const _default: {
|
|
|
4690
5853
|
GHO?: undefined;
|
|
4691
5854
|
LUSD?: undefined;
|
|
4692
5855
|
BLUSD?: undefined;
|
|
5856
|
+
} | {
|
|
5857
|
+
RecipeExecutor: string;
|
|
5858
|
+
DFSRegistry: string;
|
|
5859
|
+
DSGuardFactory: string;
|
|
5860
|
+
AdminVault: string;
|
|
5861
|
+
DefisaverLogger: string;
|
|
5862
|
+
Empty: string;
|
|
5863
|
+
DFSProxyRegistry?: undefined;
|
|
5864
|
+
ProxyRegistry?: undefined;
|
|
5865
|
+
McdCdpManager?: undefined;
|
|
5866
|
+
BCdpManager?: undefined;
|
|
5867
|
+
AaveDefaultMarket?: undefined;
|
|
5868
|
+
UniswapV3PositionManager?: undefined;
|
|
5869
|
+
RaiWethUniV2LPToken?: undefined;
|
|
5870
|
+
BalancerToken?: undefined;
|
|
5871
|
+
CrvToken?: undefined;
|
|
5872
|
+
CvxToken?: undefined;
|
|
5873
|
+
DAI?: undefined;
|
|
5874
|
+
GHO?: undefined;
|
|
5875
|
+
LUSD?: undefined;
|
|
5876
|
+
BLUSD?: undefined;
|
|
4693
5877
|
};
|
|
4694
5878
|
};
|
|
4695
5879
|
getAddr: (name: string, chainId?: number) => string;
|