@defisaver/automation-sdk 1.2.0 → 1.2.2

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("web3"), require("decimal.js"), require("@defisaver/tokens"), require("web3-eth-abi"), require("web3-utils"), require("@ethersproject/solidity"), require("@ethersproject/address"), require("axios"));
8
8
  else
9
9
  root["defisaver-sdk"] = factory(root["web3"], root["decimal.js"], root["@defisaver/tokens"], root["web3-eth-abi"], root["web3-utils"], root["@ethersproject/solidity"], root["@ethersproject/address"], root["axios"]);
10
- })(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__19__, __WEBPACK_EXTERNAL_MODULE__32__, __WEBPACK_EXTERNAL_MODULE__33__, __WEBPACK_EXTERNAL_MODULE__125__, __WEBPACK_EXTERNAL_MODULE__126__, __WEBPACK_EXTERNAL_MODULE__243__) => {
10
+ })(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__19__, __WEBPACK_EXTERNAL_MODULE__32__, __WEBPACK_EXTERNAL_MODULE__33__, __WEBPACK_EXTERNAL_MODULE__126__, __WEBPACK_EXTERNAL_MODULE__127__, __WEBPACK_EXTERNAL_MODULE__249__) => {
11
11
  return /******/ (() => { // webpackBootstrap
12
12
  /******/ var __webpack_modules__ = ([
13
13
  /* 0 */,
@@ -1336,7 +1336,7 @@ __webpack_require__.r(__webpack_exports__);
1336
1336
  /* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
1337
1337
  /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(18);
1338
1338
  /* harmony import */ var _subDataService__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(29);
1339
- /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(246);
1339
+ /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(252);
1340
1340
  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; }
1341
1341
  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; }
1342
1342
  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; }
@@ -1537,6 +1537,7 @@ function parseCompoundV3LeverageManagement(position, parseData) {
1537
1537
  var subData = _subDataService__WEBPACK_IMPORTED_MODULE_4__.compoundV3LeverageManagementSubData.decode(subStruct.subData);
1538
1538
  _position.strategyData.decoded.triggerData = triggerData;
1539
1539
  _position.strategyData.decoded.subData = subData;
1540
+ _position.owner = triggerData.owner;
1540
1541
  var isRepay = [_types_enums__WEBPACK_IMPORTED_MODULE_2__.Strategies.Identifiers.Repay, _types_enums__WEBPACK_IMPORTED_MODULE_2__.Strategies.Identifiers.EoaRepay].includes(_position.strategy.strategyId);
1541
1542
  if (isRepay) {
1542
1543
  _position.specific = {
@@ -19117,8 +19118,8 @@ __webpack_require__.r(__webpack_exports__);
19117
19118
  /* harmony import */ var _Strategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(57);
19118
19119
  /* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(58);
19119
19120
  /* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(63);
19120
- /* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(229);
19121
- /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(241);
19121
+ /* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(233);
19122
+ /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(247);
19122
19123
  /* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(34);
19123
19124
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(55);
19124
19125
  /* Export methods, classes and other here */
@@ -19237,12 +19238,26 @@ class Action {
19237
19238
  return 0;
19238
19239
  });
19239
19240
  }
19241
+ _parseParamType(paramType, arg) {
19242
+ if (typeof (paramType) === 'string') {
19243
+ if (paramType.startsWith('(')) {
19244
+ let _paramType = paramType.replace('(', '');
19245
+ _paramType = _paramType.replace(')', '');
19246
+ return _paramType.split(',');
19247
+ }
19248
+ if (paramType.endsWith('[]')) {
19249
+ return Array.from(Array(arg.length).fill(paramType.replace('[]', '')));
19250
+ }
19251
+ }
19252
+ return paramType;
19253
+ }
19240
19254
  /**
19241
19255
  *
19242
19256
  */
19243
19257
  _replaceWithPlaceholders(arg, paramType) {
19258
+ const paramTypeParsed = this._parseParamType(paramType, arg);
19244
19259
  if (Array.isArray(arg))
19245
- return arg.map((_arg, i) => this._replaceWithPlaceholders(_arg, paramType[i]));
19260
+ return arg.map((_arg, i) => this._replaceWithPlaceholders(_arg, paramTypeParsed[i]));
19246
19261
  if (typeof (paramType) === 'string') {
19247
19262
  if (new RegExp(/\$\d+/).test(arg))
19248
19263
  return __classPrivateFieldGet(this, _Action_instances, "m", _Action__getPlaceholderForType).call(this, paramType);
@@ -19362,7 +19377,7 @@ _Action_instances = new WeakSet(), _Action__getArgumentMappingWithSlots = functi
19362
19377
  // TODO handle arrays?
19363
19378
  // eslint-disable-next-line
19364
19379
  if (type.startsWith('bytes'))
19365
- return `0x${'0'.repeat(parseInt(type.substr(5)))}`;
19380
+ return `0x${'0'.repeat(parseInt(type.substr(5)) * 2)}`;
19366
19381
  if (type === 'address')
19367
19382
  return `0x${'0'.repeat(40)}`;
19368
19383
  if (type === 'string')
@@ -20284,10 +20299,11 @@ const actionAddresses = {
20284
20299
  AutomationV2Unsub: '0xe35Fb12fE9796847751076aCf5ee7d124108612C',
20285
20300
  SendTokenAndUnwrap: '0xeecd376026335261c89faD40D89625391b1eFF6a',
20286
20301
  ToggleSub: '0x9A78E9d6538cfDbA0242Ca5eC46771E6132E8085',
20287
- UpdateSub: '0x94D707f411B852082a5ce49C3f47c49c7757761f',
20302
+ UpdateSub: '0xF6Cb8f7e61a64075ec8FAC3f298745605E543233',
20288
20303
  TransferNFT: '0x861e893E1796F81248e75F06C0b09Abdc8fe2f6F',
20304
+ CreateSub: '0x7308e88BB21B934478E75bB6A2143b8cfDFf2961',
20289
20305
  // exchange
20290
- DFSSell: '0xB744474Bdd7226736ACa4Ba87593e32d8315e5c9',
20306
+ DFSSell: '0x951D7B421f45FF0e4A8ddE0288aE3f9C2C69b784',
20291
20307
  // maker
20292
20308
  McdGenerate: '0xCb50a91C0f12f439b8bf11E9474B9c1ED62Bf7a3',
20293
20309
  McdGive: '0xf9556A87BF424834FDe7De0547b58E36Cb42EF01',
@@ -20345,7 +20361,7 @@ const actionAddresses = {
20345
20361
  LiquityClose: '0x4B2d174129789a88e92D46342201F207132144b7',
20346
20362
  LiquityBorrow: '0xF978d6C5c8af80a059AdB85EEb64F14C9c436D68',
20347
20363
  LiquityOpen: '0x4EFF392cc69B31Ad159EcfA10305251b2d8E40E0',
20348
- LiquityPayback: '0x8fc7D24414e9740ed9841d9205D458e3677e71f7',
20364
+ LiquityPayback: '0xe686Fd57D93Ee713Ba974bC5540FF740fb6DB94F',
20349
20365
  LiquityWithdraw: '0x733F53579bEcdd3Ed07e745A55Ee9af8B9669048',
20350
20366
  LiquitySupply: '0xD539943e080C2a29e3f1DB2d45Ea7240d7ddDEE2',
20351
20367
  LiquitySPDeposit: '0x5aB0244a00a733f16E6b238B462bdF3538C698E1',
@@ -20384,6 +20400,8 @@ const actionAddresses = {
20384
20400
  // Euler
20385
20401
  FLEuler: '0x66DC6444CdC099153f89332e0d4C87af5C966A75',
20386
20402
  TrailingStopTrigger: '0x0000000000000000000000000000000000000000',
20403
+ CBRebondTrigger: '0x6Bb48580977e2aBfD6c70B522204EFbe828a9428',
20404
+ CBUpdateRebondSub: '0x2709Fd59a27F35997dFf618E3C68ABA1c9e91465',
20387
20405
  // Convex
20388
20406
  ConvexDeposit: '0x3Ecc4F1FD5aA09D2E13Ec9ebFdF102063d66F458',
20389
20407
  ConvexWithdraw: '0x2B2c235F9e27A121947c34A39d447bD4C585aA15',
@@ -20393,6 +20411,8 @@ const actionAddresses = {
20393
20411
  CBRedeem: '0xdD06754cA5367B03af7014AB359332eD82D988d1',
20394
20412
  CBChickenIn: '0x1E990AF6dCf9E9f8a0b2fc76f3BC032A34fFfD14',
20395
20413
  CBChickenOut: '0x3d2f2d88749BB387abD07A2408b68D2Bf2D4be3f',
20414
+ CBCreateRebondSub: '0xe4bD188cc2e2787518D6762F22E5afe5A21b30E4',
20415
+ FetchBondId: '0xA3331A6aE1BC901b8136E6Fe622890B3Fa3dC80e',
20396
20416
  // CompV3
20397
20417
  CompV3Allow: '0xC4a80f22bf56E0dFa2CB378561B934F41E14bc9f',
20398
20418
  CompV3Borrow: '0x11e7b984299a771C92CD42A87358a32791A75CEA',
@@ -20403,7 +20423,7 @@ const actionAddresses = {
20403
20423
  CompV3Withdraw: '0x0b0F21EDE32DE4243D9145a899E97FC2366Aec46',
20404
20424
  },
20405
20425
  [_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.optimism.chainId]: {
20406
- DFSSell: '0xBA0f6039b95CC0A02B5fc983eCf0FC4437BaacC7',
20426
+ DFSSell: '0xC6c601fcAa870efd26C624F8c65fbc54cBe533b1',
20407
20427
  // basic
20408
20428
  WrapEth: '0x6D735db054AC4a1F10f96b99f8550E9eefbC2AC5',
20409
20429
  UnwrapEth: '0x1Fa75B00A05C2EbBd0EDF253a63c209966337A0d',
@@ -20437,7 +20457,7 @@ const actionAddresses = {
20437
20457
  UniCreatePoolV3: '0xAF45d1380d89dB7260DC2684158c5dfA4E147d3e',
20438
20458
  },
20439
20459
  [_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.arbitrum.chainId]: {
20440
- DFSSell: '0x77c02Bb7CbBb2F896c5Ea14e1b60D65f81e552db',
20460
+ DFSSell: '0x9109F34AB28D369cF894aF45C50E976B8E312a82',
20441
20461
  // basic
20442
20462
  WrapEth: '0x35136b25bFA7CCC8f5b94E3181a16B61c06980F0',
20443
20463
  UnwrapEth: '0x2B69d494536098700910D167902D1d397dcA2B61',
@@ -20793,25 +20813,25 @@ __webpack_require__.r(__webpack_exports__);
20793
20813
  /* harmony import */ var _aave__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(75);
20794
20814
  /* harmony import */ var _compound__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(82);
20795
20815
  /* harmony import */ var _basic__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(90);
20796
- /* harmony import */ var _flashloan__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(107);
20797
- /* harmony import */ var _uniswap__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(121);
20798
- /* harmony import */ var _reflexer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(127);
20799
- /* harmony import */ var _dydx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(136);
20800
- /* harmony import */ var _uniswapV3__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(138);
20801
- /* harmony import */ var _checkers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(144);
20802
- /* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(148);
20803
- /* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(164);
20804
- /* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(167);
20805
- /* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(171);
20806
- /* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(173);
20807
- /* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(177);
20808
- /* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(189);
20809
- /* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(192);
20810
- /* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(197);
20811
- /* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(200);
20812
- /* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(210);
20813
- /* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(216);
20814
- /* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(221);
20816
+ /* harmony import */ var _flashloan__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(108);
20817
+ /* harmony import */ var _uniswap__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(122);
20818
+ /* harmony import */ var _reflexer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(128);
20819
+ /* harmony import */ var _dydx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(137);
20820
+ /* harmony import */ var _uniswapV3__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(139);
20821
+ /* harmony import */ var _checkers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(145);
20822
+ /* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(149);
20823
+ /* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(165);
20824
+ /* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(168);
20825
+ /* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(172);
20826
+ /* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(174);
20827
+ /* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(178);
20828
+ /* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(190);
20829
+ /* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(193);
20830
+ /* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(198);
20831
+ /* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(201);
20832
+ /* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(211);
20833
+ /* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(217);
20834
+ /* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(225);
20815
20835
 
20816
20836
 
20817
20837
 
@@ -21845,6 +21865,7 @@ __webpack_require__.r(__webpack_exports__);
21845
21865
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21846
21866
  /* harmony export */ "AutomationV2Unsub": () => (/* reexport safe */ _AutomationV2Unsub__WEBPACK_IMPORTED_MODULE_10__.AutomationV2Unsub),
21847
21867
  /* harmony export */ "ChangeProxyOwnerAction": () => (/* reexport safe */ _ChangeProxyOwnerAction__WEBPACK_IMPORTED_MODULE_8__.ChangeProxyOwnerAction),
21868
+ /* harmony export */ "CreateSubAction": () => (/* reexport safe */ _CreateSubAction__WEBPACK_IMPORTED_MODULE_16__.CreateSubAction),
21848
21869
  /* harmony export */ "GasFeeAction": () => (/* reexport safe */ _GasFeeAction__WEBPACK_IMPORTED_MODULE_11__.GasFeeAction),
21849
21870
  /* harmony export */ "GasFeeActionL2": () => (/* reexport safe */ _GasFeeActionL2__WEBPACK_IMPORTED_MODULE_14__.GasFeeActionL2),
21850
21871
  /* harmony export */ "PullTokenAction": () => (/* reexport safe */ _PullTokenAction__WEBPACK_IMPORTED_MODULE_3__.PullTokenAction),
@@ -21876,6 +21897,8 @@ __webpack_require__.r(__webpack_exports__);
21876
21897
  /* harmony import */ var _ToggleSubAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(104);
21877
21898
  /* harmony import */ var _GasFeeActionL2__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(105);
21878
21899
  /* harmony import */ var _TransferNFTAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(106);
21900
+ /* harmony import */ var _CreateSubAction__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(107);
21901
+
21879
21902
 
21880
21903
 
21881
21904
 
@@ -22391,6 +22414,12 @@ class UpdateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
22391
22414
  */
22392
22415
  constructor(subId, sub) {
22393
22416
  super('UpdateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('UpdateSub'), ['uint256', '(uint64,bool,bytes[],bytes32[])'], [subId, sub]);
22417
+ this.mappableArgs = [
22418
+ this.args[0],
22419
+ ];
22420
+ for (let i = 0; i < this.args[1][3].length; i++) {
22421
+ this.mappableArgs.push(this.args[1][3][i]);
22422
+ }
22394
22423
  }
22395
22424
  }
22396
22425
 
@@ -22494,6 +22523,37 @@ class TransferNFTAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
22494
22523
  /* 107 */
22495
22524
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22496
22525
 
22526
+ "use strict";
22527
+ __webpack_require__.r(__webpack_exports__);
22528
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22529
+ /* harmony export */ "CreateSubAction": () => (/* binding */ CreateSubAction)
22530
+ /* harmony export */ });
22531
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
22532
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
22533
+
22534
+
22535
+ /**
22536
+ * Action for creating a sub
22537
+ *
22538
+ * @category BasicActions
22539
+ */
22540
+ class CreateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
22541
+ /**
22542
+ * @param sub object that contains new sub information
22543
+ */
22544
+ constructor(sub) {
22545
+ super('CreateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CreateSub'), ['(uint64,bool,bytes[],bytes32[])'], [sub]);
22546
+ for (let i = 0; i < this.args[0][3].length; i++) {
22547
+ this.mappableArgs.push(this.args[0][3][i]);
22548
+ }
22549
+ }
22550
+ }
22551
+
22552
+
22553
+ /***/ }),
22554
+ /* 108 */
22555
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22556
+
22497
22557
  "use strict";
22498
22558
  __webpack_require__.r(__webpack_exports__);
22499
22559
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -22511,19 +22571,19 @@ __webpack_require__.r(__webpack_exports__);
22511
22571
  /* harmony export */ "MakerFlashLoanAction": () => (/* reexport safe */ _MakerFlashLoanAction__WEBPACK_IMPORTED_MODULE_6__.MakerFlashLoanAction),
22512
22572
  /* harmony export */ "MakerFlashLoanPaybackAction": () => (/* reexport safe */ _MakerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_7__.MakerFlashLoanPaybackAction)
22513
22573
  /* harmony export */ });
22514
- /* harmony import */ var _DyDxFlashLoanAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(108);
22515
- /* harmony import */ var _DyDxFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(109);
22516
- /* harmony import */ var _AaveV2FlashLoanAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(110);
22517
- /* harmony import */ var _AaveV2FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(111);
22518
- /* harmony import */ var _AaveV3FlashLoanAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(112);
22519
- /* harmony import */ var _AaveV3FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(113);
22520
- /* harmony import */ var _MakerFlashLoanAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(114);
22521
- /* harmony import */ var _MakerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(115);
22522
- /* harmony import */ var _BalancerFlashLoanAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(116);
22523
- /* harmony import */ var _BalancerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(117);
22524
- /* harmony import */ var _EulerFlashLoanAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(118);
22525
- /* harmony import */ var _EulerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(119);
22526
- /* harmony import */ var _FLAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(120);
22574
+ /* harmony import */ var _DyDxFlashLoanAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(109);
22575
+ /* harmony import */ var _DyDxFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(110);
22576
+ /* harmony import */ var _AaveV2FlashLoanAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(111);
22577
+ /* harmony import */ var _AaveV2FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(112);
22578
+ /* harmony import */ var _AaveV3FlashLoanAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(113);
22579
+ /* harmony import */ var _AaveV3FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(114);
22580
+ /* harmony import */ var _MakerFlashLoanAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(115);
22581
+ /* harmony import */ var _MakerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(116);
22582
+ /* harmony import */ var _BalancerFlashLoanAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(117);
22583
+ /* harmony import */ var _BalancerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(118);
22584
+ /* harmony import */ var _EulerFlashLoanAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(119);
22585
+ /* harmony import */ var _EulerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(120);
22586
+ /* harmony import */ var _FLAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(121);
22527
22587
 
22528
22588
 
22529
22589
 
@@ -22540,7 +22600,7 @@ __webpack_require__.r(__webpack_exports__);
22540
22600
 
22541
22601
 
22542
22602
  /***/ }),
22543
- /* 108 */
22603
+ /* 109 */
22544
22604
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22545
22605
 
22546
22606
  "use strict";
@@ -22571,7 +22631,7 @@ class DyDxFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
22571
22631
 
22572
22632
 
22573
22633
  /***/ }),
