@defisaver/sdk 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/src/Action.d.ts +1 -0
- package/esm/src/Action.js +16 -2
- package/esm/src/actions/basic/CreateSubAction.d.ts +13 -0
- package/esm/src/actions/basic/CreateSubAction.js +18 -0
- package/esm/src/actions/basic/UpdateSubAction.js +6 -0
- package/esm/src/actions/basic/index.d.ts +1 -0
- package/esm/src/actions/basic/index.js +1 -0
- package/esm/src/actions/chickenBonds/CBCreateRebondSubAction.d.ts +13 -0
- package/esm/src/actions/chickenBonds/CBCreateRebondSubAction.js +18 -0
- package/esm/src/actions/chickenBonds/CBUpdateRebondSubAction.d.ts +14 -0
- package/esm/src/actions/chickenBonds/CBUpdateRebondSubAction.js +16 -0
- package/esm/src/actions/chickenBonds/FetchBondIdAction.d.ts +15 -0
- package/esm/src/actions/chickenBonds/FetchBondIdAction.js +21 -0
- package/esm/src/actions/chickenBonds/index.d.ts +3 -0
- package/esm/src/actions/chickenBonds/index.js +3 -0
- package/esm/src/addresses.d.ts +12 -0
- package/esm/src/addresses.js +9 -5
- package/esm/src/index.d.ts +48 -0
- package/esm/src/triggers/CBRebondTrigger.d.ts +10 -0
- package/esm/src/triggers/CBRebondTrigger.js +12 -0
- package/esm/src/triggers/index.d.ts +1 -0
- package/esm/src/triggers/index.js +1 -0
- package/package-lock.json +68 -14
- package/package.json +1 -1
- package/src/Action.ts +17 -2
- package/src/actions/basic/CreateSubAction.ts +23 -0
- package/src/actions/basic/UpdateSubAction.ts +8 -1
- package/src/actions/basic/index.ts +2 -1
- package/src/actions/chickenBonds/CBCreateRebondSubAction.ts +20 -0
- package/src/actions/chickenBonds/CBUpdateRebondSubAction.ts +18 -0
- package/src/actions/chickenBonds/FetchBondIdAction.ts +23 -0
- package/src/actions/chickenBonds/index.ts +5 -1
- package/src/addresses.ts +9 -6
- package/src/triggers/CBRebondTrigger.ts +14 -0
- package/src/triggers/index.ts +1 -0
- package/umd/index.js +471 -298
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__,
|
|
10
|
+
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__5__, __WEBPACK_EXTERNAL_MODULE__6__, __WEBPACK_EXTERNAL_MODULE__98__, __WEBPACK_EXTERNAL_MODULE__99__, __WEBPACK_EXTERNAL_MODULE__220__) => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ "use strict";
|
|
13
13
|
/******/ var __webpack_modules__ = ([
|
|
@@ -99,11 +99,26 @@ class Action {
|
|
|
99
99
|
*
|
|
100
100
|
*/
|
|
101
101
|
|
|
102
|
+
_parseParamType(paramType, arg) {
|
|
103
|
+
if (typeof paramType === 'string') {
|
|
104
|
+
if (paramType.startsWith('(')) {
|
|
105
|
+
var _paramType = paramType.replace('(', '');
|
|
106
|
+
_paramType = _paramType.replace(')', '');
|
|
107
|
+
return _paramType.split(',');
|
|
108
|
+
}
|
|
109
|
+
if (paramType.endsWith('[]')) {
|
|
110
|
+
return Array.from(Array(arg.length).fill(paramType.replace('[]', '')));
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
return paramType;
|
|
114
|
+
}
|
|
115
|
+
|
|
102
116
|
/**
|
|
103
117
|
*
|
|
104
118
|
*/
|
|
105
119
|
_replaceWithPlaceholders(arg, paramType) {
|
|
106
|
-
|
|
120
|
+
var paramTypeParsed = this._parseParamType(paramType, arg);
|
|
121
|
+
if (Array.isArray(arg)) return arg.map((_arg, i) => this._replaceWithPlaceholders(_arg, paramTypeParsed[i]));
|
|
107
122
|
if (typeof paramType === 'string') {
|
|
108
123
|
if (new RegExp(/\$\d+/).test(arg)) return _classPrivateMethodGet(this, _getPlaceholderForType, _getPlaceholderForType2).call(this, paramType);
|
|
109
124
|
if (new RegExp(/&\w+/).test(arg)) return _classPrivateMethodGet(this, _getPlaceholderForType, _getPlaceholderForType2).call(this, paramType);
|
|
@@ -227,7 +242,7 @@ function _getArgumentMappingWithSlots2(subSlots) {
|
|
|
227
242
|
function _getPlaceholderForType2(type) {
|
|
228
243
|
// TODO handle arrays?
|
|
229
244
|
// eslint-disable-next-line
|
|
230
|
-
if (type.startsWith('bytes')) return "0x".concat('0'.repeat(parseInt(type.substr(5))));
|
|
245
|
+
if (type.startsWith('bytes')) return "0x".concat('0'.repeat(parseInt(type.substr(5)) * 2));
|
|
231
246
|
if (type === 'address') return "0x".concat('0'.repeat(40));
|
|
232
247
|
if (type === 'string') return '';
|
|
233
248
|
return '0';
|
|
@@ -1226,10 +1241,11 @@ var actionAddresses = {
|
|
|
1226
1241
|
AutomationV2Unsub: '0xe35Fb12fE9796847751076aCf5ee7d124108612C',
|
|
1227
1242
|
SendTokenAndUnwrap: '0xeecd376026335261c89faD40D89625391b1eFF6a',
|
|
1228
1243
|
ToggleSub: '0x9A78E9d6538cfDbA0242Ca5eC46771E6132E8085',
|
|
1229
|
-
UpdateSub: '
|
|
1244
|
+
UpdateSub: '0x92e93a50F75dF380f0A34327Ce7243E43B74303c',
|
|
1230
1245
|
TransferNFT: '0x861e893E1796F81248e75F06C0b09Abdc8fe2f6F',
|
|
1246
|
+
CreateSub: '0x6C94C856361aB12165120a3A9A936c41Af238121',
|
|
1231
1247
|
// exchange
|
|
1232
|
-
DFSSell: '
|
|
1248
|
+
DFSSell: '0x951D7B421f45FF0e4A8ddE0288aE3f9C2C69b784',
|
|
1233
1249
|
// maker
|
|
1234
1250
|
McdGenerate: '0xCb50a91C0f12f439b8bf11E9474B9c1ED62Bf7a3',
|
|
1235
1251
|
McdGive: '0xf9556A87BF424834FDe7De0547b58E36Cb42EF01',
|
|
@@ -1287,7 +1303,7 @@ var actionAddresses = {
|
|
|
1287
1303
|
LiquityClose: '0x4B2d174129789a88e92D46342201F207132144b7',
|
|
1288
1304
|
LiquityBorrow: '0xF978d6C5c8af80a059AdB85EEb64F14C9c436D68',
|
|
1289
1305
|
LiquityOpen: '0x4EFF392cc69B31Ad159EcfA10305251b2d8E40E0',
|
|
1290
|
-
LiquityPayback: '
|
|
1306
|
+
LiquityPayback: '0x5eaa94e6E1044F8fe396f76682D4a4546d374527',
|
|
1291
1307
|
LiquityWithdraw: '0x733F53579bEcdd3Ed07e745A55Ee9af8B9669048',
|
|
1292
1308
|
LiquitySupply: '0xD539943e080C2a29e3f1DB2d45Ea7240d7ddDEE2',
|
|
1293
1309
|
LiquitySPDeposit: '0x5aB0244a00a733f16E6b238B462bdF3538C698E1',
|
|
@@ -1326,6 +1342,8 @@ var actionAddresses = {
|
|
|
1326
1342
|
// Euler
|
|
1327
1343
|
FLEuler: '0x66DC6444CdC099153f89332e0d4C87af5C966A75',
|
|
1328
1344
|
TrailingStopTrigger: '0x0000000000000000000000000000000000000000',
|
|
1345
|
+
CBRebondTrigger: '0x6Bb48580977e2aBfD6c70B522204EFbe828a9428',
|
|
1346
|
+
CBUpdateRebondSub: '0x2709Fd59a27F35997dFf618E3C68ABA1c9e91465',
|
|
1329
1347
|
// Convex
|
|
1330
1348
|
ConvexDeposit: '0x3Ecc4F1FD5aA09D2E13Ec9ebFdF102063d66F458',
|
|
1331
1349
|
ConvexWithdraw: '0x2B2c235F9e27A121947c34A39d447bD4C585aA15',
|
|
@@ -1335,6 +1353,7 @@ var actionAddresses = {
|
|
|
1335
1353
|
CBRedeem: '0xdD06754cA5367B03af7014AB359332eD82D988d1',
|
|
1336
1354
|
CBChickenIn: '0x1E990AF6dCf9E9f8a0b2fc76f3BC032A34fFfD14',
|
|
1337
1355
|
CBChickenOut: '0x3d2f2d88749BB387abD07A2408b68D2Bf2D4be3f',
|
|
1356
|
+
CBCreateRebondSub: '0x31Ebd23C00f3266ae84531025C91c030347CBCAA',
|
|
1338
1357
|
// CompV3
|
|
1339
1358
|
CompV3Allow: '0xC4a80f22bf56E0dFa2CB378561B934F41E14bc9f',
|
|
1340
1359
|
CompV3Borrow: '0x11e7b984299a771C92CD42A87358a32791A75CEA',
|
|
@@ -1345,7 +1364,7 @@ var actionAddresses = {
|
|
|
1345
1364
|
CompV3Withdraw: '0x0b0F21EDE32DE4243D9145a899E97FC2366Aec46'
|
|
1346
1365
|
},
|
|
1347
1366
|
[_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.optimism.chainId]: {
|
|
1348
|
-
DFSSell: '
|
|
1367
|
+
DFSSell: '0xC6c601fcAa870efd26C624F8c65fbc54cBe533b1',
|
|
1349
1368
|
// basic
|
|
1350
1369
|
WrapEth: '0x6D735db054AC4a1F10f96b99f8550E9eefbC2AC5',
|
|
1351
1370
|
UnwrapEth: '0x1Fa75B00A05C2EbBd0EDF253a63c209966337A0d',
|
|
@@ -1379,7 +1398,7 @@ var actionAddresses = {
|
|
|
1379
1398
|
UniCreatePoolV3: '0xAF45d1380d89dB7260DC2684158c5dfA4E147d3e'
|
|
1380
1399
|
},
|
|
1381
1400
|
[_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.arbitrum.chainId]: {
|
|
1382
|
-
DFSSell: '
|
|
1401
|
+
DFSSell: '0x9109F34AB28D369cF894aF45C50E976B8E312a82',
|
|
1383
1402
|
// basic
|
|
1384
1403
|
WrapEth: '0x35136b25bFA7CCC8f5b94E3181a16B61c06980F0',
|
|
1385
1404
|
UnwrapEth: '0x2B69d494536098700910D167902D1d397dcA2B61',
|
|
@@ -1748,25 +1767,25 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1748
1767
|
/* harmony import */ var _aave__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(47);
|
|
1749
1768
|
/* harmony import */ var _compound__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(54);
|
|
1750
1769
|
/* harmony import */ var _basic__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(62);
|
|
1751
|
-
/* harmony import */ var _flashloan__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
1752
|
-
/* harmony import */ var _uniswap__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
1753
|
-
/* harmony import */ var _reflexer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
1754
|
-
/* harmony import */ var _dydx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
1755
|
-
/* harmony import */ var _uniswapV3__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
1756
|
-
/* harmony import */ var _checkers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
1757
|
-
/* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
1758
|
-
/* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
1759
|
-
/* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
1760
|
-
/* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
1761
|
-
/* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
1762
|
-
/* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
1763
|
-
/* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(
|
|
1764
|
-
/* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(
|
|
1765
|
-
/* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(
|
|
1766
|
-
/* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(
|
|
1767
|
-
/* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(
|
|
1768
|
-
/* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(
|
|
1769
|
-
/* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(
|
|
1770
|
+
/* harmony import */ var _flashloan__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(80);
|
|
1771
|
+
/* harmony import */ var _uniswap__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(94);
|
|
1772
|
+
/* harmony import */ var _reflexer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(100);
|
|
1773
|
+
/* harmony import */ var _dydx__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(109);
|
|
1774
|
+
/* harmony import */ var _uniswapV3__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(111);
|
|
1775
|
+
/* harmony import */ var _checkers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(117);
|
|
1776
|
+
/* harmony import */ var _liquity__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(121);
|
|
1777
|
+
/* harmony import */ var _yearn__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(137);
|
|
1778
|
+
/* harmony import */ var _lido__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(140);
|
|
1779
|
+
/* harmony import */ var _insta__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(144);
|
|
1780
|
+
/* harmony import */ var _balancer__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(146);
|
|
1781
|
+
/* harmony import */ var _curve__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(150);
|
|
1782
|
+
/* harmony import */ var _guni__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(162);
|
|
1783
|
+
/* harmony import */ var _mstable__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(165);
|
|
1784
|
+
/* harmony import */ var _rari__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(170);
|
|
1785
|
+
/* harmony import */ var _aaveV3__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(173);
|
|
1786
|
+
/* harmony import */ var _convex__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(183);
|
|
1787
|
+
/* harmony import */ var _chickenBonds__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(189);
|
|
1788
|
+
/* harmony import */ var _compoundV3__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(197);
|
|
1770
1789
|
|
|
1771
1790
|
|
|
1772
1791
|
|
|
@@ -2709,6 +2728,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2709
2728
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2710
2729
|
/* harmony export */ "AutomationV2Unsub": () => (/* reexport safe */ _AutomationV2Unsub__WEBPACK_IMPORTED_MODULE_10__.AutomationV2Unsub),
|
|
2711
2730
|
/* harmony export */ "ChangeProxyOwnerAction": () => (/* reexport safe */ _ChangeProxyOwnerAction__WEBPACK_IMPORTED_MODULE_8__.ChangeProxyOwnerAction),
|
|
2731
|
+
/* harmony export */ "CreateSubAction": () => (/* reexport safe */ _CreateSubAction__WEBPACK_IMPORTED_MODULE_16__.CreateSubAction),
|
|
2712
2732
|
/* harmony export */ "GasFeeAction": () => (/* reexport safe */ _GasFeeAction__WEBPACK_IMPORTED_MODULE_11__.GasFeeAction),
|
|
2713
2733
|
/* harmony export */ "GasFeeActionL2": () => (/* reexport safe */ _GasFeeActionL2__WEBPACK_IMPORTED_MODULE_14__.GasFeeActionL2),
|
|
2714
2734
|
/* harmony export */ "PullTokenAction": () => (/* reexport safe */ _PullTokenAction__WEBPACK_IMPORTED_MODULE_3__.PullTokenAction),
|
|
@@ -2740,6 +2760,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2740
2760
|
/* harmony import */ var _ToggleSubAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(76);
|
|
2741
2761
|
/* harmony import */ var _GasFeeActionL2__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(77);
|
|
2742
2762
|
/* harmony import */ var _TransferNFTAction__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(78);
|
|
2763
|
+
/* harmony import */ var _CreateSubAction__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(79);
|
|
2764
|
+
|
|
2743
2765
|
|
|
2744
2766
|
|
|
2745
2767
|
|
|
@@ -3188,6 +3210,10 @@ class UpdateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
3188
3210
|
*/
|
|
3189
3211
|
constructor(subId, sub) {
|
|
3190
3212
|
super('UpdateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('UpdateSub'), ['uint256', '(uint64,bool,bytes[],bytes32[])'], [subId, sub]);
|
|
3213
|
+
this.mappableArgs = [this.args[0]];
|
|
3214
|
+
for (var i = 0; i < this.args[1][3].length; i++) {
|
|
3215
|
+
this.mappableArgs.push(this.args[1][3][i]);
|
|
3216
|
+
}
|
|
3191
3217
|
}
|
|
3192
3218
|
}
|
|
3193
3219
|
|
|
@@ -3278,6 +3304,35 @@ class TransferNFTAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
3278
3304
|
/* 79 */
|
|
3279
3305
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3280
3306
|
|
|
3307
|
+
__webpack_require__.r(__webpack_exports__);
|
|
3308
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3309
|
+
/* harmony export */ "CreateSubAction": () => (/* binding */ CreateSubAction)
|
|
3310
|
+
/* harmony export */ });
|
|
3311
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
3312
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
3313
|
+
|
|
3314
|
+
|
|
3315
|
+
/**
|
|
3316
|
+
* Action for creating a sub
|
|
3317
|
+
*
|
|
3318
|
+
* @category BasicActions
|
|
3319
|
+
*/
|
|
3320
|
+
class CreateSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
3321
|
+
/**
|
|
3322
|
+
* @param sub object that contains new sub information
|
|
3323
|
+
*/
|
|
3324
|
+
constructor(sub) {
|
|
3325
|
+
super('CreateSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CreateSub'), ['(uint64,bool,bytes[],bytes32[])'], [sub]);
|
|
3326
|
+
for (var i = 0; i < this.args[0][3].length; i++) {
|
|
3327
|
+
this.mappableArgs.push(this.args[0][3][i]);
|
|
3328
|
+
}
|
|
3329
|
+
}
|
|
3330
|
+
}
|
|
3331
|
+
|
|
3332
|
+
/***/ }),
|
|
3333
|
+
/* 80 */
|
|
3334
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3335
|
+
|
|
3281
3336
|
__webpack_require__.r(__webpack_exports__);
|
|
3282
3337
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3283
3338
|
/* harmony export */ "AaveV2FlashLoanAction": () => (/* reexport safe */ _AaveV2FlashLoanAction__WEBPACK_IMPORTED_MODULE_2__.AaveV2FlashLoanAction),
|
|
@@ -3294,19 +3349,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3294
3349
|
/* harmony export */ "MakerFlashLoanAction": () => (/* reexport safe */ _MakerFlashLoanAction__WEBPACK_IMPORTED_MODULE_6__.MakerFlashLoanAction),
|
|
3295
3350
|
/* harmony export */ "MakerFlashLoanPaybackAction": () => (/* reexport safe */ _MakerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_7__.MakerFlashLoanPaybackAction)
|
|
3296
3351
|
/* harmony export */ });
|
|
3297
|
-
/* harmony import */ var _DyDxFlashLoanAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
3298
|
-
/* harmony import */ var _DyDxFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
3299
|
-
/* harmony import */ var _AaveV2FlashLoanAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
3300
|
-
/* harmony import */ var _AaveV2FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
3301
|
-
/* harmony import */ var _AaveV3FlashLoanAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
3302
|
-
/* harmony import */ var _AaveV3FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
3303
|
-
/* harmony import */ var _MakerFlashLoanAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
3304
|
-
/* harmony import */ var _MakerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
3305
|
-
/* harmony import */ var _BalancerFlashLoanAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
3306
|
-
/* harmony import */ var _BalancerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
3307
|
-
/* harmony import */ var _EulerFlashLoanAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
3308
|
-
/* harmony import */ var _EulerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
3309
|
-
/* harmony import */ var _FLAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
3352
|
+
/* harmony import */ var _DyDxFlashLoanAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81);
|
|
3353
|
+
/* harmony import */ var _DyDxFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(82);
|
|
3354
|
+
/* harmony import */ var _AaveV2FlashLoanAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(83);
|
|
3355
|
+
/* harmony import */ var _AaveV2FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(84);
|
|
3356
|
+
/* harmony import */ var _AaveV3FlashLoanAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(85);
|
|
3357
|
+
/* harmony import */ var _AaveV3FlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(86);
|
|
3358
|
+
/* harmony import */ var _MakerFlashLoanAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(87);
|
|
3359
|
+
/* harmony import */ var _MakerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(88);
|
|
3360
|
+
/* harmony import */ var _BalancerFlashLoanAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(89);
|
|
3361
|
+
/* harmony import */ var _BalancerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(90);
|
|
3362
|
+
/* harmony import */ var _EulerFlashLoanAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(91);
|
|
3363
|
+
/* harmony import */ var _EulerFlashLoanPaybackAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(92);
|
|
3364
|
+
/* harmony import */ var _FLAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(93);
|
|
3310
3365
|
|
|
3311
3366
|
|
|
3312
3367
|
|
|
@@ -3322,7 +3377,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3322
3377
|
|
|
3323
3378
|
|
|
3324
3379
|
/***/ }),
|
|
3325
|
-
/*
|
|
3380
|
+
/* 81 */
|
|
3326
3381
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3327
3382
|
|
|
3328
3383
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3353,7 +3408,7 @@ class DyDxFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
3353
3408
|
}
|
|
3354
3409
|
|
|
3355
3410
|
/***/ }),
|
|
3356
|
-
/*
|
|
3411
|
+
/* 82 */
|
|
3357
3412
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3358
3413
|
|
|
3359
3414
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3380,7 +3435,7 @@ class DyDxFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.Sen
|
|
|
3380
3435
|
}
|
|
3381
3436
|
|
|
3382
3437
|
/***/ }),
|
|
3383
|
-
/*
|
|
3438
|
+
/* 83 */
|
|
3384
3439
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3385
3440
|
|
|
3386
3441
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3413,7 +3468,7 @@ class AaveV2FlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
3413
3468
|
}
|
|
3414
3469
|
|
|
3415
3470
|
/***/ }),
|
|
3416
|
-
/*
|
|
3471
|
+
/* 84 */
|
|
3417
3472
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3418
3473
|
|
|
3419
3474
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3440,7 +3495,7 @@ class AaveV2FlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.S
|
|
|
3440
3495
|
}
|
|
3441
3496
|
|
|
3442
3497
|
/***/ }),
|
|
3443
|
-
/*
|
|
3498
|
+
/* 85 */
|
|
3444
3499
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3445
3500
|
|
|
3446
3501
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3473,7 +3528,7 @@ class AaveV3FlashLoanAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
3473
3528
|
}
|
|
3474
3529
|
|
|
3475
3530
|
/***/ }),
|
|
3476
|
-
/*
|
|
3531
|
+
/* 86 */
|
|
3477
3532
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3478
3533
|
|
|
3479
3534
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3500,7 +3555,7 @@ class AaveV3FlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.S
|
|
|
3500
3555
|
}
|
|
3501
3556
|
|
|
3502
3557
|
/***/ }),
|
|
3503
|
-
/*
|
|
3558
|
+
/* 87 */
|
|
3504
3559
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3505
3560
|
|
|
3506
3561
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3530,7 +3585,7 @@ class MakerFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
3530
3585
|
}
|
|
3531
3586
|
|
|
3532
3587
|
/***/ }),
|
|
3533
|
-
/*
|
|
3588
|
+
/* 88 */
|
|
3534
3589
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3535
3590
|
|
|
3536
3591
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3556,7 +3611,7 @@ class MakerFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.Se
|
|
|
3556
3611
|
}
|
|
3557
3612
|
|
|
3558
3613
|
/***/ }),
|
|
3559
|
-
/*
|
|
3614
|
+
/* 89 */
|
|
3560
3615
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3561
3616
|
|
|
3562
3617
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3587,7 +3642,7 @@ class BalancerFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
3587
3642
|
}
|
|
3588
3643
|
|
|
3589
3644
|
/***/ }),
|
|
3590
|
-
/*
|
|
3645
|
+
/* 90 */
|
|
3591
3646
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3592
3647
|
|
|
3593
3648
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3614,7 +3669,7 @@ class BalancerFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__
|
|
|
3614
3669
|
}
|
|
3615
3670
|
|
|
3616
3671
|
/***/ }),
|
|
3617
|
-
/*
|
|
3672
|
+
/* 91 */
|
|
3618
3673
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3619
3674
|
|
|
3620
3675
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3645,7 +3700,7 @@ class EulerFlashLoanAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
3645
3700
|
}
|
|
3646
3701
|
|
|
3647
3702
|
/***/ }),
|
|
3648
|
-
/*
|
|
3703
|
+
/* 92 */
|
|
3649
3704
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3650
3705
|
|
|
3651
3706
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3672,7 +3727,7 @@ class EulerFlashLoanPaybackAction extends _basic__WEBPACK_IMPORTED_MODULE_0__.Se
|
|
|
3672
3727
|
}
|
|
3673
3728
|
|
|
3674
3729
|
/***/ }),
|
|
3675
|
-
/*
|
|
3730
|
+
/* 93 */
|
|
3676
3731
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3677
3732
|
|
|
3678
3733
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3726,7 +3781,7 @@ function _handleArgs2(specificFLAction) {
|
|
|
3726
3781
|
}
|
|
3727
3782
|
|
|
3728
3783
|
/***/ }),
|
|
3729
|
-
/*
|
|
3784
|
+
/* 94 */
|
|
3730
3785
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3731
3786
|
|
|
3732
3787
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3734,13 +3789,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3734
3789
|
/* harmony export */ "UniswapSupplyAction": () => (/* reexport safe */ _UniswapSupplyAction__WEBPACK_IMPORTED_MODULE_0__.UniswapSupplyAction),
|
|
3735
3790
|
/* harmony export */ "UniswapWithdrawAction": () => (/* reexport safe */ _UniswapWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.UniswapWithdrawAction)
|
|
3736
3791
|
/* harmony export */ });
|
|
3737
|
-
/* harmony import */ var _UniswapSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
3738
|
-
/* harmony import */ var _UniswapWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
3792
|
+
/* harmony import */ var _UniswapSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(95);
|
|
3793
|
+
/* harmony import */ var _UniswapWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(96);
|
|
3739
3794
|
|
|
3740
3795
|
|
|
3741
3796
|
|
|
3742
3797
|
/***/ }),
|
|
3743
|
-
/*
|
|
3798
|
+
/* 95 */
|
|
3744
3799
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3745
3800
|
|
|
3746
3801
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3803,7 +3858,7 @@ class UniswapSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
3803
3858
|
}
|
|
3804
3859
|
|
|
3805
3860
|
/***/ }),
|
|
3806
|
-
/*
|
|
3861
|
+
/* 96 */
|
|
3807
3862
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3808
3863
|
|
|
3809
3864
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3811,7 +3866,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3811
3866
|
/* harmony export */ "UniswapWithdrawAction": () => (/* binding */ UniswapWithdrawAction)
|
|
3812
3867
|
/* harmony export */ });
|
|
3813
3868
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
3814
|
-
/* harmony import */ var _utils_uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
3869
|
+
/* harmony import */ var _utils_uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(97);
|
|
3815
3870
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
3816
3871
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(39);
|
|
3817
3872
|
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); } }
|
|
@@ -3856,7 +3911,7 @@ class UniswapWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
3856
3911
|
}
|
|
3857
3912
|
|
|
3858
3913
|
/***/ }),
|
|
3859
|
-
/*
|
|
3914
|
+
/* 97 */
|
|
3860
3915
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3861
3916
|
|
|
3862
3917
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3864,9 +3919,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3864
3919
|
/* harmony export */ "getPoolAddressByAddresses": () => (/* binding */ getPoolAddressByAddresses),
|
|
3865
3920
|
/* harmony export */ "getPoolAddressBySymbols": () => (/* binding */ getPoolAddressBySymbols)
|
|
3866
3921
|
/* harmony export */ });
|
|
3867
|
-
/* harmony import */ var _ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
3922
|
+
/* harmony import */ var _ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(98);
|
|
3868
3923
|
/* harmony import */ var _ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_ethersproject_solidity__WEBPACK_IMPORTED_MODULE_0__);
|
|
3869
|
-
/* harmony import */ var _ethersproject_address__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
3924
|
+
/* harmony import */ var _ethersproject_address__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(99);
|
|
3870
3925
|
/* harmony import */ var _ethersproject_address__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_ethersproject_address__WEBPACK_IMPORTED_MODULE_1__);
|
|
3871
3926
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
|
|
3872
3927
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -3907,19 +3962,19 @@ var getPoolAddressByAddresses = (tokenA, tokenB) => {
|
|
|
3907
3962
|
var getPoolAddressBySymbols = (symbolA, symbolB) => getPoolAddressByAddresses((0,_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__.getAssetInfo)(symbolA.replace(/^ETH$/, 'WETH')).address, (0,_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__.getAssetInfo)(symbolB.replace(/^ETH$/, 'WETH')).address);
|
|
3908
3963
|
|
|
3909
3964
|
/***/ }),
|
|
3910
|
-
/*
|
|
3965
|
+
/* 98 */
|
|
3911
3966
|
/***/ ((module) => {
|
|
3912
3967
|
|
|
3913
|
-
module.exports =
|
|
3968
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__98__;
|
|
3914
3969
|
|
|
3915
3970
|
/***/ }),
|
|
3916
|
-
/*
|
|
3971
|
+
/* 99 */
|
|
3917
3972
|
/***/ ((module) => {
|
|
3918
3973
|
|
|
3919
|
-
module.exports =
|
|
3974
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__99__;
|
|
3920
3975
|
|
|
3921
3976
|
/***/ }),
|
|
3922
|
-
/*
|
|
3977
|
+
/* 100 */
|
|
3923
3978
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3924
3979
|
|
|
3925
3980
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3933,14 +3988,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3933
3988
|
/* harmony export */ "ReflexerSupplyAction": () => (/* reexport safe */ _ReflexerSupplyAction__WEBPACK_IMPORTED_MODULE_2__.ReflexerSupplyAction),
|
|
3934
3989
|
/* harmony export */ "ReflexerWithdrawAction": () => (/* reexport safe */ _ReflexerWithdrawAction__WEBPACK_IMPORTED_MODULE_4__.ReflexerWithdrawAction)
|
|
3935
3990
|
/* harmony export */ });
|
|
3936
|
-
/* harmony import */ var _ReflexerOpenSafeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
3937
|
-
/* harmony import */ var _ReflexerGenerateAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
3938
|
-
/* harmony import */ var _ReflexerSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
3939
|
-
/* harmony import */ var _ReflexerPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
3940
|
-
/* harmony import */ var _ReflexerWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
3941
|
-
/* harmony import */ var _ReflexerNativeUniV2SaviourDepositAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
3942
|
-
/* harmony import */ var _ReflexerNativeUniV2SaviourWithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
3943
|
-
/* harmony import */ var _ReflexerNativeUniV2SaviourGetReservesAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
3991
|
+
/* harmony import */ var _ReflexerOpenSafeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(101);
|
|
3992
|
+
/* harmony import */ var _ReflexerGenerateAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(102);
|
|
3993
|
+
/* harmony import */ var _ReflexerSupplyAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(103);
|
|
3994
|
+
/* harmony import */ var _ReflexerPaybackAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(104);
|
|
3995
|
+
/* harmony import */ var _ReflexerWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(105);
|
|
3996
|
+
/* harmony import */ var _ReflexerNativeUniV2SaviourDepositAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(106);
|
|
3997
|
+
/* harmony import */ var _ReflexerNativeUniV2SaviourWithdrawAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(107);
|
|
3998
|
+
/* harmony import */ var _ReflexerNativeUniV2SaviourGetReservesAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(108);
|
|
3944
3999
|
|
|
3945
4000
|
|
|
3946
4001
|
|
|
@@ -3951,7 +4006,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3951
4006
|
|
|
3952
4007
|
|
|
3953
4008
|
/***/ }),
|
|
3954
|
-
/*
|
|
4009
|
+
/* 101 */
|
|
3955
4010
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3956
4011
|
|
|
3957
4012
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -3977,7 +4032,7 @@ class ReflexerOpenSafeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
3977
4032
|
}
|
|
3978
4033
|
|
|
3979
4034
|
/***/ }),
|
|
3980
|
-
/*
|
|
4035
|
+
/* 102 */
|
|
3981
4036
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3982
4037
|
|
|
3983
4038
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4008,7 +4063,7 @@ class ReflexerGenerateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
4008
4063
|
}
|
|
4009
4064
|
|
|
4010
4065
|
/***/ }),
|
|
4011
|
-
/*
|
|
4066
|
+
/* 103 */
|
|
4012
4067
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4013
4068
|
|
|
4014
4069
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4062,7 +4117,7 @@ class ReflexerSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
4062
4117
|
}
|
|
4063
4118
|
|
|
4064
4119
|
/***/ }),
|
|
4065
|
-
/*
|
|
4120
|
+
/* 104 */
|
|
4066
4121
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4067
4122
|
|
|
4068
4123
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4105,7 +4160,7 @@ class ReflexerPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
4105
4160
|
}
|
|
4106
4161
|
|
|
4107
4162
|
/***/ }),
|
|
4108
|
-
/*
|
|
4163
|
+
/* 105 */
|
|
4109
4164
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4110
4165
|
|
|
4111
4166
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4138,7 +4193,7 @@ class ReflexerWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
4138
4193
|
}
|
|
4139
4194
|
|
|
4140
4195
|
/***/ }),
|
|
4141
|
-
/*
|
|
4196
|
+
/* 106 */
|
|
4142
4197
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4143
4198
|
|
|
4144
4199
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4180,7 +4235,7 @@ class ReflexerNativeUniV2SaviourDepositAction extends _Action__WEBPACK_IMPORTED_
|
|
|
4180
4235
|
}
|
|
4181
4236
|
|
|
4182
4237
|
/***/ }),
|
|
4183
|
-
/*
|
|
4238
|
+
/* 107 */
|
|
4184
4239
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4185
4240
|
|
|
4186
4241
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4212,7 +4267,7 @@ class ReflexerNativeUniV2SaviourWithdrawAction extends _Action__WEBPACK_IMPORTED
|
|
|
4212
4267
|
}
|
|
4213
4268
|
|
|
4214
4269
|
/***/ }),
|
|
4215
|
-
/*
|
|
4270
|
+
/* 108 */
|
|
4216
4271
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4217
4272
|
|
|
4218
4273
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4244,18 +4299,18 @@ class ReflexerNativeUniV2SaviourGetReservesAction extends _Action__WEBPACK_IMPOR
|
|
|
4244
4299
|
}
|
|
4245
4300
|
|
|
4246
4301
|
/***/ }),
|
|
4247
|
-
/*
|
|
4302
|
+
/* 109 */
|
|
4248
4303
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4249
4304
|
|
|
4250
4305
|
__webpack_require__.r(__webpack_exports__);
|
|
4251
4306
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4252
4307
|
/* harmony export */ "DyDxWithdrawAction": () => (/* reexport safe */ _DyDxWithdrawAction__WEBPACK_IMPORTED_MODULE_0__.DyDxWithdrawAction)
|
|
4253
4308
|
/* harmony export */ });
|
|
4254
|
-
/* harmony import */ var _DyDxWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
4309
|
+
/* harmony import */ var _DyDxWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(110);
|
|
4255
4310
|
|
|
4256
4311
|
|
|
4257
4312
|
/***/ }),
|
|
4258
|
-
/*
|
|
4313
|
+
/* 110 */
|
|
4259
4314
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4260
4315
|
|
|
4261
4316
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4286,7 +4341,7 @@ class DyDxWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
4286
4341
|
}
|
|
4287
4342
|
|
|
4288
4343
|
/***/ }),
|
|
4289
|
-
/*
|
|
4344
|
+
/* 111 */
|
|
4290
4345
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4291
4346
|
|
|
4292
4347
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4297,11 +4352,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4297
4352
|
/* harmony export */ "UniswapV3SupplyAction": () => (/* reexport safe */ _UniswapV3SupplyAction__WEBPACK_IMPORTED_MODULE_1__.UniswapV3SupplyAction),
|
|
4298
4353
|
/* harmony export */ "UniswapV3WithdrawAction": () => (/* reexport safe */ _UniswapV3WithdrawAction__WEBPACK_IMPORTED_MODULE_2__.UniswapV3WithdrawAction)
|
|
4299
4354
|
/* harmony export */ });
|
|
4300
|
-
/* harmony import */ var _UniswapV3MintAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
4301
|
-
/* harmony import */ var _UniswapV3SupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
4302
|
-
/* harmony import */ var _UniswapV3WithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
4303
|
-
/* harmony import */ var _UniswapV3CollectAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
4304
|
-
/* harmony import */ var _UniswapV3CreatePoolAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
4355
|
+
/* harmony import */ var _UniswapV3MintAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(112);
|
|
4356
|
+
/* harmony import */ var _UniswapV3SupplyAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(113);
|
|
4357
|
+
/* harmony import */ var _UniswapV3WithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(114);
|
|
4358
|
+
/* harmony import */ var _UniswapV3CollectAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(115);
|
|
4359
|
+
/* harmony import */ var _UniswapV3CreatePoolAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(116);
|
|
4305
4360
|
|
|
4306
4361
|
|
|
4307
4362
|
|
|
@@ -4309,7 +4364,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4309
4364
|
|
|
4310
4365
|
|
|
4311
4366
|
/***/ }),
|
|
4312
|
-
/*
|
|
4367
|
+
/* 112 */
|
|
4313
4368
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4314
4369
|
|
|
4315
4370
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4375,7 +4430,7 @@ class UniswapV3MintAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
4375
4430
|
}
|
|
4376
4431
|
|
|
4377
4432
|
/***/ }),
|
|
4378
|
-
/*
|
|
4433
|
+
/* 113 */
|
|
4379
4434
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4380
4435
|
|
|
4381
4436
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4435,7 +4490,7 @@ class UniswapV3SupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.A
|
|
|
4435
4490
|
}
|
|
4436
4491
|
|
|
4437
4492
|
/***/ }),
|
|
4438
|
-
/*
|
|
4493
|
+
/* 114 */
|
|
4439
4494
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4440
4495
|
|
|
4441
4496
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4490,7 +4545,7 @@ class UniswapV3WithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__
|
|
|
4490
4545
|
}
|
|
4491
4546
|
|
|
4492
4547
|
/***/ }),
|
|
4493
|
-
/*
|
|
4548
|
+
/* 115 */
|
|
4494
4549
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4495
4550
|
|
|
4496
4551
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4537,7 +4592,7 @@ class UniswapV3CollectAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
4537
4592
|
}
|
|
4538
4593
|
|
|
4539
4594
|
/***/ }),
|
|
4540
|
-
/*
|
|
4595
|
+
/* 116 */
|
|
4541
4596
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4542
4597
|
|
|
4543
4598
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4604,7 +4659,7 @@ class UniswapV3CreatePoolAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
|
|
|
4604
4659
|
}
|
|
4605
4660
|
|
|
4606
4661
|
/***/ }),
|
|
4607
|
-
/*
|
|
4662
|
+
/* 117 */
|
|
4608
4663
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4609
4664
|
|
|
4610
4665
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4613,15 +4668,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4613
4668
|
/* harmony export */ "CompoundV3RatioCheckAction": () => (/* reexport safe */ _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__.CompoundV3RatioCheckAction),
|
|
4614
4669
|
/* harmony export */ "MakerRatioCheckAction": () => (/* reexport safe */ _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__.MakerRatioCheckAction)
|
|
4615
4670
|
/* harmony export */ });
|
|
4616
|
-
/* harmony import */ var _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
4617
|
-
/* harmony import */ var _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
4618
|
-
/* harmony import */ var _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
4671
|
+
/* harmony import */ var _MakerRatioCheckAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(118);
|
|
4672
|
+
/* harmony import */ var _AaveV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(119);
|
|
4673
|
+
/* harmony import */ var _CompoundV3RatioCheckAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(120);
|
|
4619
4674
|
|
|
4620
4675
|
|
|
4621
4676
|
|
|
4622
4677
|
|
|
4623
4678
|
/***/ }),
|
|
4624
|
-
/*
|
|
4679
|
+
/* 118 */
|
|
4625
4680
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4626
4681
|
|
|
4627
4682
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4652,7 +4707,7 @@ class MakerRatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
4652
4707
|
}
|
|
4653
4708
|
|
|
4654
4709
|
/***/ }),
|
|
4655
|
-
/*
|
|
4710
|
+
/* 119 */
|
|
4656
4711
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4657
4712
|
|
|
4658
4713
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4680,7 +4735,7 @@ class AaveV3RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
4680
4735
|
}
|
|
4681
4736
|
|
|
4682
4737
|
/***/ }),
|
|
4683
|
-
/*
|
|
4738
|
+
/* 120 */
|
|
4684
4739
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4685
4740
|
|
|
4686
4741
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4710,7 +4765,7 @@ class CompoundV3RatioCheckAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
4710
4765
|
}
|
|
4711
4766
|
|
|
4712
4767
|
/***/ }),
|
|
4713
|
-
/*
|
|
4768
|
+
/* 121 */
|
|
4714
4769
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4715
4770
|
|
|
4716
4771
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4731,21 +4786,21 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4731
4786
|
/* harmony export */ "LiquityUnstakeAction": () => (/* reexport safe */ _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__.LiquityUnstakeAction),
|
|
4732
4787
|
/* harmony export */ "LiquityWithdrawAction": () => (/* reexport safe */ _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__.LiquityWithdrawAction)
|
|
4733
4788
|
/* harmony export */ });
|
|
4734
|
-
/* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
4735
|
-
/* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
4736
|
-
/* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
4737
|
-
/* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
4738
|
-
/* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
4739
|
-
/* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
4740
|
-
/* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
4741
|
-
/* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
4742
|
-
/* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
4743
|
-
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
4744
|
-
/* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
4745
|
-
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
4746
|
-
/* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
4747
|
-
/* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
4748
|
-
/* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
4789
|
+
/* harmony import */ var _LiquityOpenAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(122);
|
|
4790
|
+
/* harmony import */ var _LiquityBorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(123);
|
|
4791
|
+
/* harmony import */ var _LiquityPaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(124);
|
|
4792
|
+
/* harmony import */ var _LiquitySupplyAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(125);
|
|
4793
|
+
/* harmony import */ var _LiquityWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(126);
|
|
4794
|
+
/* harmony import */ var _LiquityCloseAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(127);
|
|
4795
|
+
/* harmony import */ var _LiquityClaimAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(128);
|
|
4796
|
+
/* harmony import */ var _LiquityRedeemAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(129);
|
|
4797
|
+
/* harmony import */ var _LiquitySPDepositAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(130);
|
|
4798
|
+
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(131);
|
|
4799
|
+
/* harmony import */ var _LiquityStakeAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(132);
|
|
4800
|
+
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(133);
|
|
4801
|
+
/* harmony import */ var _LiquityEthGainToTroveAction__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(134);
|
|
4802
|
+
/* harmony import */ var _LiquityClaimSPRewardsAction__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(135);
|
|
4803
|
+
/* harmony import */ var _LiquityClaimStakingRewardsAction__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(136);
|
|
4749
4804
|
|
|
4750
4805
|
|
|
4751
4806
|
|
|
@@ -4763,7 +4818,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4763
4818
|
|
|
4764
4819
|
|
|
4765
4820
|
/***/ }),
|
|
4766
|
-
/*
|
|
4821
|
+
/* 122 */
|
|
4767
4822
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4768
4823
|
|
|
4769
4824
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4814,7 +4869,7 @@ class LiquityOpenAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
4814
4869
|
}
|
|
4815
4870
|
|
|
4816
4871
|
/***/ }),
|
|
4817
|
-
/*
|
|
4872
|
+
/* 123 */
|
|
4818
4873
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4819
4874
|
|
|
4820
4875
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4848,7 +4903,7 @@ class LiquityBorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
4848
4903
|
}
|
|
4849
4904
|
|
|
4850
4905
|
/***/ }),
|
|
4851
|
-
/*
|
|
4906
|
+
/* 124 */
|
|
4852
4907
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4853
4908
|
|
|
4854
4909
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4895,7 +4950,7 @@ class LiquityPaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
4895
4950
|
}
|
|
4896
4951
|
|
|
4897
4952
|
/***/ }),
|
|
4898
|
-
/*
|
|
4953
|
+
/* 125 */
|
|
4899
4954
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4900
4955
|
|
|
4901
4956
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4942,7 +4997,7 @@ class LiquitySupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
4942
4997
|
}
|
|
4943
4998
|
|
|
4944
4999
|
/***/ }),
|
|
4945
|
-
/*
|
|
5000
|
+
/* 126 */
|
|
4946
5001
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4947
5002
|
|
|
4948
5003
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -4975,7 +5030,7 @@ class LiquityWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
4975
5030
|
}
|
|
4976
5031
|
|
|
4977
5032
|
/***/ }),
|
|
4978
|
-
/*
|
|
5033
|
+
/* 127 */
|
|
4979
5034
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
4980
5035
|
|
|
4981
5036
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5021,7 +5076,7 @@ class LiquityCloseAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
5021
5076
|
}
|
|
5022
5077
|
|
|
5023
5078
|
/***/ }),
|
|
5024
|
-
/*
|
|
5079
|
+
/* 128 */
|
|
5025
5080
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5026
5081
|
|
|
5027
5082
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5051,7 +5106,7 @@ class LiquityClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
5051
5106
|
}
|
|
5052
5107
|
|
|
5053
5108
|
/***/ }),
|
|
5054
|
-
/*
|
|
5109
|
+
/* 129 */
|
|
5055
5110
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5056
5111
|
|
|
5057
5112
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5104,7 +5159,7 @@ class LiquityRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
5104
5159
|
}
|
|
5105
5160
|
|
|
5106
5161
|
/***/ }),
|
|
5107
|
-
/*
|
|
5162
|
+
/* 130 */
|
|
5108
5163
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5109
5164
|
|
|
5110
5165
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5153,7 +5208,7 @@ class LiquitySPDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
5153
5208
|
}
|
|
5154
5209
|
|
|
5155
5210
|
/***/ }),
|
|
5156
|
-
/*
|
|
5211
|
+
/* 131 */
|
|
5157
5212
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5158
5213
|
|
|
5159
5214
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5188,7 +5243,7 @@ class LiquitySPWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
5188
5243
|
}
|
|
5189
5244
|
|
|
5190
5245
|
/***/ }),
|
|
5191
|
-
/*
|
|
5246
|
+
/* 132 */
|
|
5192
5247
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5193
5248
|
|
|
5194
5249
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5237,7 +5292,7 @@ class LiquityStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
5237
5292
|
}
|
|
5238
5293
|
|
|
5239
5294
|
/***/ }),
|
|
5240
|
-
/*
|
|
5295
|
+
/* 133 */
|
|
5241
5296
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5242
5297
|
|
|
5243
5298
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5272,7 +5327,7 @@ class LiquityUnstakeAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
5272
5327
|
}
|
|
5273
5328
|
|
|
5274
5329
|
/***/ }),
|
|
5275
|
-
/*
|
|
5330
|
+
/* 134 */
|
|
5276
5331
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5277
5332
|
|
|
5278
5333
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5304,14 +5359,14 @@ class LiquityEthGainToTroveAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
5304
5359
|
}
|
|
5305
5360
|
|
|
5306
5361
|
/***/ }),
|
|
5307
|
-
/*
|
|
5362
|
+
/* 135 */
|
|
5308
5363
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5309
5364
|
|
|
5310
5365
|
__webpack_require__.r(__webpack_exports__);
|
|
5311
5366
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5312
5367
|
/* harmony export */ "LiquityClaimSPRewardsAction": () => (/* binding */ LiquityClaimSPRewardsAction)
|
|
5313
5368
|
/* harmony export */ });
|
|
5314
|
-
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
5369
|
+
/* harmony import */ var _LiquitySPWithdrawAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(131);
|
|
5315
5370
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
5316
5371
|
|
|
5317
5372
|
|
|
@@ -5333,14 +5388,14 @@ class LiquityClaimSPRewardsAction extends _LiquitySPWithdrawAction__WEBPACK_IMPO
|
|
|
5333
5388
|
}
|
|
5334
5389
|
|
|
5335
5390
|
/***/ }),
|
|
5336
|
-
/*
|
|
5391
|
+
/* 136 */
|
|
5337
5392
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5338
5393
|
|
|
5339
5394
|
__webpack_require__.r(__webpack_exports__);
|
|
5340
5395
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5341
5396
|
/* harmony export */ "LiquityClaimStakingRewardsAction": () => (/* binding */ LiquityClaimStakingRewardsAction)
|
|
5342
5397
|
/* harmony export */ });
|
|
5343
|
-
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
5398
|
+
/* harmony import */ var _LiquityUnstakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(133);
|
|
5344
5399
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
5345
5400
|
|
|
5346
5401
|
|
|
@@ -5362,7 +5417,7 @@ class LiquityClaimStakingRewardsAction extends _LiquityUnstakeAction__WEBPACK_IM
|
|
|
5362
5417
|
}
|
|
5363
5418
|
|
|
5364
5419
|
/***/ }),
|
|
5365
|
-
/*
|
|
5420
|
+
/* 137 */
|
|
5366
5421
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5367
5422
|
|
|
5368
5423
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5370,13 +5425,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5370
5425
|
/* harmony export */ "YearnSupplyAction": () => (/* reexport safe */ _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__.YearnSupplyAction),
|
|
5371
5426
|
/* harmony export */ "YearnWithdrawAction": () => (/* reexport safe */ _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.YearnWithdrawAction)
|
|
5372
5427
|
/* harmony export */ });
|
|
5373
|
-
/* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
5374
|
-
/* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
5428
|
+
/* harmony import */ var _YearnSupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(138);
|
|
5429
|
+
/* harmony import */ var _YearnWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(139);
|
|
5375
5430
|
|
|
5376
5431
|
|
|
5377
5432
|
|
|
5378
5433
|
/***/ }),
|
|
5379
|
-
/*
|
|
5434
|
+
/* 138 */
|
|
5380
5435
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5381
5436
|
|
|
5382
5437
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5427,7 +5482,7 @@ class YearnSupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
5427
5482
|
}
|
|
5428
5483
|
|
|
5429
5484
|
/***/ }),
|
|
5430
|
-
/*
|
|
5485
|
+
/* 139 */
|
|
5431
5486
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5432
5487
|
|
|
5433
5488
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5478,7 +5533,7 @@ class YearnWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
5478
5533
|
}
|
|
5479
5534
|
|
|
5480
5535
|
/***/ }),
|
|
5481
|
-
/*
|
|
5536
|
+
/* 140 */
|
|
5482
5537
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5483
5538
|
|
|
5484
5539
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5487,15 +5542,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5487
5542
|
/* harmony export */ "LidoUnwrapAction": () => (/* reexport safe */ _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__.LidoUnwrapAction),
|
|
5488
5543
|
/* harmony export */ "LidoWrapAction": () => (/* reexport safe */ _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__.LidoWrapAction)
|
|
5489
5544
|
/* harmony export */ });
|
|
5490
|
-
/* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
5491
|
-
/* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
5492
|
-
/* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
5545
|
+
/* harmony import */ var _LidoStakeAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(141);
|
|
5546
|
+
/* harmony import */ var _LidoWrapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(142);
|
|
5547
|
+
/* harmony import */ var _LidoUnwrapAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(143);
|
|
5493
5548
|
|
|
5494
5549
|
|
|
5495
5550
|
|
|
5496
5551
|
|
|
5497
5552
|
/***/ }),
|
|
5498
|
-
/*
|
|
5553
|
+
/* 141 */
|
|
5499
5554
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5500
5555
|
|
|
5501
5556
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5541,7 +5596,7 @@ class LidoStakeAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
5541
5596
|
}
|
|
5542
5597
|
|
|
5543
5598
|
/***/ }),
|
|
5544
|
-
/*
|
|
5599
|
+
/* 142 */
|
|
5545
5600
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5546
5601
|
|
|
5547
5602
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5595,7 +5650,7 @@ class LidoWrapAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
5595
5650
|
}
|
|
5596
5651
|
|
|
5597
5652
|
/***/ }),
|
|
5598
|
-
/*
|
|
5653
|
+
/* 143 */
|
|
5599
5654
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5600
5655
|
|
|
5601
5656
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5638,18 +5693,18 @@ class LidoUnwrapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
5638
5693
|
}
|
|
5639
5694
|
|
|
5640
5695
|
/***/ }),
|
|
5641
|
-
/*
|
|
5696
|
+
/* 144 */
|
|
5642
5697
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5643
5698
|
|
|
5644
5699
|
__webpack_require__.r(__webpack_exports__);
|
|
5645
5700
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5646
5701
|
/* harmony export */ "InstPullTokensAction": () => (/* reexport safe */ _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__.InstPullTokensAction)
|
|
5647
5702
|
/* harmony export */ });
|
|
5648
|
-
/* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
5703
|
+
/* harmony import */ var _InstPullTokensAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(145);
|
|
5649
5704
|
|
|
5650
5705
|
|
|
5651
5706
|
/***/ }),
|
|
5652
|
-
/*
|
|
5707
|
+
/* 145 */
|
|
5653
5708
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5654
5709
|
|
|
5655
5710
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5692,7 +5747,7 @@ class InstPullTokensAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
5692
5747
|
}
|
|
5693
5748
|
|
|
5694
5749
|
/***/ }),
|
|
5695
|
-
/*
|
|
5750
|
+
/* 146 */
|
|
5696
5751
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5697
5752
|
|
|
5698
5753
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5701,15 +5756,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5701
5756
|
/* harmony export */ "BalancerV2SupplyAction": () => (/* reexport safe */ _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__.BalancerV2SupplyAction),
|
|
5702
5757
|
/* harmony export */ "BalancerV2WithdrawAction": () => (/* reexport safe */ _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__.BalancerV2WithdrawAction)
|
|
5703
5758
|
/* harmony export */ });
|
|
5704
|
-
/* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
5705
|
-
/* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
5706
|
-
/* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
5759
|
+
/* harmony import */ var _BalancerV2SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(147);
|
|
5760
|
+
/* harmony import */ var _BalancerV2WithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(148);
|
|
5761
|
+
/* harmony import */ var _BalancerV2ClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(149);
|
|
5707
5762
|
|
|
5708
5763
|
|
|
5709
5764
|
|
|
5710
5765
|
|
|
5711
5766
|
/***/ }),
|
|
5712
|
-
/*
|
|
5767
|
+
/* 147 */
|
|
5713
5768
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5714
5769
|
|
|
5715
5770
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5761,7 +5816,7 @@ class BalancerV2SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
5761
5816
|
}
|
|
5762
5817
|
|
|
5763
5818
|
/***/ }),
|
|
5764
|
-
/*
|
|
5819
|
+
/* 148 */
|
|
5765
5820
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5766
5821
|
|
|
5767
5822
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5817,7 +5872,7 @@ class BalancerV2WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
5817
5872
|
}
|
|
5818
5873
|
|
|
5819
5874
|
/***/ }),
|
|
5820
|
-
/*
|
|
5875
|
+
/* 149 */
|
|
5821
5876
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5822
5877
|
|
|
5823
5878
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5866,7 +5921,7 @@ class BalancerV2ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
5866
5921
|
}
|
|
5867
5922
|
|
|
5868
5923
|
/***/ }),
|
|
5869
|
-
/*
|
|
5924
|
+
/* 150 */
|
|
5870
5925
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5871
5926
|
|
|
5872
5927
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5881,15 +5936,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5881
5936
|
/* harmony export */ "CurveSwapAction": () => (/* reexport safe */ _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__.CurveSwapAction),
|
|
5882
5937
|
/* harmony export */ "CurveWithdrawAction": () => (/* reexport safe */ _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__.CurveWithdrawAction)
|
|
5883
5938
|
/* harmony export */ });
|
|
5884
|
-
/* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
5885
|
-
/* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
5886
|
-
/* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
5887
|
-
/* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
5888
|
-
/* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
5889
|
-
/* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
5890
|
-
/* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
5891
|
-
/* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
5892
|
-
/* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
5939
|
+
/* harmony import */ var _CurveSwapAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(151);
|
|
5940
|
+
/* harmony import */ var _CurveDepositAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(152);
|
|
5941
|
+
/* harmony import */ var _CurveWithdrawAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(155);
|
|
5942
|
+
/* harmony import */ var _CurveGaugeDepositAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(156);
|
|
5943
|
+
/* harmony import */ var _CurveGaugeWithdrawAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(157);
|
|
5944
|
+
/* harmony import */ var _CurveMintCrvAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(158);
|
|
5945
|
+
/* harmony import */ var _CurveClaimFeesAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(159);
|
|
5946
|
+
/* harmony import */ var _CurveStethPoolDepositAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(160);
|
|
5947
|
+
/* harmony import */ var _CurveStethPoolWithdrawAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(161);
|
|
5893
5948
|
|
|
5894
5949
|
|
|
5895
5950
|
|
|
@@ -5901,7 +5956,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5901
5956
|
|
|
5902
5957
|
|
|
5903
5958
|
/***/ }),
|
|
5904
|
-
/*
|
|
5959
|
+
/* 151 */
|
|
5905
5960
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5906
5961
|
|
|
5907
5962
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5948,7 +6003,7 @@ class CurveSwapAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
5948
6003
|
}
|
|
5949
6004
|
|
|
5950
6005
|
/***/ }),
|
|
5951
|
-
/*
|
|
6006
|
+
/* 152 */
|
|
5952
6007
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
5953
6008
|
|
|
5954
6009
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -5960,7 +6015,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5960
6015
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
5961
6016
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(39);
|
|
5962
6017
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(27);
|
|
5963
|
-
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
6018
|
+
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(153);
|
|
5964
6019
|
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); } }
|
|
5965
6020
|
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); }); }; }
|
|
5966
6021
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
@@ -6021,7 +6076,7 @@ class CurveDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action {
|
|
|
6021
6076
|
}
|
|
6022
6077
|
|
|
6023
6078
|
/***/ }),
|
|
6024
|
-
/*
|
|
6079
|
+
/* 153 */
|
|
6025
6080
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6026
6081
|
|
|
6027
6082
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6029,7 +6084,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6029
6084
|
/* harmony export */ "makeFlags": () => (/* binding */ makeFlags),
|
|
6030
6085
|
/* harmony export */ "poolInfo": () => (/* reexport default export from named module */ _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
|
|
6031
6086
|
/* harmony export */ });
|
|
6032
|
-
/* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
6087
|
+
/* harmony import */ var _curvePoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(154);
|
|
6033
6088
|
|
|
6034
6089
|
|
|
6035
6090
|
|
|
@@ -6042,13 +6097,13 @@ var makeFlags = (depositTargetType, explicitUnderlying, withdrawExact, removeOne
|
|
|
6042
6097
|
) => depositTargetType | explicitUnderlying << 2 | withdrawExact << 3 | removeOneCoin << 4;
|
|
6043
6098
|
|
|
6044
6099
|
/***/ }),
|
|
6045
|
-
/*
|
|
6100
|
+
/* 154 */
|
|
6046
6101
|
/***/ ((module) => {
|
|
6047
6102
|
|
|
6048
6103
|
module.exports = JSON.parse('[{"name":"susd","swapAddr":"0xA5407eAE9Ba41422680e2e00537571bcC53efBfD","depositContract":"0xFCBa3E75865d2d561BE8D220616520c171F12851","nCoins":4,"coins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7","0x57Ab1ec28D129707052df4dF418D58a2D46d5f51"],"decimals":[18,6,6,18],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7","0x57Ab1ec28D129707052df4dF418D58a2D46d5f51"],"underlyingDecimals":[18,6,6,18],"isMeta":false,"lpToken":"0xC25a3A3b969415c80451098fa907EC722572917F","gauges":["0xA90996896660DEcC6E997655E065b23788857849"],"gaugeTypes":[0],"zapType":1},{"name":"compound","swapAddr":"0xA2B47E3D5c44877cca798226B7B8118F9BFb7A56","depositContract":"0xeB21209ae4C2c9FF2a86ACA31E123764A3B6Bc06","nCoins":2,"coins":["0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643","0x39AA39c021dfbaE8faC545936693aC917d5E7563"],"decimals":[8,8],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"],"underlyingDecimals":[18,6],"isMeta":false,"lpToken":"0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2","gauges":["0x7ca5b0a2910B33e9759DC7dDB0413949071D7575"],"gaugeTypes":[0],"zapType":1},{"underlyingFlag":true,"name":"aave","swapAddr":"0xDeBF20617708857ebe4F679508E7b7863a8A8EeE","nCoins":3,"coins":["0x028171bCA77440897B824Ca71D1c56caC55b68A3","0xBcca60bB61934080951369a648Fb03DF4F96263C","0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811"],"decimals":[18,6,6],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,6,6],"isMeta":false,"lpToken":"0xFd2a8fA60Abd58Efe3EeE34dd494cD491dC14900","gauges":["0xd662908ADA2Ea1916B3318327A97eB18aD588b5d"],"gaugeTypes":[0]},{"name":"steth","swapAddr":"0xDC24316b9AE028F1497c275EB9192a3Ea0f67022","nCoins":2,"coins":["0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE","0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84"],"decimals":[18,18],"underlyingCoins":["0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE","0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84"],"underlyingDecimals":[18,18],"isMeta":false,"lpToken":"0x06325440D014e39736583c165C2963BA99fAf14E","gauges":["0x182B723a58739a9c974cFDB385ceaDb237453c28"],"gaugeTypes":[0]},{"name":"3pool","swapAddr":"0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7","nCoins":3,"coins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"decimals":[18,6,6],"underlyingCoins":["0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,6,6],"isMeta":false,"lpToken":"0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490","gauges":["0xbFcF63294aD7105dEa65aA58F8AE5BE2D9d0952A"],"gaugeTypes":[0]},{"name":"musd","swapAddr":"0x8474DdbE98F5aA3179B3B3F5942D724aFcdec9f6","depositContract":"0x803A2B40c5a9BB2B86DD630B274Fa2A9202874C2","nCoins":2,"coins":["0xe2f2a5C287993345a840Db3B0845fbC70f5935a5","0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490"],"decimals":[18,18],"underlyingCoins":["0xe2f2a5C287993345a840Db3B0845fbC70f5935a5","0x6B175474E89094C44Da98b954EedeAC495271d0F","0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","0xdAC17F958D2ee523a2206206994597C13D831ec7"],"underlyingDecimals":[18,18,6,6],"isMeta":true,"lpToken":"0x1AEf73d49Dedc4b1778d0706583995958Dc862e6","gauges":["0x5f626c30EC1215f4EdCc9982265E8b1F411D1352"],"gaugeTypes":[0],"zapType":0}]');
|
|
6049
6104
|
|
|
6050
6105
|
/***/ }),
|
|
6051
|
-
/*
|
|
6106
|
+
/* 155 */
|
|
6052
6107
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6053
6108
|
|
|
6054
6109
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6058,7 +6113,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6058
6113
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
6059
6114
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
6060
6115
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
6061
|
-
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
6116
|
+
/* harmony import */ var _utils_curve_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(153);
|
|
6062
6117
|
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); } }
|
|
6063
6118
|
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); }); }; }
|
|
6064
6119
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
@@ -6117,7 +6172,7 @@ class CurveWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6117
6172
|
}
|
|
6118
6173
|
|
|
6119
6174
|
/***/ }),
|
|
6120
|
-
/*
|
|
6175
|
+
/* 156 */
|
|
6121
6176
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6122
6177
|
|
|
6123
6178
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6162,7 +6217,7 @@ class CurveGaugeDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
6162
6217
|
}
|
|
6163
6218
|
|
|
6164
6219
|
/***/ }),
|
|
6165
|
-
/*
|
|
6220
|
+
/* 157 */
|
|
6166
6221
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6167
6222
|
|
|
6168
6223
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6193,7 +6248,7 @@ class CurveGaugeWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
6193
6248
|
}
|
|
6194
6249
|
|
|
6195
6250
|
/***/ }),
|
|
6196
|
-
/*
|
|
6251
|
+
/* 158 */
|
|
6197
6252
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6198
6253
|
|
|
6199
6254
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6222,7 +6277,7 @@ class CurveMintCrvAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6222
6277
|
}
|
|
6223
6278
|
|
|
6224
6279
|
/***/ }),
|
|
6225
|
-
/*
|
|
6280
|
+
/* 159 */
|
|
6226
6281
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6227
6282
|
|
|
6228
6283
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6253,7 +6308,7 @@ class CurveClaimFeesAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6253
6308
|
}
|
|
6254
6309
|
|
|
6255
6310
|
/***/ }),
|
|
6256
|
-
/*
|
|
6311
|
+
/* 160 */
|
|
6257
6312
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6258
6313
|
|
|
6259
6314
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6286,7 +6341,7 @@ class CurveStethPoolDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
6286
6341
|
}
|
|
6287
6342
|
|
|
6288
6343
|
/***/ }),
|
|
6289
|
-
/*
|
|
6344
|
+
/* 161 */
|
|
6290
6345
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6291
6346
|
|
|
6292
6347
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6320,7 +6375,7 @@ class CurveStethPoolWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
6320
6375
|
}
|
|
6321
6376
|
|
|
6322
6377
|
/***/ }),
|
|
6323
|
-
/*
|
|
6378
|
+
/* 162 */
|
|
6324
6379
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6325
6380
|
|
|
6326
6381
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6328,13 +6383,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6328
6383
|
/* harmony export */ "GUniDeposit": () => (/* reexport safe */ _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__.GUniDeposit),
|
|
6329
6384
|
/* harmony export */ "GUniWithdraw": () => (/* reexport safe */ _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__.GUniWithdraw)
|
|
6330
6385
|
/* harmony export */ });
|
|
6331
|
-
/* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
6332
|
-
/* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
6386
|
+
/* harmony import */ var _GUniDeposit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(163);
|
|
6387
|
+
/* harmony import */ var _GUniWithdraw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(164);
|
|
6333
6388
|
|
|
6334
6389
|
|
|
6335
6390
|
|
|
6336
6391
|
/***/ }),
|
|
6337
|
-
/*
|
|
6392
|
+
/* 163 */
|
|
6338
6393
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6339
6394
|
|
|
6340
6395
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6389,7 +6444,7 @@ class GUniDeposit extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6389
6444
|
}
|
|
6390
6445
|
|
|
6391
6446
|
/***/ }),
|
|
6392
|
-
/*
|
|
6447
|
+
/* 164 */
|
|
6393
6448
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6394
6449
|
|
|
6395
6450
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6436,7 +6491,7 @@ class GUniWithdraw extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6436
6491
|
}
|
|
6437
6492
|
|
|
6438
6493
|
/***/ }),
|
|
6439
|
-
/*
|
|
6494
|
+
/* 165 */
|
|
6440
6495
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6441
6496
|
|
|
6442
6497
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6445,15 +6500,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6445
6500
|
/* harmony export */ "MStableDepositAction": () => (/* reexport safe */ _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__.MStableDepositAction),
|
|
6446
6501
|
/* harmony export */ "MStableWithdrawAction": () => (/* reexport safe */ _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.MStableWithdrawAction)
|
|
6447
6502
|
/* harmony export */ });
|
|
6448
|
-
/* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
6449
|
-
/* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
6450
|
-
/* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
6503
|
+
/* harmony import */ var _MStableDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(166);
|
|
6504
|
+
/* harmony import */ var _MStableWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(168);
|
|
6505
|
+
/* harmony import */ var _MStableClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(169);
|
|
6451
6506
|
|
|
6452
6507
|
|
|
6453
6508
|
|
|
6454
6509
|
|
|
6455
6510
|
/***/ }),
|
|
6456
|
-
/*
|
|
6511
|
+
/* 166 */
|
|
6457
6512
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6458
6513
|
|
|
6459
6514
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6463,7 +6518,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6463
6518
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
6464
6519
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
6465
6520
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
6466
|
-
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
6521
|
+
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(167);
|
|
6467
6522
|
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); } }
|
|
6468
6523
|
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); }); }; }
|
|
6469
6524
|
|
|
@@ -6528,7 +6583,7 @@ class MStableDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6528
6583
|
}
|
|
6529
6584
|
|
|
6530
6585
|
/***/ }),
|
|
6531
|
-
/*
|
|
6586
|
+
/* 167 */
|
|
6532
6587
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6533
6588
|
|
|
6534
6589
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6545,7 +6600,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6545
6600
|
});
|
|
6546
6601
|
|
|
6547
6602
|
/***/ }),
|
|
6548
|
-
/*
|
|
6603
|
+
/* 168 */
|
|
6549
6604
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6550
6605
|
|
|
6551
6606
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6555,7 +6610,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6555
6610
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
6556
6611
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(39);
|
|
6557
6612
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27);
|
|
6558
|
-
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
6613
|
+
/* harmony import */ var _utils_mstableAssetPairs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(167);
|
|
6559
6614
|
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); } }
|
|
6560
6615
|
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); }); }; }
|
|
6561
6616
|
|
|
@@ -6619,7 +6674,7 @@ class MStableWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
6619
6674
|
}
|
|
6620
6675
|
|
|
6621
6676
|
/***/ }),
|
|
6622
|
-
/*
|
|
6677
|
+
/* 169 */
|
|
6623
6678
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6624
6679
|
|
|
6625
6680
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6653,7 +6708,7 @@ class MStableClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6653
6708
|
}
|
|
6654
6709
|
|
|
6655
6710
|
/***/ }),
|
|
6656
|
-
/*
|
|
6711
|
+
/* 170 */
|
|
6657
6712
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6658
6713
|
|
|
6659
6714
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6661,13 +6716,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6661
6716
|
/* harmony export */ "RariDepositAction": () => (/* reexport safe */ _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__.RariDepositAction),
|
|
6662
6717
|
/* harmony export */ "RariWithdrawAction": () => (/* reexport safe */ _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.RariWithdrawAction)
|
|
6663
6718
|
/* harmony export */ });
|
|
6664
|
-
/* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
6665
|
-
/* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
6719
|
+
/* harmony import */ var _RariDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(171);
|
|
6720
|
+
/* harmony import */ var _RariWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(172);
|
|
6666
6721
|
|
|
6667
6722
|
|
|
6668
6723
|
|
|
6669
6724
|
/***/ }),
|
|
6670
|
-
/*
|
|
6725
|
+
/* 171 */
|
|
6671
6726
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6672
6727
|
|
|
6673
6728
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6713,7 +6768,7 @@ class RariDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6713
6768
|
}
|
|
6714
6769
|
|
|
6715
6770
|
/***/ }),
|
|
6716
|
-
/*
|
|
6771
|
+
/* 172 */
|
|
6717
6772
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6718
6773
|
|
|
6719
6774
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6760,7 +6815,7 @@ class RariWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
6760
6815
|
}
|
|
6761
6816
|
|
|
6762
6817
|
/***/ }),
|
|
6763
|
-
/*
|
|
6818
|
+
/* 173 */
|
|
6764
6819
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6765
6820
|
|
|
6766
6821
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6775,15 +6830,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6775
6830
|
/* harmony export */ "AaveV3SwapBorrowRateModeAction": () => (/* reexport safe */ _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__.AaveV3SwapBorrowRateModeAction),
|
|
6776
6831
|
/* harmony export */ "AaveV3WithdrawAction": () => (/* reexport safe */ _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.AaveV3WithdrawAction)
|
|
6777
6832
|
/* harmony export */ });
|
|
6778
|
-
/* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
6779
|
-
/* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
6780
|
-
/* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
6781
|
-
/* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
6782
|
-
/* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
6783
|
-
/* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
6784
|
-
/* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
6785
|
-
/* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
6786
|
-
/* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
6833
|
+
/* harmony import */ var _AaveV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(174);
|
|
6834
|
+
/* harmony import */ var _AaveV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(175);
|
|
6835
|
+
/* harmony import */ var _AaveV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(176);
|
|
6836
|
+
/* harmony import */ var _AaveV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(177);
|
|
6837
|
+
/* harmony import */ var _AaveV3SetEModeAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(178);
|
|
6838
|
+
/* harmony import */ var _AaveV3ATokenPaybackAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(179);
|
|
6839
|
+
/* harmony import */ var _AaveV3CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(180);
|
|
6840
|
+
/* harmony import */ var _AaveV3ClaimRewardsAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(181);
|
|
6841
|
+
/* harmony import */ var _AaveV3SwapBorrowRateModeAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(182);
|
|
6787
6842
|
|
|
6788
6843
|
|
|
6789
6844
|
|
|
@@ -6795,7 +6850,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6795
6850
|
|
|
6796
6851
|
|
|
6797
6852
|
/***/ }),
|
|
6798
|
-
/*
|
|
6853
|
+
/* 174 */
|
|
6799
6854
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6800
6855
|
|
|
6801
6856
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6875,7 +6930,7 @@ class AaveV3SupplyAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Acti
|
|
|
6875
6930
|
}
|
|
6876
6931
|
|
|
6877
6932
|
/***/ }),
|
|
6878
|
-
/*
|
|
6933
|
+
/* 175 */
|
|
6879
6934
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6880
6935
|
|
|
6881
6936
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -6939,7 +6994,7 @@ class AaveV3BorrowAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
6939
6994
|
}
|
|
6940
6995
|
|
|
6941
6996
|
/***/ }),
|
|
6942
|
-
/*
|
|
6997
|
+
/* 176 */
|
|
6943
6998
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6944
6999
|
|
|
6945
7000
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7019,7 +7074,7 @@ class AaveV3PaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1__.Act
|
|
|
7019
7074
|
}
|
|
7020
7075
|
|
|
7021
7076
|
/***/ }),
|
|
7022
|
-
/*
|
|
7077
|
+
/* 177 */
|
|
7023
7078
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7024
7079
|
|
|
7025
7080
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7071,7 +7126,7 @@ class AaveV3WithdrawAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
7071
7126
|
}
|
|
7072
7127
|
|
|
7073
7128
|
/***/ }),
|
|
7074
|
-
/*
|
|
7129
|
+
/* 178 */
|
|
7075
7130
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7076
7131
|
|
|
7077
7132
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7113,7 +7168,7 @@ class AaveV3SetEModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
7113
7168
|
}
|
|
7114
7169
|
|
|
7115
7170
|
/***/ }),
|
|
7116
|
-
/*
|
|
7171
|
+
/* 179 */
|
|
7117
7172
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7118
7173
|
|
|
7119
7174
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7184,7 +7239,7 @@ class AaveV3ATokenPaybackAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_1
|
|
|
7184
7239
|
}
|
|
7185
7240
|
|
|
7186
7241
|
/***/ }),
|
|
7187
|
-
/*
|
|
7242
|
+
/* 180 */
|
|
7188
7243
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7189
7244
|
|
|
7190
7245
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7234,7 +7289,7 @@ class AaveV3CollateralSwitchAction extends _ActionWithL2__WEBPACK_IMPORTED_MODUL
|
|
|
7234
7289
|
}
|
|
7235
7290
|
|
|
7236
7291
|
/***/ }),
|
|
7237
|
-
/*
|
|
7292
|
+
/* 181 */
|
|
7238
7293
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7239
7294
|
|
|
7240
7295
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7287,7 +7342,7 @@ class AaveV3ClaimRewardsAction extends _ActionWithL2__WEBPACK_IMPORTED_MODULE_0_
|
|
|
7287
7342
|
}
|
|
7288
7343
|
|
|
7289
7344
|
/***/ }),
|
|
7290
|
-
/*
|
|
7345
|
+
/* 182 */
|
|
7291
7346
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7292
7347
|
|
|
7293
7348
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7333,7 +7388,7 @@ class AaveV3SwapBorrowRateModeAction extends _ActionWithL2__WEBPACK_IMPORTED_MOD
|
|
|
7333
7388
|
}
|
|
7334
7389
|
|
|
7335
7390
|
/***/ }),
|
|
7336
|
-
/*
|
|
7391
|
+
/* 183 */
|
|
7337
7392
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7338
7393
|
|
|
7339
7394
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7342,15 +7397,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7342
7397
|
/* harmony export */ "ConvexDepositAction": () => (/* reexport safe */ _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__.ConvexDepositAction),
|
|
7343
7398
|
/* harmony export */ "ConvexWithdrawAction": () => (/* reexport safe */ _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__.ConvexWithdrawAction)
|
|
7344
7399
|
/* harmony export */ });
|
|
7345
|
-
/* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7346
|
-
/* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
7347
|
-
/* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7400
|
+
/* harmony import */ var _ConvexDepositAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(184);
|
|
7401
|
+
/* harmony import */ var _ConvexWithdrawAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(187);
|
|
7402
|
+
/* harmony import */ var _ConvexClaimAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(188);
|
|
7348
7403
|
|
|
7349
7404
|
|
|
7350
7405
|
|
|
7351
7406
|
|
|
7352
7407
|
/***/ }),
|
|
7353
|
-
/*
|
|
7408
|
+
/* 184 */
|
|
7354
7409
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7355
7410
|
|
|
7356
7411
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7359,7 +7414,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7359
7414
|
/* harmony export */ });
|
|
7360
7415
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
7361
7416
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
7362
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7417
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(185);
|
|
7363
7418
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(39);
|
|
7364
7419
|
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); } }
|
|
7365
7420
|
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); }); }; }
|
|
@@ -7408,7 +7463,7 @@ class ConvexDepositAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7408
7463
|
}
|
|
7409
7464
|
|
|
7410
7465
|
/***/ }),
|
|
7411
|
-
/*
|
|
7466
|
+
/* 185 */
|
|
7412
7467
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7413
7468
|
|
|
7414
7469
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7418,7 +7473,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7418
7473
|
/* harmony export */ "getConvexPool": () => (/* binding */ getConvexPool),
|
|
7419
7474
|
/* harmony export */ "poolInfo": () => (/* reexport default export from named module */ _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__)
|
|
7420
7475
|
/* harmony export */ });
|
|
7421
|
-
/* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7476
|
+
/* harmony import */ var _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(186);
|
|
7422
7477
|
|
|
7423
7478
|
|
|
7424
7479
|
|
|
@@ -7440,13 +7495,13 @@ var WithdrawOption = {
|
|
|
7440
7495
|
var getConvexPool = curveLpToken => _convexPoolInfo_json__WEBPACK_IMPORTED_MODULE_0__.find(e => e.lpToken === curveLpToken);
|
|
7441
7496
|
|
|
7442
7497
|
/***/ }),
|
|
7443
|
-
/*
|
|
7498
|
+
/* 186 */
|
|
7444
7499
|
/***/ ((module) => {
|
|
7445
7500
|
|
|
7446
7501
|
module.exports = JSON.parse('[{"pid":0,"lpToken":"0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2","token":"0x32512Bee3848bfcBb7bEAf647aa697a100f3b706","gauge":"0x7ca5b0a2910B33e9759DC7dDB0413949071D7575","crvRewards":"0xf34DFF761145FF0B05e917811d488B441F33a968","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":1,"lpToken":"0x9fC689CCaDa600B6DF723D9E47D84d76664a1F23","token":"0xA1c3492b71938E144ad8bE4c2fB6810b01A43dD8","gauge":"0xBC89cd85491d81C6AD2954E6d0362Ee29fCa8F53","crvRewards":"0x8B55351ea358e5Eda371575B031ee24F462d503e","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":2,"lpToken":"0xdF5e0e81Dff6FAF3A7e52BA697820c5e32D806A8","token":"0x0928F6753880A03628eB0be07b77992c8af37874","gauge":"0xFA712EE4788C042e2B7BB55E6cb8ec569C4530c1","crvRewards":"0xd802a8351A76ED5eCd89A7502Ca615F2225A585d","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":3,"lpToken":"0x3B3Ac5386837Dc563660FB6a0937DFAa5924333B","token":"0x59bB786F222d3f0f00B0dA31B799Fff80D552940","gauge":"0x69Fb7c45726cfE2baDeE8317005d3F94bE838840","crvRewards":"0x602c4cD53a715D8a7cf648540FAb0d3a2d546560","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":4,"lpToken":"0xC25a3A3b969415c80451098fa907EC722572917F","token":"0x11D200ef1409cecA8D6d23e6496550f707772F11","gauge":"0xA90996896660DEcC6E997655E065b23788857849","crvRewards":"0x22eE18aca7F3Ee920D01F25dA85840D12d98E8Ca","stash":"0xD2f2B9504Ef708b9f3Bc53f1525353bAaE1B17e4","shutdown":false,"extraRewards":[{"pool":"0x81fce3e10d12da6c7266a1a169c4c96813435263","token":"0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f"}]},{"pid":5,"lpToken":"0xD905e2eaeBe188fc92179b6350807D8bd91Db0D8","token":"0x2eA94b0d3349A284488ACF2934E494b2f58ef647","gauge":"0x64E3C23bfc40722d3B649844055F1D51c1ac041d","crvRewards":"0xe3DaafC8C14147d5B4A7a56F0BfdED240158e51e","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":6,"lpToken":"0x49849C98ae39Fff122806C06791Fa73784FB3675","token":"0x74b79021Ea6De3f0D1731fb8BdfF6eE7DF10b8Ae","gauge":"0xB1F2cdeC61db658F091671F5f199635aEF202CAC","crvRewards":"0x8E299C62EeD737a5d5a53539dF37b5356a27b07D","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":7,"lpToken":"0x075b1bb99792c9E1041bA13afEf80C91a1e70fB3","token":"0xbA723E335eC2939D52a2efcA2a8199cb4CB93cC3","gauge":"0x705350c4BcD35c9441419DdD5d2f097d7a55410F","crvRewards":"0xd727A5A6D1C7b31Ff9Db4Db4d24045B7dF0CFF93","stash":"0x7B3EE538398829c96E4B187216c7aB2946A620C4","shutdown":false,"extraRewards":[{"pool":"0x7c41906df8395af4387fa79b85c845069f88eec3","token":"0x330416c863f2acce7af9c9314b422d24c672534a"}]},{"pid":8,"lpToken":"0xb19059ebb43466C323583928285a49f558E572Fd","token":"0x33c00bF8CFDf42929E0884d230A55F963221f8f3","gauge":"0x4c18E409Dc8619bFb6a1cB56D114C3f592E0aE79","crvRewards":"0x618BD6cBA676a46958c63700C04318c84a7b7c0A","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":9,"lpToken":"0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490","token":"0x30D9410ED1D5DA1F6C8391af5338C93ab8d4035C","gauge":"0xbFcF63294aD7105dEa65aA58F8AE5BE2D9d0952A","crvRewards":"0x689440f2Ff927E1f24c72F1087E1FAF471eCe1c8","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":10,"lpToken":"0xD2967f45c4f384DEEa880F807Be904762a3DeA07","token":"0x15c2471ef46Fa721990730cfa526BcFb45574576","gauge":"0xC5cfaDA84E902aD92DD40194f0883ad49639b023","crvRewards":"0x7A7bBf95C44b144979360C3300B54A7D34b44985","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":11,"lpToken":"0x5B5CFE992AdAC0C9D48E05854B2d91C73a003858","token":"0xe4de776C0eA0974bfA39B8cbB9491091C8cDc1ff","gauge":"0x2db0E83599a91b508Ac268a6197b8B14F5e72840","crvRewards":"0x353e489311b21355461353fEC2d02B73EF0eDe7f","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":12,"lpToken":"0x97E2768e8E73511cA874545DC5Ff8067eB19B787","token":"0x47941F99F4371CC26637CaEdBbd8Ba5F4bfE5149","gauge":"0xC2b1DF84112619D190193E48148000e3990Bf627","crvRewards":"0xa50e9071aCaD20b31cd2bbe4dAa816882De82BBe","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":13,"lpToken":"0x4f3E8F405CF5aFC05D68142F3783bDfE13811522","token":"0x3689f325E88c2363274E5F3d44b6DaB8f9e1f524","gauge":"0xF98450B5602fa59CC66e1379DFfB6FDDc724CfC4","crvRewards":"0x4a2631d090e8b40bBDe245e687BF09e5e534A239","stash":"0x0000000000000000000000000000000000000000","shutdown":false,"extraRewards":[]},{"pid":14,"lpToken":"0x1AEf73d49Dedc4b1778d0706583995958Dc862e6","token":"0xd34d466233c5195193dF712936049729140DBBd7","gauge":"0x5f626c30EC1215f4EdCc9982265E8b1F411D1352","crvRewards":"0xDBFa6187C79f4fE4Cda20609E75760C5AaE88e52","stash":"0x2eEa402ff31c580630b8545A33EDc00881E6949c","shutdown":false,"extraRewards":[{"pool":"0x93a5c724c4992fcbda6b96f06fa15eb8b5c485b7","token":"0xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2"}]},{"pid":15,"lpToken":"0xC2Ee6b0334C261ED60C72f6054450b61B8f18E35","token":"0x8b876C2C02B1f2Ac6Ec207B7f2f06034A4316A87","gauge":"0x4dC4A289a8E33600D8bD4cf5F6313E43a37adec7","crvRewards":"0xedfCCF611D7c40F43e77a1340cE2C29EEEC27205","stash":"0x3a076e8F088bFa7a43e1209B2E460927071e15F2","shutdown":false,"extraRewards":[{"pool":"0x94c259dc4c6df248b0b5d23c055cb7574a587d67","token":"0x8762db106b2c2a0bccb3a80d1ed41273552616e8"}],"noTest":true},{"pid":16,"lpToken":"0x64eda51d3Ad40D56b9dFc5554E06F94e1Dd786Fd","token":"0x36CED690A1516861f26755b978EE62c1157CFFF9","gauge":"0x6828bcF74279eE32f2723eC536c22c51Eed383C6","crvRewards":"0x081A6672f07B615B402e7558a867C97FA080Ce35","stash":"0x21FdcdeBf375e67219c1Bfa266BCfDaA36a2b4Fe","shutdown":false,"extraRewards":[{"pool":"0x2aa030dcb729cf94bc096bd00d377aa719a09371","token":"0x85eee30c52b0b379b046fb0f85f4f3dc3009afec"}]},{"pid":17,"lpToken":"0x3a664Ab939FD8482048609f652f9a0B0677337B9","token":"0x06f4fFa5C3636AaA5C30B3DB97bfd1cd9Ac24A19","gauge":"0xAEA6c312f4b3E04D752946d329693F7293bC2e6D","crvRewards":"0x1992b82A8cCFC8f89785129D6403b13925d6226E","stash":"0x07815651B8F1c5bE84797840543F304b7F1aeC2a","shutdown":false,"extraRewards":[{"pool":"0x666f8eee6fd6839853993977cc86a7a51425673c","token":"0x20c36f062a31865bed8a5b1e512d9a1a20aa333a"}]},{"pid":18,"lpToken":"0xDE5331AC4B3630f94853Ff322B66407e0D6331E8","token":"0x21Cce64289407081744F087950b9DB32906470fC","gauge":"0xd7d147c6Bb90A718c3De8C0568F9B560C79fa416","crvRewards":"0x2d3C90AEB11D1393CA839Afc9587515B1325D77A","stash":"0x930CfB64130a90d42eD37d4616792C9dEB791faf","shutdown":false,"extraRewards":[{"pool":"0xaf138b29205c2246b069ed8f0b213b205fbc14e0","token":"0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed"}]},{"pid":19,"lpToken":"0x410e3E86ef427e30B9235497143881f717d93c2A","token":"0x2E1f902b9067b5fDd7AF29ef05D4fF6212588388","gauge":"0xdFc7AdFa664b08767b735dE28f9E84cd30492aeE","crvRewards":"0x61D741045cCAA5a215cF4E5e55f20E1199B4B843","stash":"0xd852eFBEd0f49a065194ca92c9F305DE6DdCbF35","shutdown":false,"extraRewards":[]},{"pid":20,"lpToken":"0x2fE94ea3d5d4a175184081439753DE15AeF9d614","token":"0xc1C030139eEc070Ed8FD092CC8C273C638A18bBe","gauge":"0x11137B10C210b579405c21A07489e28F3c040AB1","crvRewards":"0xeeeCE77e0bc5e59c77fc408789A9A172A504bD2f","stash":"0x9a669fb0191D977e588b20CdA3C52EDbC6c9926c","shutdown":false,"extraRewards":[{"pool":"0xae97d3766924526084da88ba9b2bd7af989bf6fc","token":"0x3c9d6c1c73b31c837832c72e04d3152f051fc1a9"},{"pool":"0x22a07a6bda1cecbe2a671203e2114d8a170e5529","token":"0xbc19712feb3a26080ebf6f2f7849b417fdd792ca"}]},{"pid":21,"lpToken":"0x94e131324b6054c0D789b190b2dAC504e4361b53","token":"0x67c4f788FEB82FAb27E3007daa3d7b90959D5b89","gauge":"0x3B7020743Bc2A4ca9EaF9D0722d42E20d6935855","crvRewards":"0xd4Be1911F8a0df178d6e7fF5cE39919c273E2B7B","stash":"0x6249fD91fE9FF597399c1B192D5A25Cd22Eba6dd","shutdown":false,"extraRewards":[]},{"pid":22,"lpToken":"0x194eBd173F6cDacE046C53eACcE9B953F28411d1","token":"0xd7E2b9494c529b42Dea53EF6a237C16502E6A927","gauge":"0x90Bb609649E0451E5aD952683D64BD2d1f245840","crvRewards":"0xcB8F69E0064d8cdD29cbEb45A14cf771D904BcD3","stash":"0x007Cc4b4E9d9D088a9ae0e5261995D69e93B8E4C","shutdown":false,"extraRewards":[]},{"pid":23,"lpToken":"0xA3D87FffcE63B53E0d54fAa1cc983B7eB0b74A9c","token":"0xAF1d4C576bF55f6aE493AEebAcC3a227675e5B98","gauge":"0x3C0FFFF15EA30C35d7A85B85c0782D6c94e1d238","crvRewards":"0x192469CadE297D6B21F418cFA8c366b63FFC9f9b","stash":"0x1e6f5B8b4CAc5806D182B33A35d0fFF5F4004e86","shutdown":false,"extraRewards":[]},{"pid":24,"lpToken":"0xFd2a8fA60Abd58Efe3EeE34dd494cD491dC14900","token":"0x23F224C37C3A69A058d86a54D3f561295A93d542","gauge":"0xd662908ADA2Ea1916B3318327A97eB18aD588b5d","crvRewards":"0xE82c1eB4BC6F92f85BF7EB6421ab3b882C3F5a7B","stash":"0x5D4CF00939aa5F7C2cEb10c88615E9bcb0dd67fa","shutdown":false,"extraRewards":[{"pool":"0x00469d388b06127221d6310843a43d079eb2bb18","token":"0x4da27a545c0c5b758a6ba100e3a049001de870f5"}]},{"pid":25,"lpToken":"0x06325440D014e39736583c165C2963BA99fAf14E","token":"0x9518c9063eB0262D791f38d8d6Eb0aca33c63ed0","gauge":"0x182B723a58739a9c974cFDB385ceaDb237453c28","crvRewards":"0x0A760466E1B4621579a82a39CB56Dda2F4E70f03","stash":"0x9710fD4e5CA524f1049EbeD8936c07C81b5EAB9f","shutdown":false,"extraRewards":[{"pool":"0x008aea5036b819b4feaed10b2190fbb3954981e8","token":"0x5a98fcbea516cf06857215779fd812ca3bef1b32"}]},{"pid":26,"lpToken":"0x02d341CcB60fAaf662bC0554d13778015d1b285C","token":"0x09CCD0892b696AB21436e51588a7a7f8b649733d","gauge":"0x462253b8F74B72304c145DB0e4Eebd326B22ca39","crvRewards":"0xF86AE6790654b70727dbE58BF1a863B270317fD0","stash":"0xd2D46004b981FdE1e4D39d0C24E1Be1e93689DD9","shutdown":false,"extraRewards":[{"pool":"0x20165075174b51a2f9efbf7d6d8f3c72bbc63064","token":"0x4da27a545c0c5b758a6ba100e3a049001de870f5"}]},{"pid":27,"lpToken":"0xaA17A236F2bAdc98DDc0Cf999AbB47D47Fc0A6Cf","token":"0x7E96955b66c89B931BBDAf187740Cc0fF2602F21","gauge":"0x6d10ed2cF043E6fcf51A0e7b4C2Af3Fa06695707","crvRewards":"0x8798b81b0261934aa850C8de8622472bfdc143F4","stash":"0x423C444589CE5dB1E6F99820A5f95b3a57976598","shutdown":false,"extraRewards":[{"pool":"0x177252ac74f1d77513971aa85af7009c43ecdee2","token":"0xe0ad1806fd3e7edf6ff52fdb822432e847411033"},{"pool":"0xc095cec98a9f8ad6d2baa282a8e6be246f98bd25","token":"0x8290333cef9e6d528dd5618fb97a76f268f3edd4"}]},{"pid":28,"lpToken":"0x7Eb40E450b9655f4B3cC4259BCC731c63ff55ae6","token":"0x7a5dC1FA2e1B10194bD2e2e9F1A224971A681444","gauge":"0x055be5DDB7A925BfEF3417FC157f53CA77cA7222","crvRewards":"0x24DfFd1949F888F91A0c8341Fc98a3F280a782a8","stash":"0xBE25313c53360780e03233Cc70a4409367EC15aE","shutdown":false,"extraRewards":[{"pool":"0x5f91615268be6b4add646b2560785b8f17dccbb4","token":"0x92e187a03b6cd19cb6af293ba17f2745fd2357d5"}]},{"pid":29,"lpToken":"0x5282a4eF67D9C33135340fB3289cc1711c13638C","token":"0x912EC00eaEbf3820a9B0AC7a5E15F381A1C91f22","gauge":"0xF5194c3325202F456c95c1Cf0cA36f8475C1949F","crvRewards":"0x3E03fFF82F77073cc590b656D42FceB12E4910A8","stash":"0x3aEaAB3eF0b5a484d8A2380215eA0A64d3101A6D","shutdown":false,"extraRewards":[]},{"pid":30,"lpToken":"0xcee60cFa923170e4f8204AE08B4fA6A3F5656F3a","token":"0xD37969740d78C94C648d74671B8BE31eF43c30aB","gauge":"0xFD4D8a17df4C27c1dD245d153ccf4499e806C87D","crvRewards":"0x9700152175dc22E7d1f3245fE3c1D2cfa3602548","stash":"0x63201dc22e52985153E038086c448252d44Bed40","shutdown":false,"extraRewards":[]},{"pid":31,"lpToken":"0xEcd5e75AFb02eFa118AF914515D6521aaBd189F1","token":"0x0A2eA49EB5F9e23058deffD509D13DDd553c2A19","gauge":"0x359FD5d6417aE3D8D6497d9B2e7A890798262BA4","crvRewards":"0x308b48F037AAa75406426dACFACA864ebd88eDbA","stash":"0x12566645C209C1518BD25BdD3B0fd0bAe0910344","shutdown":false,"extraRewards":[]},{"pid":32,"lpToken":"0xd632f22692FaC7611d2AA1C0D552930D43CAEd3B","token":"0xbE0F6478E0E4894CFb14f32855603A083A57c7dA","gauge":"0x72E158d38dbd50A483501c24f792bDAAA3e7D55C","crvRewards":"0xB900EF131301B307dB5eFcbed9DBb50A3e209B2e","stash":"0x10a63847e6cdD2b07e0a22D1f30eB037a72eB790","shutdown":false,"extraRewards":[{"pool":"0xcdec6714eb482f28f4889a0c122868450cdbf0b0","token":"0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"}]},{"pid":33,"lpToken":"0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA","token":"0xFB9B2f06FDb404Fd3E2278E9A9edc8f252F273d0","gauge":"0x9B8519A9a00100720CCdC8a120fBeD319cA47a14","crvRewards":"0x2ad92A7aE036a038ff02B96c88de868ddf3f8190","stash":"0x06D972728A9d05CA6F27EDc01e20b50A60b1Deed","shutdown":false,"extraRewards":[{"pool":"0x55d59b791f06dc519b176791c4e037e8cf2f6361","token":"0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d"}]},{"pid":34,"lpToken":"0x4807862AA8b2bF68830e4C8dc86D0e9A998e085a","token":"0x02D784f98A312aF3e2771297Feff1Da8273e4F29","gauge":"0xd4B22fEdcA85E684919955061fDf353b9d38389b","crvRewards":"0xbD223812d360C9587921292D0644D18aDb6a2ad0","stash":"0xBE3ED241c90F39cC50450C4937523FCC8d3e9bbc","shutdown":false,"extraRewards":[]},{"pid":35,"lpToken":"0x53a901d48795C58f485cBB38df08FA96a24669D5","token":"0x7ADd8D0E923CB692DF6bC65d96d510f0E2fC37af","gauge":"0x824F13f1a2F29cFEEa81154b46C0fc820677A637","crvRewards":"0x61dB6c2321f784c8fAb8d5eF80f58F27C831dCc8","stash":"0x644C8d1eD4b6aA68738a93C5c13c7fC19e126587","shutdown":false,"extraRewards":[{"pool":"0x681a790debe586a64eea055bf0983cd6629d8359","token":"0xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d"}]},{"pid":36,"lpToken":"0x43b4FdFD4Ff969587185cDB6f0BD875c5Fc83f8c","token":"0xCA3D9F45FfA69ED454E66539298709cb2dB8cA61","gauge":"0x9582C4ADACB3BCE56Fea3e590F05c3ca2fb9C477","crvRewards":"0x02E2151D4F351881017ABdF2DD2b51150841d5B3","stash":"0x521e6EEfDa35f7228f8f83462552bDB41D64d86B","shutdown":false,"extraRewards":[{"pool":"0xd731495bb78a4250bc094686788f3ff890dee0f4","token":"0xdbdb4d16eda451d0503b854cf79d55697f90c8df"}]},{"pid":37,"lpToken":"0xcA3d75aC011BF5aD07a98d02f18225F9bD9A6BDF","token":"0x18684099414dcEF486F4FA5b4e44e6eA53C8c554","gauge":"0x6955a55416a06839309018A8B0cB72c4DDC11f15","crvRewards":"0x5Edced358e6C0B435D53CC30fbE6f5f0833F404F","stash":"0x35e86E54eCb0227fe33382c35E12856cF227E9ce","shutdown":false,"extraRewards":[]},{"pid":38,"lpToken":"0xc4AD29ba4B3c580e6D59105FFf484999997675Ff","token":"0x903C9974aAA431A765e60bC07aF45f0A1B3b61fb","gauge":"0xDeFd8FdD20e0f34115C7018CCfb655796F6B2168","crvRewards":"0x9D5C5E364D81DaB193b72db9E9BE9D8ee669B652","stash":"0xDb1A0Bb8C14Bc7B4eDA5ca95B4A6C6013a7b359D","shutdown":false,"extraRewards":[]},{"pid":39,"lpToken":"0xFD5dB7463a3aB53fD211b4af195c5BCCC1A03890","token":"0x2b2175AC371Ec2900AC39fb87452340F65CC9895","gauge":"0xe8060Ad8971450E624d5289A10017dD30F5dA85F","crvRewards":"0xD814BFC091111E1417a669672144aFFAA081c3CE","stash":"0x353460EACDAaEC993eCdA986440F4c343BBf6c05","shutdown":false,"extraRewards":[]},{"pid":40,"lpToken":"0x5a6A4D54456819380173272A5E8E9B9904BdF41B","token":"0xabB54222c2b77158CC975a2b715a3d703c256F05","gauge":"0xd8b712d29381748dB89c36BCa0138d7c75866ddF","crvRewards":"0xFd5AbF66b003881b88567EB9Ed9c651F14Dc4771","stash":"0xEd3D937A12fEed5298827B3adf05caaFfb0efDda","shutdown":false,"extraRewards":[{"pool":"0x69a92f1656cd2e193797546cfe2eaf32eaccf6f7","token":"0x090185f2135308bad17527004364ebcc2d37e5f6"}]},{"pid":41,"lpToken":"0x9D0464996170c6B9e75eED71c68B99dDEDf279e8","token":"0x8FDF7cabfEc73d5FfD1447867834b4cf39B745B7","gauge":"0x903dA6213a5A12B61c821598154EfAd98C3B20E4","crvRewards":"0x0392321e86F42C2F94FBb0c6853052487db521F0","stash":"0xF025A9FbcaA41E03e7a443716fe2182d13cf80a4","shutdown":false,"extraRewards":[{"pool":"0xbe4dea8e5d1e53fad661610e47501f858f25852d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":42,"lpToken":"0x8818a9bb44Fbf33502bE7c15c500d0C783B73067","token":"0xF527FF4d2f8D84ec51D31C6F533B8cC78AFf6918","gauge":"0xeFF437A56A22D7dD86C1202A308536ED8C7da7c1","crvRewards":"0xbA8fE590498ed24D330Bb925E69913b1Ac35a81E","stash":"0xc87E93D6138c08a99b581f6dE4424c1e4b71A03F","shutdown":false,"extraRewards":[{"pool":"0x771bc5c888d1b318d0c5b177e4f996d3d5fd3d18","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x8a3f52c2eb02de2d8356a8286c96909352c62b10","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":43,"lpToken":"0xD6Ac1CB9019137a896343Da59dDE6d097F710538","token":"0xe6b9b86a593E6c33fa3F0887753cdC39EA49B246","gauge":"0x63d9f3aB7d0c528797A12a0684E50C397E9e79dC","crvRewards":"0x51a16DA36c79E28dD3C8c0c19214D8aF413984Aa","stash":"0xA335f705e0e33e986Bae79244F2Cd73899932290","shutdown":false,"extraRewards":[{"pool":"0xe689db5d753abc411acb8a3fef226c08acdae13f","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x00a4f5d12e3faa909c53cdcc90968f735633e988","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":44,"lpToken":"0x3F1B0278A9ee595635B61817630cC19DE792f506","token":"0xBec1Fa170974F0B38Eb76D8ca87053AbD5cedffF","gauge":"0x05ca5c01629a8E5845f12ea3A03fF7331932233A","crvRewards":"0xb1Fae59F23CaCe4949Ae734E63E42168aDb0CcB3","stash":"0xCc96f06fa34d934a90089793b27d36801842A599","shutdown":false,"extraRewards":[{"pool":"0x91ad51f0897552ce77f76b44e9a86b4ad2b28c25","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x040a6ae6314e190974ee4839f3c2fbf849ef54eb","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":45,"lpToken":"0x19b080FE1ffA0553469D20Ca36219F17Fcf03859","token":"0x864510e93c38C771adC1B67308cE0b7c4AA1AA9e","gauge":"0x99fb76F75501039089AAC8f20f487bf84E51d76F","crvRewards":"0xCd0559ADb6fAa2fc83aB21Cf4497c3b9b45bB29f","stash":"0x65d3834Ca2F62AB3f484cD50bB8a2Ba784cc69AA","shutdown":false,"extraRewards":[{"pool":"0x21034ccc4f8d07d0cf8998fdd4c45e426540dec1","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0xba5ef047ce02cc0096db3bc8ed84aad14291f8a0","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":46,"lpToken":"0x9c2C8910F113181783c249d8F6Aa41b51Cde0f0c","token":"0xcd555A686486160D815C89D92EE69A88E356f34C","gauge":"0x2fA53e8fa5fAdb81f4332C8EcE39Fe62eA2f919E","crvRewards":"0xa5A5905efc55B05059eE247d5CaC6DD6791Cfc33","stash":"0x44789Fa0e02ed06E3cA4A1405CBef7EA2F11D282","shutdown":false,"extraRewards":[{"pool":"0x9d9ebcc8e7b4ef061c0f7bab532d1710b874f789","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x1c86460640457466e2ec86916b4a91ed86ce0d1e","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":47,"lpToken":"0x8461A004b50d321CB22B7d034969cE6803911899","token":"0xAA4e7d24230B1F3AF324C7574ABD5D28525807cA","gauge":"0x1750a3a3d80A3F5333BBe9c4695B0fAd41061ab1","crvRewards":"0x8F18C0AF0d7d511E8Bdc6B3c64926B04EDfE4892","stash":"0xb75b7297f29d5f6211f112D24b1edF9Dc77eD834","shutdown":false,"extraRewards":[{"pool":"0xe3a64e08eebf38b19a3d9fec51d8cd5a8898dd5e","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"},{"pool":"0x93649cd43635bc5f7ad8fa2fa27cb9ae765ec58a","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":48,"lpToken":"0xB15fFb543211b558D40160811e5DcBcd7d5aaac9","token":"0x281C17920DaB8B2Cb3ce631E2D53c8ccE94262B4","gauge":"0xB15fFb543211b558D40160811e5DcBcd7d5aaac9","crvRewards":"0xc3628b8FAaDe10aCeAe88c9b982cE0AAc9bBaaD3","stash":"0x01140351069af98416cC08b16424b9E765436531","shutdown":false,"extraRewards":[],"noTest":true},{"pid":49,"lpToken":"0xC4C319E2D4d66CcA4464C0c2B32c9Bd23ebe784e","token":"0x0BF4C896100801cecFF4ad1e742E5227D67EcD7b","gauge":"0x12dCD9E8D1577b5E4F066d8e7D404404Ef045342","crvRewards":"0x48Bc302d8295FeA1f8c3e7F57D4dDC9981FEE410","stash":"0xfFA249074F7846Ee072e2068A1DEC44eDD802491","shutdown":false,"extraRewards":[{"pool":"0xcec9a6efff1daf52af12beebf87f81bda7b95c0b","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":50,"lpToken":"0x3Fb78e61784C9c637D560eDE23Ad57CA1294c14a","token":"0x3c5208849fa77Aaa98483527f20303cAF25a1Ad8","gauge":"0xD9277b0D007464eFF133622eC0d42081c93Cef02","crvRewards":"0x7CDA2a83D29d7Fc2ccb8F7716b5c1c34781aeb12","stash":"0xb24Ea588066fBEB9610141d4b779d5D9F80A1180","shutdown":false,"extraRewards":[]},{"pid":51,"lpToken":"0x5B3b5DF2BF2B6543f78e053bD91C4Bdd820929f1","token":"0x23e3AAAA5034165cF194F19692b41d801BEB5304","gauge":"0x9AF13a7B1f1Bbf1A2B05c6fBF23ac23A9E573b4E","crvRewards":"0xA689C00F3fd87dD3871C79C73343cd9F7957377E","stash":"0x3f2A3f6ab577B562a193C008686fb81b5eEe6586","shutdown":false,"extraRewards":[{"pool":"0xb9e2e39c9c804a01f1fcb4e86f765774d511d535","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":52,"lpToken":"0x55A8a39bc9694714E2874c1ce77aa1E599461E18","token":"0x766A8D4DE01D3eD575CdEf0587Eaf615eCB46726","gauge":"0xB518f5e3242393d4eC792BD3f44946A3b98d0E48","crvRewards":"0xC62DE533ea77D46f3172516aB6b1000dAf577E89","stash":"0xa69e5023d5Dc71ec5Bf602A5AC80cb0C5078423E","shutdown":false,"extraRewards":[{"pool":"0x27801399d60594bfede955d54c3e85b2f00179c5","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":53,"lpToken":"0xFbdCA68601f835b27790D98bbb8eC7f05FDEaA9B","token":"0xb43ed35B5A3a9544BBEd8039c67AB04AD428deEa","gauge":"0x346C7BB1A7a6A30c8e81c14e90FC2f0FBddc54d8","crvRewards":"0x4F2b8a15d0Dd58c1eB60bd53e966872828519Cee","stash":"0x4fd82224bEa0653215A5d6cAec59689Deb018c46","shutdown":false,"extraRewards":[{"pool":"0xaaf75a94394f6d06e01cce62e2545ceffbfa1e2d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":54,"lpToken":"0x3D229E1B4faab62F621eF2F6A610961f7BD7b23B","token":"0x18F320B124A80ee2FA491e1438CdA771c3d8c84b","gauge":"0x65CA7Dc5CB661fC58De57B1E1aF404649a27AD35","crvRewards":"0xb0c1B7b83Baae51284B8BbBa02Ec37742440199d","stash":"0x6Ffb6C270D2E9AeEd7654eaEe8A39310e2bB508e","shutdown":false,"extraRewards":[]},{"pid":55,"lpToken":"0x3b6831c0077a1e44ED0a21841C3bC4dC11bCE833","token":"0x410ACa1a116cCc718e9A0BDd8080655a52f1FAC4","gauge":"0x4Fd86Ce7Ecea88F7E0aA78DC12625996Fb3a04bC","crvRewards":"0xD2B756Af4E345A8657C0656C148aDCD3000C97A4","stash":"0x03d1e553667F0cf0A4775069DAA5ed8F125308e8","shutdown":false,"extraRewards":[]},{"pid":56,"lpToken":"0x87650D7bbfC3A9F10587d7778206671719d9910D","token":"0xd1daFC25bf672a52eF9c092258389dC2AD078309","gauge":"0x25f0cE4E2F8dbA112D9b115710AC297F816087CD","crvRewards":"0x7D536a737C13561e0D2Decf1152a653B4e615158","stash":"0x899996778C4e0cae5680d76262E44a2a7a5852A1","shutdown":false,"extraRewards":[{"pool":"0x08ede581d9b9ae55fa7decc4e4331d191bbbf9db","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0x8a05801c1512f6018e450b0f69e9ca7b985fcea3","token":"0x8207c1ffc5b6804f6024322ccf34f29c3541ae26"}]},{"pid":57,"lpToken":"0xc270b3B858c335B6BA5D5b10e2Da8a09976005ad","token":"0x918696AB70bF4F9a22497fC73903F3498a885980","gauge":"0xC95bdf13A08A547E4dD9f29B00aB7fF08C5d093d","crvRewards":"0x500E169c15961DE8798Edb52e0f88a8662d30EC5","stash":"0x1aE471f8C3338e826a5f6f47Cdf33b504Da7cD83","shutdown":false,"extraRewards":[]},{"pid":58,"lpToken":"0xBaaa1F5DbA42C3389bDbc2c9D2dE134F5cD0Dc89","token":"0x88c82d9767CC8AF564Da81dDD10741fa9D875682","gauge":"0x16C2beE6f55dAB7F494dBa643fF52ef2D47FBA36","crvRewards":"0x329cb014b562d5d42927cfF0dEdF4c13ab0442EF","stash":"0x755758DcAa6e8072B541863983ADA9c7BDA7c420","shutdown":false,"extraRewards":[{"pool":"0x880c2c5c4ea8cef892a90e3f714eb60144c08c30","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":59,"lpToken":"0xCEAF7747579696A2F0bb206a14210e3c9e6fB269","token":"0x2d2006135e682984a8a2eB74F5C87c2251cC71E9","gauge":"0xb0f5d00e5916c8b8981e99191A1458704B587b2b","crvRewards":"0x7e2b9B5244bcFa5108A76D5E7b507CFD5581AD4A","stash":"0x77Aa721Ba9C1423c5DBce6E0804887eEbD99cd00","shutdown":false,"extraRewards":[{"pool":"0x28a68d9c58086daeb32d5c9297366cc91e50215d","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":60,"lpToken":"0xb9446c4Ef5EBE66268dA6700D26f96273DE3d571","token":"0xC98786A97d667Fe67AAe694BD7949813A73f1BF0","gauge":"0x1E212e054d74ed136256fc5a5DDdB4867c6E003F","crvRewards":"0x4a9b7eDD67f58654a2c33B587f98c5709AC7d482","stash":"0x54aD657aEe30c0f954944f639852d50960689Fa4","shutdown":false,"extraRewards":[{"pool":"0x74835a39fd0e72e142d5e83d514e3ef6e7642220","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0xb83eaada3757432f7a894944c3ac154fbdbd8b46","token":"0x31429d1856ad1377a8a0079410b297e1a9e214c2"}]},{"pid":61,"lpToken":"0xEd4064f376cB8d68F770FB1Ff088a3d0F3FF5c4d","token":"0x0Fb8dcdD95e4C48D3dD0eFA4086512f6F8FD4565","gauge":"0x1cEBdB0856dd985fAe9b8fEa2262469360B8a3a6","crvRewards":"0x085A2054c51eA5c91dbF7f90d65e728c0f2A270f","stash":"0x285972e5799cF224c4C6e81E9e47d4ae9EA7CBD3","shutdown":false,"extraRewards":[{"pool":"0xe1ecbb4181378e2346eac90eb5606c01aa08f052","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":62,"lpToken":"0xAA5A67c256e27A5d80712c51971408db3370927D","token":"0xb3E8f3D7Ec208a032178880955f6c877479d1FDd","gauge":"0x8Fa728F393588E8D8dD1ca397E9a710E53fA553a","crvRewards":"0x835f69e58087E5B6bffEf182fe2bf959Fe253c3c","stash":"0xE7c811697ac3dd92cb100882dAc5Bd4183Bab747","shutdown":false,"extraRewards":[]},{"pid":63,"lpToken":"0x6BA5b4e438FA0aAf7C1bD179285aF65d13bD3D90","token":"0x2937Ef019db60C826Fe6141EB300847f85E66956","gauge":"0x66ec719045bBD62db5eBB11184c18237D3Cc2E62","crvRewards":"0x29B91c6CEC4F43aFdb6f6d71FAf1C03d6b712f55","stash":"0xAEA94fC182b7Fe73E25C0C7954FE1d5f5173C0B9","shutdown":false,"extraRewards":[]},{"pid":64,"lpToken":"0x3A283D9c08E8b55966afb64C515f5143cf907611","token":"0x0bC857f97c0554d1d0D602b56F2EEcE682016fBA","gauge":"0x7E1444BA99dcdFfE8fBdb42C02F0005D14f13BE1","crvRewards":"0xb1Fb0BA0676A1fFA83882c7F4805408bA232C1fA","stash":"0x679df29F380F1BEc31657cd6a5638aec4AEA3300","shutdown":false,"extraRewards":[{"pool":"0x834b9147fd23bf131644abc6e557daf99c5cda15","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"}]},{"pid":65,"lpToken":"0x8484673cA7BfF40F82B041916881aeA15ee84834","token":"0x7B00e822F9E05882F9e088655e738F656C99C53A","gauge":"0x1B3E14157ED33F60668f2103bCd5Db39a1573E5B","crvRewards":"0x6cb1933E49C48AE8ec12d39aD7D85695b247deDB","stash":"0x2B7559683B0cC4dbF06CEd4c3AC1B589f7F5a53B","shutdown":false,"extraRewards":[]},{"pid":66,"lpToken":"0x8282BD15dcA2EA2bDf24163E8f2781B30C43A2ef","token":"0xe87f447ef9B76905A25ab8160c7EF66864f4984A","gauge":"0x08380a4999Be1a958E2abbA07968d703C7A3027C","crvRewards":"0xb2f0bB6352417c1Bf017862aC165E67623611aF3","stash":"0x8bf218F98e1f433D083A6313FB49b2e69Cb89148","shutdown":false,"extraRewards":[]},{"pid":67,"lpToken":"0xCb08717451aaE9EF950a2524E33B6DCaBA60147B","token":"0x1766EDBa8CD066e3eB1912D2b8c7E2c59A3D7Ece","gauge":"0x6070fBD4E608ee5391189E7205d70cc4A274c017","crvRewards":"0x3E91E7c822AC8b4b7905d108c3faCF22A3ee5d2c","stash":"0xf9c837b180744F1C2855D3008740ADf1f305dfe5","shutdown":false,"extraRewards":[]},{"pid":68,"lpToken":"0x29059568bB40344487d62f7450E78b8E6C74e0e5","token":"0x73b78A30A1D249D88Ad6CCb80B1e0b357Fb4b5Ea","gauge":"0x05255C5BD33672b9FEA4129C13274D1E6193312d","crvRewards":"0x3207bDc327aB67f182B82948fd3DF757F8771324","stash":"0x24C93C04E1ed12cF15E7f69611d59e3145150ADE","shutdown":false,"extraRewards":[]},{"pid":69,"lpToken":"0x90244F43D548a4f8dFecfAD91a193465B1fad6F7","token":"0x7E72dDA16B916c986972B1c9F3fbfAe67D96D733","gauge":"0x009aCD89535DAbC270C93F9b39D3232105Fef453","crvRewards":"0xAA0e8Ef60BaBda02Ef11c89a061D82b1D61a462C","stash":"0xAC86e1b070b8364D49fA34CDc3e2fA6e98674873","shutdown":false,"extraRewards":[]},{"pid":70,"lpToken":"0xB37D6c07482Bc11cd28a1f11f1a6ad7b66Dec933","token":"0xbAff5309fa5bf4556cddf83BD729A18Dc8058a9f","gauge":"0x38039dD47636154273b287F74C432Cac83Da97e2","crvRewards":"0x769499A7B4093b2AA35E3F3C00B1ab5dc8EF7146","stash":"0x434Bf2F8fdfAD278571e4b46d1628353FaCb0B73","shutdown":false,"extraRewards":[{"pool":"0x92dfd397b6d0b878126f5a5f6f446ae9fc8a8356","token":"0x31429d1856ad1377a8a0079410b297e1a9e214c2"},{"pool":"0x19ba12d57ad7b126de898706aa6dbf7d6dc85ff8","token":"0xedb67ee1b171c4ec66e6c10ec43edbba20fae8e9"}]},{"pid":71,"lpToken":"0x06cb22615BA53E60D67Bf6C341a0fD5E718E1655","token":"0x6b35abd7612270E09244aFdbE3e5cf67f3B4E09F","gauge":"0xdC69D4cB5b86388Fff0b51885677e258883534ae","crvRewards":"0x3133A4428AAC0b4ad96a09845363386ECd289A9c","stash":"0xe842D814EB4Ff3420d6873eBDDE1d9c6ac384fB2","shutdown":false,"extraRewards":[]},{"pid":72,"lpToken":"0xF3A43307DcAFa93275993862Aae628fCB50dC768","token":"0xCB6D873f7BbE57584a9b08380901Dc200Be7CE74","gauge":"0xAB1927160EC7414C6Fa71763E2a9f3D107c126dd","crvRewards":"0xf27AFAD0142393e4b3E5510aBc5fe3743Ad669Cb","stash":"0x4f3AD55D7b884CDC48ADD1e2451A13af17887F26","shutdown":false,"extraRewards":[{"pool":"0xe2585f27bf5aab7756f626d6444ed5fc9154e606","token":"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"},{"pool":"0x28120d9d49dbaeb5e34d6b809b842684c482ef27","token":"0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0"}]},{"pid":73,"lpToken":"0x447Ddd4960d9fdBF6af9a790560d0AF76795CB08","token":"0x38C9E856C289594F8E0F095FF396142F19004cdb","gauge":"0x8aD7e0e6EDc61bC48ca0DD07f9021c249044eD30","crvRewards":"0x5c463069b99AfC9333F4dC2203a9f0c6C7658cCc","stash":"0x96Cf7f62b073ddEBf9b4F989586f5c7BC3483b66","shutdown":false,"extraRewards":[]},{"pid":74,"lpToken":"0x137469B55D1f15651BA46A89D0588e97dD0B6562","token":"0xe7f50e96e0FE8285D3B27B3b9A464a2102C9708c","gauge":"0x02246583870b36Be0fEf2819E1d3A771d6C07546","crvRewards":"0x36c7E7F9031647A74687ce46A8e16BcEA84f3865","stash":"0x406868FBFdb61f976C2A76d617259EFB7778860A","shutdown":false,"extraRewards":[]},{"pid":75,"lpToken":"0xE160364FD8407FFc8b163e278300c6C5D18Ff61d","token":"0x6b45b93B4505B5c134262c3985d776D71a20D601","gauge":"0x5AC6886Edd18ED0AD01C0B0910660637c551FBd6","crvRewards":"0x41565A76DC949E57486Ca4550C2e086D95AEfb19","stash":"0xFf4bEA60c48bA9210527F24E28bAC56BACE1f286","shutdown":false,"extraRewards":[]},{"pid":76,"lpToken":"0xbcb91E689114B9Cc865AD7871845C95241Df4105","token":"0x80D68884f425f73395EA0a7476a786De38Ca1306","gauge":"0xb07d00e0eE9b1b2eb9f1B483924155Af7AF0c8Fa","crvRewards":"0xC4d009E61a904BfDf39144295F12870E8305D4d9","stash":"0x2f95d210231aC0eEc91C312F80783bF97133C8Bb","shutdown":false,"extraRewards":[]},{"pid":77,"lpToken":"0xC9467E453620f16b57a34a770C6bceBECe002587","token":"0x518AbdbEe7B2e1D62d3C7435B8FEE56AED7dcE53","gauge":"0xB5efA93d5D23642f970aF41a1ea9A26f19CbD2Eb","crvRewards":"0x589761B61D8d1C8ecc36F3cFE35932670749015a","stash":"0xA8ec0bf38200188DcE8344a8B82d7aAc26A6faF5","shutdown":false,"extraRewards":[]},{"pid":78,"lpToken":"0x2302aaBe69e6E7A1b0Aa23aAC68fcCB8A4D2B460","token":"0x77d869e95a08b6b88f8f87DeEdEd5e9b8bb30B29","gauge":"0x784342E983E9283A7108F20FcA21995534b3fE65","crvRewards":"0xE259d085f55825624bBA8571eD20984c125Ba720","stash":"0x637aC4C86b8b85fbA60e657D1Ba312b3451D7386","shutdown":false,"extraRewards":[],"noTest":true},{"pid":79,"lpToken":"0x1054Ff2ffA34c055a13DCD9E0b4c0cA5b3aecEB9","token":"0x98A0f1541684542Da2455A965dC8CEA1D5f26c24","gauge":"0xE786Df7076AFeECC3faCD841ED4AD20d0F04CF19","crvRewards":"0x8731A63dD6aF83c044F623A89ABD50A8bb5a5022","stash":"0x777C03A0B05e0954F789256E9048ed076f5EbE3d","shutdown":false,"extraRewards":[],"noTest":true}]');
|
|
7447
7502
|
|
|
7448
7503
|
/***/ }),
|
|
7449
|
-
/*
|
|
7504
|
+
/* 187 */
|
|
7450
7505
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7451
7506
|
|
|
7452
7507
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7455,7 +7510,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7455
7510
|
/* harmony export */ });
|
|
7456
7511
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
7457
7512
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
7458
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7513
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(185);
|
|
7459
7514
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(39);
|
|
7460
7515
|
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); } }
|
|
7461
7516
|
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); }); }; }
|
|
@@ -7503,7 +7558,7 @@ class ConvexWithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7503
7558
|
}
|
|
7504
7559
|
|
|
7505
7560
|
/***/ }),
|
|
7506
|
-
/*
|
|
7561
|
+
/* 188 */
|
|
7507
7562
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7508
7563
|
|
|
7509
7564
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7512,7 +7567,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7512
7567
|
/* harmony export */ });
|
|
7513
7568
|
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
7514
7569
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
7515
|
-
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7570
|
+
/* harmony import */ var _utils_convex_utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(185);
|
|
7516
7571
|
/* harmony import */ var _utils_general__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(39);
|
|
7517
7572
|
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); } }
|
|
7518
7573
|
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); }); }; }
|
|
@@ -7558,7 +7613,7 @@ class ConvexClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7558
7613
|
}
|
|
7559
7614
|
|
|
7560
7615
|
/***/ }),
|
|
7561
|
-
/*
|
|
7616
|
+
/* 189 */
|
|
7562
7617
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7563
7618
|
|
|
7564
7619
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7566,19 +7621,28 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7566
7621
|
/* harmony export */ "CBChickenInAction": () => (/* reexport safe */ _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__.CBChickenInAction),
|
|
7567
7622
|
/* harmony export */ "CBChickenOutAction": () => (/* reexport safe */ _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__.CBChickenOutAction),
|
|
7568
7623
|
/* harmony export */ "CBCreateAction": () => (/* reexport safe */ _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__.CBCreateAction),
|
|
7569
|
-
/* harmony export */ "
|
|
7624
|
+
/* harmony export */ "CBCreateRebondSubAction": () => (/* reexport safe */ _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__.CBCreateRebondSubAction),
|
|
7625
|
+
/* harmony export */ "CBRedeemAction": () => (/* reexport safe */ _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__.CBRedeemAction),
|
|
7626
|
+
/* harmony export */ "CBUpdateRebondSubAction": () => (/* reexport safe */ _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__.CBUpdateRebondSubAction),
|
|
7627
|
+
/* harmony export */ "FetchBondIdAction": () => (/* reexport safe */ _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__.FetchBondIdAction)
|
|
7570
7628
|
/* harmony export */ });
|
|
7571
|
-
/* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7572
|
-
/* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
7573
|
-
/* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7574
|
-
/* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
7629
|
+
/* harmony import */ var _CBCreateAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(190);
|
|
7630
|
+
/* harmony import */ var _CBChickenInAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(191);
|
|
7631
|
+
/* harmony import */ var _CBChickenOutAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(192);
|
|
7632
|
+
/* harmony import */ var _CBRedeemAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(193);
|
|
7633
|
+
/* harmony import */ var _CBUpdateRebondSubAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(194);
|
|
7634
|
+
/* harmony import */ var _FetchBondIdAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(195);
|
|
7635
|
+
/* harmony import */ var _CBCreateRebondSubAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(196);
|
|
7636
|
+
|
|
7637
|
+
|
|
7638
|
+
|
|
7575
7639
|
|
|
7576
7640
|
|
|
7577
7641
|
|
|
7578
7642
|
|
|
7579
7643
|
|
|
7580
7644
|
/***/ }),
|
|
7581
|
-
/*
|
|
7645
|
+
/* 190 */
|
|
7582
7646
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7583
7647
|
|
|
7584
7648
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7619,7 +7683,7 @@ class CBCreateAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7619
7683
|
}
|
|
7620
7684
|
|
|
7621
7685
|
/***/ }),
|
|
7622
|
-
/*
|
|
7686
|
+
/* 191 */
|
|
7623
7687
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7624
7688
|
|
|
7625
7689
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7649,7 +7713,7 @@ class CBChickenInAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7649
7713
|
}
|
|
7650
7714
|
|
|
7651
7715
|
/***/ }),
|
|
7652
|
-
/*
|
|
7716
|
+
/* 192 */
|
|
7653
7717
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7654
7718
|
|
|
7655
7719
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7680,7 +7744,7 @@ class CBChickenOutAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7680
7744
|
}
|
|
7681
7745
|
|
|
7682
7746
|
/***/ }),
|
|
7683
|
-
/*
|
|
7747
|
+
/* 193 */
|
|
7684
7748
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7685
7749
|
|
|
7686
7750
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7724,7 +7788,90 @@ class CBRedeemAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
7724
7788
|
}
|
|
7725
7789
|
|
|
7726
7790
|
/***/ }),
|
|
7727
|
-
/*
|
|
7791
|
+
/* 194 */
|
|
7792
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7793
|
+
|
|
7794
|
+
__webpack_require__.r(__webpack_exports__);
|
|
7795
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7796
|
+
/* harmony export */ "CBUpdateRebondSubAction": () => (/* binding */ CBUpdateRebondSubAction)
|
|
7797
|
+
/* harmony export */ });
|
|
7798
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
7799
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
7800
|
+
|
|
7801
|
+
|
|
7802
|
+
/**
|
|
7803
|
+
* CBUpdateRebondSubAction - Updates rebond strategy subscription
|
|
7804
|
+
*
|
|
7805
|
+
* @category ChickenBonds
|
|
7806
|
+
*/
|
|
7807
|
+
class CBUpdateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
7808
|
+
/**
|
|
7809
|
+
* @param subId {string} Id of the subscription to update
|
|
7810
|
+
* @param bondId {string} Id of the bond in the strategy
|
|
7811
|
+
*/
|
|
7812
|
+
constructor(subId, bondId) {
|
|
7813
|
+
super('CBUpdateRebondSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CBUpdateRebondSub'), ['uint256', 'uint256'], [subId, bondId]);
|
|
7814
|
+
}
|
|
7815
|
+
}
|
|
7816
|
+
|
|
7817
|
+
/***/ }),
|
|
7818
|
+
/* 195 */
|
|
7819
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7820
|
+
|
|
7821
|
+
__webpack_require__.r(__webpack_exports__);
|
|
7822
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7823
|
+
/* harmony export */ "FetchBondIdAction": () => (/* binding */ FetchBondIdAction)
|
|
7824
|
+
/* harmony export */ });
|
|
7825
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
7826
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
7827
|
+
|
|
7828
|
+
|
|
7829
|
+
/**
|
|
7830
|
+
* FetchBondIdAction - action that retrieves CB BondId from a hashed strategy
|
|
7831
|
+
*
|
|
7832
|
+
* @category ChickenBonds
|
|
7833
|
+
*/
|
|
7834
|
+
class FetchBondIdAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
7835
|
+
/**
|
|
7836
|
+
* @param paybackSourceId
|
|
7837
|
+
* @param sourceType
|
|
7838
|
+
* @param cbRebondBondId
|
|
7839
|
+
*/
|
|
7840
|
+
constructor(paybackSourceId, sourceType, cbRebondBondId) {
|
|
7841
|
+
super('FetchBondId', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('FetchBondId'), ['uint256', 'uint256', 'uint256'], [paybackSourceId, sourceType, cbRebondBondId]);
|
|
7842
|
+
this.mappableArgs = [this.args[0], this.args[1]];
|
|
7843
|
+
}
|
|
7844
|
+
}
|
|
7845
|
+
|
|
7846
|
+
/***/ }),
|
|
7847
|
+
/* 196 */
|
|
7848
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7849
|
+
|
|
7850
|
+
__webpack_require__.r(__webpack_exports__);
|
|
7851
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7852
|
+
/* harmony export */ "CBCreateRebondSubAction": () => (/* binding */ CBCreateRebondSubAction)
|
|
7853
|
+
/* harmony export */ });
|
|
7854
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
7855
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
7856
|
+
|
|
7857
|
+
|
|
7858
|
+
/**
|
|
7859
|
+
* CBCreateRebondSubAction - Subscribes to CB Rebond Strategy
|
|
7860
|
+
*
|
|
7861
|
+
* @category ChickenBonds
|
|
7862
|
+
*/
|
|
7863
|
+
class CBCreateRebondSubAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
7864
|
+
/**
|
|
7865
|
+
* @param bondId {string} Id of the bond in the strategy
|
|
7866
|
+
*/
|
|
7867
|
+
constructor(bondId) {
|
|
7868
|
+
super('CBCreateRebondSub', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CBCreateRebondSub'), ['uint256'], [bondId]);
|
|
7869
|
+
this.mappableArgs = [this.args[0]];
|
|
7870
|
+
}
|
|
7871
|
+
}
|
|
7872
|
+
|
|
7873
|
+
/***/ }),
|
|
7874
|
+
/* 197 */
|
|
7728
7875
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7729
7876
|
|
|
7730
7877
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7737,13 +7884,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7737
7884
|
/* harmony export */ "CompoundV3TransferAction": () => (/* reexport safe */ _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__.CompoundV3TransferAction),
|
|
7738
7885
|
/* harmony export */ "CompoundV3WithdrawAction": () => (/* reexport safe */ _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__.CompoundV3WithdrawAction)
|
|
7739
7886
|
/* harmony export */ });
|
|
7740
|
-
/* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
7741
|
-
/* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
7742
|
-
/* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
7743
|
-
/* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
7744
|
-
/* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
7745
|
-
/* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
7746
|
-
/* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
7887
|
+
/* harmony import */ var _CompoundV3SupplyAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(198);
|
|
7888
|
+
/* harmony import */ var _CompoundV3BorrowAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(199);
|
|
7889
|
+
/* harmony import */ var _CompoundV3PaybackAction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(200);
|
|
7890
|
+
/* harmony import */ var _CompoundV3WithdrawAction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(201);
|
|
7891
|
+
/* harmony import */ var _CompoundV3ClaimAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(202);
|
|
7892
|
+
/* harmony import */ var _CompoundV3AllowAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(203);
|
|
7893
|
+
/* harmony import */ var _CompoundV3TransferAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(204);
|
|
7747
7894
|
|
|
7748
7895
|
|
|
7749
7896
|
|
|
@@ -7753,7 +7900,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7753
7900
|
|
|
7754
7901
|
|
|
7755
7902
|
/***/ }),
|
|
7756
|
-
/*
|
|
7903
|
+
/* 198 */
|
|
7757
7904
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7758
7905
|
|
|
7759
7906
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7803,7 +7950,7 @@ class CompoundV3SupplyAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Action
|
|
|
7803
7950
|
}
|
|
7804
7951
|
|
|
7805
7952
|
/***/ }),
|
|
7806
|
-
/*
|
|
7953
|
+
/* 199 */
|
|
7807
7954
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7808
7955
|
|
|
7809
7956
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7836,7 +7983,7 @@ class CompoundV3BorrowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
7836
7983
|
}
|
|
7837
7984
|
|
|
7838
7985
|
/***/ }),
|
|
7839
|
-
/*
|
|
7986
|
+
/* 200 */
|
|
7840
7987
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7841
7988
|
|
|
7842
7989
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7891,7 +8038,7 @@ class CompoundV3PaybackAction extends _Action__WEBPACK_IMPORTED_MODULE_1__.Actio
|
|
|
7891
8038
|
}
|
|
7892
8039
|
|
|
7893
8040
|
/***/ }),
|
|
7894
|
-
/*
|
|
8041
|
+
/* 201 */
|
|
7895
8042
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7896
8043
|
|
|
7897
8044
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7926,7 +8073,7 @@ class CompoundV3WithdrawAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
7926
8073
|
}
|
|
7927
8074
|
|
|
7928
8075
|
/***/ }),
|
|
7929
|
-
/*
|
|
8076
|
+
/* 202 */
|
|
7930
8077
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7931
8078
|
|
|
7932
8079
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7960,7 +8107,7 @@ class CompoundV3ClaimAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
7960
8107
|
}
|
|
7961
8108
|
|
|
7962
8109
|
/***/ }),
|
|
7963
|
-
/*
|
|
8110
|
+
/* 203 */
|
|
7964
8111
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7965
8112
|
|
|
7966
8113
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7992,7 +8139,7 @@ class CompoundV3AllowAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
7992
8139
|
}
|
|
7993
8140
|
|
|
7994
8141
|
/***/ }),
|
|
7995
|
-
/*
|
|
8142
|
+
/* 204 */
|
|
7996
8143
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
7997
8144
|
|
|
7998
8145
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8028,12 +8175,13 @@ class CompoundV3TransferAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
8028
8175
|
}
|
|
8029
8176
|
|
|
8030
8177
|
/***/ }),
|
|
8031
|
-
/*
|
|
8178
|
+
/* 205 */
|
|
8032
8179
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8033
8180
|
|
|
8034
8181
|
__webpack_require__.r(__webpack_exports__);
|
|
8035
8182
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8036
8183
|
/* harmony export */ "AaveV3RatioTrigger": () => (/* reexport safe */ _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__.AaveV3RatioTrigger),
|
|
8184
|
+
/* harmony export */ "CBRebondTrigger": () => (/* reexport safe */ _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__.CBRebondTrigger),
|
|
8037
8185
|
/* harmony export */ "ChainLinkPriceTrigger": () => (/* reexport safe */ _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__.ChainLinkPriceTrigger),
|
|
8038
8186
|
/* harmony export */ "CompV3RatioTrigger": () => (/* reexport safe */ _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__.CompV3RatioTrigger),
|
|
8039
8187
|
/* harmony export */ "CompoundRatioTrigger": () => (/* reexport safe */ _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__.CompoundRatioTrigger),
|
|
@@ -8045,17 +8193,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8045
8193
|
/* harmony export */ "TrailingStopTrigger": () => (/* reexport safe */ _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__.TrailingStopTrigger),
|
|
8046
8194
|
/* harmony export */ "UniV3CurrentTickTrigger": () => (/* reexport safe */ _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__.UniV3CurrentTickTrigger)
|
|
8047
8195
|
/* harmony export */ });
|
|
8048
|
-
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8049
|
-
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8050
|
-
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
8051
|
-
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
8052
|
-
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
8053
|
-
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
8054
|
-
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
8055
|
-
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
8056
|
-
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
8057
|
-
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
8058
|
-
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
8196
|
+
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(206);
|
|
8197
|
+
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(207);
|
|
8198
|
+
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(208);
|
|
8199
|
+
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(209);
|
|
8200
|
+
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(210);
|
|
8201
|
+
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(211);
|
|
8202
|
+
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(212);
|
|
8203
|
+
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(213);
|
|
8204
|
+
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(214);
|
|
8205
|
+
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(215);
|
|
8206
|
+
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(216);
|
|
8207
|
+
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(217);
|
|
8208
|
+
|
|
8059
8209
|
|
|
8060
8210
|
|
|
8061
8211
|
|
|
@@ -8069,7 +8219,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8069
8219
|
|
|
8070
8220
|
|
|
8071
8221
|
/***/ }),
|
|
8072
|
-
/*
|
|
8222
|
+
/* 206 */
|
|
8073
8223
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8074
8224
|
|
|
8075
8225
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8092,7 +8242,7 @@ class MakerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8092
8242
|
}
|
|
8093
8243
|
|
|
8094
8244
|
/***/ }),
|
|
8095
|
-
/*
|
|
8245
|
+
/* 207 */
|
|
8096
8246
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8097
8247
|
|
|
8098
8248
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8115,7 +8265,7 @@ class ChainLinkPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
8115
8265
|
}
|
|
8116
8266
|
|
|
8117
8267
|
/***/ }),
|
|
8118
|
-
/*
|
|
8268
|
+
/* 208 */
|
|
8119
8269
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8120
8270
|
|
|
8121
8271
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8138,7 +8288,7 @@ class UniV3CurrentTickTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
8138
8288
|
}
|
|
8139
8289
|
|
|
8140
8290
|
/***/ }),
|
|
8141
|
-
/*
|
|
8291
|
+
/* 209 */
|
|
8142
8292
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8143
8293
|
|
|
8144
8294
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8161,7 +8311,7 @@ class TimestampTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8161
8311
|
}
|
|
8162
8312
|
|
|
8163
8313
|
/***/ }),
|
|
8164
|
-
/*
|
|
8314
|
+
/* 210 */
|
|
8165
8315
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8166
8316
|
|
|
8167
8317
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8184,7 +8334,7 @@ class GasPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8184
8334
|
}
|
|
8185
8335
|
|
|
8186
8336
|
/***/ }),
|
|
8187
|
-
/*
|
|
8337
|
+
/* 211 */
|
|
8188
8338
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8189
8339
|
|
|
8190
8340
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8207,7 +8357,7 @@ class CompoundRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8207
8357
|
}
|
|
8208
8358
|
|
|
8209
8359
|
/***/ }),
|
|
8210
|
-
/*
|
|
8360
|
+
/* 212 */
|
|
8211
8361
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8212
8362
|
|
|
8213
8363
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8230,7 +8380,7 @@ class ReflexerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8230
8380
|
}
|
|
8231
8381
|
|
|
8232
8382
|
/***/ }),
|
|
8233
|
-
/*
|
|
8383
|
+
/* 213 */
|
|
8234
8384
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8235
8385
|
|
|
8236
8386
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8253,7 +8403,7 @@ class LiquityRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8253
8403
|
}
|
|
8254
8404
|
|
|
8255
8405
|
/***/ }),
|
|
8256
|
-
/*
|
|
8406
|
+
/* 214 */
|
|
8257
8407
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8258
8408
|
|
|
8259
8409
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8276,7 +8426,7 @@ class AaveV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8276
8426
|
}
|
|
8277
8427
|
|
|
8278
8428
|
/***/ }),
|
|
8279
|
-
/*
|
|
8429
|
+
/* 215 */
|
|
8280
8430
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8281
8431
|
|
|
8282
8432
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8299,7 +8449,7 @@ class CompV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8299
8449
|
}
|
|
8300
8450
|
|
|
8301
8451
|
/***/ }),
|
|
8302
|
-
/*
|
|
8452
|
+
/* 216 */
|
|
8303
8453
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8304
8454
|
|
|
8305
8455
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8322,7 +8472,30 @@ class TrailingStopTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
8322
8472
|
}
|
|
8323
8473
|
|
|
8324
8474
|
/***/ }),
|
|
8325
|
-
/*
|
|
8475
|
+
/* 217 */
|
|
8476
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8477
|
+
|
|
8478
|
+
__webpack_require__.r(__webpack_exports__);
|
|
8479
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8480
|
+
/* harmony export */ "CBRebondTrigger": () => (/* binding */ CBRebondTrigger)
|
|
8481
|
+
/* harmony export */ });
|
|
8482
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
8483
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
8484
|
+
|
|
8485
|
+
|
|
8486
|
+
/**
|
|
8487
|
+
*
|
|
8488
|
+
*
|
|
8489
|
+
* @category Triggers
|
|
8490
|
+
*/
|
|
8491
|
+
class CBRebondTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
8492
|
+
constructor(bondID) {
|
|
8493
|
+
super('CBRebondTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('CBRebondTrigger'), ['uint256'], [bondID]);
|
|
8494
|
+
}
|
|
8495
|
+
}
|
|
8496
|
+
|
|
8497
|
+
/***/ }),
|
|
8498
|
+
/* 218 */
|
|
8326
8499
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8327
8500
|
|
|
8328
8501
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8333,11 +8506,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8333
8506
|
/* harmony export */ "uniswapV3LP": () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
|
|
8334
8507
|
/* harmony export */ "zeroExExchange": () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
|
|
8335
8508
|
/* harmony export */ });
|
|
8336
|
-
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8337
|
-
/* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8338
|
-
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
8339
|
-
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
8340
|
-
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
8509
|
+
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(219);
|
|
8510
|
+
/* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(97);
|
|
8511
|
+
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(221);
|
|
8512
|
+
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(185);
|
|
8513
|
+
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(167);
|
|
8341
8514
|
|
|
8342
8515
|
|
|
8343
8516
|
|
|
@@ -8346,7 +8519,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8346
8519
|
|
|
8347
8520
|
|
|
8348
8521
|
/***/ }),
|
|
8349
|
-
/*
|
|
8522
|
+
/* 219 */
|
|
8350
8523
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8351
8524
|
|
|
8352
8525
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -8357,7 +8530,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8357
8530
|
/* harmony export */ });
|
|
8358
8531
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
|
|
8359
8532
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
8360
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
8533
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(220);
|
|
8361
8534
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
|
|
8362
8535
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
|
|
8363
8536
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -8560,20 +8733,20 @@ var createSellAction = /*#__PURE__*/function () {
|
|
|
8560
8733
|
}();
|
|
8561
8734
|
|
|
8562
8735
|
/***/ }),
|
|
8563
|
-
/*
|
|
8736
|
+
/* 220 */
|
|
8564
8737
|
/***/ ((module) => {
|
|
8565
8738
|
|
|
8566
|
-
module.exports =
|
|
8739
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__220__;
|
|
8567
8740
|
|
|
8568
8741
|
/***/ }),
|
|
8569
|
-
/*
|
|
8742
|
+
/* 221 */
|
|
8570
8743
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
8571
8744
|
|
|
8572
8745
|
__webpack_require__.r(__webpack_exports__);
|
|
8573
8746
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8574
8747
|
/* harmony export */ "getAssetAddrByTokenId": () => (/* binding */ getAssetAddrByTokenId)
|
|
8575
8748
|
/* harmony export */ });
|
|
8576
|
-
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8749
|
+
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(222);
|
|
8577
8750
|
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); } }
|
|
8578
8751
|
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); }); }; }
|
|
8579
8752
|
/**
|
|
@@ -8598,7 +8771,7 @@ var getAssetAddrByTokenId = /*#__PURE__*/function () {
|
|
|
8598
8771
|
}();
|
|
8599
8772
|
|
|
8600
8773
|
/***/ }),
|
|
8601
|
-
/*
|
|
8774
|
+
/* 222 */
|
|
8602
8775
|
/***/ ((module) => {
|
|
8603
8776
|
|
|
8604
8777
|
module.exports = JSON.parse('[{"constant":false,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"positions","outputs":[{"name":"nonce","type":"uint96"},{"name":"operator","type":"address"},{"name":"token0","type":"address"},{"name":"token1","type":"address"},{"name":"fee","type":"uint24"},{"name":"tickLower","type":"int24"},{"name":"tickUpper","type":"int24"},{"name":"liquidity","type":"uint128"},{"name":"feeGrowthInside0LastX128","type":"uint256"},{"name":"feeGrowthInside1LastX128","type":"uint256"},{"name":"tokensOwed0","type":"uint128"},{"name":"tokensOwed1","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"}]');
|
|
@@ -8702,8 +8875,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8702
8875
|
/* harmony import */ var _Strategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(29);
|
|
8703
8876
|
/* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);
|
|
8704
8877
|
/* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(35);
|
|
8705
|
-
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
8706
|
-
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
8878
|
+
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(205);
|
|
8879
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(218);
|
|
8707
8880
|
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(4);
|
|
8708
8881
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(27);
|
|
8709
8882
|
/* Export types here */
|