@defisaver/automation-sdk 2.1.4 → 2.1.6

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/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__, __WEBPACK_EXTERNAL_MODULE__314__) => {
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 */,
@@ -1517,6 +1517,11 @@ class StrategiesAutomation extends _Automation__WEBPACK_IMPORTED_MODULE_6__["def
1517
1517
  return true;
1518
1518
  });
1519
1519
  }
1520
+ _mergeCheck(s, current) {
1521
+ return s.owner === current.owner && s.strategy.strategyId === current.strategy.strategyId && s.protocol.id === current.protocol.id && s.specific.mergeId === current.specific.mergeWithId && (s.protocol.id !== _types_enums__WEBPACK_IMPORTED_MODULE_1__.ProtocolIdentifiers.StrategiesAutomation.MakerDAO // reflexer needs to get added if we have it
1522
+ || 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
1523
+ || s.strategyData.decoded.subData.controller.toLowerCase() === current.strategyData.decoded.triggerData.controller.toLowerCase());
1524
+ }
1520
1525
  _getSubscriptions(addresses, options) {
1521
1526
  var _this5 = this;
1522
1527
  return _asyncToGenerator(function* () {
@@ -1562,38 +1567,35 @@ class StrategiesAutomation extends _Automation__WEBPACK_IMPORTED_MODULE_6__["def
1562
1567
  };
1563
1568
  }()));
1564
1569
  if (options !== null && options !== void 0 && options.mergeWithSameId) {
1565
- subscriptions = subscriptions.reduce((list, current) => {
1566
- var copyList = [...list];
1567
- if ((0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(current)) {
1568
- if (current.specific.mergeWithSameId) {
1569
- 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
1570
- || 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
1571
- || s.strategyData.decoded.subData.controller.toLowerCase() === current.strategyData.decoded.triggerData.controller.toLowerCase()));
1572
- if (mergePairIndex !== -1) {
1573
- var mergePair = copyList[mergePairIndex];
1574
- if ((0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(mergePair)) {
1575
- copyList[mergePairIndex] = _objectSpread(_objectSpread(_objectSpread({}, mergePair), current), {}, {
1576
- // @ts-ignore
1577
- blockNumber: decimal_js__WEBPACK_IMPORTED_MODULE_0___default().max(mergePair.blockNumber, current.blockNumber).toNumber(),
1578
- subIds: (0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(mergePair.subIds) ? [...mergePair.subIds, current.subId] : undefined,
1579
- isEnabled: mergePair.isEnabled || current.isEnabled,
1580
- subId: mergePair.subId,
1581
- specific: _objectSpread(_objectSpread(_objectSpread({}, mergePair.specific), current.specific), {}, {
1582
- mergeWithSameId: false
1583
- })
1584
- });
1585
- return copyList;
1586
- }
1587
- }
1588
- }
1570
+ var mergeBase = subscriptions.filter(s => (0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(s) && s.specific.mergeWithId);
1571
+ var mergeExtension = subscriptions.filter(s => (0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(s) && s.specific.mergeId);
1572
+ subscriptions = subscriptions.filter(s => (0,_services_utils__WEBPACK_IMPORTED_MODULE_2__.isDefined)(s) && !(s !== null && s !== void 0 && s.specific.mergeWithId) && !(s !== null && s !== void 0 && s.specific.mergeId)).map(s => _objectSpread(_objectSpread({}, s), {}, {
1573
+ subIds: [s.subId]
1574
+ }));
1575
+ mergeBase.forEach(current => {
1576
+ var mergePairIndexWithEnabledCheck = mergeExtension.findIndex(s => _this5._mergeCheck(s, current) && s.isEnabled === current.isEnabled);
1577
+ var mergePairIndexWithoutEnabledCheck = mergeExtension.findIndex(s => _this5._mergeCheck(s, current));
1578
+ var mergePairIndex = mergePairIndexWithEnabledCheck !== -1 ? mergePairIndexWithEnabledCheck : mergePairIndexWithoutEnabledCheck;
1579
+ if (mergePairIndex !== -1) {
1580
+ var mergePair = mergeExtension[mergePairIndex];
1581
+ mergeExtension.splice(mergePairIndex, 1);
1582
+ subscriptions.push(_objectSpread(_objectSpread(_objectSpread({}, mergePair), current), {}, {
1583
+ // @ts-ignore
1584
+ blockNumber: decimal_js__WEBPACK_IMPORTED_MODULE_0___default().max(mergePair.blockNumber, current.blockNumber).toNumber(),
1585
+ subIds: [current.subId, mergePair.subId],
1586
+ isEnabled: mergePair.isEnabled || current.isEnabled,
1587
+ specific: _objectSpread(_objectSpread({}, mergePair.specific), current.specific)
1588
+ }));
1589
1589
  } else {
1590
- return copyList;
1590
+ subscriptions.push(current);
1591
1591
  }
1592
- copyList.push(_objectSpread(_objectSpread({}, current), {}, {
1593
- subIds: [current.subId]
1594
- }));
1595
- return copyList;
1596
- }, []);
1592
+ });
1593
+ if (mergeExtension.length > 0) {
1594
+ console.error('Not all merge-able extensions were used', mergeExtension);
1595
+ subscriptions = [...subscriptions, ...mergeExtension.map(s => _objectSpread(_objectSpread({}, s), {}, {
1596
+ subIds: [s.subId]
1597
+ }))];
1598
+ }
1597
1599
  }
1598
1600
  }
1599
1601
  return _options.unexpiredOnly ? _this5.removeExpiredSubscriptions(subscriptions) : subscriptions;
@@ -1630,7 +1632,7 @@ __webpack_require__.r(__webpack_exports__);
1630
1632
  /* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(5);
1631
1633
  /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(17);
1632
1634
  /* harmony import */ var _subDataService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(30);
1633
- /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(317);
1635
+ /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(321);
1634
1636
  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; }
1635
1637
  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; }
1636
1638
  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; }
@@ -1725,18 +1727,19 @@ function parseMakerLeverageManagement(position, parseData) {
1725
1727
  triggerRepayRatio: triggerData.ratio,
1726
1728
  targetRepayRatio: subData.targetRatio,
1727
1729
  repayEnabled: true,
1728
- subId1: Number(subId)
1730
+ subId1: Number(subId),
1731
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1729
1732
  };
1730
1733
  } else {
1731
1734
  _position.specific = {
1732
1735
  triggerBoostRatio: triggerData.ratio,
1733
1736
  targetBoostRatio: subData.targetRatio,
1734
1737
  boostEnabled: isEnabled,
1735
- subId2: Number(subId)
1738
+ subId2: Number(subId),
1739
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1736
1740
  };
1737
1741
  }
1738
1742
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
1739
- _position.specific.mergeWithSameId = true;
1740
1743
  return _position;
1741
1744
  }
1742
1745
  function parseLiquityCloseOnPrice(position, parseData) {
@@ -1795,18 +1798,19 @@ function parseAaveV2LeverageManagement(position, parseData) {
1795
1798
  triggerRepayRatio: triggerData.ratio,
1796
1799
  targetRepayRatio: subData.targetRatio,
1797
1800
  repayEnabled: true,
1798
- subId1: Number(subId)
1801
+ subId1: Number(subId),
1802
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1799
1803
  };
1800
1804
  } else {
1801
1805
  _position.specific = {
1802
1806
  triggerBoostRatio: triggerData.ratio,
1803
1807
  targetBoostRatio: subData.targetRatio,
1804
1808
  boostEnabled: isEnabled,
1805
- subId2: Number(subId)
1809
+ subId2: Number(subId),
1810
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1806
1811
  };
1807
1812
  }
1808
1813
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
1809
- _position.specific.mergeWithSameId = true;
1810
1814
  return _position;
1811
1815
  }
1812
1816
  function parseAaveV3LeverageManagement(position, parseData) {
@@ -1829,18 +1833,19 @@ function parseAaveV3LeverageManagement(position, parseData) {
1829
1833
  triggerRepayRatio: triggerData.ratio,
1830
1834
  targetRepayRatio: subData.targetRatio,
1831
1835
  repayEnabled: true,
1832
- subId1: Number(subId)
1836
+ subId1: Number(subId),
1837
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1833
1838
  };
1834
1839
  } else {
1835
1840
  _position.specific = {
1836
1841
  triggerBoostRatio: triggerData.ratio,
1837
1842
  targetBoostRatio: subData.targetRatio,
1838
1843
  boostEnabled: isEnabled,
1839
- subId2: Number(subId)
1844
+ subId2: Number(subId),
1845
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1840
1846
  };
1841
1847
  }
1842
1848
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
1843
- _position.specific.mergeWithSameId = true;
1844
1849
  return _position;
1845
1850
  }
1846
1851
  function parseMorphoAaveV2LeverageManagement(position, parseData) {
@@ -1863,18 +1868,19 @@ function parseMorphoAaveV2LeverageManagement(position, parseData) {
1863
1868
  triggerRepayRatio: triggerData.ratio,
1864
1869
  targetRepayRatio: subData.targetRatio,
1865
1870
  repayEnabled: true,
1866
- subId1: Number(subId)
1871
+ subId1: Number(subId),
1872
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1867
1873
  };
1868
1874
  } else {
1869
1875
  _position.specific = {
1870
1876
  triggerBoostRatio: triggerData.ratio,
1871
1877
  targetBoostRatio: subData.targetRatio,
1872
1878
  boostEnabled: isEnabled,
1873
- subId2: Number(subId)
1879
+ subId2: Number(subId),
1880
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1874
1881
  };
1875
1882
  }
1876
1883
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
1877
- _position.specific.mergeWithSameId = true;
1878
1884
  return _position;
1879
1885
  }
1880
1886
  function parseAaveV3CloseOnPrice(position, parseData) {
@@ -1951,18 +1957,19 @@ function parseCompoundV2LeverageManagement(position, parseData) {
1951
1957
  triggerRepayRatio: triggerData.ratio,
1952
1958
  targetRepayRatio: subData.targetRatio,
1953
1959
  repayEnabled: true,
1954
- subId1: Number(subId)
1960
+ subId1: Number(subId),
1961
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1955
1962
  };
1956
1963
  } else {
1957
1964
  _position.specific = {
1958
1965
  triggerBoostRatio: triggerData.ratio,
1959
1966
  targetBoostRatio: subData.targetRatio,
1960
1967
  boostEnabled: isEnabled,
1961
- subId2: Number(subId)
1968
+ subId2: Number(subId),
1969
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1962
1970
  };
1963
1971
  }
1964
1972
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
1965
- _position.specific.mergeWithSameId = true;
1966
1973
  return _position;
1967
1974
  }
1968
1975
  function parseCompoundV3LeverageManagement(position, parseData) {
@@ -1987,19 +1994,20 @@ function parseCompoundV3LeverageManagement(position, parseData) {
1987
1994
  triggerRepayRatio: triggerData.ratio,
1988
1995
  targetRepayRatio: subData.targetRatio,
1989
1996
  repayEnabled: true,
1990
- subId1: Number(subId)
1997
+ subId1: Number(subId),
1998
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1991
1999
  };
1992
2000
  } else {
1993
2001
  _position.specific = {
1994
2002
  triggerBoostRatio: triggerData.ratio,
1995
2003
  targetBoostRatio: subData.targetRatio,
1996
2004
  boostEnabled: isEnabled,
1997
- subId2: Number(subId)
2005
+ subId2: Number(subId),
2006
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
1998
2007
  };
1999
2008
  }
2000
2009
  var isEOA = _position.strategy.strategyId.includes('eoa');
2001
2010
  _position.strategy.strategyId = isEOA ? _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.EoaLeverageManagement : _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
2002
- _position.specific.mergeWithSameId = true;
2003
2011
  return _position;
2004
2012
  }
2005
2013
  function parseChickenBondsRebond(position, parseData) {
@@ -2071,18 +2079,19 @@ function parseLiquityLeverageManagement(position, parseData) {
2071
2079
  triggerRepayRatio: triggerData.ratio,
2072
2080
  targetRepayRatio: subData.targetRatio,
2073
2081
  repayEnabled: true,
2074
- subId1: Number(subId)
2082
+ subId1: Number(subId),
2083
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
2075
2084
  };
2076
2085
  } else {
2077
2086
  _position.specific = {
2078
2087
  triggerBoostRatio: triggerData.ratio,
2079
2088
  targetBoostRatio: subData.targetRatio,
2080
2089
  boostEnabled: isEnabled,
2081
- subId2: Number(subId)
2090
+ subId2: Number(subId),
2091
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
2082
2092
  };
2083
2093
  }
2084
2094
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
2085
- _position.specific.mergeWithSameId = true;
2086
2095
  return _position;
2087
2096
  }