22574
- /* 109 */
22634
+ /* 110 */
22575
22635
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22576
22636
 
22577
22637
  "use strict";
@@ -22600,7 +22660,7 @@ class DyDxFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.Sen
22600
22660
 
22601
22661
 
22602
22662
  /***/ }),
22603
- /* 110 */
22663
+ /* 111 */
22604
22664
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22605
22665
 
22606
22666
  "use strict";
@@ -22633,7 +22693,7 @@ class AaveV2FlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
22633
22693
 
22634
22694
 
22635
22695
  /***/ }),
22636
- /* 111 */
22696
+ /* 112 */
22637
22697
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22638
22698
 
22639
22699
  "use strict";
@@ -22662,7 +22722,7 @@ class AaveV2FlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.S
22662
22722
 
22663
22723
 
22664
22724
  /***/ }),
22665
- /* 112 */
22725
+ /* 113 */
22666
22726
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22667
22727
 
22668
22728
  "use strict";
@@ -22695,7 +22755,7 @@ class AaveV3FlashLoanAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.A
22695
22755
 
22696
22756
 
22697
22757
  /***/ }),
22698
- /* 113 */
22758
+ /* 114 */
22699
22759
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22700
22760
 
22701
22761
  "use strict";
@@ -22724,7 +22784,7 @@ class AaveV3FlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.S
22724
22784
 
22725
22785
 
22726
22786
  /***/ }),
22727
- /* 114 */
22787
+ /* 115 */
22728
22788
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22729
22789
 
22730
22790
  "use strict";
@@ -22754,7 +22814,7 @@ class MakerFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
22754
22814
 
22755
22815
 
22756
22816
  /***/ }),
22757
- /* 115 */
22817
+ /* 116 */
22758
22818
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22759
22819
 
22760
22820
  "use strict";
@@ -22782,7 +22842,7 @@ class MakerFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.Se
22782
22842
 
22783
22843
 
22784
22844
  /***/ }),
22785
- /* 116 */
22845
+ /* 117 */
22786
22846
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22787
22847
 
22788
22848
  "use strict";
@@ -22813,7 +22873,7 @@ class BalancerFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
22813
22873
 
22814
22874
 
22815
22875
  /***/ }),
22816
- /* 117 */
22876
+ /* 118 */
22817
22877
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22818
22878
 
22819
22879
  "use strict";
@@ -22842,7 +22902,7 @@ class BalancerFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__
22842
22902
 
22843
22903
 
22844
22904
  /***/ }),
22845
- /* 118 */
22905
+ /* 119 */
22846
22906
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22847
22907
 
22848
22908
  "use strict";
@@ -22873,7 +22933,7 @@ class EulerFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
22873
22933
 
22874
22934
 
22875
22935
  /***/ }),
22876
- /* 119 */
22936
+ /* 120 */
22877
22937
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22878
22938
 
22879
22939
  "use strict";
@@ -22902,7 +22962,7 @@ class EulerFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.Se
22902
22962
 
22903
22963
 
22904
22964
  /***/ }),
22905
- /* 120 */
22965
+ /* 121 */
22906
22966
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22907
22967
 
22908
22968
  "use strict";
@@ -22963,7 +23023,7 @@ _FLAction_instances = new WeakSet(), _FLAction_handleArgs = function _FLAction_h
22963
23023
 
22964
23024
 
22965
23025
  /***/ }),
22966
- /* 121 */
23026
+ /* 122 */
22967
23027
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22968
23028
 
22969
23029
  "use strict";
