@defisaver/sdk 1.2.8 → 1.2.9
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/.mocharc.json +4 -0
- package/.nvmrc +1 -0
- package/README.md +6 -0
- package/esm/src/actions/checkers/AaveV3OpenRatioCheckAction.d.ts +16 -0
- package/esm/src/actions/checkers/AaveV3OpenRatioCheckAction.js +22 -0
- package/esm/src/actions/checkers/index.d.ts +1 -0
- package/esm/src/actions/checkers/index.js +1 -0
- package/esm/src/actions/eulerV2/EulerV2PaybackWithSharesAction.js +1 -1
- package/esm/src/actions/eulerV2/EulerV2PullDebtAction.js +1 -1
- package/esm/src/actions/eulerV2/EulerV2ReorderCollateralsAction.js +1 -1
- package/esm/src/addresses.d.ts +1 -1
- package/esm/src/addresses.js +6 -8
- package/esm/src/index.d.ts +4 -4
- package/esm/src/triggers/AaveV2RatioTrigger.js +1 -1
- package/esm/src/triggers/AaveV3QuotePriceTrigger.js +1 -1
- package/esm/src/triggers/AaveV3RatioTrigger.js +1 -1
- package/esm/src/triggers/CBRebondTrigger.js +1 -1
- package/esm/src/triggers/ChainLinkPriceTrigger.js +1 -1
- package/esm/src/triggers/CompV3RatioTrigger.js +1 -1
- package/esm/src/triggers/CompoundRatioTrigger.js +1 -1
- package/esm/src/triggers/CurveUsdCollRatioTrigger.js +1 -1
- package/esm/src/triggers/CurveUsdHealthRatioTrigger.js +1 -1
- package/esm/src/triggers/GasPriceTrigger.js +1 -1
- package/esm/src/triggers/LiquityDebtInFrontWithLimitTrigger.js +1 -1
- package/esm/src/triggers/LiquityRatioTrigger.js +1 -1
- package/esm/src/triggers/MakerRatioTrigger.js +1 -1
- package/esm/src/triggers/MorphoAaveV2RatioTrigger.js +1 -1
- package/esm/src/triggers/MorphoBlueRatioTrigger.js +1 -1
- package/esm/src/triggers/OffchainPriceTrigger.js +1 -1
- package/esm/src/triggers/ReflexerRatioTrigger.js +1 -1
- package/esm/src/triggers/SparkQuotePriceTrigger.js +1 -1
- package/esm/src/triggers/SparkRatioTrigger.js +1 -1
- package/esm/src/triggers/TimestampTrigger.js +1 -1
- package/esm/src/triggers/TrailingStopTrigger.js +1 -1
- package/esm/src/triggers/UniV3CurrentTickTrigger.js +1 -1
- package/package.json +8 -5
- package/src/actions/checkers/AaveV3OpenRatioCheckAction.ts +30 -0
- package/src/actions/checkers/index.ts +2 -1
- package/src/actions/eulerV2/EulerV2PaybackWithSharesAction.ts +1 -1
- package/src/actions/eulerV2/EulerV2PullDebtAction.ts +1 -1
- package/src/actions/eulerV2/EulerV2ReorderCollateralsAction.ts +1 -1
- package/src/actions/eulerV2/index.ts +1 -2
- package/src/addresses.ts +4 -6
- package/src/triggers/AaveV2RatioTrigger.ts +2 -2
- package/src/triggers/AaveV3QuotePriceTrigger.ts +2 -2
- package/src/triggers/AaveV3RatioTrigger.ts +2 -2
- package/src/triggers/CBRebondTrigger.ts +2 -2
- package/src/triggers/ChainLinkPriceTrigger.ts +2 -2
- package/src/triggers/CompV3RatioTrigger.ts +2 -2
- package/src/triggers/CompoundRatioTrigger.ts +2 -2
- package/src/triggers/CurveUsdCollRatioTrigger.ts +2 -2
- package/src/triggers/CurveUsdHealthRatioTrigger.ts +1 -1
- package/src/triggers/GasPriceTrigger.ts +2 -2
- package/src/triggers/LiquityDebtInFrontWithLimitTrigger.ts +2 -2
- package/src/triggers/LiquityRatioTrigger.ts +2 -2
- package/src/triggers/MakerRatioTrigger.ts +2 -2
- package/src/triggers/MorphoAaveV2RatioTrigger.ts +2 -2
- package/src/triggers/MorphoBlueRatioTrigger.ts +2 -2
- package/src/triggers/OffchainPriceTrigger.ts +2 -2
- package/src/triggers/ReflexerRatioTrigger.ts +2 -2
- package/src/triggers/SparkQuotePriceTrigger.ts +2 -2
- package/src/triggers/SparkRatioTrigger.ts +2 -2
- package/src/triggers/TimestampTrigger.ts +2 -2
- package/src/triggers/TrailingStopTrigger.ts +2 -2
- package/src/triggers/UniV3CurrentTickTrigger.ts +2 -2
- package/test/Action.js +1 -1
- package/test/ActionWithL2.js +1 -1
- package/test/DfsWeb3.js +1 -1
- package/test/Recipe.js +1 -1
- package/test/Strategy.js +1 -1
- package/test/accessLists/Recipe.js +1 -1
- package/test/accessLists/access-lists.js +1 -1
- package/test/actions/aave/AaveBorrowAction.js +1 -1
- package/test/actions/aave/AaveClaimStkAaveAction.js +1 -1
- package/test/actions/aave/AaveCollateralSwitchAction.js +1 -1
- package/test/actions/aave/AavePaybackAction.js +1 -1
- package/test/actions/aave/AaveSupplyAction.js +1 -1
- package/test/actions/aave/AaveWithdrawAction.js +1 -1
- package/test/actions/balancer/BalancerV2ClaimAction.js +1 -1
- package/test/actions/balancer/BalancerV2SupplyAction.js +1 -1
- package/test/actions/balancer/BalancerV2WithdrawAction.js +1 -1
- package/test/actions/basic/ChangeProxyOwnerAction.js +1 -1
- package/test/actions/basic/CreateSubAction.js +1 -2
- package/test/actions/basic/SellAction.js +1 -1
- package/test/actions/basic/SendTokenAction.js +1 -1
- package/test/actions/basic/TokenBalanceAction.js +1 -1
- package/test/actions/checkers/AaveV3OpenRatioCheckAction.js +22 -0
- package/test/actions/compound/CompoundBorrowAction.js +1 -1
- package/test/actions/compound/CompoundCollateralSwitchAction.js +1 -1
- package/test/actions/compound/CompoundGetDebtAction.js +1 -1
- package/test/actions/compound/CompoundPaybackAction.js +1 -1
- package/test/actions/compound/CompoundSupplyAction.js +1 -1
- package/test/actions/compound/CompoundWithdrawAction.js +1 -1
- package/test/actions/dydx/DyDxWithdrawAction.js +1 -1
- package/test/actions/eulerV2/EulerV2BorrowAction.js +31 -0
- package/test/actions/eulerV2/EulerV2CollateralSwitchAction.js +28 -0
- package/test/actions/eulerV2/EulerV2PaybackAction.js +39 -0
- package/test/actions/eulerV2/EulerV2SupplyAction.js +42 -0
- package/test/actions/eulerV2/EulerV2WithdrawAction.js +31 -0
- package/test/actions/flashloan/DyDxFlashLoanAction.js +1 -1
- package/test/actions/insta/InstPullTokensAction.js +1 -1
- package/test/actions/lido/LidoStakeAction.js +1 -1
- package/test/actions/liquity/LiquityBorrowAction.js +1 -1
- package/test/actions/liquity/LiquityClaimAction.js +1 -1
- package/test/actions/liquity/LiquityClaimSPRewardsAction.js +1 -1
- package/test/actions/liquity/LiquityClaimStakingRewardsAction.js +1 -1
- package/test/actions/liquity/LiquityCloseAction.js +1 -1
- package/test/actions/liquity/LiquityEthGainToTroveAction.js +1 -1
- package/test/actions/liquity/LiquityOpenAction.js +1 -1
- package/test/actions/liquity/LiquityPaybackAction.js +1 -1
- package/test/actions/liquity/LiquityRedeemAction.js +1 -1
- package/test/actions/liquity/LiquitySPDepositAction.js +1 -1
- package/test/actions/liquity/LiquitySPWithdrawAction.js +1 -1
- package/test/actions/liquity/LiquityStakeAction.js +1 -1
- package/test/actions/liquity/LiquitySupplyAction.js +1 -1
- package/test/actions/liquity/LiquityUnstakeAction.js +1 -1
- package/test/actions/liquity/LiquityWithdrawAction.js +1 -1
- package/test/actions/maker/MakerGenerateAction.js +1 -1
- package/test/actions/maker/MakerGiveAction.js +1 -1
- package/test/actions/maker/MakerMergeAction.js +1 -1
- package/test/actions/maker/MakerOpenVaultAction.js +1 -1
- package/test/actions/maker/MakerPaybackAction.js +1 -1
- package/test/actions/maker/MakerSupplyAction.js +1 -1
- package/test/actions/maker/MakerWithdrawAction.js +1 -1
- package/test/actions/reflexer/ReflexerNativeUniV2SaviourDepositAction.js +1 -1
- package/test/actions/reflexer/ReflexerNativeUniV2SaviourGetReservesAction.js +1 -1
- package/test/actions/reflexer/ReflexerNativeUniV2SaviourWithdrawAction.js +1 -1
- package/test/actions/uniswap/UniswapSupplyAction.js +1 -1
- package/test/actions/uniswap/UniswapWithdrawAction.js +1 -1
- package/test/actions/uniswapV3/UniswapV3CollectAction.js +1 -1
- package/test/actions/uniswapV3/UniswapV3CreatePoolAction.js +1 -1
- package/test/actions/uniswapV3/UniswapV3MintAction.js +1 -1
- package/test/actions/uniswapV3/UniswapV3SupplyAction.js +1 -1
- package/test/actions/uniswapV3/UniswapV3WithdrawAction.js +1 -1
- package/test/actions/yearn/YearnSupplyAction.js +1 -1
- package/test/actions/yearn/YearnWithdrawAction.js +1 -1
- package/test/index.js +1 -1
- package/test/utils/uniswapLP.js +1 -1
- package/test/utils/zeroExExchange.js +3 -2
- package/tsconfig.esm.json +11 -0
- package/tsconfig.json +2 -2
- package/umd/index.js +465 -435
- package/.env.example +0 -1
package/umd/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
exports["defisaver-sdk"] = factory(require("web3-eth-abi"), require("web3-utils"), require("decimal.js"), require("@defisaver/tokens"), require("@ethersproject/solidity"), require("@ethersproject/address"), require("axios"));
|
|
8
8
|
else
|
|
9
9
|
root["defisaver-sdk"] = factory(root["web3-eth-abi"], root["web3-utils"], root["decimal.js"], root["@defisaver/tokens"], root["@ethersproject/solidity"], root["@ethersproject/address"], root["axios"]);
|
|
10
|
-
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__5__, __WEBPACK_EXTERNAL_MODULE__6__, __WEBPACK_EXTERNAL_MODULE__134__, __WEBPACK_EXTERNAL_MODULE__135__,
|
|
10
|
+
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__5__, __WEBPACK_EXTERNAL_MODULE__6__, __WEBPACK_EXTERNAL_MODULE__134__, __WEBPACK_EXTERNAL_MODULE__135__, __WEBPACK_EXTERNAL_MODULE__359__) => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ "use strict";
|
|
13
13
|
/******/ var __webpack_modules__ = ([
|
|
@@ -1539,7 +1539,7 @@ var actionAddresses = {
|
|
|
1539
1539
|
EulerV2Borrow: '0x38d66ecD38b7800D8FD0Bc29489c2306170a9Ede',
|
|
1540
1540
|
EulerV2Payback: '0x738b1df6b6962D8795Bda5bc5EFCd8b0B8c74d01',
|
|
1541
1541
|
EulerV2CollateralSwitch: '0x38950b50Fb38aC19D06e8CE5AAE632D6dF1EEb1a',
|
|
1542
|
-
EulerV2View: '
|
|
1542
|
+
EulerV2View: '0x8932E46Ecf96b5Fe033F5e27Ab6dC755Cb668967',
|
|
1543
1543
|
MerklClaim: '0xE88036F3F0D7e216D63726356cA2bC334e305fe5'
|
|
1544
1544
|
},
|
|
1545
1545
|
[_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.optimism.chainId]: {
|
|
@@ -1672,6 +1672,7 @@ var actionAddresses = {
|
|
|
1672
1672
|
ChangeProxyOwner: '0x1947a44d3717a47556175d64fdc208619aa08874',
|
|
1673
1673
|
PermitToken: '0x57c8ae94a5A11dA33e0518054102488b604628D0',
|
|
1674
1674
|
HandleAuth: '0x18a90e6db79199ace00140631ef931e0bd97837c',
|
|
1675
|
+
ToggleSub: '0x5F16C0a08d52b67fc73706c494F7535Dd3382b58',
|
|
1675
1676
|
// Flashloan
|
|
1676
1677
|
FLAaveV3: '0x79Eb9cEe432Cd3e7b09A9eFdB21A733A6d7b4c3A',
|
|
1677
1678
|
FLBalancer: '0x862E533198C9656B75bB6A5dDF0953F7ED5E8507',
|
|
@@ -1772,12 +1773,8 @@ var getAddr = function getAddr(name) {
|
|
|
1772
1773
|
var _chainId = typeof chainId === 'undefined' ? _config__WEBPACK_IMPORTED_MODULE_0__.CONFIG.chainId : chainId;
|
|
1773
1774
|
var actions = actionAddresses[_chainId];
|
|
1774
1775
|
var other = otherAddresses[_chainId];
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
if (!_config__WEBPACK_IMPORTED_MODULE_0__.CONFIG.testingMode) {
|
|
1778
|
-
if (!actions && !other) throw new Error("Cannot find address for chainId: ".concat(_chainId, "."));
|
|
1779
|
-
if (!actions[name] && !other[name]) throw new Error("Cannot find address for name: ".concat(name, " (chainId: ").concat(_chainId, ")."));
|
|
1780
|
-
}
|
|
1776
|
+
if (!actions && !other) throw new Error("Cannot find address for chainId: ".concat(_chainId, "."));
|
|
1777
|
+
if (!actions[name] && !other[name]) throw new Error("Cannot find address for name: ".concat(name, " (chainId: ").concat(_chainId, ")."));
|
|
1781
1778
|
if (actions[name]) return actions[name];
|
|
1782
1779
|
return other[name];
|
|
1783
1780
|
};
|
|
@@ -2078,29 +2075,29 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2078
2075
|
/* harmony import */ var _dydx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(146);
|
|
2079
2076
|
/* harmony import */ var _uniswapV3__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(148);
|
|
2080
2077
|
/* harmony import */ var _checkers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(154);
|
|
2081
|
-
/* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
2082
|
-
/* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
2083
|
-
/* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
2084
|
-
/* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
2085
|
-
/* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
2086
|
-
/* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
2087
|
-
/* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(
|
|
2088
|
-
/* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(
|
|
2089
|
-
/* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(
|
|
2090
|
-
/* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(
|
|
2091
|
-
/* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(
|
|
2092
|
-
/* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(
|
|
2093
|
-
/* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(
|
|
2094
|
-
/* harmony import */ var _morpho__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(
|
|
2095
|
-
/* harmony import */ var _bprotocol__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(
|
|
2096
|
-
/* harmony import */ var _lsv__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(
|
|
2097
|
-
/* harmony import */ var _curveusd__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(
|
|
2098
|
-
/* harmony import */ var _spark__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(
|
|
2099
|
-
/* harmony import */ var _morpho_blue__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(
|
|
2100
|
-
/* harmony import */ var _llamalend__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(
|
|
2101
|
-
/* harmony import */ var _merkl__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(
|
|
2102
|
-
/* harmony import */ var _eulerV2__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(
|
|
2103
|
-
/* harmony import */ var _sky__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(
|
|
2078
|
+
/* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(167);
|
|
2079
|
+
/* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(184);
|
|
2080
|
+
/* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(187);
|
|
2081
|
+
/* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(191);
|
|
2082
|
+
/* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(193);
|
|
2083
|
+
/* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(197);
|
|
2084
|
+
/* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(209);
|
|
2085
|
+
/* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(212);
|
|
2086
|
+
/* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(217);
|
|
2087
|
+
/* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(220);
|
|
2088
|
+
/* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(232);
|
|
2089
|
+
/* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(238);
|
|
2090
|
+
/* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(246);
|
|
2091
|
+
/* harmony import */ var _morpho__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(254);
|
|
2092
|
+
/* harmony import */ var _bprotocol__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(265);
|
|
2093
|
+
/* harmony import */ var _lsv__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(268);
|
|
2094
|
+
/* harmony import */ var _curveusd__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(273);
|
|
2095
|
+
/* harmony import */ var _spark__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(286);
|
|
2096
|
+
/* harmony import */ var _morpho_blue__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(298);
|
|
2097
|
+
/* harmony import */ var _llamalend__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(307);
|
|
2098
|
+
/* harmony import */ var _merkl__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(319);
|
|
2099
|
+
/* harmony import */ var _eulerV2__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(321);
|
|
2100
|
+
/* harmony import */ var _sky__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(330);
|
|
2104
2101
|
|
|
2105
2102
|
|
|
2106
2103
|
|
|
@@ -6493,6 +6490,7 @@ class UniswapV3CreatePoolAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
|
|
|
6493
6490
|
__webpack_require__.r(__webpack_exports__);
|
|
6494
6491
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6495
6492
|
/* harmony export */ AaveV2RatioCheckAction: () => (/* reexport safe */ _AaveV2RatioCheckAction__WEBPACK_IMPORTED_MODULE_4__.AaveV2RatioCheckAction),
|
|
6493
|
+
/* harmony export */ AaveV3OpenRatioCheckAction: () => (/* reexport safe */ _AaveV3OpenRatioCheckAction__WEBPACK_IMPORTED_MODULE_11__.AaveV3OpenRatioCheckAction),
|
|
6496
6494
|
/* harmony export */ AaveV3RatioCheckAction: () => (/* reexport safe */ _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__.AaveV3RatioCheckAction),
|
|
6497
6495
|
/* harmony export */ CompoundV2RatioCheckAction: () => (/* reexport safe */ _CompoundV2RatioCheckAction__WEBPACK_IMPORTED_MODULE_5__.CompoundV2RatioCheckAction),
|
|
6498
6496
|
/* harmony export */ CompoundV3RatioCheckAction: () => (/* reexport safe */ _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__.CompoundV3RatioCheckAction),
|
|
@@ -6515,6 +6513,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6515
6513
|
/* harmony import */ var _LiquityRatioIncreaseCheckAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(163);
|
|
6516
6514
|
/* harmony import */ var _CurveUsdCollRatioCheck__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(164);
|
|
6517
6515
|
/* harmony import */ var _MorphoBlueRatioCheckAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(165);
|
|
6516
|
+
/* harmony import */ var _AaveV3OpenRatioCheckAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(166);
|
|
6517
|
+
|
|
6518
6518
|
|
|
6519
6519
|
|
|
6520
6520
|
|
|
@@ -6851,6 +6851,36 @@ class MorphoBlueRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
6851
6851
|
/* 166 */
|
|
6852
6852
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6853
6853
|
|
|
6854
|
+
__webpack_require__.r(__webpack_exports__);
|
|
6855
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6856
|
+
/* harmony export */ AaveV3OpenRatioCheckAction: () => (/* binding */ AaveV3OpenRatioCheckAction)
|
|
6857
|
+
/* harmony export */ });
|
|
6858
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
6859
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
6860
|
+
|
|
6861
|
+
|
|
6862
|
+
/**
|
|
6863
|
+
* AaveV3OpenRatioCheckAction - Checks aave V3 ratio for users proxy position and reverts if faulty.
|
|
6864
|
+
*
|
|
6865
|
+
* @dev This checker action is different from AaveV3RatioCheckAction in that it checks current ratio without checking previous ratio.
|
|
6866
|
+
*
|
|
6867
|
+
* @category Checkers
|
|
6868
|
+
*/
|
|
6869
|
+
class AaveV3OpenRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
6870
|
+
/**
|
|
6871
|
+
* @param targetRatio The ratio user want to be at
|
|
6872
|
+
* @param market Address provider for specific market
|
|
6873
|
+
*/
|
|
6874
|
+
constructor(targetRatio, market) {
|
|
6875
|
+
super('AaveV3OpenRatioCheck', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256', 'address'], [targetRatio, market]);
|
|
6876
|
+
this.mappableArgs = [this.args[0], this.args[1]];
|
|
6877
|
+
}
|
|
6878
|
+
}
|
|
6879
|
+
|
|
6880
|
+
/***/ }),
|
|
6881
|
+
/* 167 */
|
|
6882
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6883
|
+
|
|
6854
6884
|
__webpack_require__.r(__webpack_exports__);
|
|
6855
6885
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6856
6886
|
/* harmony export */ LiquityAdjustAction: () => (/* reexport safe */ _LiquityAdjustAction__WEBPACK_IMPORTED_MODULE_15__.LiquityAdjustAction),
|
|
@@ -6870,22 +6900,22 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6870
6900
|
/* harmony export */ LiquityUnstakeAction: () => (/* reexport safe */ _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__.LiquityUnstakeAction),
|
|
6871
6901
|
/* harmony export */ LiquityWithdrawAction: () => (/* reexport safe */ _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__.LiquityWithdrawAction)
|
|
6872
6902
|
/* harmony export */ });
|
|
6873
|
-
/* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
6874
|
-
/* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
6875
|
-
/* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
6876
|
-
/* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
6877
|
-
/* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
6878
|
-
/* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
6879
|
-
/* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
6880
|
-
/* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
6881
|
-
/* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
6882
|
-
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
6883
|
-
/* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
6884
|
-
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
6885
|
-
/* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
6886
|
-
/* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
6887
|
-
/* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
6888
|
-
/* harmony import */ var _LiquityAdjustAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
6903
|
+
/* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(168);
|
|
6904
|
+
/* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(169);
|
|
6905
|
+
/* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(170);
|
|
6906
|
+
/* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(171);
|
|
6907
|
+
/* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(172);
|
|
6908
|
+
/* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(173);
|
|
6909
|
+
/* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(174);
|
|
6910
|
+
/* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(175);
|
|
6911
|
+
/* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(176);
|
|
6912
|
+
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(177);
|
|
6913
|
+
/* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(178);
|
|
6914
|
+
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(179);
|
|
6915
|
+
/* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(180);
|
|
6916
|
+
/* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(181);
|
|
6917
|
+
/* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(182);
|
|
6918
|
+
/* harmony import */ var _LiquityAdjustAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(183);
|
|
6889
6919
|
|
|
6890
6920
|
|
|
6891
6921
|
|
|
@@ -6904,7 +6934,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6904
6934
|
|
|
6905
6935
|
|
|
6906
6936
|
/***/ }),
|
|
6907
|
-
/*
|
|
6937
|
+
/* 168 */
|
|
6908
6938
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6909
6939
|
|
|
6910
6940
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6955,7 +6985,7 @@ class LiquityOpenAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
6955
6985
|
}
|
|
6956
6986
|
|
|
6957
6987
|
/***/ }),
|
|
6958
|
-
/*
|
|
6988
|
+
/* 169 */
|
|
6959
6989
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6960
6990
|
|
|
6961
6991
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6989,7 +7019,7 @@ class LiquityBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6989
7019
|
}
|
|
6990
7020
|
|
|
6991
7021
|
/***/ }),
|
|
6992
|
-
/*
|
|
7022
|
+
/* 170 */
|
|
6993
7023
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6994
7024
|
|
|
6995
7025
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7036,7 +7066,7 @@ class LiquityPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7036
7066
|
}
|
|
7037
7067
|
|
|
7038
7068
|
/***/ }),
|
|
7039
|
-
/*
|
|
7069
|
+
/* 171 */
|
|
7040
7070
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7041
7071
|
|
|
7042
7072
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7083,7 +7113,7 @@ class LiquitySupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7083
7113
|
}
|
|
7084
7114
|
|
|
7085
7115
|
/***/ }),
|
|
7086
|
-
/*
|
|
7116
|
+
/* 172 */
|
|
7087
7117
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7088
7118
|
|
|
7089
7119
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7116,7 +7146,7 @@ class LiquityWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
7116
7146
|
}
|
|
7117
7147
|
|
|
7118
7148
|
/***/ }),
|
|
7119
|
-
/*
|
|
7149
|
+
/* 173 */
|
|
7120
7150
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7121
7151
|
|
|
7122
7152
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7162,7 +7192,7 @@ class LiquityCloseAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7162
7192
|
}
|
|
7163
7193
|
|
|
7164
7194
|
/***/ }),
|
|
7165
|
-
/*
|
|
7195
|
+
/* 174 */
|
|
7166
7196
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7167
7197
|
|
|
7168
7198
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7192,7 +7222,7 @@ class LiquityClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7192
7222
|
}
|
|
7193
7223
|
|
|
7194
7224
|
/***/ }),
|
|
7195
|
-
/*
|
|
7225
|
+
/* 175 */
|
|
7196
7226
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7197
7227
|
|
|
7198
7228
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7245,7 +7275,7 @@ class LiquityRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7245
7275
|
}
|
|
7246
7276
|
|
|
7247
7277
|
/***/ }),
|
|
7248
|
-
/*
|
|
7278
|
+
/* 176 */
|
|
7249
7279
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7250
7280
|
|
|
7251
7281
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7294,7 +7324,7 @@ class LiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
7294
7324
|
}
|
|
7295
7325
|
|
|
7296
7326
|
/***/ }),
|
|
7297
|
-
/*
|
|
7327
|
+
/* 177 */
|
|
7298
7328
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7299
7329
|
|
|
7300
7330
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7329,7 +7359,7 @@ class LiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
7329
7359
|
}
|
|
7330
7360
|
|
|
7331
7361
|
/***/ }),
|
|
7332
|
-
/*
|
|
7362
|
+
/* 178 */
|
|
7333
7363
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7334
7364
|
|
|
7335
7365
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7378,7 +7408,7 @@ class LiquityStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7378
7408
|
}
|
|
7379
7409
|
|
|
7380
7410
|
/***/ }),
|
|
7381
|
-
/*
|
|
7411
|
+
/* 179 */
|
|
7382
7412
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7383
7413
|
|
|
7384
7414
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7413,7 +7443,7 @@ class LiquityUnstakeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7413
7443
|
}
|
|
7414
7444
|
|
|
7415
7445
|
/***/ }),
|
|
7416
|
-
/*
|
|
7446
|
+
/* 180 */
|
|
7417
7447
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7418
7448
|
|
|
7419
7449
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7445,14 +7475,14 @@ class LiquityEthGainToTroveAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
7445
7475
|
}
|
|
7446
7476
|
|
|
7447
7477
|
/***/ }),
|
|
7448
|
-
/*
|
|
7478
|
+
/* 181 */
|
|
7449
7479
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7450
7480
|
|
|
7451
7481
|
__webpack_require__.r(__webpack_exports__);
|
|
7452
7482
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7453
7483
|
/* harmony export */ LiquityClaimSPRewardsAction: () => (/* binding */ LiquityClaimSPRewardsAction)
|
|
7454
7484
|
/* harmony export */ });
|
|
7455
|
-
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7485
|
+
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(177);
|
|
7456
7486
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
7457
7487
|
|
|
7458
7488
|
|
|
@@ -7474,14 +7504,14 @@ class LiquityClaimSPRewardsAction extends _LiquitySPWithdrawAction__WEBPACK_IMPO
|
|
|
7474
7504
|
}
|
|
7475
7505
|
|
|
7476
7506
|
/***/ }),
|
|
7477
|
-
/*
|
|
7507
|
+
/* 182 */
|
|
7478
7508
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7479
7509
|
|
|
7480
7510
|
__webpack_require__.r(__webpack_exports__);
|
|
7481
7511
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7482
7512
|
/* harmony export */ LiquityClaimStakingRewardsAction: () => (/* binding */ LiquityClaimStakingRewardsAction)
|
|
7483
7513
|
/* harmony export */ });
|
|
7484
|
-
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7514
|
+
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(179);
|
|
7485
7515
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
7486
7516
|
|
|
7487
7517
|
|
|
@@ -7503,7 +7533,7 @@ class LiquityClaimStakingRewardsAction extends _LiquityUnstakeAction__WEBPACK_IM
|
|
|
7503
7533
|
}
|
|
7504
7534
|
|
|
7505
7535
|
/***/ }),
|
|
7506
|
-
/*
|
|
7536
|
+
/* 183 */
|
|
7507
7537
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7508
7538
|
|
|
7509
7539
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7542,7 +7572,7 @@ class LiquityAdjustAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7542
7572
|
}
|
|
7543
7573
|
|
|
7544
7574
|
/***/ }),
|
|
7545
|
-
/*
|
|
7575
|
+
/* 184 */
|
|
7546
7576
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7547
7577
|
|
|
7548
7578
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7550,13 +7580,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7550
7580
|
/* harmony export */ YearnSupplyAction: () => (/* reexport safe */ _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__.YearnSupplyAction),
|
|
7551
7581
|
/* harmony export */ YearnWithdrawAction: () => (/* reexport safe */ _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.YearnWithdrawAction)
|
|
7552
7582
|
/* harmony export */ });
|
|
7553
|
-
/* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7554
|
-
/* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
7583
|
+
/* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(185);
|
|
7584
|
+
/* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(186);
|
|
7555
7585
|
|
|
7556
7586
|
|
|
7557
7587
|
|
|
7558
7588
|
/***/ }),
|
|
7559
|
-
/*
|
|
7589
|
+
/* 185 */
|
|
7560
7590
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7561
7591
|
|
|
7562
7592
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7607,7 +7637,7 @@ class YearnSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7607
7637
|
}
|
|
7608
7638
|
|
|
7609
7639
|
/***/ }),
|
|
7610
|
-
/*
|
|
7640
|
+
/* 186 */
|
|
7611
7641
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7612
7642
|
|
|
7613
7643
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7658,7 +7688,7 @@ class YearnWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7658
7688
|
}
|
|
7659
7689
|
|
|
7660
7690
|
/***/ }),
|
|
7661
|
-
/*
|
|
7691
|
+
/* 187 */
|
|
7662
7692
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7663
7693
|
|
|
7664
7694
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7667,15 +7697,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7667
7697
|
/* harmony export */ LidoUnwrapAction: () => (/* reexport safe */ _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__.LidoUnwrapAction),
|
|
7668
7698
|
/* harmony export */ LidoWrapAction: () => (/* reexport safe */ _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__.LidoWrapAction)
|
|
7669
7699
|
/* harmony export */ });
|
|
7670
|
-
/* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7671
|
-
/* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
7672
|
-
/* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7700
|
+
/* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(188);
|
|
7701
|
+
/* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(189);
|
|
7702
|
+
/* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(190);
|
|
7673
7703
|
|
|
7674
7704
|
|
|
7675
7705
|
|
|
7676
7706
|
|
|
7677
7707
|
/***/ }),
|
|
7678
|
-
/*
|
|
7708
|
+
/* 188 */
|
|
7679
7709
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7680
7710
|
|
|
7681
7711
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7721,7 +7751,7 @@ class LidoStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7721
7751
|
}
|
|
7722
7752
|
|
|
7723
7753
|
/***/ }),
|
|
7724
|
-
/*
|
|
7754
|
+
/* 189 */
|
|
7725
7755
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7726
7756
|
|
|
7727
7757
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7775,7 +7805,7 @@ class LidoWrapAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
7775
7805
|
}
|
|
7776
7806
|
|
|
7777
7807
|
/***/ }),
|
|
7778
|
-
/*
|
|
7808
|
+
/* 190 */
|
|
7779
7809
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7780
7810
|
|
|
7781
7811
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7818,18 +7848,18 @@ class LidoUnwrapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7818
7848
|
}
|
|
7819
7849
|
|
|
7820
7850
|
/***/ }),
|
|
7821
|
-
/*
|
|
7851
|
+
/* 191 */
|
|
7822
7852
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7823
7853
|
|
|
7824
7854
|
__webpack_require__.r(__webpack_exports__);
|
|
7825
7855
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7826
7856
|
/* harmony export */ InstPullTokensAction: () => (/* reexport safe */ _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__.InstPullTokensAction)
|
|
7827
7857
|
/* harmony export */ });
|
|
7828
|
-
/* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7858
|
+
/* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(192);
|
|
7829
7859
|
|
|
7830
7860
|
|
|
7831
7861
|
/***/ }),
|
|
7832
|
-
/*
|
|
7862
|
+
/* 192 */
|
|
7833
7863
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7834
7864
|
|
|
7835
7865
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7872,7 +7902,7 @@ class InstPullTokensAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7872
7902
|
}
|
|
7873
7903
|
|
|
7874
7904
|
/***/ }),
|
|
7875
|
-
/*
|
|
7905
|
+
/* 193 */
|
|
7876
7906
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7877
7907
|
|
|
7878
7908
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7881,15 +7911,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7881
7911
|
/* harmony export */ BalancerV2SupplyAction: () => (/* reexport safe */ _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__.BalancerV2SupplyAction),
|
|
7882
7912
|
/* harmony export */ BalancerV2WithdrawAction: () => (/* reexport safe */ _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BalancerV2WithdrawAction)
|
|
7883
7913
|
/* harmony export */ });
|
|
7884
|
-
/* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7885
|
-
/* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
7886
|
-
/* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7914
|
+
/* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(194);
|
|
7915
|
+
/* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(195);
|
|
7916
|
+
/* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(196);
|
|
7887
7917
|
|
|
7888
7918
|
|
|
7889
7919
|
|
|
7890
7920
|
|
|
7891
7921
|
/***/ }),
|
|
7892
|
-
/*
|
|
7922
|
+
/* 194 */
|
|
7893
7923
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7894
7924
|
|
|
7895
7925
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7941,7 +7971,7 @@ class BalancerV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
7941
7971
|
}
|
|
7942
7972
|
|
|
7943
7973
|
/***/ }),
|
|
7944
|
-
/*
|
|
7974
|
+
/* 195 */
|
|
7945
7975
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7946
7976
|
|
|
7947
7977
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7999,7 +8029,7 @@ class BalancerV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
7999
8029
|
}
|
|
8000
8030
|
|
|
8001
8031
|
/***/ }),
|
|
8002
|
-
/*
|
|
8032
|
+
/* 196 */
|
|
8003
8033
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8004
8034
|
|
|
8005
8035
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8048,7 +8078,7 @@ class BalancerV2ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
8048
8078
|
}
|
|
8049
8079
|
|
|
8050
8080
|
/***/ }),
|
|
8051
|
-
/*
|
|
8081
|
+
/* 197 */
|
|
8052
8082
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8053
8083
|
|
|
8054
8084
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8063,15 +8093,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8063
8093
|
/* harmony export */ CurveSwapAction: () => (/* reexport safe */ _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__.CurveSwapAction),
|
|
8064
8094
|
/* harmony export */ CurveWithdrawAction: () => (/* reexport safe */ _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveWithdrawAction)
|
|
8065
8095
|
/* harmony export */ });
|
|
8066
|
-
/* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8067
|
-
/* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8068
|
-
/* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
8069
|
-
/* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
8070
|
-
/* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
8071
|
-
/* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
8072
|
-
/* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
8073
|
-
/* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
8074
|
-
/* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
8096
|
+
/* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(198);
|
|
8097
|
+
/* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(199);
|
|
8098
|
+
/* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(202);
|
|
8099
|
+
/* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(203);
|
|
8100
|
+
/* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(204);
|
|
8101
|
+
/* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(205);
|
|
8102
|
+
/* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(206);
|
|
8103
|
+
/* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(207);
|
|
8104
|
+
/* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(208);
|
|
8075
8105
|
|
|
8076
8106
|
|
|
8077
8107
|
|
|
@@ -8083,7 +8113,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8083
8113
|
|
|
8084
8114
|
|
|
8085
8115
|
/***/ }),
|
|
8086
|
-
/*
|
|
8116
|
+
/* 198 */
|
|
8087
8117
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8088
8118
|
|
|
8089
8119
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8130,7 +8160,7 @@ class CurveSwapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8130
8160
|
}
|
|
8131
8161
|
|
|
8132
8162
|
/***/ }),
|
|
8133
|
-
/*
|
|
8163
|
+
/* 199 */
|
|
8134
8164
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8135
8165
|
|
|
8136
8166
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8142,7 +8172,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8142
8172
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
8143
8173
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(39);
|
|
8144
8174
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(27);
|
|
8145
|
-
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
8175
|
+
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(200);
|
|
8146
8176
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
8147
8177
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
8148
8178
|
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; }
|
|
@@ -8205,7 +8235,7 @@ class CurveDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
8205
8235
|
}
|
|
8206
8236
|
|
|
8207
8237
|
/***/ }),
|
|
8208
|
-
/*
|
|
8238
|
+
/* 200 */
|
|
8209
8239
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8210
8240
|
|
|
8211
8241
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8213,7 +8243,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8213
8243
|
/* harmony export */ makeFlags: () => (/* binding */ makeFlags),
|
|
8214
8244
|
/* harmony export */ poolInfo: () => (/* reexport default export from named module */ _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
|
|
8215
8245
|
/* harmony export */ });
|
|
8216
|
-
/* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8246
|
+
/* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(201);
|
|
8217
8247
|
|
|
8218
8248
|
|
|
8219
8249
|
|
|
@@ -8226,13 +8256,13 @@ var makeFlags = (depositTargetType, explicitUnderlying, withdrawExact, removeOne
|
|
|
8226
8256
|
) => depositTargetType | explicitUnderlying << 2 | withdrawExact << 3 | removeOneCoin << 4;
|
|
8227
8257
|
|
|
8228
8258
|
/***/ }),
|
|
8229
|
-
/*
|
|
8259
|
+
/* 201 */
|
|
8230
8260
|
/***/ ((module) => {
|
|
8231
8261
|
|
|
8232
8262
|
module.exports = /*#__PURE__*/JSON.parse('[{"name":"susd","swapAddr":"0xA5407eAE9Ba41422680e2e00537571bcC53efBfD","depositContract":"0xFCBa3E75865d2d561BE8D220616520c171F12851","nCoins":4,"coins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7","0x57Ab1ec28D129707052df4dF418D58a2D46d5f51"],"decimals":[18,6,6,18],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7","0x57Ab1ec28D129707052df4dF418D58a2D46d5f51"],"underlyingDecimals":[18,6,6,18],"isMeta":false,"lpToken":"0xC25a3A3b969415c80451098fa907EC722572917F","gauges":["0xA90996896660DEcC6E997655E065b23788857849"],"gaugeTypes":[0],"zapType":1},{"name":"compound","swapAddr":"0xA2B47E3D5c44877cca798226B7B8118F9BFb7A56","depositContract":"0xeB21209ae4C2c9FF2a86ACA31E123764A3B6Bc06","nCoins":2,"coins":["0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643","0x39AA39c021dfbaE8faC545936693aC917d5E7563"],"decimals":[8,8],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"],"underlyingDecimals":[18,6],"isMeta":false,"lpToken":"0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2","gauges":["0x7ca5b0a2910B33e9759DC7dDB0413949071D7575"],"gaugeTypes":[0],"zapType":1},{"underlyingFlag":true,"name":"aave","swapAddr":"0xDeBF20617708857ebe4F679508E7b7863a8A8EeE","nCoins":3,"coins":["0x028171bCA77440897B824Ca71D1c56caC55b68A3","0xBcca60bB61934080951369a648Fb03DF4F96263C","0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811"],"decimals":[18,6,6],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,6,6],"isMeta":false,"lpToken":"0xFd2a8fA60Abd58Efe3EeE34dd494cD491dC14900","gauges":["0xd662908ADA2Ea1916B3318327A97eB18aD588b5d"],"gaugeTypes":[0]},{"name":"steth","swapAddr":"0xDC24316b9AE028F1497c275EB9192a3Ea0f67022","nCoins":2,"coins":["0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE","0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84"],"decimals":[18,18],"underlyingCoins":["0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE","0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84"],"underlyingDecimals":[18,18],"isMeta":false,"lpToken":"0x06325440D014e39736583c165C2963BA99fAf14E","gauges":["0x182B723a58739a9c974cFDB385ceaDb237453c28"],"gaugeTypes":[0]},{"name":"3pool","swapAddr":"0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7","nCoins":3,"coins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"decimals":[18,6,6],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,6,6],"isMeta":false,"lpToken":"0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490","gauges":["0xbFcF63294aD7105dEa65aA58F8AE5BE2D9d0952A"],"gaugeTypes":[0]},{"name":"musd","swapAddr":"0x8474DdbE98F5aA3179B3B3F5942D724aFcdec9f6","depositContract":"0x803A2B40c5a9BB2B86DD630B274Fa2A9202874C2","nCoins":2,"coins":["0xe2f2a5C287993345a840Db3B0845fbC70f5935a5","0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490"],"decimals":[18,18],"underlyingCoins":["0xe2f2a5C287993345a840Db3B0845fbC70f5935a5","0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,18,6,6],"isMeta":true,"lpToken":"0x1AEf73d49Dedc4b1778d0706583995958Dc862e6","gauges":["0x5f626c30EC1215f4EdCc9982265E8b1F411D1352"],"gaugeTypes":[0],"zapType":0},{"name":"lusd","swapAddr":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","depositContract":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","devComment":"it would follow logic that the depositContract should be the 3pool zap but because of the smart contract logic it is overridden here","nCoins":2,"coins":["0x5f98805A4E8be255a32880FDeC7F6728C6568bA0","0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490"],"decimals":[18,18],"underlyingCoins":["0x5f98805A4E8be255a32880FDeC7F6728C6568bA0","0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,18,6,6],"isMeta":true,"lpToken":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","gauges":["0x9B8519A9a00100720CCdC8a120fBeD319cA47a14"],"gaugeTypes":[0],"zapType":2},{"name":"reth","isFactory":true,"swapAddr":"0x0f3159811670c117c372428D4E69AC32325e4D0F","nCoins":2,"coins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xae78736Cd615f374D3085123A210448E74Fc6393"],"decimals":[18,18],"underlyingCoins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xae78736Cd615f374D3085123A210448E74Fc6393"],"underlyingDecimals":[18,18],"isMeta":false,"lpToken":"0x6c38cE8984a890F5e46e6dF6117C26b3F1EcfC9C","gauges":["0x9d4D981d8a9066f5db8532A5816543dE8819d4A8"],"gaugeTypes":[0]},{"name":"cbeth","isFactory":true,"swapAddr":"0x5FAE7E604FC3e24fd43A72867ceBaC94c65b404A","nCoins":2,"coins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xBe9895146f7AF43049ca1c1AE358B0541Ea49704"],"decimals":[18,18],"underlyingCoins":["0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","0xBe9895146f7AF43049ca1c1AE358B0541Ea49704"],"underlyingDecimals":[18,18],"isMeta":false,"lpToken":"0x5b6C539b224014A09B3388e51CaAA8e354c959C8","gauges":["0xAd96E10123Fa34a01cf2314C42D75150849C9295"],"gaugeTypes":[0]}]');
|
|
8233
8263
|
|
|
8234
8264
|
/***/ }),
|
|
8235
|
-
/*
|
|
8265
|
+
/* 202 */
|
|
8236
8266
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8237
8267
|
|
|
8238
8268
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8242,7 +8272,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8242
8272
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
8243
8273
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
8244
8274
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
8245
|
-
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
8275
|
+
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(200);
|
|
8246
8276
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
8247
8277
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
8248
8278
|
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; }
|
|
@@ -8303,7 +8333,7 @@ class CurveWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8303
8333
|
}
|
|
8304
8334
|
|
|
8305
8335
|
/***/ }),
|
|
8306
|
-
/*
|
|
8336
|
+
/* 203 */
|
|
8307
8337
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8308
8338
|
|
|
8309
8339
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8348,7 +8378,7 @@ class CurveGaugeDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
8348
8378
|
}
|
|
8349
8379
|
|
|
8350
8380
|
/***/ }),
|
|
8351
|
-
/*
|
|
8381
|
+
/* 204 */
|
|
8352
8382
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8353
8383
|
|
|
8354
8384
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8379,7 +8409,7 @@ class CurveGaugeWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
8379
8409
|
}
|
|
8380
8410
|
|
|
8381
8411
|
/***/ }),
|
|
8382
|
-
/*
|
|
8412
|
+
/* 205 */
|
|
8383
8413
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8384
8414
|
|
|
8385
8415
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8408,7 +8438,7 @@ class CurveMintCrvAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8408
8438
|
}
|
|
8409
8439
|
|
|
8410
8440
|
/***/ }),
|
|
8411
|
-
/*
|
|
8441
|
+
/* 206 */
|
|
8412
8442
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8413
8443
|
|
|
8414
8444
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8439,7 +8469,7 @@ class CurveClaimFeesAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8439
8469
|
}
|
|
8440
8470
|
|
|
8441
8471
|
/***/ }),
|
|
8442
|
-
/*
|
|
8472
|
+
/* 207 */
|
|
8443
8473
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8444
8474
|
|
|
8445
8475
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8472,7 +8502,7 @@ class CurveStethPoolDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
8472
8502
|
}
|
|
8473
8503
|
|
|
8474
8504
|
/***/ }),
|
|
8475
|
-
/*
|
|
8505
|
+
/* 208 */
|
|
8476
8506
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8477
8507
|
|
|
8478
8508
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8506,7 +8536,7 @@ class CurveStethPoolWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
8506
8536
|
}
|
|
8507
8537
|
|
|
8508
8538
|
/***/ }),
|
|
8509
|
-
/*
|
|
8539
|
+
/* 209 */
|
|
8510
8540
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8511
8541
|
|
|
8512
8542
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8514,13 +8544,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8514
8544
|
/* harmony export */ GUniDeposit: () => (/* reexport safe */ _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__.GUniDeposit),
|
|
8515
8545
|
/* harmony export */ GUniWithdraw: () => (/* reexport safe */ _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__.GUniWithdraw)
|
|
8516
8546
|
/* harmony export */ });
|
|
8517
|
-
/* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8518
|
-
/* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8547
|
+
/* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(210);
|
|
8548
|
+
/* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(211);
|
|
8519
8549
|
|
|
8520
8550
|
|
|
8521
8551
|
|
|
8522
8552
|
/***/ }),
|
|
8523
|
-
/*
|
|
8553
|
+
/* 210 */
|
|
8524
8554
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8525
8555
|
|
|
8526
8556
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8575,7 +8605,7 @@ class GUniDeposit extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8575
8605
|
}
|
|
8576
8606
|
|
|
8577
8607
|
/***/ }),
|
|
8578
|
-
/*
|
|
8608
|
+
/* 211 */
|
|
8579
8609
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8580
8610
|
|
|
8581
8611
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8622,7 +8652,7 @@ class GUniWithdraw extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8622
8652
|
}
|
|
8623
8653
|
|
|
8624
8654
|
/***/ }),
|
|
8625
|
-
/*
|
|
8655
|
+
/* 212 */
|
|
8626
8656
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8627
8657
|
|
|
8628
8658
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8631,15 +8661,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8631
8661
|
/* harmony export */ MStableDepositAction: () => (/* reexport safe */ _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__.MStableDepositAction),
|
|
8632
8662
|
/* harmony export */ MStableWithdrawAction: () => (/* reexport safe */ _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.MStableWithdrawAction)
|
|
8633
8663
|
/* harmony export */ });
|
|
8634
|
-
/* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8635
|
-
/* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8636
|
-
/* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
8664
|
+
/* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(213);
|
|
8665
|
+
/* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(215);
|
|
8666
|
+
/* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(216);
|
|
8637
8667
|
|
|
8638
8668
|
|
|
8639
8669
|
|
|
8640
8670
|
|
|
8641
8671
|
/***/ }),
|
|
8642
|
-
/*
|
|
8672
|
+
/* 213 */
|
|
8643
8673
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8644
8674
|
|
|
8645
8675
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8649,7 +8679,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8649
8679
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
8650
8680
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
8651
8681
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
8652
|
-
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
8682
|
+
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(214);
|
|
8653
8683
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
8654
8684
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
8655
8685
|
|
|
@@ -8714,7 +8744,7 @@ class MStableDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8714
8744
|
}
|
|
8715
8745
|
|
|
8716
8746
|
/***/ }),
|
|
8717
|
-
/*
|
|
8747
|
+
/* 214 */
|
|
8718
8748
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8719
8749
|
|
|
8720
8750
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8731,7 +8761,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8731
8761
|
});
|
|
8732
8762
|
|
|
8733
8763
|
/***/ }),
|
|
8734
|
-
/*
|
|
8764
|
+
/* 215 */
|
|
8735
8765
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8736
8766
|
|
|
8737
8767
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8741,7 +8771,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8741
8771
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
8742
8772
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
8743
8773
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
8744
|
-
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
8774
|
+
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(214);
|
|
8745
8775
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
8746
8776
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
8747
8777
|
|
|
@@ -8805,7 +8835,7 @@ class MStableWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
8805
8835
|
}
|
|
8806
8836
|
|
|
8807
8837
|
/***/ }),
|
|
8808
|
-
/*
|
|
8838
|
+
/* 216 */
|
|
8809
8839
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8810
8840
|
|
|
8811
8841
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8839,7 +8869,7 @@ class MStableClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8839
8869
|
}
|
|
8840
8870
|
|
|
8841
8871
|
/***/ }),
|
|
8842
|
-
/*
|
|
8872
|
+
/* 217 */
|
|
8843
8873
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8844
8874
|
|
|
8845
8875
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8847,13 +8877,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8847
8877
|
/* harmony export */ RariDepositAction: () => (/* reexport safe */ _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__.RariDepositAction),
|
|
8848
8878
|
/* harmony export */ RariWithdrawAction: () => (/* reexport safe */ _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.RariWithdrawAction)
|
|
8849
8879
|
/* harmony export */ });
|
|
8850
|
-
/* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8851
|
-
/* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8880
|
+
/* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(218);
|
|
8881
|
+
/* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(219);
|
|
8852
8882
|
|
|
8853
8883
|
|
|
8854
8884
|
|
|
8855
8885
|
/***/ }),
|
|
8856
|
-
/*
|
|
8886
|
+
/* 218 */
|
|
8857
8887
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8858
8888
|
|
|
8859
8889
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8899,7 +8929,7 @@ class RariDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8899
8929
|
}
|
|
8900
8930
|
|
|
8901
8931
|
/***/ }),
|
|
8902
|
-
/*
|
|
8932
|
+
/* 219 */
|
|
8903
8933
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8904
8934
|
|
|
8905
8935
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8946,7 +8976,7 @@ class RariWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8946
8976
|
}
|
|
8947
8977
|
|
|
8948
8978
|
/***/ }),
|
|
8949
|
-
/*
|
|
8979
|
+
/* 220 */
|
|
8950
8980
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8951
8981
|
|
|
8952
8982
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8963,17 +8993,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8963
8993
|
/* harmony export */ AaveV3SwapBorrowRateModeAction: () => (/* reexport safe */ _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.AaveV3SwapBorrowRateModeAction),
|
|
8964
8994
|
/* harmony export */ AaveV3WithdrawAction: () => (/* reexport safe */ _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.AaveV3WithdrawAction)
|
|
8965
8995
|
/* harmony export */ });
|
|
8966
|
-
/* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8967
|
-
/* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8968
|
-
/* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
8969
|
-
/* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
8970
|
-
/* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
8971
|
-
/* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
8972
|
-
/* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
8973
|
-
/* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
8974
|
-
/* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
8975
|
-
/* harmony import */ var _AaveV3DelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
8976
|
-
/* harmony import */ var _AaveV3DelegateWithSigAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
8996
|
+
/* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(221);
|
|
8997
|
+
/* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(222);
|
|
8998
|
+
/* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(223);
|
|
8999
|
+
/* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(224);
|
|
9000
|
+
/* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(225);
|
|
9001
|
+
/* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(226);
|
|
9002
|
+
/* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(227);
|
|
9003
|
+
/* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(228);
|
|
9004
|
+
/* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(229);
|
|
9005
|
+
/* harmony import */ var _AaveV3DelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(230);
|
|
9006
|
+
/* harmony import */ var _AaveV3DelegateWithSigAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(231);
|
|
8977
9007
|
|
|
8978
9008
|
|
|
8979
9009
|
|
|
@@ -8987,7 +9017,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8987
9017
|
|
|
8988
9018
|
|
|
8989
9019
|
/***/ }),
|
|
8990
|
-
/*
|
|
9020
|
+
/* 221 */
|
|
8991
9021
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8992
9022
|
|
|
8993
9023
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9069,7 +9099,7 @@ class AaveV3SupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
9069
9099
|
}
|
|
9070
9100
|
|
|
9071
9101
|
/***/ }),
|
|
9072
|
-
/*
|
|
9102
|
+
/* 222 */
|
|
9073
9103
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9074
9104
|
|
|
9075
9105
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9133,7 +9163,7 @@ class AaveV3BorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
9133
9163
|
}
|
|
9134
9164
|
|
|
9135
9165
|
/***/ }),
|
|
9136
|
-
/*
|
|
9166
|
+
/* 223 */
|
|
9137
9167
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9138
9168
|
|
|
9139
9169
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9215,7 +9245,7 @@ class AaveV3PaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
9215
9245
|
}
|
|
9216
9246
|
|
|
9217
9247
|
/***/ }),
|
|
9218
|
-
/*
|
|
9248
|
+
/* 224 */
|
|
9219
9249
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9220
9250
|
|
|
9221
9251
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9267,7 +9297,7 @@ class AaveV3WithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
9267
9297
|
}
|
|
9268
9298
|
|
|
9269
9299
|
/***/ }),
|
|
9270
|
-
/*
|
|
9300
|
+
/* 225 */
|
|
9271
9301
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9272
9302
|
|
|
9273
9303
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9309,7 +9339,7 @@ class AaveV3SetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
9309
9339
|
}
|
|
9310
9340
|
|
|
9311
9341
|
/***/ }),
|
|
9312
|
-
/*
|
|
9342
|
+
/* 226 */
|
|
9313
9343
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9314
9344
|
|
|
9315
9345
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9382,7 +9412,7 @@ class AaveV3ATokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
|
|
|
9382
9412
|
}
|
|
9383
9413
|
|
|
9384
9414
|
/***/ }),
|
|
9385
|
-
/*
|
|
9415
|
+
/* 227 */
|
|
9386
9416
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9387
9417
|
|
|
9388
9418
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9432,7 +9462,7 @@ class AaveV3CollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODUL
|
|
|
9432
9462
|
}
|
|
9433
9463
|
|
|
9434
9464
|
/***/ }),
|
|
9435
|
-
/*
|
|
9465
|
+
/* 228 */
|
|
9436
9466
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9437
9467
|
|
|
9438
9468
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9485,7 +9515,7 @@ class AaveV3ClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0_
|
|
|
9485
9515
|
}
|
|
9486
9516
|
|
|
9487
9517
|
/***/ }),
|
|
9488
|
-
/*
|
|
9518
|
+
/* 229 */
|
|
9489
9519
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9490
9520
|
|
|
9491
9521
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9531,7 +9561,7 @@ class AaveV3SwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MOD
|
|
|
9531
9561
|
}
|
|
9532
9562
|
|
|
9533
9563
|
/***/ }),
|
|
9534
|
-
/*
|
|
9564
|
+
/* 230 */
|
|
9535
9565
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9536
9566
|
|
|
9537
9567
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9582,7 +9612,7 @@ class AaveV3DelegateCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
9582
9612
|
}
|
|
9583
9613
|
|
|
9584
9614
|
/***/ }),
|
|
9585
|
-
/*
|
|
9615
|
+
/* 231 */
|
|
9586
9616
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9587
9617
|
|
|
9588
9618
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9626,7 +9656,7 @@ class AaveV3DelegateWithSigCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE
|
|
|
9626
9656
|
}
|
|
9627
9657
|
|
|
9628
9658
|
/***/ }),
|
|
9629
|
-
/*
|
|
9659
|
+
/* 232 */
|
|
9630
9660
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9631
9661
|
|
|
9632
9662
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9635,15 +9665,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9635
9665
|
/* harmony export */ ConvexDepositAction: () => (/* reexport safe */ _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__.ConvexDepositAction),
|
|
9636
9666
|
/* harmony export */ ConvexWithdrawAction: () => (/* reexport safe */ _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.ConvexWithdrawAction)
|
|
9637
9667
|
/* harmony export */ });
|
|
9638
|
-
/* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
9639
|
-
/* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
9640
|
-
/* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
9668
|
+
/* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(233);
|
|
9669
|
+
/* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(236);
|
|
9670
|
+
/* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(237);
|
|
9641
9671
|
|
|
9642
9672
|
|
|
9643
9673
|
|
|
9644
9674
|
|
|
9645
9675
|
/***/ }),
|
|
9646
|
-
/*
|
|
9676
|
+
/* 233 */
|
|
9647
9677
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9648
9678
|
|
|
9649
9679
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9652,7 +9682,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9652
9682
|
/* harmony export */ });
|
|
9653
9683
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
9654
9684
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
9655
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
9685
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(234);
|
|
9656
9686
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(39);
|
|
9657
9687
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
9658
9688
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
@@ -9703,7 +9733,7 @@ class ConvexDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
9703
9733
|
}
|
|
9704
9734
|
|
|
9705
9735
|
/***/ }),
|
|
9706
|
-
/*
|
|
9736
|
+
/* 234 */
|
|
9707
9737
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9708
9738
|
|
|
9709
9739
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9713,7 +9743,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9713
9743
|
/* harmony export */ getConvexPool: () => (/* binding */ getConvexPool),
|
|
9714
9744
|
/* harmony export */ poolInfo: () => (/* reexport default export from named module */ _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
|
|
9715
9745
|
/* harmony export */ });
|
|
9716
|
-
/* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
9746
|
+
/* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(235);
|
|
9717
9747
|
|
|
9718
9748
|
|
|
9719
9749
|
|
|
@@ -9735,13 +9765,13 @@ var WithdrawOption = {
|
|
|
9735
9765
|
var getConvexPool = curveLpToken => _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__.find(e => e.lpToken === curveLpToken);
|
|
9736
9766
|
|
|
9737
9767
|
/***/ }),
|
|
9738
|
-
/*
|
|
9768
|
+
/* 235 */
|
|
9739
9769
|
/***/ ((module) => {
|
|
9740
9770
|
|
|
9741
9771
|
module.exports = /*#__PURE__*/JSON.parse('[{"pid":0,"lpToken":"0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2","token":"0x32512Bee3848bfcBb7bEAf647aa697a100f3b706","gauge":"0x7ca5b0a2910B33e9759DC7dDB0413949071D7575","crvRewards":"0xf34DFF761145FF0B05e917811d488B441F33a968","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":1,"lpToken":"0x9fC689CCaDa600B6DF723D9E47D84d76664a1F23","token":"0xA1c3492b71938E144ad8bE4c2fB6810b01A43dD8","gauge":"0xBC89cd85491d81C6AD2954E6d0362Ee29fCa8F53","crvRewards":"0x8B55351ea358e5Eda371575B031ee24F462d503e","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":2,"lpToken":"0xdF5e0e81Dff6FAF3A7e52BA697820c5e32D806A8","token":"0x0928F6753880A03628eB0be07b77992c8af37874","gauge":"0xFA712EE4788C042e2B7BB55E6cb8ec569C4530c1","crvRewards":"0xd802a8351A76ED5eCd89A7502Ca615F2225A585d","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":3,"lpToken":"0x3B3Ac5386837Dc563660FB6a0937DFAa5924333B","token":"0x59bB786F222d3f0f00B0dA31B799Fff80D552940","gauge":"0x69Fb7c45726cfE2baDeE8317005d3F94bE838840","crvRewards":"0x602c4cD53a715D8a7cf648540FAb0d3a2d546560","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":4,"lpToken":"0xC25a3A3b969415c80451098fa907EC722572917F","token":"0x11D200ef1409cecA8D6d23e6496550f707772F11","gauge":"0xA90996896660DEcC6E997655E065b23788857849","crvRewards":"0x22eE18aca7F3Ee920D01F25dA85840D12d98E8Ca","stash":"0xD2f2B9504Ef708b9f3Bc53f1525353bAaE1B17e4","shutdown":false,"extraRewards":[{"pool":"0x81fce3e10d12da6c7266a1a169c4c96813435263","token":"0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f"}]},{"pid":5,"lpToken":"0xD905e2eaeBe188fc92179b6350807D8bd91Db0D8","token":"0x2eA94b0d3349A284488ACF2934E494b2f58ef647","gauge":"0x64E3C23bfc40722d3B649844055F1D51c1ac041d","crvRewards":"0xe3DaafC8C14147d5B4A7a56F0BfdED240158e51e","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":6,"lpToken":"0x49849C98ae39Fff122806C06791Fa73784FB3675","token":"0x74b79021Ea6De3f0D1731fb8BdfF6eE7DF10b8Ae","gauge":"0xB1F2cdeC61db658F091671F5f199635aEF202CAC","crvRewards":"0x8E299C62EeD737a5d5a53539dF37b5356a27b07D","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":7,"lpToken":"0x075b1bb99792c9E1041bA13afEf80C91a1e70fB3","token":"0xbA723E335eC2939D52a2efcA2a8199cb4CB93cC3","gauge":"0x705350c4BcD35c9441419DdD5d2f097d7a55410F","crvRewards":"0xd727A5A6D1C7b31Ff9Db4Db4d24045B7dF0CFF93","stash":"0x7B3EE538398829c96E4B187216c7aB2946A620C4","shutdown":false,"extraRewards":[{"pool":"0x7c41906df8395af4387fa79b85c845069f88eec3","token":"0x330416c863f2acce7af9c9314b422d24c672534a"}]},{"pid":8,"lpToken":"0xb19059ebb43466C323583928285a49f558E572Fd","token":"0x33c00bF8CFDf42929E0884d230A55F963221f8f3","gauge":"0x4c18E409Dc8619bFb6a1cB56D114C3f592E0aE79","crvRewards":"0x618BD6cBA676a46958c63700C04318c84a7b7c0A","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":9,"lpToken":"0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490","token":"0x30D9410ED1D5DA1F6C8391af5338C93ab8d4035C","gauge":"0xbFcF63294aD7105dEa65aA58F8AE5BE2D9d0952A","crvRewards":"0x689440f2Ff927E1f24c72F1087E1FAF471eCe1c8","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":10,"lpToken":"0xD2967f45c4f384DEEa880F807Be904762a3DeA07","token":"0x15c2471ef46Fa721990730cfa526BcFb45574576","gauge":"0xC5cfaDA84E902aD92DD40194f0883ad49639b023","crvRewards":"0x7A7bBf95C44b144979360C3300B54A7D34b44985","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":11,"lpToken":"0x5B5CFE992AdAC0C9D48E05854B2d91C73a003858","token":"0xe4de776C0eA0974bfA39B8cbB9491091C8cDc1ff","gauge":"0x2db0E83599a91b508Ac268a6197b8B14F5e72840","crvRewards":"0x353e489311b21355461353fEC2d02B73EF0eDe7f","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":12,"lpToken":"0x97E2768e8E73511cA874545DC5Ff8067eB19B787","token":"0x47941F99F4371CC26637CaEdBbd8Ba5F4bfE5149","gauge":"0xC2b1DF84112619D190193E48148000e3990Bf627","crvRewards":"0xa50e9071aCaD20b31cd2bbe4dAa816882De82BBe","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":13,"lpToken":"0x4f3E8F405CF5aFC05D68142F3783bDfE13811522","token":"0x3689f325E88c2363274E5F3d44b6DaB8f9e1f524","gauge":"0xF98450B5602fa59CC66e1379DFfB6FDDc724CfC4","crvRewards":"0x4a2631d090e8b40bBDe245e687BF09e5e534A239","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":14,"lpToken":"0x1AEf73d49Dedc4b1778d0706583995958Dc862e6","token":"0xd34d466233c5195193dF712936049729140DBBd7","gauge":"0x5f626c30EC1215f4EdCc9982265E8b1F411D1352","crvRewards":"0xDBFa6187C79f4fE4Cda20609E75760C5AaE88e52","stash":"0x2eEa402ff31c580630b8545A33EDc00881E6949c","shutdown":false,"extraRewards":[{"pool":"0x93a5c724c4992fcbda6b96f06fa15eb8b5c485b7","token":"0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2"}]},{"pid":15,"lpToken":"0xC2Ee6b0334C261ED60C72f6054450b61B8f18E35","token":"0x8b876C2C02B1f2Ac6Ec207B7f2f06034A4316A87","gauge":"0x4dC4A289a8E33600D8bD4cf5F6313E43a37adec7","crvRewards":"0xedfCCF611D7c40F43e77a1340cE2C29EEEC27205","stash":"0x3a076e8F088bFa7a43e1209B2E460927071e15F2","shutdown":false,"extraRewards":[{"pool":"0x94c259dc4c6df248b0b5d23c055cb7574a587d67","token":"0x8762db106b2c2a0bccb3a80d1ed41273552616e8"}],"noTest":true},{"pid":16,"lpToken":"0x64eda51d3Ad40D56b9dFc5554E06F94e1Dd786Fd","token":"0x36CED690A1516861f26755b978EE62c1157CFFF9","gauge":"0x6828bcF74279eE32f2723eC536c22c51Eed383C6","crvRewards":"0x081A6672f07B615B402e7558a867C97FA080Ce35","stash":"0x21FdcdeBf375e67219c1Bfa266BCfDaA36a2b4Fe","shutdown":false,"extraRewards":[{"pool":"0x2aa030dcb729cf94bc096bd00d377aa719a09371","token":"0x85eee30c52b0b379b046fb0f85f4f3dc3009afec"}]},{"pid":17,"lpToken":"0x3a664Ab939FD8482048609f652f9a0B0677337B9","token":"0x06f4fFa5C3636AaA5C30B3DB97bfd1cd9Ac24A19","gauge":"0xAEA6c312f4b3E04D752946d329693F7293bC2e6D","crvRewards":"0x1992b82A8cCFC8f89785129D6403b13925d6226E","stash":"0x07815651B8F1c5bE84797840543F304b7F1aeC2a","shutdown":false,"extraRewards":[{"pool":"0x666f8eee6fd6839853993977cc86a7a51425673c","token":"0x20c36f062a31865bed8a5b1e512d9a1a20aa333a"}]},{"pid":18,"lpToken":"0xDE5331AC4B3630f94853Ff322B66407e0D6331E8","token":"0x21Cce64289407081744F087950b9DB32906470fC","gauge":"0xd7d147c6Bb90A718c3De8C0568F9B560C79fa416","crvRewards":"0x2d3C90AEB11D1393CA839Afc9587515B1325D77A","stash":"0x930CfB64130a90d42eD37d4616792C9dEB791faf","shutdown":false,"extraRewards":[{"pool":"0xaf138b29205c2246b069ed8f0b213b205fbc14e0","token":"0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed"}]},{"pid":19,"lpToken":"0x410e3E86ef427e30B9235497143881f717d93c2A","token":"0x2E1f902b9067b5fDd7AF29ef05D4fF6212588388","gauge":"0xdFc7AdFa664b08767b735dE28f9E84cd30492aeE","crvRewards":"0x61D741045cCAA5a215cF4E5e55f20E1199B4B843","stash":"0xd852eFBEd0f49a065194ca92c9F305DE6DdCbF35","shutdown":false,"extraRewards":[]},{"pid":20,"lpToken":"0x2fE94ea3d5d4a175184081439753DE15AeF9d614","token":"0xc1C030139eEc070Ed8FD092CC8C273C638A18bBe","gauge":"0x11137B10C210b579405c21A07489e28F3c040AB1","crvRewards":"0xeeeCE77e0bc5e59c77fc408789A9A172A504bD2f","stash":"0x9a669fb0191D977e588b20CdA3C52EDbC6c9926c","shutdown":false,"extraRewards":[{"pool":"0xae97d3766924526084da88ba9b2bd7af989bf6fc","token":"0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9"},{"pool":"0x22a07a6bda1cecbe2a671203e2114d8a170e5529","token":"0xbc19712feb3a26080ebf6f2f7849b417fdd792ca"}]},{"pid":21,"lpToken":"0x94e131324b6054c0D789b190b2dAC504e4361b53","token":"0x67c4f788FEB82FAb27E3007daa3d7b90959D5b89","gauge":"0x3B7020743Bc2A4ca9EaF9D0722d42E20d6935855","crvRewards":"0xd4Be1911F8a0df178d6e7fF5cE39919c273E2B7B","stash":"0x6249fD91fE9FF597399c1B192D5A25Cd22Eba6dd","shutdown":false,"extraRewards":[]},{"pid":22,"lpToken":"0x194eBd173F6cDacE046C53eACcE9B953F28411d1","token":"0xd7E2b9494c529b42Dea53EF6a237C16502E6A927","gauge":"0x90Bb609649E0451E5aD952683D64BD2d1f245840","crvRewards":"0xcB8F69E0064d8cdD29cbEb45A14cf771D904BcD3","stash":"0x007Cc4b4E9d9D088a9ae0e5261995D69e93B8E4C","shutdown":false,"extraRewards":[]},{"pid":23,"lpToken":"0xA3D87FffcE63B53E0d54fAa1cc983B7eB0b74A9c","token":"0xAF1d4C576bF55f6aE493AEebAcC3a227675e5B98","gauge":"0x3C0FFFF15EA30C35d7A85B85c0782D6c94e1d238","crvRewards":"0x192469CadE297D6B21F418cFA8c366b63FFC9f9b","stash":"0x1e6f5B8b4CAc5806D182B33A35d0fFF5F4004e86","shutdown":false,"extraRewards":[]},{"pid":24,"lpToken":"0xFd2a8fA60Abd58Efe3EeE34dd494cD491dC14900","token":"0x23F224C37C3A69A058d86a54D3f561295A93d542","gauge":"0xd662908ADA2Ea1916B3318327A97eB18aD588b5d","crvRewards":"0xE82c1eB4BC6F92f85BF7EB6421ab3b882C3F5a7B","stash":"0x5D4CF00939aa5F7C2cEb10c88615E9bcb0dd67fa","shutdown":false,"extraRewards":[{"pool":"0x00469d388b06127221d6310843a43d079eb2bb18","token":"0x4da27a545c0c5b758a6ba100e3a049001de870f5"}]},{"pid":25,"lpToken":"0x06325440D014e39736583c165C2963BA99fAf14E","token":"0x9518c9063eB0262D791f38d8d6Eb0aca33c63ed0","gauge":"0x182B723a58739a9c974cFDB385ceaDb237453c28","crvRewards":"0x0A760466E1B4621579a82a39CB56Dda2F4E70f03","stash":"0x9710fD4e5CA524f1049EbeD8936c07C81b5EAB9f","shutdown":false,"extraRewards":[{"pool":"0x008aea5036b819b4feaed10b2190fbb3954981e8","token":"0x5a98fcbea516cf06857215779fd812ca3bef1b32"}]},{"pid":26,"lpToken":"0x02d341CcB60fAaf662bC0554d13778015d1b285C","token":"0x09CCD0892b696AB21436e51588a7a7f8b649733d","gauge":"0x462253b8F74B72304c145DB0e4Eebd326B22ca39","crvRewards":"0xF86AE6790654b70727dbE58BF1a863B270317fD0","stash":"0xd2D46004b981FdE1e4D39d0C24E1Be1e93689DD9","shutdown":false,"extraRewards":[{"pool":"0x20165075174b51a2f9efbf7d6d8f3c72bbc63064","token":"0x4da27a545c0c5b758a6ba100e3a049001de870f5"}]},{"pid":27,"lpToken":"0xaA17A236F2bAdc98DDc0Cf999AbB47D47Fc0A6Cf","token":"0x7E96955b66c89B931BBDAf187740Cc0fF2602F21","gauge":"0x6d10ed2cF043E6fcf51A0e7b4C2Af3Fa06695707","crvRewards":"0x8798b81b0261934aa850C8de8622472bfdc143F4","stash":"0x423C444589CE5dB1E6F99820A5f95b3a57976598","shutdown":false,"extraRewards":[{"pool":"0x177252ac74f1d77513971aa85af7009c43ecdee2","token":"0xe0ad1806fd3e7edf6ff52fdb822432e847411033"},{"pool":"0xc095cec98a9f8ad6d2baa282a8e6be246f98bd25","token":"0x8290333cef9e6d528dd5618fb97a76f268f3edd4"}]},{"pid":28,"lpToken":"0x7Eb40E450b9655f4B3cC4259BCC731c63ff55ae6","token":"0x7a5dC1FA2e1B10194bD2e2e9F1A224971A681444","gauge":"0x055be5DDB7A925BfEF3417FC157f53CA77cA7222","crvRewards":"0x24DfFd1949F888F91A0c8341Fc98a3F280a782a8","stash":"0xBE25313c53360780e03233Cc70a4409367EC15aE","shutdown":false,"extraRewards":[{"pool":"0x5f91615268be6b4add646b2560785b8f17dccbb4","token":"0x92e187a03b6cd19cb6af293ba17f2745fd2357d5"}]},{"pid":29,"lpToken":"0x5282a4eF67D9C33135340fB3289cc1711c13638C","token":"0x912EC00eaEbf3820a9B0AC7a5E15F381A1C91f22","gauge":"0xF5194c3325202F456c95c1Cf0cA36f8475C1949F","crvRewards":"0x3E03fFF82F77073cc590b656D42FceB12E4910A8","stash":"0x3aEaAB3eF0b5a484d8A2380215eA0A64d3101A6D","shutdown":false,"extraRewards":[]},{"pid":30,"lpToken":"0xcee60cFa923170e4f8204AE08B4fA6A3F5656F3a","token":"0xD37969740d78C94C648d74671B8BE31eF43c30aB","gauge":"0xFD4D8a17df4C27c1dD245d153ccf4499e806C87D","crvRewards":"0x9700152175dc22E7d1f3245fE3c1D2cfa3602548","stash":"0x63201dc22e52985153E038086c448252d44Bed40","shutdown":false,"extraRewards":[]},{"pid":31,"lpToken":"0xEcd5e75AFb02eFa118AF914515D6521aaBd189F1","token":"0x0A2eA49EB5F9e23058deffD509D13DDd553c2A19","gauge":"0x359FD5d6417aE3D8D6497d9B2e7A890798262BA4","crvRewards":"0x308b48F037AAa75406426dACFACA864ebd88eDbA","stash":"0x12566645C209C1518BD25BdD3B0fd0bAe0910344","shutdown":false,"extraRewards":[]},{"pid":32,"lpToken":"0xd632f22692FaC7611d2AA1C0D552930D43CAEd3B","token":"0xbE0F6478E0E4894CFb14f32855603A083A57c7dA","gauge":"0x72E158d38dbd50A483501c24f792bDAAA3e7D55C","crvRewards":"0xB900EF131301B307dB5eFcbed9DBb50A3e209B2e","stash":"0x10a63847e6cdD2b07e0a22D1f30eB037a72eB790","shutdown":false,"extraRewards":[{"pool":"0xcdec6714eb482f28f4889a0c122868450cdbf0b0","token":"0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"}]},{"pid":33,"lpToken":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","token":"0xFB9B2f06FDb404Fd3E2278E9A9edc8f252F273d0","gauge":"0x9B8519A9a00100720CCdC8a120fBeD319cA47a14","crvRewards":"0x2ad92A7aE036a038ff02B96c88de868ddf3f8190","stash":"0x06D972728A9d05CA6F27EDc01e20b50A60b1Deed","shutdown":false,"extraRewards":[{"pool":"0x55d59b791f06dc519b176791c4e037e8cf2f6361","token":"0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d"}]},{"pid":34,"lpToken":"0x4807862AA8b2bF68830e4C8dc86D0e9A998e085a","token":"0x02D784f98A312aF3e2771297Feff1Da8273e4F29","gauge":"0xd4B22fEdcA85E684919955061fDf353b9d38389b","crvRewards":"0xbD223812d360C9587921292D0644D18aDb6a2ad0","stash":"0xBE3ED241c90F39cC50450C4937523FCC8d3e9bbc","shutdown":false,"extraRewards":[]},{"pid":35,"lpToken":"0x53a901d48795C58f485cBB38df08FA96a24669D5","token":"0x7ADd8D0E923CB692DF6bC65d96d510f0E2fC37af","gauge":"0x824F13f1a2F29cFEEa81154b46C0fc820677A637","crvRewards":"0x61dB6c2321f784c8fAb8d5eF80f58F27C831dCc8","stash":"0x644C8d1eD4b6aA68738a93C5c13c7fC19e126587","shutdown":false,"extraRewards":[{"pool":"0x681a790debe586a64eea055bf0983cd6629d8359","token":"0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d"}]},{"pid":36,"lpToken":"0x43b4FdFD4Ff969587185cDB6f0BD875c5Fc83f8c","token":"0xCA3D9F45FfA69ED454E66539298709cb2dB8cA61","gauge":"0x9582C4ADACB3BCE56Fea3e590F05c3ca2fb9C477","crvRewards":"0x02E2151D4F351881017ABdF2DD2b51150841d5B3","stash":"0x521e6EEfDa35f7228f8f83462552bDB41D64d86B","shutdown":false,"extraRewards":[{"pool":"0xd731495bb78a4250bc094686788f3ff890dee0f4","token":"0xdbdb4d16eda451d0503b854cf79d55697f90c8df"}]},{"pid":37,"lpToken":"0xcA3d75aC011BF5aD07a98d02f18225F9bD9A6BDF","token":"0x18684099414dcEF486F4FA5b4e44e6eA53C8c554","gauge":"0x6955a55416a06839309018A8B0cB72c4DDC11f15","crvRewards":"0x5Edced358e6C0B435D53CC30fbE6f5f0833F404F","stash":"0x35e86E54eCb0227fe33382c35E12856cF227E9ce","shutdown":false,"extraRewards":[]},{"pid":38,"lpToken":"0xc4AD29ba4B3c580e6D59105FFf484999997675Ff","token":"0x903C9974aAA431A765e60bC07aF45f0A1B3b61fb","gauge":"0xDeFd8FdD20e0f34115C7018CCfb655796F6B2168","crvRewards":"0x9D5C5E364D81DaB193b72db9E9BE9D8ee669B652","stash":"0xDb1A0Bb8C14Bc7B4eDA5ca95B4A6C6013a7b359D","shutdown":false,"extraRewards":[]},{"pid":39,"lpToken":"0xFD5dB7463a3aB53fD211b4af195c5BCCC1A03890","token":"0x2b2175AC371Ec2900AC39fb87452340F65CC9895","gauge":"0xe8060Ad8971450E624d5289A10017dD30F5dA85F","crvRewards":"0xD814BFC091111E1417a669672144aFFAA081c3CE","stash":"0x353460EACDAaEC993eCdA986440F4c343BBf6c05","shutdown":false,"extraRewards":[]},{"pid":40,"lpToken":"0x5a6A4D54456819380173272A5E8E9B9904BdF41B","token":"0xabB54222c2b77158CC975a2b715a3d703c256F05","gauge":"0xd8b712d29381748dB89c36BCa0138d7c75866ddF","crvRewards":"0xFd5AbF66b003881b88567EB9Ed9c651F14Dc4771","stash":"0xEd3D937A12fEed5298827B3adf05caaFfb0efDda","shutdown":false,"extraRewards":[{"pool":"0x69a92f1656cd2e193797546cfe2eaf32eaccf6f7","token":"0x090185f2135308bad17527004364ebcc2d37e5f6"}]},{"pid":41,"lpToken":"0x9D0464996170c6B9e75eED71c68B99dDEDf279e8","token":"0x8FDF7cabfEc73d5FfD1447867834b4cf39B745B7","gauge":"0x903dA6213a5A12B61c821598154EfAd98C3B20E4","crvRewards":"0x0392321e86F42C2F94FBb0c6853052487db521F0","stash":"0xF025A9FbcaA41E03e7a443716fe2182d13cf80a4","shutdown":false,"extraRewards":[{"pool":"0xbe4dea8e5d1e53fad661610e47501f858f25852d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":42,"lpToken":"0x8818a9bb44Fbf33502bE7c15c500d0C783B73067","token":"0xF527FF4d2f8D84ec51D31C6F533B8cC78AFf6918","gauge":"0xeFF437A56A22D7dD86C1202A308536ED8C7da7c1","crvRewards":"0xbA8fE590498ed24D330Bb925E69913b1Ac35a81E","stash":"0xc87E93D6138c08a99b581f6dE4424c1e4b71A03F","shutdown":false,"extraRewards":[{"pool":"0x771bc5c888d1b318d0c5b177e4f996d3d5fd3d18","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x8a3f52c2eb02de2d8356a8286c96909352c62b10","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":43,"lpToken":"0xD6Ac1CB9019137a896343Da59dDE6d097F710538","token":"0xe6b9b86a593E6c33fa3F0887753cdC39EA49B246","gauge":"0x63d9f3aB7d0c528797A12a0684E50C397E9e79dC","crvRewards":"0x51a16DA36c79E28dD3C8c0c19214D8aF413984Aa","stash":"0xA335f705e0e33e986Bae79244F2Cd73899932290","shutdown":false,"extraRewards":[{"pool":"0xe689db5d753abc411acb8a3fef226c08acdae13f","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x00a4f5d12e3faa909c53cdcc90968f735633e988","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":44,"lpToken":"0x3F1B0278A9ee595635B61817630cC19DE792f506","token":"0xBec1Fa170974F0B38Eb76D8ca87053AbD5cedffF","gauge":"0x05ca5c01629a8E5845f12ea3A03fF7331932233A","crvRewards":"0xb1Fae59F23CaCe4949Ae734E63E42168aDb0CcB3","stash":"0xCc96f06fa34d934a90089793b27d36801842A599","shutdown":false,"extraRewards":[{"pool":"0x91ad51f0897552ce77f76b44e9a86b4ad2b28c25","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x040a6ae6314e190974ee4839f3c2fbf849ef54eb","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":45,"lpToken":"0x19b080FE1ffA0553469D20Ca36219F17Fcf03859","token":"0x864510e93c38C771adC1B67308cE0b7c4AA1AA9e","gauge":"0x99fb76F75501039089AAC8f20f487bf84E51d76F","crvRewards":"0xCd0559ADb6fAa2fc83aB21Cf4497c3b9b45bB29f","stash":"0x65d3834Ca2F62AB3f484cD50bB8a2Ba784cc69AA","shutdown":false,"extraRewards":[{"pool":"0x21034ccc4f8d07d0cf8998fdd4c45e426540dec1","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0xba5ef047ce02cc0096db3bc8ed84aad14291f8a0","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":46,"lpToken":"0x9c2C8910F113181783c249d8F6Aa41b51Cde0f0c","token":"0xcd555A686486160D815C89D92EE69A88E356f34C","gauge":"0x2fA53e8fa5fAdb81f4332C8EcE39Fe62eA2f919E","crvRewards":"0xa5A5905efc55B05059eE247d5CaC6DD6791Cfc33","stash":"0x44789Fa0e02ed06E3cA4A1405CBef7EA2F11D282","shutdown":false,"extraRewards":[{"pool":"0x9d9ebcc8e7b4ef061c0f7bab532d1710b874f789","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x1c86460640457466e2ec86916b4a91ed86ce0d1e","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":47,"lpToken":"0x8461A004b50d321CB22B7d034969cE6803911899","token":"0xAA4e7d24230B1F3AF324C7574ABD5D28525807cA","gauge":"0x1750a3a3d80A3F5333BBe9c4695B0fAd41061ab1","crvRewards":"0x8F18C0AF0d7d511E8Bdc6B3c64926B04EDfE4892","stash":"0xb75b7297f29d5f6211f112D24b1edF9Dc77eD834","shutdown":false,"extraRewards":[{"pool":"0xe3a64e08eebf38b19a3d9fec51d8cd5a8898dd5e","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x93649cd43635bc5f7ad8fa2fa27cb9ae765ec58a","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":48,"lpToken":"0xB15fFb543211b558D40160811e5DcBcd7d5aaac9","token":"0x281C17920DaB8B2Cb3ce631E2D53c8ccE94262B4","gauge":"0xB15fFb543211b558D40160811e5DcBcd7d5aaac9","crvRewards":"0xc3628b8FAaDe10aCeAe88c9b982cE0AAc9bBaaD3","stash":"0x01140351069af98416cC08b16424b9E765436531","shutdown":false,"extraRewards":[],"noTest":true},{"pid":49,"lpToken":"0xC4C319E2D4d66CcA4464C0c2B32c9Bd23ebe784e","token":"0x0BF4C896100801cecFF4ad1e742E5227D67EcD7b","gauge":"0x12dCD9E8D1577b5E4F066d8e7D404404Ef045342","crvRewards":"0x48Bc302d8295FeA1f8c3e7F57D4dDC9981FEE410","stash":"0xfFA249074F7846Ee072e2068A1DEC44eDD802491","shutdown":false,"extraRewards":[{"pool":"0xcec9a6efff1daf52af12beebf87f81bda7b95c0b","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":50,"lpToken":"0x3Fb78e61784C9c637D560eDE23Ad57CA1294c14a","token":"0x3c5208849fa77Aaa98483527f20303cAF25a1Ad8","gauge":"0xD9277b0D007464eFF133622eC0d42081c93Cef02","crvRewards":"0x7CDA2a83D29d7Fc2ccb8F7716b5c1c34781aeb12","stash":"0xb24Ea588066fBEB9610141d4b779d5D9F80A1180","shutdown":false,"extraRewards":[]},{"pid":51,"lpToken":"0x5B3b5DF2BF2B6543f78e053bD91C4Bdd820929f1","token":"0x23e3AAAA5034165cF194F19692b41d801BEB5304","gauge":"0x9AF13a7B1f1Bbf1A2B05c6fBF23ac23A9E573b4E","crvRewards":"0xA689C00F3fd87dD3871C79C73343cd9F7957377E","stash":"0x3f2A3f6ab577B562a193C008686fb81b5eEe6586","shutdown":false,"extraRewards":[{"pool":"0xb9e2e39c9c804a01f1fcb4e86f765774d511d535","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":52,"lpToken":"0x55A8a39bc9694714E2874c1ce77aa1E599461E18","token":"0x766A8D4DE01D3eD575CdEf0587Eaf615eCB46726","gauge":"0xB518f5e3242393d4eC792BD3f44946A3b98d0E48","crvRewards":"0xC62DE533ea77D46f3172516aB6b1000dAf577E89","stash":"0xa69e5023d5Dc71ec5Bf602A5AC80cb0C5078423E","shutdown":false,"extraRewards":[{"pool":"0x27801399d60594bfede955d54c3e85b2f00179c5","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":53,"lpToken":"0xFbdCA68601f835b27790D98bbb8eC7f05FDEaA9B","token":"0xb43ed35B5A3a9544BBEd8039c67AB04AD428deEa","gauge":"0x346C7BB1A7a6A30c8e81c14e90FC2f0FBddc54d8","crvRewards":"0x4F2b8a15d0Dd58c1eB60bd53e966872828519Cee","stash":"0x4fd82224bEa0653215A5d6cAec59689Deb018c46","shutdown":false,"extraRewards":[{"pool":"0xaaf75a94394f6d06e01cce62e2545ceffbfa1e2d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":54,"lpToken":"0x3D229E1B4faab62F621eF2F6A610961f7BD7b23B","token":"0x18F320B124A80ee2FA491e1438CdA771c3d8c84b","gauge":"0x65CA7Dc5CB661fC58De57B1E1aF404649a27AD35","crvRewards":"0xb0c1B7b83Baae51284B8BbBa02Ec37742440199d","stash":"0x6Ffb6C270D2E9AeEd7654eaEe8A39310e2bB508e","shutdown":false,"extraRewards":[]},{"pid":55,"lpToken":"0x3b6831c0077a1e44ED0a21841C3bC4dC11bCE833","token":"0x410ACa1a116cCc718e9A0BDd8080655a52f1FAC4","gauge":"0x4Fd86Ce7Ecea88F7E0aA78DC12625996Fb3a04bC","crvRewards":"0xD2B756Af4E345A8657C0656C148aDCD3000C97A4","stash":"0x03d1e553667F0cf0A4775069DAA5ed8F125308e8","shutdown":false,"extraRewards":[]},{"pid":56,"lpToken":"0x87650D7bbfC3A9F10587d7778206671719d9910D","token":"0xd1daFC25bf672a52eF9c092258389dC2AD078309","gauge":"0x25f0cE4E2F8dbA112D9b115710AC297F816087CD","crvRewards":"0x7D536a737C13561e0D2Decf1152a653B4e615158","stash":"0x899996778C4e0cae5680d76262E44a2a7a5852A1","shutdown":false,"extraRewards":[{"pool":"0x08ede581d9b9ae55fa7decc4e4331d191bbbf9db","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0x8a05801c1512f6018e450b0f69e9ca7b985fcea3","token":"0x8207c1ffc5b6804f6024322ccf34f29c3541ae26"}]},{"pid":57,"lpToken":"0xc270b3B858c335B6BA5D5b10e2Da8a09976005ad","token":"0x918696AB70bF4F9a22497fC73903F3498a885980","gauge":"0xC95bdf13A08A547E4dD9f29B00aB7fF08C5d093d","crvRewards":"0x500E169c15961DE8798Edb52e0f88a8662d30EC5","stash":"0x1aE471f8C3338e826a5f6f47Cdf33b504Da7cD83","shutdown":false,"extraRewards":[]},{"pid":58,"lpToken":"0xBaaa1F5DbA42C3389bDbc2c9D2dE134F5cD0Dc89","token":"0x88c82d9767CC8AF564Da81dDD10741fa9D875682","gauge":"0x16C2beE6f55dAB7F494dBa643fF52ef2D47FBA36","crvRewards":"0x329cb014b562d5d42927cfF0dEdF4c13ab0442EF","stash":"0x755758DcAa6e8072B541863983ADA9c7BDA7c420","shutdown":false,"extraRewards":[{"pool":"0x880c2c5c4ea8cef892a90e3f714eb60144c08c30","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":59,"lpToken":"0xCEAF7747579696A2F0bb206a14210e3c9e6fB269","token":"0x2d2006135e682984a8a2eB74F5C87c2251cC71E9","gauge":"0xb0f5d00e5916c8b8981e99191A1458704B587b2b","crvRewards":"0x7e2b9B5244bcFa5108A76D5E7b507CFD5581AD4A","stash":"0x77Aa721Ba9C1423c5DBce6E0804887eEbD99cd00","shutdown":false,"extraRewards":[{"pool":"0x28a68d9c58086daeb32d5c9297366cc91e50215d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":60,"lpToken":"0xb9446c4Ef5EBE66268dA6700D26f96273DE3d571","token":"0xC98786A97d667Fe67AAe694BD7949813A73f1BF0","gauge":"0x1E212e054d74ed136256fc5a5DDdB4867c6E003F","crvRewards":"0x4a9b7eDD67f58654a2c33B587f98c5709AC7d482","stash":"0x54aD657aEe30c0f954944f639852d50960689Fa4","shutdown":false,"extraRewards":[{"pool":"0x74835a39fd0e72e142d5e83d514e3ef6e7642220","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0xb83eaada3757432f7a894944c3ac154fbdbd8b46","token":"0x31429d1856ad1377a8a0079410b297e1a9e214c2"}]},{"pid":61,"lpToken":"0xEd4064f376cB8d68F770FB1Ff088a3d0F3FF5c4d","token":"0x0Fb8dcdD95e4C48D3dD0eFA4086512f6F8FD4565","gauge":"0x1cEBdB0856dd985fAe9b8fEa2262469360B8a3a6","crvRewards":"0x085A2054c51eA5c91dbF7f90d65e728c0f2A270f","stash":"0x285972e5799cF224c4C6e81E9e47d4ae9EA7CBD3","shutdown":false,"extraRewards":[{"pool":"0xe1ecbb4181378e2346eac90eb5606c01aa08f052","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":62,"lpToken":"0xAA5A67c256e27A5d80712c51971408db3370927D","token":"0xb3E8f3D7Ec208a032178880955f6c877479d1FDd","gauge":"0x8Fa728F393588E8D8dD1ca397E9a710E53fA553a","crvRewards":"0x835f69e58087E5B6bffEf182fe2bf959Fe253c3c","stash":"0xE7c811697ac3dd92cb100882dAc5Bd4183Bab747","shutdown":false,"extraRewards":[]},{"pid":63,"lpToken":"0x6BA5b4e438FA0aAf7C1bD179285aF65d13bD3D90","token":"0x2937Ef019db60C826Fe6141EB300847f85E66956","gauge":"0x66ec719045bBD62db5eBB11184c18237D3Cc2E62","crvRewards":"0x29B91c6CEC4F43aFdb6f6d71FAf1C03d6b712f55","stash":"0xAEA94fC182b7Fe73E25C0C7954FE1d5f5173C0B9","shutdown":false,"extraRewards":[]},{"pid":64,"lpToken":"0x3A283D9c08E8b55966afb64C515f5143cf907611","token":"0x0bC857f97c0554d1d0D602b56F2EEcE682016fBA","gauge":"0x7E1444BA99dcdFfE8fBdb42C02F0005D14f13BE1","crvRewards":"0xb1Fb0BA0676A1fFA83882c7F4805408bA232C1fA","stash":"0x679df29F380F1BEc31657cd6a5638aec4AEA3300","shutdown":false,"extraRewards":[{"pool":"0x834b9147fd23bf131644abc6e557daf99c5cda15","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":65,"lpToken":"0x8484673cA7BfF40F82B041916881aeA15ee84834","token":"0x7B00e822F9E05882F9e088655e738F656C99C53A","gauge":"0x1B3E14157ED33F60668f2103bCd5Db39a1573E5B","crvRewards":"0x6cb1933E49C48AE8ec12d39aD7D85695b247deDB","stash":"0x2B7559683B0cC4dbF06CEd4c3AC1B589f7F5a53B","shutdown":false,"extraRewards":[]},{"pid":66,"lpToken":"0x8282BD15dcA2EA2bDf24163E8f2781B30C43A2ef","token":"0xe87f447ef9B76905A25ab8160c7EF66864f4984A","gauge":"0x08380a4999Be1a958E2abbA07968d703C7A3027C","crvRewards":"0xb2f0bB6352417c1Bf017862aC165E67623611aF3","stash":"0x8bf218F98e1f433D083A6313FB49b2e69Cb89148","shutdown":false,"extraRewards":[]},{"pid":67,"lpToken":"0xCb08717451aaE9EF950a2524E33B6DCaBA60147B","token":"0x1766EDBa8CD066e3eB1912D2b8c7E2c59A3D7Ece","gauge":"0x6070fBD4E608ee5391189E7205d70cc4A274c017","crvRewards":"0x3E91E7c822AC8b4b7905d108c3faCF22A3ee5d2c","stash":"0xf9c837b180744F1C2855D3008740ADf1f305dfe5","shutdown":false,"extraRewards":[]},{"pid":68,"lpToken":"0x29059568bB40344487d62f7450E78b8E6C74e0e5","token":"0x73b78A30A1D249D88Ad6CCb80B1e0b357Fb4b5Ea","gauge":"0x05255C5BD33672b9FEA4129C13274D1E6193312d","crvRewards":"0x3207bDc327aB67f182B82948fd3DF757F8771324","stash":"0x24C93C04E1ed12cF15E7f69611d59e3145150ADE","shutdown":false,"extraRewards":[]},{"pid":69,"lpToken":"0x90244F43D548a4f8dFecfAD91a193465B1fad6F7","token":"0x7E72dDA16B916c986972B1c9F3fbfAe67D96D733","gauge":"0x009aCD89535DAbC270C93F9b39D3232105Fef453","crvRewards":"0xAA0e8Ef60BaBda02Ef11c89a061D82b1D61a462C","stash":"0xAC86e1b070b8364D49fA34CDc3e2fA6e98674873","shutdown":false,"extraRewards":[]},{"pid":70,"lpToken":"0xB37D6c07482Bc11cd28a1f11f1a6ad7b66Dec933","token":"0xbAff5309fa5bf4556cddf83BD729A18Dc8058a9f","gauge":"0x38039dD47636154273b287F74C432Cac83Da97e2","crvRewards":"0x769499A7B4093b2AA35E3F3C00B1ab5dc8EF7146","stash":"0x434Bf2F8fdfAD278571e4b46d1628353FaCb0B73","shutdown":false,"extraRewards":[{"pool":"0x92dfd397b6d0b878126f5a5f6f446ae9fc8a8356","token":"0x31429d1856ad1377a8a0079410b297e1a9e214c2"},{"pool":"0x19ba12d57ad7b126de898706aa6dbf7d6dc85ff8","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"}]},{"pid":71,"lpToken":"0x06cb22615BA53E60D67Bf6C341a0fD5E718E1655","token":"0x6b35abd7612270E09244aFdbE3e5cf67f3B4E09F","gauge":"0xdC69D4cB5b86388Fff0b51885677e258883534ae","crvRewards":"0x3133A4428AAC0b4ad96a09845363386ECd289A9c","stash":"0xe842D814EB4Ff3420d6873eBDDE1d9c6ac384fB2","shutdown":false,"extraRewards":[]},{"pid":72,"lpToken":"0xF3A43307DcAFa93275993862Aae628fCB50dC768","token":"0xCB6D873f7BbE57584a9b08380901Dc200Be7CE74","gauge":"0xAB1927160EC7414C6Fa71763E2a9f3D107c126dd","crvRewards":"0xf27AFAD0142393e4b3E5510aBc5fe3743Ad669Cb","stash":"0x4f3AD55D7b884CDC48ADD1e2451A13af17887F26","shutdown":false,"extraRewards":[{"pool":"0xe2585f27bf5aab7756f626d6444ed5fc9154e606","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0x28120d9d49dbaeb5e34d6b809b842684c482ef27","token":"0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"}]},{"pid":73,"lpToken":"0x447Ddd4960d9fdBF6af9a790560d0AF76795CB08","token":"0x38C9E856C289594F8E0F095FF396142F19004cdb","gauge":"0x8aD7e0e6EDc61bC48ca0DD07f9021c249044eD30","crvRewards":"0x5c463069b99AfC9333F4dC2203a9f0c6C7658cCc","stash":"0x96Cf7f62b073ddEBf9b4F989586f5c7BC3483b66","shutdown":false,"extraRewards":[]},{"pid":74,"lpToken":"0x137469B55D1f15651BA46A89D0588e97dD0B6562","token":"0xe7f50e96e0FE8285D3B27B3b9A464a2102C9708c","gauge":"0x02246583870b36Be0fEf2819E1d3A771d6C07546","crvRewards":"0x36c7E7F9031647A74687ce46A8e16BcEA84f3865","stash":"0x406868FBFdb61f976C2A76d617259EFB7778860A","shutdown":false,"extraRewards":[]},{"pid":75,"lpToken":"0xE160364FD8407FFc8b163e278300c6C5D18Ff61d","token":"0x6b45b93B4505B5c134262c3985d776D71a20D601","gauge":"0x5AC6886Edd18ED0AD01C0B0910660637c551FBd6","crvRewards":"0x41565A76DC949E57486Ca4550C2e086D95AEfb19","stash":"0xFf4bEA60c48bA9210527F24E28bAC56BACE1f286","shutdown":false,"extraRewards":[]},{"pid":76,"lpToken":"0xbcb91E689114B9Cc865AD7871845C95241Df4105","token":"0x80D68884f425f73395EA0a7476a786De38Ca1306","gauge":"0xb07d00e0eE9b1b2eb9f1B483924155Af7AF0c8Fa","crvRewards":"0xC4d009E61a904BfDf39144295F12870E8305D4d9","stash":"0x2f95d210231aC0eEc91C312F80783bF97133C8Bb","shutdown":false,"extraRewards":[]},{"pid":77,"lpToken":"0xC9467E453620f16b57a34a770C6bceBECe002587","token":"0x518AbdbEe7B2e1D62d3C7435B8FEE56AED7dcE53","gauge":"0xB5efA93d5D23642f970aF41a1ea9A26f19CbD2Eb","crvRewards":"0x589761B61D8d1C8ecc36F3cFE35932670749015a","stash":"0xA8ec0bf38200188DcE8344a8B82d7aAc26A6faF5","shutdown":false,"extraRewards":[]},{"pid":78,"lpToken":"0x2302aaBe69e6E7A1b0Aa23aAC68fcCB8A4D2B460","token":"0x77d869e95a08b6b88f8f87DeEdEd5e9b8bb30B29","gauge":"0x784342E983E9283A7108F20FcA21995534b3fE65","crvRewards":"0xE259d085f55825624bBA8571eD20984c125Ba720","stash":"0x637aC4C86b8b85fbA60e657D1Ba312b3451D7386","shutdown":false,"extraRewards":[],"noTest":true},{"pid":79,"lpToken":"0x1054Ff2ffA34c055a13DCD9E0b4c0cA5b3aecEB9","token":"0x98A0f1541684542Da2455A965dC8CEA1D5f26c24","gauge":"0xE786Df7076AFeECC3faCD841ED4AD20d0F04CF19","crvRewards":"0x8731A63dD6aF83c044F623A89ABD50A8bb5a5022","stash":"0x777C03A0B05e0954F789256E9048ed076f5EbE3d","shutdown":false,"extraRewards":[],"noTest":true},{"pid":154,"lpToken":"0x6c38cE8984a890F5e46e6dF6117C26b3F1EcfC9C","token":"0x96C01B43853bE9E27363B15bE620769437cBa345","gauge":"0x9d4D981d8a9066f5db8532A5816543dE8819d4A8","crvRewards":"0x65C8aa24db76e870DEDfC35701eff84de405D1ba","stash":"0x8A297eFeDE43f47f76014a82D1B910Ee05d83226","extraRewards":[]},{"pid":127,"lpToken":"0x5b6C539b224014A09B3388e51CaAA8e354c959C8","token":"0x06A2C4431FB5dBfECbCbA15154Dd53E374c14292","gauge":"0xAd96E10123Fa34a01cf2314C42D75150849C9295","crvRewards":"0x5d02EcD9B83f1187e92aD5be3d1bd2915CA03699","stash":"0xDdc53D3B91090CD99d87ee1E6108857732fB5E4A","extraRewards":[]}]');
|
|
9742
9772
|
|
|
9743
9773
|
/***/ }),
|
|
9744
|
-
/*
|
|
9774
|
+
/* 236 */
|
|
9745
9775
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9746
9776
|
|
|
9747
9777
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9750,7 +9780,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9750
9780
|
/* harmony export */ });
|
|
9751
9781
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
9752
9782
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
9753
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
9783
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(234);
|
|
9754
9784
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(39);
|
|
9755
9785
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
9756
9786
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
@@ -9800,7 +9830,7 @@ class ConvexWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
9800
9830
|
}
|
|
9801
9831
|
|
|
9802
9832
|
/***/ }),
|
|
9803
|
-
/*
|
|
9833
|
+
/* 237 */
|
|
9804
9834
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9805
9835
|
|
|
9806
9836
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9809,7 +9839,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9809
9839
|
/* harmony export */ });
|
|
9810
9840
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
9811
9841
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
9812
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
9842
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(234);
|
|
9813
9843
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(39);
|
|
9814
9844
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
9815
9845
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
@@ -9857,7 +9887,7 @@ class ConvexClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
9857
9887
|
}
|
|
9858
9888
|
|
|
9859
9889
|
/***/ }),
|
|
9860
|
-
/*
|
|
9890
|
+
/* 238 */
|
|
9861
9891
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9862
9892
|
|
|
9863
9893
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9870,13 +9900,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9870
9900
|
/* harmony export */ CBUpdateRebondSubAction: () => (/* reexport safe */ _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__.CBUpdateRebondSubAction),
|
|
9871
9901
|
/* harmony export */ FetchBondIdAction: () => (/* reexport safe */ _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__.FetchBondIdAction)
|
|
9872
9902
|
/* harmony export */ });
|
|
9873
|
-
/* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
9874
|
-
/* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
9875
|
-
/* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
9876
|
-
/* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
9877
|
-
/* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
9878
|
-
/* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
9879
|
-
/* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
9903
|
+
/* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(239);
|
|
9904
|
+
/* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(240);
|
|
9905
|
+
/* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(241);
|
|
9906
|
+
/* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(242);
|
|
9907
|
+
/* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(243);
|
|
9908
|
+
/* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(244);
|
|
9909
|
+
/* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(245);
|
|
9880
9910
|
|
|
9881
9911
|
|
|
9882
9912
|
|
|
@@ -9886,7 +9916,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9886
9916
|
|
|
9887
9917
|
|
|
9888
9918
|
/***/ }),
|
|
9889
|
-
/*
|
|
9919
|
+
/* 239 */
|
|
9890
9920
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9891
9921
|
|
|
9892
9922
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9927,7 +9957,7 @@ class CBCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
9927
9957
|
}
|
|
9928
9958
|
|
|
9929
9959
|
/***/ }),
|
|
9930
|
-
/*
|
|
9960
|
+
/* 240 */
|
|
9931
9961
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9932
9962
|
|
|
9933
9963
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9957,7 +9987,7 @@ class CBChickenInAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
9957
9987
|
}
|
|
9958
9988
|
|
|
9959
9989
|
/***/ }),
|
|
9960
|
-
/*
|
|
9990
|
+
/* 241 */
|
|
9961
9991
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9962
9992
|
|
|
9963
9993
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -9988,7 +10018,7 @@ class CBChickenOutAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
9988
10018
|
}
|
|
9989
10019
|
|
|
9990
10020
|
/***/ }),
|
|
9991
|
-
/*
|
|
10021
|
+
/* 242 */
|
|
9992
10022
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
9993
10023
|
|
|
9994
10024
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10032,7 +10062,7 @@ class CBRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
10032
10062
|
}
|
|
10033
10063
|
|
|
10034
10064
|
/***/ }),
|
|
10035
|
-
/*
|
|
10065
|
+
/* 243 */
|
|
10036
10066
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10037
10067
|
|
|
10038
10068
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10059,7 +10089,7 @@ class CBUpdateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
10059
10089
|
}
|
|
10060
10090
|
|
|
10061
10091
|
/***/ }),
|
|
10062
|
-
/*
|
|
10092
|
+
/* 244 */
|
|
10063
10093
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10064
10094
|
|
|
10065
10095
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10088,7 +10118,7 @@ class FetchBondIdAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
10088
10118
|
}
|
|
10089
10119
|
|
|
10090
10120
|
/***/ }),
|
|
10091
|
-
/*
|
|
10121
|
+
/* 245 */
|
|
10092
10122
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10093
10123
|
|
|
10094
10124
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10115,7 +10145,7 @@ class CBCreateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
10115
10145
|
}
|
|
10116
10146
|
|
|
10117
10147
|
/***/ }),
|
|
10118
|
-
/*
|
|
10148
|
+
/* 246 */
|
|
10119
10149
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10120
10150
|
|
|
10121
10151
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10128,13 +10158,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10128
10158
|
/* harmony export */ CompoundV3TransferAction: () => (/* reexport safe */ _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__.CompoundV3TransferAction),
|
|
10129
10159
|
/* harmony export */ CompoundV3WithdrawAction: () => (/* reexport safe */ _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.CompoundV3WithdrawAction)
|
|
10130
10160
|
/* harmony export */ });
|
|
10131
|
-
/* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
10132
|
-
/* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
10133
|
-
/* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
10134
|
-
/* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
10135
|
-
/* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
10136
|
-
/* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
10137
|
-
/* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
10161
|
+
/* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(247);
|
|
10162
|
+
/* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(248);
|
|
10163
|
+
/* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(249);
|
|
10164
|
+
/* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(250);
|
|
10165
|
+
/* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(251);
|
|
10166
|
+
/* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(252);
|
|
10167
|
+
/* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(253);
|
|
10138
10168
|
|
|
10139
10169
|
|
|
10140
10170
|
|
|
@@ -10144,7 +10174,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10144
10174
|
|
|
10145
10175
|
|
|
10146
10176
|
/***/ }),
|
|
10147
|
-
/*
|
|
10177
|
+
/* 247 */
|
|
10148
10178
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10149
10179
|
|
|
10150
10180
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10196,7 +10226,7 @@ class CompoundV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
10196
10226
|
}
|
|
10197
10227
|
|
|
10198
10228
|
/***/ }),
|
|
10199
|
-
/*
|
|
10229
|
+
/* 248 */
|
|
10200
10230
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10201
10231
|
|
|
10202
10232
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10229,7 +10259,7 @@ class CompoundV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
10229
10259
|
}
|
|
10230
10260
|
|
|
10231
10261
|
/***/ }),
|
|
10232
|
-
/*
|
|
10262
|
+
/* 249 */
|
|
10233
10263
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10234
10264
|
|
|
10235
10265
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10286,7 +10316,7 @@ class CompoundV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Actio
|
|
|
10286
10316
|
}
|
|
10287
10317
|
|
|
10288
10318
|
/***/ }),
|
|
10289
|
-
/*
|
|
10319
|
+
/* 250 */
|
|
10290
10320
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10291
10321
|
|
|
10292
10322
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10321,7 +10351,7 @@ class CompoundV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
10321
10351
|
}
|
|
10322
10352
|
|
|
10323
10353
|
/***/ }),
|
|
10324
|
-
/*
|
|
10354
|
+
/* 251 */
|
|
10325
10355
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10326
10356
|
|
|
10327
10357
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10355,7 +10385,7 @@ class CompoundV3ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
10355
10385
|
}
|
|
10356
10386
|
|
|
10357
10387
|
/***/ }),
|
|
10358
|
-
/*
|
|
10388
|
+
/* 252 */
|
|
10359
10389
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10360
10390
|
|
|
10361
10391
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10387,7 +10417,7 @@ class CompoundV3AllowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
10387
10417
|
}
|
|
10388
10418
|
|
|
10389
10419
|
/***/ }),
|
|
10390
|
-
/*
|
|
10420
|
+
/* 253 */
|
|
10391
10421
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10392
10422
|
|
|
10393
10423
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10423,7 +10453,7 @@ class CompoundV3TransferAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
10423
10453
|
}
|
|
10424
10454
|
|
|
10425
10455
|
/***/ }),
|
|
10426
|
-
/*
|
|
10456
|
+
/* 254 */
|
|
10427
10457
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10428
10458
|
|
|
10429
10459
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10439,16 +10469,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10439
10469
|
/* harmony export */ MorphoAaveV3WithdrawAction: () => (/* reexport safe */ _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__.MorphoAaveV3WithdrawAction),
|
|
10440
10470
|
/* harmony export */ MorphoClaimAction: () => (/* reexport safe */ _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__.MorphoClaimAction)
|
|
10441
10471
|
/* harmony export */ });
|
|
10442
|
-
/* harmony import */ var _MorphoAaveV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
10443
|
-
/* harmony import */ var _MorphoAaveV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
10444
|
-
/* harmony import */ var _MorphoAaveV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
10445
|
-
/* harmony import */ var _MorphoAaveV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
10446
|
-
/* harmony import */ var _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
10447
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
10448
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
10449
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
10450
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
10451
|
-
/* harmony import */ var _aaveV3_MorphoAaveV3SetManagerAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
10472
|
+
/* harmony import */ var _MorphoAaveV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(255);
|
|
10473
|
+
/* harmony import */ var _MorphoAaveV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(256);
|
|
10474
|
+
/* harmony import */ var _MorphoAaveV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(257);
|
|
10475
|
+
/* harmony import */ var _MorphoAaveV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(258);
|
|
10476
|
+
/* harmony import */ var _MorphoClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(259);
|
|
10477
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(260);
|
|
10478
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(261);
|
|
10479
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(262);
|
|
10480
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(263);
|
|
10481
|
+
/* harmony import */ var _aaveV3_MorphoAaveV3SetManagerAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(264);
|
|
10452
10482
|
|
|
10453
10483
|
|
|
10454
10484
|
|
|
@@ -10461,7 +10491,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10461
10491
|
|
|
10462
10492
|
|
|
10463
10493
|
/***/ }),
|
|
10464
|
-
/*
|
|
10494
|
+
/* 255 */
|
|
10465
10495
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10466
10496
|
|
|
10467
10497
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10510,7 +10540,7 @@ class MorphoAaveV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
10510
10540
|
}
|
|
10511
10541
|
|
|
10512
10542
|
/***/ }),
|
|
10513
|
-
/*
|
|
10543
|
+
/* 256 */
|
|
10514
10544
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10515
10545
|
|
|
10516
10546
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10539,7 +10569,7 @@ class MorphoAaveV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
10539
10569
|
}
|
|
10540
10570
|
|
|
10541
10571
|
/***/ }),
|
|
10542
|
-
/*
|
|
10572
|
+
/* 257 */
|
|
10543
10573
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10544
10574
|
|
|
10545
10575
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10570,7 +10600,7 @@ class MorphoAaveV2BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
10570
10600
|
}
|
|
10571
10601
|
|
|
10572
10602
|
/***/ }),
|
|
10573
|
-
/*
|
|
10603
|
+
/* 258 */
|
|
10574
10604
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10575
10605
|
|
|
10576
10606
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10617,7 +10647,7 @@ class MorphoAaveV2PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
10617
10647
|
}
|
|
10618
10648
|
|
|
10619
10649
|
/***/ }),
|
|
10620
|
-
/*
|
|
10650
|
+
/* 259 */
|
|
10621
10651
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10622
10652
|
|
|
10623
10653
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10646,7 +10676,7 @@ class MorphoClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
10646
10676
|
}
|
|
10647
10677
|
|
|
10648
10678
|
/***/ }),
|
|
10649
|
-
/*
|
|
10679
|
+
/* 260 */
|
|
10650
10680
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10651
10681
|
|
|
10652
10682
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10698,7 +10728,7 @@ class MorphoAaveV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
10698
10728
|
}
|
|
10699
10729
|
|
|
10700
10730
|
/***/ }),
|
|
10701
|
-
/*
|
|
10731
|
+
/* 261 */
|
|
10702
10732
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10703
10733
|
|
|
10704
10734
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10734,7 +10764,7 @@ class MorphoAaveV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
10734
10764
|
}
|
|
10735
10765
|
|
|
10736
10766
|
/***/ }),
|
|
10737
|
-
/*
|
|
10767
|
+
/* 262 */
|
|
10738
10768
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10739
10769
|
|
|
10740
10770
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10768,7 +10798,7 @@ class MorphoAaveV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
10768
10798
|
}
|
|
10769
10799
|
|
|
10770
10800
|
/***/ }),
|
|
10771
|
-
/*
|
|
10801
|
+
/* 263 */
|
|
10772
10802
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10773
10803
|
|
|
10774
10804
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10816,7 +10846,7 @@ class MorphoAaveV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
10816
10846
|
}
|
|
10817
10847
|
|
|
10818
10848
|
/***/ }),
|
|
10819
|
-
/*
|
|
10849
|
+
/* 264 */
|
|
10820
10850
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10821
10851
|
|
|
10822
10852
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10844,7 +10874,7 @@ class MorphoAaveV3SetManagerAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
10844
10874
|
}
|
|
10845
10875
|
|
|
10846
10876
|
/***/ }),
|
|
10847
|
-
/*
|
|
10877
|
+
/* 265 */
|
|
10848
10878
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10849
10879
|
|
|
10850
10880
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10852,13 +10882,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10852
10882
|
/* harmony export */ BprotocolLiquitySPDepositAction: () => (/* reexport safe */ _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__.BprotocolLiquitySPDepositAction),
|
|
10853
10883
|
/* harmony export */ BprotocolLiquitySPWithdrawAction: () => (/* reexport safe */ _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BprotocolLiquitySPWithdrawAction)
|
|
10854
10884
|
/* harmony export */ });
|
|
10855
|
-
/* harmony import */ var _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
10856
|
-
/* harmony import */ var _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
10885
|
+
/* harmony import */ var _BprotocolLiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(266);
|
|
10886
|
+
/* harmony import */ var _BprotocolLiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(267);
|
|
10857
10887
|
|
|
10858
10888
|
|
|
10859
10889
|
|
|
10860
10890
|
/***/ }),
|
|
10861
|
-
/*
|
|
10891
|
+
/* 266 */
|
|
10862
10892
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10863
10893
|
|
|
10864
10894
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10903,7 +10933,7 @@ class BprotocolLiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1
|
|
|
10903
10933
|
}
|
|
10904
10934
|
|
|
10905
10935
|
/***/ }),
|
|
10906
|
-
/*
|
|
10936
|
+
/* 267 */
|
|
10907
10937
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10908
10938
|
|
|
10909
10939
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10934,7 +10964,7 @@ class BprotocolLiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_
|
|
|
10934
10964
|
}
|
|
10935
10965
|
|
|
10936
10966
|
/***/ }),
|
|
10937
|
-
/*
|
|
10967
|
+
/* 268 */
|
|
10938
10968
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10939
10969
|
|
|
10940
10970
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10944,17 +10974,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10944
10974
|
/* harmony export */ LSVSupplyAction: () => (/* reexport safe */ _LSVSupplyAction__WEBPACK_IMPORTED_MODULE_2__.LSVSupplyAction),
|
|
10945
10975
|
/* harmony export */ LSVWithdrawAction: () => (/* reexport safe */ _LSVWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.LSVWithdrawAction)
|
|
10946
10976
|
/* harmony export */ });
|
|
10947
|
-
/* harmony import */ var _LSVPaybackAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
10948
|
-
/* harmony import */ var _LSVWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
10949
|
-
/* harmony import */ var _LSVSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
10950
|
-
/* harmony import */ var _LSVBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
10977
|
+
/* harmony import */ var _LSVPaybackAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(269);
|
|
10978
|
+
/* harmony import */ var _LSVWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(270);
|
|
10979
|
+
/* harmony import */ var _LSVSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(271);
|
|
10980
|
+
/* harmony import */ var _LSVBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(272);
|
|
10951
10981
|
|
|
10952
10982
|
|
|
10953
10983
|
|
|
10954
10984
|
|
|
10955
10985
|
|
|
10956
10986
|
/***/ }),
|
|
10957
|
-
/*
|
|
10987
|
+
/* 269 */
|
|
10958
10988
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10959
10989
|
|
|
10960
10990
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -10981,7 +11011,7 @@ class LSVPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
10981
11011
|
}
|
|
10982
11012
|
|
|
10983
11013
|
/***/ }),
|
|
10984
|
-
/*
|
|
11014
|
+
/* 270 */
|
|
10985
11015
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10986
11016
|
|
|
10987
11017
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11010,7 +11040,7 @@ class LSVWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11010
11040
|
}
|
|
11011
11041
|
|
|
11012
11042
|
/***/ }),
|
|
11013
|
-
/*
|
|
11043
|
+
/* 271 */
|
|
11014
11044
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11015
11045
|
|
|
11016
11046
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11039,7 +11069,7 @@ class LSVSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11039
11069
|
}
|
|
11040
11070
|
|
|
11041
11071
|
/***/ }),
|
|
11042
|
-
/*
|
|
11072
|
+
/* 272 */
|
|
11043
11073
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11044
11074
|
|
|
11045
11075
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11067,7 +11097,7 @@ class LSVBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11067
11097
|
}
|
|
11068
11098
|
|
|
11069
11099
|
/***/ }),
|
|
11070
|
-
/*
|
|
11100
|
+
/* 273 */
|
|
11071
11101
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11072
11102
|
|
|
11073
11103
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11084,17 +11114,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11084
11114
|
/* harmony export */ CurveUsdSupplyAction: () => (/* reexport safe */ _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__.CurveUsdSupplyAction),
|
|
11085
11115
|
/* harmony export */ CurveUsdWithdrawAction: () => (/* reexport safe */ _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveUsdWithdrawAction)
|
|
11086
11116
|
/* harmony export */ });
|
|
11087
|
-
/* harmony import */ var _CurveUsdCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
11088
|
-
/* harmony import */ var _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
11089
|
-
/* harmony import */ var _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
11090
|
-
/* harmony import */ var _CurveUsdBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
11091
|
-
/* harmony import */ var _CurveUsdPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
11092
|
-
/* harmony import */ var _CurveUsdRepayAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
11093
|
-
/* harmony import */ var _CurveUsdSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
11094
|
-
/* harmony import */ var _CurveUsdLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
11095
|
-
/* harmony import */ var _CurveUsdSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
11096
|
-
/* harmony import */ var _CurveUsdAdjustAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
11097
|
-
/* harmony import */ var _CurveUsdGetDebtAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
11117
|
+
/* harmony import */ var _CurveUsdCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(274);
|
|
11118
|
+
/* harmony import */ var _CurveUsdSupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(276);
|
|
11119
|
+
/* harmony import */ var _CurveUsdWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(277);
|
|
11120
|
+
/* harmony import */ var _CurveUsdBorrowAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(278);
|
|
11121
|
+
/* harmony import */ var _CurveUsdPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(279);
|
|
11122
|
+
/* harmony import */ var _CurveUsdRepayAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(280);
|
|
11123
|
+
/* harmony import */ var _CurveUsdSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(281);
|
|
11124
|
+
/* harmony import */ var _CurveUsdLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(282);
|
|
11125
|
+
/* harmony import */ var _CurveUsdSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(283);
|
|
11126
|
+
/* harmony import */ var _CurveUsdAdjustAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(284);
|
|
11127
|
+
/* harmony import */ var _CurveUsdGetDebtAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(285);
|
|
11098
11128
|
|
|
11099
11129
|
|
|
11100
11130
|
|
|
@@ -11108,7 +11138,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11108
11138
|
|
|
11109
11139
|
|
|
11110
11140
|
/***/ }),
|
|
11111
|
-
/*
|
|
11141
|
+
/* 274 */
|
|
11112
11142
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11113
11143
|
|
|
11114
11144
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11118,7 +11148,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11118
11148
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
11119
11149
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
11120
11150
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
11121
|
-
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
11151
|
+
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(275);
|
|
11122
11152
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
11123
11153
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
11124
11154
|
|
|
@@ -11158,7 +11188,7 @@ class CurveUsdCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11158
11188
|
}
|
|
11159
11189
|
|
|
11160
11190
|
/***/ }),
|
|
11161
|
-
/*
|
|
11191
|
+
/* 275 */
|
|
11162
11192
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11163
11193
|
|
|
11164
11194
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11200,7 +11230,7 @@ var controllerToAssetMap = {
|
|
|
11200
11230
|
var controllerFactoryAddress = '0xC9332fdCB1C491Dcc683bAe86Fe3cb70360738BC';
|
|
11201
11231
|
|
|
11202
11232
|
/***/ }),
|
|
11203
|
-
/*
|
|
11233
|
+
/* 276 */
|
|
11204
11234
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11205
11235
|
|
|
11206
11236
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11209,7 +11239,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11209
11239
|
/* harmony export */ });
|
|
11210
11240
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
11211
11241
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
11212
|
-
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
11242
|
+
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(275);
|
|
11213
11243
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
11214
11244
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
11215
11245
|
|
|
@@ -11245,7 +11275,7 @@ class CurveUsdSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11245
11275
|
}
|
|
11246
11276
|
|
|
11247
11277
|
/***/ }),
|
|
11248
|
-
/*
|
|
11278
|
+
/* 277 */
|
|
11249
11279
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11250
11280
|
|
|
11251
11281
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11276,7 +11306,7 @@ class CurveUsdWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
11276
11306
|
}
|
|
11277
11307
|
|
|
11278
11308
|
/***/ }),
|
|
11279
|
-
/*
|
|
11309
|
+
/* 278 */
|
|
11280
11310
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11281
11311
|
|
|
11282
11312
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11307,7 +11337,7 @@ class CurveUsdBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11307
11337
|
}
|
|
11308
11338
|
|
|
11309
11339
|
/***/ }),
|
|
11310
|
-
/*
|
|
11340
|
+
/* 279 */
|
|
11311
11341
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11312
11342
|
|
|
11313
11343
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11355,7 +11385,7 @@ class CurveUsdPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
11355
11385
|
}
|
|
11356
11386
|
|
|
11357
11387
|
/***/ }),
|
|
11358
|
-
/*
|
|
11388
|
+
/* 280 */
|
|
11359
11389
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11360
11390
|
|
|
11361
11391
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11378,7 +11408,7 @@ class CurveUsdRepayAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11378
11408
|
}
|
|
11379
11409
|
|
|
11380
11410
|
/***/ }),
|
|
11381
|
-
/*
|
|
11411
|
+
/* 281 */
|
|
11382
11412
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11383
11413
|
|
|
11384
11414
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11421,7 +11451,7 @@ class CurveUsdSelfLiquidateAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.A
|
|
|
11421
11451
|
}
|
|
11422
11452
|
|
|
11423
11453
|
/***/ }),
|
|
11424
|
-
/*
|
|
11454
|
+
/* 282 */
|
|
11425
11455
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11426
11456
|
|
|
11427
11457
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11447,7 +11477,7 @@ class CurveUsdLevCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
11447
11477
|
}
|
|
11448
11478
|
|
|
11449
11479
|
/***/ }),
|
|
11450
|
-
/*
|
|
11480
|
+
/* 283 */
|
|
11451
11481
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11452
11482
|
|
|
11453
11483
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11473,7 +11503,7 @@ class CurveUsdSelfLiquidateWithCollAction extends _Action__WEBPACK_IMPORTED_MODU
|
|
|
11473
11503
|
}
|
|
11474
11504
|
|
|
11475
11505
|
/***/ }),
|
|
11476
|
-
/*
|
|
11506
|
+
/* 284 */
|
|
11477
11507
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11478
11508
|
|
|
11479
11509
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11482,7 +11512,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11482
11512
|
/* harmony export */ });
|
|
11483
11513
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
11484
11514
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
11485
|
-
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
11515
|
+
/* harmony import */ var _utils_curveusd_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(275);
|
|
11486
11516
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
11487
11517
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
11488
11518
|
|
|
@@ -11518,7 +11548,7 @@ class CurveUsdAdjustAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
11518
11548
|
}
|
|
11519
11549
|
|
|
11520
11550
|
/***/ }),
|
|
11521
|
-
/*
|
|
11551
|
+
/* 285 */
|
|
11522
11552
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11523
11553
|
|
|
11524
11554
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11539,7 +11569,7 @@ class CurveUsdGetDebtAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
11539
11569
|
}
|
|
11540
11570
|
|
|
11541
11571
|
/***/ }),
|
|
11542
|
-
/*
|
|
11572
|
+
/* 286 */
|
|
11543
11573
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11544
11574
|
|
|
11545
11575
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11556,17 +11586,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11556
11586
|
/* harmony export */ SparkSwapBorrowRateModeAction: () => (/* reexport safe */ _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.SparkSwapBorrowRateModeAction),
|
|
11557
11587
|
/* harmony export */ SparkWithdrawAction: () => (/* reexport safe */ _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__.SparkWithdrawAction)
|
|
11558
11588
|
/* harmony export */ });
|
|
11559
|
-
/* harmony import */ var _SparkSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
11560
|
-
/* harmony import */ var _SparkBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
11561
|
-
/* harmony import */ var _SparkPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
11562
|
-
/* harmony import */ var _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
11563
|
-
/* harmony import */ var _SparkSetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
11564
|
-
/* harmony import */ var _SparkSpTokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
11565
|
-
/* harmony import */ var _SparkCollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
11566
|
-
/* harmony import */ var _SparkClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
11567
|
-
/* harmony import */ var _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
11568
|
-
/* harmony import */ var _SparkDelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
11569
|
-
/* harmony import */ var _SparkDelegateWithSigAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
11589
|
+
/* harmony import */ var _SparkSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(287);
|
|
11590
|
+
/* harmony import */ var _SparkBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(288);
|
|
11591
|
+
/* harmony import */ var _SparkPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(289);
|
|
11592
|
+
/* harmony import */ var _SparkWithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(290);
|
|
11593
|
+
/* harmony import */ var _SparkSetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(291);
|
|
11594
|
+
/* harmony import */ var _SparkSpTokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(292);
|
|
11595
|
+
/* harmony import */ var _SparkCollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(293);
|
|
11596
|
+
/* harmony import */ var _SparkClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(294);
|
|
11597
|
+
/* harmony import */ var _SparkSwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(295);
|
|
11598
|
+
/* harmony import */ var _SparkDelegateCredit__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(296);
|
|
11599
|
+
/* harmony import */ var _SparkDelegateWithSigAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(297);
|
|
11570
11600
|
|
|
11571
11601
|
|
|
11572
11602
|
|
|
@@ -11580,7 +11610,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11580
11610
|
|
|
11581
11611
|
|
|
11582
11612
|
/***/ }),
|
|
11583
|
-
/*
|
|
11613
|
+
/* 287 */
|
|
11584
11614
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11585
11615
|
|
|
11586
11616
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11662,7 +11692,7 @@ class SparkSupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Actio
|
|
|
11662
11692
|
}
|
|
11663
11693
|
|
|
11664
11694
|
/***/ }),
|
|
11665
|
-
/*
|
|
11695
|
+
/* 288 */
|
|
11666
11696
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11667
11697
|
|
|
11668
11698
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11726,7 +11756,7 @@ class SparkBorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
11726
11756
|
}
|
|
11727
11757
|
|
|
11728
11758
|
/***/ }),
|
|
11729
|
-
/*
|
|
11759
|
+
/* 289 */
|
|
11730
11760
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11731
11761
|
|
|
11732
11762
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11808,7 +11838,7 @@ class SparkPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
11808
11838
|
}
|
|
11809
11839
|
|
|
11810
11840
|
/***/ }),
|
|
11811
|
-
/*
|
|
11841
|
+
/* 290 */
|
|
11812
11842
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11813
11843
|
|
|
11814
11844
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11860,7 +11890,7 @@ class SparkWithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
|
|
|
11860
11890
|
}
|
|
11861
11891
|
|
|
11862
11892
|
/***/ }),
|
|
11863
|
-
/*
|
|
11893
|
+
/* 291 */
|
|
11864
11894
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11865
11895
|
|
|
11866
11896
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11902,7 +11932,7 @@ class SparkSetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
|
|
|
11902
11932
|
}
|
|
11903
11933
|
|
|
11904
11934
|
/***/ }),
|
|
11905
|
-
/*
|
|
11935
|
+
/* 292 */
|
|
11906
11936
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11907
11937
|
|
|
11908
11938
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11975,7 +12005,7 @@ class SparkSpTokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
|
|
|
11975
12005
|
}
|
|
11976
12006
|
|
|
11977
12007
|
/***/ }),
|
|
11978
|
-
/*
|
|
12008
|
+
/* 293 */
|
|
11979
12009
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
11980
12010
|
|
|
11981
12011
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12025,7 +12055,7 @@ class SparkCollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE
|
|
|
12025
12055
|
}
|
|
12026
12056
|
|
|
12027
12057
|
/***/ }),
|
|
12028
|
-
/*
|
|
12058
|
+
/* 294 */
|
|
12029
12059
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12030
12060
|
|
|
12031
12061
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12078,7 +12108,7 @@ class SparkClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__
|
|
|
12078
12108
|
}
|
|
12079
12109
|
|
|
12080
12110
|
/***/ }),
|
|
12081
|
-
/*
|
|
12111
|
+
/* 295 */
|
|
12082
12112
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12083
12113
|
|
|
12084
12114
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12124,7 +12154,7 @@ class SparkSwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODU
|
|
|
12124
12154
|
}
|
|
12125
12155
|
|
|
12126
12156
|
/***/ }),
|
|
12127
|
-
/*
|
|
12157
|
+
/* 296 */
|
|
12128
12158
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12129
12159
|
|
|
12130
12160
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12175,7 +12205,7 @@ class SparkDelegateCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Act
|
|
|
12175
12205
|
}
|
|
12176
12206
|
|
|
12177
12207
|
/***/ }),
|
|
12178
|
-
/*
|
|
12208
|
+
/* 297 */
|
|
12179
12209
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12180
12210
|
|
|
12181
12211
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12219,7 +12249,7 @@ class SparkDelegateWithSigCredit extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_
|
|
|
12219
12249
|
}
|
|
12220
12250
|
|
|
12221
12251
|
/***/ }),
|
|
12222
|
-
/*
|
|
12252
|
+
/* 298 */
|
|
12223
12253
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12224
12254
|
|
|
12225
12255
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12233,14 +12263,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12233
12263
|
/* harmony export */ MorphoBlueWithdrawAction: () => (/* reexport safe */ _MorphoBlueWithdrawAction__WEBPACK_IMPORTED_MODULE_5__.MorphoBlueWithdrawAction),
|
|
12234
12264
|
/* harmony export */ MorphoBlueWithdrawCollateralAction: () => (/* reexport safe */ _MorphoBlueWithdrawCollateralAction__WEBPACK_IMPORTED_MODULE_4__.MorphoBlueWithdrawCollateralAction)
|
|
12235
12265
|
/* harmony export */ });
|
|
12236
|
-
/* harmony import */ var _MorphoBlueSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
12237
|
-
/* harmony import */ var _MorphoBlueSupplyCollateralAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
12238
|
-
/* harmony import */ var _MorphoBlueBorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
12239
|
-
/* harmony import */ var _MorphoBluePaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
12240
|
-
/* harmony import */ var _MorphoBlueWithdrawCollateralAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
12241
|
-
/* harmony import */ var _MorphoBlueWithdrawAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
12242
|
-
/* harmony import */ var _MorphoBlueSetAuthAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
12243
|
-
/* harmony import */ var _MorphoBlueSetAuthWithSigAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
12266
|
+
/* harmony import */ var _MorphoBlueSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(299);
|
|
12267
|
+
/* harmony import */ var _MorphoBlueSupplyCollateralAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(300);
|
|
12268
|
+
/* harmony import */ var _MorphoBlueBorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(301);
|
|
12269
|
+
/* harmony import */ var _MorphoBluePaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(302);
|
|
12270
|
+
/* harmony import */ var _MorphoBlueWithdrawCollateralAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(303);
|
|
12271
|
+
/* harmony import */ var _MorphoBlueWithdrawAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(304);
|
|
12272
|
+
/* harmony import */ var _MorphoBlueSetAuthAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(305);
|
|
12273
|
+
/* harmony import */ var _MorphoBlueSetAuthWithSigAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(306);
|
|
12244
12274
|
|
|
12245
12275
|
|
|
12246
12276
|
|
|
@@ -12251,7 +12281,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12251
12281
|
|
|
12252
12282
|
|
|
12253
12283
|
/***/ }),
|
|
12254
|
-
/*
|
|
12284
|
+
/* 299 */
|
|
12255
12285
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12256
12286
|
|
|
12257
12287
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12296,7 +12326,7 @@ class MorphoBlueSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
12296
12326
|
}
|
|
12297
12327
|
|
|
12298
12328
|
/***/ }),
|
|
12299
|
-
/*
|
|
12329
|
+
/* 300 */
|
|
12300
12330
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12301
12331
|
|
|
12302
12332
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12341,7 +12371,7 @@ class MorphoBlueSupplyCollateralAction extends _Action__WEBPACK_IMPORTED_MODULE_
|
|
|
12341
12371
|
}
|
|
12342
12372
|
|
|
12343
12373
|
/***/ }),
|
|
12344
|
-
/*
|
|
12374
|
+
/* 301 */
|
|
12345
12375
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12346
12376
|
|
|
12347
12377
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12382,7 +12412,7 @@ class MorphoBlueBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
12382
12412
|
}
|
|
12383
12413
|
|
|
12384
12414
|
/***/ }),
|
|
12385
|
-
/*
|
|
12415
|
+
/* 302 */
|
|
12386
12416
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12387
12417
|
|
|
12388
12418
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12427,7 +12457,7 @@ class MorphoBluePaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
12427
12457
|
}
|
|
12428
12458
|
|
|
12429
12459
|
/***/ }),
|
|
12430
|
-
/*
|
|
12460
|
+
/* 303 */
|
|
12431
12461
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12432
12462
|
|
|
12433
12463
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12468,7 +12498,7 @@ class MorphoBlueWithdrawCollateralAction extends _Action__WEBPACK_IMPORTED_MODUL
|
|
|
12468
12498
|
}
|
|
12469
12499
|
|
|
12470
12500
|
/***/ }),
|
|
12471
|
-
/*
|
|
12501
|
+
/* 304 */
|
|
12472
12502
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12473
12503
|
|
|
12474
12504
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12509,7 +12539,7 @@ class MorphoBlueWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
12509
12539
|
}
|
|
12510
12540
|
|
|
12511
12541
|
/***/ }),
|
|
12512
|
-
/*
|
|
12542
|
+
/* 305 */
|
|
12513
12543
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12514
12544
|
|
|
12515
12545
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12535,7 +12565,7 @@ class MorphoBlueSetAuthAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
12535
12565
|
}
|
|
12536
12566
|
|
|
12537
12567
|
/***/ }),
|
|
12538
|
-
/*
|
|
12568
|
+
/* 306 */
|
|
12539
12569
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12540
12570
|
|
|
12541
12571
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12561,7 +12591,7 @@ class MorphoBlueSetAuthWithSigAction extends _Action__WEBPACK_IMPORTED_MODULE_0_
|
|
|
12561
12591
|
}
|
|
12562
12592
|
|
|
12563
12593
|
/***/ }),
|
|
12564
|
-
/*
|
|
12594
|
+
/* 307 */
|
|
12565
12595
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12566
12596
|
|
|
12567
12597
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12578,17 +12608,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12578
12608
|
/* harmony export */ LlamaLendSupplyAction: () => (/* reexport safe */ _LlamaLendSupplyAction__WEBPACK_IMPORTED_MODULE_2__.LlamaLendSupplyAction),
|
|
12579
12609
|
/* harmony export */ LlamaLendWithdrawAction: () => (/* reexport safe */ _LlamaLendWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.LlamaLendWithdrawAction)
|
|
12580
12610
|
/* harmony export */ });
|
|
12581
|
-
/* harmony import */ var _LlamaLendBorrowAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
12582
|
-
/* harmony import */ var _LlamaLendWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
12583
|
-
/* harmony import */ var _LlamaLendSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
12584
|
-
/* harmony import */ var _LlamaLendCreateAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
12585
|
-
/* harmony import */ var _LlamaLendPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
12586
|
-
/* harmony import */ var _LlamaLendSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
12587
|
-
/* harmony import */ var _LlamaLendGetDebtAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
12588
|
-
/* harmony import */ var _LlamaLendLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
12589
|
-
/* harmony import */ var _LlamaLendBoostAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
12590
|
-
/* harmony import */ var _LlamaLendRepayAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
12591
|
-
/* harmony import */ var _LlamaLendSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
12611
|
+
/* harmony import */ var _LlamaLendBorrowAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(308);
|
|
12612
|
+
/* harmony import */ var _LlamaLendWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(309);
|
|
12613
|
+
/* harmony import */ var _LlamaLendSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(310);
|
|
12614
|
+
/* harmony import */ var _LlamaLendCreateAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(311);
|
|
12615
|
+
/* harmony import */ var _LlamaLendPaybackAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(312);
|
|
12616
|
+
/* harmony import */ var _LlamaLendSelfLiquidateAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(313);
|
|
12617
|
+
/* harmony import */ var _LlamaLendGetDebtAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(314);
|
|
12618
|
+
/* harmony import */ var _LlamaLendLevCreateAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(315);
|
|
12619
|
+
/* harmony import */ var _LlamaLendBoostAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(316);
|
|
12620
|
+
/* harmony import */ var _LlamaLendRepayAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(317);
|
|
12621
|
+
/* harmony import */ var _LlamaLendSelfLiquidateWithCollAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(318);
|
|
12592
12622
|
|
|
12593
12623
|
|
|
12594
12624
|
|
|
@@ -12602,7 +12632,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12602
12632
|
|
|
12603
12633
|
|
|
12604
12634
|
/***/ }),
|
|
12605
|
-
/*
|
|
12635
|
+
/* 308 */
|
|
12606
12636
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12607
12637
|
|
|
12608
12638
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12633,7 +12663,7 @@ class LlamaLendBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
12633
12663
|
}
|
|
12634
12664
|
|
|
12635
12665
|
/***/ }),
|
|
12636
|
-
/*
|
|
12666
|
+
/* 309 */
|
|
12637
12667
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12638
12668
|
|
|
12639
12669
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12664,7 +12694,7 @@ class LlamaLendWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
12664
12694
|
}
|
|
12665
12695
|
|
|
12666
12696
|
/***/ }),
|
|
12667
|
-
/*
|
|
12697
|
+
/* 310 */
|
|
12668
12698
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12669
12699
|
|
|
12670
12700
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12706,7 +12736,7 @@ class LlamaLendSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
12706
12736
|
}
|
|
12707
12737
|
|
|
12708
12738
|
/***/ }),
|
|
12709
|
-
/*
|
|
12739
|
+
/* 311 */
|
|
12710
12740
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12711
12741
|
|
|
12712
12742
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12753,7 +12783,7 @@ class LlamaLendCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
12753
12783
|
}
|
|
12754
12784
|
|
|
12755
12785
|
/***/ }),
|
|
12756
|
-
/*
|
|
12786
|
+
/* 312 */
|
|
12757
12787
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12758
12788
|
|
|
12759
12789
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12790,7 +12820,7 @@ class LlamaLendPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
12790
12820
|
}
|
|
12791
12821
|
|
|
12792
12822
|
/***/ }),
|
|
12793
|
-
/*
|
|
12823
|
+
/* 313 */
|
|
12794
12824
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12795
12825
|
|
|
12796
12826
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12830,7 +12860,7 @@ class LlamaLendSelfLiquidateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
12830
12860
|
}
|
|
12831
12861
|
|
|
12832
12862
|
/***/ }),
|
|
12833
|
-
/*
|
|
12863
|
+
/* 314 */
|
|
12834
12864
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12835
12865
|
|
|
12836
12866
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12851,7 +12881,7 @@ class LlamaLendGetDebtAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
12851
12881
|
}
|
|
12852
12882
|
|
|
12853
12883
|
/***/ }),
|
|
12854
|
-
/*
|
|
12884
|
+
/* 315 */
|
|
12855
12885
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12856
12886
|
|
|
12857
12887
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12884,7 +12914,7 @@ class LlamaLendLevCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
12884
12914
|
}
|
|
12885
12915
|
|
|
12886
12916
|
/***/ }),
|
|
12887
|
-
/*
|
|
12917
|
+
/* 316 */
|
|
12888
12918
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12889
12919
|
|
|
12890
12920
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12906,7 +12936,7 @@ class LlamaLendBoostAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
12906
12936
|
}
|
|
12907
12937
|
|
|
12908
12938
|
/***/ }),
|
|
12909
|
-
/*
|
|
12939
|
+
/* 317 */
|
|
12910
12940
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12911
12941
|
|
|
12912
12942
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12928,7 +12958,7 @@ class LlamaLendRepayAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
12928
12958
|
}
|
|
12929
12959
|
|
|
12930
12960
|
/***/ }),
|
|
12931
|
-
/*
|
|
12961
|
+
/* 318 */
|
|
12932
12962
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12933
12963
|
|
|
12934
12964
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12950,18 +12980,18 @@ class LlamaLendSelfLiquidateWithCollAction extends _Action__WEBPACK_IMPORTED_MOD
|
|
|
12950
12980
|
}
|
|
12951
12981
|
|
|
12952
12982
|
/***/ }),
|
|
12953
|
-
/*
|
|
12983
|
+
/* 319 */
|
|
12954
12984
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12955
12985
|
|
|
12956
12986
|
__webpack_require__.r(__webpack_exports__);
|
|
12957
12987
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12958
12988
|
/* harmony export */ MerklClaimAction: () => (/* reexport safe */ _MerklClaimAction__WEBPACK_IMPORTED_MODULE_0__.MerklClaimAction)
|
|
12959
12989
|
/* harmony export */ });
|
|
12960
|
-
/* harmony import */ var _MerklClaimAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
12990
|
+
/* harmony import */ var _MerklClaimAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(320);
|
|
12961
12991
|
|
|
12962
12992
|
|
|
12963
12993
|
/***/ }),
|
|
12964
|
-
/*
|
|
12994
|
+
/* 320 */
|
|
12965
12995
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12966
12996
|
|
|
12967
12997
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12993,7 +13023,7 @@ class MerklClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
12993
13023
|
}
|
|
12994
13024
|
|
|
12995
13025
|
/***/ }),
|
|
12996
|
-
/*
|
|
13026
|
+
/* 321 */
|
|
12997
13027
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
12998
13028
|
|
|
12999
13029
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13007,14 +13037,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13007
13037
|
/* harmony export */ EulerV2SupplyAction: () => (/* reexport safe */ _EulerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__.EulerV2SupplyAction),
|
|
13008
13038
|
/* harmony export */ EulerV2WithdrawAction: () => (/* reexport safe */ _EulerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__.EulerV2WithdrawAction)
|
|
13009
13039
|
/* harmony export */ });
|
|
13010
|
-
/* harmony import */ var _EulerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
13011
|
-
/* harmony import */ var _EulerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
13012
|
-
/* harmony import */ var _EulerV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
13013
|
-
/* harmony import */ var _EulerV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
13014
|
-
/* harmony import */ var _EulerV2PaybackWithSharesAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
13015
|
-
/* harmony import */ var _EulerV2PullDebtAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
13016
|
-
/* harmony import */ var _EulerV2ReorderCollateralsAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
13017
|
-
/* harmony import */ var _EulerV2CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
13040
|
+
/* harmony import */ var _EulerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(322);
|
|
13041
|
+
/* harmony import */ var _EulerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(323);
|
|
13042
|
+
/* harmony import */ var _EulerV2BorrowAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(324);
|
|
13043
|
+
/* harmony import */ var _EulerV2PaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(325);
|
|
13044
|
+
/* harmony import */ var _EulerV2PaybackWithSharesAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(326);
|
|
13045
|
+
/* harmony import */ var _EulerV2PullDebtAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(327);
|
|
13046
|
+
/* harmony import */ var _EulerV2ReorderCollateralsAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(328);
|
|
13047
|
+
/* harmony import */ var _EulerV2CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(329);
|
|
13018
13048
|
|
|
13019
13049
|
|
|
13020
13050
|
|
|
@@ -13025,7 +13055,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13025
13055
|
|
|
13026
13056
|
|
|
13027
13057
|
/***/ }),
|
|
13028
|
-
/*
|
|
13058
|
+
/* 322 */
|
|
13029
13059
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13030
13060
|
|
|
13031
13061
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13073,7 +13103,7 @@ class EulerV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
13073
13103
|
}
|
|
13074
13104
|
|
|
13075
13105
|
/***/ }),
|
|
13076
|
-
/*
|
|
13106
|
+
/* 323 */
|
|
13077
13107
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13078
13108
|
|
|
13079
13109
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13103,7 +13133,7 @@ class EulerV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
13103
13133
|
}
|
|
13104
13134
|
|
|
13105
13135
|
/***/ }),
|
|
13106
|
-
/*
|
|
13136
|
+
/* 324 */
|
|
13107
13137
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13108
13138
|
|
|
13109
13139
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13133,7 +13163,7 @@ class EulerV2BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
13133
13163
|
}
|
|
13134
13164
|
|
|
13135
13165
|
/***/ }),
|
|
13136
|
-
/*
|
|
13166
|
+
/* 325 */
|
|
13137
13167
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13138
13168
|
|
|
13139
13169
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13180,7 +13210,7 @@ class EulerV2PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
13180
13210
|
}
|
|
13181
13211
|
|
|
13182
13212
|
/***/ }),
|
|
13183
|
-
/*
|
|
13213
|
+
/* 326 */
|
|
13184
13214
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13185
13215
|
|
|
13186
13216
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13204,13 +13234,13 @@ class EulerV2PaybackWithSharesAction extends _Action__WEBPACK_IMPORTED_MODULE_0_
|
|
|
13204
13234
|
* @param amount The amount of asset tokens to be paid back (uint256.max for full debt repayment or up to the available deposit shares in 'from' account)
|
|
13205
13235
|
*/
|
|
13206
13236
|
constructor(vault, account, from, amount) {
|
|
13207
|
-
super('EulerV2PaybackWithShares', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13237
|
+
super('EulerV2PaybackWithShares', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'address', 'address', 'uint256'], [vault, account, from, amount]);
|
|
13208
13238
|
this.mappableArgs = [this.args[0], this.args[1], this.args[2], this.args[3]];
|
|
13209
13239
|
}
|
|
13210
13240
|
}
|
|
13211
13241
|
|
|
13212
13242
|
/***/ }),
|
|
13213
|
-
/*
|
|
13243
|
+
/* 327 */
|
|
13214
13244
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13215
13245
|
|
|
13216
13246
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13234,13 +13264,13 @@ class EulerV2PullDebtAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
13234
13264
|
* @param amount The amount of debt to be pulled (uint256.max for full debt pull)
|
|
13235
13265
|
*/
|
|
13236
13266
|
constructor(vault, account, from, amount) {
|
|
13237
|
-
super('EulerV2PullDebt', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13267
|
+
super('EulerV2PullDebt', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'address', 'address', 'uint256'], [vault, account, from, amount]);
|
|
13238
13268
|
this.mappableArgs = [this.args[0], this.args[1], this.args[2], this.args[3]];
|
|
13239
13269
|
}
|
|
13240
13270
|
}
|
|
13241
13271
|
|
|
13242
13272
|
/***/ }),
|
|
13243
|
-
/*
|
|
13273
|
+
/* 328 */
|
|
13244
13274
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13245
13275
|
|
|
13246
13276
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13262,13 +13292,13 @@ class EulerV2ReorderCollateralsAction extends _Action__WEBPACK_IMPORTED_MODULE_0
|
|
|
13262
13292
|
* @param indexes The array of swap steps to reorder collaterals
|
|
13263
13293
|
*/
|
|
13264
13294
|
constructor(account, indexes) {
|
|
13265
|
-
super('EulerV2ReorderCollaterals', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13295
|
+
super('EulerV2ReorderCollaterals', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'uint8[][]'], [account, indexes]);
|
|
13266
13296
|
this.mappableArgs = [this.args[0], this.args[1]];
|
|
13267
13297
|
}
|
|
13268
13298
|
}
|
|
13269
13299
|
|
|
13270
13300
|
/***/ }),
|
|
13271
|
-
/*
|
|
13301
|
+
/* 329 */
|
|
13272
13302
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13273
13303
|
|
|
13274
13304
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13297,7 +13327,7 @@ class EulerV2CollateralSwitchAction extends _Action__WEBPACK_IMPORTED_MODULE_0__
|
|
|
13297
13327
|
}
|
|
13298
13328
|
|
|
13299
13329
|
/***/ }),
|
|
13300
|
-
/*
|
|
13330
|
+
/* 330 */
|
|
13301
13331
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13302
13332
|
|
|
13303
13333
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13306,15 +13336,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13306
13336
|
/* harmony export */ SkyStakeAction: () => (/* reexport safe */ _SkyStakeAction__WEBPACK_IMPORTED_MODULE_1__.SkyStakeAction),
|
|
13307
13337
|
/* harmony export */ SkyUnstakeAction: () => (/* reexport safe */ _SkyUnstakeAction__WEBPACK_IMPORTED_MODULE_2__.SkyUnstakeAction)
|
|
13308
13338
|
/* harmony export */ });
|
|
13309
|
-
/* harmony import */ var _SkyClaimRewardsAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
13310
|
-
/* harmony import */ var _SkyStakeAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
13311
|
-
/* harmony import */ var _SkyUnstakeAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
13339
|
+
/* harmony import */ var _SkyClaimRewardsAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(331);
|
|
13340
|
+
/* harmony import */ var _SkyStakeAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(332);
|
|
13341
|
+
/* harmony import */ var _SkyUnstakeAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(333);
|
|
13312
13342
|
|
|
13313
13343
|
|
|
13314
13344
|
|
|
13315
13345
|
|
|
13316
13346
|
/***/ }),
|
|
13317
|
-
/*
|
|
13347
|
+
/* 331 */
|
|
13318
13348
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13319
13349
|
|
|
13320
13350
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13344,7 +13374,7 @@ class SkyClaimRewardsAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
13344
13374
|
}
|
|
13345
13375
|
|
|
13346
13376
|
/***/ }),
|
|
13347
|
-
/*
|
|
13377
|
+
/* 332 */
|
|
13348
13378
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13349
13379
|
|
|
13350
13380
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13386,7 +13416,7 @@ class SkyStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
13386
13416
|
}
|
|
13387
13417
|
|
|
13388
13418
|
/***/ }),
|
|
13389
|
-
/*
|
|
13419
|
+
/* 333 */
|
|
13390
13420
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13391
13421
|
|
|
13392
13422
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13417,7 +13447,7 @@ class SkyUnstakeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
13417
13447
|
}
|
|
13418
13448
|
|
|
13419
13449
|
/***/ }),
|
|
13420
|
-
/*
|
|
13450
|
+
/* 334 */
|
|
13421
13451
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13422
13452
|
|
|
13423
13453
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13445,28 +13475,28 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13445
13475
|
/* harmony export */ TrailingStopTrigger: () => (/* reexport safe */ _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__.TrailingStopTrigger),
|
|
13446
13476
|
/* harmony export */ UniV3CurrentTickTrigger: () => (/* reexport safe */ _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__.UniV3CurrentTickTrigger)
|
|
13447
13477
|
/* harmony export */ });
|
|
13448
|
-
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
13449
|
-
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
13450
|
-
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
13451
|
-
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
13452
|
-
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
13453
|
-
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
13454
|
-
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
13455
|
-
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
13456
|
-
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
13457
|
-
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
13458
|
-
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
13459
|
-
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
13460
|
-
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
13461
|
-
/* harmony import */ var _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
13462
|
-
/* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
13463
|
-
/* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
13464
|
-
/* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(
|
|
13465
|
-
/* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(
|
|
13466
|
-
/* harmony import */ var _CurveUsdCollRatioTrigger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(
|
|
13467
|
-
/* harmony import */ var _CurveUsdHealthRatioTrigger__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(
|
|
13468
|
-
/* harmony import */ var _MorphoBlueRatioTrigger__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(
|
|
13469
|
-
/* harmony import */ var _OffchainPriceTrigger__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(
|
|
13478
|
+
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(335);
|
|
13479
|
+
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(336);
|
|
13480
|
+
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(337);
|
|
13481
|
+
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(338);
|
|
13482
|
+
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(339);
|
|
13483
|
+
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(340);
|
|
13484
|
+
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(341);
|
|
13485
|
+
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(342);
|
|
13486
|
+
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(343);
|
|
13487
|
+
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(344);
|
|
13488
|
+
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(345);
|
|
13489
|
+
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(346);
|
|
13490
|
+
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(347);
|
|
13491
|
+
/* harmony import */ var _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(348);
|
|
13492
|
+
/* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(349);
|
|
13493
|
+
/* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(350);
|
|
13494
|
+
/* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(351);
|
|
13495
|
+
/* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(352);
|
|
13496
|
+
/* harmony import */ var _CurveUsdCollRatioTrigger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(353);
|
|
13497
|
+
/* harmony import */ var _CurveUsdHealthRatioTrigger__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(354);
|
|
13498
|
+
/* harmony import */ var _MorphoBlueRatioTrigger__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(355);
|
|
13499
|
+
/* harmony import */ var _OffchainPriceTrigger__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(356);
|
|
13470
13500
|
|
|
13471
13501
|
|
|
13472
13502
|
|
|
@@ -13491,7 +13521,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13491
13521
|
|
|
13492
13522
|
|
|
13493
13523
|
/***/ }),
|
|
13494
|
-
/*
|
|
13524
|
+
/* 335 */
|
|
13495
13525
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13496
13526
|
|
|
13497
13527
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13509,12 +13539,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13509
13539
|
*/
|
|
13510
13540
|
class MakerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13511
13541
|
constructor(vaultId, ratio, state) {
|
|
13512
|
-
super('McdRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13542
|
+
super('McdRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256', 'uint256', 'uint8'], [vaultId, ratio, state]);
|
|
13513
13543
|
}
|
|
13514
13544
|
}
|
|
13515
13545
|
|
|
13516
13546
|
/***/ }),
|
|
13517
|
-
/*
|
|
13547
|
+
/* 336 */
|
|
13518
13548
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13519
13549
|
|
|
13520
13550
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13532,12 +13562,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13532
13562
|
*/
|
|
13533
13563
|
class ChainLinkPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13534
13564
|
constructor(tokenAddr, price, state) {
|
|
13535
|
-
super('ChainLinkPriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13565
|
+
super('ChainLinkPriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'uint256', 'uint8'], [tokenAddr, price, state]);
|
|
13536
13566
|
}
|
|
13537
13567
|
}
|
|
13538
13568
|
|
|
13539
13569
|
/***/ }),
|
|
13540
|
-
/*
|
|
13570
|
+
/* 337 */
|
|
13541
13571
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13542
13572
|
|
|
13543
13573
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13555,12 +13585,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13555
13585
|
*/
|
|
13556
13586
|
class UniV3CurrentTickTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13557
13587
|
constructor(tokenId, state) {
|
|
13558
|
-
super('UniV3CurrentTickTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13588
|
+
super('UniV3CurrentTickTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256', 'uint8'], [tokenId, state]);
|
|
13559
13589
|
}
|
|
13560
13590
|
}
|
|
13561
13591
|
|
|
13562
13592
|
/***/ }),
|
|
13563
|
-
/*
|
|
13593
|
+
/* 338 */
|
|
13564
13594
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13565
13595
|
|
|
13566
13596
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13578,12 +13608,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13578
13608
|
*/
|
|
13579
13609
|
class TimestampTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13580
13610
|
constructor(nextTimestamp) {
|
|
13581
|
-
super('TimestampTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13611
|
+
super('TimestampTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256'], [nextTimestamp]);
|
|
13582
13612
|
}
|
|
13583
13613
|
}
|
|
13584
13614
|
|
|
13585
13615
|
/***/ }),
|
|
13586
|
-
/*
|
|
13616
|
+
/* 339 */
|
|
13587
13617
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13588
13618
|
|
|
13589
13619
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13601,12 +13631,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13601
13631
|
*/
|
|
13602
13632
|
class GasPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13603
13633
|
constructor(maxGasPrice) {
|
|
13604
|
-
super('GasPriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13634
|
+
super('GasPriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256'], [maxGasPrice]);
|
|
13605
13635
|
}
|
|
13606
13636
|
}
|
|
13607
13637
|
|
|
13608
13638
|
/***/ }),
|
|
13609
|
-
/*
|
|
13639
|
+
/* 340 */
|
|
13610
13640
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13611
13641
|
|
|
13612
13642
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13624,12 +13654,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13624
13654
|
*/
|
|
13625
13655
|
class CompoundRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13626
13656
|
constructor(user, ratio, state) {
|
|
13627
|
-
super('CompoundRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13657
|
+
super('CompoundRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'uint256', 'uint8'], [user, ratio, state]);
|
|
13628
13658
|
}
|
|
13629
13659
|
}
|
|
13630
13660
|
|
|
13631
13661
|
/***/ }),
|
|
13632
|
-
/*
|
|
13662
|
+
/* 341 */
|
|
13633
13663
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13634
13664
|
|
|
13635
13665
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13647,12 +13677,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13647
13677
|
*/
|
|
13648
13678
|
class ReflexerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13649
13679
|
constructor(vaultId, ratio, state) {
|
|
13650
|
-
super('ReflexerRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13680
|
+
super('ReflexerRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256', 'uint256', 'uint8'], [vaultId, ratio, state]);
|
|
13651
13681
|
}
|
|
13652
13682
|
}
|
|
13653
13683
|
|
|
13654
13684
|
/***/ }),
|
|
13655
|
-
/*
|
|
13685
|
+
/* 342 */
|
|
13656
13686
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13657
13687
|
|
|
13658
13688
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13670,12 +13700,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13670
13700
|
*/
|
|
13671
13701
|
class LiquityRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13672
13702
|
constructor(troveOwner, ratio, state) {
|
|
13673
|
-
super('LiquityRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13703
|
+
super('LiquityRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['addresss', 'uint256', 'uint8'], [troveOwner, ratio, state]);
|
|
13674
13704
|
}
|
|
13675
13705
|
}
|
|
13676
13706
|
|
|
13677
13707
|
/***/ }),
|
|
13678
|
-
/*
|
|
13708
|
+
/* 343 */
|
|
13679
13709
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13680
13710
|
|
|
13681
13711
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13693,12 +13723,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13693
13723
|
*/
|
|
13694
13724
|
class AaveV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13695
13725
|
constructor(user, market, ratio, state) {
|
|
13696
|
-
super('AaveV3RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13726
|
+
super('AaveV3RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint8']], [[user, market, ratio, state]]);
|
|
13697
13727
|
}
|
|
13698
13728
|
}
|
|
13699
13729
|
|
|
13700
13730
|
/***/ }),
|
|
13701
|
-
/*
|
|
13731
|
+
/* 344 */
|
|
13702
13732
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13703
13733
|
|
|
13704
13734
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13716,12 +13746,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13716
13746
|
*/
|
|
13717
13747
|
class CompV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13718
13748
|
constructor(user, market, ratio, state) {
|
|
13719
|
-
super('CompV3RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13749
|
+
super('CompV3RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint8']], [[user, market, ratio, state]]);
|
|
13720
13750
|
}
|
|
13721
13751
|
}
|
|
13722
13752
|
|
|
13723
13753
|
/***/ }),
|
|
13724
|
-
/*
|
|
13754
|
+
/* 345 */
|
|
13725
13755
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13726
13756
|
|
|
13727
13757
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13739,12 +13769,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13739
13769
|
*/
|
|
13740
13770
|
class TrailingStopTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13741
13771
|
constructor(tokenAddr, percentage, roundId) {
|
|
13742
|
-
super('TrailingStopTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13772
|
+
super('TrailingStopTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'uint256', 'uint80'], [tokenAddr, percentage, roundId]);
|
|
13743
13773
|
}
|
|
13744
13774
|
}
|
|
13745
13775
|
|
|
13746
13776
|
/***/ }),
|
|
13747
|
-
/*
|
|
13777
|
+
/* 346 */
|
|
13748
13778
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13749
13779
|
|
|
13750
13780
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13762,12 +13792,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13762
13792
|
*/
|
|
13763
13793
|
class CBRebondTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13764
13794
|
constructor(bondID) {
|
|
13765
|
-
super('CBRebondTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13795
|
+
super('CBRebondTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256'], [bondID]);
|
|
13766
13796
|
}
|
|
13767
13797
|
}
|
|
13768
13798
|
|
|
13769
13799
|
/***/ }),
|
|
13770
|
-
/*
|
|
13800
|
+
/* 347 */
|
|
13771
13801
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13772
13802
|
|
|
13773
13803
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13785,12 +13815,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13785
13815
|
*/
|
|
13786
13816
|
class AaveV3QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13787
13817
|
constructor(baseTokenAddr, quoteTokenAddr, price, state) {
|
|
13788
|
-
super('AaveV3QuotePriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13818
|
+
super('AaveV3QuotePriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint8']], [[baseTokenAddr, quoteTokenAddr, price, state]]);
|
|
13789
13819
|
}
|
|
13790
13820
|
}
|
|
13791
13821
|
|
|
13792
13822
|
/***/ }),
|
|
13793
|
-
/*
|
|
13823
|
+
/* 348 */
|
|
13794
13824
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13795
13825
|
|
|
13796
13826
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13808,12 +13838,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13808
13838
|
*/
|
|
13809
13839
|
class AaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13810
13840
|
constructor(user, market, ratio, state) {
|
|
13811
|
-
super('AaveV2RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13841
|
+
super('AaveV2RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint8']], [[user, market, ratio, state]]);
|
|
13812
13842
|
}
|
|
13813
13843
|
}
|
|
13814
13844
|
|
|
13815
13845
|
/***/ }),
|
|
13816
|
-
/*
|
|
13846
|
+
/* 349 */
|
|
13817
13847
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13818
13848
|
|
|
13819
13849
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13831,12 +13861,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13831
13861
|
*/
|
|
13832
13862
|
class MorphoAaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13833
13863
|
constructor(user, ratio, state) {
|
|
13834
|
-
super('MorphoAaveV2RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13864
|
+
super('MorphoAaveV2RatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'uint256', 'uint8'], [user, ratio, state]);
|
|
13835
13865
|
}
|
|
13836
13866
|
}
|
|
13837
13867
|
|
|
13838
13868
|
/***/ }),
|
|
13839
|
-
/*
|
|
13869
|
+
/* 350 */
|
|
13840
13870
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13841
13871
|
|
|
13842
13872
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13854,12 +13884,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13854
13884
|
*/
|
|
13855
13885
|
class SparkRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13856
13886
|
constructor(user, market, ratio, state) {
|
|
13857
|
-
super('SparkRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13887
|
+
super('SparkRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint8']], [[user, market, ratio, state]]);
|
|
13858
13888
|
}
|
|
13859
13889
|
}
|
|
13860
13890
|
|
|
13861
13891
|
/***/ }),
|
|
13862
|
-
/*
|
|
13892
|
+
/* 351 */
|
|
13863
13893
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13864
13894
|
|
|
13865
13895
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13877,12 +13907,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13877
13907
|
*/
|
|
13878
13908
|
class SparkQuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13879
13909
|
constructor(baseTokenAddr, quoteTokenAddr, price, state) {
|
|
13880
|
-
super('SparkQuotePriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13910
|
+
super('SparkQuotePriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint8']], [[baseTokenAddr, quoteTokenAddr, price, state]]);
|
|
13881
13911
|
}
|
|
13882
13912
|
}
|
|
13883
13913
|
|
|
13884
13914
|
/***/ }),
|
|
13885
|
-
/*
|
|
13915
|
+
/* 352 */
|
|
13886
13916
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13887
13917
|
|
|
13888
13918
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13900,12 +13930,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13900
13930
|
*/
|
|
13901
13931
|
class LiquityDebtInFrontWithLimitTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13902
13932
|
constructor(troveOwner, debtInFront) {
|
|
13903
|
-
super('LiquityDebtInFrontWithLimitTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13933
|
+
super('LiquityDebtInFrontWithLimitTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['address', 'uint256'], [troveOwner, debtInFront]);
|
|
13904
13934
|
}
|
|
13905
13935
|
}
|
|
13906
13936
|
|
|
13907
13937
|
/***/ }),
|
|
13908
|
-
/*
|
|
13938
|
+
/* 353 */
|
|
13909
13939
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13910
13940
|
|
|
13911
13941
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13923,12 +13953,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13923
13953
|
*/
|
|
13924
13954
|
class CurveUsdCollRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13925
13955
|
constructor(user, controller, ratio, state) {
|
|
13926
|
-
super('CurveUsdCollRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13956
|
+
super('CurveUsdCollRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint8']], [[user, controller, ratio, state]]);
|
|
13927
13957
|
}
|
|
13928
13958
|
}
|
|
13929
13959
|
|
|
13930
13960
|
/***/ }),
|
|
13931
|
-
/*
|
|
13961
|
+
/* 354 */
|
|
13932
13962
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13933
13963
|
|
|
13934
13964
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13946,12 +13976,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13946
13976
|
*/
|
|
13947
13977
|
class CurveUsdHealthRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13948
13978
|
constructor(user, controller, ratio) {
|
|
13949
|
-
super('CurveUsdHealthRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
13979
|
+
super('CurveUsdHealthRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256']], [[user, controller, ratio]]);
|
|
13950
13980
|
}
|
|
13951
13981
|
}
|
|
13952
13982
|
|
|
13953
13983
|
/***/ }),
|
|
13954
|
-
/*
|
|
13984
|
+
/* 355 */
|
|
13955
13985
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13956
13986
|
|
|
13957
13987
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13969,12 +13999,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13969
13999
|
*/
|
|
13970
14000
|
class MorphoBlueRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13971
14001
|
constructor(marketId, user, ratio, state) {
|
|
13972
|
-
super('MorphoBlueRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
14002
|
+
super('MorphoBlueRatioTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['bytes32', 'address', 'uint256', 'uint8']], [[marketId, user, ratio, state]]);
|
|
13973
14003
|
}
|
|
13974
14004
|
}
|
|
13975
14005
|
|
|
13976
14006
|
/***/ }),
|
|
13977
|
-
/*
|
|
14007
|
+
/* 356 */
|
|
13978
14008
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
13979
14009
|
|
|
13980
14010
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13992,12 +14022,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13992
14022
|
*/
|
|
13993
14023
|
class OffchainPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
13994
14024
|
constructor(limitPrice, limitType) {
|
|
13995
|
-
super('OffchainPriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('
|
|
14025
|
+
super('OffchainPriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), ['uint256', 'uint8'], [limitPrice, limitType]);
|
|
13996
14026
|
}
|
|
13997
14027
|
}
|
|
13998
14028
|
|
|
13999
14029
|
/***/ }),
|
|
14000
|
-
/*
|
|
14030
|
+
/* 357 */
|
|
14001
14031
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
14002
14032
|
|
|
14003
14033
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14011,13 +14041,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14011
14041
|
/* harmony export */ uniswapV3LP: () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
|
|
14012
14042
|
/* harmony export */ zeroExExchange: () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
|
|
14013
14043
|
/* harmony export */ });
|
|
14014
|
-
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
14044
|
+
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(358);
|
|
14015
14045
|
/* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(133);
|
|
14016
|
-
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
14017
|
-
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
14018
|
-
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
14019
|
-
/* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
14020
|
-
/* harmony import */ var _curveusd_utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
14046
|
+
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(360);
|
|
14047
|
+
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(234);
|
|
14048
|
+
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(214);
|
|
14049
|
+
/* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(200);
|
|
14050
|
+
/* harmony import */ var _curveusd_utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(275);
|
|
14021
14051
|
/* harmony import */ var _basic_utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(94);
|
|
14022
14052
|
|
|
14023
14053
|
|
|
@@ -14030,7 +14060,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14030
14060
|
|
|
14031
14061
|
|
|
14032
14062
|
/***/ }),
|
|
14033
|
-
/*
|
|
14063
|
+
/* 358 */
|
|
14034
14064
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
14035
14065
|
|
|
14036
14066
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14041,7 +14071,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14041
14071
|
/* harmony export */ });
|
|
14042
14072
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
|
|
14043
14073
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
14044
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
14074
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(359);
|
|
14045
14075
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
|
|
14046
14076
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
|
|
14047
14077
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -14243,20 +14273,20 @@ var createSellAction = /*#__PURE__*/function () {
|
|
|
14243
14273
|
}();
|
|
14244
14274
|
|
|
14245
14275
|
/***/ }),
|
|
14246
|
-
/*
|
|
14276
|
+
/* 359 */
|
|
14247
14277
|
/***/ ((module) => {
|
|
14248
14278
|
|
|
14249
|
-
module.exports =
|
|
14279
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__359__;
|
|
14250
14280
|
|
|
14251
14281
|
/***/ }),
|
|
14252
|
-
/*
|
|
14282
|
+
/* 360 */
|
|
14253
14283
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
14254
14284
|
|
|
14255
14285
|
__webpack_require__.r(__webpack_exports__);
|
|
14256
14286
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14257
14287
|
/* harmony export */ getAssetAddrByTokenId: () => (/* binding */ getAssetAddrByTokenId)
|
|
14258
14288
|
/* harmony export */ });
|
|
14259
|
-
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
14289
|
+
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(361);
|
|
14260
14290
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
14261
14291
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
14262
14292
|
/**
|
|
@@ -14281,7 +14311,7 @@ var getAssetAddrByTokenId = /*#__PURE__*/function () {
|
|
|
14281
14311
|
}();
|
|
14282
14312
|
|
|
14283
14313
|
/***/ }),
|
|
14284
|
-
/*
|
|
14314
|
+
/* 361 */
|
|
14285
14315
|
/***/ ((module) => {
|
|
14286
14316
|
|
|
14287
14317
|
module.exports = /*#__PURE__*/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"}]');
|
|
@@ -14385,8 +14415,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14385
14415
|
/* harmony import */ var _Strategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(29);
|
|
14386
14416
|
/* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);
|
|
14387
14417
|
/* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(35);
|
|
14388
|
-
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
14389
|
-
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
14418
|
+
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(334);
|
|
14419
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(357);
|
|
14390
14420
|
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(4);
|
|
14391
14421
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(27);
|
|
14392
14422
|
/* Export types here */
|