2088
2097
  function parseSparkLeverageManagement(position, parseData) {
@@ -2105,18 +2114,19 @@ function parseSparkLeverageManagement(position, parseData) {
2105
2114
  triggerRepayRatio: triggerData.ratio,
2106
2115
  targetRepayRatio: subData.targetRatio,
2107
2116
  repayEnabled: true,
2108
- subId1: Number(subId)
2117
+ subId1: Number(subId),
2118
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
2109
2119
  };
2110
2120
  } else {
2111
2121
  _position.specific = {
2112
2122
  triggerBoostRatio: triggerData.ratio,
2113
2123
  targetBoostRatio: subData.targetRatio,
2114
2124
  boostEnabled: isEnabled,
2115
- subId2: Number(subId)
2125
+ subId2: Number(subId),
2126
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
2116
2127
  };
2117
2128
  }
2118
2129
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
2119
- _position.specific.mergeWithSameId = true;
2120
2130
  return _position;
2121
2131
  }
2122
2132
  function parseSparkCloseOnPrice(position, parseData) {
@@ -2200,7 +2210,8 @@ function parseCrvUSDLeverageManagement(position, parseData) {
2200
2210
  targetRepayRatio: subData.targetRatio,
2201
2211
  repayEnabled: isEnabled,
2202
2212
  subId1: Number(subId),
2203
- subHashRepay: subHash
2213
+ subHashRepay: subHash,
2214
+ mergeWithId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
2204
2215
  };
2205
2216
  } else {
2206
2217
  _position.specific = {
@@ -2208,12 +2219,12 @@ function parseCrvUSDLeverageManagement(position, parseData) {
2208
2219
  targetBoostRatio: subData.targetRatio,
2209
2220
  boostEnabled: isEnabled,
2210
2221
  subId2: Number(subId),
2211
- subHashBoost: subHash
2222
+ subHashBoost: subHash,
2223
+ mergeId: _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.Identifiers.Boost
2212
2224
  };
2213
2225
  }
2214
2226
  _position.positionId = (0,_utils__WEBPACK_IMPORTED_MODULE_4__.getPositionId)(_position.chainId, _position.protocol.id, _position.owner, triggerData.controller);
2215
2227
  _position.strategy.strategyId = _types_enums__WEBPACK_IMPORTED_MODULE_3__.Strategies.IdOverrides.LeverageManagement;
2216
- _position.specific.mergeWithSameId = true;
2217
2228
  return _position;
2218
2229
  }
2219
2230
  var parsingMethodsMapping = {
@@ -19770,8 +19781,8 @@ var compoundV3LeverageManagementSubData = {
19770
19781
  var compoundV3L2LeverageManagementSubData = {
19771
19782
  encode(market, baseToken, triggerRepayRatio, triggerBoostRatio, targetBoostRatio, targetRepayRatio, boostEnabled) {
19772
19783
  var subInput = '0x';
19773
- subInput = subInput.concat(market.slice(2).padStart(32, '0'));
19774
- subInput = subInput.concat(baseToken.slice(2).padStart(32, '0'));
19784
+ subInput = subInput.concat(market.slice(2));
19785
+ subInput = subInput.concat(baseToken.slice(2));
19775
19786
  subInput = subInput.concat(new (decimal_js__WEBPACK_IMPORTED_MODULE_0___default())(triggerRepayRatio).mul(1e16).toHex().slice(2).padStart(32, '0'));
19776
19787
  subInput = subInput.concat(new (decimal_js__WEBPACK_IMPORTED_MODULE_0___default())(triggerBoostRatio).mul(1e16).toHex().slice(2).padStart(32, '0'));
19777
19788
  subInput = subInput.concat(new (decimal_js__WEBPACK_IMPORTED_MODULE_0___default())(targetBoostRatio).mul(1e16).toHex().slice(2).padStart(32, '0'));
@@ -20013,8 +20024,8 @@ __webpack_require__.r(__webpack_exports__);
20013
20024
  /* harmony import */ var _Strategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(56);
20014
20025
  /* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(57);
20015
20026
  /* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(62);
20016
- /* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(296);
20017
- /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(312);
20027
+ /* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(298);
20028
+ /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(316);
20018
20029
  /* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(33);
20019
20030
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(54);
20020
20031
  /* Export methods, classes and other here */
@@ -21344,9 +21355,9 @@ const actionAddresses = {
21344
21355
  McdRatioCheck: '0x3f09773e5e945C6Aa1bc8a8B3492f507620DE1e1',
21345
21356
  GasFeeTaker: '0x431F1E1A9859EF99953801dbdeB31d2846ADcc0d',
21346
21357
  CurveStethPoolDeposit: '0x5Ae5870dC0C780e9eb68bE7a223eCd7F3BDad12B',
21347
- CurveStethPoolWithdraw: '0x4089731d843Ce52699Fe64F68556aBbD95D70D00',
21358
+ CurveStethPoolWithdraw: '0x41313695a4829a80c8019Ec8bCC529Fec08F9099',
21348
21359
  CurveDeposit: '0xf46aCCE6d2559971bF5Aea03A10B3679709CE43d',
21349
- CurveWithdraw: '0x97616a969daaa8e1f27c4902745c88357e54ad6c',
21360
+ CurveWithdraw: '0x7127A1Cd69eC2A1F91661bc0ED40aD5B73898A54',
21350
21361
  McdBoostComposite: '0x0000000000000000000000000000000000000000',
21351
21362
  McdRepayComposite: '0x0000000000000000000000000000000000000000',
21352
21363
  // Euler
@@ -21381,11 +21392,11 @@ const actionAddresses = {
21381
21392
  CurveUsdSupply: '0xa55B3CE5ae7E59002f53b2153ABe326823ccCDE2',
21382
21393
  CurveUsdAdjust: '0x6f69A7d0B1BE7602381d9cCE6B29F05B9D0b85e6',
21383
21394
  CurveUsdWithdraw: '0x54B8D984fc79B000D7B6F6E0f52CD054E965120f',
21384
- CurveUsdLevCreate: '0x8B5ACd4ce0a43327aaDfc5c42be029898e242393',
21385
- CurveUsdRepay: '0xDaDFC60207C17be005ECf2B03f3B31885D22F908',
21386
- CurveUsdSwapper: '0xFa2dfE6AF842e3184D305a85d09cfcf220ed4CBd',
21395
+ CurveUsdLevCreate: '0xcbd9aFc2b7532b9eeB3A7EC4ea8Bb4320795d9Ad',
21396
+ CurveUsdRepay: '0xd12785e4834C1421fC7B64ca57d64E886e39b80F',
21397
+ CurveUsdSwapper: '0xFA8c594b903651F97b27aCADEa83b720cfD7F80b',
21387
21398
  CurveUsdSelfLiquidate: '0xd90d8a4955DfE9D4f45F7f60595313B0925ee1da',
21388
- CurveUsdSelfLiquidateWithColl: '0x6d02300C1A68c63C60AFD713b744bA750aB33aB0',
21399
+ CurveUsdSelfLiquidateWithColl: '0x7cE305FC2A18c6820a533AD418dC0A549aFeDcAF',
21389
21400
  },
21390
21401
  [_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.optimism.chainId]: {
21391
21402
  DFSSell: '0xC6c601fcAa870efd26C624F8c65fbc54cBe533b1',
@@ -21445,6 +21456,14 @@ const actionAddresses = {
21445
21456
  AaveV3Supply: '0xF159c79077001E2a2C1a178BE68DB7F69a6Da486',
21446
21457
  AaveV3SwapBorrowRateMode: '0x738042389A8d6B0F6D6ab009c42dfF84ebB737C0',
21447
21458
  AaveV3Withdraw: '0xbf492F869DdB1A18BB4F41b6c3059D9f882Fe7ff',
21459
+ // CompV3
21460
+ CompV3Allow: '0x0380E8e13CdE0499c720999930CaA07A5744887c',
21461
+ CompV3Borrow: '0x1C0eCc794fDA7c29aBd19E0b2F7dA166C237d616',
21462
+ CompV3Claim: '0xDa135F74a24FE2B23ECc35De227f5d3b000c5AdA',
21463
+ CompV3Payback: '0xeA8b80944a70e6C290eb00Ae0298d2953aD3aA0C',
21464
+ CompV3Supply: '0x82bf73d2083e69344747fff0d51816059db0113c',
21465
+ CompV3Transfer: '0x9EB98fA05E89a598288B0386e66052Ba0d0B9911',
21466
+ CompV3Withdraw: '0xb6c2dC95201630cAF7568cBdF434d787CD84dB79',
21448
21467
  // flashloan
21449
21468
  FLAaveV3NoFee: '0x219ac6dA971dE6d943cffD1BD62abde71525d382',
21450
21469
  FLAaveV3: '0x53953aCEe438c083e4299F7976f03Ff3cb862161',
@@ -21468,7 +21487,7 @@ const actionAddresses = {
21468
21487
  PullToken: '0x5B0B7E38C2a8e46CfAe13c360BC5927570BeEe94',
21469
21488
  TokenBalance: '0xc44bcE580B1b3339fE9272D3bC3d6566083ea59C',
21470
21489
  // Flashloan
21471
- FLAaveV3: '0x04ce4b2a9F524d976a8eD8a49B9313C5a2C3ccAD',
21490
+ FLAaveV3: '0x79Eb9cEe432Cd3e7b09A9eFdB21A733A6d7b4c3A',
21472
21491
  FLBalancer: '0x862E533198C9656B75bB6A5dDF0953F7ED5E8507',
21473
21492
  FLUniV3: '0x1bA6082D2ef1aB92a55B96264c72Eb8049C964Ce',
21474
21493
  // AaveV3
@@ -21836,23 +21855,23 @@ __webpack_require__.r(__webpack_exports__);
21836
21855
  /* harmony import */ var _dydx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(160);
21837
21856
  /* harmony import */ var _uniswapV3__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(162);
21838
21857
  /* harmony import */ var _checkers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(168);
21839
- /* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(174);
21840
- /* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(191);
21841
- /* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(194);
21842
- /* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(198);
21843
- /* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(200);
21844
- /* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(204);
21845
- /* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(216);
21846
- /* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(219);
21847
- /* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(224);
21848
- /* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(227);
21849
- /* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(238);
21850
- /* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(244);
21851
- /* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(252);
21852
- /* harmony import */ var _morpho__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(260);
21853
- /* harmony import */ var _bprotocol__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(270);
21854
- /* harmony import */ var _curveusd__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(273);
21855
- /* harmony import */ var _spark__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(285);
21858
+ /* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(176);
21859
+ /* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(193);
21860
+ /* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(196);
21861
+ /* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(200);
21862
+ /* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(202);
21863
+ /* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(206);
21864
+ /* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(218);
21865
+ /* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(221);
21866
+ /* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(226);
21867
+ /* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(229);
21868
+ /* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(240);
21869
+ /* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(246);
21870
+ /* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(254);
21871
+ /* harmony import */ var _morpho__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(262);
21872
+ /* harmony import */ var _bprotocol__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(272);
21873
+ /* harmony import */ var _curveusd__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(275);
21874
+ /* harmony import */ var _spark__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(287);
21856
21875
 
21857
21876
 
21858
21877
 
@@ -23792,7 +23811,7 @@ class UpdateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
23792
23811
  * @param sub object that contains new sub information
23793
23812
  */
23794
23813
  constructor(subId, sub) {
23795
- super('UpdateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('UpdateSub'), ['uint256', '(uint64,bool,bytes[],bytes32[])'], [subId, sub]);
23814
+ super('UpdateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('UpdateSub'), ['uint256', ['uint64', 'bool', 'bytes[]', 'bytes32[]']], [subId, sub]);
23796
23815
  this.mappableArgs = [
23797
23816
  this.args[0],
23798
23817
  ];
@@ -23965,7 +23984,8 @@ class CreateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
23965
23984
  * @param sub object that contains new sub information
23966
23985
  */
23967
23986
  constructor(sub) {
23968
- super('CreateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CreateSub'), ['(uint64,bool,bytes[],bytes32[])'], [sub]);
23987
+ super('CreateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CreateSub'), [['uint64', 'bool', 'bytes[]', 'bytes32[]']], [sub]);
23988
+ this.mappableArgs = [];
23969
23989
  for (let i = 0; i < this.args[0][3].length; i++) {
23970
23990
  this.mappableArgs.push(this.args[0][3][i]);
23971
23991
  }
@@ -26137,15 +26157,21 @@ __webpack_require__.r(__webpack_exports__);
26137
26157
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26138
26158
  /* harmony export */ AaveV3RatioCheckAction: () => (/* reexport safe */ _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__.AaveV3RatioCheckAction),
26139
26159
  /* harmony export */ CompoundV3RatioCheckAction: () => (/* reexport safe */ _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__.CompoundV3RatioCheckAction),
26140
- /* harmony export */ LiquityRatioCheckAction: () => (/* reexport safe */ _LiquityRatioCheckAction__WEBPACK_IMPORTED_MODULE_3__.LiquityRatioCheckAction),
26160
+ /* harmony export */ LiquityRatioCheckAction: () => (/* reexport safe */ _LiquityRatioCheckAction__WEBPACK_IMPORTED_MODULE_4__.LiquityRatioCheckAction),
26161
+ /* harmony export */ LiquityRatioIncreaseCheckAction: () => (/* reexport safe */ _LiquityRatioIncreaseCheckAction__WEBPACK_IMPORTED_MODULE_6__.LiquityRatioIncreaseCheckAction),
26141
26162
  /* harmony export */ MakerRatioCheckAction: () => (/* reexport safe */ _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__.MakerRatioCheckAction),
26142
- /* harmony export */ SparkRatioCheckAction: () => (/* reexport safe */ _SparkRatioCheckAction__WEBPACK_IMPORTED_MODULE_4__.SparkRatioCheckAction)
26163
+ /* harmony export */ MorphoAaveV2RatioCheckAction: () => (/* reexport safe */ _MorphoAaveV2RatioCheckAction__WEBPACK_IMPORTED_MODULE_3__.MorphoAaveV2RatioCheckAction),
26164
+ /* harmony export */ SparkRatioCheckAction: () => (/* reexport safe */ _SparkRatioCheckAction__WEBPACK_IMPORTED_MODULE_5__.SparkRatioCheckAction)
26143
26165
  /* harmony export */ });
26144
26166
  /* harmony import */ var _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(169);
26145
26167
  /* harmony import */ var _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(170);
26146
26168
  /* harmony import */ var _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(171);
26147
- /* harmony import */ var _LiquityRatioCheckAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(172);
26148
- /* harmony import */ var _SparkRatioCheckAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(173);
26169
+ /* harmony import */ var _MorphoAaveV2RatioCheckAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(172);
26170
+ /* harmony import */ var _LiquityRatioCheckAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(173);
26171
+ /* harmony import */ var _SparkRatioCheckAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(174);
26172
+ /* harmony import */ var _LiquityRatioIncreaseCheckAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(175);
26173
+
26174
+
26149
26175
 
26150
26176
 
26151
26177
 
@@ -26265,6 +26291,41 @@ class CompoundV3RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
26265
26291
  /* 172 */
26266
26292
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26267
26293
 
26294
+ "use strict";
26295
+ __webpack_require__.r(__webpack_exports__);
26296
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26297
+ /* harmony export */ MorphoAaveV2RatioCheckAction: () => (/* binding */ MorphoAaveV2RatioCheckAction)
26298
+ /* harmony export */ });
26299
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
26300
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
26301
+
26302
+
26303
+ /**
26304
+ * MorphoAaveV2RatioCheckAction - Checks Morpho-AaveV2 ratio for user position and reverts if faulty
26305
+ *
26306
+ * @category Checkers
26307
+ */
26308
+ class MorphoAaveV2RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26309
+ /**
26310
+ * @param ratioState If it should lower/higher
26311
+ * @param targetRatio The ratio user want to be at
26312
+ * @param user Address of the user we are checking the ratio for (default to proxy)
26313
+ */
26314
+ constructor(ratioState, targetRatio, user) {
26315
+ super('MorphoAaveV2RatioCheck', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('MorphoAaveV2RatioCheck'), ['uint8', 'uint256', 'address'], [ratioState, targetRatio, user]);
26316
+ this.mappableArgs = [
26317
+ this.args[0],
26318
+ this.args[1],
26319
+ this.args[2],
26320
+ ];
26321
+ }
26322
+ }
26323
+
26324
+
26325
+ /***/ }),
26326
+ /* 173 */
26327
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26328
+
26268
26329
  "use strict";
26269
26330
  __webpack_require__.r(__webpack_exports__);
26270
26331
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -26295,7 +26356,7 @@ class LiquityRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
26295
26356
 
26296
26357
 
26297
26358
  /***/ }),
26298
- /* 173 */
26359
+ /* 174 */
26299
26360
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26300
26361
 
26301
26362
  "use strict";
@@ -26328,7 +26389,38 @@ class SparkRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
26328
26389
 
26329
26390
 
26330
26391
  /***/ }),