@@ -22972,14 +23032,14 @@ __webpack_require__.r(__webpack_exports__);
22972
23032
  /* harmony export */ "UniswapSupplyAction": () => (/* reexport safe */ _UniswapSupplyAction__WEBPACK_IMPORTED_MODULE_0__.UniswapSupplyAction),
22973
23033
  /* harmony export */ "UniswapWithdrawAction": () => (/* reexport safe */ _UniswapWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.UniswapWithdrawAction)
22974
23034
  /* harmony export */ });
22975
- /* harmony import */ var _UniswapSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(122);
22976
- /* harmony import */ var _UniswapWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(123);
23035
+ /* harmony import */ var _UniswapSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(123);
23036
+ /* harmony import */ var _UniswapWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(124);
22977
23037
 
22978
23038
 
22979
23039
 
22980
23040
 
22981
23041
  /***/ }),
22982
- /* 122 */
23042
+ /* 123 */
22983
23043
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
22984
23044
 
22985
23045
  "use strict";
@@ -23060,7 +23120,7 @@ class UniswapSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
23060
23120
 
23061
23121
 
23062
23122
  /***/ }),
23063
- /* 123 */
23123
+ /* 124 */
23064
23124
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23065
23125
 
23066
23126
  "use strict";
@@ -23069,7 +23129,7 @@ __webpack_require__.r(__webpack_exports__);
23069
23129
  /* harmony export */ "UniswapWithdrawAction": () => (/* binding */ UniswapWithdrawAction)
23070
23130
  /* harmony export */ });
23071
23131
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
23072
- /* harmony import */ var _utils_uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(124);
23132
+ /* harmony import */ var _utils_uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(125);
23073
23133
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(55);
23074
23134
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(67);
23075
23135
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
@@ -23131,7 +23191,7 @@ class UniswapWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
23131
23191
 
23132
23192
 
23133
23193
  /***/ }),
23134
- /* 124 */
23194
+ /* 125 */
23135
23195
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23136
23196
 
23137
23197
  "use strict";
@@ -23140,9 +23200,9 @@ __webpack_require__.r(__webpack_exports__);
23140
23200
  /* harmony export */ "getPoolAddressByAddresses": () => (/* binding */ getPoolAddressByAddresses),
23141
23201
  /* harmony export */ "getPoolAddressBySymbols": () => (/* binding */ getPoolAddressBySymbols)
23142
23202
  /* harmony export */ });
23143
- /* harmony import */ var _ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(125);
23203
+ /* harmony import */ var _ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(126);
23144
23204
  /* harmony import */ var _ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0__);
23145
- /* harmony import */ var _ethersproject_address__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(126);
23205
+ /* harmony import */ var _ethersproject_address__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(127);
23146
23206
  /* harmony import */ var _ethersproject_address__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_ethersproject_address__WEBPACK_IMPORTED_MODULE_1__);
23147
23207
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(19);
23148
23208
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
@@ -23181,21 +23241,21 @@ const getPoolAddressBySymbols = (symbolA, symbolB) => getPoolAddressByAddresses(
23181
23241
 
23182
23242
 
23183
23243
  /***/ }),
23184
- /* 125 */
23244
+ /* 126 */
23185
23245
  /***/ ((module) => {
23186
23246
 
23187
23247
  "use strict";
23188
- module.exports = __WEBPACK_EXTERNAL_MODULE__125__;
23248
+ module.exports = __WEBPACK_EXTERNAL_MODULE__126__;
23189
23249
 
23190
23250
  /***/ }),
23191
- /* 126 */
23251
+ /* 127 */
23192
23252
  /***/ ((module) => {
23193
23253
 
23194
23254
  "use strict";
23195
- module.exports = __WEBPACK_EXTERNAL_MODULE__126__;
23255
+ module.exports = __WEBPACK_EXTERNAL_MODULE__127__;
23196
23256
 
23197
23257
  /***/ }),
23198
- /* 127 */
23258
+ /* 128 */
23199
23259
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23200
23260
 
23201
23261
  "use strict";
@@ -23210,14 +23270,14 @@ __webpack_require__.r(__webpack_exports__);
23210
23270
  /* harmony export */ "ReflexerSupplyAction": () => (/* reexport safe */ _ReflexerSupplyAction__WEBPACK_IMPORTED_MODULE_2__.ReflexerSupplyAction),
23211
23271
  /* harmony export */ "ReflexerWithdrawAction": () => (/* reexport safe */ _ReflexerWithdrawAction__WEBPACK_IMPORTED_MODULE_4__.ReflexerWithdrawAction)
23212
23272
  /* harmony export */ });
23213
- /* harmony import */ var _ReflexerOpenSafeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(128);
23214
- /* harmony import */ var _ReflexerGenerateAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(129);
23215
- /* harmony import */ var _ReflexerSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(130);
23216
- /* harmony import */ var _ReflexerPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(131);
23217
- /* harmony import */ var _ReflexerWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(132);
23218
- /* harmony import */ var _ReflexerNativeUniV2SaviourDepositAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(133);
23219
- /* harmony import */ var _ReflexerNativeUniV2SaviourWithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(134);
23220
- /* harmony import */ var _ReflexerNativeUniV2SaviourGetReservesAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(135);
23273
+ /* harmony import */ var _ReflexerOpenSafeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(129);
23274
+ /* harmony import */ var _ReflexerGenerateAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(130);
23275
+ /* harmony import */ var _ReflexerSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(131);
23276
+ /* harmony import */ var _ReflexerPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(132);
23277
+ /* harmony import */ var _ReflexerWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(133);
23278
+ /* harmony import */ var _ReflexerNativeUniV2SaviourDepositAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(134);
23279
+ /* harmony import */ var _ReflexerNativeUniV2SaviourWithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(135);
23280
+ /* harmony import */ var _ReflexerNativeUniV2SaviourGetReservesAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(136);
23221
23281
 
23222
23282
 
23223
23283
 
@@ -23229,7 +23289,7 @@ __webpack_require__.r(__webpack_exports__);
23229
23289
 
23230
23290
 
23231
23291
  /***/ }),
23232
- /* 128 */
23292
+ /* 129 */
23233
23293
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23234
23294
 
23235
23295
  "use strict";
@@ -23257,7 +23317,7 @@ class ReflexerOpenSafeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
23257
23317
 
23258
23318
 
23259
23319
  /***/ }),
23260
- /* 129 */
23320
+ /* 130 */
23261
23321
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23262
23322
 
23263
23323
  "use strict";
@@ -23290,7 +23350,7 @@ class ReflexerGenerateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
23290
23350
 
23291
23351
 
23292
23352
  /***/ }),
23293
- /* 130 */
23353
+ /* 131 */
23294
23354
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23295
23355
 
23296
23356
  "use strict";
@@ -23349,7 +23409,7 @@ class ReflexerSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
23349
23409
 
23350
23410
 
23351
23411
  /***/ }),
23352
- /* 131 */
23412
+ /* 132 */
23353
23413
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23354
23414
 
23355
23415
  "use strict";
@@ -23396,7 +23456,7 @@ class ReflexerPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
23396
23456
 
23397
23457
 
23398
23458
  /***/ }),
23399
- /* 132 */
23459
+ /* 133 */
23400
23460
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23401
23461
 
23402
23462
  "use strict";
@@ -23430,7 +23490,7 @@ class ReflexerWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
23430
23490
 
23431
23491
 
23432
23492
  /***/ }),
23433
- /* 133 */
23493
+ /* 134 */
23434
23494
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23435
23495
 
23436
23496
  "use strict";
@@ -23480,7 +23540,7 @@ class ReflexerNativeUniV2SaviourDepositAction extends _Action__WEBPACK_IMPORTED_
23480
23540
 
23481
23541
 
23482
23542
  /***/ }),
23483
- /* 134 */
23543
+ /* 135 */
23484
23544
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23485
23545
 
23486
23546
  "use strict";
@@ -23517,7 +23577,7 @@ class ReflexerNativeUniV2SaviourWithdrawAction extends _Action__WEBPACK_IMPORTED
23517
23577
 
23518
23578
 
23519
23579
  /***/ }),
23520
- /* 135 */
23580
+ /* 136 */
23521
23581
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23522
23582
 
23523
23583
  "use strict";
@@ -23552,7 +23612,7 @@ class ReflexerNativeUniV2SaviourGetReservesAction extends _Action__WEBPACK_IMPOR
23552
23612
 
23553
23613
 
23554
23614
  /***/ }),
23555
- /* 136 */
23615
+ /* 137 */
23556
23616
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23557
23617
 
23558
23618
  "use strict";
@@ -23560,12 +23620,12 @@ __webpack_require__.r(__webpack_exports__);
23560
23620
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23561
23621
  /* harmony export */ "DyDxWithdrawAction": () => (/* reexport safe */ _DyDxWithdrawAction__WEBPACK_IMPORTED_MODULE_0__.DyDxWithdrawAction)
23562
23622
  /* harmony export */ });
23563
- /* harmony import */ var _DyDxWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(137);
23623
+ /* harmony import */ var _DyDxWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(138);
23564
23624
 
23565
23625
 
23566
23626
 
23567
23627
  /***/ }),
23568
- /* 137 */
23628
+ /* 138 */
23569
23629
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23570
23630
 
23571
23631
  "use strict";
@@ -23598,7 +23658,7 @@ class DyDxWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
23598
23658
 
23599
23659
 
23600
23660
  /***/ }),
23601
- /* 138 */
23661
+ /* 139 */
23602
23662
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23603
23663
 
23604
23664
  "use strict";
@@ -23610,11 +23670,11 @@ __webpack_require__.r(__webpack_exports__);
23610
23670
  /* harmony export */ "UniswapV3SupplyAction": () => (/* reexport safe */ _UniswapV3SupplyAction__WEBPACK_IMPORTED_MODULE_1__.UniswapV3SupplyAction),
23611
23671
  /* harmony export */ "UniswapV3WithdrawAction": () => (/* reexport safe */ _UniswapV3WithdrawAction__WEBPACK_IMPORTED_MODULE_2__.UniswapV3WithdrawAction)
23612
23672
  /* harmony export */ });
23613
- /* harmony import */ var _UniswapV3MintAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(139);
23614
- /* harmony import */ var _UniswapV3SupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(140);
23615
- /* harmony import */ var _UniswapV3WithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(141);
23616
- /* harmony import */ var _UniswapV3CollectAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(142);
23617
- /* harmony import */ var _UniswapV3CreatePoolAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(143);
23673
+ /* harmony import */ var _UniswapV3MintAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(140);
23674
+ /* harmony import */ var _UniswapV3SupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(141);
23675
+ /* harmony import */ var _UniswapV3WithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(142);
23676
+ /* harmony import */ var _UniswapV3CollectAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(143);
23677
+ /* harmony import */ var _UniswapV3CreatePoolAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(144);
23618
23678
 
23619
23679
 
23620
23680
 
@@ -23623,7 +23683,7 @@ __webpack_require__.r(__webpack_exports__);
23623
23683
 
23624
23684
 
23625
23685
  /***/ }),
23626
- /* 139 */
23686
+ /* 140 */
23627
23687
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23628
23688
 
