@defisaver/automation-sdk 2.1.1 → 2.1.3
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/automation/private/StrategiesAutomation.js +5 -1
- package/esm/constants/index.js +10 -0
- package/esm/services/strategiesService.js +36 -0
- package/esm/services/strategySubService.d.ts +3 -0
- package/esm/services/strategySubService.js +11 -1
- package/esm/services/strategySubService.test.js +62 -1
- package/esm/services/subDataService.d.ts +8 -1
- package/esm/services/subDataService.js +17 -1
- package/esm/services/subDataService.test.js +54 -0
- package/esm/services/triggerService.d.ts +9 -0
- package/esm/services/triggerService.js +16 -1
- package/esm/services/triggerService.test.js +36 -0
- package/esm/types/enums.d.ts +5 -2
- package/esm/types/enums.js +3 -0
- package/esm/types/index.d.ts +5 -1
- package/package.json +2 -2
- package/src/automation/private/StrategiesAutomation.ts +9 -1
- package/src/constants/index.ts +10 -0
- package/src/services/strategiesService.ts +41 -0
- package/src/services/strategySubService.test.ts +67 -1
- package/src/services/strategySubService.ts +21 -0
- package/src/services/subDataService.test.ts +66 -4
- package/src/services/subDataService.ts +24 -0
- package/src/services/triggerService.test.ts +37 -0
- package/src/services/triggerService.ts +24 -0
- package/src/types/enums.ts +3 -0
- package/src/types/index.ts +6 -1
- package/umd/index.js +574 -333
package/umd/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
exports["defisaver-sdk"] = factory(require("decimal.js"), require("web3-utils"), require("web3-eth-abi"), require("@defisaver/tokens"), require("@ethersproject/solidity"), require("@ethersproject/address"), require("axios"));
|
|
8
8
|
else
|
|
9
9
|
root["defisaver-sdk"] = factory(root["decimal.js"], root["web3-utils"], root["web3-eth-abi"], root["@defisaver/tokens"], root["@ethersproject/solidity"], root["@ethersproject/address"], root["axios"]);
|
|
10
|
-
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__18__, __WEBPACK_EXTERNAL_MODULE__19__, __WEBPACK_EXTERNAL_MODULE__20__, __WEBPACK_EXTERNAL_MODULE__149__, __WEBPACK_EXTERNAL_MODULE__150__,
|
|
10
|
+
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__18__, __WEBPACK_EXTERNAL_MODULE__19__, __WEBPACK_EXTERNAL_MODULE__20__, __WEBPACK_EXTERNAL_MODULE__149__, __WEBPACK_EXTERNAL_MODULE__150__, __WEBPACK_EXTERNAL_MODULE__318__) => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ([
|
|
13
13
|
/* 0 */,
|
|
@@ -362,6 +362,16 @@ var MAINNET_BUNDLES_INFO = {
|
|
|
362
362
|
strategyOrBundleId: _types_enums__WEBPACK_IMPORTED_MODULE_0__.Bundles.MainnetIds.COMP_V2_BOOST,
|
|
363
363
|
strategyId: _types_enums__WEBPACK_IMPORTED_MODULE_0__.Strategies.Identifiers.Boost,
|
|
364
364
|
protocol: PROTOCOLS.CompoundV2
|
|
365
|
+
},
|
|
366
|
+
[_types_enums__WEBPACK_IMPORTED_MODULE_0__.Bundles.MainnetIds.CRVUSD_REPAY]: {
|
|
367
|
+
strategyOrBundleId: _types_enums__WEBPACK_IMPORTED_MODULE_0__.Bundles.MainnetIds.CRVUSD_REPAY,
|
|
368
|
+
strategyId: _types_enums__WEBPACK_IMPORTED_MODULE_0__.Strategies.Identifiers.Repay,
|
|
369
|
+
protocol: PROTOCOLS.CrvUSD
|
|
370
|
+
},
|
|
371
|
+
[_types_enums__WEBPACK_IMPORTED_MODULE_0__.Bundles.MainnetIds.CRVUSD_BOOST]: {
|
|
372
|
+
strategyOrBundleId: _types_enums__WEBPACK_IMPORTED_MODULE_0__.Bundles.MainnetIds.CRVUSD_BOOST,
|
|
373
|
+
strategyId: _types_enums__WEBPACK_IMPORTED_MODULE_0__.Strategies.Identifiers.Boost,
|
|
374
|
+
protocol: PROTOCOLS.CrvUSD
|
|
365
375
|
}
|
|
366
376
|
};
|
|
367
377
|
var OPTIMISM_BUNDLES_INFO = {
|
|
@@ -478,6 +488,7 @@ var ProtocolIdentifiers;
|
|
|
478
488
|
StrategiesAutomation["MorphoAaveV2"] = "Morpho-Aave__V2";
|
|
479
489
|
StrategiesAutomation["Exchange"] = "Exchange";
|
|
480
490
|
StrategiesAutomation["Spark"] = "Spark";
|
|
491
|
+
StrategiesAutomation["CrvUSD"] = "CurveUSD";
|
|
481
492
|
})(StrategiesAutomation || (StrategiesAutomation = {}));
|
|
482
493
|
_ProtocolIdentifiers.StrategiesAutomation = StrategiesAutomation;
|
|
483
494
|
var LegacyAutomation;
|
|
@@ -587,6 +598,8 @@ var Bundles;
|
|
|
587
598
|
MainnetIds[MainnetIds["AAVE_V2_BOOST"] = 23] = "AAVE_V2_BOOST";
|
|
588
599
|
MainnetIds[MainnetIds["COMP_V2_REPAY"] = 20] = "COMP_V2_REPAY";
|
|
589
600
|
MainnetIds[MainnetIds["COMP_V2_BOOST"] = 21] = "COMP_V2_BOOST";
|
|
601
|
+
MainnetIds[MainnetIds["CRVUSD_REPAY"] = 26] = "CRVUSD_REPAY";
|
|
602
|
+
MainnetIds[MainnetIds["CRVUSD_BOOST"] = 27] = "CRVUSD_BOOST";
|
|
590
603
|
})(MainnetIds || (MainnetIds = {}));
|
|
591
604
|
_Bundles.MainnetIds = MainnetIds;
|
|
592
605
|
var OptimismIds;
|
|
@@ -1541,7 +1554,9 @@ class StrategiesAutomation extends _Automation__WEBPACK_IMPORTED_MODULE_6__["def
|
|
|
1541
1554
|
var copyList = [...list];
|
|
1542
1555
|
if ((0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(current)) {
|
|
1543
1556
|
if (current.specific.mergeWithSameId) {
|
|
1544
|
-
var mergePairIndex = copyList.findIndex(s => s && s.specific.mergeWithSameId && s.owner === current.owner && s.strategy.strategyId === current.strategy.strategyId && s.protocol.id === current.protocol.id
|
|
1557
|
+
var mergePairIndex = copyList.findIndex(s => s && s.specific.mergeWithSameId && s.owner === current.owner && s.strategy.strategyId === current.strategy.strategyId && s.protocol.id === current.protocol.id && (s.protocol.id !== _types_enums__WEBPACK_IMPORTED_MODULE_1__.ProtocolIdentifiers.StrategiesAutomation.MakerDAO // reflexer needs to get added if we have it
|
|
1558
|
+
|| s.strategyData.decoded.subData.vaultId === current.strategyData.decoded.triggerData.vaultId) && (s.protocol.id !== _types_enums__WEBPACK_IMPORTED_MODULE_1__.ProtocolIdentifiers.StrategiesAutomation.CrvUSD // merge only crvUSD leverage management for the same market
|
|
1559
|
+
|| s.strategyData.decoded.subData.controller.toLowerCase() === current.strategyData.decoded.triggerData.controller.toLowerCase()));
|
|
1545
1560
|
if (mergePairIndex !== -1) {
|
|
1546
1561
|
var mergePair = copyList[mergePairIndex];
|
|
1547
1562
|
if ((0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(mergePair)) {
|
|
@@ -1603,7 +1618,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1603
1618
|
/* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(5);
|
|
1604
1619
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(17);
|
|
1605
1620
|
/* harmony import */ var _subDataService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(30);
|
|
1606
|
-
/* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
1621
|
+
/* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(321);
|
|
1607
1622
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
1608
1623
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
1609
1624
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
@@ -2151,6 +2166,43 @@ function parseLiquityDebtInFrontRepay(position, parseData) {
|
|
|
2151
2166
|
};
|
|
2152
2167
|
return _position;
|
|
2153
2168
|
}
|
|
2169
|
+
function parseCrvUSDLeverageManagement(position, parseData) {
|
|
2170
|
+
var _position = (0,lodash__WEBPACK_IMPORTED_MODULE_1__.cloneDeep)(position);
|
|
2171
|
+
var {
|
|
2172
|
+
subStruct,
|
|
2173
|
+
subId,
|
|
2174
|
+
subHash
|
|
2175
|
+
} = parseData.subscriptionEventData;
|
|
2176
|
+
var {
|
|
2177
|
+
isEnabled
|
|
2178
|
+
} = parseData.strategiesSubsData;
|
|
2179
|
+
var triggerData = _triggerService__WEBPACK_IMPORTED_MODULE_6__.crvUSDRatioTrigger.decode(subStruct.triggerData);
|
|
2180
|
+
var subData = _subDataService__WEBPACK_IMPORTED_MODULE_5__.crvUSDLeverageManagementSubData.decode(subStruct.subData);
|
|
2181
|
+
_position.strategyData.decoded.triggerData = triggerData;
|
|
2182
|
+
_position.strategyData.decoded.subData = subData;
|
|
2183
|
+
var isRepay = _position.strategy.strategyId === _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Repay;
|
|
2184
|
+
if (isRepay) {
|
|
2185
|
+
_position.specific = {
|
|
2186
|
+
triggerRepayRatio: triggerData.ratio,
|
|
2187
|
+
targetRepayRatio: subData.targetRatio,
|
|
2188
|
+
repayEnabled: isEnabled,
|
|
2189
|
+
subId1: Number(subId),
|
|
2190
|
+
subHashRepay: subHash
|
|
2191
|
+
};
|
|
2192
|
+
} else {
|
|
2193
|
+
_position.specific = {
|
|
2194
|
+
triggerBoostRatio: triggerData.ratio,
|
|
2195
|
+
targetBoostRatio: subData.targetRatio,
|
|
2196
|
+
boostEnabled: isEnabled,
|
|
2197
|
+
subId2: Number(subId),
|
|
2198
|
+
subHashBoost: subHash
|
|
2199
|
+
};
|
|
2200
|
+
}
|
|
2201
|
+
_position.positionId = (0,_utils__WEBPACK_IMPORTED_MODULE_4__.getPositionId)(_position.chainId, _position.protocol.id, _position.owner, triggerData.controller);
|
|
2202
|
+
_position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
|
|
2203
|
+
_position.specific.mergeWithSameId = true;
|
|
2204
|
+
return _position;
|
|
2205
|
+
}
|
|
2154
2206
|
var parsingMethodsMapping = {
|
|
2155
2207
|
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.ProtocolIdentifiers.StrategiesAutomation.MakerDAO]: {
|
|
2156
2208
|
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.SavingsLiqProtection]: parseMakerSavingsLiqProtection,
|
|
@@ -2209,6 +2261,10 @@ var parsingMethodsMapping = {
|
|
|
2209
2261
|
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost]: parseSparkLeverageManagement,
|
|
2210
2262
|
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.CloseToDebt]: parseSparkCloseOnPrice,
|
|
2211
2263
|
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.CloseToCollateral]: parseSparkCloseOnPrice
|
|
2264
|
+
},
|
|
2265
|
+
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.ProtocolIdentifiers.StrategiesAutomation.CrvUSD]: {
|
|
2266
|
+
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Repay]: parseCrvUSDLeverageManagement,
|
|
2267
|
+
[_types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost]: parseCrvUSDLeverageManagement
|
|
2212
2268
|
}
|
|
2213
2269
|
};
|
|
2214
2270
|
function getParsingMethod(id, strategy) {
|
|
@@ -19481,6 +19537,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19481
19537
|
/* harmony export */ cBondsRebondSubData: () => (/* binding */ cBondsRebondSubData),
|
|
19482
19538
|
/* harmony export */ compoundV2LeverageManagementSubData: () => (/* binding */ compoundV2LeverageManagementSubData),
|
|
19483
19539
|
/* harmony export */ compoundV3LeverageManagementSubData: () => (/* binding */ compoundV3LeverageManagementSubData),
|
|
19540
|
+
/* harmony export */ crvUSDLeverageManagementSubData: () => (/* binding */ crvUSDLeverageManagementSubData),
|
|
19484
19541
|
/* harmony export */ exchangeDcaSubData: () => (/* binding */ exchangeDcaSubData),
|
|
19485
19542
|
/* harmony export */ exchangeLimitOrderSubData: () => (/* binding */ exchangeLimitOrderSubData),
|
|
19486
19543
|
/* harmony export */ liquityCloseSubData: () => (/* binding */ liquityCloseSubData),
|
|
@@ -19870,6 +19927,25 @@ var liquityDebtInFrontRepaySubData = {
|
|
|
19870
19927
|
};
|
|
19871
19928
|
}
|
|
19872
19929
|
};
|
|
19930
|
+
var crvUSDLeverageManagementSubData = {
|
|
19931
|
+
encode: (controllerAddr, ratioState, targetRatio, collTokenAddr, crvUSDAddr) => {
|
|
19932
|
+
var controllerAddrEncoded = web3_eth_abi__WEBPACK_IMPORTED_MODULE_1___default().encodeParameter('address', controllerAddr);
|
|
19933
|
+
var ratioStateEncoded = web3_eth_abi__WEBPACK_IMPORTED_MODULE_1___default().encodeParameter('uint8', ratioState);
|
|
19934
|
+
var targetRatioEncoded = web3_eth_abi__WEBPACK_IMPORTED_MODULE_1___default().encodeParameter('uint256', (0,_utils__WEBPACK_IMPORTED_MODULE_6__.ratioPercentageToWei)(targetRatio));
|
|
19935
|
+
var collTokenAddrEncoded = web3_eth_abi__WEBPACK_IMPORTED_MODULE_1___default().encodeParameter('address', collTokenAddr);
|
|
19936
|
+
var crvUSDAddrEncoded = web3_eth_abi__WEBPACK_IMPORTED_MODULE_1___default().encodeParameter('address', crvUSDAddr);
|
|
19937
|
+
return [controllerAddrEncoded, ratioStateEncoded, targetRatioEncoded, collTokenAddrEncoded, crvUSDAddrEncoded];
|
|
19938
|
+
},
|
|
19939
|
+
decode: subData => {
|
|
19940
|
+
var controller = web3_eth_abi__WEBPACK_IMPORTED_MODULE_1___default().decodeParameter('address', subData[0]);
|
|
19941
|
+
var weiRatio = web3_eth_abi__WEBPACK_IMPORTED_MODULE_1___default().decodeParameter('uint256', subData[2]);
|
|
19942
|
+
var targetRatio = (0,_utils__WEBPACK_IMPORTED_MODULE_6__.weiToRatioPercentage)(weiRatio);
|
|
19943
|
+
return {
|
|
19944
|
+
controller,
|
|
19945
|
+
targetRatio
|
|
19946
|
+
};
|
|
19947
|
+
}
|
|
19948
|
+
};
|
|
19873
19949
|
|
|
19874
19950
|
/***/ }),
|
|
19875
19951
|
/* 31 */
|
|
@@ -19903,8 +19979,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19903
19979
|
/* harmony import */ var _Strategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(56);
|
|
19904
19980
|
/* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(57);
|
|
19905
19981
|
/* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(62);
|
|
19906
|
-
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
19907
|
-
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
19982
|
+
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(298);
|
|
19983
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(316);
|
|
19908
19984
|
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(33);
|
|
19909
19985
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(54);
|
|
19910
19986
|
/* Export methods, classes and other here */
|
|
@@ -21234,9 +21310,9 @@ const actionAddresses = {
|
|
|
21234
21310
|
McdRatioCheck: '0x3f09773e5e945C6Aa1bc8a8B3492f507620DE1e1',
|
|
21235
21311
|
GasFeeTaker: '0x431F1E1A9859EF99953801dbdeB31d2846ADcc0d',
|
|
21236
21312
|
CurveStethPoolDeposit: '0x5Ae5870dC0C780e9eb68bE7a223eCd7F3BDad12B',
|
|
21237
|
-
CurveStethPoolWithdraw: '
|
|
21313
|
+
CurveStethPoolWithdraw: '0x41313695a4829a80c8019Ec8bCC529Fec08F9099',
|
|
21238
21314
|
CurveDeposit: '0xf46aCCE6d2559971bF5Aea03A10B3679709CE43d',
|
|
21239
|
-
CurveWithdraw: '
|
|
21315
|
+
CurveWithdraw: '0x7127A1Cd69eC2A1F91661bc0ED40aD5B73898A54',
|
|
21240
21316
|
McdBoostComposite: '0x0000000000000000000000000000000000000000',
|
|
21241
21317
|
McdRepayComposite: '0x0000000000000000000000000000000000000000',
|
|
21242
21318
|
// Euler
|
|
@@ -21271,11 +21347,11 @@ const actionAddresses = {
|
|
|
21271
21347
|
CurveUsdSupply: '0xa55B3CE5ae7E59002f53b2153ABe326823ccCDE2',
|
|
21272
21348
|
CurveUsdAdjust: '0x6f69A7d0B1BE7602381d9cCE6B29F05B9D0b85e6',
|
|
21273
21349
|
CurveUsdWithdraw: '0x54B8D984fc79B000D7B6F6E0f52CD054E965120f',
|
|
21274
|
-
CurveUsdLevCreate: '
|
|
21275
|
-
CurveUsdRepay: '
|
|
21276
|
-
CurveUsdSwapper: '
|
|
21350
|
+
CurveUsdLevCreate: '0xcbd9aFc2b7532b9eeB3A7EC4ea8Bb4320795d9Ad',
|
|
21351
|
+
CurveUsdRepay: '0xd12785e4834C1421fC7B64ca57d64E886e39b80F',
|
|
21352
|
+
CurveUsdSwapper: '0xFA8c594b903651F97b27aCADEa83b720cfD7F80b',
|
|
21277
21353
|
CurveUsdSelfLiquidate: '0xd90d8a4955DfE9D4f45F7f60595313B0925ee1da',
|
|
21278
|
-
CurveUsdSelfLiquidateWithColl: '
|
|
21354
|
+
CurveUsdSelfLiquidateWithColl: '0x7cE305FC2A18c6820a533AD418dC0A549aFeDcAF',
|
|
21279
21355
|
},
|
|
21280
21356
|
[_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.optimism.chainId]: {
|
|
21281
21357
|
DFSSell: '0xC6c601fcAa870efd26C624F8c65fbc54cBe533b1',
|
|
@@ -21335,6 +21411,14 @@ const actionAddresses = {
|
|
|
21335
21411
|
AaveV3Supply: '0xF159c79077001E2a2C1a178BE68DB7F69a6Da486',
|
|
21336
21412
|
AaveV3SwapBorrowRateMode: '0x738042389A8d6B0F6D6ab009c42dfF84ebB737C0',
|
|
21337
21413
|
AaveV3Withdraw: '0xbf492F869DdB1A18BB4F41b6c3059D9f882Fe7ff',
|
|
21414
|
+
// CompV3
|
|
21415
|
+
CompV3Allow: '0x0380E8e13CdE0499c720999930CaA07A5744887c',
|
|
21416
|
+
CompV3Borrow: '0x1C0eCc794fDA7c29aBd19E0b2F7dA166C237d616',
|
|
21417
|
+
CompV3Claim: '0xDa135F74a24FE2B23ECc35De227f5d3b000c5AdA',
|
|
21418
|
+
CompV3Payback: '0xeA8b80944a70e6C290eb00Ae0298d2953aD3aA0C',
|
|
21419
|
+
CompV3Supply: '0x82bf73d2083e69344747fff0d51816059db0113c',
|
|
21420
|
+
CompV3Transfer: '0x9EB98fA05E89a598288B0386e66052Ba0d0B9911',
|
|
21421
|
+
CompV3Withdraw: '0xb6c2dC95201630cAF7568cBdF434d787CD84dB79',
|
|
21338
21422
|
// flashloan
|
|
21339
21423
|
FLAaveV3NoFee: '0x219ac6dA971dE6d943cffD1BD62abde71525d382',
|
|
21340
21424
|
FLAaveV3: '0x53953aCEe438c083e4299F7976f03Ff3cb862161',
|
|
@@ -21358,7 +21442,7 @@ const actionAddresses = {
|
|
|
21358
21442
|
PullToken: '0x5B0B7E38C2a8e46CfAe13c360BC5927570BeEe94',
|
|
21359
21443
|
TokenBalance: '0xc44bcE580B1b3339fE9272D3bC3d6566083ea59C',
|
|
21360
21444
|
// Flashloan
|
|
21361
|
-
FLAaveV3: '
|
|
21445
|
+
FLAaveV3: '0x79Eb9cEe432Cd3e7b09A9eFdB21A733A6d7b4c3A',
|
|
21362
21446
|
FLBalancer: '0x862E533198C9656B75bB6A5dDF0953F7ED5E8507',
|
|
21363
21447
|
FLUniV3: '0x1bA6082D2ef1aB92a55B96264c72Eb8049C964Ce',
|
|
21364
21448
|
// AaveV3
|
|
@@ -21726,23 +21810,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21726
21810
|
/* harmony import */ var _dydx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(160);
|
|
21727
21811
|
/* harmony import */ var _uniswapV3__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(162);
|
|
21728
21812
|
/* harmony import */ var _checkers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(168);
|
|
21729
|
-
/* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
21730
|
-
/* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
21731
|
-
/* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
21732
|
-
/* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
21733
|
-
/* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
21734
|
-
/* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
21735
|
-
/* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(
|
|
21736
|
-
/* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(
|
|
21737
|
-
/* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(
|
|
21738
|
-
/* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(
|
|
21739
|
-
/* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(
|
|
21740
|
-
/* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(
|
|
21741
|
-
/* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(
|
|
21742
|
-
/* harmony import */ var _morpho__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(
|
|
21743
|
-
/* harmony import */ var _bprotocol__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(
|
|
21744
|
-
/* harmony import */ var _curveusd__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(
|
|
21745
|
-
/* harmony import */ var _spark__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(
|
|
21813
|
+
/* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(176);
|
|
21814
|
+
/* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(193);
|
|
21815
|
+
/* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(196);
|
|
21816
|
+
/* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(200);
|
|
21817
|
+
/* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(202);
|
|
21818
|
+
/* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(206);
|
|
21819
|
+
/* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(218);
|
|
21820
|
+
/* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(221);
|
|
21821
|
+
/* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(226);
|
|
21822
|
+
/* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(229);
|
|
21823
|
+
/* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(240);
|
|
21824
|
+
/* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(246);
|
|
21825
|
+
/* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(254);
|
|
21826
|
+
/* harmony import */ var _morpho__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(262);
|
|
21827
|
+
/* harmony import */ var _bprotocol__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(272);
|
|
21828
|
+
/* harmony import */ var _curveusd__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(275);
|
|
21829
|
+
/* harmony import */ var _spark__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(287);
|
|
21746
21830
|
|
|
21747
21831
|
|
|
21748
21832
|
|
|
@@ -23682,7 +23766,7 @@ class UpdateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
23682
23766
|
* @param sub object that contains new sub information
|
|
23683
23767
|
*/
|
|
23684
23768
|
constructor(subId, sub) {
|
|
23685
|
-
super('UpdateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('UpdateSub'), ['uint256', '
|
|
23769
|
+
super('UpdateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('UpdateSub'), ['uint256', ['uint64', 'bool', 'bytes[]', 'bytes32[]']], [subId, sub]);
|
|
23686
23770
|
this.mappableArgs = [
|
|
23687
23771
|
this.args[0],
|
|
23688
23772
|
];
|
|
@@ -23855,7 +23939,8 @@ class CreateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
23855
23939
|
* @param sub object that contains new sub information
|
|
23856
23940
|
*/
|
|
23857
23941
|
constructor(sub) {
|
|
23858
|
-
super('CreateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CreateSub'), ['
|
|
23942
|
+
super('CreateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CreateSub'), [['uint64', 'bool', 'bytes[]', 'bytes32[]']], [sub]);
|
|
23943
|
+
this.mappableArgs = [];
|
|
23859
23944
|
for (let i = 0; i < this.args[0][3].length; i++) {
|
|
23860
23945
|
this.mappableArgs.push(this.args[0][3][i]);
|
|
23861
23946
|
}
|
|
@@ -26027,15 +26112,21 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
26027
26112
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
26028
26113
|
/* harmony export */ AaveV3RatioCheckAction: () => (/* reexport safe */ _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__.AaveV3RatioCheckAction),
|
|
26029
26114
|
/* harmony export */ CompoundV3RatioCheckAction: () => (/* reexport safe */ _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__.CompoundV3RatioCheckAction),
|
|
26030
|
-
/* harmony export */ LiquityRatioCheckAction: () => (/* reexport safe */
|
|
26115
|
+
/* harmony export */ LiquityRatioCheckAction: () => (/* reexport safe */ _LiquityRatioCheckAction__WEBPACK_IMPORTED_MODULE_4__.LiquityRatioCheckAction),
|
|
26116
|
+
/* harmony export */ LiquityRatioIncreaseCheckAction: () => (/* reexport safe */ _LiquityRatioIncreaseCheckAction__WEBPACK_IMPORTED_MODULE_6__.LiquityRatioIncreaseCheckAction),
|
|
26031
26117
|
/* harmony export */ MakerRatioCheckAction: () => (/* reexport safe */ _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__.MakerRatioCheckAction),
|
|
26032
|
-
/* harmony export */
|
|
26118
|
+
/* harmony export */ MorphoAaveV2RatioCheckAction: () => (/* reexport safe */ _MorphoAaveV2RatioCheckAction__WEBPACK_IMPORTED_MODULE_3__.MorphoAaveV2RatioCheckAction),
|
|
26119
|
+
/* harmony export */ SparkRatioCheckAction: () => (/* reexport safe */ _SparkRatioCheckAction__WEBPACK_IMPORTED_MODULE_5__.SparkRatioCheckAction)
|
|
26033
26120
|
/* harmony export */ });
|
|
26034
26121
|
/* harmony import */ var _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(169);
|
|
26035
26122
|
/* harmony import */ var _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(170);
|
|
26036
26123
|
/* harmony import */ var _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(171);
|
|
26037
|
-
/* harmony import */ var
|
|
26038
|
-
/* harmony import */ var
|
|
26124
|
+
/* harmony import */ var _MorphoAaveV2RatioCheckAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(172);
|
|
26125
|
+
/* harmony import */ var _LiquityRatioCheckAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(173);
|
|
26126
|
+
/* harmony import */ var _SparkRatioCheckAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(174);
|
|
26127
|
+
/* harmony import */ var _LiquityRatioIncreaseCheckAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(175);
|
|
26128
|
+
|
|
26129
|
+
|
|
26039
26130
|
|
|
26040
26131
|
|
|
26041
26132
|
|
|
@@ -26155,6 +26246,41 @@ class CompoundV3RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
26155
26246
|
/* 172 */
|
|
26156
26247
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26157
26248
|
|
|
26249
|
+
"use strict";
|
|
26250
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26251
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
26252
|
+
/* harmony export */ MorphoAaveV2RatioCheckAction: () => (/* binding */ MorphoAaveV2RatioCheckAction)
|
|
26253
|
+
/* harmony export */ });
|
|
26254
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
26255
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
26256
|
+
|
|
26257
|
+
|
|
26258
|
+
/**
|
|
26259
|
+
* MorphoAaveV2RatioCheckAction - Checks Morpho-AaveV2 ratio for user position and reverts if faulty
|
|
26260
|
+
*
|
|
26261
|
+
* @category Checkers
|
|
26262
|
+
*/
|
|
26263
|
+
class MorphoAaveV2RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
26264
|
+
/**
|
|
26265
|
+
* @param ratioState If it should lower/higher
|
|
26266
|
+
* @param targetRatio The ratio user want to be at
|
|
26267
|
+
* @param user Address of the user we are checking the ratio for (default to proxy)
|
|
26268
|
+
*/
|
|
26269
|
+
constructor(ratioState, targetRatio, user) {
|
|
26270
|
+
super('MorphoAaveV2RatioCheck', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('MorphoAaveV2RatioCheck'), ['uint8', 'uint256', 'address'], [ratioState, targetRatio, user]);
|
|
26271
|
+
this.mappableArgs = [
|
|
26272
|
+
this.args[0],
|
|
26273
|
+
this.args[1],
|
|
26274
|
+
this.args[2],
|
|
26275
|
+
];
|
|
26276
|
+
}
|
|
26277
|
+
}
|
|
26278
|
+
|
|
26279
|
+
|
|
26280
|
+
/***/ }),
|
|
26281
|
+
/* 173 */
|
|
26282
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26283
|
+
|
|
26158
26284
|
"use strict";
|
|
26159
26285
|
__webpack_require__.r(__webpack_exports__);
|
|
26160
26286
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
@@ -26185,7 +26311,7 @@ class LiquityRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
26185
26311
|
|
|
26186
26312
|
|
|
26187
26313
|
/***/ }),
|
|
26188
|
-
/*
|
|
26314
|
+
/* 174 */
|
|
26189
26315
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26190
26316
|
|
|
26191
26317
|
"use strict";
|
|
@@ -26218,7 +26344,38 @@ class SparkRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
26218
26344
|
|
|
26219
26345
|
|
|
26220
26346
|
/***/ }),
|
|
26221
|
-
/*
|
|
26347
|
+
/* 175 */
|
|
26348
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26349
|
+
|
|
26350
|
+
"use strict";
|
|
26351
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26352
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
26353
|
+
/* harmony export */ LiquityRatioIncreaseCheckAction: () => (/* binding */ LiquityRatioIncreaseCheckAction)
|
|
26354
|
+
/* harmony export */ });
|
|
26355
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
26356
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
26357
|
+
|
|
26358
|
+
|
|
26359
|
+
/**
|
|
26360
|
+
* LiquityRatioCheckAction - Checks liquity ratio increase for user position and reverts if faulty
|
|
26361
|
+
*
|
|
26362
|
+
* @category Checkers
|
|
26363
|
+
*/
|
|
26364
|
+
class LiquityRatioIncreaseCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
26365
|
+
/**
|
|
26366
|
+
* @param targetRatio The ratio user want to be at
|
|
26367
|
+
*/
|
|
26368
|
+
constructor(targetRatioIncrease) {
|
|
26369
|
+
super('LiquityRatioIncreaseCheck', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('LiquityRatioIncreaseCheck'), ['uint256'], [targetRatioIncrease]);
|
|
26370
|
+
this.mappableArgs = [
|
|
26371
|
+
this.args[0],
|
|
26372
|
+
];
|
|
26373
|
+
}
|
|
26374
|
+
}
|
|
26375
|
+
|
|
26376
|
+
|
|
26377
|
+
/***/ }),
|
|
26378
|
+
/* 176 */
|
|
26222
26379
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26223
26380
|
|
|
26224
26381
|
"use strict";
|
|
@@ -26241,22 +26398,22 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
26241
26398
|
/* harmony export */ LiquityUnstakeAction: () => (/* reexport safe */ _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__.LiquityUnstakeAction),
|
|
26242
26399
|
/* harmony export */ LiquityWithdrawAction: () => (/* reexport safe */ _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__.LiquityWithdrawAction)
|
|
26243
26400
|
/* harmony export */ });
|
|
26244
|
-
/* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
26245
|
-
/* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
26246
|
-
/* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
26247
|
-
/* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
26248
|
-
/* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
26249
|
-
/* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
26250
|
-
/* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
26251
|
-
/* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
26252
|
-
/* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
26253
|
-
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
26254
|
-
/* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
26255
|
-
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
26256
|
-
/* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
26257
|
-
/* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
26258
|
-
/* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
26259
|
-
/* harmony import */ var _LiquityAdjustAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
26401
|
+
/* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(177);
|
|
26402
|
+
/* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(178);
|
|
26403
|
+
/* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(179);
|
|
26404
|
+
/* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(180);
|
|
26405
|
+
/* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(181);
|
|
26406
|
+
/* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(182);
|
|
26407
|
+
/* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(183);
|
|
26408
|
+
/* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(184);
|
|
26409
|
+
/* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(185);
|
|
26410
|
+
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(186);
|
|
26411
|
+
/* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(187);
|
|
26412
|
+
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(188);
|
|
26413
|
+
/* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(189);
|
|
26414
|
+
/* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(190);
|
|
26415
|
+
/* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(191);
|
|
26416
|
+
/* harmony import */ var _LiquityAdjustAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(192);
|
|
26260
26417
|
|
|
26261
26418
|
|
|
26262
26419
|
|
|
@@ -26276,7 +26433,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
26276
26433
|
|
|
26277
26434
|
|
|
26278
26435
|
/***/ }),
|
|
26279
|
-
/*
|
|
26436
|
+
/* 177 */
|
|
26280
26437
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26281
26438
|
|
|
26282
26439
|
"use strict";
|
|
@@ -26338,7 +26495,7 @@ class LiquityOpenAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
26338
26495
|
|
|
26339
26496
|
|
|
26340
26497
|
/***/ }),
|
|
26341
|
-
/*
|
|
26498
|
+
/* 178 */
|
|
26342
26499
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26343
26500
|
|
|
26344
26501
|
"use strict";
|
|
@@ -26378,7 +26535,7 @@ class LiquityBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
26378
26535
|
|
|
26379
26536
|
|
|
26380
26537
|
/***/ }),
|
|
26381
|
-
/*
|
|
26538
|
+
/* 179 */
|
|
26382
26539
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26383
26540
|
|
|
26384
26541
|
"use strict";
|
|
@@ -26433,7 +26590,7 @@ class LiquityPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
26433
26590
|
|
|
26434
26591
|
|
|
26435
26592
|
/***/ }),
|
|
26436
|
-
/*
|
|
26593
|
+
/* 180 */
|
|
26437
26594
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26438
26595
|
|
|
26439
26596
|
"use strict";
|
|
@@ -26488,7 +26645,7 @@ class LiquitySupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
26488
26645
|
|
|
26489
26646
|
|
|
26490
26647
|
/***/ }),
|
|
26491
|
-
/*
|
|
26648
|
+
/* 181 */
|
|
26492
26649
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26493
26650
|
|
|
26494
26651
|
"use strict";
|
|
@@ -26526,7 +26683,7 @@ class LiquityWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
26526
26683
|
|
|
26527
26684
|
|
|
26528
26685
|
/***/ }),
|
|
26529
|
-
/*
|
|
26686
|
+
/* 182 */
|
|
26530
26687
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26531
26688
|
|
|
26532
26689
|
"use strict";
|
|
@@ -26580,7 +26737,7 @@ class LiquityCloseAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
26580
26737
|
|
|
26581
26738
|
|
|
26582
26739
|
/***/ }),
|
|
26583
|
-
/*
|
|
26740
|
+
/* 183 */
|
|
26584
26741
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26585
26742
|
|
|
26586
26743
|
"use strict";
|
|
@@ -26614,7 +26771,7 @@ class LiquityClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
26614
26771
|
|
|
26615
26772
|
|
|
26616
26773
|
/***/ }),
|
|
26617
|
-
/*
|
|
26774
|
+
/* 184 */
|
|
26618
26775
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26619
26776
|
|
|
26620
26777
|
"use strict";
|
|
@@ -26677,7 +26834,7 @@ class LiquityRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
26677
26834
|
|
|
26678
26835
|
|
|
26679
26836
|
/***/ }),
|
|
26680
|
-
/*
|
|
26837
|
+
/* 185 */
|
|
26681
26838
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26682
26839
|
|
|
26683
26840
|
"use strict";
|
|
@@ -26736,7 +26893,7 @@ class LiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
26736
26893
|
|
|
26737
26894
|
|
|
26738
26895
|
/***/ }),
|
|
26739
|
-
/*
|
|
26896
|
+
/* 186 */
|
|
26740
26897
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26741
26898
|
|
|
26742
26899
|
"use strict";
|
|
@@ -26778,7 +26935,7 @@ class LiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
26778
26935
|
|
|
26779
26936
|
|
|
26780
26937
|
/***/ }),
|
|
26781
|
-
/*
|
|
26938
|
+
/* 187 */
|
|
26782
26939
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26783
26940
|
|
|
26784
26941
|
"use strict";
|
|
@@ -26837,7 +26994,7 @@ class LiquityStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
26837
26994
|
|
|
26838
26995
|
|
|
26839
26996
|
/***/ }),
|
|
26840
|
-
/*
|
|
26997
|
+
/* 188 */
|
|
26841
26998
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26842
26999
|
|
|
26843
27000
|
"use strict";
|
|
@@ -26879,7 +27036,7 @@ class LiquityUnstakeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
26879
27036
|
|
|
26880
27037
|
|
|
26881
27038
|
/***/ }),
|
|
26882
|
-
/*
|
|
27039
|
+
/* 189 */
|
|
26883
27040
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26884
27041
|
|
|
26885
27042
|
"use strict";
|
|
@@ -26915,7 +27072,7 @@ class LiquityEthGainToTroveAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
26915
27072
|
|
|
26916
27073
|
|
|
26917
27074
|
/***/ }),
|
|
26918
|
-
/*
|
|
27075
|
+
/* 190 */
|
|
26919
27076
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26920
27077
|
|
|
26921
27078
|
"use strict";
|
|
@@ -26923,7 +27080,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
26923
27080
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
26924
27081
|
/* harmony export */ LiquityClaimSPRewardsAction: () => (/* binding */ LiquityClaimSPRewardsAction)
|
|
26925
27082
|
/* harmony export */ });
|
|
26926
|
-
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27083
|
+
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(186);
|
|
26927
27084
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
|
|
26928
27085
|
|
|
26929
27086
|
|
|
@@ -26946,7 +27103,7 @@ class LiquityClaimSPRewardsAction extends _LiquitySPWithdrawAction__WEBPACK_IMPO
|
|
|
26946
27103
|
|
|
26947
27104
|
|
|
26948
27105
|
/***/ }),
|
|
26949
|
-
/*
|
|
27106
|
+
/* 191 */
|
|
26950
27107
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26951
27108
|
|
|
26952
27109
|
"use strict";
|
|
@@ -26954,7 +27111,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
26954
27111
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
26955
27112
|
/* harmony export */ LiquityClaimStakingRewardsAction: () => (/* binding */ LiquityClaimStakingRewardsAction)
|
|
26956
27113
|
/* harmony export */ });
|
|
26957
|
-
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27114
|
+
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(188);
|
|
26958
27115
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
|
|
26959
27116
|
|
|
26960
27117
|
|
|
@@ -26977,7 +27134,7 @@ class LiquityClaimStakingRewardsAction extends _LiquityUnstakeAction__WEBPACK_IM
|
|
|
26977
27134
|
|
|
26978
27135
|
|
|
26979
27136
|
/***/ }),
|
|
26980
|
-
/*
|
|
27137
|
+
/* 192 */
|
|
26981
27138
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
26982
27139
|
|
|
26983
27140
|
"use strict";
|
|
@@ -27025,7 +27182,7 @@ class LiquityAdjustAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
27025
27182
|
|
|
27026
27183
|
|
|
27027
27184
|
/***/ }),
|
|
27028
|
-
/*
|
|
27185
|
+
/* 193 */
|
|
27029
27186
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27030
27187
|
|
|
27031
27188
|
"use strict";
|
|
@@ -27034,14 +27191,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27034
27191
|
/* harmony export */ YearnSupplyAction: () => (/* reexport safe */ _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__.YearnSupplyAction),
|
|
27035
27192
|
/* harmony export */ YearnWithdrawAction: () => (/* reexport safe */ _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.YearnWithdrawAction)
|
|
27036
27193
|
/* harmony export */ });
|
|
27037
|
-
/* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27038
|
-
/* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
27194
|
+
/* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(194);
|
|
27195
|
+
/* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(195);
|
|
27039
27196
|
|
|
27040
27197
|
|
|
27041
27198
|
|
|
27042
27199
|
|
|
27043
27200
|
/***/ }),
|
|
27044
|
-
/*
|
|
27201
|
+
/* 194 */
|
|
27045
27202
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27046
27203
|
|
|
27047
27204
|
"use strict";
|
|
@@ -27100,7 +27257,7 @@ class YearnSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
27100
27257
|
|
|
27101
27258
|
|
|
27102
27259
|
/***/ }),
|
|
27103
|
-
/*
|
|
27260
|
+
/* 195 */
|
|
27104
27261
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27105
27262
|
|
|
27106
27263
|
"use strict";
|
|
@@ -27159,7 +27316,7 @@ class YearnWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
27159
27316
|
|
|
27160
27317
|
|
|
27161
27318
|
/***/ }),
|
|
27162
|
-
/*
|
|
27319
|
+
/* 196 */
|
|
27163
27320
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27164
27321
|
|
|
27165
27322
|
"use strict";
|
|
@@ -27169,16 +27326,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27169
27326
|
/* harmony export */ LidoUnwrapAction: () => (/* reexport safe */ _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__.LidoUnwrapAction),
|
|
27170
27327
|
/* harmony export */ LidoWrapAction: () => (/* reexport safe */ _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__.LidoWrapAction)
|
|
27171
27328
|
/* harmony export */ });
|
|
27172
|
-
/* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27173
|
-
/* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
27174
|
-
/* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
27329
|
+
/* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(197);
|
|
27330
|
+
/* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(198);
|
|
27331
|
+
/* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(199);
|
|
27175
27332
|
|
|
27176
27333
|
|
|
27177
27334
|
|
|
27178
27335
|
|
|
27179
27336
|
|
|
27180
27337
|
/***/ }),
|
|
27181
|
-
/*
|
|
27338
|
+
/* 197 */
|
|
27182
27339
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27183
27340
|
|
|
27184
27341
|
"use strict";
|
|
@@ -27228,7 +27385,7 @@ class LidoStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
27228
27385
|
|
|
27229
27386
|
|
|
27230
27387
|
/***/ }),
|
|
27231
|
-
/*
|
|
27388
|
+
/* 198 */
|
|
27232
27389
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27233
27390
|
|
|
27234
27391
|
"use strict";
|
|
@@ -27287,7 +27444,7 @@ class LidoWrapAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
27287
27444
|
|
|
27288
27445
|
|
|
27289
27446
|
/***/ }),
|
|
27290
|
-
/*
|
|
27447
|
+
/* 199 */
|
|
27291
27448
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27292
27449
|
|
|
27293
27450
|
"use strict";
|
|
@@ -27334,7 +27491,7 @@ class LidoUnwrapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
27334
27491
|
|
|
27335
27492
|
|
|
27336
27493
|
/***/ }),
|
|
27337
|
-
/*
|
|
27494
|
+
/* 200 */
|
|
27338
27495
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27339
27496
|
|
|
27340
27497
|
"use strict";
|
|
@@ -27342,12 +27499,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27342
27499
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
27343
27500
|
/* harmony export */ InstPullTokensAction: () => (/* reexport safe */ _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__.InstPullTokensAction)
|
|
27344
27501
|
/* harmony export */ });
|
|
27345
|
-
/* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27502
|
+
/* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(201);
|
|
27346
27503
|
|
|
27347
27504
|
|
|
27348
27505
|
|
|
27349
27506
|
/***/ }),
|
|
27350
|
-
/*
|
|
27507
|
+
/* 201 */
|
|
27351
27508
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27352
27509
|
|
|
27353
27510
|
"use strict";
|
|
@@ -27397,7 +27554,7 @@ class InstPullTokensAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
27397
27554
|
|
|
27398
27555
|
|
|
27399
27556
|
/***/ }),
|
|
27400
|
-
/*
|
|
27557
|
+
/* 202 */
|
|
27401
27558
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27402
27559
|
|
|
27403
27560
|
"use strict";
|
|
@@ -27407,16 +27564,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27407
27564
|
/* harmony export */ BalancerV2SupplyAction: () => (/* reexport safe */ _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__.BalancerV2SupplyAction),
|
|
27408
27565
|
/* harmony export */ BalancerV2WithdrawAction: () => (/* reexport safe */ _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BalancerV2WithdrawAction)
|
|
27409
27566
|
/* harmony export */ });
|
|
27410
|
-
/* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27411
|
-
/* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
27412
|
-
/* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
27567
|
+
/* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(203);
|
|
27568
|
+
/* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(204);
|
|
27569
|
+
/* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(205);
|
|
27413
27570
|
|
|
27414
27571
|
|
|
27415
27572
|
|
|
27416
27573
|
|
|
27417
27574
|
|
|
27418
27575
|
/***/ }),
|
|
27419
|
-
/*
|
|
27576
|
+
/* 203 */
|
|
27420
27577
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27421
27578
|
|
|
27422
27579
|
"use strict";
|
|
@@ -27482,7 +27639,7 @@ class BalancerV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
27482
27639
|
|
|
27483
27640
|
|
|
27484
27641
|
/***/ }),
|
|
27485
|
-
/*
|
|
27642
|
+
/* 204 */
|
|
27486
27643
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27487
27644
|
|
|
27488
27645
|
"use strict";
|
|
@@ -27552,7 +27709,7 @@ class BalancerV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
27552
27709
|
|
|
27553
27710
|
|
|
27554
27711
|
/***/ }),
|
|
27555
|
-
/*
|
|
27712
|
+
/* 205 */
|
|
27556
27713
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27557
27714
|
|
|
27558
27715
|
"use strict";
|
|
@@ -27615,7 +27772,7 @@ class BalancerV2ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
27615
27772
|
|
|
27616
27773
|
|
|
27617
27774
|
/***/ }),
|
|
27618
|
-
/*
|
|
27775
|
+
/* 206 */
|
|
27619
27776
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27620
27777
|
|
|
27621
27778
|
"use strict";
|
|
@@ -27631,15 +27788,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27631
27788
|
/* harmony export */ CurveSwapAction: () => (/* reexport safe */ _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__.CurveSwapAction),
|
|
27632
27789
|
/* harmony export */ CurveWithdrawAction: () => (/* reexport safe */ _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveWithdrawAction)
|
|
27633
27790
|
/* harmony export */ });
|
|
27634
|
-
/* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27635
|
-
/* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
27636
|
-
/* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
27637
|
-
/* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
27638
|
-
/* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
27639
|
-
/* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
27640
|
-
/* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
27641
|
-
/* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
27642
|
-
/* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
27791
|
+
/* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(207);
|
|
27792
|
+
/* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(208);
|
|
27793
|
+
/* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(211);
|
|
27794
|
+
/* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(212);
|
|
27795
|
+
/* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(213);
|
|
27796
|
+
/* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(214);
|
|
27797
|
+
/* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(215);
|
|
27798
|
+
/* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(216);
|
|
27799
|
+
/* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(217);
|
|
27643
27800
|
|
|
27644
27801
|
|
|
27645
27802
|
|
|
@@ -27652,7 +27809,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27652
27809
|
|
|
27653
27810
|
|
|
27654
27811
|
/***/ }),
|
|
27655
|
-
/*
|
|
27812
|
+
/* 207 */
|
|
27656
27813
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27657
27814
|
|
|
27658
27815
|
"use strict";
|
|
@@ -27709,7 +27866,7 @@ class CurveSwapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
27709
27866
|
|
|
27710
27867
|
|
|
27711
27868
|
/***/ }),
|
|
27712
|
-
/*
|
|
27869
|
+
/* 208 */
|
|
27713
27870
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27714
27871
|
|
|
27715
27872
|
"use strict";
|
|
@@ -27722,7 +27879,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27722
27879
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(32);
|
|
27723
27880
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(66);
|
|
27724
27881
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(54);
|
|
27725
|
-
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
27882
|
+
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(209);
|
|
27726
27883
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
27727
27884
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
27728
27885
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -27804,7 +27961,7 @@ class CurveDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
27804
27961
|
|
|
27805
27962
|
|
|
27806
27963
|
/***/ }),
|
|
27807
|
-
/*
|
|
27964
|
+
/* 209 */
|
|
27808
27965
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27809
27966
|
|
|
27810
27967
|
"use strict";
|
|
@@ -27813,7 +27970,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27813
27970
|
/* harmony export */ makeFlags: () => (/* binding */ makeFlags),
|
|
27814
27971
|
/* harmony export */ poolInfo: () => (/* reexport default export from named module */ _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
|
|
27815
27972
|
/* harmony export */ });
|
|
27816
|
-
/* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
27973
|
+
/* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(210);
|
|
27817
27974
|
|
|
27818
27975
|
|
|
27819
27976
|
/**
|
|
@@ -27824,14 +27981,14 @@ const makeFlags = (depositTargetType, explicitUnderlying, withdrawExact, removeO
|
|
|
27824
27981
|
|
|
27825
27982
|
|
|
27826
27983
|
/***/ }),
|
|
27827
|
-
/*
|
|
27984
|
+
/* 210 */
|
|
27828
27985
|
/***/ ((module) => {
|
|
27829
27986
|
|
|
27830
27987
|
"use strict";
|
|
27831
27988
|
module.exports = JSON.parse('[{"name":"susd","swapAddr":"0xA5407eAE9Ba41422680e2e00537571bcC53efBfD","depositContract":"0xFCBa3E75865d2d561BE8D220616520c171F12851","nCoins":4,"coins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7","0x57Ab1ec28D129707052df4dF418D58a2D46d5f51"],"decimals":[18,6,6,18],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7","0x57Ab1ec28D129707052df4dF418D58a2D46d5f51"],"underlyingDecimals":[18,6,6,18],"isMeta":false,"lpToken":"0xC25a3A3b969415c80451098fa907EC722572917F","gauges":["0xA90996896660DEcC6E997655E065b23788857849"],"gaugeTypes":[0],"zapType":1},{"name":"compound","swapAddr":"0xA2B47E3D5c44877cca798226B7B8118F9BFb7A56","depositContract":"0xeB21209ae4C2c9FF2a86ACA31E123764A3B6Bc06","nCoins":2,"coins":["0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643","0x39AA39c021dfbaE8faC545936693aC917d5E7563"],"decimals":[8,8],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"],"underlyingDecimals":[18,6],"isMeta":false,"lpToken":"0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2","gauges":["0x7ca5b0a2910B33e9759DC7dDB0413949071D7575"],"gaugeTypes":[0],"zapType":1},{"underlyingFlag":true,"name":"aave","swapAddr":"0xDeBF20617708857ebe4F679508E7b7863a8A8EeE","nCoins":3,"coins":["0x028171bCA77440897B824Ca71D1c56caC55b68A3","0xBcca60bB61934080951369a648Fb03DF4F96263C","0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811"],"decimals":[18,6,6],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,6,6],"isMeta":false,"lpToken":"0xFd2a8fA60Abd58Efe3EeE34dd494cD491dC14900","gauges":["0xd662908ADA2Ea1916B3318327A97eB18aD588b5d"],"gaugeTypes":[0]},{"name":"steth","swapAddr":"0xDC24316b9AE028F1497c275EB9192a3Ea0f67022","nCoins":2,"coins":["0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE","0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84"],"decimals":[18,18],"underlyingCoins":["0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE","0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84"],"underlyingDecimals":[18,18],"isMeta":false,"lpToken":"0x06325440D014e39736583c165C2963BA99fAf14E","gauges":["0x182B723a58739a9c974cFDB385ceaDb237453c28"],"gaugeTypes":[0]},{"name":"3pool","swapAddr":"0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7","nCoins":3,"coins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"decimals":[18,6,6],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,6,6],"isMeta":false,"lpToken":"0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490","gauges":["0xbFcF63294aD7105dEa65aA58F8AE5BE2D9d0952A"],"gaugeTypes":[0]},{"name":"musd","swapAddr":"0x8474DdbE98F5aA3179B3B3F5942D724aFcdec9f6","depositContract":"0x803A2B40c5a9BB2B86DD630B274Fa2A9202874C2","nCoins":2,"coins":["0xe2f2a5C287993345a840Db3B0845fbC70f5935a5","0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490"],"decimals":[18,18],"underlyingCoins":["0xe2f2a5C287993345a840Db3B0845fbC70f5935a5","0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,18,6,6],"isMeta":true,"lpToken":"0x1AEf73d49Dedc4b1778d0706583995958Dc862e6","gauges":["0x5f626c30EC1215f4EdCc9982265E8b1F411D1352"],"gaugeTypes":[0],"zapType":0},{"name":"lusd","swapAddr":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","depositContract":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","devComment":"it would follow logic that the depositContract should be the 3pool zap but because of the smart contract logic it is overridden here","nCoins":2,"coins":["0x5f98805A4E8be255a32880FDeC7F6728C6568bA0","0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490"],"decimals":[18,18],"underlyingCoins":["0x5f98805A4E8be255a32880FDeC7F6728C6568bA0","0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,18,6,6],"isMeta":true,"lpToken":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","gauges":["0x9B8519A9a00100720CCdC8a120fBeD319cA47a14"],"gaugeTypes":[0],"zapType":2},{"name":"reth","isFactory":true,"swapAddr":"0x0f3159811670c117c372428D4E69AC32325e4D0F","nCoins":2,"coins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xae78736Cd615f374D3085123A210448E74Fc6393"],"decimals":[18,18],"underlyingCoins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xae78736Cd615f374D3085123A210448E74Fc6393"],"underlyingDecimals":[18,18],"isMeta":false,"lpToken":"0x6c38cE8984a890F5e46e6dF6117C26b3F1EcfC9C","gauges":["0x9d4D981d8a9066f5db8532A5816543dE8819d4A8"],"gaugeTypes":[0]},{"name":"cbeth","isFactory":true,"swapAddr":"0x5FAE7E604FC3e24fd43A72867ceBaC94c65b404A","nCoins":2,"coins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xBe9895146f7AF43049ca1c1AE358B0541Ea49704"],"decimals":[18,18],"underlyingCoins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xBe9895146f7AF43049ca1c1AE358B0541Ea49704"],"underlyingDecimals":[18,18],"isMeta":false,"lpToken":"0x5b6C539b224014A09B3388e51CaAA8e354c959C8","gauges":["0xAd96E10123Fa34a01cf2314C42D75150849C9295"],"gaugeTypes":[0]}]');
|
|
27832
27989
|
|
|
27833
27990
|
/***/ }),
|
|
27834
|
-
/*
|
|
27991
|
+
/* 211 */
|
|
27835
27992
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27836
27993
|
|
|
27837
27994
|
"use strict";
|
|
@@ -27842,7 +27999,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27842
27999
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
27843
28000
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
|
|
27844
28001
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
|
|
27845
|
-
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
28002
|
+
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(209);
|
|
27846
28003
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
27847
28004
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
27848
28005
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -27919,7 +28076,7 @@ class CurveWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
27919
28076
|
|
|
27920
28077
|
|
|
27921
28078
|
/***/ }),
|
|
27922
|
-
/*
|
|
28079
|
+
/* 212 */
|
|
27923
28080
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27924
28081
|
|
|
27925
28082
|
"use strict";
|
|
@@ -27973,7 +28130,7 @@ class CurveGaugeDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
27973
28130
|
|
|
27974
28131
|
|
|
27975
28132
|
/***/ }),
|
|
27976
|
-
/*
|
|
28133
|
+
/* 213 */
|
|
27977
28134
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
27978
28135
|
|
|
27979
28136
|
"use strict";
|
|
@@ -28009,7 +28166,7 @@ class CurveGaugeWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
28009
28166
|
|
|
28010
28167
|
|
|
28011
28168
|
/***/ }),
|
|
28012
|
-
/*
|
|
28169
|
+
/* 214 */
|
|
28013
28170
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28014
28171
|
|
|
28015
28172
|
"use strict";
|
|
@@ -28042,7 +28199,7 @@ class CurveMintCrvAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28042
28199
|
|
|
28043
28200
|
|
|
28044
28201
|
/***/ }),
|
|
28045
|
-
/*
|
|
28202
|
+
/* 215 */
|
|
28046
28203
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28047
28204
|
|
|
28048
28205
|
"use strict";
|
|
@@ -28078,7 +28235,7 @@ class CurveClaimFeesAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28078
28235
|
|
|
28079
28236
|
|
|
28080
28237
|
/***/ }),
|
|
28081
|
-
/*
|
|
28238
|
+
/* 216 */
|
|
28082
28239
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28083
28240
|
|
|
28084
28241
|
"use strict";
|
|
@@ -28119,7 +28276,7 @@ class CurveStethPoolDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
28119
28276
|
|
|
28120
28277
|
|
|
28121
28278
|
/***/ }),
|
|
28122
|
-
/*
|
|
28279
|
+
/* 217 */
|
|
28123
28280
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28124
28281
|
|
|
28125
28282
|
"use strict";
|
|
@@ -28161,7 +28318,7 @@ class CurveStethPoolWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
28161
28318
|
|
|
28162
28319
|
|
|
28163
28320
|
/***/ }),
|
|
28164
|
-
/*
|
|
28321
|
+
/* 218 */
|
|
28165
28322
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28166
28323
|
|
|
28167
28324
|
"use strict";
|
|
@@ -28170,14 +28327,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28170
28327
|
/* harmony export */ GUniDeposit: () => (/* reexport safe */ _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__.GUniDeposit),
|
|
28171
28328
|
/* harmony export */ GUniWithdraw: () => (/* reexport safe */ _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__.GUniWithdraw)
|
|
28172
28329
|
/* harmony export */ });
|
|
28173
|
-
/* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
28174
|
-
/* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
28330
|
+
/* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(219);
|
|
28331
|
+
/* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(220);
|
|
28175
28332
|
|
|
28176
28333
|
|
|
28177
28334
|
|
|
28178
28335
|
|
|
28179
28336
|
/***/ }),
|
|
28180
|
-
/*
|
|
28337
|
+
/* 219 */
|
|
28181
28338
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28182
28339
|
|
|
28183
28340
|
"use strict";
|
|
@@ -28238,7 +28395,7 @@ class GUniDeposit extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28238
28395
|
|
|
28239
28396
|
|
|
28240
28397
|
/***/ }),
|
|
28241
|
-
/*
|
|
28398
|
+
/* 220 */
|
|
28242
28399
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28243
28400
|
|
|
28244
28401
|
"use strict";
|
|
@@ -28291,7 +28448,7 @@ class GUniWithdraw extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28291
28448
|
|
|
28292
28449
|
|
|
28293
28450
|
/***/ }),
|
|
28294
|
-
/*
|
|
28451
|
+
/* 221 */
|
|
28295
28452
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28296
28453
|
|
|
28297
28454
|
"use strict";
|
|
@@ -28301,16 +28458,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28301
28458
|
/* harmony export */ MStableDepositAction: () => (/* reexport safe */ _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__.MStableDepositAction),
|
|
28302
28459
|
/* harmony export */ MStableWithdrawAction: () => (/* reexport safe */ _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.MStableWithdrawAction)
|
|
28303
28460
|
/* harmony export */ });
|
|
28304
|
-
/* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
28305
|
-
/* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
28306
|
-
/* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
28461
|
+
/* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(222);
|
|
28462
|
+
/* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(224);
|
|
28463
|
+
/* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(225);
|
|
28307
28464
|
|
|
28308
28465
|
|
|
28309
28466
|
|
|
28310
28467
|
|
|
28311
28468
|
|
|
28312
28469
|
/***/ }),
|
|
28313
|
-
/*
|
|
28470
|
+
/* 222 */
|
|
28314
28471
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28315
28472
|
|
|
28316
28473
|
"use strict";
|
|
@@ -28321,7 +28478,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28321
28478
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
28322
28479
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
|
|
28323
28480
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
|
|
28324
|
-
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
28481
|
+
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(223);
|
|
28325
28482
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
28326
28483
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
28327
28484
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -28400,7 +28557,7 @@ class MStableDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28400
28557
|
|
|
28401
28558
|
|
|
28402
28559
|
/***/ }),
|
|
28403
|
-
/*
|
|
28560
|
+
/* 223 */
|
|
28404
28561
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28405
28562
|
|
|
28406
28563
|
"use strict";
|
|
@@ -28419,7 +28576,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28419
28576
|
|
|
28420
28577
|
|
|
28421
28578
|
/***/ }),
|
|
28422
|
-
/*
|
|
28579
|
+
/* 224 */
|
|
28423
28580
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28424
28581
|
|
|
28425
28582
|
"use strict";
|
|
@@ -28430,7 +28587,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28430
28587
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
28431
28588
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
|
|
28432
28589
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
|
|
28433
|
-
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
28590
|
+
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(223);
|
|
28434
28591
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
28435
28592
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
28436
28593
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -28508,7 +28665,7 @@ class MStableWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
28508
28665
|
|
|
28509
28666
|
|
|
28510
28667
|
/***/ }),
|
|
28511
|
-
/*
|
|
28668
|
+
/* 225 */
|
|
28512
28669
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28513
28670
|
|
|
28514
28671
|
"use strict";
|
|
@@ -28547,7 +28704,7 @@ class MStableClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28547
28704
|
|
|
28548
28705
|
|
|
28549
28706
|
/***/ }),
|
|
28550
|
-
/*
|
|
28707
|
+
/* 226 */
|
|
28551
28708
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28552
28709
|
|
|
28553
28710
|
"use strict";
|
|
@@ -28556,14 +28713,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28556
28713
|
/* harmony export */ RariDepositAction: () => (/* reexport safe */ _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__.RariDepositAction),
|
|
28557
28714
|
/* harmony export */ RariWithdrawAction: () => (/* reexport safe */ _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.RariWithdrawAction)
|
|
28558
28715
|
/* harmony export */ });
|
|
28559
|
-
/* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
28560
|
-
/* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
28716
|
+
/* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(227);
|
|
28717
|
+
/* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(228);
|
|
28561
28718
|
|
|
28562
28719
|
|
|
28563
28720
|
|
|
28564
28721
|
|
|
28565
28722
|
/***/ }),
|
|
28566
|
-
/*
|
|
28723
|
+
/* 227 */
|
|
28567
28724
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28568
28725
|
|
|
28569
28726
|
"use strict";
|
|
@@ -28618,7 +28775,7 @@ class RariDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28618
28775
|
|
|
28619
28776
|
|
|
28620
28777
|
/***/ }),
|
|
28621
|
-
/*
|
|
28778
|
+
/* 228 */
|
|
28622
28779
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28623
28780
|
|
|
28624
28781
|
"use strict";
|
|
@@ -28675,7 +28832,7 @@ class RariWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
28675
28832
|
|
|
28676
28833
|
|
|
28677
28834
|
/***/ }),
|
|
28678
|
-
/*
|
|
28835
|
+
/* 229 */
|
|
28679
28836
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28680
28837
|
|
|
28681
28838
|
"use strict";
|
|
@@ -28692,16 +28849,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28692
28849
|
/* harmony export */ AaveV3SwapBorrowRateModeAction: () => (/* reexport safe */ _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.AaveV3SwapBorrowRateModeAction),
|
|
28693
28850
|
/* harmony export */ AaveV3WithdrawAction: () => (/* reexport safe */ _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.AaveV3WithdrawAction)
|
|
28694
28851
|
/* harmony export */ });
|
|
28695
|
-
/* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
28696
|
-
/* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
28697
|
-
/* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
28698
|
-
/* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
28699
|
-
/* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
28700
|
-
/* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
28701
|
-
/* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
28702
|
-
/* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
28703
|
-
/* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
28704
|
-
/* harmony import */ var _AaveV3DelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
28852
|
+
/* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(230);
|
|
28853
|
+
/* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(231);
|
|
28854
|
+
/* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(232);
|
|
28855
|
+
/* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(233);
|
|
28856
|
+
/* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(234);
|
|
28857
|
+
/* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(235);
|
|
28858
|
+
/* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(236);
|
|
28859
|
+
/* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(237);
|
|
28860
|
+
/* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(238);
|
|
28861
|
+
/* harmony import */ var _AaveV3DelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(239);
|
|
28705
28862
|
|
|
28706
28863
|
|
|
28707
28864
|
|
|
@@ -28715,7 +28872,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28715
28872
|
|
|
28716
28873
|
|
|
28717
28874
|
/***/ }),
|
|
28718
|
-
/*
|
|
28875
|
+
/* 230 */
|
|
28719
28876
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28720
28877
|
|
|
28721
28878
|
"use strict";
|
|
@@ -28807,7 +28964,7 @@ class AaveV3SupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
28807
28964
|
|
|
28808
28965
|
|
|
28809
28966
|
/***/ }),
|
|
28810
|
-
/*
|
|
28967
|
+
/* 231 */
|
|
28811
28968
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28812
28969
|
|
|
28813
28970
|
"use strict";
|
|
@@ -28880,7 +29037,7 @@ class AaveV3BorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
28880
29037
|
|
|
28881
29038
|
|
|
28882
29039
|
/***/ }),
|
|
28883
|
-
/*
|
|
29040
|
+
/* 232 */
|
|
28884
29041
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28885
29042
|
|
|
28886
29043
|
"use strict";
|
|
@@ -28972,7 +29129,7 @@ class AaveV3PaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
28972
29129
|
|
|
28973
29130
|
|
|
28974
29131
|
/***/ }),
|
|
28975
|
-
/*
|
|
29132
|
+
/* 233 */
|
|
28976
29133
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
28977
29134
|
|
|
28978
29135
|
"use strict";
|
|
@@ -29031,7 +29188,7 @@ class AaveV3WithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
29031
29188
|
|
|
29032
29189
|
|
|
29033
29190
|
/***/ }),
|
|
29034
|
-
/*
|
|
29191
|
+
/* 234 */
|
|
29035
29192
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29036
29193
|
|
|
29037
29194
|
"use strict";
|
|
@@ -29077,7 +29234,7 @@ class AaveV3SetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
29077
29234
|
|
|
29078
29235
|
|
|
29079
29236
|
/***/ }),
|
|
29080
|
-
/*
|
|
29237
|
+
/* 235 */
|
|
29081
29238
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29082
29239
|
|
|
29083
29240
|
"use strict";
|
|
@@ -29156,7 +29313,7 @@ class AaveV3ATokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
|
|
|
29156
29313
|
|
|
29157
29314
|
|
|
29158
29315
|
/***/ }),
|
|
29159
|
-
/*
|
|
29316
|
+
/* 236 */
|
|
29160
29317
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29161
29318
|
|
|
29162
29319
|
"use strict";
|
|
@@ -29208,7 +29365,7 @@ class AaveV3CollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODUL
|
|
|
29208
29365
|
|
|
29209
29366
|
|
|
29210
29367
|
/***/ }),
|
|
29211
|
-
/*
|
|
29368
|
+
/* 237 */
|
|
29212
29369
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29213
29370
|
|
|
29214
29371
|
"use strict";
|
|
@@ -29262,7 +29419,7 @@ class AaveV3ClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0_
|
|
|
29262
29419
|
|
|
29263
29420
|
|
|
29264
29421
|
/***/ }),
|
|
29265
|
-
/*
|
|
29422
|
+
/* 238 */
|
|
29266
29423
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29267
29424
|
|
|
29268
29425
|
"use strict";
|
|
@@ -29313,7 +29470,7 @@ class AaveV3SwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MOD
|
|
|
29313
29470
|
|
|
29314
29471
|
|
|
29315
29472
|
/***/ }),
|
|
29316
|
-
/*
|
|
29473
|
+
/* 239 */
|
|
29317
29474
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29318
29475
|
|
|
29319
29476
|
"use strict";
|
|
@@ -29373,7 +29530,7 @@ class AaveV3DelegateCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
29373
29530
|
|
|
29374
29531
|
|
|
29375
29532
|
/***/ }),
|
|
29376
|
-
/*
|
|
29533
|
+
/* 240 */
|
|
29377
29534
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29378
29535
|
|
|
29379
29536
|
"use strict";
|
|
@@ -29383,16 +29540,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29383
29540
|
/* harmony export */ ConvexDepositAction: () => (/* reexport safe */ _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__.ConvexDepositAction),
|
|
29384
29541
|
/* harmony export */ ConvexWithdrawAction: () => (/* reexport safe */ _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.ConvexWithdrawAction)
|
|
29385
29542
|
/* harmony export */ });
|
|
29386
|
-
/* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
29387
|
-
/* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
29388
|
-
/* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
29543
|
+
/* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(241);
|
|
29544
|
+
/* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(244);
|
|
29545
|
+
/* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(245);
|
|
29389
29546
|
|
|
29390
29547
|
|
|
29391
29548
|
|
|
29392
29549
|
|
|
29393
29550
|
|
|
29394
29551
|
/***/ }),
|
|
29395
|
-
/*
|
|
29552
|
+
/* 241 */
|
|
29396
29553
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29397
29554
|
|
|
29398
29555
|
"use strict";
|
|
@@ -29402,7 +29559,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29402
29559
|
/* harmony export */ });
|
|
29403
29560
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
29404
29561
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
29405
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
29562
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(242);
|
|
29406
29563
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(66);
|
|
29407
29564
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29408
29565
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -29473,7 +29630,7 @@ class ConvexDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29473
29630
|
|
|
29474
29631
|
|
|
29475
29632
|
/***/ }),
|
|
29476
|
-
/*
|
|
29633
|
+
/* 242 */
|
|
29477
29634
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29478
29635
|
|
|
29479
29636
|
"use strict";
|
|
@@ -29484,7 +29641,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29484
29641
|
/* harmony export */ getConvexPool: () => (/* binding */ getConvexPool),
|
|
29485
29642
|
/* harmony export */ poolInfo: () => (/* reexport default export from named module */ _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
|
|
29486
29643
|
/* harmony export */ });
|
|
29487
|
-
/* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
29644
|
+
/* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(243);
|
|
29488
29645
|
|
|
29489
29646
|
|
|
29490
29647
|
/** Deposit options. */
|
|
@@ -29504,14 +29661,14 @@ const getConvexPool = (curveLpToken) => _convexPoolInfo_json__WEBPACK_IMPORTED_M
|
|
|
29504
29661
|
|
|
29505
29662
|
|
|
29506
29663
|
/***/ }),
|
|
29507
|
-
/*
|
|
29664
|
+
/* 243 */
|
|
29508
29665
|
/***/ ((module) => {
|
|
29509
29666
|
|
|
29510
29667
|
"use strict";
|
|
29511
29668
|
module.exports = JSON.parse('[{"pid":0,"lpToken":"0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2","token":"0x32512Bee3848bfcBb7bEAf647aa697a100f3b706","gauge":"0x7ca5b0a2910B33e9759DC7dDB0413949071D7575","crvRewards":"0xf34DFF761145FF0B05e917811d488B441F33a968","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":1,"lpToken":"0x9fC689CCaDa600B6DF723D9E47D84d76664a1F23","token":"0xA1c3492b71938E144ad8bE4c2fB6810b01A43dD8","gauge":"0xBC89cd85491d81C6AD2954E6d0362Ee29fCa8F53","crvRewards":"0x8B55351ea358e5Eda371575B031ee24F462d503e","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":2,"lpToken":"0xdF5e0e81Dff6FAF3A7e52BA697820c5e32D806A8","token":"0x0928F6753880A03628eB0be07b77992c8af37874","gauge":"0xFA712EE4788C042e2B7BB55E6cb8ec569C4530c1","crvRewards":"0xd802a8351A76ED5eCd89A7502Ca615F2225A585d","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":3,"lpToken":"0x3B3Ac5386837Dc563660FB6a0937DFAa5924333B","token":"0x59bB786F222d3f0f00B0dA31B799Fff80D552940","gauge":"0x69Fb7c45726cfE2baDeE8317005d3F94bE838840","crvRewards":"0x602c4cD53a715D8a7cf648540FAb0d3a2d546560","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":4,"lpToken":"0xC25a3A3b969415c80451098fa907EC722572917F","token":"0x11D200ef1409cecA8D6d23e6496550f707772F11","gauge":"0xA90996896660DEcC6E997655E065b23788857849","crvRewards":"0x22eE18aca7F3Ee920D01F25dA85840D12d98E8Ca","stash":"0xD2f2B9504Ef708b9f3Bc53f1525353bAaE1B17e4","shutdown":false,"extraRewards":[{"pool":"0x81fce3e10d12da6c7266a1a169c4c96813435263","token":"0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f"}]},{"pid":5,"lpToken":"0xD905e2eaeBe188fc92179b6350807D8bd91Db0D8","token":"0x2eA94b0d3349A284488ACF2934E494b2f58ef647","gauge":"0x64E3C23bfc40722d3B649844055F1D51c1ac041d","crvRewards":"0xe3DaafC8C14147d5B4A7a56F0BfdED240158e51e","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":6,"lpToken":"0x49849C98ae39Fff122806C06791Fa73784FB3675","token":"0x74b79021Ea6De3f0D1731fb8BdfF6eE7DF10b8Ae","gauge":"0xB1F2cdeC61db658F091671F5f199635aEF202CAC","crvRewards":"0x8E299C62EeD737a5d5a53539dF37b5356a27b07D","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":7,"lpToken":"0x075b1bb99792c9E1041bA13afEf80C91a1e70fB3","token":"0xbA723E335eC2939D52a2efcA2a8199cb4CB93cC3","gauge":"0x705350c4BcD35c9441419DdD5d2f097d7a55410F","crvRewards":"0xd727A5A6D1C7b31Ff9Db4Db4d24045B7dF0CFF93","stash":"0x7B3EE538398829c96E4B187216c7aB2946A620C4","shutdown":false,"extraRewards":[{"pool":"0x7c41906df8395af4387fa79b85c845069f88eec3","token":"0x330416c863f2acce7af9c9314b422d24c672534a"}]},{"pid":8,"lpToken":"0xb19059ebb43466C323583928285a49f558E572Fd","token":"0x33c00bF8CFDf42929E0884d230A55F963221f8f3","gauge":"0x4c18E409Dc8619bFb6a1cB56D114C3f592E0aE79","crvRewards":"0x618BD6cBA676a46958c63700C04318c84a7b7c0A","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":9,"lpToken":"0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490","token":"0x30D9410ED1D5DA1F6C8391af5338C93ab8d4035C","gauge":"0xbFcF63294aD7105dEa65aA58F8AE5BE2D9d0952A","crvRewards":"0x689440f2Ff927E1f24c72F1087E1FAF471eCe1c8","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":10,"lpToken":"0xD2967f45c4f384DEEa880F807Be904762a3DeA07","token":"0x15c2471ef46Fa721990730cfa526BcFb45574576","gauge":"0xC5cfaDA84E902aD92DD40194f0883ad49639b023","crvRewards":"0x7A7bBf95C44b144979360C3300B54A7D34b44985","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":11,"lpToken":"0x5B5CFE992AdAC0C9D48E05854B2d91C73a003858","token":"0xe4de776C0eA0974bfA39B8cbB9491091C8cDc1ff","gauge":"0x2db0E83599a91b508Ac268a6197b8B14F5e72840","crvRewards":"0x353e489311b21355461353fEC2d02B73EF0eDe7f","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":12,"lpToken":"0x97E2768e8E73511cA874545DC5Ff8067eB19B787","token":"0x47941F99F4371CC26637CaEdBbd8Ba5F4bfE5149","gauge":"0xC2b1DF84112619D190193E48148000e3990Bf627","crvRewards":"0xa50e9071aCaD20b31cd2bbe4dAa816882De82BBe","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":13,"lpToken":"0x4f3E8F405CF5aFC05D68142F3783bDfE13811522","token":"0x3689f325E88c2363274E5F3d44b6DaB8f9e1f524","gauge":"0xF98450B5602fa59CC66e1379DFfB6FDDc724CfC4","crvRewards":"0x4a2631d090e8b40bBDe245e687BF09e5e534A239","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":14,"lpToken":"0x1AEf73d49Dedc4b1778d0706583995958Dc862e6","token":"0xd34d466233c5195193dF712936049729140DBBd7","gauge":"0x5f626c30EC1215f4EdCc9982265E8b1F411D1352","crvRewards":"0xDBFa6187C79f4fE4Cda20609E75760C5AaE88e52","stash":"0x2eEa402ff31c580630b8545A33EDc00881E6949c","shutdown":false,"extraRewards":[{"pool":"0x93a5c724c4992fcbda6b96f06fa15eb8b5c485b7","token":"0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2"}]},{"pid":15,"lpToken":"0xC2Ee6b0334C261ED60C72f6054450b61B8f18E35","token":"0x8b876C2C02B1f2Ac6Ec207B7f2f06034A4316A87","gauge":"0x4dC4A289a8E33600D8bD4cf5F6313E43a37adec7","crvRewards":"0xedfCCF611D7c40F43e77a1340cE2C29EEEC27205","stash":"0x3a076e8F088bFa7a43e1209B2E460927071e15F2","shutdown":false,"extraRewards":[{"pool":"0x94c259dc4c6df248b0b5d23c055cb7574a587d67","token":"0x8762db106b2c2a0bccb3a80d1ed41273552616e8"}],"noTest":true},{"pid":16,"lpToken":"0x64eda51d3Ad40D56b9dFc5554E06F94e1Dd786Fd","token":"0x36CED690A1516861f26755b978EE62c1157CFFF9","gauge":"0x6828bcF74279eE32f2723eC536c22c51Eed383C6","crvRewards":"0x081A6672f07B615B402e7558a867C97FA080Ce35","stash":"0x21FdcdeBf375e67219c1Bfa266BCfDaA36a2b4Fe","shutdown":false,"extraRewards":[{"pool":"0x2aa030dcb729cf94bc096bd00d377aa719a09371","token":"0x85eee30c52b0b379b046fb0f85f4f3dc3009afec"}]},{"pid":17,"lpToken":"0x3a664Ab939FD8482048609f652f9a0B0677337B9","token":"0x06f4fFa5C3636AaA5C30B3DB97bfd1cd9Ac24A19","gauge":"0xAEA6c312f4b3E04D752946d329693F7293bC2e6D","crvRewards":"0x1992b82A8cCFC8f89785129D6403b13925d6226E","stash":"0x07815651B8F1c5bE84797840543F304b7F1aeC2a","shutdown":false,"extraRewards":[{"pool":"0x666f8eee6fd6839853993977cc86a7a51425673c","token":"0x20c36f062a31865bed8a5b1e512d9a1a20aa333a"}]},{"pid":18,"lpToken":"0xDE5331AC4B3630f94853Ff322B66407e0D6331E8","token":"0x21Cce64289407081744F087950b9DB32906470fC","gauge":"0xd7d147c6Bb90A718c3De8C0568F9B560C79fa416","crvRewards":"0x2d3C90AEB11D1393CA839Afc9587515B1325D77A","stash":"0x930CfB64130a90d42eD37d4616792C9dEB791faf","shutdown":false,"extraRewards":[{"pool":"0xaf138b29205c2246b069ed8f0b213b205fbc14e0","token":"0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed"}]},{"pid":19,"lpToken":"0x410e3E86ef427e30B9235497143881f717d93c2A","token":"0x2E1f902b9067b5fDd7AF29ef05D4fF6212588388","gauge":"0xdFc7AdFa664b08767b735dE28f9E84cd30492aeE","crvRewards":"0x61D741045cCAA5a215cF4E5e55f20E1199B4B843","stash":"0xd852eFBEd0f49a065194ca92c9F305DE6DdCbF35","shutdown":false,"extraRewards":[]},{"pid":20,"lpToken":"0x2fE94ea3d5d4a175184081439753DE15AeF9d614","token":"0xc1C030139eEc070Ed8FD092CC8C273C638A18bBe","gauge":"0x11137B10C210b579405c21A07489e28F3c040AB1","crvRewards":"0xeeeCE77e0bc5e59c77fc408789A9A172A504bD2f","stash":"0x9a669fb0191D977e588b20CdA3C52EDbC6c9926c","shutdown":false,"extraRewards":[{"pool":"0xae97d3766924526084da88ba9b2bd7af989bf6fc","token":"0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9"},{"pool":"0x22a07a6bda1cecbe2a671203e2114d8a170e5529","token":"0xbc19712feb3a26080ebf6f2f7849b417fdd792ca"}]},{"pid":21,"lpToken":"0x94e131324b6054c0D789b190b2dAC504e4361b53","token":"0x67c4f788FEB82FAb27E3007daa3d7b90959D5b89","gauge":"0x3B7020743Bc2A4ca9EaF9D0722d42E20d6935855","crvRewards":"0xd4Be1911F8a0df178d6e7fF5cE39919c273E2B7B","stash":"0x6249fD91fE9FF597399c1B192D5A25Cd22Eba6dd","shutdown":false,"extraRewards":[]},{"pid":22,"lpToken":"0x194eBd173F6cDacE046C53eACcE9B953F28411d1","token":"0xd7E2b9494c529b42Dea53EF6a237C16502E6A927","gauge":"0x90Bb609649E0451E5aD952683D64BD2d1f245840","crvRewards":"0xcB8F69E0064d8cdD29cbEb45A14cf771D904BcD3","stash":"0x007Cc4b4E9d9D088a9ae0e5261995D69e93B8E4C","shutdown":false,"extraRewards":[]},{"pid":23,"lpToken":"0xA3D87FffcE63B53E0d54fAa1cc983B7eB0b74A9c","token":"0xAF1d4C576bF55f6aE493AEebAcC3a227675e5B98","gauge":"0x3C0FFFF15EA30C35d7A85B85c0782D6c94e1d238","crvRewards":"0x192469CadE297D6B21F418cFA8c366b63FFC9f9b","stash":"0x1e6f5B8b4CAc5806D182B33A35d0fFF5F4004e86","shutdown":false,"extraRewards":[]},{"pid":24,"lpToken":"0xFd2a8fA60Abd58Efe3EeE34dd494cD491dC14900","token":"0x23F224C37C3A69A058d86a54D3f561295A93d542","gauge":"0xd662908ADA2Ea1916B3318327A97eB18aD588b5d","crvRewards":"0xE82c1eB4BC6F92f85BF7EB6421ab3b882C3F5a7B","stash":"0x5D4CF00939aa5F7C2cEb10c88615E9bcb0dd67fa","shutdown":false,"extraRewards":[{"pool":"0x00469d388b06127221d6310843a43d079eb2bb18","token":"0x4da27a545c0c5b758a6ba100e3a049001de870f5"}]},{"pid":25,"lpToken":"0x06325440D014e39736583c165C2963BA99fAf14E","token":"0x9518c9063eB0262D791f38d8d6Eb0aca33c63ed0","gauge":"0x182B723a58739a9c974cFDB385ceaDb237453c28","crvRewards":"0x0A760466E1B4621579a82a39CB56Dda2F4E70f03","stash":"0x9710fD4e5CA524f1049EbeD8936c07C81b5EAB9f","shutdown":false,"extraRewards":[{"pool":"0x008aea5036b819b4feaed10b2190fbb3954981e8","token":"0x5a98fcbea516cf06857215779fd812ca3bef1b32"}]},{"pid":26,"lpToken":"0x02d341CcB60fAaf662bC0554d13778015d1b285C","token":"0x09CCD0892b696AB21436e51588a7a7f8b649733d","gauge":"0x462253b8F74B72304c145DB0e4Eebd326B22ca39","crvRewards":"0xF86AE6790654b70727dbE58BF1a863B270317fD0","stash":"0xd2D46004b981FdE1e4D39d0C24E1Be1e93689DD9","shutdown":false,"extraRewards":[{"pool":"0x20165075174b51a2f9efbf7d6d8f3c72bbc63064","token":"0x4da27a545c0c5b758a6ba100e3a049001de870f5"}]},{"pid":27,"lpToken":"0xaA17A236F2bAdc98DDc0Cf999AbB47D47Fc0A6Cf","token":"0x7E96955b66c89B931BBDAf187740Cc0fF2602F21","gauge":"0x6d10ed2cF043E6fcf51A0e7b4C2Af3Fa06695707","crvRewards":"0x8798b81b0261934aa850C8de8622472bfdc143F4","stash":"0x423C444589CE5dB1E6F99820A5f95b3a57976598","shutdown":false,"extraRewards":[{"pool":"0x177252ac74f1d77513971aa85af7009c43ecdee2","token":"0xe0ad1806fd3e7edf6ff52fdb822432e847411033"},{"pool":"0xc095cec98a9f8ad6d2baa282a8e6be246f98bd25","token":"0x8290333cef9e6d528dd5618fb97a76f268f3edd4"}]},{"pid":28,"lpToken":"0x7Eb40E450b9655f4B3cC4259BCC731c63ff55ae6","token":"0x7a5dC1FA2e1B10194bD2e2e9F1A224971A681444","gauge":"0x055be5DDB7A925BfEF3417FC157f53CA77cA7222","crvRewards":"0x24DfFd1949F888F91A0c8341Fc98a3F280a782a8","stash":"0xBE25313c53360780e03233Cc70a4409367EC15aE","shutdown":false,"extraRewards":[{"pool":"0x5f91615268be6b4add646b2560785b8f17dccbb4","token":"0x92e187a03b6cd19cb6af293ba17f2745fd2357d5"}]},{"pid":29,"lpToken":"0x5282a4eF67D9C33135340fB3289cc1711c13638C","token":"0x912EC00eaEbf3820a9B0AC7a5E15F381A1C91f22","gauge":"0xF5194c3325202F456c95c1Cf0cA36f8475C1949F","crvRewards":"0x3E03fFF82F77073cc590b656D42FceB12E4910A8","stash":"0x3aEaAB3eF0b5a484d8A2380215eA0A64d3101A6D","shutdown":false,"extraRewards":[]},{"pid":30,"lpToken":"0xcee60cFa923170e4f8204AE08B4fA6A3F5656F3a","token":"0xD37969740d78C94C648d74671B8BE31eF43c30aB","gauge":"0xFD4D8a17df4C27c1dD245d153ccf4499e806C87D","crvRewards":"0x9700152175dc22E7d1f3245fE3c1D2cfa3602548","stash":"0x63201dc22e52985153E038086c448252d44Bed40","shutdown":false,"extraRewards":[]},{"pid":31,"lpToken":"0xEcd5e75AFb02eFa118AF914515D6521aaBd189F1","token":"0x0A2eA49EB5F9e23058deffD509D13DDd553c2A19","gauge":"0x359FD5d6417aE3D8D6497d9B2e7A890798262BA4","crvRewards":"0x308b48F037AAa75406426dACFACA864ebd88eDbA","stash":"0x12566645C209C1518BD25BdD3B0fd0bAe0910344","shutdown":false,"extraRewards":[]},{"pid":32,"lpToken":"0xd632f22692FaC7611d2AA1C0D552930D43CAEd3B","token":"0xbE0F6478E0E4894CFb14f32855603A083A57c7dA","gauge":"0x72E158d38dbd50A483501c24f792bDAAA3e7D55C","crvRewards":"0xB900EF131301B307dB5eFcbed9DBb50A3e209B2e","stash":"0x10a63847e6cdD2b07e0a22D1f30eB037a72eB790","shutdown":false,"extraRewards":[{"pool":"0xcdec6714eb482f28f4889a0c122868450cdbf0b0","token":"0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"}]},{"pid":33,"lpToken":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","token":"0xFB9B2f06FDb404Fd3E2278E9A9edc8f252F273d0","gauge":"0x9B8519A9a00100720CCdC8a120fBeD319cA47a14","crvRewards":"0x2ad92A7aE036a038ff02B96c88de868ddf3f8190","stash":"0x06D972728A9d05CA6F27EDc01e20b50A60b1Deed","shutdown":false,"extraRewards":[{"pool":"0x55d59b791f06dc519b176791c4e037e8cf2f6361","token":"0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d"}]},{"pid":34,"lpToken":"0x4807862AA8b2bF68830e4C8dc86D0e9A998e085a","token":"0x02D784f98A312aF3e2771297Feff1Da8273e4F29","gauge":"0xd4B22fEdcA85E684919955061fDf353b9d38389b","crvRewards":"0xbD223812d360C9587921292D0644D18aDb6a2ad0","stash":"0xBE3ED241c90F39cC50450C4937523FCC8d3e9bbc","shutdown":false,"extraRewards":[]},{"pid":35,"lpToken":"0x53a901d48795C58f485cBB38df08FA96a24669D5","token":"0x7ADd8D0E923CB692DF6bC65d96d510f0E2fC37af","gauge":"0x824F13f1a2F29cFEEa81154b46C0fc820677A637","crvRewards":"0x61dB6c2321f784c8fAb8d5eF80f58F27C831dCc8","stash":"0x644C8d1eD4b6aA68738a93C5c13c7fC19e126587","shutdown":false,"extraRewards":[{"pool":"0x681a790debe586a64eea055bf0983cd6629d8359","token":"0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d"}]},{"pid":36,"lpToken":"0x43b4FdFD4Ff969587185cDB6f0BD875c5Fc83f8c","token":"0xCA3D9F45FfA69ED454E66539298709cb2dB8cA61","gauge":"0x9582C4ADACB3BCE56Fea3e590F05c3ca2fb9C477","crvRewards":"0x02E2151D4F351881017ABdF2DD2b51150841d5B3","stash":"0x521e6EEfDa35f7228f8f83462552bDB41D64d86B","shutdown":false,"extraRewards":[{"pool":"0xd731495bb78a4250bc094686788f3ff890dee0f4","token":"0xdbdb4d16eda451d0503b854cf79d55697f90c8df"}]},{"pid":37,"lpToken":"0xcA3d75aC011BF5aD07a98d02f18225F9bD9A6BDF","token":"0x18684099414dcEF486F4FA5b4e44e6eA53C8c554","gauge":"0x6955a55416a06839309018A8B0cB72c4DDC11f15","crvRewards":"0x5Edced358e6C0B435D53CC30fbE6f5f0833F404F","stash":"0x35e86E54eCb0227fe33382c35E12856cF227E9ce","shutdown":false,"extraRewards":[]},{"pid":38,"lpToken":"0xc4AD29ba4B3c580e6D59105FFf484999997675Ff","token":"0x903C9974aAA431A765e60bC07aF45f0A1B3b61fb","gauge":"0xDeFd8FdD20e0f34115C7018CCfb655796F6B2168","crvRewards":"0x9D5C5E364D81DaB193b72db9E9BE9D8ee669B652","stash":"0xDb1A0Bb8C14Bc7B4eDA5ca95B4A6C6013a7b359D","shutdown":false,"extraRewards":[]},{"pid":39,"lpToken":"0xFD5dB7463a3aB53fD211b4af195c5BCCC1A03890","token":"0x2b2175AC371Ec2900AC39fb87452340F65CC9895","gauge":"0xe8060Ad8971450E624d5289A10017dD30F5dA85F","crvRewards":"0xD814BFC091111E1417a669672144aFFAA081c3CE","stash":"0x353460EACDAaEC993eCdA986440F4c343BBf6c05","shutdown":false,"extraRewards":[]},{"pid":40,"lpToken":"0x5a6A4D54456819380173272A5E8E9B9904BdF41B","token":"0xabB54222c2b77158CC975a2b715a3d703c256F05","gauge":"0xd8b712d29381748dB89c36BCa0138d7c75866ddF","crvRewards":"0xFd5AbF66b003881b88567EB9Ed9c651F14Dc4771","stash":"0xEd3D937A12fEed5298827B3adf05caaFfb0efDda","shutdown":false,"extraRewards":[{"pool":"0x69a92f1656cd2e193797546cfe2eaf32eaccf6f7","token":"0x090185f2135308bad17527004364ebcc2d37e5f6"}]},{"pid":41,"lpToken":"0x9D0464996170c6B9e75eED71c68B99dDEDf279e8","token":"0x8FDF7cabfEc73d5FfD1447867834b4cf39B745B7","gauge":"0x903dA6213a5A12B61c821598154EfAd98C3B20E4","crvRewards":"0x0392321e86F42C2F94FBb0c6853052487db521F0","stash":"0xF025A9FbcaA41E03e7a443716fe2182d13cf80a4","shutdown":false,"extraRewards":[{"pool":"0xbe4dea8e5d1e53fad661610e47501f858f25852d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":42,"lpToken":"0x8818a9bb44Fbf33502bE7c15c500d0C783B73067","token":"0xF527FF4d2f8D84ec51D31C6F533B8cC78AFf6918","gauge":"0xeFF437A56A22D7dD86C1202A308536ED8C7da7c1","crvRewards":"0xbA8fE590498ed24D330Bb925E69913b1Ac35a81E","stash":"0xc87E93D6138c08a99b581f6dE4424c1e4b71A03F","shutdown":false,"extraRewards":[{"pool":"0x771bc5c888d1b318d0c5b177e4f996d3d5fd3d18","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x8a3f52c2eb02de2d8356a8286c96909352c62b10","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":43,"lpToken":"0xD6Ac1CB9019137a896343Da59dDE6d097F710538","token":"0xe6b9b86a593E6c33fa3F0887753cdC39EA49B246","gauge":"0x63d9f3aB7d0c528797A12a0684E50C397E9e79dC","crvRewards":"0x51a16DA36c79E28dD3C8c0c19214D8aF413984Aa","stash":"0xA335f705e0e33e986Bae79244F2Cd73899932290","shutdown":false,"extraRewards":[{"pool":"0xe689db5d753abc411acb8a3fef226c08acdae13f","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x00a4f5d12e3faa909c53cdcc90968f735633e988","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":44,"lpToken":"0x3F1B0278A9ee595635B61817630cC19DE792f506","token":"0xBec1Fa170974F0B38Eb76D8ca87053AbD5cedffF","gauge":"0x05ca5c01629a8E5845f12ea3A03fF7331932233A","crvRewards":"0xb1Fae59F23CaCe4949Ae734E63E42168aDb0CcB3","stash":"0xCc96f06fa34d934a90089793b27d36801842A599","shutdown":false,"extraRewards":[{"pool":"0x91ad51f0897552ce77f76b44e9a86b4ad2b28c25","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x040a6ae6314e190974ee4839f3c2fbf849ef54eb","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":45,"lpToken":"0x19b080FE1ffA0553469D20Ca36219F17Fcf03859","token":"0x864510e93c38C771adC1B67308cE0b7c4AA1AA9e","gauge":"0x99fb76F75501039089AAC8f20f487bf84E51d76F","crvRewards":"0xCd0559ADb6fAa2fc83aB21Cf4497c3b9b45bB29f","stash":"0x65d3834Ca2F62AB3f484cD50bB8a2Ba784cc69AA","shutdown":false,"extraRewards":[{"pool":"0x21034ccc4f8d07d0cf8998fdd4c45e426540dec1","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0xba5ef047ce02cc0096db3bc8ed84aad14291f8a0","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":46,"lpToken":"0x9c2C8910F113181783c249d8F6Aa41b51Cde0f0c","token":"0xcd555A686486160D815C89D92EE69A88E356f34C","gauge":"0x2fA53e8fa5fAdb81f4332C8EcE39Fe62eA2f919E","crvRewards":"0xa5A5905efc55B05059eE247d5CaC6DD6791Cfc33","stash":"0x44789Fa0e02ed06E3cA4A1405CBef7EA2F11D282","shutdown":false,"extraRewards":[{"pool":"0x9d9ebcc8e7b4ef061c0f7bab532d1710b874f789","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x1c86460640457466e2ec86916b4a91ed86ce0d1e","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":47,"lpToken":"0x8461A004b50d321CB22B7d034969cE6803911899","token":"0xAA4e7d24230B1F3AF324C7574ABD5D28525807cA","gauge":"0x1750a3a3d80A3F5333BBe9c4695B0fAd41061ab1","crvRewards":"0x8F18C0AF0d7d511E8Bdc6B3c64926B04EDfE4892","stash":"0xb75b7297f29d5f6211f112D24b1edF9Dc77eD834","shutdown":false,"extraRewards":[{"pool":"0xe3a64e08eebf38b19a3d9fec51d8cd5a8898dd5e","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x93649cd43635bc5f7ad8fa2fa27cb9ae765ec58a","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":48,"lpToken":"0xB15fFb543211b558D40160811e5DcBcd7d5aaac9","token":"0x281C17920DaB8B2Cb3ce631E2D53c8ccE94262B4","gauge":"0xB15fFb543211b558D40160811e5DcBcd7d5aaac9","crvRewards":"0xc3628b8FAaDe10aCeAe88c9b982cE0AAc9bBaaD3","stash":"0x01140351069af98416cC08b16424b9E765436531","shutdown":false,"extraRewards":[],"noTest":true},{"pid":49,"lpToken":"0xC4C319E2D4d66CcA4464C0c2B32c9Bd23ebe784e","token":"0x0BF4C896100801cecFF4ad1e742E5227D67EcD7b","gauge":"0x12dCD9E8D1577b5E4F066d8e7D404404Ef045342","crvRewards":"0x48Bc302d8295FeA1f8c3e7F57D4dDC9981FEE410","stash":"0xfFA249074F7846Ee072e2068A1DEC44eDD802491","shutdown":false,"extraRewards":[{"pool":"0xcec9a6efff1daf52af12beebf87f81bda7b95c0b","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":50,"lpToken":"0x3Fb78e61784C9c637D560eDE23Ad57CA1294c14a","token":"0x3c5208849fa77Aaa98483527f20303cAF25a1Ad8","gauge":"0xD9277b0D007464eFF133622eC0d42081c93Cef02","crvRewards":"0x7CDA2a83D29d7Fc2ccb8F7716b5c1c34781aeb12","stash":"0xb24Ea588066fBEB9610141d4b779d5D9F80A1180","shutdown":false,"extraRewards":[]},{"pid":51,"lpToken":"0x5B3b5DF2BF2B6543f78e053bD91C4Bdd820929f1","token":"0x23e3AAAA5034165cF194F19692b41d801BEB5304","gauge":"0x9AF13a7B1f1Bbf1A2B05c6fBF23ac23A9E573b4E","crvRewards":"0xA689C00F3fd87dD3871C79C73343cd9F7957377E","stash":"0x3f2A3f6ab577B562a193C008686fb81b5eEe6586","shutdown":false,"extraRewards":[{"pool":"0xb9e2e39c9c804a01f1fcb4e86f765774d511d535","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":52,"lpToken":"0x55A8a39bc9694714E2874c1ce77aa1E599461E18","token":"0x766A8D4DE01D3eD575CdEf0587Eaf615eCB46726","gauge":"0xB518f5e3242393d4eC792BD3f44946A3b98d0E48","crvRewards":"0xC62DE533ea77D46f3172516aB6b1000dAf577E89","stash":"0xa69e5023d5Dc71ec5Bf602A5AC80cb0C5078423E","shutdown":false,"extraRewards":[{"pool":"0x27801399d60594bfede955d54c3e85b2f00179c5","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":53,"lpToken":"0xFbdCA68601f835b27790D98bbb8eC7f05FDEaA9B","token":"0xb43ed35B5A3a9544BBEd8039c67AB04AD428deEa","gauge":"0x346C7BB1A7a6A30c8e81c14e90FC2f0FBddc54d8","crvRewards":"0x4F2b8a15d0Dd58c1eB60bd53e966872828519Cee","stash":"0x4fd82224bEa0653215A5d6cAec59689Deb018c46","shutdown":false,"extraRewards":[{"pool":"0xaaf75a94394f6d06e01cce62e2545ceffbfa1e2d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":54,"lpToken":"0x3D229E1B4faab62F621eF2F6A610961f7BD7b23B","token":"0x18F320B124A80ee2FA491e1438CdA771c3d8c84b","gauge":"0x65CA7Dc5CB661fC58De57B1E1aF404649a27AD35","crvRewards":"0xb0c1B7b83Baae51284B8BbBa02Ec37742440199d","stash":"0x6Ffb6C270D2E9AeEd7654eaEe8A39310e2bB508e","shutdown":false,"extraRewards":[]},{"pid":55,"lpToken":"0x3b6831c0077a1e44ED0a21841C3bC4dC11bCE833","token":"0x410ACa1a116cCc718e9A0BDd8080655a52f1FAC4","gauge":"0x4Fd86Ce7Ecea88F7E0aA78DC12625996Fb3a04bC","crvRewards":"0xD2B756Af4E345A8657C0656C148aDCD3000C97A4","stash":"0x03d1e553667F0cf0A4775069DAA5ed8F125308e8","shutdown":false,"extraRewards":[]},{"pid":56,"lpToken":"0x87650D7bbfC3A9F10587d7778206671719d9910D","token":"0xd1daFC25bf672a52eF9c092258389dC2AD078309","gauge":"0x25f0cE4E2F8dbA112D9b115710AC297F816087CD","crvRewards":"0x7D536a737C13561e0D2Decf1152a653B4e615158","stash":"0x899996778C4e0cae5680d76262E44a2a7a5852A1","shutdown":false,"extraRewards":[{"pool":"0x08ede581d9b9ae55fa7decc4e4331d191bbbf9db","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0x8a05801c1512f6018e450b0f69e9ca7b985fcea3","token":"0x8207c1ffc5b6804f6024322ccf34f29c3541ae26"}]},{"pid":57,"lpToken":"0xc270b3B858c335B6BA5D5b10e2Da8a09976005ad","token":"0x918696AB70bF4F9a22497fC73903F3498a885980","gauge":"0xC95bdf13A08A547E4dD9f29B00aB7fF08C5d093d","crvRewards":"0x500E169c15961DE8798Edb52e0f88a8662d30EC5","stash":"0x1aE471f8C3338e826a5f6f47Cdf33b504Da7cD83","shutdown":false,"extraRewards":[]},{"pid":58,"lpToken":"0xBaaa1F5DbA42C3389bDbc2c9D2dE134F5cD0Dc89","token":"0x88c82d9767CC8AF564Da81dDD10741fa9D875682","gauge":"0x16C2beE6f55dAB7F494dBa643fF52ef2D47FBA36","crvRewards":"0x329cb014b562d5d42927cfF0dEdF4c13ab0442EF","stash":"0x755758DcAa6e8072B541863983ADA9c7BDA7c420","shutdown":false,"extraRewards":[{"pool":"0x880c2c5c4ea8cef892a90e3f714eb60144c08c30","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":59,"lpToken":"0xCEAF7747579696A2F0bb206a14210e3c9e6fB269","token":"0x2d2006135e682984a8a2eB74F5C87c2251cC71E9","gauge":"0xb0f5d00e5916c8b8981e99191A1458704B587b2b","crvRewards":"0x7e2b9B5244bcFa5108A76D5E7b507CFD5581AD4A","stash":"0x77Aa721Ba9C1423c5DBce6E0804887eEbD99cd00","shutdown":false,"extraRewards":[{"pool":"0x28a68d9c58086daeb32d5c9297366cc91e50215d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":60,"lpToken":"0xb9446c4Ef5EBE66268dA6700D26f96273DE3d571","token":"0xC98786A97d667Fe67AAe694BD7949813A73f1BF0","gauge":"0x1E212e054d74ed136256fc5a5DDdB4867c6E003F","crvRewards":"0x4a9b7eDD67f58654a2c33B587f98c5709AC7d482","stash":"0x54aD657aEe30c0f954944f639852d50960689Fa4","shutdown":false,"extraRewards":[{"pool":"0x74835a39fd0e72e142d5e83d514e3ef6e7642220","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0xb83eaada3757432f7a894944c3ac154fbdbd8b46","token":"0x31429d1856ad1377a8a0079410b297e1a9e214c2"}]},{"pid":61,"lpToken":"0xEd4064f376cB8d68F770FB1Ff088a3d0F3FF5c4d","token":"0x0Fb8dcdD95e4C48D3dD0eFA4086512f6F8FD4565","gauge":"0x1cEBdB0856dd985fAe9b8fEa2262469360B8a3a6","crvRewards":"0x085A2054c51eA5c91dbF7f90d65e728c0f2A270f","stash":"0x285972e5799cF224c4C6e81E9e47d4ae9EA7CBD3","shutdown":false,"extraRewards":[{"pool":"0xe1ecbb4181378e2346eac90eb5606c01aa08f052","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":62,"lpToken":"0xAA5A67c256e27A5d80712c51971408db3370927D","token":"0xb3E8f3D7Ec208a032178880955f6c877479d1FDd","gauge":"0x8Fa728F393588E8D8dD1ca397E9a710E53fA553a","crvRewards":"0x835f69e58087E5B6bffEf182fe2bf959Fe253c3c","stash":"0xE7c811697ac3dd92cb100882dAc5Bd4183Bab747","shutdown":false,"extraRewards":[]},{"pid":63,"lpToken":"0x6BA5b4e438FA0aAf7C1bD179285aF65d13bD3D90","token":"0x2937Ef019db60C826Fe6141EB300847f85E66956","gauge":"0x66ec719045bBD62db5eBB11184c18237D3Cc2E62","crvRewards":"0x29B91c6CEC4F43aFdb6f6d71FAf1C03d6b712f55","stash":"0xAEA94fC182b7Fe73E25C0C7954FE1d5f5173C0B9","shutdown":false,"extraRewards":[]},{"pid":64,"lpToken":"0x3A283D9c08E8b55966afb64C515f5143cf907611","token":"0x0bC857f97c0554d1d0D602b56F2EEcE682016fBA","gauge":"0x7E1444BA99dcdFfE8fBdb42C02F0005D14f13BE1","crvRewards":"0xb1Fb0BA0676A1fFA83882c7F4805408bA232C1fA","stash":"0x679df29F380F1BEc31657cd6a5638aec4AEA3300","shutdown":false,"extraRewards":[{"pool":"0x834b9147fd23bf131644abc6e557daf99c5cda15","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":65,"lpToken":"0x8484673cA7BfF40F82B041916881aeA15ee84834","token":"0x7B00e822F9E05882F9e088655e738F656C99C53A","gauge":"0x1B3E14157ED33F60668f2103bCd5Db39a1573E5B","crvRewards":"0x6cb1933E49C48AE8ec12d39aD7D85695b247deDB","stash":"0x2B7559683B0cC4dbF06CEd4c3AC1B589f7F5a53B","shutdown":false,"extraRewards":[]},{"pid":66,"lpToken":"0x8282BD15dcA2EA2bDf24163E8f2781B30C43A2ef","token":"0xe87f447ef9B76905A25ab8160c7EF66864f4984A","gauge":"0x08380a4999Be1a958E2abbA07968d703C7A3027C","crvRewards":"0xb2f0bB6352417c1Bf017862aC165E67623611aF3","stash":"0x8bf218F98e1f433D083A6313FB49b2e69Cb89148","shutdown":false,"extraRewards":[]},{"pid":67,"lpToken":"0xCb08717451aaE9EF950a2524E33B6DCaBA60147B","token":"0x1766EDBa8CD066e3eB1912D2b8c7E2c59A3D7Ece","gauge":"0x6070fBD4E608ee5391189E7205d70cc4A274c017","crvRewards":"0x3E91E7c822AC8b4b7905d108c3faCF22A3ee5d2c","stash":"0xf9c837b180744F1C2855D3008740ADf1f305dfe5","shutdown":false,"extraRewards":[]},{"pid":68,"lpToken":"0x29059568bB40344487d62f7450E78b8E6C74e0e5","token":"0x73b78A30A1D249D88Ad6CCb80B1e0b357Fb4b5Ea","gauge":"0x05255C5BD33672b9FEA4129C13274D1E6193312d","crvRewards":"0x3207bDc327aB67f182B82948fd3DF757F8771324","stash":"0x24C93C04E1ed12cF15E7f69611d59e3145150ADE","shutdown":false,"extraRewards":[]},{"pid":69,"lpToken":"0x90244F43D548a4f8dFecfAD91a193465B1fad6F7","token":"0x7E72dDA16B916c986972B1c9F3fbfAe67D96D733","gauge":"0x009aCD89535DAbC270C93F9b39D3232105Fef453","crvRewards":"0xAA0e8Ef60BaBda02Ef11c89a061D82b1D61a462C","stash":"0xAC86e1b070b8364D49fA34CDc3e2fA6e98674873","shutdown":false,"extraRewards":[]},{"pid":70,"lpToken":"0xB37D6c07482Bc11cd28a1f11f1a6ad7b66Dec933","token":"0xbAff5309fa5bf4556cddf83BD729A18Dc8058a9f","gauge":"0x38039dD47636154273b287F74C432Cac83Da97e2","crvRewards":"0x769499A7B4093b2AA35E3F3C00B1ab5dc8EF7146","stash":"0x434Bf2F8fdfAD278571e4b46d1628353FaCb0B73","shutdown":false,"extraRewards":[{"pool":"0x92dfd397b6d0b878126f5a5f6f446ae9fc8a8356","token":"0x31429d1856ad1377a8a0079410b297e1a9e214c2"},{"pool":"0x19ba12d57ad7b126de898706aa6dbf7d6dc85ff8","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"}]},{"pid":71,"lpToken":"0x06cb22615BA53E60D67Bf6C341a0fD5E718E1655","token":"0x6b35abd7612270E09244aFdbE3e5cf67f3B4E09F","gauge":"0xdC69D4cB5b86388Fff0b51885677e258883534ae","crvRewards":"0x3133A4428AAC0b4ad96a09845363386ECd289A9c","stash":"0xe842D814EB4Ff3420d6873eBDDE1d9c6ac384fB2","shutdown":false,"extraRewards":[]},{"pid":72,"lpToken":"0xF3A43307DcAFa93275993862Aae628fCB50dC768","token":"0xCB6D873f7BbE57584a9b08380901Dc200Be7CE74","gauge":"0xAB1927160EC7414C6Fa71763E2a9f3D107c126dd","crvRewards":"0xf27AFAD0142393e4b3E5510aBc5fe3743Ad669Cb","stash":"0x4f3AD55D7b884CDC48ADD1e2451A13af17887F26","shutdown":false,"extraRewards":[{"pool":"0xe2585f27bf5aab7756f626d6444ed5fc9154e606","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0x28120d9d49dbaeb5e34d6b809b842684c482ef27","token":"0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"}]},{"pid":73,"lpToken":"0x447Ddd4960d9fdBF6af9a790560d0AF76795CB08","token":"0x38C9E856C289594F8E0F095FF396142F19004cdb","gauge":"0x8aD7e0e6EDc61bC48ca0DD07f9021c249044eD30","crvRewards":"0x5c463069b99AfC9333F4dC2203a9f0c6C7658cCc","stash":"0x96Cf7f62b073ddEBf9b4F989586f5c7BC3483b66","shutdown":false,"extraRewards":[]},{"pid":74,"lpToken":"0x137469B55D1f15651BA46A89D0588e97dD0B6562","token":"0xe7f50e96e0FE8285D3B27B3b9A464a2102C9708c","gauge":"0x02246583870b36Be0fEf2819E1d3A771d6C07546","crvRewards":"0x36c7E7F9031647A74687ce46A8e16BcEA84f3865","stash":"0x406868FBFdb61f976C2A76d617259EFB7778860A","shutdown":false,"extraRewards":[]},{"pid":75,"lpToken":"0xE160364FD8407FFc8b163e278300c6C5D18Ff61d","token":"0x6b45b93B4505B5c134262c3985d776D71a20D601","gauge":"0x5AC6886Edd18ED0AD01C0B0910660637c551FBd6","crvRewards":"0x41565A76DC949E57486Ca4550C2e086D95AEfb19","stash":"0xFf4bEA60c48bA9210527F24E28bAC56BACE1f286","shutdown":false,"extraRewards":[]},{"pid":76,"lpToken":"0xbcb91E689114B9Cc865AD7871845C95241Df4105","token":"0x80D68884f425f73395EA0a7476a786De38Ca1306","gauge":"0xb07d00e0eE9b1b2eb9f1B483924155Af7AF0c8Fa","crvRewards":"0xC4d009E61a904BfDf39144295F12870E8305D4d9","stash":"0x2f95d210231aC0eEc91C312F80783bF97133C8Bb","shutdown":false,"extraRewards":[]},{"pid":77,"lpToken":"0xC9467E453620f16b57a34a770C6bceBECe002587","token":"0x518AbdbEe7B2e1D62d3C7435B8FEE56AED7dcE53","gauge":"0xB5efA93d5D23642f970aF41a1ea9A26f19CbD2Eb","crvRewards":"0x589761B61D8d1C8ecc36F3cFE35932670749015a","stash":"0xA8ec0bf38200188DcE8344a8B82d7aAc26A6faF5","shutdown":false,"extraRewards":[]},{"pid":78,"lpToken":"0x2302aaBe69e6E7A1b0Aa23aAC68fcCB8A4D2B460","token":"0x77d869e95a08b6b88f8f87DeEdEd5e9b8bb30B29","gauge":"0x784342E983E9283A7108F20FcA21995534b3fE65","crvRewards":"0xE259d085f55825624bBA8571eD20984c125Ba720","stash":"0x637aC4C86b8b85fbA60e657D1Ba312b3451D7386","shutdown":false,"extraRewards":[],"noTest":true},{"pid":79,"lpToken":"0x1054Ff2ffA34c055a13DCD9E0b4c0cA5b3aecEB9","token":"0x98A0f1541684542Da2455A965dC8CEA1D5f26c24","gauge":"0xE786Df7076AFeECC3faCD841ED4AD20d0F04CF19","crvRewards":"0x8731A63dD6aF83c044F623A89ABD50A8bb5a5022","stash":"0x777C03A0B05e0954F789256E9048ed076f5EbE3d","shutdown":false,"extraRewards":[],"noTest":true},{"pid":154,"lpToken":"0x6c38cE8984a890F5e46e6dF6117C26b3F1EcfC9C","token":"0x96C01B43853bE9E27363B15bE620769437cBa345","gauge":"0x9d4D981d8a9066f5db8532A5816543dE8819d4A8","crvRewards":"0x65C8aa24db76e870DEDfC35701eff84de405D1ba","stash":"0x8A297eFeDE43f47f76014a82D1B910Ee05d83226","extraRewards":[]},{"pid":127,"lpToken":"0x5b6C539b224014A09B3388e51CaAA8e354c959C8","token":"0x06A2C4431FB5dBfECbCbA15154Dd53E374c14292","gauge":"0xAd96E10123Fa34a01cf2314C42D75150849C9295","crvRewards":"0x5d02EcD9B83f1187e92aD5be3d1bd2915CA03699","stash":"0xDdc53D3B91090CD99d87ee1E6108857732fB5E4A","extraRewards":[]}]');
|
|
29512
29669
|
|
|
29513
29670
|
/***/ }),
|
|
29514
|
-
/*
|
|
29671
|
+
/* 244 */
|
|
29515
29672
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29516
29673
|
|
|
29517
29674
|
"use strict";
|
|
@@ -29521,7 +29678,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29521
29678
|
/* harmony export */ });
|
|
29522
29679
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
29523
29680
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
29524
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
29681
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(242);
|
|
29525
29682
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(66);
|
|
29526
29683
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29527
29684
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -29589,7 +29746,7 @@ class ConvexWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29589
29746
|
|
|
29590
29747
|
|
|
29591
29748
|
/***/ }),
|
|
29592
|
-
/*
|
|
29749
|
+
/* 245 */
|
|
29593
29750
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29594
29751
|
|
|
29595
29752
|
"use strict";
|
|
@@ -29599,7 +29756,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29599
29756
|
/* harmony export */ });
|
|
29600
29757
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
29601
29758
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
29602
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
29759
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(242);
|
|
29603
29760
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(66);
|
|
29604
29761
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29605
29762
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -29663,7 +29820,7 @@ class ConvexClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29663
29820
|
|
|
29664
29821
|
|
|
29665
29822
|
/***/ }),
|
|
29666
|
-
/*
|
|
29823
|
+
/* 246 */
|
|
29667
29824
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29668
29825
|
|
|
29669
29826
|
"use strict";
|
|
@@ -29677,13 +29834,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29677
29834
|
/* harmony export */ CBUpdateRebondSubAction: () => (/* reexport safe */ _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__.CBUpdateRebondSubAction),
|
|
29678
29835
|
/* harmony export */ FetchBondIdAction: () => (/* reexport safe */ _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__.FetchBondIdAction)
|
|
29679
29836
|
/* harmony export */ });
|
|
29680
|
-
/* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
29681
|
-
/* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
29682
|
-
/* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
29683
|
-
/* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
29684
|
-
/* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
29685
|
-
/* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
29686
|
-
/* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
29837
|
+
/* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(247);
|
|
29838
|
+
/* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(248);
|
|
29839
|
+
/* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(249);
|
|
29840
|
+
/* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(250);
|
|
29841
|
+
/* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(251);
|
|
29842
|
+
/* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(252);
|
|
29843
|
+
/* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(253);
|
|
29687
29844
|
|
|
29688
29845
|
|
|
29689
29846
|
|
|
@@ -29694,7 +29851,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29694
29851
|
|
|
29695
29852
|
|
|
29696
29853
|
/***/ }),
|
|
29697
|
-
/*
|
|
29854
|
+
/* 247 */
|
|
29698
29855
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29699
29856
|
|
|
29700
29857
|
"use strict";
|
|
@@ -29740,7 +29897,7 @@ class CBCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29740
29897
|
|
|
29741
29898
|
|
|
29742
29899
|
/***/ }),
|
|
29743
|
-
/*
|
|
29900
|
+
/* 248 */
|
|
29744
29901
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29745
29902
|
|
|
29746
29903
|
"use strict";
|
|
@@ -29772,7 +29929,7 @@ class CBChickenInAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29772
29929
|
|
|
29773
29930
|
|
|
29774
29931
|
/***/ }),
|
|
29775
|
-
/*
|
|
29932
|
+
/* 249 */
|
|
29776
29933
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29777
29934
|
|
|
29778
29935
|
"use strict";
|
|
@@ -29805,7 +29962,7 @@ class CBChickenOutAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29805
29962
|
|
|
29806
29963
|
|
|
29807
29964
|
/***/ }),
|
|
29808
|
-
/*
|
|
29965
|
+
/* 250 */
|
|
29809
29966
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29810
29967
|
|
|
29811
29968
|
"use strict";
|
|
@@ -29854,7 +30011,7 @@ class CBRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29854
30011
|
|
|
29855
30012
|
|
|
29856
30013
|
/***/ }),
|
|
29857
|
-
/*
|
|
30014
|
+
/* 251 */
|
|
29858
30015
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29859
30016
|
|
|
29860
30017
|
"use strict";
|
|
@@ -29883,7 +30040,7 @@ class CBUpdateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
29883
30040
|
|
|
29884
30041
|
|
|
29885
30042
|
/***/ }),
|
|
29886
|
-
/*
|
|
30043
|
+
/* 252 */
|
|
29887
30044
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29888
30045
|
|
|
29889
30046
|
"use strict";
|
|
@@ -29917,7 +30074,7 @@ class FetchBondIdAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
29917
30074
|
|
|
29918
30075
|
|
|
29919
30076
|
/***/ }),
|
|
29920
|
-
/*
|
|
30077
|
+
/* 253 */
|
|
29921
30078
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29922
30079
|
|
|
29923
30080
|
"use strict";
|
|
@@ -29948,7 +30105,7 @@ class CBCreateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
29948
30105
|
|
|
29949
30106
|
|
|
29950
30107
|
/***/ }),
|
|
29951
|
-
/*
|
|
30108
|
+
/* 254 */
|
|
29952
30109
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29953
30110
|
|
|
29954
30111
|
"use strict";
|
|
@@ -29962,13 +30119,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29962
30119
|
/* harmony export */ CompoundV3TransferAction: () => (/* reexport safe */ _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__.CompoundV3TransferAction),
|
|
29963
30120
|
/* harmony export */ CompoundV3WithdrawAction: () => (/* reexport safe */ _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.CompoundV3WithdrawAction)
|
|
29964
30121
|
/* harmony export */ });
|
|
29965
|
-
/* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
29966
|
-
/* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
29967
|
-
/* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
29968
|
-
/* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
29969
|
-
/* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
29970
|
-
/* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
29971
|
-
/* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
30122
|
+
/* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(255);
|
|
30123
|
+
/* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(256);
|
|
30124
|
+
/* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(257);
|
|
30125
|
+
/* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(258);
|
|
30126
|
+
/* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(259);
|
|
30127
|
+
/* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(260);
|
|
30128
|
+
/* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(261);
|
|
29972
30129
|
|
|
29973
30130
|
|
|
29974
30131
|
|
|
@@ -29979,7 +30136,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29979
30136
|
|
|
29980
30137
|
|
|
29981
30138
|
/***/ }),
|
|
29982
|
-
/*
|
|
30139
|
+
/* 255 */
|
|
29983
30140
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
29984
30141
|
|
|
29985
30142
|
"use strict";
|
|
@@ -30039,7 +30196,7 @@ class CompoundV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
30039
30196
|
|
|
30040
30197
|
|
|
30041
30198
|
/***/ }),
|
|
30042
|
-
/*
|
|
30199
|
+
/* 256 */
|
|
30043
30200
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30044
30201
|
|
|
30045
30202
|
"use strict";
|
|
@@ -30079,7 +30236,7 @@ class CompoundV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
30079
30236
|
|
|
30080
30237
|
|
|
30081
30238
|
/***/ }),
|
|
30082
|
-
/*
|
|
30239
|
+
/* 257 */
|
|
30083
30240
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30084
30241
|
|
|
30085
30242
|
"use strict";
|
|
@@ -30143,7 +30300,7 @@ class CompoundV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Actio
|
|
|
30143
30300
|
|
|
30144
30301
|
|
|
30145
30302
|
/***/ }),
|
|
30146
|
-
/*
|
|
30303
|
+
/* 258 */
|
|
30147
30304
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30148
30305
|
|
|
30149
30306
|
"use strict";
|
|
@@ -30186,7 +30343,7 @@ class CompoundV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
30186
30343
|
|
|
30187
30344
|
|
|
30188
30345
|
/***/ }),
|
|
30189
|
-
/*
|
|
30346
|
+
/* 259 */
|
|
30190
30347
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30191
30348
|
|
|
30192
30349
|
"use strict";
|
|
@@ -30227,7 +30384,7 @@ class CompoundV3ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
30227
30384
|
|
|
30228
30385
|
|
|
30229
30386
|
/***/ }),
|
|
30230
|
-
/*
|
|
30387
|
+
/* 260 */
|
|
30231
30388
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30232
30389
|
|
|
30233
30390
|
"use strict";
|
|
@@ -30265,7 +30422,7 @@ class CompoundV3AllowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
30265
30422
|
|
|
30266
30423
|
|
|
30267
30424
|
/***/ }),
|
|
30268
|
-
/*
|
|
30425
|
+
/* 261 */
|
|
30269
30426
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30270
30427
|
|
|
30271
30428
|
"use strict";
|
|
@@ -30309,7 +30466,7 @@ class CompoundV3TransferAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
30309
30466
|
|
|
30310
30467
|
|
|
30311
30468
|
/***/ }),
|
|
30312
|
-
/*
|
|
30469
|
+
/* 262 */
|
|
30313
30470
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30314
30471
|
|
|
30315
30472
|
"use strict";
|
|
@@ -30325,15 +30482,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30325
30482
|
/* harmony export */ MorphoAaveV3WithdrawAction: () => (/* reexport safe */ _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__.MorphoAaveV3WithdrawAction),
|
|
30326
30483
|
/* harmony export */ MorphoClaimAction: () => (/* reexport safe */ _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__.MorphoClaimAction)
|
|
30327
30484
|
/* harmony export */ });
|
|
30328
|
-
/* harmony import */ var _MorphoAaveV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
30329
|
-
/* harmony import */ var _MorphoAaveV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
30330
|
-
/* harmony import */ var _MorphoAaveV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
30331
|
-
/* harmony import */ var _MorphoAaveV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
30332
|
-
/* harmony import */ var _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
30333
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
30334
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
30335
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
30336
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
30485
|
+
/* harmony import */ var _MorphoAaveV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(263);
|
|
30486
|
+
/* harmony import */ var _MorphoAaveV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(264);
|
|
30487
|
+
/* harmony import */ var _MorphoAaveV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(265);
|
|
30488
|
+
/* harmony import */ var _MorphoAaveV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(266);
|
|
30489
|
+
/* harmony import */ var _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(267);
|
|
30490
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(268);
|
|
30491
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(269);
|
|
30492
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(270);
|
|
30493
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(271);
|
|
30337
30494
|
|
|
30338
30495
|
|
|
30339
30496
|
|
|
@@ -30346,7 +30503,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30346
30503
|
|
|
30347
30504
|
|
|
30348
30505
|
/***/ }),
|
|
30349
|
-
/*
|
|
30506
|
+
/* 263 */
|
|
30350
30507
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30351
30508
|
|
|
30352
30509
|
"use strict";
|
|
@@ -30404,7 +30561,7 @@ class MorphoAaveV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
30404
30561
|
|
|
30405
30562
|
|
|
30406
30563
|
/***/ }),
|
|
30407
|
-
/*
|
|
30564
|
+
/* 264 */
|
|
30408
30565
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30409
30566
|
|
|
30410
30567
|
"use strict";
|
|
@@ -30439,7 +30596,7 @@ class MorphoAaveV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
30439
30596
|
|
|
30440
30597
|
|
|
30441
30598
|
/***/ }),
|
|
30442
|
-
/*
|
|
30599
|
+
/* 265 */
|
|
30443
30600
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30444
30601
|
|
|
30445
30602
|
"use strict";
|
|
@@ -30475,7 +30632,7 @@ class MorphoAaveV2BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
30475
30632
|
|
|
30476
30633
|
|
|
30477
30634
|
/***/ }),
|
|
30478
|
-
/*
|
|
30635
|
+
/* 266 */
|
|
30479
30636
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30480
30637
|
|
|
30481
30638
|
"use strict";
|
|
@@ -30532,7 +30689,7 @@ class MorphoAaveV2PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
30532
30689
|
|
|
30533
30690
|
|
|
30534
30691
|
/***/ }),
|
|
30535
|
-
/*
|
|
30692
|
+
/* 267 */
|
|
30536
30693
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30537
30694
|
|
|
30538
30695
|
"use strict";
|
|
@@ -30565,7 +30722,7 @@ class MorphoClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
30565
30722
|
|
|
30566
30723
|
|
|
30567
30724
|
/***/ }),
|
|
30568
|
-
/*
|
|
30725
|
+
/* 268 */
|
|
30569
30726
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30570
30727
|
|
|
30571
30728
|
"use strict";
|
|
@@ -30627,7 +30784,7 @@ class MorphoAaveV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
30627
30784
|
|
|
30628
30785
|
|
|
30629
30786
|
/***/ }),
|
|
30630
|
-
/*
|
|
30787
|
+
/* 269 */
|
|
30631
30788
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30632
30789
|
|
|
30633
30790
|
"use strict";
|
|
@@ -30669,7 +30826,7 @@ class MorphoAaveV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
30669
30826
|
|
|
30670
30827
|
|
|
30671
30828
|
/***/ }),
|
|
30672
|
-
/*
|
|
30829
|
+
/* 270 */
|
|
30673
30830
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30674
30831
|
|
|
30675
30832
|
"use strict";
|
|
@@ -30709,7 +30866,7 @@ class MorphoAaveV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
30709
30866
|
|
|
30710
30867
|
|
|
30711
30868
|
/***/ }),
|
|
30712
|
-
/*
|
|
30869
|
+
/* 271 */
|
|
30713
30870
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30714
30871
|
|
|
30715
30872
|
"use strict";
|
|
@@ -30768,7 +30925,7 @@ class MorphoAaveV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
30768
30925
|
|
|
30769
30926
|
|
|
30770
30927
|
/***/ }),
|
|
30771
|
-
/*
|
|
30928
|
+
/* 272 */
|
|
30772
30929
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30773
30930
|
|
|
30774
30931
|
"use strict";
|
|
@@ -30777,14 +30934,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30777
30934
|
/* harmony export */ BprotocolLiquitySPDepositAction: () => (/* reexport safe */ _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__.BprotocolLiquitySPDepositAction),
|
|
30778
30935
|
/* harmony export */ BprotocolLiquitySPWithdrawAction: () => (/* reexport safe */ _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BprotocolLiquitySPWithdrawAction)
|
|
30779
30936
|
/* harmony export */ });
|
|
30780
|
-
/* harmony import */ var _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
30781
|
-
/* harmony import */ var _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
30937
|
+
/* harmony import */ var _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(273);
|
|
30938
|
+
/* harmony import */ var _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(274);
|
|
30782
30939
|
|
|
30783
30940
|
|
|
30784
30941
|
|
|
30785
30942
|
|
|
30786
30943
|
/***/ }),
|
|
30787
|
-
/*
|
|
30944
|
+
/* 273 */
|
|
30788
30945
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30789
30946
|
|
|
30790
30947
|
"use strict";
|
|
@@ -30838,7 +30995,7 @@ class BprotocolLiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1
|
|
|
30838
30995
|
|
|
30839
30996
|
|
|
30840
30997
|
/***/ }),
|
|
30841
|
-
/*
|
|
30998
|
+
/* 274 */
|
|
30842
30999
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30843
31000
|
|
|
30844
31001
|
"use strict";
|
|
@@ -30875,7 +31032,7 @@ class BprotocolLiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_
|
|
|
30875
31032
|
|
|
30876
31033
|
|
|
30877
31034
|
/***/ }),
|
|
30878
|
-
/*
|
|
31035
|
+
/* 275 */
|
|
30879
31036
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30880
31037
|
|
|
30881
31038
|
"use strict";
|
|
@@ -30892,16 +31049,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30892
31049
|
/* harmony export */ CurveUsdSupplyAction: () => (/* reexport safe */ _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__.CurveUsdSupplyAction),
|
|
30893
31050
|
/* harmony export */ CurveUsdWithdrawAction: () => (/* reexport safe */ _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveUsdWithdrawAction)
|
|
30894
31051
|
/* harmony export */ });
|
|
30895
|
-
/* harmony import */ var _CurveUsdCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
30896
|
-
/* harmony import */ var _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
30897
|
-
/* harmony import */ var _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
30898
|
-
/* harmony import */ var _CurveUsdBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
30899
|
-
/* harmony import */ var _CurveUsdPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
30900
|
-
/* harmony import */ var _CurveUsdRepayAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
30901
|
-
/* harmony import */ var _CurveUsdSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
30902
|
-
/* harmony import */ var _CurveUsdLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
30903
|
-
/* harmony import */ var _CurveUsdSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
30904
|
-
/* harmony import */ var _CurveUsdAdjustAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
31052
|
+
/* harmony import */ var _CurveUsdCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(276);
|
|
31053
|
+
/* harmony import */ var _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(278);
|
|
31054
|
+
/* harmony import */ var _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(279);
|
|
31055
|
+
/* harmony import */ var _CurveUsdBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(280);
|
|
31056
|
+
/* harmony import */ var _CurveUsdPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(281);
|
|
31057
|
+
/* harmony import */ var _CurveUsdRepayAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(282);
|
|
31058
|
+
/* harmony import */ var _CurveUsdSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(283);
|
|
31059
|
+
/* harmony import */ var _CurveUsdLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(284);
|
|
31060
|
+
/* harmony import */ var _CurveUsdSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(285);
|
|
31061
|
+
/* harmony import */ var _CurveUsdAdjustAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(286);
|
|
30905
31062
|
|
|
30906
31063
|
|
|
30907
31064
|
|
|
@@ -30915,7 +31072,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30915
31072
|
|
|
30916
31073
|
|
|
30917
31074
|
/***/ }),
|
|
30918
|
-
/*
|
|
31075
|
+
/* 276 */
|
|
30919
31076
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30920
31077
|
|
|
30921
31078
|
"use strict";
|
|
@@ -30926,7 +31083,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
30926
31083
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
30927
31084
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
|
|
30928
31085
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
|
|
30929
|
-
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
31086
|
+
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(277);
|
|
30930
31087
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
30931
31088
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
30932
31089
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -30974,7 +31131,7 @@ class CurveUsdCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
30974
31131
|
|
|
30975
31132
|
|
|
30976
31133
|
/***/ }),
|
|
30977
|
-
/*
|
|
31134
|
+
/* 277 */
|
|
30978
31135
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
30979
31136
|
|
|
30980
31137
|
"use strict";
|
|
@@ -30999,7 +31156,7 @@ const controllerFactoryAddress = '0xC9332fdCB1C491Dcc683bAe86Fe3cb70360738BC';
|
|
|
30999
31156
|
|
|
31000
31157
|
|
|
31001
31158
|
/***/ }),
|
|
31002
|
-
/*
|
|
31159
|
+
/* 278 */
|
|
31003
31160
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31004
31161
|
|
|
31005
31162
|
"use strict";
|
|
@@ -31009,7 +31166,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31009
31166
|
/* harmony export */ });
|
|
31010
31167
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
31011
31168
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
31012
|
-
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
31169
|
+
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(277);
|
|
31013
31170
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
31014
31171
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
31015
31172
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -31053,7 +31210,7 @@ class CurveUsdSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
31053
31210
|
|
|
31054
31211
|
|
|
31055
31212
|
/***/ }),
|
|
31056
|
-
/*
|
|
31213
|
+
/* 279 */
|
|
31057
31214
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31058
31215
|
|
|
31059
31216
|
"use strict";
|
|
@@ -31088,7 +31245,7 @@ class CurveUsdWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
31088
31245
|
|
|
31089
31246
|
|
|
31090
31247
|
/***/ }),
|
|
31091
|
-
/*
|
|
31248
|
+
/* 280 */
|
|
31092
31249
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31093
31250
|
|
|
31094
31251
|
"use strict";
|
|
@@ -31123,7 +31280,7 @@ class CurveUsdBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
31123
31280
|
|
|
31124
31281
|
|
|
31125
31282
|
/***/ }),
|
|
31126
|
-
/*
|
|
31283
|
+
/* 281 */
|
|
31127
31284
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31128
31285
|
|
|
31129
31286
|
"use strict";
|
|
@@ -31181,7 +31338,7 @@ class CurveUsdPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
31181
31338
|
|
|
31182
31339
|
|
|
31183
31340
|
/***/ }),
|
|
31184
|
-
/*
|
|
31341
|
+
/* 282 */
|
|
31185
31342
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31186
31343
|
|
|
31187
31344
|
"use strict";
|
|
@@ -31198,8 +31355,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31198
31355
|
* @category CurveUsd
|
|
31199
31356
|
*/
|
|
31200
31357
|
class CurveUsdRepayAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
31201
|
-
constructor(controllerAddress, collAmount, to, minAmount, additionData, gasUsed, dfsFeeDivider
|
|
31202
|
-
super('CurveUsdRepay', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CurveUsdRepay'), ['address', 'uint256', 'address', 'uint256', 'bytes', 'uint32', '
|
|
31358
|
+
constructor(controllerAddress, collAmount, to, minAmount, additionData, gasUsed, dfsFeeDivider) {
|
|
31359
|
+
super('CurveUsdRepay', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CurveUsdRepay'), ['address', 'uint256', 'address', 'uint256', 'bytes', 'uint32', 'uint24'], [controllerAddress, collAmount, to, minAmount, additionData, gasUsed, dfsFeeDivider]);
|
|
31203
31360
|
this.mappableArgs = [
|
|
31204
31361
|
...this.args,
|
|
31205
31362
|
];
|
|
@@ -31208,7 +31365,7 @@ class CurveUsdRepayAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
31208
31365
|
|
|
31209
31366
|
|
|
31210
31367
|
/***/ }),
|
|
31211
|
-
/*
|
|
31368
|
+
/* 283 */
|
|
31212
31369
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31213
31370
|
|
|
31214
31371
|
"use strict";
|
|
@@ -31261,7 +31418,7 @@ class CurveUsdSelfLiquidateAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.A
|
|
|
31261
31418
|
|
|
31262
31419
|
|
|
31263
31420
|
/***/ }),
|
|
31264
|
-
/*
|
|
31421
|
+
/* 284 */
|
|
31265
31422
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31266
31423
|
|
|
31267
31424
|
"use strict";
|
|
@@ -31280,9 +31437,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31280
31437
|
* @category CurveUsd
|
|
31281
31438
|
*/
|
|
31282
31439
|
class CurveUsdLevCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
31283
|
-
constructor(controllerAddress, collateralAmount, debtAmount, minAmount, nBands, from, additionData, gasUsed, dfsFeeDivider
|
|
31440
|
+
constructor(controllerAddress, collateralAmount, debtAmount, minAmount, nBands, from, additionData, gasUsed, dfsFeeDivider) {
|
|
31284
31441
|
(0,_utils_general__WEBPACK_IMPORTED_MODULE_1__.requireAddress)(from);
|
|
31285
|
-
super('CurveUsdLevCreate', (0,_addresses__WEBPACK_IMPORTED_MODULE_2__.getAddr)('CurveUsdLevCreate'), ['address', 'uint256', 'uint256', 'uint256', 'uint256', 'address', 'bytes', 'uint32', '
|
|
31442
|
+
super('CurveUsdLevCreate', (0,_addresses__WEBPACK_IMPORTED_MODULE_2__.getAddr)('CurveUsdLevCreate'), ['address', 'uint256', 'uint256', 'uint256', 'uint256', 'address', 'bytes', 'uint32', 'uint24'], [controllerAddress, collateralAmount, debtAmount, minAmount, nBands, from, additionData, gasUsed, dfsFeeDivider]);
|
|
31286
31443
|
this.mappableArgs = [
|
|
31287
31444
|
...this.args,
|
|
31288
31445
|
];
|
|
@@ -31291,7 +31448,7 @@ class CurveUsdLevCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
31291
31448
|
|
|
31292
31449
|
|
|
31293
31450
|
/***/ }),
|
|
31294
|
-
/*
|
|
31451
|
+
/* 285 */
|
|
31295
31452
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31296
31453
|
|
|
31297
31454
|
"use strict";
|
|
@@ -31310,9 +31467,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31310
31467
|
* @category CurveUsd
|
|
31311
31468
|
*/
|
|
31312
31469
|
class CurveUsdSelfLiquidateWithCollAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
31313
|
-
constructor(controllerAddress, percentage, minCrvUsdExpected, swapAmount, minAmount, to, additionData, gasUsed, dfsFeeDivider
|
|
31470
|
+
constructor(controllerAddress, percentage, minCrvUsdExpected, swapAmount, minAmount, to, additionData, gasUsed, dfsFeeDivider) {
|
|
31314
31471
|
(0,_utils_general__WEBPACK_IMPORTED_MODULE_1__.requireAddress)(to);
|
|
31315
|
-
super('CurveUsdSelfLiquidateWithColl', (0,_addresses__WEBPACK_IMPORTED_MODULE_2__.getAddr)('CurveUsdSelfLiquidateWithColl'), ['address', 'uint256', 'uint256', 'uint256', 'uint256', 'address', 'bytes', 'uint32', '
|
|
31472
|
+
super('CurveUsdSelfLiquidateWithColl', (0,_addresses__WEBPACK_IMPORTED_MODULE_2__.getAddr)('CurveUsdSelfLiquidateWithColl'), ['address', 'uint256', 'uint256', 'uint256', 'uint256', 'address', 'bytes', 'uint32', 'uint24'], [controllerAddress, percentage, minCrvUsdExpected, swapAmount, minAmount, to, additionData, gasUsed, dfsFeeDivider]);
|
|
31316
31473
|
this.mappableArgs = [
|
|
31317
31474
|
...this.args,
|
|
31318
31475
|
];
|
|
@@ -31321,7 +31478,7 @@ class CurveUsdSelfLiquidateWithCollAction extends _Action__WEBPACK_IMPORTED_MODU
|
|
|
31321
31478
|
|
|
31322
31479
|
|
|
31323
31480
|
/***/ }),
|
|
31324
|
-
/*
|
|
31481
|
+
/* 286 */
|
|
31325
31482
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31326
31483
|
|
|
31327
31484
|
"use strict";
|
|
@@ -31331,7 +31488,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31331
31488
|
/* harmony export */ });
|
|
31332
31489
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
31333
31490
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
31334
|
-
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
31491
|
+
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(277);
|
|
31335
31492
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
31336
31493
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
31337
31494
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -31375,7 +31532,7 @@ class CurveUsdAdjustAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
31375
31532
|
|
|
31376
31533
|
|
|
31377
31534
|
/***/ }),
|
|
31378
|
-
/*
|
|
31535
|
+
/* 287 */
|
|
31379
31536
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31380
31537
|
|
|
31381
31538
|
"use strict";
|
|
@@ -31392,16 +31549,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31392
31549
|
/* harmony export */ SparkSwapBorrowRateModeAction: () => (/* reexport safe */ _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.SparkSwapBorrowRateModeAction),
|
|
31393
31550
|
/* harmony export */ SparkWithdrawAction: () => (/* reexport safe */ _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__.SparkWithdrawAction)
|
|
31394
31551
|
/* harmony export */ });
|
|
31395
|
-
/* harmony import */ var _SparkSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
31396
|
-
/* harmony import */ var _SparkBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
31397
|
-
/* harmony import */ var _SparkPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
31398
|
-
/* harmony import */ var _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
31399
|
-
/* harmony import */ var _SparkSetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
31400
|
-
/* harmony import */ var _SparkSpTokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
31401
|
-
/* harmony import */ var _SparkCollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
31402
|
-
/* harmony import */ var _SparkClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
31403
|
-
/* harmony import */ var _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
31404
|
-
/* harmony import */ var _SparkDelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
31552
|
+
/* harmony import */ var _SparkSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(288);
|
|
31553
|
+
/* harmony import */ var _SparkBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(289);
|
|
31554
|
+
/* harmony import */ var _SparkPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(290);
|
|
31555
|
+
/* harmony import */ var _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(291);
|
|
31556
|
+
/* harmony import */ var _SparkSetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(292);
|
|
31557
|
+
/* harmony import */ var _SparkSpTokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(293);
|
|
31558
|
+
/* harmony import */ var _SparkCollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(294);
|
|
31559
|
+
/* harmony import */ var _SparkClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(295);
|
|
31560
|
+
/* harmony import */ var _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(296);
|
|
31561
|
+
/* harmony import */ var _SparkDelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(297);
|
|
31405
31562
|
|
|
31406
31563
|
|
|
31407
31564
|
|
|
@@ -31415,7 +31572,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
31415
31572
|
|
|
31416
31573
|
|
|
31417
31574
|
/***/ }),
|
|
31418
|
-
/*
|
|
31575
|
+
/* 288 */
|
|
31419
31576
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31420
31577
|
|
|
31421
31578
|
"use strict";
|
|
@@ -31507,7 +31664,7 @@ class SparkSupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Actio
|
|
|
31507
31664
|
|
|
31508
31665
|
|
|
31509
31666
|
/***/ }),
|
|
31510
|
-
/*
|
|
31667
|
+
/* 289 */
|
|
31511
31668
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31512
31669
|
|
|
31513
31670
|
"use strict";
|
|
@@ -31580,7 +31737,7 @@ class SparkBorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
31580
31737
|
|
|
31581
31738
|
|
|
31582
31739
|
/***/ }),
|
|
31583
|
-
/*
|
|
31740
|
+
/* 290 */
|
|
31584
31741
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31585
31742
|
|
|
31586
31743
|
"use strict";
|
|
@@ -31672,7 +31829,7 @@ class SparkPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
31672
31829
|
|
|
31673
31830
|
|
|
31674
31831
|
/***/ }),
|
|
31675
|
-
/*
|
|
31832
|
+
/* 291 */
|
|
31676
31833
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31677
31834
|
|
|
31678
31835
|
"use strict";
|
|
@@ -31731,7 +31888,7 @@ class SparkWithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
|
|
|
31731
31888
|
|
|
31732
31889
|
|
|
31733
31890
|
/***/ }),
|
|
31734
|
-
/*
|
|
31891
|
+
/* 292 */
|
|
31735
31892
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31736
31893
|
|
|
31737
31894
|
"use strict";
|
|
@@ -31777,7 +31934,7 @@ class SparkSetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
|
|
|
31777
31934
|
|
|
31778
31935
|
|
|
31779
31936
|
/***/ }),
|
|
31780
|
-
/*
|
|
31937
|
+
/* 293 */
|
|
31781
31938
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31782
31939
|
|
|
31783
31940
|
"use strict";
|
|
@@ -31856,7 +32013,7 @@ class SparkSpTokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
|
|
|
31856
32013
|
|
|
31857
32014
|
|
|
31858
32015
|
/***/ }),
|
|
31859
|
-
/*
|
|
32016
|
+
/* 294 */
|
|
31860
32017
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31861
32018
|
|
|
31862
32019
|
"use strict";
|
|
@@ -31908,7 +32065,7 @@ class SparkCollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE
|
|
|
31908
32065
|
|
|
31909
32066
|
|
|
31910
32067
|
/***/ }),
|
|
31911
|
-
/*
|
|
32068
|
+
/* 295 */
|
|
31912
32069
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31913
32070
|
|
|
31914
32071
|
"use strict";
|
|
@@ -31962,7 +32119,7 @@ class SparkClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__
|
|
|
31962
32119
|
|
|
31963
32120
|
|
|
31964
32121
|
/***/ }),
|
|
31965
|
-
/*
|
|
32122
|
+
/* 296 */
|
|
31966
32123
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
31967
32124
|
|
|
31968
32125
|
"use strict";
|
|
@@ -32013,7 +32170,7 @@ class SparkSwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODU
|
|
|
32013
32170
|
|
|
32014
32171
|
|
|
32015
32172
|
/***/ }),
|
|
32016
|
-
/*
|
|
32173
|
+
/* 297 */
|
|
32017
32174
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32018
32175
|
|
|
32019
32176
|
"use strict";
|
|
@@ -32073,7 +32230,7 @@ class SparkDelegateCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
|
|
|
32073
32230
|
|
|
32074
32231
|
|
|
32075
32232
|
/***/ }),
|
|
32076
|
-
/*
|
|
32233
|
+
/* 298 */
|
|
32077
32234
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32078
32235
|
|
|
32079
32236
|
"use strict";
|
|
@@ -32086,30 +32243,36 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32086
32243
|
/* harmony export */ CompV3RatioTrigger: () => (/* reexport safe */ _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__.CompV3RatioTrigger),
|
|
32087
32244
|
/* harmony export */ CompoundRatioTrigger: () => (/* reexport safe */ _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__.CompoundRatioTrigger),
|
|
32088
32245
|
/* harmony export */ GasPriceTrigger: () => (/* reexport safe */ _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__.GasPriceTrigger),
|
|
32246
|
+
/* harmony export */ LiquityDebtInFrontWithLimitTrigger: () => (/* reexport safe */ _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_16__.LiquityDebtInFrontWithLimitTrigger),
|
|
32089
32247
|
/* harmony export */ LiquityRatioTrigger: () => (/* reexport safe */ _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__.LiquityRatioTrigger),
|
|
32090
32248
|
/* harmony export */ MakerRatioTrigger: () => (/* reexport safe */ _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__.MakerRatioTrigger),
|
|
32249
|
+
/* harmony export */ MorphoAaveV2RatioTrigger: () => (/* reexport safe */ _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__.MorphoAaveV2RatioTrigger),
|
|
32091
32250
|
/* harmony export */ ReflexerRatioTrigger: () => (/* reexport safe */ _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__.ReflexerRatioTrigger),
|
|
32092
|
-
/* harmony export */ SparkQuotePriceTrigger: () => (/* reexport safe */
|
|
32093
|
-
/* harmony export */ SparkRatioTrigger: () => (/* reexport safe */
|
|
32251
|
+
/* harmony export */ SparkQuotePriceTrigger: () => (/* reexport safe */ _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_15__.SparkQuotePriceTrigger),
|
|
32252
|
+
/* harmony export */ SparkRatioTrigger: () => (/* reexport safe */ _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_14__.SparkRatioTrigger),
|
|
32094
32253
|
/* harmony export */ TimestampTrigger: () => (/* reexport safe */ _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__.TimestampTrigger),
|
|
32095
32254
|
/* harmony export */ TrailingStopTrigger: () => (/* reexport safe */ _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__.TrailingStopTrigger),
|
|
32096
32255
|
/* harmony export */ UniV3CurrentTickTrigger: () => (/* reexport safe */ _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__.UniV3CurrentTickTrigger)
|
|
32097
32256
|
/* harmony export */ });
|
|
32098
|
-
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
32099
|
-
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
32100
|
-
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
32101
|
-
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
32102
|
-
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
32103
|
-
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
32104
|
-
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
32105
|
-
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
32106
|
-
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
32107
|
-
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
32108
|
-
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
32109
|
-
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
32110
|
-
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
32111
|
-
/* harmony import */ var
|
|
32112
|
-
/* harmony import */ var
|
|
32257
|
+
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(299);
|
|
32258
|
+
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(300);
|
|
32259
|
+
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(301);
|
|
32260
|
+
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(302);
|
|
32261
|
+
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(303);
|
|
32262
|
+
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(304);
|
|
32263
|
+
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(305);
|
|
32264
|
+
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(306);
|
|
32265
|
+
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(307);
|
|
32266
|
+
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(308);
|
|
32267
|
+
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(309);
|
|
32268
|
+
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(310);
|
|
32269
|
+
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(311);
|
|
32270
|
+
/* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(312);
|
|
32271
|
+
/* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(313);
|
|
32272
|
+
/* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(314);
|
|
32273
|
+
/* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(315);
|
|
32274
|
+
|
|
32275
|
+
|
|
32113
32276
|
|
|
32114
32277
|
|
|
32115
32278
|
|
|
@@ -32128,7 +32291,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32128
32291
|
|
|
32129
32292
|
|
|
32130
32293
|
/***/ }),
|
|
32131
|
-
/*
|
|
32294
|
+
/* 299 */
|
|
32132
32295
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32133
32296
|
|
|
32134
32297
|
"use strict";
|
|
@@ -32153,7 +32316,7 @@ class MakerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32153
32316
|
|
|
32154
32317
|
|
|
32155
32318
|
/***/ }),
|
|
32156
|
-
/*
|
|
32319
|
+
/* 300 */
|
|
32157
32320
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32158
32321
|
|
|
32159
32322
|
"use strict";
|
|
@@ -32178,7 +32341,7 @@ class ChainLinkPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
32178
32341
|
|
|
32179
32342
|
|
|
32180
32343
|
/***/ }),
|
|
32181
|
-
/*
|
|
32344
|
+
/* 301 */
|
|
32182
32345
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32183
32346
|
|
|
32184
32347
|
"use strict";
|
|
@@ -32203,7 +32366,7 @@ class UniV3CurrentTickTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
32203
32366
|
|
|
32204
32367
|
|
|
32205
32368
|
/***/ }),
|
|
32206
|
-
/*
|
|
32369
|
+
/* 302 */
|
|
32207
32370
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32208
32371
|
|
|
32209
32372
|
"use strict";
|
|
@@ -32228,7 +32391,7 @@ class TimestampTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32228
32391
|
|
|
32229
32392
|
|
|
32230
32393
|
/***/ }),
|
|
32231
|
-
/*
|
|
32394
|
+
/* 303 */
|
|
32232
32395
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32233
32396
|
|
|
32234
32397
|
"use strict";
|
|
@@ -32253,7 +32416,7 @@ class GasPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32253
32416
|
|
|
32254
32417
|
|
|
32255
32418
|
/***/ }),
|
|
32256
|
-
/*
|
|
32419
|
+
/* 304 */
|
|
32257
32420
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32258
32421
|
|
|
32259
32422
|
"use strict";
|
|
@@ -32278,7 +32441,7 @@ class CompoundRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32278
32441
|
|
|
32279
32442
|
|
|
32280
32443
|
/***/ }),
|
|
32281
|
-
/*
|
|
32444
|
+
/* 305 */
|
|
32282
32445
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32283
32446
|
|
|
32284
32447
|
"use strict";
|
|
@@ -32303,7 +32466,7 @@ class ReflexerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32303
32466
|
|
|
32304
32467
|
|
|
32305
32468
|
/***/ }),
|
|
32306
|
-
/*
|
|
32469
|
+
/* 306 */
|
|
32307
32470
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32308
32471
|
|
|
32309
32472
|
"use strict";
|
|
@@ -32328,7 +32491,7 @@ class LiquityRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32328
32491
|
|
|
32329
32492
|
|
|
32330
32493
|
/***/ }),
|
|
32331
|
-
/*
|
|
32494
|
+
/* 307 */
|
|
32332
32495
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32333
32496
|
|
|
32334
32497
|
"use strict";
|
|
@@ -32353,7 +32516,7 @@ class AaveV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32353
32516
|
|
|
32354
32517
|
|
|
32355
32518
|
/***/ }),
|
|
32356
|
-
/*
|
|
32519
|
+
/* 308 */
|
|
32357
32520
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32358
32521
|
|
|
32359
32522
|
"use strict";
|
|
@@ -32378,7 +32541,7 @@ class CompV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32378
32541
|
|
|
32379
32542
|
|
|
32380
32543
|
/***/ }),
|
|
32381
|
-
/*
|
|
32544
|
+
/* 309 */
|
|
32382
32545
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32383
32546
|
|
|
32384
32547
|
"use strict";
|
|
@@ -32403,7 +32566,7 @@ class TrailingStopTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32403
32566
|
|
|
32404
32567
|
|
|
32405
32568
|
/***/ }),
|
|
32406
|
-
/*
|
|
32569
|
+
/* 310 */
|
|
32407
32570
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32408
32571
|
|
|
32409
32572
|
"use strict";
|
|
@@ -32428,7 +32591,7 @@ class CBRebondTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32428
32591
|
|
|
32429
32592
|
|
|
32430
32593
|
/***/ }),
|
|
32431
|
-
/*
|
|
32594
|
+
/* 311 */
|
|
32432
32595
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32433
32596
|
|
|
32434
32597
|
"use strict";
|
|
@@ -32453,7 +32616,32 @@ class AaveV3QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
32453
32616
|
|
|
32454
32617
|
|
|
32455
32618
|
/***/ }),
|
|
32456
|
-
/*
|
|
32619
|
+
/* 312 */
|
|
32620
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32621
|
+
|
|
32622
|
+
"use strict";
|
|
32623
|
+
__webpack_require__.r(__webpack_exports__);
|
|
32624
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
32625
|
+
/* harmony export */ MorphoAaveV2RatioTrigger: () => (/* binding */ MorphoAaveV2RatioTrigger)
|
|
32626
|
+
/* harmony export */ });
|
|
32627
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
32628
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
32629
|
+
|
|
32630
|
+
|
|
32631
|
+
/**
|
|
32632
|
+
*
|
|
32633
|
+
*
|
|
32634
|
+
* @category Triggers
|
|
32635
|
+
*/
|
|
32636
|
+
class MorphoAaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
32637
|
+
constructor(user, ratio, state) {
|
|
32638
|
+
super('MorphoAaveV2RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('MorphoAaveV2RatioTrigger'), ['address', 'uint256', 'uint8'], [user, ratio, state]);
|
|
32639
|
+
}
|
|
32640
|
+
}
|
|
32641
|
+
|
|
32642
|
+
|
|
32643
|
+
/***/ }),
|
|
32644
|
+
/* 313 */
|
|
32457
32645
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32458
32646
|
|
|
32459
32647
|
"use strict";
|
|
@@ -32478,7 +32666,7 @@ class SparkRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
32478
32666
|
|
|
32479
32667
|
|
|
32480
32668
|
/***/ }),
|
|
32481
|
-
/*
|
|
32669
|
+
/* 314 */
|
|
32482
32670
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32483
32671
|
|
|
32484
32672
|
"use strict";
|
|
@@ -32503,7 +32691,32 @@ class SparkQuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
32503
32691
|
|
|
32504
32692
|
|
|
32505
32693
|
/***/ }),
|
|
32506
|
-
/*
|
|
32694
|
+
/* 315 */
|
|
32695
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32696
|
+
|
|
32697
|
+
"use strict";
|
|
32698
|
+
__webpack_require__.r(__webpack_exports__);
|
|
32699
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
32700
|
+
/* harmony export */ LiquityDebtInFrontWithLimitTrigger: () => (/* binding */ LiquityDebtInFrontWithLimitTrigger)
|
|
32701
|
+
/* harmony export */ });
|
|
32702
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
|
|
32703
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
32704
|
+
|
|
32705
|
+
|
|
32706
|
+
/**
|
|
32707
|
+
*
|
|
32708
|
+
*
|
|
32709
|
+
* @category Triggers
|
|
32710
|
+
*/
|
|
32711
|
+
class LiquityDebtInFrontWithLimitTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
32712
|
+
constructor(troveOwner, debtInFront) {
|
|
32713
|
+
super('LiquityDebtInFrontWithLimitTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('LiquityDebtInFrontWithLimitTrigger'), ['address', 'uint256'], [troveOwner, debtInFront]);
|
|
32714
|
+
}
|
|
32715
|
+
}
|
|
32716
|
+
|
|
32717
|
+
|
|
32718
|
+
/***/ }),
|
|
32719
|
+
/* 316 */
|
|
32507
32720
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32508
32721
|
|
|
32509
32722
|
"use strict";
|
|
@@ -32518,13 +32731,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32518
32731
|
/* harmony export */ uniswapV3LP: () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
|
|
32519
32732
|
/* harmony export */ zeroExExchange: () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
|
|
32520
32733
|
/* harmony export */ });
|
|
32521
|
-
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
32734
|
+
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(317);
|
|
32522
32735
|
/* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(148);
|
|
32523
|
-
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
32524
|
-
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
32525
|
-
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
32526
|
-
/* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
32527
|
-
/* harmony import */ var _curveusd_utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
32736
|
+
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(319);
|
|
32737
|
+
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(242);
|
|
32738
|
+
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(223);
|
|
32739
|
+
/* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(209);
|
|
32740
|
+
/* harmony import */ var _curveusd_utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(277);
|
|
32528
32741
|
/* harmony import */ var _basic_utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(118);
|
|
32529
32742
|
|
|
32530
32743
|
|
|
@@ -32538,7 +32751,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32538
32751
|
|
|
32539
32752
|
|
|
32540
32753
|
/***/ }),
|
|
32541
|
-
/*
|
|
32754
|
+
/* 317 */
|
|
32542
32755
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32543
32756
|
|
|
32544
32757
|
"use strict";
|
|
@@ -32550,7 +32763,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32550
32763
|
/* harmony export */ });
|
|
32551
32764
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
32552
32765
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
32553
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
32766
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(318);
|
|
32554
32767
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
|
|
32555
32768
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(20);
|
|
32556
32769
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -32728,14 +32941,14 @@ const createSellAction = (sellAmount, sellToken, buyToken, expectedPrice, accept
|
|
|
32728
32941
|
|
|
32729
32942
|
|
|
32730
32943
|
/***/ }),
|
|
32731
|
-
/*
|
|
32944
|
+
/* 318 */
|
|
32732
32945
|
/***/ ((module) => {
|
|
32733
32946
|
|
|
32734
32947
|
"use strict";
|
|
32735
|
-
module.exports =
|
|
32948
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__318__;
|
|
32736
32949
|
|
|
32737
32950
|
/***/ }),
|
|
32738
|
-
/*
|
|
32951
|
+
/* 319 */
|
|
32739
32952
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32740
32953
|
|
|
32741
32954
|
"use strict";
|
|
@@ -32743,7 +32956,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32743
32956
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
32744
32957
|
/* harmony export */ getAssetAddrByTokenId: () => (/* binding */ getAssetAddrByTokenId)
|
|
32745
32958
|
/* harmony export */ });
|
|
32746
|
-
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
32959
|
+
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(320);
|
|
32747
32960
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
32748
32961
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
32749
32962
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -32770,14 +32983,14 @@ const getAssetAddrByTokenId = (web3, tokenId) => __awaiter(void 0, void 0, void
|
|
|
32770
32983
|
|
|
32771
32984
|
|
|
32772
32985
|
/***/ }),
|
|
32773
|
-
/*
|
|
32986
|
+
/* 320 */
|
|
32774
32987
|
/***/ ((module) => {
|
|
32775
32988
|
|
|
32776
32989
|
"use strict";
|
|
32777
32990
|
module.exports = JSON.parse('[{"constant":false,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"positions","outputs":[{"name":"nonce","type":"uint96"},{"name":"operator","type":"address"},{"name":"token0","type":"address"},{"name":"token1","type":"address"},{"name":"fee","type":"uint24"},{"name":"tickLower","type":"int24"},{"name":"tickUpper","type":"int24"},{"name":"liquidity","type":"uint128"},{"name":"feeGrowthInside0LastX128","type":"uint256"},{"name":"feeGrowthInside1LastX128","type":"uint256"},{"name":"tokensOwed0","type":"uint128"},{"name":"tokensOwed1","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"}]');
|
|
32778
32991
|
|
|
32779
32992
|
/***/ }),
|
|
32780
|
-
/*
|
|
32993
|
+
/* 321 */
|
|
32781
32994
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
32782
32995
|
|
|
32783
32996
|
"use strict";
|
|
@@ -32791,6 +33004,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
32791
33004
|
/* harmony export */ chainlinkPriceTrigger: () => (/* binding */ chainlinkPriceTrigger),
|
|
32792
33005
|
/* harmony export */ compoundV2RatioTrigger: () => (/* binding */ compoundV2RatioTrigger),
|
|
32793
33006
|
/* harmony export */ compoundV3RatioTrigger: () => (/* binding */ compoundV3RatioTrigger),
|
|
33007
|
+
/* harmony export */ crvUSDRatioTrigger: () => (/* binding */ crvUSDRatioTrigger),
|
|
32794
33008
|
/* harmony export */ curveUsdBorrowRateTrigger: () => (/* binding */ curveUsdBorrowRateTrigger),
|
|
32795
33009
|
/* harmony export */ curveUsdSoftLiquidationTrigger: () => (/* binding */ curveUsdSoftLiquidationTrigger),
|
|
32796
33010
|
/* harmony export */ exchangeOffchainPriceTrigger: () => (/* binding */ exchangeOffchainPriceTrigger),
|
|
@@ -33117,9 +33331,24 @@ var curveUsdSoftLiquidationTrigger = {
|
|
|
33117
33331
|
};
|
|
33118
33332
|
}
|
|
33119
33333
|
};
|
|
33334
|
+
var crvUSDRatioTrigger = {
|
|
33335
|
+
encode(owner, controller, ratioPercentage, ratioState) {
|
|
33336
|
+
var ratioWei = (0,_utils__WEBPACK_IMPORTED_MODULE_4__.ratioPercentageToWei)(ratioPercentage);
|
|
33337
|
+
return [web3_eth_abi__WEBPACK_IMPORTED_MODULE_2___default().encodeParameters(['address', 'address', 'uint256', 'uint8'], [owner, controller, ratioWei, ratioState])];
|
|
33338
|
+
},
|
|
33339
|
+
decode(triggerData) {
|
|
33340
|
+
var decodedData = web3_eth_abi__WEBPACK_IMPORTED_MODULE_2___default().decodeParameters(['address', 'address', 'uint256', 'uint8'], triggerData[0]);
|
|
33341
|
+
return {
|
|
33342
|
+
owner: decodedData[0],
|
|
33343
|
+
controller: decodedData[1],
|
|
33344
|
+
ratio: (0,_utils__WEBPACK_IMPORTED_MODULE_4__.weiToRatioPercentage)(decodedData[2]),
|
|
33345
|
+
ratioState: Number(decodedData[3])
|
|
33346
|
+
};
|
|
33347
|
+
}
|
|
33348
|
+
};
|
|
33120
33349
|
|
|
33121
33350
|
/***/ }),
|
|
33122
|
-
/*
|
|
33351
|
+
/* 322 */
|
|
33123
33352
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
33124
33353
|
|
|
33125
33354
|
"use strict";
|
|
@@ -33145,7 +33374,7 @@ class OptimismStrategies extends _private_StrategiesAutomation__WEBPACK_IMPORTED
|
|
|
33145
33374
|
}
|
|
33146
33375
|
|
|
33147
33376
|
/***/ }),
|
|
33148
|
-
/*
|
|
33377
|
+
/* 323 */
|
|
33149
33378
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
33150
33379
|
|
|
33151
33380
|
"use strict";
|
|
@@ -33171,7 +33400,7 @@ class ArbitrumStrategies extends _private_StrategiesAutomation__WEBPACK_IMPORTED
|
|
|
33171
33400
|
}
|
|
33172
33401
|
|
|
33173
33402
|
/***/ }),
|
|
33174
|
-
/*
|
|
33403
|
+
/* 324 */
|
|
33175
33404
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
33176
33405
|
|
|
33177
33406
|
"use strict";
|
|
@@ -33182,6 +33411,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
33182
33411
|
/* harmony export */ chickenBondsEncode: () => (/* binding */ chickenBondsEncode),
|
|
33183
33412
|
/* harmony export */ compoundV2Encode: () => (/* binding */ compoundV2Encode),
|
|
33184
33413
|
/* harmony export */ compoundV3Encode: () => (/* binding */ compoundV3Encode),
|
|
33414
|
+
/* harmony export */ crvUSDEncode: () => (/* binding */ crvUSDEncode),
|
|
33185
33415
|
/* harmony export */ exchangeEncode: () => (/* binding */ exchangeEncode),
|
|
33186
33416
|
/* harmony export */ liquityEncode: () => (/* binding */ liquityEncode),
|
|
33187
33417
|
/* harmony export */ makerEncode: () => (/* binding */ makerEncode),
|
|
@@ -33195,7 +33425,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
33195
33425
|
/* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(5);
|
|
33196
33426
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(4);
|
|
33197
33427
|
/* harmony import */ var _subDataService__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);
|
|
33198
|
-
/* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
33428
|
+
/* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(321);
|
|
33199
33429
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(17);
|
|
33200
33430
|
|
|
33201
33431
|
|
|
@@ -33420,6 +33650,17 @@ var sparkEncode = {
|
|
|
33420
33650
|
return [strategyOrBundleId, isBundle, triggerDataEncoded, subDataEncoded];
|
|
33421
33651
|
}
|
|
33422
33652
|
};
|
|
33653
|
+
var crvUSDEncode = {
|
|
33654
|
+
leverageManagement(owner, controllerAddr, ratioState, targetRatio, triggerRatio, collTokenAddr, crvUSDAddr) {
|
|
33655
|
+
var subData = _subDataService__WEBPACK_IMPORTED_MODULE_4__.crvUSDLeverageManagementSubData.encode(controllerAddr, ratioState, targetRatio, collTokenAddr, crvUSDAddr);
|
|
33656
|
+
var triggerData = _triggerService__WEBPACK_IMPORTED_MODULE_5__.crvUSDRatioTrigger.encode(owner, controllerAddr, triggerRatio, ratioState);
|
|
33657
|
+
|
|
33658
|
+
// over is boost, under is repay
|
|
33659
|
+
var strategyOrBundleId = ratioState === _types_enums__WEBPACK_IMPORTED_MODULE_2__.RatioState.OVER ? _types_enums__WEBPACK_IMPORTED_MODULE_2__.Bundles.MainnetIds.CRVUSD_BOOST : _types_enums__WEBPACK_IMPORTED_MODULE_2__.Bundles.MainnetIds.CRVUSD_REPAY;
|
|
33660
|
+
var isBundle = true;
|
|
33661
|
+
return [strategyOrBundleId, isBundle, triggerData, subData];
|
|
33662
|
+
}
|
|
33663
|
+
};
|
|
33423
33664
|
|
|
33424
33665
|
/***/ })
|
|
33425
33666
|
/******/ ]);
|
|
@@ -33527,11 +33768,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
33527
33768
|
/* harmony import */ var _automation_public_legacy_LegacyAaveAutomation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(24);
|
|
33528
33769
|
/* harmony import */ var _automation_public_legacy_LegacyCompoundAutomation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(25);
|
|
33529
33770
|
/* harmony import */ var _automation_public_EthereumStrategies__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(26);
|
|
33530
|
-
/* harmony import */ var _automation_public_OptimismStrategies__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
33531
|
-
/* harmony import */ var _automation_public_ArbitrumStrategies__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
33532
|
-
/* harmony import */ var _services_triggerService__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
33771
|
+
/* harmony import */ var _automation_public_OptimismStrategies__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(322);
|
|
33772
|
+
/* harmony import */ var _automation_public_ArbitrumStrategies__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(323);
|
|
33773
|
+
/* harmony import */ var _services_triggerService__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(321);
|
|
33533
33774
|
/* harmony import */ var _services_subDataService__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(30);
|
|
33534
|
-
/* harmony import */ var _services_strategySubService__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
33775
|
+
/* harmony import */ var _services_strategySubService__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(324);
|
|
33535
33776
|
/* harmony import */ var _services_strategiesService__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(28);
|
|
33536
33777
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(4);
|
|
33537
33778
|
/* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(5);
|