26331
- /* 174 */
26392
+ /* 175 */
26393
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26394
+
26395
+ "use strict";
26396
+ __webpack_require__.r(__webpack_exports__);
26397
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26398
+ /* harmony export */ LiquityRatioIncreaseCheckAction: () => (/* binding */ LiquityRatioIncreaseCheckAction)
26399
+ /* harmony export */ });
26400
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
26401
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
26402
+
26403
+
26404
+ /**
26405
+ * LiquityRatioCheckAction - Checks liquity ratio increase for user position and reverts if faulty
26406
+ *
26407
+ * @category Checkers
26408
+ */
26409
+ class LiquityRatioIncreaseCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26410
+ /**
26411
+ * @param targetRatio The ratio user want to be at
26412
+ */
26413
+ constructor(targetRatioIncrease) {
26414
+ super('LiquityRatioIncreaseCheck', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('LiquityRatioIncreaseCheck'), ['uint256'], [targetRatioIncrease]);
26415
+ this.mappableArgs = [
26416
+ this.args[0],
26417
+ ];
26418
+ }
26419
+ }
26420
+
26421
+
26422
+ /***/ }),
26423
+ /* 176 */
26332
26424
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26333
26425
 
26334
26426
  "use strict";
@@ -26351,22 +26443,22 @@ __webpack_require__.r(__webpack_exports__);
26351
26443
  /* harmony export */ LiquityUnstakeAction: () => (/* reexport safe */ _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__.LiquityUnstakeAction),
26352
26444
  /* harmony export */ LiquityWithdrawAction: () => (/* reexport safe */ _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__.LiquityWithdrawAction)
26353
26445
  /* harmony export */ });
26354
- /* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(175);
26355
- /* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(176);
26356
- /* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(177);
26357
- /* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(178);
26358
- /* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(179);
26359
- /* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(180);
26360
- /* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(181);
26361
- /* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(182);
26362
- /* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(183);
26363
- /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(184);
26364
- /* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(185);
26365
- /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(186);
26366
- /* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(187);
26367
- /* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(188);
26368
- /* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(189);
26369
- /* harmony import */ var _LiquityAdjustAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(190);
26446
+ /* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(177);
26447
+ /* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(178);
26448
+ /* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(179);
26449
+ /* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(180);
26450
+ /* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(181);
26451
+ /* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(182);
26452
+ /* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(183);
26453
+ /* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(184);
26454
+ /* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(185);
26455
+ /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(186);
26456
+ /* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(187);
26457
+ /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(188);
26458
+ /* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(189);
26459
+ /* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(190);
26460
+ /* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(191);
26461
+ /* harmony import */ var _LiquityAdjustAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(192);
26370
26462
 
26371
26463
 
26372
26464
 
@@ -26386,7 +26478,7 @@ __webpack_require__.r(__webpack_exports__);
26386
26478
 
26387
26479
 
26388
26480
  /***/ }),
26389
- /* 175 */
26481
+ /* 177 */
26390
26482
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26391
26483
 
26392
26484
  "use strict";
@@ -26448,7 +26540,7 @@ class LiquityOpenAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
26448
26540
 
26449
26541
 
26450
26542
  /***/ }),
26451
- /* 176 */
26543
+ /* 178 */
26452
26544
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26453
26545
 
26454
26546
  "use strict";
@@ -26488,7 +26580,7 @@ class LiquityBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26488
26580
 
26489
26581
 
26490
26582
  /***/ }),
26491
- /* 177 */
26583
+ /* 179 */
26492
26584
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26493
26585
 
26494
26586
  "use strict";
@@ -26543,7 +26635,7 @@ class LiquityPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
26543
26635
 
26544
26636
 
26545
26637
  /***/ }),
26546
- /* 178 */
26638
+ /* 180 */
26547
26639
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26548
26640
 
26549
26641
  "use strict";
@@ -26598,7 +26690,7 @@ class LiquitySupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
26598
26690
 
26599
26691
 
26600
26692
  /***/ }),
26601
- /* 179 */
26693
+ /* 181 */
26602
26694
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26603
26695
 
26604
26696
  "use strict";
@@ -26636,7 +26728,7 @@ class LiquityWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
26636
26728
 
26637
26729
 
26638
26730
  /***/ }),
26639
- /* 180 */
26731
+ /* 182 */
26640
26732
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26641
26733
 
26642
26734
  "use strict";
@@ -26690,7 +26782,7 @@ class LiquityCloseAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
26690
26782
 
26691
26783
 
26692
26784
  /***/ }),
26693
- /* 181 */
26785
+ /* 183 */
26694
26786
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26695
26787
 
26696
26788
  "use strict";
@@ -26724,7 +26816,7 @@ class LiquityClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26724
26816
 
26725
26817
 
26726
26818
  /***/ }),
26727
- /* 182 */
26819
+ /* 184 */
26728
26820
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26729
26821
 
26730
26822
  "use strict";
@@ -26787,7 +26879,7 @@ class LiquityRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
26787
26879
 
26788
26880
 
26789
26881
  /***/ }),
26790
- /* 183 */
26882
+ /* 185 */
26791
26883
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26792
26884
 
26793
26885
  "use strict";
@@ -26846,7 +26938,7 @@ class LiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
26846
26938
 
26847
26939
 
26848
26940
  /***/ }),
26849
- /* 184 */
26941
+ /* 186 */
26850
26942
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26851
26943
 
26852
26944
  "use strict";
@@ -26888,7 +26980,7 @@ class LiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
26888
26980
 
26889
26981
 
26890
26982
  /***/ }),
26891
- /* 185 */
26983
+ /* 187 */
26892
26984
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26893
26985
 
26894
26986
  "use strict";
@@ -26947,7 +27039,7 @@ class LiquityStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
26947
27039
 
26948
27040
 
26949
27041
  /***/ }),
26950
- /* 186 */
27042
+ /* 188 */
26951
27043
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26952
27044
 
26953
27045
  "use strict";
@@ -26989,7 +27081,7 @@ class LiquityUnstakeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26989
27081
 
26990
27082
 
26991
27083
  /***/ }),
26992
- /* 187 */
27084
+ /* 189 */
26993
27085
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26994
27086
 
26995
27087
  "use strict";
@@ -27025,7 +27117,7 @@ class LiquityEthGainToTroveAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
27025
27117
 
27026
27118
 
27027
27119
  /***/ }),
27028
- /* 188 */
27120
+ /* 190 */
27029
27121
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27030
27122
 
27031
27123
  "use strict";
@@ -27033,7 +27125,7 @@ __webpack_require__.r(__webpack_exports__);
27033
27125
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27034
27126
  /* harmony export */ LiquityClaimSPRewardsAction: () => (/* binding */ LiquityClaimSPRewardsAction)
27035
27127
  /* harmony export */ });
27036
- /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(184);
27128
+ /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(186);
27037
27129
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
27038
27130
 
27039
27131
 
@@ -27056,7 +27148,7 @@ class LiquityClaimSPRewardsAction extends _LiquitySPWithdrawAction__WEBPACK_IMPO
27056
27148
 
27057
27149
 
27058
27150
  /***/ }),
27059
- /* 189 */
27151
+ /* 191 */
27060
27152
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27061
27153
 
27062
27154
  "use strict";
@@ -27064,7 +27156,7 @@ __webpack_require__.r(__webpack_exports__);
27064
27156
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27065
27157
  /* harmony export */ LiquityClaimStakingRewardsAction: () => (/* binding */ LiquityClaimStakingRewardsAction)
27066
27158
  /* harmony export */ });
27067
- /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(186);
27159
+ /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(188);
27068
27160
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
27069
27161
 
27070
27162
 
@@ -27087,7 +27179,7 @@ class LiquityClaimStakingRewardsAction extends _LiquityUnstakeAction__WEBPACK_IM
27087
27179
 
27088
27180
 
27089
27181
  /***/ }),
27090
- /* 190 */
27182
+ /* 192 */
27091
27183
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27092
27184
 
27093
27185
  "use strict";
@@ -27135,7 +27227,7 @@ class LiquityAdjustAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27135
27227
 
27136
27228
 
27137
27229
  /***/ }),
27138
- /* 191 */
27230
+ /* 193 */
27139
27231
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27140
27232
 
27141
27233
  "use strict";
@@ -27144,14 +27236,14 @@ __webpack_require__.r(__webpack_exports__);
27144
27236
  /* harmony export */ YearnSupplyAction: () => (/* reexport safe */ _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__.YearnSupplyAction),
27145
27237
  /* harmony export */ YearnWithdrawAction: () => (/* reexport safe */ _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.YearnWithdrawAction)