23629
23689
  "use strict";
@@ -23706,7 +23766,7 @@ class UniswapV3MintAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Act
23706
23766
 
23707
23767
 
23708
23768
  /***/ }),
23709
- /* 140 */
23769
+ /* 141 */
23710
23770
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23711
23771
 
23712
23772
  "use strict";
@@ -23781,7 +23841,7 @@ class UniswapV3SupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.A
23781
23841
 
23782
23842
 
23783
23843
  /***/ }),
23784
- /* 141 */
23844
+ /* 142 */
23785
23845
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23786
23846
 
23787
23847
  "use strict";
@@ -23853,7 +23913,7 @@ class UniswapV3WithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__
23853
23913
 
23854
23914
 
23855
23915
  /***/ }),
23856
- /* 142 */
23916
+ /* 143 */
23857
23917
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23858
23918
 
23859
23919
  "use strict";
@@ -23913,7 +23973,7 @@ class UniswapV3CollectAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.
23913
23973
 
23914
23974
 
23915
23975
  /***/ }),
23916
- /* 143 */
23976
+ /* 144 */
23917
23977
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
23918
23978
 
23919
23979
  "use strict";
@@ -23998,7 +24058,7 @@ class UniswapV3CreatePoolAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
23998
24058
 
23999
24059
 
24000
24060
  /***/ }),
24001
- /* 144 */
24061
+ /* 145 */
24002
24062
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24003
24063
 
24004
24064
  "use strict";
@@ -24008,16 +24068,16 @@ __webpack_require__.r(__webpack_exports__);
24008
24068
  /* harmony export */ "CompoundV3RatioCheckAction": () => (/* reexport safe */ _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__.CompoundV3RatioCheckAction),
24009
24069
  /* harmony export */ "MakerRatioCheckAction": () => (/* reexport safe */ _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__.MakerRatioCheckAction)
24010
24070
  /* harmony export */ });
24011
- /* harmony import */ var _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(145);
24012
- /* harmony import */ var _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(146);
24013
- /* harmony import */ var _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(147);
24071
+ /* harmony import */ var _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(146);
24072
+ /* harmony import */ var _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(147);
24073
+ /* harmony import */ var _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(148);
24014
24074
 
24015
24075
 
24016
24076
 
24017
24077
 
24018
24078
 
24019
24079
  /***/ }),
24020
- /* 145 */
24080
+ /* 146 */
24021
24081
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24022
24082
 
24023
24083
  "use strict";
@@ -24055,7 +24115,7 @@ class MakerRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
24055
24115
 
24056
24116
 
24057
24117
  /***/ }),
24058
- /* 146 */
24118
+ /* 147 */
24059
24119
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24060
24120
 
24061
24121
  "use strict";
@@ -24088,7 +24148,7 @@ class AaveV3RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
24088
24148
 
24089
24149
 
24090
24150
  /***/ }),
24091
- /* 147 */
24151
+ /* 148 */
24092
24152
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24093
24153
 
24094
24154
  "use strict";
@@ -24125,7 +24185,7 @@ class CompoundV3RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
24125
24185
 
24126
24186
 
24127
24187
  /***/ }),
24128
- /* 148 */
24188
+ /* 149 */
24129
24189
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24130
24190
 
24131
24191
  "use strict";
@@ -24147,21 +24207,21 @@ __webpack_require__.r(__webpack_exports__);
24147
24207
  /* harmony export */ "LiquityUnstakeAction": () => (/* reexport safe */ _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__.LiquityUnstakeAction),
24148
24208
  /* harmony export */ "LiquityWithdrawAction": () => (/* reexport safe */ _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__.LiquityWithdrawAction)
24149
24209
  /* harmony export */ });
24150
- /* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(149);
24151
- /* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(150);
24152
- /* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(151);
24153
- /* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(152);
24154
- /* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(153);
24155
- /* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(154);
24156
- /* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(155);
24157
- /* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(156);
24158
- /* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(157);
24159
- /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(158);
24160
- /* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(159);
24161
- /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(160);
24162
- /* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(161);
24163
- /* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(162);
24164
- /* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(163);
24210
+ /* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(150);
24211
+ /* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(151);
24212
+ /* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(152);
24213
+ /* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(153);
24214
+ /* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(154);
24215
+ /* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(155);
24216
+ /* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(156);
24217
+ /* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(157);
24218
+ /* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(158);
24219
+ /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(159);
24220
+ /* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(160);
24221
+ /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(161);
24222
+ /* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(162);
24223
+ /* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(163);
24224
+ /* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(164);
24165
24225
 
24166
24226
 
24167
24227
 
@@ -24180,7 +24240,7 @@ __webpack_require__.r(__webpack_exports__);
24180
24240
 
24181
24241
 
24182
24242
  /***/ }),
24183
- /* 149 */
24243
+ /* 150 */
24184
24244
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24185
24245
 
24186
24246
  "use strict";
@@ -24242,7 +24302,7 @@ class LiquityOpenAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
24242
24302
 
24243
24303
 
24244
24304
  /***/ }),
24245
- /* 150 */
24305
+ /* 151 */
24246
24306
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24247
24307
 
24248
24308
  "use strict";
@@ -24282,7 +24342,7 @@ class LiquityBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
24282
24342
 
24283
24343
 
24284
24344
  /***/ }),
24285
- /* 151 */
24345
+ /* 152 */
24286
24346
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24287
24347
 
24288
24348
  "use strict";
@@ -24337,7 +24397,7 @@ class LiquityPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
24337
24397
 
24338
24398
 
24339
24399
  /***/ }),
24340
- /* 152 */
24400
+ /* 153 */
24341
24401
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24342
24402
 
24343
24403
  "use strict";
@@ -24392,7 +24452,7 @@ class LiquitySupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
24392
24452
 
24393
24453
 
24394
24454
  /***/ }),
24395
- /* 153 */
24455
+ /* 154 */
24396
24456
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24397
24457
 
24398
24458
  "use strict";
@@ -24430,7 +24490,7 @@ class LiquityWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
24430
24490
 
24431
24491
 
24432
24492
  /***/ }),
24433
- /* 154 */
24493
+ /* 155 */
24434
24494
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24435
24495
 
24436
24496
  "use strict";
@@ -24484,7 +24544,7 @@ class LiquityCloseAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
24484
24544
 
24485
24545
 
24486
24546
  /***/ }),
24487
- /* 155 */
24547
+ /* 156 */
24488
24548
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24489
24549
 
24490
24550
  "use strict";
@@ -24518,7 +24578,7 @@ class LiquityClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
24518
24578
 
24519
24579
 
24520
24580
  /***/ }),
24521
- /* 156 */
24581
+ /* 157 */
24522
24582
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24523
24583
 
24524
24584
  "use strict";
@@ -24581,7 +24641,7 @@ class LiquityRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
24581
24641
 
24582
24642
 
24583
24643
  /***/ }),
24584
- /* 157 */
24644
+ /* 158 */
24585
24645
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24586
24646
 
24587
24647
  "use strict";
@@ -24640,7 +24700,7 @@ class LiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
24640
24700
 
24641
24701
 
24642
24702
  /***/ }),
24643
- /* 158 */
24703
+ /* 159 */
24644
24704
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24645
24705
 
24646
24706
  "use strict";
@@ -24682,7 +24742,7 @@ class LiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
24682
24742
 
24683
24743
 
24684
24744
  /***/ }),
24685
- /* 159 */
24745
+ /* 160 */
24686
24746
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24687
24747
 
24688
24748
  "use strict";
@@ -24741,7 +24801,7 @@ class LiquityStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
24741
24801
 
24742
24802
 
24743
24803
  /***/ }),
24744
- /* 160 */
24804
+ /* 161 */
24745
24805
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24746
24806
 
24747
24807
  "use strict";
@@ -24783,7 +24843,7 @@ class LiquityUnstakeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
24783
24843
 
24784
24844
 
24785
24845
  /***/ }),
24786
- /* 161 */
24846
+ /* 162 */
24787
24847
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24788
24848
 
24789
24849
  "use strict";
@@ -24819,7 +24879,7 @@ class LiquityEthGainToTroveAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
24819
24879
 
24820
24880
 
24821
24881
  /***/ }),
24822
- /* 162 */
24882
+ /* 163 */
24823
24883
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24824
24884
 
24825
24885
  "use strict";
@@ -24827,7 +24887,7 @@ __webpack_require__.r(__webpack_exports__);
24827
24887
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
24828
24888
  /* harmony export */ "LiquityClaimSPRewardsAction": () => (/* binding */ LiquityClaimSPRewardsAction)
24829
24889
  /* harmony export */ });
24830
- /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(158);
24890
+ /* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(159);
24831
24891
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(67);
24832
24892
 
24833
24893
 
@@ -24850,7 +24910,7 @@ class LiquityClaimSPRewardsAction extends _LiquitySPWithdrawAction__WEBPACK_IMPO
24850
24910
 
24851
24911
 
24852
24912
  /***/ }),
24853
- /* 163 */
24913
+ /* 164 */
24854
24914
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24855
24915
 
24856
24916
  "use strict";
@@ -24858,7 +24918,7 @@ __webpack_require__.r(__webpack_exports__);
24858
24918
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
24859
24919
  /* harmony export */ "LiquityClaimStakingRewardsAction": () => (/* binding */ LiquityClaimStakingRewardsAction)
24860
24920
  /* harmony export */ });
24861
- /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(160);
24921
+ /* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(161);
24862
24922
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(67);
24863
24923
 
24864
24924
 
@@ -24881,7 +24941,7 @@ class LiquityClaimStakingRewardsAction extends _LiquityUnstakeAction__WEBPACK_IM
24881
24941
 
24882
24942
 
24883
24943
  /***/ }),
24884
- /* 164 */
24944
+ /* 165 */
24885
24945
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24886
24946
 
24887
24947
  "use strict";
@@ -24890,14 +24950,14 @@ __webpack_require__.r(__webpack_exports__);
24890
24950
  /* harmony export */ "YearnSupplyAction": () => (/* reexport safe */ _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__.YearnSupplyAction),
24891
24951
  /* harmony export */ "YearnWithdrawAction": () => (/* reexport safe */ _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.YearnWithdrawAction)
24892
24952
  /* harmony export */ });
24893
- /* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(165);
24894
- /* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(166);
24953
+ /* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(166);
24954
+ /* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(167);
24895
24955
 
24896
24956
 
24897
24957
 
24898
24958
 
24899
24959
  /***/ }),
24900
- /* 165 */
24960
+ /* 166 */
24901
24961
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24902
24962
 
24903
24963
  "use strict";
@@ -24956,7 +25016,7 @@ class YearnSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
24956
25016
 
24957
25017
 
24958
25018
  /***/ }),
24959
- /* 166 */
25019
+ /* 167 */
24960
25020
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24961
25021
 
24962
25022
  "use strict";
@@ -25015,7 +25075,7 @@ class YearnWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
25015
25075
 
25016
25076
 
25017
25077
  /***/ }),
25018
- /* 167 */
25078
+ /* 168 */
25019
25079
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25020
25080
 
25021
25081
  "use strict";