27146
27238
  /* harmony export */ });
27147
- /* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(192);
27148
- /* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(193);
27239
+ /* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(194);
27240
+ /* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(195);
27149
27241
 
27150
27242
 
27151
27243
 
27152
27244
 
27153
27245
  /***/ }),
27154
- /* 192 */
27246
+ /* 194 */
27155
27247
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27156
27248
 
27157
27249
  "use strict";
@@ -27210,7 +27302,7 @@ class YearnSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
27210
27302
 
27211
27303
 
27212
27304
  /***/ }),
27213
- /* 193 */
27305
+ /* 195 */
27214
27306
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27215
27307
 
27216
27308
  "use strict";
@@ -27269,7 +27361,7 @@ class YearnWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
27269
27361
 
27270
27362
 
27271
27363
  /***/ }),
27272
- /* 194 */
27364
+ /* 196 */
27273
27365
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27274
27366
 
27275
27367
  "use strict";
@@ -27279,16 +27371,16 @@ __webpack_require__.r(__webpack_exports__);
27279
27371
  /* harmony export */ LidoUnwrapAction: () => (/* reexport safe */ _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__.LidoUnwrapAction),
27280
27372
  /* harmony export */ LidoWrapAction: () => (/* reexport safe */ _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__.LidoWrapAction)
27281
27373
  /* harmony export */ });
27282
- /* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(195);
27283
- /* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(196);
27284
- /* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(197);
27374
+ /* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(197);
27375
+ /* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(198);
27376
+ /* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(199);
27285
27377
 
27286
27378
 
27287
27379
 
27288
27380
 
27289
27381
 
27290
27382
  /***/ }),
27291
- /* 195 */
27383
+ /* 197 */
27292
27384
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27293
27385
 
27294
27386
  "use strict";
@@ -27338,7 +27430,7 @@ class LidoStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
27338
27430
 
27339
27431
 
27340
27432
  /***/ }),
27341
- /* 196 */
27433
+ /* 198 */
27342
27434
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27343
27435
 
27344
27436
  "use strict";
@@ -27397,7 +27489,7 @@ class LidoWrapAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
27397
27489
 
27398
27490
 
27399
27491
  /***/ }),
27400
- /* 197 */
27492
+ /* 199 */
27401
27493
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27402
27494
 
27403
27495
  "use strict";
@@ -27444,7 +27536,7 @@ class LidoUnwrapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27444
27536
 
27445
27537
 
27446
27538
  /***/ }),
27447
- /* 198 */
27539
+ /* 200 */
27448
27540
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27449
27541
 
27450
27542
  "use strict";
@@ -27452,12 +27544,12 @@ __webpack_require__.r(__webpack_exports__);
27452
27544
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27453
27545
  /* harmony export */ InstPullTokensAction: () => (/* reexport safe */ _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__.InstPullTokensAction)
27454
27546
  /* harmony export */ });
27455
- /* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(199);
27547
+ /* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(201);
27456
27548
 
27457
27549
 
27458
27550
 
27459
27551
  /***/ }),
27460
- /* 199 */
27552
+ /* 201 */
27461
27553
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27462
27554
 
27463
27555
  "use strict";
@@ -27507,7 +27599,7 @@ class InstPullTokensAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27507
27599
 
27508
27600
 
27509
27601
  /***/ }),
27510
- /* 200 */
27602
+ /* 202 */
27511
27603
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27512
27604
 
27513
27605
  "use strict";
@@ -27517,16 +27609,16 @@ __webpack_require__.r(__webpack_exports__);
27517
27609
  /* harmony export */ BalancerV2SupplyAction: () => (/* reexport safe */ _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__.BalancerV2SupplyAction),
27518
27610
  /* harmony export */ BalancerV2WithdrawAction: () => (/* reexport safe */ _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BalancerV2WithdrawAction)
27519
27611
  /* harmony export */ });
27520
- /* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(201);
27521
- /* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(202);
27522
- /* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(203);
27612
+ /* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(203);
27613
+ /* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(204);
27614
+ /* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(205);
27523
27615
 
27524
27616
 
27525
27617
 
27526
27618
 
27527
27619
 
27528
27620
  /***/ }),
27529
- /* 201 */
27621
+ /* 203 */
27530
27622
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27531
27623
 
27532
27624
  "use strict";
@@ -27592,7 +27684,7 @@ class BalancerV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
27592
27684
 
27593
27685
 
27594
27686
  /***/ }),
27595
- /* 202 */
27687
+ /* 204 */
27596
27688
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27597
27689
 
27598
27690
  "use strict";
@@ -27662,7 +27754,7 @@ class BalancerV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
27662
27754
 
27663
27755
 
27664
27756
  /***/ }),
27665
- /* 203 */
27757
+ /* 205 */
27666
27758
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27667
27759
 
27668
27760
  "use strict";
@@ -27725,7 +27817,7 @@ class BalancerV2ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
27725
27817
 
27726
27818
 
27727
27819
  /***/ }),
27728
- /* 204 */
27820
+ /* 206 */
27729
27821
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27730
27822
 
27731
27823
  "use strict";
@@ -27741,15 +27833,15 @@ __webpack_require__.r(__webpack_exports__);
27741
27833
  /* harmony export */ CurveSwapAction: () => (/* reexport safe */ _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__.CurveSwapAction),
27742
27834
  /* harmony export */ CurveWithdrawAction: () => (/* reexport safe */ _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveWithdrawAction)
27743
27835
  /* harmony export */ });
27744
- /* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(205);
27745
- /* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(206);
27746
- /* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(209);
27747
- /* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(210);
27748
- /* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(211);
27749
- /* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(212);
27750
- /* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(213);
27751
- /* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(214);
27752
- /* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(215);
27836
+ /* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(207);
27837
+ /* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(208);
27838
+ /* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(211);
27839
+ /* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(212);
27840
+ /* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(213);
27841
+ /* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(214);
27842
+ /* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(215);
27843
+ /* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(216);
27844
+ /* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(217);
27753
27845
 
27754
27846
 
27755
27847
 
@@ -27762,7 +27854,7 @@ __webpack_require__.r(__webpack_exports__);
27762
27854
 
27763
27855
 
27764
27856
  /***/ }),
27765
- /* 205 */
27857
+ /* 207 */
27766
27858
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27767
27859
 
27768
27860
  "use strict";
@@ -27819,7 +27911,7 @@ class CurveSwapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27819
27911
 
27820
27912
 
27821
27913
  /***/ }),
27822
- /* 206 */
27914
+ /* 208 */
27823
27915
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27824
27916
 
27825
27917
  "use strict";
@@ -27832,7 +27924,7 @@ __webpack_require__.r(__webpack_exports__);
27832
27924
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(32);
27833
27925
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(66);
27834
27926
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(54);
27835
- /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(207);
27927
+ /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(209);
27836
27928
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
27837
27929
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27838
27930
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -27914,7 +28006,7 @@ class CurveDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
27914
28006
 
27915
28007
 
27916
28008
  /***/ }),
27917
- /* 207 */
28009
+ /* 209 */
27918
28010
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27919
28011
 
27920
28012
  "use strict";
@@ -27923,7 +28015,7 @@ __webpack_require__.r(__webpack_exports__);
27923
28015
  /* harmony export */ makeFlags: () => (/* binding */ makeFlags),
27924
28016
  /* harmony export */ poolInfo: () => (/* reexport default export from named module */ _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
27925
28017
  /* harmony export */ });
27926
- /* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(208);
28018
+ /* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(210);
27927
28019
 
27928
28020
 
27929
28021
  /**
@@ -27934,14 +28026,14 @@ const makeFlags = (depositTargetType, explicitUnderlying, withdrawExact, removeO
27934
28026
 
27935
28027
 
27936
28028
  /***/ }),
27937
- /* 208 */
28029
+ /* 210 */
27938
28030
  /***/ ((module) => {
27939
28031
 
27940
28032
  "use strict";
27941
28033
  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]}]');
27942
28034
 
27943
28035
  /***/ }),
27944
- /* 209 */
28036
+ /* 211 */
27945
28037
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27946
28038
 
27947
28039
  "use strict";
@@ -27952,7 +28044,7 @@ __webpack_require__.r(__webpack_exports__);
27952
28044
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
27953
28045
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
27954
28046
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
27955
- /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(207);
28047
+ /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(209);
27956
28048
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
27957
28049
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27958
28050
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -28029,7 +28121,7 @@ class CurveWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28029
28121
 
28030
28122
 
28031
28123
  /***/ }),
28032
- /* 210 */
28124
+ /* 212 */
28033
28125
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28034
28126
 
28035
28127
  "use strict";
@@ -28083,7 +28175,7 @@ class CurveGaugeDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
28083
28175
 
28084
28176
 
28085
28177
  /***/ }),
28086
- /* 211 */
28178
+ /* 213 */
28087
28179
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28088
28180
 
28089
28181
  "use strict";
@@ -28119,7 +28211,7 @@ class CurveGaugeWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
28119
28211
 
28120
28212
 
28121
28213
  /***/ }),
28122
- /* 212 */
28214
+ /* 214 */
28123
28215
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28124
28216
 
28125
28217
  "use strict";
@@ -28152,7 +28244,7 @@ class CurveMintCrvAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28152
28244
 
28153
28245
 
28154
28246
  /***/ }),
28155
- /* 213 */
28247
+ /* 215 */
28156
28248
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28157
28249
 
28158
28250
  "use strict";
@@ -28188,7 +28280,7 @@ class CurveClaimFeesAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28188
28280
 
28189
28281
 
28190
28282
  /***/ }),
28191
- /* 214 */
28283
+ /* 216 */
28192
28284
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28193
28285
 
28194
28286
  "use strict";
@@ -28229,7 +28321,7 @@ class CurveStethPoolDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
28229
28321
 
28230
28322
 
28231
28323
  /***/ }),
28232
- /* 215 */
28324
+ /* 217 */
28233
28325
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28234
28326
 
28235
28327
  "use strict";
@@ -28271,7 +28363,7 @@ class CurveStethPoolWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.
28271
28363
 
28272
28364
 
28273
28365
  /***/ }),
28274
- /* 216 */
28366
+ /* 218 */
28275
28367
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28276
28368
 
28277
28369
  "use strict";
@@ -28280,14 +28372,14 @@ __webpack_require__.r(__webpack_exports__);
28280
28372
  /* harmony export */ GUniDeposit: () => (/* reexport safe */ _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__.GUniDeposit),
28281
28373
  /* harmony export */ GUniWithdraw: () => (/* reexport safe */ _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__.GUniWithdraw)
28282
28374
  /* harmony export */ });
28283
- /* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(217);
28284
- /* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(218);
28375
+ /* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(219);
28376
+ /* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(220);
28285
28377
 
28286
28378
 
28287
28379
 
28288
28380
 
28289
28381
  /***/ }),
28290
- /* 217 */
28382
+ /* 219 */
28291
28383
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28292
28384
 
28293
28385
  "use strict";
@@ -28348,7 +28440,7 @@ class GUniDeposit extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28348
28440
 
28349
28441
 
28350
28442
  /***/ }),
28351
- /* 218 */
28443
+ /* 220 */
28352
28444
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28353
28445
 
28354
28446
  "use strict";
@@ -28401,7 +28493,7 @@ class GUniWithdraw extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28401
28493
 
28402
28494
 
28403
28495
  /***/ }),
28404
- /* 219 */
28496
+ /* 221 */
28405
28497
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28406
28498
 
28407
28499
  "use strict";
@@ -28411,16 +28503,16 @@ __webpack_require__.r(__webpack_exports__);
28411
28503
  /* harmony export */ MStableDepositAction: () => (/* reexport safe */ _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__.MStableDepositAction),
28412
28504
  /* harmony export */ MStableWithdrawAction: () => (/* reexport safe */ _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.MStableWithdrawAction)
28413
28505
  /* harmony export */ });
28414
- /* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(220);
28415
- /* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(222);
28416
- /* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(223);
28506
+ /* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(222);
28507
+ /* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(224);
28508
+ /* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(225);
28417
28509
 
28418
28510
 
28419
28511
 
28420
28512
 
28421
28513
 
28422
28514
  /***/ }),
28423
- /* 220 */
28515
+ /* 222 */
28424
28516
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28425
28517
 
28426
28518
  "use strict";
@@ -28431,7 +28523,7 @@ __webpack_require__.r(__webpack_exports__);
28431
28523
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
28432
28524
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
28433
28525
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
28434
- /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(221);
28526
+ /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(223);
28435
28527
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
28436
28528
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
28437
28529
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -28510,7 +28602,7 @@ class MStableDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28510
28602
 
28511
28603
 
28512
28604
  /***/ }),
28513
- /* 221 */
28605
+ /* 223 */
28514
28606
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28515
28607
 
28516
28608
  "use strict";
@@ -28529,7 +28621,7 @@ __webpack_require__.r(__webpack_exports__);
28529
28621
 
28530
28622
 
28531
28623
  /***/ }),
28532
- /* 222 */
28624
+ /* 224 */
28533
28625
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28534
28626
 
28535
28627
  "use strict";
@@ -28540,7 +28632,7 @@ __webpack_require__.r(__webpack_exports__);
28540
28632
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
28541
28633
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
28542
28634
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
28543
- /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(221);
28635
+ /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(223);
28544
28636
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
28545
28637
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
28546
28638
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -28618,7 +28710,7 @@ class MStableWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
28618
28710
 
28619
28711
 
28620
28712
  /***/ }),
28621
- /* 223 */
28713
+ /* 225 */
28622
28714
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28623
28715
 
28624
28716
  "use strict";
@@ -28657,7 +28749,7 @@ class MStableClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28657
28749
 
28658
28750
 
28659
28751
  /***/ }),
28660
- /* 224 */
28752
+ /* 226 */
28661
28753
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28662
28754
 
28663
28755
  "use strict";
@@ -28666,14 +28758,14 @@ __webpack_require__.r(__webpack_exports__);
28666
28758
  /* harmony export */ RariDepositAction: () => (/* reexport safe */ _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__.RariDepositAction),
28667
28759
  /* harmony export */ RariWithdrawAction: () => (/* reexport safe */ _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.RariWithdrawAction)
28668
28760
  /* harmony export */ });
28669
- /* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(225);
28670
- /* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(226);
28761
+ /* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(227);
28762
+ /* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(228);
28671
28763
 
28672
28764
 
28673
28765
 
28674
28766
 
28675
28767
  /***/ }),
28676
- /* 225 */
28768
+ /* 227 */
28677
28769
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28678
28770
 
28679
28771
  "use strict";
@@ -28728,7 +28820,7 @@ class RariDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28728
28820
 
28729
28821
 
28730
28822
  /***/ }),
28731
- /* 226 */
28823
+ /* 228 */
28732
28824
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28733
28825
 
28734
28826
  "use strict";
@@ -28785,7 +28877,7 @@ class RariWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28785
28877
 
28786
28878
 
28787
28879
  /***/ }),
28788
- /* 227 */
28880
+ /* 229 */
28789
28881
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28790
28882
 
28791
28883
  "use strict";
@@ -28802,16 +28894,16 @@ __webpack_require__.r(__webpack_exports__);
28802
28894
  /* harmony export */ AaveV3SwapBorrowRateModeAction: () => (/* reexport safe */ _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.AaveV3SwapBorrowRateModeAction),
28803
28895
  /* harmony export */ AaveV3WithdrawAction: () => (/* reexport safe */ _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.AaveV3WithdrawAction)
28804
28896
  /* harmony export */ });
28805
- /* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(228);
28806
- /* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(229);
28807
- /* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(230);
28808
- /* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(231);
28809
- /* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(232);
28810
- /* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(233);
28811
- /* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(234);
28812
- /* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(235);
28813
- /* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(236);
28814
- /* harmony import */ var _AaveV3DelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(237);
28897
+ /* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(230);
28898
+ /* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(231);
28899
+ /* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(232);
28900
+ /* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(233);
28901
+ /* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(234);
28902
+ /* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(235);
28903
+ /* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(236);
28904
+ /* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(237);
28905
+ /* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(238);
28906
+ /* harmony import */ var _AaveV3DelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(239);
28815
28907
 
28816
28908
 
28817
28909
 
@@ -28825,7 +28917,7 @@ __webpack_require__.r(__webpack_exports__);
28825
28917
 
28826
28918
 
28827
28919
  /***/ }),
28828
- /* 228 */
28920
+ /* 230 */
28829
28921
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28830
28922
 
28831
28923
  "use strict";
@@ -28917,7 +29009,7 @@ class AaveV3SupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
28917
29009
 
28918
29010
 
28919
29011
  /***/ }),
28920
- /* 229 */
29012
+ /* 231 */
28921
29013
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28922
29014
 
28923
29015
  "use strict";
@@ -28990,7 +29082,7 @@ class AaveV3BorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Acti
28990
29082
 
28991
29083
 
28992
29084
  /***/ }),
28993
- /* 230 */
29085
+ /* 232 */
28994
29086
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28995
29087
 
28996
29088
  "use strict";
@@ -29082,7 +29174,7 @@ class AaveV3PaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Act
29082
29174
 
29083
29175
 
29084
29176
  /***/ }),
29085
- /* 231 */
29177
+ /* 233 */
29086
29178
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29087
29179
 
29088
29180
  "use strict";
@@ -29141,7 +29233,7 @@ class AaveV3WithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
29141
29233
 
29142
29234
 
29143
29235
  /***/ }),
29144
- /* 232 */
29236
+ /* 234 */
29145
29237
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29146
29238
 
29147
29239
  "use strict";
@@ -29187,7 +29279,7 @@ class AaveV3SetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
29187
29279
 
29188
29280
 
29189
29281
  /***/ }),
29190
- /* 233 */
29282
+ /* 235 */
29191
29283
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29192
29284
 
29193
29285
  "use strict";
@@ -29266,7 +29358,7 @@ class AaveV3ATokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
29266
29358
 
29267
29359
 
29268
29360
  /***/ }),
29269
- /* 234 */
29361
+ /* 236 */
29270
29362
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29271
29363
 
29272
29364
  "use strict";
@@ -29318,7 +29410,7 @@ class AaveV3CollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODUL
29318
29410
 
29319
29411
 
29320
29412
  /***/ }),
29321
- /* 235 */
29413
+ /* 237 */
29322
29414
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29323
29415
 
29324
29416
  "use strict";
@@ -29372,7 +29464,7 @@ class AaveV3ClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0_
29372
29464
 
29373
29465
 
29374
29466
  /***/ }),
29375
- /* 236 */
29467
+ /* 238 */
29376
29468
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29377
29469
 
29378
29470
  "use strict";
@@ -29423,7 +29515,7 @@ class AaveV3SwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MOD
29423
29515
 
29424
29516
 
29425
29517
  /***/ }),
29426
- /* 237 */
29518
+ /* 239 */
29427
29519
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29428
29520
 
29429
29521
  "use strict";
@@ -29483,7 +29575,7 @@ class AaveV3DelegateCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
29483
29575
 
29484
29576
 
29485
29577
  /***/ }),
29486
- /* 238 */
29578
+ /* 240 */
29487
29579
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29488
29580
 
29489
29581
  "use strict";
@@ -29493,16 +29585,16 @@ __webpack_require__.r(__webpack_exports__);
29493
29585
  /* harmony export */ ConvexDepositAction: () => (/* reexport safe */ _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__.ConvexDepositAction),
29494
29586
  /* harmony export */ ConvexWithdrawAction: () => (/* reexport safe */ _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.ConvexWithdrawAction)
29495
29587
  /* harmony export */ });
29496
- /* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(239);
29497
- /* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(242);
29498
- /* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(243);
29588
+ /* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(241);
29589
+ /* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(244);
29590
+ /* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(245);
29499
29591
 
29500
29592
 
29501
29593
 
29502
29594
 
29503
29595
 
29504
29596
  /***/ }),
29505
- /* 239 */
29597
+ /* 241 */
29506
29598
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29507
29599
 
29508
29600
  "use strict";
@@ -29512,7 +29604,7 @@ __webpack_require__.r(__webpack_exports__);
29512
29604
  /* harmony export */ });
29513
29605
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
29514
29606
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
29515
- /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(240);
29607
+ /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(242);
29516
29608
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(66);
29517
29609
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
29518
29610
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -29583,7 +29675,7 @@ class ConvexDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
29583
29675
 
29584
29676
 
29585
29677
  /***/ }),
29586
- /* 240 */
29678
+ /* 242 */
29587
29679
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29588
29680
 
29589
29681
  "use strict";
@@ -29594,7 +29686,7 @@ __webpack_require__.r(__webpack_exports__);
29594
29686
  /* harmony export */ getConvexPool: () => (/* binding */ getConvexPool),
29595
29687
  /* harmony export */ poolInfo: () => (/* reexport default export from named module */ _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
29596
29688
  /* harmony export */ });
29597
- /* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(241);
29689
+ /* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(243);
29598
29690
 
29599
29691
 
29600
29692
  /** Deposit options. */
@@ -29614,14 +29706,14 @@ const getConvexPool = (curveLpToken) => _convexPoolInfo_json__WEBPACK_IMPORTED_M
29614
29706
 
29615
29707
 
29616
29708
  /***/ }),
29617
- /* 241 */
29709
+ /* 243 */
29618
29710
  /***/ ((module) => {
29619
29711
 
29620
29712
  "use strict";
29621
29713
  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":[]}]');
29622
29714
 
29623
29715
  /***/ }),
29624
- /* 242 */
29716
+ /* 244 */
29625
29717
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29626
29718
 
29627
29719
  "use strict";
@@ -29631,7 +29723,7 @@ __webpack_require__.r(__webpack_exports__);
29631
29723
  /* harmony export */ });
29632
29724
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
29633
29725
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
29634
- /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(240);
29726
+ /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(242);
29635
29727
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(66);
29636
29728
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
29637
29729
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -29699,7 +29791,7 @@ class ConvexWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
29699
29791
 
29700
29792
 
29701
29793
  /***/ }),
29702
- /* 243 */
29794
+ /* 245 */
29703
29795
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29704
29796
 
29705
29797
  "use strict";
@@ -29709,7 +29801,7 @@ __webpack_require__.r(__webpack_exports__);
29709
29801
  /* harmony export */ });
29710
29802
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
29711
29803
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
29712
- /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(240);
29804
+ /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(242);
29713
29805
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(66);
29714
29806
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
29715
29807
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -29773,7 +29865,7 @@ class ConvexClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
29773
29865
 
29774
29866
 
29775
29867
  /***/ }),
29776
- /* 244 */
29868
+ /* 246 */
29777
29869
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29778
29870
 
29779
29871
  "use strict";
@@ -29787,13 +29879,13 @@ __webpack_require__.r(__webpack_exports__);
29787
29879
  /* harmony export */ CBUpdateRebondSubAction: () => (/* reexport safe */ _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__.CBUpdateRebondSubAction),
29788
29880
  /* harmony export */ FetchBondIdAction: () => (/* reexport safe */ _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__.FetchBondIdAction)
29789
29881
  /* harmony export */ });
29790
- /* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(245);
29791
- /* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(246);
29792
- /* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(247);
29793
- /* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(248);
29794
- /* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(249);
29795
- /* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(250);
29796
- /* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(251);
29882
+ /* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(247);
29883
+ /* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(248);
29884
+ /* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(249);
29885
+ /* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(250);
29886
+ /* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(251);
29887
+ /* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(252);
29888
+ /* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(253);
29797
29889
 
29798
29890
 
29799
29891
 
@@ -29804,7 +29896,7 @@ __webpack_require__.r(__webpack_exports__);
29804
29896
 
29805
29897
 
29806
29898
  /***/ }),
29807
- /* 245 */
29899
+ /* 247 */
29808
29900
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29809
29901
 
29810
29902
  "use strict";
@@ -29850,7 +29942,7 @@ class CBCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
29850
29942
 
29851
29943
 
29852
29944
  /***/ }),
29853
- /* 246 */
29945
+ /* 248 */
29854
29946
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29855
29947
 
29856
29948
  "use strict";
@@ -29882,7 +29974,7 @@ class CBChickenInAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
29882
29974
 
29883
29975
 
29884
29976
  /***/ }),
29885
- /* 247 */
29977
+ /* 249 */
29886
29978
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29887
29979
 
29888
29980
  "use strict";
@@ -29915,7 +30007,7 @@ class CBChickenOutAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
29915
30007
 
29916
30008
 
29917
30009
  /***/ }),
29918
- /* 248 */
30010
+ /* 250 */
29919
30011
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29920
30012
 
29921
30013
  "use strict";
@@ -29964,7 +30056,7 @@ class CBRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
29964
30056
 
29965
30057
 
29966
30058
  /***/ }),
29967
- /* 249 */
30059
+ /* 251 */
29968
30060
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29969
30061
 
29970
30062
  "use strict";
@@ -29993,7 +30085,7 @@ class CBUpdateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
29993
30085
 
29994
30086
 
29995
30087
  /***/ }),
29996
- /* 250 */
30088
+ /* 252 */
29997
30089
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
29998
30090
 
29999
30091
  "use strict";
@@ -30027,7 +30119,7 @@ class FetchBondIdAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
30027
30119
 
30028
30120
 
30029
30121
  /***/ }),
30030
- /* 251 */
30122
+ /* 253 */
30031
30123
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30032
30124
 