@@ -25025,16 +25085,16 @@ __webpack_require__.r(__webpack_exports__);
25025
25085
  /* harmony export */ "LidoUnwrapAction": () => (/* reexport safe */ _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__.LidoUnwrapAction),
25026
25086
  /* harmony export */ "LidoWrapAction": () => (/* reexport safe */ _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__.LidoWrapAction)
25027
25087
  /* harmony export */ });
25028
- /* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(168);
25029
- /* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(169);
25030
- /* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(170);
25088
+ /* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(169);
25089
+ /* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(170);
25090
+ /* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(171);
25031
25091
 
25032
25092
 
25033
25093
 
25034
25094
 
25035
25095
 
25036
25096
  /***/ }),
25037
- /* 168 */
25097
+ /* 169 */
25038
25098
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25039
25099
 
25040
25100
  "use strict";
@@ -25084,7 +25144,7 @@ class LidoStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
25084
25144
 
25085
25145
 
25086
25146
  /***/ }),
25087
- /* 169 */
25147
+ /* 170 */
25088
25148
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25089
25149
 
25090
25150
  "use strict";
@@ -25143,7 +25203,7 @@ class LidoWrapAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
25143
25203
 
25144
25204
 
25145
25205
  /***/ }),
25146
- /* 170 */
25206
+ /* 171 */
25147
25207
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25148
25208
 
25149
25209
  "use strict";
@@ -25190,7 +25250,7 @@ class LidoUnwrapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
25190
25250
 
25191
25251
 
25192
25252
  /***/ }),
25193
- /* 171 */
25253
+ /* 172 */
25194
25254
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25195
25255
 
25196
25256
  "use strict";
@@ -25198,12 +25258,12 @@ __webpack_require__.r(__webpack_exports__);
25198
25258
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
25199
25259
  /* harmony export */ "InstPullTokensAction": () => (/* reexport safe */ _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__.InstPullTokensAction)
25200
25260
  /* harmony export */ });
25201
- /* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(172);
25261
+ /* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(173);
25202
25262
 
25203
25263
 
25204
25264
 
25205
25265
  /***/ }),
25206
- /* 172 */
25266
+ /* 173 */
25207
25267
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25208
25268
 
25209
25269
  "use strict";
@@ -25253,7 +25313,7 @@ class InstPullTokensAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
25253
25313
 
25254
25314
 
25255
25315
  /***/ }),
25256
- /* 173 */
25316
+ /* 174 */
25257
25317
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25258
25318
 
25259
25319
  "use strict";
@@ -25263,16 +25323,16 @@ __webpack_require__.r(__webpack_exports__);
25263
25323
  /* harmony export */ "BalancerV2SupplyAction": () => (/* reexport safe */ _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__.BalancerV2SupplyAction),
25264
25324
  /* harmony export */ "BalancerV2WithdrawAction": () => (/* reexport safe */ _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BalancerV2WithdrawAction)
25265
25325
  /* harmony export */ });
25266
- /* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(174);
25267
- /* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(175);
25268
- /* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(176);
25326
+ /* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(175);
25327
+ /* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(176);
25328
+ /* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(177);
25269
25329
 
25270
25330
 
25271
25331
 
25272
25332
 
25273
25333
 
25274
25334
  /***/ }),
25275
- /* 174 */
25335
+ /* 175 */
25276
25336
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25277
25337
 
25278
25338
  "use strict";
@@ -25338,7 +25398,7 @@ class BalancerV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
25338
25398
 
25339
25399
 
25340
25400
  /***/ }),
25341
- /* 175 */
25401
+ /* 176 */
25342
25402
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25343
25403
 
25344
25404
  "use strict";
@@ -25408,7 +25468,7 @@ class BalancerV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
25408
25468
 
25409
25469
 
25410
25470
  /***/ }),
25411
- /* 176 */
25471
+ /* 177 */
25412
25472
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25413
25473
 
25414
25474
  "use strict";
@@ -25471,7 +25531,7 @@ class BalancerV2ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
25471
25531
 
25472
25532
 
25473
25533
  /***/ }),
25474
- /* 177 */
25534
+ /* 178 */
25475
25535
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25476
25536
 
25477
25537
  "use strict";
@@ -25487,15 +25547,15 @@ __webpack_require__.r(__webpack_exports__);
25487
25547
  /* harmony export */ "CurveSwapAction": () => (/* reexport safe */ _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__.CurveSwapAction),
25488
25548
  /* harmony export */ "CurveWithdrawAction": () => (/* reexport safe */ _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveWithdrawAction)
25489
25549
  /* harmony export */ });
25490
- /* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(178);
25491
- /* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(179);
25492
- /* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(182);
25493
- /* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(183);
25494
- /* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(184);
25495
- /* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(185);
25496
- /* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(186);
25497
- /* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(187);
25498
- /* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(188);
25550
+ /* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(179);
25551
+ /* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(180);
25552
+ /* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(183);
25553
+ /* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(184);
25554
+ /* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(185);
25555
+ /* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(186);
25556
+ /* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(187);
25557
+ /* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(188);
25558
+ /* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(189);
25499
25559
 
25500
25560
 
25501
25561
 
@@ -25508,7 +25568,7 @@ __webpack_require__.r(__webpack_exports__);
25508
25568
 
25509
25569
 
25510
25570
  /***/ }),
25511
- /* 178 */
25571
+ /* 179 */
25512
25572
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25513
25573
 
25514
25574
  "use strict";
@@ -25565,7 +25625,7 @@ class CurveSwapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
25565
25625
 
25566
25626
 
25567
25627
  /***/ }),
25568
- /* 179 */
25628
+ /* 180 */
25569
25629
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25570
25630
 
25571
25631
  "use strict";
@@ -25578,7 +25638,7 @@ __webpack_require__.r(__webpack_exports__);
25578
25638
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(31);
25579
25639
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(67);
25580
25640
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(55);
25581
- /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(180);
25641
+ /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(181);
25582
25642
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
25583
25643
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
25584
25644
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -25660,7 +25720,7 @@ class CurveDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
25660
25720
 
25661
25721
 
25662
25722
  /***/ }),
25663
- /* 180 */
25723
+ /* 181 */
25664
25724
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25665
25725
 
25666
25726
  "use strict";
@@ -25669,7 +25729,7 @@ __webpack_require__.r(__webpack_exports__);
25669
25729
  /* harmony export */ "makeFlags": () => (/* binding */ makeFlags),
25670
25730
  /* harmony export */ "poolInfo": () => (/* reexport default export from named module */ _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
25671
25731
  /* harmony export */ });
25672
- /* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(181);
25732
+ /* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(182);
25673
25733
 
25674
25734
 
25675
25735
  /**
@@ -25680,14 +25740,14 @@ const makeFlags = (depositTargetType, explicitUnderlying, withdrawExact, removeO
25680
25740
 
25681
25741
 
25682
25742
  /***/ }),
25683
- /* 181 */
25743
+ /* 182 */
25684
25744
  /***/ ((module) => {
25685
25745
 
25686
25746
  "use strict";
25687
25747
  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}]');
25688
25748
 
25689
25749
  /***/ }),
25690
- /* 182 */
25750
+ /* 183 */
25691
25751
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25692
25752
 
25693
25753
  "use strict";
@@ -25698,7 +25758,7 @@ __webpack_require__.r(__webpack_exports__);
25698
25758
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
25699
25759
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(67);
25700
25760
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(55);
25701
- /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(180);
25761
+ /* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(181);
25702
25762
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
25703
25763
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
25704
25764
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -25775,7 +25835,7 @@ class CurveWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
25775
25835
 
25776
25836
 
25777
25837
  /***/ }),
25778
- /* 183 */
25838
+ /* 184 */
25779
25839
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25780
25840
 
25781
25841
  "use strict";
@@ -25829,7 +25889,7 @@ class CurveGaugeDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
25829
25889
 
25830
25890
 
25831
25891
  /***/ }),
25832
- /* 184 */
25892
+ /* 185 */
25833
25893
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25834
25894
 
25835
25895
  "use strict";
@@ -25865,7 +25925,7 @@ class CurveGaugeWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
25865
25925
 
25866
25926
 
25867
25927
  /***/ }),
25868
- /* 185 */
25928
+ /* 186 */
25869
25929
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25870
25930
 
25871
25931
  "use strict";
@@ -25898,7 +25958,7 @@ class CurveMintCrvAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
25898
25958
 
25899
25959
 
25900
25960
  /***/ }),
25901
- /* 186 */
25961
+ /* 187 */
25902
25962
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25903
25963
 
25904
25964
  "use strict";
@@ -25934,7 +25994,7 @@ class CurveClaimFeesAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
25934
25994
 
25935
25995
 
25936
25996
  /***/ }),
25937
- /* 187 */
25997
+ /* 188 */
25938
25998
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25939
25999
 
25940
26000
  "use strict";
@@ -25975,7 +26035,7 @@ class CurveStethPoolDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
25975
26035
 
25976
26036
 
25977
26037
  /***/ }),
25978
- /* 188 */
26038
+ /* 189 */
25979
26039
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
25980
26040
 
25981
26041
  "use strict";
@@ -26017,7 +26077,7 @@ class CurveStethPoolWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.
26017
26077
 
26018
26078
 
26019
26079
  /***/ }),
26020
- /* 189 */
26080
+ /* 190 */
26021
26081
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26022
26082
 
26023
26083
  "use strict";
@@ -26026,14 +26086,14 @@ __webpack_require__.r(__webpack_exports__);
26026
26086
  /* harmony export */ "GUniDeposit": () => (/* reexport safe */ _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__.GUniDeposit),
26027
26087
  /* harmony export */ "GUniWithdraw": () => (/* reexport safe */ _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__.GUniWithdraw)
26028
26088
  /* harmony export */ });
26029
- /* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(190);
26030
- /* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(191);
26089
+ /* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(191);
26090
+ /* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(192);
26031
26091
 
26032
26092
 
26033
26093
 
26034
26094
 
26035
26095
  /***/ }),
26036
- /* 190 */
26096
+ /* 191 */
26037
26097
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26038
26098
 
26039
26099
  "use strict";
@@ -26094,7 +26154,7 @@ class GUniDeposit extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26094
26154
 
26095
26155
 
26096
26156
  /***/ }),
26097
- /* 191 */
26157
+ /* 192 */
26098
26158
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26099
26159
 
26100
26160
  "use strict";
@@ -26147,7 +26207,7 @@ class GUniWithdraw extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26147
26207
 
26148
26208
 
26149
26209
  /***/ }),
26150
- /* 192 */
26210
+ /* 193 */
26151
26211
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26152
26212
 
26153
26213
  "use strict";
@@ -26157,16 +26217,16 @@ __webpack_require__.r(__webpack_exports__);
26157
26217
  /* harmony export */ "MStableDepositAction": () => (/* reexport safe */ _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__.MStableDepositAction),
26158
26218
  /* harmony export */ "MStableWithdrawAction": () => (/* reexport safe */ _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.MStableWithdrawAction)
26159
26219
  /* harmony export */ });