30033
30125
  "use strict";
@@ -30058,7 +30150,7 @@ class CBCreateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
30058
30150
 
30059
30151
 
30060
30152
  /***/ }),
30061
- /* 252 */
30153
+ /* 254 */
30062
30154
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30063
30155
 
30064
30156
  "use strict";
@@ -30072,13 +30164,13 @@ __webpack_require__.r(__webpack_exports__);
30072
30164
  /* harmony export */ CompoundV3TransferAction: () => (/* reexport safe */ _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__.CompoundV3TransferAction),
30073
30165
  /* harmony export */ CompoundV3WithdrawAction: () => (/* reexport safe */ _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.CompoundV3WithdrawAction)
30074
30166
  /* harmony export */ });
30075
- /* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(253);
30076
- /* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(254);
30077
- /* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(255);
30078
- /* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(256);
30079
- /* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(257);
30080
- /* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(258);
30081
- /* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(259);
30167
+ /* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(255);
30168
+ /* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(256);
30169
+ /* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(257);
30170
+ /* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(258);
30171
+ /* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(259);
30172
+ /* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(260);
30173
+ /* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(261);
30082
30174
 
30083
30175
 
30084
30176
 
@@ -30089,7 +30181,7 @@ __webpack_require__.r(__webpack_exports__);
30089
30181
 
30090
30182
 
30091
30183
  /***/ }),
30092
- /* 253 */
30184
+ /* 255 */
30093
30185
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30094
30186
 
30095
30187
  "use strict";
@@ -30149,7 +30241,7 @@ class CompoundV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
30149
30241
 
30150
30242
 
30151
30243
  /***/ }),
30152
- /* 254 */
30244
+ /* 256 */
30153
30245
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30154
30246
 
30155
30247
  "use strict";
@@ -30189,7 +30281,7 @@ class CompoundV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
30189
30281
 
30190
30282
 
30191
30283
  /***/ }),
30192
- /* 255 */
30284
+ /* 257 */
30193
30285
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30194
30286
 
30195
30287
  "use strict";
@@ -30253,7 +30345,7 @@ class CompoundV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Actio
30253
30345
 
30254
30346
 
30255
30347
  /***/ }),
30256
- /* 256 */
30348
+ /* 258 */
30257
30349
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30258
30350
 
30259
30351
  "use strict";
@@ -30296,7 +30388,7 @@ class CompoundV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
30296
30388
 
30297
30389
 
30298
30390
  /***/ }),
30299
- /* 257 */
30391
+ /* 259 */
30300
30392
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30301
30393
 
30302
30394
  "use strict";
@@ -30337,7 +30429,7 @@ class CompoundV3ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
30337
30429
 
30338
30430
 
30339
30431
  /***/ }),
30340
- /* 258 */
30432
+ /* 260 */
30341
30433
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30342
30434
 
30343
30435
  "use strict";
@@ -30375,7 +30467,7 @@ class CompoundV3AllowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
30375
30467
 
30376
30468
 
30377
30469
  /***/ }),
30378
- /* 259 */
30470
+ /* 261 */
30379
30471
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30380
30472
 
30381
30473
  "use strict";
@@ -30419,7 +30511,7 @@ class CompoundV3TransferAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
30419
30511
 
30420
30512
 
30421
30513
  /***/ }),
30422
- /* 260 */
30514
+ /* 262 */
30423
30515
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30424
30516
 
30425
30517
  "use strict";
@@ -30435,15 +30527,15 @@ __webpack_require__.r(__webpack_exports__);
30435
30527
  /* harmony export */ MorphoAaveV3WithdrawAction: () => (/* reexport safe */ _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__.MorphoAaveV3WithdrawAction),
30436
30528
  /* harmony export */ MorphoClaimAction: () => (/* reexport safe */ _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__.MorphoClaimAction)
30437
30529
  /* harmony export */ });
30438
- /* harmony import */ var _MorphoAaveV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(261);
30439
- /* harmony import */ var _MorphoAaveV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(262);
30440
- /* harmony import */ var _MorphoAaveV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(263);
30441
- /* harmony import */ var _MorphoAaveV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(264);
30442
- /* harmony import */ var _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(265);
30443
- /* harmony import */ var _aaveV3_MorphoAaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(266);
30444
- /* harmony import */ var _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(267);
30445
- /* harmony import */ var _aaveV3_MorphoAaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(268);
30446
- /* harmony import */ var _aaveV3_MorphoAaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(269);
30530
+ /* harmony import */ var _MorphoAaveV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(263);
30531
+ /* harmony import */ var _MorphoAaveV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(264);
30532
+ /* harmony import */ var _MorphoAaveV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(265);
30533
+ /* harmony import */ var _MorphoAaveV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(266);
30534
+ /* harmony import */ var _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(267);
30535
+ /* harmony import */ var _aaveV3_MorphoAaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(268);
30536
+ /* harmony import */ var _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(269);
30537
+ /* harmony import */ var _aaveV3_MorphoAaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(270);
30538
+ /* harmony import */ var _aaveV3_MorphoAaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(271);
30447
30539
 
30448
30540
 
30449
30541
 
@@ -30456,7 +30548,7 @@ __webpack_require__.r(__webpack_exports__);
30456
30548
 
30457
30549
 
30458
30550
  /***/ }),
30459
- /* 261 */
30551
+ /* 263 */
30460
30552
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30461
30553
 
30462
30554
  "use strict";
@@ -30514,7 +30606,7 @@ class MorphoAaveV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Acti
30514
30606
 
30515
30607
 
30516
30608
  /***/ }),
30517
- /* 262 */
30609
+ /* 264 */
30518
30610
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30519
30611
 
30520
30612
  "use strict";
@@ -30549,7 +30641,7 @@ class MorphoAaveV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
30549
30641
 
30550
30642
 
30551
30643
  /***/ }),
30552
- /* 263 */
30644
+ /* 265 */
30553
30645
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30554
30646
 
30555
30647
  "use strict";
@@ -30585,7 +30677,7 @@ class MorphoAaveV2BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
30585
30677
 
30586
30678
 
30587
30679
  /***/ }),
30588
- /* 264 */
30680
+ /* 266 */
30589
30681
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30590
30682
 
30591
30683
  "use strict";
@@ -30642,7 +30734,7 @@ class MorphoAaveV2PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Act
30642
30734
 
30643
30735
 
30644
30736
  /***/ }),
30645
- /* 265 */
30737
+ /* 267 */
30646
30738
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30647
30739
 
30648
30740
  "use strict";
@@ -30675,7 +30767,7 @@ class MorphoClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
30675
30767
 
30676
30768
 
30677
30769
  /***/ }),
30678
- /* 266 */
30770
+ /* 268 */
30679
30771
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30680
30772
 
30681
30773
  "use strict";
@@ -30737,7 +30829,7 @@ class MorphoAaveV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Acti
30737
30829
 
30738
30830
 
30739
30831
  /***/ }),
30740
- /* 267 */
30832
+ /* 269 */
30741
30833
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30742
30834
 
30743
30835
  "use strict";
@@ -30779,7 +30871,7 @@ class MorphoAaveV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
30779
30871
 
30780
30872
 
30781
30873
  /***/ }),
30782
- /* 268 */
30874
+ /* 270 */
30783
30875
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30784
30876
 
30785
30877
  "use strict";
@@ -30819,7 +30911,7 @@ class MorphoAaveV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
30819
30911
 
30820
30912
 
30821
30913
  /***/ }),
30822
- /* 269 */
30914
+ /* 271 */
30823
30915
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30824
30916
 
30825
30917
  "use strict";
@@ -30878,7 +30970,7 @@ class MorphoAaveV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Act
30878
30970
 
30879
30971
 
30880
30972
  /***/ }),
30881
- /* 270 */
30973
+ /* 272 */
30882
30974
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30883
30975
 
30884
30976
  "use strict";
@@ -30887,14 +30979,14 @@ __webpack_require__.r(__webpack_exports__);
30887
30979
  /* harmony export */ BprotocolLiquitySPDepositAction: () => (/* reexport safe */ _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__.BprotocolLiquitySPDepositAction),
30888
30980
  /* harmony export */ BprotocolLiquitySPWithdrawAction: () => (/* reexport safe */ _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BprotocolLiquitySPWithdrawAction)
30889
30981
  /* harmony export */ });
30890
- /* harmony import */ var _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(271);
30891
- /* harmony import */ var _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(272);
30982
+ /* harmony import */ var _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(273);
30983
+ /* harmony import */ var _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(274);
30892
30984
 
30893
30985
 
30894
30986
 
30895
30987
 
30896
30988
  /***/ }),
30897
- /* 271 */
30989
+ /* 273 */
30898
30990
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30899
30991
 
30900
30992
  "use strict";
@@ -30948,7 +31040,7 @@ class BprotocolLiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1
30948
31040
 
30949
31041
 
30950
31042
  /***/ }),
30951
- /* 272 */
31043
+ /* 274 */
30952
31044
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30953
31045
 
30954
31046
  "use strict";
@@ -30985,7 +31077,7 @@ class BprotocolLiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_
30985
31077
 
30986
31078
 
30987
31079
  /***/ }),
30988
- /* 273 */
31080
+ /* 275 */
30989
31081
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
30990
31082
 
30991
31083
  "use strict";
@@ -31002,16 +31094,16 @@ __webpack_require__.r(__webpack_exports__);
31002
31094
  /* harmony export */ CurveUsdSupplyAction: () => (/* reexport safe */ _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__.CurveUsdSupplyAction),
31003
31095
  /* harmony export */ CurveUsdWithdrawAction: () => (/* reexport safe */ _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveUsdWithdrawAction)
31004
31096
  /* harmony export */ });
31005
- /* harmony import */ var _CurveUsdCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(274);
31006
- /* harmony import */ var _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(276);
31007
- /* harmony import */ var _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(277);
31008
- /* harmony import */ var _CurveUsdBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(278);
31009
- /* harmony import */ var _CurveUsdPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(279);
31010
- /* harmony import */ var _CurveUsdRepayAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(280);
31011
- /* harmony import */ var _CurveUsdSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(281);
31012
- /* harmony import */ var _CurveUsdLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(282);
31013
- /* harmony import */ var _CurveUsdSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(283);
31014
- /* harmony import */ var _CurveUsdAdjustAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(284);
31097
+ /* harmony import */ var _CurveUsdCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(276);
31098
+ /* harmony import */ var _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(278);
31099
+ /* harmony import */ var _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(279);
31100
+ /* harmony import */ var _CurveUsdBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(280);
31101
+ /* harmony import */ var _CurveUsdPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(281);
31102
+ /* harmony import */ var _CurveUsdRepayAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(282);
31103
+ /* harmony import */ var _CurveUsdSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(283);
31104
+ /* harmony import */ var _CurveUsdLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(284);
31105
+ /* harmony import */ var _CurveUsdSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(285);
31106
+ /* harmony import */ var _CurveUsdAdjustAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(286);
31015
31107
 
31016
31108
 
31017
31109
 
@@ -31025,7 +31117,7 @@ __webpack_require__.r(__webpack_exports__);
31025
31117
 
31026
31118
 
31027
31119
  /***/ }),
31028
- /* 274 */
31120
+ /* 276 */
31029
31121
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31030
31122
 
31031
31123
  "use strict";
@@ -31036,7 +31128,7 @@ __webpack_require__.r(__webpack_exports__);
31036
31128
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
31037
31129
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(66);
31038
31130
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
31039
- /* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(275);
31131
+ /* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(277);
31040
31132
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
31041
31133
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
31042
31134
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -31084,7 +31176,7 @@ class CurveUsdCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31084
31176
 
31085
31177
 
31086
31178
  /***/ }),
31087
- /* 275 */
31179
+ /* 277 */
31088
31180
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31089
31181
 
31090
31182
  "use strict";
@@ -31109,7 +31201,7 @@ const controllerFactoryAddress = '0xC9332fdCB1C491Dcc683bAe86Fe3cb70360738BC';
31109
31201
 
31110
31202
 
31111
31203
  /***/ }),
31112
- /* 276 */
31204
+ /* 278 */
31113
31205
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31114
31206
 
31115
31207
  "use strict";
@@ -31119,7 +31211,7 @@ __webpack_require__.r(__webpack_exports__);
31119
31211
  /* harmony export */ });
31120
31212
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
31121
31213
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
31122
- /* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(275);
31214
+ /* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(277);
31123
31215
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
31124
31216
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
31125
31217
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -31163,7 +31255,7 @@ class CurveUsdSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31163
31255
 
31164
31256
 
31165
31257
  /***/ }),
31166
- /* 277 */
31258
+ /* 279 */
31167
31259
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31168
31260
 
31169
31261
  "use strict";
@@ -31198,7 +31290,7 @@ class CurveUsdWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
31198
31290
 
31199
31291
 
31200
31292
  /***/ }),
31201
- /* 278 */
31293
+ /* 280 */
31202
31294
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31203
31295
 
31204
31296
  "use strict";
@@ -31233,7 +31325,7 @@ class CurveUsdBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31233
31325
 
31234
31326
 
31235
31327
  /***/ }),
31236
- /* 279 */
31328
+ /* 281 */
31237
31329
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31238
31330
 
31239
31331
  "use strict";
@@ -31291,7 +31383,7 @@ class CurveUsdPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
31291
31383
 
31292
31384
 
31293
31385
  /***/ }),
31294
- /* 280 */
31386
+ /* 282 */
31295
31387
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31296
31388
 
31297
31389
  "use strict";
@@ -31308,8 +31400,8 @@ __webpack_require__.r(__webpack_exports__);
31308
31400
  * @category CurveUsd
31309
31401
  */
31310
31402
  class CurveUsdRepayAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31311
- constructor(controllerAddress, collAmount, to, minAmount, additionData, gasUsed, dfsFeeDivider, useSteth) {
31312
- super('CurveUsdRepay', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CurveUsdRepay'), ['address', 'uint256', 'address', 'uint256', 'bytes', 'uint32', 'uint32', 'bool'], [controllerAddress, collAmount, to, minAmount, additionData, gasUsed, dfsFeeDivider, useSteth]);
31403
+ constructor(controllerAddress, collAmount, to, minAmount, additionData, gasUsed, dfsFeeDivider) {
31404
+ super('CurveUsdRepay', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CurveUsdRepay'), ['address', 'uint256', 'address', 'uint256', 'bytes', 'uint32', 'uint24'], [controllerAddress, collAmount, to, minAmount, additionData, gasUsed, dfsFeeDivider]);
31313
31405
  this.mappableArgs = [
31314
31406
  ...this.args,
31315
31407
  ];
@@ -31318,7 +31410,7 @@ class CurveUsdRepayAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31318
31410
 
31319
31411
 
31320
31412
  /***/ }),
31321
- /* 281 */
31413
+ /* 283 */
31322
31414
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31323
31415
 
31324
31416
  "use strict";
@@ -31371,7 +31463,7 @@ class CurveUsdSelfLiquidateAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.A
31371
31463
 
31372
31464
 
31373
31465
  /***/ }),
31374
- /* 282 */
31466
+ /* 284 */
31375
31467
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31376
31468
 
31377
31469
  "use strict";
@@ -31390,9 +31482,9 @@ __webpack_require__.r(__webpack_exports__);
31390
31482
  * @category CurveUsd
31391
31483
  */
31392
31484
  class CurveUsdLevCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31393
- constructor(controllerAddress, collateralAmount, debtAmount, minAmount, nBands, from, additionData, gasUsed, dfsFeeDivider, useSteth) {
31485
+ constructor(controllerAddress, collateralAmount, debtAmount, minAmount, nBands, from, additionData, gasUsed, dfsFeeDivider) {
31394
31486
  (0,_utils_general__WEBPACK_IMPORTED_MODULE_1__.requireAddress)(from);
31395
- super('CurveUsdLevCreate', (0,_addresses__WEBPACK_IMPORTED_MODULE_2__.getAddr)('CurveUsdLevCreate'), ['address', 'uint256', 'uint256', 'uint256', 'uint256', 'address', 'bytes', 'uint32', 'uint32', 'bool'], [controllerAddress, collateralAmount, debtAmount, minAmount, nBands, from, additionData, gasUsed, dfsFeeDivider, useSteth]);
31487
+ 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]);
31396
31488
  this.mappableArgs = [
31397
31489
  ...this.args,
31398
31490
  ];
@@ -31401,7 +31493,7 @@ class CurveUsdLevCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
31401
31493
 
31402
31494
 
31403
31495
  /***/ }),
31404
- /* 283 */
31496
+ /* 285 */
31405
31497
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31406
31498
 
31407
31499
  "use strict";
@@ -31420,9 +31512,9 @@ __webpack_require__.r(__webpack_exports__);
31420
31512
  * @category CurveUsd
31421
31513
  */
31422
31514
  class CurveUsdSelfLiquidateWithCollAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31423
- constructor(controllerAddress, percentage, minCrvUsdExpected, swapAmount, minAmount, to, additionData, gasUsed, dfsFeeDivider, useSteth) {
31515
+ constructor(controllerAddress, percentage, minCrvUsdExpected, swapAmount, minAmount, to, additionData, gasUsed, dfsFeeDivider) {
31424
31516
  (0,_utils_general__WEBPACK_IMPORTED_MODULE_1__.requireAddress)(to);
31425
- super('CurveUsdSelfLiquidateWithColl', (0,_addresses__WEBPACK_IMPORTED_MODULE_2__.getAddr)('CurveUsdSelfLiquidateWithColl'), ['address', 'uint256', 'uint256', 'uint256', 'uint256', 'address', 'bytes', 'uint32', 'uint32', 'bool'], [controllerAddress, percentage, minCrvUsdExpected, swapAmount, minAmount, to, additionData, gasUsed, dfsFeeDivider, useSteth]);
31517
+ 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]);
31426
31518
  this.mappableArgs = [
31427
31519
  ...this.args,
31428
31520
  ];
@@ -31431,7 +31523,7 @@ class CurveUsdSelfLiquidateWithCollAction extends _Action__WEBPACK_IMPORTED_MODU
31431
31523
 
31432
31524
 
31433
31525
  /***/ }),
31434
- /* 284 */
31526
+ /* 286 */
31435
31527
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31436
31528
 
31437
31529
  "use strict";
@@ -31441,7 +31533,7 @@ __webpack_require__.r(__webpack_exports__);
31441
31533
  /* harmony export */ });
31442
31534
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
31443
31535
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
31444
- /* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(275);
31536
+ /* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(277);
31445
31537
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
31446
31538
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
31447
31539
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -31485,7 +31577,7 @@ class CurveUsdAdjustAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
31485
31577
 
31486
31578
 
31487
31579
  /***/ }),
31488
- /* 285 */
31580
+ /* 287 */
31489
31581
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31490
31582
 
31491
31583
  "use strict";
@@ -31502,16 +31594,16 @@ __webpack_require__.r(__webpack_exports__);
31502
31594
  /* harmony export */ SparkSwapBorrowRateModeAction: () => (/* reexport safe */ _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.SparkSwapBorrowRateModeAction),
31503
31595
  /* harmony export */ SparkWithdrawAction: () => (/* reexport safe */ _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__.SparkWithdrawAction)
31504
31596
  /* harmony export */ });
31505
- /* harmony import */ var _SparkSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(286);
31506
- /* harmony import */ var _SparkBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(287);
31507
- /* harmony import */ var _SparkPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(288);
31508
- /* harmony import */ var _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(289);
31509
- /* harmony import */ var _SparkSetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(290);
31510
- /* harmony import */ var _SparkSpTokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(291);
31511
- /* harmony import */ var _SparkCollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(292);
31512
- /* harmony import */ var _SparkClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(293);
31513
- /* harmony import */ var _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(294);
31514
- /* harmony import */ var _SparkDelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(295);
31597
+ /* harmony import */ var _SparkSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(288);
31598
+ /* harmony import */ var _SparkBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(289);
31599
+ /* harmony import */ var _SparkPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(290);
31600
+ /* harmony import */ var _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(291);
31601
+ /* harmony import */ var _SparkSetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(292);
31602
+ /* harmony import */ var _SparkSpTokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(293);
31603
+ /* harmony import */ var _SparkCollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(294);
31604
+ /* harmony import */ var _SparkClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(295);
31605
+ /* harmony import */ var _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(296);
31606
+ /* harmony import */ var _SparkDelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(297);
31515
31607
 
31516
31608
 
31517
31609
 
@@ -31525,7 +31617,7 @@ __webpack_require__.r(__webpack_exports__);
31525
31617
 
31526
31618
 
31527
31619
  /***/ }),
31528
- /* 286 */
31620
+ /* 288 */
31529
31621
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31530
31622
 
31531
31623
  "use strict";
@@ -31617,7 +31709,7 @@ class SparkSupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Actio
31617
31709
 
31618
31710
 
31619
31711
  /***/ }),
31620
- /* 287 */
31712
+ /* 289 */
31621
31713
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31622
31714
 
31623
31715
  "use strict";
@@ -31690,7 +31782,7 @@ class SparkBorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Actio
31690
31782
 
31691
31783
 
31692
31784
  /***/ }),
31693
- /* 288 */
31785
+ /* 290 */
31694
31786
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31695
31787
 
31696
31788
  "use strict";
@@ -31782,7 +31874,7 @@ class SparkPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
31782
31874
 
31783
31875
 
31784
31876
  /***/ }),
31785
- /* 289 */
31877
+ /* 291 */
31786
31878
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31787
31879
 
31788
31880
  "use strict";
@@ -31841,7 +31933,7 @@ class SparkWithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
31841
31933
 
31842
31934
 
31843
31935
  /***/ }),
31844
- /* 290 */
31936
+ /* 292 */
31845
31937
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31846
31938
 
31847
31939
  "use strict";
@@ -31887,7 +31979,7 @@ class SparkSetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
31887
31979
 
31888
31980
 
31889
31981
  /***/ }),
31890
- /* 291 */
31982
+ /* 293 */
31891
31983
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31892
31984
 
31893
31985
  "use strict";
@@ -31966,7 +32058,7 @@ class SparkSpTokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
31966
32058
 
31967
32059
 
31968
32060
  /***/ }),
31969
- /* 292 */
32061
+ /* 294 */
31970
32062
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
31971
32063
 
31972
32064
  "use strict";
@@ -32018,7 +32110,7 @@ class SparkCollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE
32018
32110
 
32019
32111
 
32020
32112
  /***/ }),
32021
- /* 293 */
32113
+ /* 295 */
32022
32114
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32023
32115
 
32024
32116
  "use strict";
@@ -32072,7 +32164,7 @@ class SparkClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__
32072
32164
 
32073
32165
 
32074
32166
  /***/ }),
32075
- /* 294 */
32167
+ /* 296 */
32076
32168
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32077
32169
 
32078
32170
  "use strict";
@@ -32123,7 +32215,7 @@ class SparkSwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODU
32123
32215
 
32124
32216
 
32125
32217
  /***/ }),
32126
- /* 295 */
32218
+ /* 297 */
32127
32219
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32128
32220
 
32129
32221
  "use strict";
@@ -32183,7 +32275,7 @@ class SparkDelegateCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
32183
32275
 
32184
32276
 
32185
32277
  /***/ }),
32186
- /* 296 */
32278
+ /* 298 */
32187
32279
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32188
32280
 
32189
32281
  "use strict";
@@ -32196,30 +32288,36 @@ __webpack_require__.r(__webpack_exports__);
32196
32288
  /* harmony export */ CompV3RatioTrigger: () => (/* reexport safe */ _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__.CompV3RatioTrigger),
32197
32289
  /* harmony export */ CompoundRatioTrigger: () => (/* reexport safe */ _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__.CompoundRatioTrigger),
32198
32290
  /* harmony export */ GasPriceTrigger: () => (/* reexport safe */ _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__.GasPriceTrigger),
32291
+ /* harmony export */ LiquityDebtInFrontWithLimitTrigger: () => (/* reexport safe */ _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_16__.LiquityDebtInFrontWithLimitTrigger),
32199
32292
  /* harmony export */ LiquityRatioTrigger: () => (/* reexport safe */ _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__.LiquityRatioTrigger),
32200
32293
  /* harmony export */ MakerRatioTrigger: () => (/* reexport safe */ _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__.MakerRatioTrigger),
32294
+ /* harmony export */ MorphoAaveV2RatioTrigger: () => (/* reexport safe */ _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__.MorphoAaveV2RatioTrigger),
32201
32295
  /* harmony export */ ReflexerRatioTrigger: () => (/* reexport safe */ _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__.ReflexerRatioTrigger),
32202
- /* harmony export */ SparkQuotePriceTrigger: () => (/* reexport safe */ _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_14__.SparkQuotePriceTrigger),
32203
- /* harmony export */ SparkRatioTrigger: () => (/* reexport safe */ _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_13__.SparkRatioTrigger),
32296
+ /* harmony export */ SparkQuotePriceTrigger: () => (/* reexport safe */ _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_15__.SparkQuotePriceTrigger),
32297
+ /* harmony export */ SparkRatioTrigger: () => (/* reexport safe */ _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_14__.SparkRatioTrigger),
32204
32298
  /* harmony export */ TimestampTrigger: () => (/* reexport safe */ _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__.TimestampTrigger),
32205
32299
  /* harmony export */ TrailingStopTrigger: () => (/* reexport safe */ _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__.TrailingStopTrigger),