26160
- /* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(193);
26161
- /* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(195);
26162
- /* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(196);
26220
+ /* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(194);
26221
+ /* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(196);
26222
+ /* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(197);
26163
26223
 
26164
26224
 
26165
26225
 
26166
26226
 
26167
26227
 
26168
26228
  /***/ }),
26169
- /* 193 */
26229
+ /* 194 */
26170
26230
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26171
26231
 
26172
26232
  "use strict";
@@ -26177,7 +26237,7 @@ __webpack_require__.r(__webpack_exports__);
26177
26237
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
26178
26238
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(67);
26179
26239
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(55);
26180
- /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(194);
26240
+ /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(195);
26181
26241
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
26182
26242
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
26183
26243
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -26256,7 +26316,7 @@ class MStableDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26256
26316
 
26257
26317
 
26258
26318
  /***/ }),
26259
- /* 194 */
26319
+ /* 195 */
26260
26320
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26261
26321
 
26262
26322
  "use strict";
@@ -26275,7 +26335,7 @@ __webpack_require__.r(__webpack_exports__);
26275
26335
 
26276
26336
 
26277
26337
  /***/ }),
26278
- /* 195 */
26338
+ /* 196 */
26279
26339
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26280
26340
 
26281
26341
  "use strict";
@@ -26286,7 +26346,7 @@ __webpack_require__.r(__webpack_exports__);
26286
26346
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
26287
26347
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(67);
26288
26348
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(55);
26289
- /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(194);
26349
+ /* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(195);
26290
26350
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
26291
26351
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
26292
26352
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -26364,7 +26424,7 @@ class MStableWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
26364
26424
 
26365
26425
 
26366
26426
  /***/ }),
26367
- /* 196 */
26427
+ /* 197 */
26368
26428
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26369
26429
 
26370
26430
  "use strict";
@@ -26403,7 +26463,7 @@ class MStableClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26403
26463
 
26404
26464
 
26405
26465
  /***/ }),
26406
- /* 197 */
26466
+ /* 198 */
26407
26467
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26408
26468
 
26409
26469
  "use strict";
@@ -26412,14 +26472,14 @@ __webpack_require__.r(__webpack_exports__);
26412
26472
  /* harmony export */ "RariDepositAction": () => (/* reexport safe */ _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__.RariDepositAction),
26413
26473
  /* harmony export */ "RariWithdrawAction": () => (/* reexport safe */ _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.RariWithdrawAction)
26414
26474
  /* harmony export */ });
26415
- /* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(198);
26416
- /* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(199);
26475
+ /* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(199);
26476
+ /* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(200);
26417
26477
 
26418
26478
 
26419
26479
 
26420
26480
 
26421
26481
  /***/ }),
26422
- /* 198 */
26482
+ /* 199 */
26423
26483
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26424
26484
 
26425
26485
  "use strict";
@@ -26474,7 +26534,7 @@ class RariDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26474
26534
 
26475
26535
 
26476
26536
  /***/ }),
26477
- /* 199 */
26537
+ /* 200 */
26478
26538
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26479
26539
 
26480
26540
  "use strict";
@@ -26531,7 +26591,7 @@ class RariWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
26531
26591
 
26532
26592
 
26533
26593
  /***/ }),
26534
- /* 200 */
26594
+ /* 201 */
26535
26595
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26536
26596
 
26537
26597
  "use strict";
@@ -26547,15 +26607,15 @@ __webpack_require__.r(__webpack_exports__);
26547
26607
  /* harmony export */ "AaveV3SwapBorrowRateModeAction": () => (/* reexport safe */ _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.AaveV3SwapBorrowRateModeAction),
26548
26608
  /* harmony export */ "AaveV3WithdrawAction": () => (/* reexport safe */ _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.AaveV3WithdrawAction)
26549
26609
  /* harmony export */ });
26550
- /* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(201);
26551
- /* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(202);
26552
- /* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(203);
26553
- /* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(204);
26554
- /* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(205);
26555
- /* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(206);
26556
- /* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(207);
26557
- /* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(208);
26558
- /* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(209);
26610
+ /* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(202);
26611
+ /* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(203);
26612
+ /* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(204);
26613
+ /* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(205);
26614
+ /* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(206);
26615
+ /* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(207);
26616
+ /* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(208);
26617
+ /* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(209);
26618
+ /* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(210);
26559
26619
 
26560
26620
 
26561
26621
 
@@ -26568,7 +26628,7 @@ __webpack_require__.r(__webpack_exports__);
26568
26628
 
26569
26629
 
26570
26630
  /***/ }),
26571
- /* 201 */
26631
+ /* 202 */
26572
26632
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26573
26633
 
26574
26634
  "use strict";
@@ -26660,7 +26720,7 @@ class AaveV3SupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
26660
26720
 
26661
26721
 
26662
26722
  /***/ }),
26663
- /* 202 */
26723
+ /* 203 */
26664
26724
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26665
26725
 
26666
26726
  "use strict";
@@ -26733,7 +26793,7 @@ class AaveV3BorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Acti
26733
26793
 
26734
26794
 
26735
26795
  /***/ }),
26736
- /* 203 */
26796
+ /* 204 */
26737
26797
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26738
26798
 
26739
26799
  "use strict";
@@ -26825,7 +26885,7 @@ class AaveV3PaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Act
26825
26885
 
26826
26886
 
26827
26887
  /***/ }),
26828
- /* 204 */
26888
+ /* 205 */
26829
26889
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26830
26890
 
26831
26891
  "use strict";
@@ -26884,7 +26944,7 @@ class AaveV3WithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
26884
26944
 
26885
26945
 
26886
26946
  /***/ }),
26887
- /* 205 */
26947
+ /* 206 */
26888
26948
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26889
26949
 
26890
26950
  "use strict";
@@ -26930,7 +26990,7 @@ class AaveV3SetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
26930
26990
 
26931
26991
 
26932
26992
  /***/ }),
26933
- /* 206 */
26993
+ /* 207 */
26934
26994
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
26935
26995
 
26936
26996
  "use strict";
@@ -27009,7 +27069,7 @@ class AaveV3ATokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
27009
27069
 
27010
27070
 
27011
27071
  /***/ }),
27012
- /* 207 */
27072
+ /* 208 */
27013
27073
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27014
27074
 
27015
27075
  "use strict";
@@ -27061,7 +27121,7 @@ class AaveV3CollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODUL
27061
27121
 
27062
27122
 
27063
27123
  /***/ }),
27064
- /* 208 */
27124
+ /* 209 */
27065
27125
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27066
27126
 
27067
27127
  "use strict";
@@ -27115,7 +27175,7 @@ class AaveV3ClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0_
27115
27175
 
27116
27176
 
27117
27177
  /***/ }),
27118
- /* 209 */
27178
+ /* 210 */
27119
27179
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27120
27180
 
27121
27181
  "use strict";
@@ -27166,7 +27226,7 @@ class AaveV3SwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MOD
27166
27226
 
27167
27227
 
27168
27228
  /***/ }),
27169
- /* 210 */
27229
+ /* 211 */
27170
27230
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27171
27231
 
27172
27232
  "use strict";
@@ -27176,16 +27236,16 @@ __webpack_require__.r(__webpack_exports__);
27176
27236
  /* harmony export */ "ConvexDepositAction": () => (/* reexport safe */ _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__.ConvexDepositAction),
27177
27237
  /* harmony export */ "ConvexWithdrawAction": () => (/* reexport safe */ _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.ConvexWithdrawAction)
27178
27238
  /* harmony export */ });
27179
- /* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(211);
27180
- /* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(214);
27181
- /* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(215);
27239
+ /* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(212);
27240
+ /* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(215);
27241
+ /* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(216);
27182
27242
 
27183
27243
 
27184
27244
 
27185
27245
 
27186
27246
 
27187
27247
  /***/ }),
27188
- /* 211 */
27248
+ /* 212 */
27189
27249
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27190
27250
 
27191
27251
  "use strict";
@@ -27195,7 +27255,7 @@ __webpack_require__.r(__webpack_exports__);
27195
27255
  /* harmony export */ });
27196
27256
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
27197
27257
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
27198
- /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(212);
27258
+ /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(213);
27199
27259
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(67);
27200
27260
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
27201
27261
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -27266,7 +27326,7 @@ class ConvexDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27266
27326
 
27267
27327
 
27268
27328
  /***/ }),
27269
- /* 212 */
27329
+ /* 213 */
27270
27330
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27271
27331
 
27272
27332
  "use strict";
@@ -27277,7 +27337,7 @@ __webpack_require__.r(__webpack_exports__);
27277
27337
  /* harmony export */ "getConvexPool": () => (/* binding */ getConvexPool),
27278
27338
  /* harmony export */ "poolInfo": () => (/* reexport default export from named module */ _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
27279
27339
  /* harmony export */ });
27280
- /* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(213);
27340
+ /* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(214);
27281
27341
 
27282
27342
 
27283
27343
  /** Deposit options. */
@@ -27297,14 +27357,14 @@ const getConvexPool = (curveLpToken) => _convexPoolInfo_json__WEBPACK_IMPORTED_M
27297
27357
 
27298
27358
 
27299
27359
  /***/ }),
27300
- /* 213 */
27360
+ /* 214 */
27301
27361
  /***/ ((module) => {
27302
27362
 
27303
27363
  "use strict";
27304
27364
  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}]');
27305
27365
 
27306
27366
  /***/ }),
27307
- /* 214 */
27367
+ /* 215 */
27308
27368
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27309
27369
 
27310
27370
  "use strict";
@@ -27314,7 +27374,7 @@ __webpack_require__.r(__webpack_exports__);
27314
27374
  /* harmony export */ });
27315
27375
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
27316
27376
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
27317
- /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(212);
27377
+ /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(213);
27318
27378
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(67);
27319
27379
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
27320
27380
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -27382,7 +27442,7 @@ class ConvexWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27382
27442
 
27383
27443
 
27384
27444
  /***/ }),
27385
- /* 215 */
27445
+ /* 216 */
27386
27446
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27387
27447
 
27388
27448
  "use strict";
@@ -27392,7 +27452,7 @@ __webpack_require__.r(__webpack_exports__);
27392
27452
  /* harmony export */ });
27393
27453
  /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
27394
27454
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
27395
- /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(212);
27455
+ /* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(213);
27396
27456
  /* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(67);
27397
27457
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
27398
27458
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -27456,7 +27516,7 @@ class ConvexClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27456
27516
 
27457
27517
 
27458
27518
  /***/ }),
27459
- /* 216 */
27519
+ /* 217 */
27460
27520
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27461
27521
 
27462
27522
  "use strict";
@@ -27465,12 +27525,21 @@ __webpack_require__.r(__webpack_exports__);
27465
27525
  /* harmony export */ "CBChickenInAction": () => (/* reexport safe */ _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__.CBChickenInAction),
27466
27526
  /* harmony export */ "CBChickenOutAction": () => (/* reexport safe */ _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__.CBChickenOutAction),
27467
27527
  /* harmony export */ "CBCreateAction": () => (/* reexport safe */ _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__.CBCreateAction),
27468
- /* harmony export */ "CBRedeemAction": () => (/* reexport safe */ _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__.CBRedeemAction)
27528
+ /* harmony export */ "CBCreateRebondSubAction": () => (/* reexport safe */ _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__.CBCreateRebondSubAction),
27529
+ /* harmony export */ "CBRedeemAction": () => (/* reexport safe */ _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__.CBRedeemAction),
27530
+ /* harmony export */ "CBUpdateRebondSubAction": () => (/* reexport safe */ _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__.CBUpdateRebondSubAction),
27531
+ /* harmony export */ "FetchBondIdAction": () => (/* reexport safe */ _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__.FetchBondIdAction)
27469
27532
  /* harmony export */ });
27470
- /* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(217);
27471
- /* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(218);
27472
- /* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(219);
27473
- /* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(220);
27533
+ /* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(218);
27534
+ /* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(219);
27535
+ /* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(220);
27536
+ /* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(221);
27537
+ /* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(222);
27538
+ /* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(223);
27539
+ /* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(224);
27540
+
27541
+
27542
+
27474
27543
 
27475
27544
 
27476
27545
 
@@ -27478,7 +27547,7 @@ __webpack_require__.r(__webpack_exports__);
27478
27547
 
27479
27548
 
27480
27549
  /***/ }),
27481
- /* 217 */
27550
+ /* 218 */
27482
27551
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27483
27552
 
27484
27553
  "use strict";
@@ -27524,7 +27593,7 @@ class CBCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27524
27593
 
27525
27594
 
27526
27595
  /***/ }),
27527
- /* 218 */
27596
+ /* 219 */
27528
27597
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27529
27598
 
27530
27599
  "use strict";
@@ -27556,7 +27625,7 @@ class CBChickenInAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27556
27625
 
27557
27626
 
27558
27627
  /***/ }),
27559
- /* 219 */
27628
+ /* 220 */
27560
27629
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27561
27630
 
27562
27631
  "use strict";
@@ -27589,7 +27658,7 @@ class CBChickenOutAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27589
27658
 
27590
27659
 
27591
27660
  /***/ }),
27592
- /* 220 */
27661
+ /* 221 */
27593
27662
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27594
27663
 
27595
27664
  "use strict";
@@ -27638,7 +27707,101 @@ class CBRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27638
27707
 
27639
27708
 
27640
27709
  /***/ }),
27641
- /* 221 */
27710
+ /* 222 */
27711
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27712
+
27713
+ "use strict";
27714
+ __webpack_require__.r(__webpack_exports__);
27715
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27716
+ /* harmony export */ "CBUpdateRebondSubAction": () => (/* binding */ CBUpdateRebondSubAction)
27717
+ /* harmony export */ });
27718
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
27719
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
27720
+
27721
+
27722
+ /**
27723
+ * CBUpdateRebondSubAction - Updates rebond strategy subscription
27724
+ *
27725
+ * @category ChickenBonds
27726
+ */
27727
+ class CBUpdateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27728
+ /**
27729
+ * @param subId {string} Id of the subscription to update
27730
+ * @param bondId {string} Id of the bond in the strategy
27731
+ */
27732
+ constructor(subId, bondId) {
27733
+ super('CBUpdateRebondSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CBUpdateRebondSub'), ['uint256', 'uint256'], [subId, bondId]);
27734
+ }
27735
+ }
27736
+
27737
+
27738
+ /***/ }),
27739
+ /* 223 */
27740
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27741
+
27742
+ "use strict";
27743
+ __webpack_require__.r(__webpack_exports__);
27744
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27745
+ /* harmony export */ "FetchBondIdAction": () => (/* binding */ FetchBondIdAction)
27746
+ /* harmony export */ });
27747
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
27748
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
27749
+
27750
+
27751
+ /**
27752
+ * FetchBondIdAction - action that retrieves CB BondId from a hashed strategy
27753
+ *
27754
+ * @category ChickenBonds
27755
+ */
27756
+ class FetchBondIdAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27757
+ /**
27758
+ * @param paybackSourceId
27759
+ * @param sourceType
27760
+ * @param cbRebondBondId
27761
+ */
27762
+ constructor(paybackSourceId, sourceType, cbRebondBondId) {
27763
+ super('FetchBondId', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('FetchBondId'), ['uint256', 'uint256', 'uint256'], [paybackSourceId, sourceType, cbRebondBondId]);
27764
+ this.mappableArgs = [
27765
+ this.args[0],
27766
+ this.args[1],
27767
+ ];
27768
+ }
27769
+ }
27770
+
27771
+
27772
+ /***/ }),
27773
+ /* 224 */
27774
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27775
+
27776
+ "use strict";
27777
+ __webpack_require__.r(__webpack_exports__);
27778
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
27779
+ /* harmony export */ "CBCreateRebondSubAction": () => (/* binding */ CBCreateRebondSubAction)
27780
+ /* harmony export */ });
27781
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
27782
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
27783
+
27784
+
27785
+ /**
27786
+ * CBCreateRebondSubAction - Subscribes to CB Rebond Strategy
27787
+ *
27788
+ * @category ChickenBonds
27789
+ */
27790
+ class CBCreateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
27791
+ /**
27792
+ * @param bondId {string} Id of the bond in the strategy
27793
+ */
27794
+ constructor(bondId) {
27795
+ super('CBCreateRebondSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CBCreateRebondSub'), ['uint256'], [bondId]);
27796
+ this.mappableArgs = [
27797
+ this.args[0],
27798
+ ];
27799
+ }
27800
+ }
27801
+
27802
+
27803
+ /***/ }),
27804
+ /* 225 */
27642
27805
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27643
27806
 
27644
27807
  "use strict";
@@ -27652,13 +27815,13 @@ __webpack_require__.r(__webpack_exports__);
27652
27815
  /* harmony export */ "CompoundV3TransferAction": () => (/* reexport safe */ _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__.CompoundV3TransferAction),
27653
27816
  /* harmony export */ "CompoundV3WithdrawAction": () => (/* reexport safe */ _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.CompoundV3WithdrawAction)
27654
27817
  /* harmony export */ });
27655
- /* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(222);
27656
- /* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(223);
27657
- /* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(224);
27658
- /* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(225);
27659
- /* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(226);
27660
- /* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(227);
27661
- /* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(228);
27818
+ /* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(226);
27819
+ /* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(227);
27820
+ /* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(228);
27821
+ /* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(229);
27822
+ /* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(230);
27823
+ /* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(231);
27824
+ /* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(232);
27662
27825
 
27663
27826
 
27664
27827
 
@@ -27669,7 +27832,7 @@ __webpack_require__.r(__webpack_exports__);
27669
27832
 
27670
27833
 
27671
27834
  /***/ }),
27672
- /* 222 */
27835
+ /* 226 */
27673
27836
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27674
27837
 
27675
27838
  "use strict";
@@ -27729,7 +27892,7 @@ class CompoundV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
27729
27892
 
27730
27893
 
27731
27894
  /***/ }),
27732
- /* 223 */
27895
+ /* 227 */
27733
27896
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27734
27897
 
27735
27898
  "use strict";
@@ -27769,7 +27932,7 @@ class CompoundV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
27769
27932
 
27770
27933
 
27771
27934
  /***/ }),
27772
- /* 224 */
27935
+ /* 228 */
27773
27936
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27774
27937
 
27775
27938
  "use strict";
@@ -27833,7 +27996,7 @@ class CompoundV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Actio
27833
27996
 
27834
27997
 
27835
27998
  /***/ }),
27836
- /* 225 */
27999
+ /* 229 */
27837
28000
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27838
28001
 
27839
28002
  "use strict";
@@ -27876,7 +28039,7 @@ class CompoundV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
27876
28039
 
27877
28040
 
27878
28041
  /***/ }),
27879
- /* 226 */
28042
+ /* 230 */
27880
28043
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27881
28044
 
27882
28045
  "use strict";
@@ -27917,7 +28080,7 @@ class CompoundV3ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
27917
28080
 
27918
28081
 
27919
28082
  /***/ }),
27920
- /* 227 */
28083
+ /* 231 */
27921
28084
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27922
28085
 
27923
28086
  "use strict";
@@ -27955,7 +28118,7 @@ class CompoundV3AllowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
27955
28118
 
27956
28119
 
27957
28120
  /***/ }),
27958
- /* 228 */
28121
+ /* 232 */
27959
28122
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
27960
28123
 
27961
28124
  "use strict";
@@ -27999,13 +28162,15 @@ class CompoundV3TransferAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
27999
28162
 
28000
28163
 
28001
28164
  /***/ }),
28002
- /* 229 */
28165
+ /* 233 */
28003
28166
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28004
28167
 
28005
28168
  "use strict";
28006
28169
  __webpack_require__.r(__webpack_exports__);
28007
28170
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
28171
+ /* harmony export */ "AaveV3QuotePriceTrigger": () => (/* reexport safe */ _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__.AaveV3QuotePriceTrigger),
28008
28172
  /* harmony export */ "AaveV3RatioTrigger": () => (/* reexport safe */ _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__.AaveV3RatioTrigger),
28173
+ /* harmony export */ "CBRebondTrigger": () => (/* reexport safe */ _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__.CBRebondTrigger),
28009
28174
  /* harmony export */ "ChainLinkPriceTrigger": () => (/* reexport safe */ _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__.ChainLinkPriceTrigger),
28010
28175
  /* harmony export */ "CompV3RatioTrigger": () => (/* reexport safe */ _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__.CompV3RatioTrigger),
28011
28176
  /* harmony export */ "CompoundRatioTrigger": () => (/* reexport safe */ _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__.CompoundRatioTrigger),
@@ -28017,17 +28182,21 @@ __webpack_require__.r(__webpack_exports__);
28017
28182
  /* harmony export */ "TrailingStopTrigger": () => (/* reexport safe */ _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__.TrailingStopTrigger),
28018
28183
  /* harmony export */ "UniV3CurrentTickTrigger": () => (/* reexport safe */ _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__.UniV3CurrentTickTrigger)
28019
28184
  /* harmony export */ });
28020
- /* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(230);
28021
- /* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(231);
28022
- /* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(232);
28023
- /* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(233);
28024
- /* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(234);
28025
- /* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(235);
28026
- /* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(236);
28027
- /* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(237);
28028
- /* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(238);
28029
- /* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(239);
28030
- /* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(240);
28185
+ /* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(234);
28186
+ /* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(235);
28187
+ /* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(236);
28188
+ /* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(237);
28189
+ /* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(238);
28190
+ /* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(239);
28191
+ /* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(240);
28192
+ /* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(241);
28193
+ /* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(242);
28194
+ /* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(243);
28195
+ /* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(244);
28196
+ /* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(245);
28197
+ /* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(246);
28198
+
28199
+
28031
28200
 
28032
28201
 
28033
28202
 
@@ -28042,7 +28211,7 @@ __webpack_require__.r(__webpack_exports__);
28042
28211
 
28043
28212
 
28044
28213
  /***/ }),
28045
- /* 230 */
28214
+ /* 234 */
28046
28215
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28047
28216
 
28048
28217
  "use strict";