32206
32300
  /* harmony export */ UniV3CurrentTickTrigger: () => (/* reexport safe */ _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__.UniV3CurrentTickTrigger)
32207
32301
  /* harmony export */ });
32208
- /* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(297);
32209
- /* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(298);
32210
- /* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(299);
32211
- /* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(300);
32212
- /* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(301);
32213
- /* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(302);
32214
- /* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(303);
32215
- /* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(304);
32216
- /* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(305);
32217
- /* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(306);
32218
- /* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(307);
32219
- /* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(308);
32220
- /* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(309);
32221
- /* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(310);
32222
- /* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(311);
32302
+ /* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(299);
32303
+ /* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(300);
32304
+ /* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(301);
32305
+ /* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(302);
32306
+ /* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(303);
32307
+ /* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(304);
32308
+ /* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(305);
32309
+ /* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(306);
32310
+ /* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(307);
32311
+ /* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(308);
32312
+ /* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(309);
32313
+ /* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(310);
32314
+ /* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(311);
32315
+ /* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(312);
32316
+ /* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(313);
32317
+ /* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(314);
32318
+ /* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(315);
32319
+
32320
+
32223
32321
 
32224
32322
 
32225
32323
 
@@ -32238,7 +32336,7 @@ __webpack_require__.r(__webpack_exports__);
32238
32336
 
32239
32337
 
32240
32338
  /***/ }),
32241
- /* 297 */
32339
+ /* 299 */
32242
32340
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32243
32341
 
32244
32342
  "use strict";
@@ -32263,7 +32361,7 @@ class MakerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32263
32361
 
32264
32362
 
32265
32363
  /***/ }),
32266
- /* 298 */
32364
+ /* 300 */
32267
32365
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32268
32366
 
32269
32367
  "use strict";
@@ -32288,7 +32386,7 @@ class ChainLinkPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
32288
32386
 
32289
32387
 
32290
32388
  /***/ }),
32291
- /* 299 */
32389
+ /* 301 */
32292
32390
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32293
32391
 
32294
32392
  "use strict";
@@ -32313,7 +32411,7 @@ class UniV3CurrentTickTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
32313
32411
 
32314
32412
 
32315
32413
  /***/ }),
32316
- /* 300 */
32414
+ /* 302 */
32317
32415
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32318
32416
 
32319
32417
  "use strict";
@@ -32338,7 +32436,7 @@ class TimestampTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32338
32436
 
32339
32437
 
32340
32438
  /***/ }),
32341
- /* 301 */
32439
+ /* 303 */
32342
32440
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32343
32441
 
32344
32442
  "use strict";
@@ -32363,7 +32461,7 @@ class GasPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32363
32461
 
32364
32462
 
32365
32463
  /***/ }),
32366
- /* 302 */
32464
+ /* 304 */
32367
32465
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32368
32466
 
32369
32467
  "use strict";
@@ -32388,7 +32486,7 @@ class CompoundRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32388
32486
 
32389
32487
 
32390
32488
  /***/ }),
32391
- /* 303 */
32489
+ /* 305 */
32392
32490
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32393
32491
 
32394
32492
  "use strict";
@@ -32413,7 +32511,7 @@ class ReflexerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32413
32511
 
32414
32512
 
32415
32513
  /***/ }),
32416
- /* 304 */
32514
+ /* 306 */
32417
32515
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32418
32516
 
32419
32517
  "use strict";
@@ -32438,7 +32536,7 @@ class LiquityRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32438
32536
 
32439
32537
 
32440
32538
  /***/ }),
32441
- /* 305 */
32539
+ /* 307 */
32442
32540
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32443
32541
 
32444
32542
  "use strict";
@@ -32463,7 +32561,7 @@ class AaveV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32463
32561
 
32464
32562
 
32465
32563
  /***/ }),
32466
- /* 306 */
32564
+ /* 308 */
32467
32565
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32468
32566
 
32469
32567
  "use strict";
@@ -32488,7 +32586,7 @@ class CompV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32488
32586
 
32489
32587
 
32490
32588
  /***/ }),
32491
- /* 307 */
32589
+ /* 309 */
32492
32590
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32493
32591
 
32494
32592
  "use strict";
@@ -32513,7 +32611,7 @@ class TrailingStopTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32513
32611
 
32514
32612
 
32515
32613
  /***/ }),
32516
- /* 308 */
32614
+ /* 310 */
32517
32615
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32518
32616
 
32519
32617
  "use strict";
@@ -32538,7 +32636,7 @@ class CBRebondTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32538
32636
 
32539
32637
 
32540
32638
  /***/ }),
32541
- /* 309 */
32639
+ /* 311 */
32542
32640
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32543
32641
 
32544
32642
  "use strict";
@@ -32563,7 +32661,32 @@ class AaveV3QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
32563
32661
 
32564
32662
 
32565
32663
  /***/ }),
32566
- /* 310 */
32664
+ /* 312 */
32665
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32666
+
32667
+ "use strict";
32668
+ __webpack_require__.r(__webpack_exports__);
32669
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
32670
+ /* harmony export */ MorphoAaveV2RatioTrigger: () => (/* binding */ MorphoAaveV2RatioTrigger)
32671
+ /* harmony export */ });
32672
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
32673
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
32674
+
32675
+
32676
+ /**
32677
+ *
32678
+ *
32679
+ * @category Triggers
32680
+ */
32681
+ class MorphoAaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32682
+ constructor(user, ratio, state) {
32683
+ super('MorphoAaveV2RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('MorphoAaveV2RatioTrigger'), ['address', 'uint256', 'uint8'], [user, ratio, state]);
32684
+ }
32685
+ }
32686
+
32687
+
32688
+ /***/ }),
32689
+ /* 313 */
32567
32690
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32568
32691
 
32569
32692
  "use strict";
@@ -32588,7 +32711,7 @@ class SparkRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32588
32711
 
32589
32712
 
32590
32713
  /***/ }),
32591
- /* 311 */
32714
+ /* 314 */
32592
32715
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32593
32716
 
32594
32717
  "use strict";
@@ -32613,7 +32736,32 @@ class SparkQuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
32613
32736
 
32614
32737
 
32615
32738
  /***/ }),
32616
- /* 312 */
32739
+ /* 315 */
32740
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32741
+
32742
+ "use strict";
32743
+ __webpack_require__.r(__webpack_exports__);
32744
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
32745
+ /* harmony export */ LiquityDebtInFrontWithLimitTrigger: () => (/* binding */ LiquityDebtInFrontWithLimitTrigger)
32746
+ /* harmony export */ });
32747
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(32);
32748
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
32749
+
32750
+
32751
+ /**
32752
+ *
32753
+ *
32754
+ * @category Triggers
32755
+ */
32756
+ class LiquityDebtInFrontWithLimitTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
32757
+ constructor(troveOwner, debtInFront) {
32758
+ super('LiquityDebtInFrontWithLimitTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('LiquityDebtInFrontWithLimitTrigger'), ['address', 'uint256'], [troveOwner, debtInFront]);
32759
+ }
32760
+ }
32761
+
32762
+
32763
+ /***/ }),
32764
+ /* 316 */
32617
32765
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32618
32766
 
32619
32767
  "use strict";
@@ -32628,13 +32776,13 @@ __webpack_require__.r(__webpack_exports__);
32628
32776
  /* harmony export */ uniswapV3LP: () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
32629
32777
  /* harmony export */ zeroExExchange: () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
32630
32778
  /* harmony export */ });
32631
- /* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(313);
32779
+ /* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(317);
32632
32780
  /* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(148);
32633
- /* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(315);
32634
- /* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(240);
32635
- /* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(221);
32636
- /* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(207);
32637
- /* harmony import */ var _curveusd_utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(275);
32781
+ /* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(319);
32782
+ /* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(242);
32783
+ /* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(223);
32784
+ /* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(209);
32785
+ /* harmony import */ var _curveusd_utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(277);
32638
32786
  /* harmony import */ var _basic_utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(118);
32639
32787
 
32640
32788
 
@@ -32648,7 +32796,7 @@ __webpack_require__.r(__webpack_exports__);
32648
32796
 
32649
32797
 
32650
32798
  /***/ }),
32651
- /* 313 */
32799
+ /* 317 */
32652
32800
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32653
32801
 
32654
32802
  "use strict";
@@ -32660,7 +32808,7 @@ __webpack_require__.r(__webpack_exports__);
32660
32808
  /* harmony export */ });
32661
32809
  /* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
32662
32810
  /* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
32663
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(314);
32811
+ /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(318);
32664
32812
  /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
32665
32813
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(20);
32666
32814
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
@@ -32838,14 +32986,14 @@ const createSellAction = (sellAmount, sellToken, buyToken, expectedPrice, accept
32838
32986
 
32839
32987
 
32840
32988
  /***/ }),
32841
- /* 314 */
32989
+ /* 318 */
32842
32990
  /***/ ((module) => {
32843
32991
 
32844
32992
  "use strict";
32845
- module.exports = __WEBPACK_EXTERNAL_MODULE__314__;
32993
+ module.exports = __WEBPACK_EXTERNAL_MODULE__318__;
32846
32994
 
32847
32995
  /***/ }),
32848
- /* 315 */
32996
+ /* 319 */
32849
32997
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32850
32998
 
32851
32999
  "use strict";
@@ -32853,7 +33001,7 @@ __webpack_require__.r(__webpack_exports__);
32853
33001
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
32854
33002
  /* harmony export */ getAssetAddrByTokenId: () => (/* binding */ getAssetAddrByTokenId)
32855
33003
  /* harmony export */ });
32856
- /* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(316);
33004
+ /* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(320);
32857
33005
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
32858
33006
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
32859
33007
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -32880,14 +33028,14 @@ const getAssetAddrByTokenId = (web3, tokenId) => __awaiter(void 0, void 0, void
32880
33028
 
32881
33029
 
32882
33030
  /***/ }),
32883
- /* 316 */
33031
+ /* 320 */
32884
33032
  /***/ ((module) => {
32885
33033
 
32886
33034
  "use strict";
32887
33035
  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"}]');
32888
33036
 
32889
33037
  /***/ }),
32890
- /* 317 */
33038
+ /* 321 */
32891
33039
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
32892
33040
 
32893
33041
  "use strict";
@@ -33245,7 +33393,7 @@ var crvUSDRatioTrigger = {
33245
33393
  };
33246
33394
 
33247
33395
  /***/ }),
33248
- /* 318 */
33396
+ /* 322 */
33249
33397
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
33250
33398
 
33251
33399
  "use strict";
@@ -33271,7 +33419,7 @@ class OptimismStrategies extends _private_StrategiesAutomation__WEBPACK_IMPORTED
33271
33419
  }
33272
33420
 
33273
33421
  /***/ }),
33274
- /* 319 */
33422
+ /* 323 */
33275
33423
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
33276
33424
 
33277
33425
  "use strict";
@@ -33297,7 +33445,7 @@ class ArbitrumStrategies extends _private_StrategiesAutomation__WEBPACK_IMPORTED
33297
33445
  }
33298
33446
 
33299
33447
  /***/ }),
33300
- /* 320 */
33448
+ /* 324 */
33301
33449
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
33302
33450
 
33303
33451
  "use strict";
@@ -33323,7 +33471,7 @@ __webpack_require__.r(__webpack_exports__);
33323
33471
  /* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(5);
33324
33472
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(4);
33325
33473
  /* harmony import */ var _subDataService__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);
33326
- /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(317);
33474
+ /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(321);
33327
33475
  /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(17);
33328
33476
 
33329
33477
 
@@ -33671,11 +33819,11 @@ __webpack_require__.r(__webpack_exports__);
33671
33819
  /* harmony import */ var _automation_public_legacy_LegacyAaveAutomation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(24);
33672
33820
  /* harmony import */ var _automation_public_legacy_LegacyCompoundAutomation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(25);
33673
33821
  /* harmony import */ var _automation_public_EthereumStrategies__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(26);
33674
- /* harmony import */ var _automation_public_OptimismStrategies__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(318);
33675
- /* harmony import */ var _automation_public_ArbitrumStrategies__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(319);
33676
- /* harmony import */ var _services_triggerService__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(317);
33822
+ /* harmony import */ var _automation_public_OptimismStrategies__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(322);
33823
+ /* harmony import */ var _automation_public_ArbitrumStrategies__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(323);
33824
+ /* harmony import */ var _services_triggerService__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(321);
33677
33825
  /* harmony import */ var _services_subDataService__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(30);
33678
- /* harmony import */ var _services_strategySubService__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(320);
33826
+ /* harmony import */ var _services_strategySubService__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(324);
33679
33827
  /* harmony import */ var _services_strategiesService__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(28);
33680
33828
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(4);
33681
33829
  /* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(5);