@@ -28067,7 +28236,7 @@ class MakerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28067
28236
 
28068
28237
 
28069
28238
  /***/ }),
28070
- /* 231 */
28239
+ /* 235 */
28071
28240
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28072
28241
 
28073
28242
  "use strict";
@@ -28092,7 +28261,7 @@ class ChainLinkPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
28092
28261
 
28093
28262
 
28094
28263
  /***/ }),
28095
- /* 232 */
28264
+ /* 236 */
28096
28265
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28097
28266
 
28098
28267
  "use strict";
@@ -28117,7 +28286,7 @@ class UniV3CurrentTickTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
28117
28286
 
28118
28287
 
28119
28288
  /***/ }),
28120
- /* 233 */
28289
+ /* 237 */
28121
28290
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28122
28291
 
28123
28292
  "use strict";
@@ -28142,7 +28311,7 @@ class TimestampTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28142
28311
 
28143
28312
 
28144
28313
  /***/ }),
28145
- /* 234 */
28314
+ /* 238 */
28146
28315
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28147
28316
 
28148
28317
  "use strict";
@@ -28167,7 +28336,7 @@ class GasPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28167
28336
 
28168
28337
 
28169
28338
  /***/ }),
28170
- /* 235 */
28339
+ /* 239 */
28171
28340
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28172
28341
 
28173
28342
  "use strict";
@@ -28192,7 +28361,7 @@ class CompoundRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28192
28361
 
28193
28362
 
28194
28363
  /***/ }),
28195
- /* 236 */
28364
+ /* 240 */
28196
28365
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28197
28366
 
28198
28367
  "use strict";
@@ -28217,7 +28386,7 @@ class ReflexerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28217
28386
 
28218
28387
 
28219
28388
  /***/ }),
28220
- /* 237 */
28389
+ /* 241 */
28221
28390
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28222
28391
 
28223
28392
  "use strict";
@@ -28242,7 +28411,7 @@ class LiquityRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28242
28411
 
28243
28412
 
28244
28413
  /***/ }),
28245
- /* 238 */
28414
+ /* 242 */
28246
28415
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28247
28416
 
28248
28417
  "use strict";
@@ -28267,7 +28436,7 @@ class AaveV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28267
28436
 
28268
28437
 
28269
28438
  /***/ }),
28270
- /* 239 */
28439
+ /* 243 */
28271
28440
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28272
28441
 
28273
28442
  "use strict";
@@ -28292,7 +28461,7 @@ class CompV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28292
28461
 
28293
28462
 
28294
28463
  /***/ }),
28295
- /* 240 */
28464
+ /* 244 */
28296
28465
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28297
28466
 
28298
28467
  "use strict";
@@ -28317,7 +28486,57 @@ class TrailingStopTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28317
28486
 
28318
28487
 
28319
28488
  /***/ }),
28320
- /* 241 */
28489
+ /* 245 */
28490
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28491
+
28492
+ "use strict";
28493
+ __webpack_require__.r(__webpack_exports__);
28494
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
28495
+ /* harmony export */ "CBRebondTrigger": () => (/* binding */ CBRebondTrigger)
28496
+ /* harmony export */ });
28497
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
28498
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
28499
+
28500
+
28501
+ /**
28502
+ *
28503
+ *
28504
+ * @category Triggers
28505
+ */
28506
+ class CBRebondTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28507
+ constructor(bondID) {
28508
+ super('CBRebondTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CBRebondTrigger'), ['uint256'], [bondID]);
28509
+ }
28510
+ }
28511
+
28512
+
28513
+ /***/ }),
28514
+ /* 246 */
28515
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28516
+
28517
+ "use strict";
28518
+ __webpack_require__.r(__webpack_exports__);
28519
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
28520
+ /* harmony export */ "AaveV3QuotePriceTrigger": () => (/* binding */ AaveV3QuotePriceTrigger)
28521
+ /* harmony export */ });
28522
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(31);
28523
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
28524
+
28525
+
28526
+ /**
28527
+ *
28528
+ *
28529
+ * @category Triggers
28530
+ */
28531
+ class AaveV3QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
28532
+ constructor(baseTokenAddr, quoteTokenAddr, price, state) {
28533
+ super('AaveV3QuotePriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('AaveV3QuotePriceTrigger'), [['address', 'address', 'uint256', 'uint8']], [[baseTokenAddr, quoteTokenAddr, price, state]]);
28534
+ }
28535
+ }
28536
+
28537
+
28538
+ /***/ }),
28539
+ /* 247 */
28321
28540
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28322
28541
 
28323
28542
  "use strict";
@@ -28329,11 +28548,11 @@ __webpack_require__.r(__webpack_exports__);
28329
28548
  /* harmony export */ "uniswapV3LP": () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
28330
28549
  /* harmony export */ "zeroExExchange": () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
28331
28550
  /* harmony export */ });
28332
- /* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(242);
28333
- /* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(124);
28334
- /* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(244);
28335
- /* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(212);
28336
- /* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(194);
28551
+ /* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(248);
28552
+ /* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(125);
28553
+ /* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(250);
28554
+ /* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(213);
28555
+ /* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(195);
28337
28556
 
28338
28557
 
28339
28558
 
@@ -28343,7 +28562,7 @@ __webpack_require__.r(__webpack_exports__);
28343
28562
 
28344
28563
 
28345
28564
  /***/ }),
28346
- /* 242 */
28565
+ /* 248 */
28347
28566
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28348
28567
 
28349
28568
  "use strict";
@@ -28355,7 +28574,7 @@ __webpack_require__.r(__webpack_exports__);
28355
28574
  /* harmony export */ });
28356
28575
  /* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3);
28357
28576
  /* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
28358
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(243);
28577
+ /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(249);
28359
28578
  /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
28360
28579
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(19);
28361
28580
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
@@ -28533,14 +28752,14 @@ const createSellAction = (sellAmount, sellToken, buyToken, expectedPrice, accept
28533
28752
 
28534
28753
 
28535
28754
  /***/ }),
28536
- /* 243 */
28755
+ /* 249 */
28537
28756
  /***/ ((module) => {
28538
28757
 
28539
28758
  "use strict";
28540
- module.exports = __WEBPACK_EXTERNAL_MODULE__243__;
28759
+ module.exports = __WEBPACK_EXTERNAL_MODULE__249__;
28541
28760
 
28542
28761
  /***/ }),
28543
- /* 244 */
28762
+ /* 250 */
28544
28763
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28545
28764
 
28546
28765
  "use strict";
@@ -28548,7 +28767,7 @@ __webpack_require__.r(__webpack_exports__);
28548
28767
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
28549
28768
  /* harmony export */ "getAssetAddrByTokenId": () => (/* binding */ getAssetAddrByTokenId)
28550
28769
  /* harmony export */ });
28551
- /* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(245);
28770
+ /* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(251);
28552
28771
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
28553
28772
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
28554
28773
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -28575,14 +28794,14 @@ const getAssetAddrByTokenId = (web3, tokenId) => __awaiter(void 0, void 0, void
28575
28794
 
28576
28795
 
28577
28796
  /***/ }),
28578
- /* 245 */
28797
+ /* 251 */
28579
28798
  /***/ ((module) => {
28580
28799
 
28581
28800
  "use strict";
28582
28801
  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"}]');
28583
28802
 
28584
28803
  /***/ }),
28585
- /* 246 */
28804
+ /* 252 */
28586
28805
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28587
28806
 
28588
28807
  "use strict";
@@ -28652,9 +28871,14 @@ var makerRatioTrigger = {
28652
28871
  }
28653
28872
  };
28654
28873
  var aaveV3RatioTrigger = {
28874
+ encode(owner, market, ratioPercentage, ratioState) {
28875
+ var ratioWei = (0,_utils__WEBPACK_IMPORTED_MODULE_1__.ratioPercentageToWei)(ratioPercentage);
28876
+ return [mockedWeb3.eth.abi.encodeParameters(['address', 'address', 'uint256', 'uint8'], [owner, market, ratioWei, ratioState])];
28877
+ },
28655
28878
  decode(triggerData) {
28656
28879
  var decodedData = mockedWeb3.eth.abi.decodeParameters(['address', 'address', 'uint256', 'uint8'], triggerData[0]);
28657
28880
  return {
28881
+ owner: decodedData[0],
28658
28882
  market: decodedData[1],
28659
28883
  ratio: new (decimal_js__WEBPACK_IMPORTED_MODULE_0___default())(mockedWeb3.utils.fromWei(decodedData[2])).mul(100).toNumber(),
28660
28884
  ratioState: Number(decodedData[3])
@@ -28762,7 +28986,7 @@ var compoundV3RatioTrigger = {
28762
28986
  };
28763
28987
 
28764
28988
  /***/ }),
28765
- /* 247 */
28989
+ /* 253 */
28766
28990
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28767
28991
 
28768
28992
  "use strict";
@@ -28788,7 +29012,7 @@ class OptimismStrategies extends _private_StrategiesAutomation__WEBPACK_IMPORTED
28788
29012
  }
28789
29013
 
28790
29014
  /***/ }),
28791
- /* 248 */
29015
+ /* 254 */
28792
29016
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28793
29017
 
28794
29018
  "use strict";
@@ -28814,7 +29038,7 @@ class ArbitrumStrategies extends _private_StrategiesAutomation__WEBPACK_IMPORTED
28814
29038
  }
28815
29039
 
28816
29040
  /***/ }),
28817
- /* 249 */
29041
+ /* 255 */
28818
29042
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28819
29043
 
28820
29044
  "use strict";
@@ -28832,7 +29056,7 @@ __webpack_require__.r(__webpack_exports__);
28832
29056
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_1__);
28833
29057
  /* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
28834
29058
  /* harmony import */ var _subDataService__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(29);
28835
- /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(246);
29059
+ /* harmony import */ var _triggerService__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(252);
28836
29060
  /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(18);
28837
29061
 
28838
29062
 
@@ -29056,11 +29280,11 @@ __webpack_require__.r(__webpack_exports__);
29056
29280
  /* harmony import */ var _automation_public_legacy_LegacyAaveAutomation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(23);
29057
29281
  /* harmony import */ var _automation_public_legacy_LegacyCompoundAutomation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(24);
29058
29282
  /* harmony import */ var _automation_public_EthereumStrategies__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(25);
29059
- /* harmony import */ var _automation_public_OptimismStrategies__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(247);
29060
- /* harmony import */ var _automation_public_ArbitrumStrategies__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(248);
29061
- /* harmony import */ var _services_triggerService__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(246);
29283
+ /* harmony import */ var _automation_public_OptimismStrategies__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(253);
29284
+ /* harmony import */ var _automation_public_ArbitrumStrategies__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(254);
29285
+ /* harmony import */ var _services_triggerService__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(252);
29062
29286
  /* harmony import */ var _services_subDataService__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(29);
29063
- /* harmony import */ var _services_strategySubService__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(249);
29287
+ /* harmony import */ var _services_strategySubService__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(255);
29064
29288
  /* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(5);
29065
29289
  /* harmony import */ var _types_enums__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(6);
29066
29290
  /* harmony import */ var _services_utils__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(18);