@defisaver/sdk 1.3.18-aave-v4-1-dev → 1.3.18-aave-v4-3-dev
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/actions/aavev4/AaveV4DelegateBorrowWithSigAction.d.ts +14 -0
- package/esm/src/actions/aavev4/AaveV4DelegateBorrowWithSigAction.js +19 -0
- package/esm/src/actions/aavev4/AaveV4DelegateSetUsingAsCollateralWithSigAction.d.ts +14 -0
- package/esm/src/actions/aavev4/AaveV4DelegateSetUsingAsCollateralWithSigAction.js +19 -0
- package/esm/src/actions/aavev4/AaveV4DelegateWithdrawWithSigAction.d.ts +14 -0
- package/esm/src/actions/aavev4/AaveV4DelegateWithdrawWithSigAction.js +19 -0
- package/esm/src/actions/aavev4/AaveV4SetUserManagersWithSigAction.d.ts +18 -0
- package/esm/src/actions/aavev4/AaveV4SetUserManagersWithSigAction.js +20 -0
- package/esm/src/actions/aavev4/index.d.ts +4 -0
- package/esm/src/actions/aavev4/index.js +4 -0
- package/esm/src/addresses.d.ts +24 -0
- package/esm/src/addresses.js +4 -0
- package/esm/src/index.d.ts +96 -0
- package/package.json +1 -1
- package/src/actions/aavev4/AaveV4DelegateBorrowWithSigAction.ts +29 -0
- package/src/actions/aavev4/AaveV4DelegateSetUsingAsCollateralWithSigAction.ts +29 -0
- package/src/actions/aavev4/AaveV4DelegateWithdrawWithSigAction.ts +29 -0
- package/src/actions/aavev4/AaveV4SetUserManagersWithSigAction.ts +34 -0
- package/src/actions/aavev4/index.ts +5 -1
- package/src/addresses.ts +4 -0
- package/umd/index.js +214 -86
package/umd/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
exports["defisaver-sdk"] = factory(require("web3-eth-abi"), require("web3-utils"), require("decimal.js"), require("@defisaver/tokens"), require("@ethersproject/solidity"), require("@ethersproject/address"), require("axios"));
|
|
8
8
|
else
|
|
9
9
|
root["defisaver-sdk"] = factory(root["web3-eth-abi"], root["web3-utils"], root["decimal.js"], root["@defisaver/tokens"], root["@ethersproject/solidity"], root["@ethersproject/address"], root["axios"]);
|
|
10
|
-
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__5__, __WEBPACK_EXTERNAL_MODULE__6__, __WEBPACK_EXTERNAL_MODULE__138__, __WEBPACK_EXTERNAL_MODULE__139__,
|
|
10
|
+
})(this, (__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__5__, __WEBPACK_EXTERNAL_MODULE__6__, __WEBPACK_EXTERNAL_MODULE__138__, __WEBPACK_EXTERNAL_MODULE__139__, __WEBPACK_EXTERNAL_MODULE__462__) => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ "use strict";
|
|
13
13
|
/******/ var __webpack_modules__ = ([
|
|
@@ -1637,7 +1637,11 @@ var actionAddresses = {
|
|
|
1637
1637
|
AaveV4Borrow: '0xC6C627c63389D8bB7913b55CD62fa451703AD1E1',
|
|
1638
1638
|
AaveV4Payback: '0x6e31Dd331571209043c8CF997f86b4291F648537',
|
|
1639
1639
|
AaveV4CollateralSwitch: '0x26C39FE05466dBA72A98d095d019dC5e067F6b28',
|
|
1640
|
-
AaveV4RefreshPremium: '0xb080DC160415Ffe1a4b80d75b0Be92EE38a0b426'
|
|
1640
|
+
AaveV4RefreshPremium: '0xb080DC160415Ffe1a4b80d75b0Be92EE38a0b426',
|
|
1641
|
+
AaveV4SetUserManagersWithSig: '0xD50B0295C69e3F77BE7d99e7BdeAc442F37b373b',
|
|
1642
|
+
AaveV4DelegateWithdrawWithSig: '0x88bBa5Ce5cE20286Cf866b9f310354FFB701A296',
|
|
1643
|
+
AaveV4DelegateBorrowWithSig: '0xBAc6dc3edB72Bc705Ab4e31F2a2151Fe06550D9B',
|
|
1644
|
+
AaveV4DelegateSetUsingAsCollateralWithSig: '0x780d8fB962AA44645494E0aAa52477a9A82f6C79'
|
|
1641
1645
|
},
|
|
1642
1646
|
[_config__WEBPACK_IMPORTED_MODULE_0__.NETWORKS.optimism.chainId]: {
|
|
1643
1647
|
DFSSell: '0x9f234af5c10c136863a20865ba00b26951ab8269',
|
|
@@ -16494,8 +16498,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16494
16498
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16495
16499
|
/* harmony export */ AaveV4BorrowAction: () => (/* reexport safe */ _AaveV4BorrowAction__WEBPACK_IMPORTED_MODULE_2__.AaveV4BorrowAction),
|
|
16496
16500
|
/* harmony export */ AaveV4CollateralSwitchAction: () => (/* reexport safe */ _AaveV4CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_4__.AaveV4CollateralSwitchAction),
|
|
16501
|
+
/* harmony export */ AaveV4DelegateBorrowWithSigAction: () => (/* reexport safe */ _AaveV4DelegateBorrowWithSigAction__WEBPACK_IMPORTED_MODULE_7__.AaveV4DelegateBorrowWithSigAction),
|
|
16502
|
+
/* harmony export */ AaveV4DelegateSetUsingAsCollateralWithSigAction: () => (/* reexport safe */ _AaveV4DelegateSetUsingAsCollateralWithSigAction__WEBPACK_IMPORTED_MODULE_10__.AaveV4DelegateSetUsingAsCollateralWithSigAction),
|
|
16503
|
+
/* harmony export */ AaveV4DelegateWithdrawWithSigAction: () => (/* reexport safe */ _AaveV4DelegateWithdrawWithSigAction__WEBPACK_IMPORTED_MODULE_8__.AaveV4DelegateWithdrawWithSigAction),
|
|
16497
16504
|
/* harmony export */ AaveV4PaybackAction: () => (/* reexport safe */ _AaveV4PaybackAction__WEBPACK_IMPORTED_MODULE_3__.AaveV4PaybackAction),
|
|
16498
16505
|
/* harmony export */ AaveV4RefreshPremiumAction: () => (/* reexport safe */ _AaveV4RefreshPremiumAction__WEBPACK_IMPORTED_MODULE_6__.AaveV4RefreshPremiumAction),
|
|
16506
|
+
/* harmony export */ AaveV4SetUserManagersWithSigAction: () => (/* reexport safe */ _AaveV4SetUserManagersWithSigAction__WEBPACK_IMPORTED_MODULE_9__.AaveV4SetUserManagersWithSigAction),
|
|
16499
16507
|
/* harmony export */ AaveV4StoreRatioAction: () => (/* reexport safe */ _AaveV4StoreRatioAction__WEBPACK_IMPORTED_MODULE_5__.AaveV4StoreRatioAction),
|
|
16500
16508
|
/* harmony export */ AaveV4SupplyAction: () => (/* reexport safe */ _AaveV4SupplyAction__WEBPACK_IMPORTED_MODULE_0__.AaveV4SupplyAction),
|
|
16501
16509
|
/* harmony export */ AaveV4WithdrawAction: () => (/* reexport safe */ _AaveV4WithdrawAction__WEBPACK_IMPORTED_MODULE_1__.AaveV4WithdrawAction)
|
|
@@ -16507,6 +16515,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16507
16515
|
/* harmony import */ var _AaveV4CollateralSwitchAction__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(416);
|
|
16508
16516
|
/* harmony import */ var _AaveV4StoreRatioAction__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(417);
|
|
16509
16517
|
/* harmony import */ var _AaveV4RefreshPremiumAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(418);
|
|
16518
|
+
/* harmony import */ var _AaveV4DelegateBorrowWithSigAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(419);
|
|
16519
|
+
/* harmony import */ var _AaveV4DelegateWithdrawWithSigAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(420);
|
|
16520
|
+
/* harmony import */ var _AaveV4SetUserManagersWithSigAction__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(421);
|
|
16521
|
+
/* harmony import */ var _AaveV4DelegateSetUsingAsCollateralWithSigAction__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(422);
|
|
16522
|
+
|
|
16523
|
+
|
|
16524
|
+
|
|
16525
|
+
|
|
16510
16526
|
|
|
16511
16527
|
|
|
16512
16528
|
|
|
@@ -16778,6 +16794,118 @@ class AaveV4RefreshPremiumAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
16778
16794
|
/* 419 */
|
|
16779
16795
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16780
16796
|
|
|
16797
|
+
__webpack_require__.r(__webpack_exports__);
|
|
16798
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16799
|
+
/* harmony export */ AaveV4DelegateBorrowWithSigAction: () => (/* binding */ AaveV4DelegateBorrowWithSigAction)
|
|
16800
|
+
/* harmony export */ });
|
|
16801
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
16802
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
16803
|
+
|
|
16804
|
+
|
|
16805
|
+
/**
|
|
16806
|
+
* AaveV4DelegateBorrowWithSigAction -Approves a spender to borrow from the specified reserve using an EIP712-typed intent.
|
|
16807
|
+
*
|
|
16808
|
+
* @category AaveV4
|
|
16809
|
+
*/
|
|
16810
|
+
class AaveV4DelegateBorrowWithSigAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
16811
|
+
/**
|
|
16812
|
+
* @param permit EIP712-typed intent.
|
|
16813
|
+
* @param signature The EIP712-compliant signature bytes.
|
|
16814
|
+
*/
|
|
16815
|
+
constructor(permit, signature) {
|
|
16816
|
+
super('AaveV4DelegateBorrowWithSig', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('AaveV4DelegateBorrowWithSig'), [['address', 'uint256', 'address', 'address', 'uint256', 'uint256', 'uint256'], 'bytes'], [permit, signature]);
|
|
16817
|
+
}
|
|
16818
|
+
}
|
|
16819
|
+
|
|
16820
|
+
/***/ }),
|
|
16821
|
+
/* 420 */
|
|
16822
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16823
|
+
|
|
16824
|
+
__webpack_require__.r(__webpack_exports__);
|
|
16825
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16826
|
+
/* harmony export */ AaveV4DelegateWithdrawWithSigAction: () => (/* binding */ AaveV4DelegateWithdrawWithSigAction)
|
|
16827
|
+
/* harmony export */ });
|
|
16828
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
16829
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
16830
|
+
|
|
16831
|
+
|
|
16832
|
+
/**
|
|
16833
|
+
* AaveV4DelegateWithdrawWithSigAction - Approves a spender to withdraw from the specified reserve using an EIP712-typed intent.
|
|
16834
|
+
*
|
|
16835
|
+
* @category AaveV4
|
|
16836
|
+
*/
|
|
16837
|
+
class AaveV4DelegateWithdrawWithSigAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
16838
|
+
/**
|
|
16839
|
+
* @param permit EIP712-typed intent.
|
|
16840
|
+
* @param signature The EIP712-compliant signature bytes.
|
|
16841
|
+
*/
|
|
16842
|
+
constructor(permit, signature) {
|
|
16843
|
+
super('AaveV4DelegateWithdrawWithSig', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('AaveV4DelegateWithdrawWithSig'), [['address', 'uint256', 'address', 'address', 'uint256', 'uint256', 'uint256'], 'bytes'], [permit, signature]);
|
|
16844
|
+
}
|
|
16845
|
+
}
|
|
16846
|
+
|
|
16847
|
+
/***/ }),
|
|
16848
|
+
/* 421 */
|
|
16849
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16850
|
+
|
|
16851
|
+
__webpack_require__.r(__webpack_exports__);
|
|
16852
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16853
|
+
/* harmony export */ AaveV4SetUserManagersWithSigAction: () => (/* binding */ AaveV4SetUserManagersWithSigAction)
|
|
16854
|
+
/* harmony export */ });
|
|
16855
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
16856
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
16857
|
+
|
|
16858
|
+
|
|
16859
|
+
/**
|
|
16860
|
+
* AaveV4SetUserManagersWithSigAction - Sets user position managers with EIP712-typed signature.
|
|
16861
|
+
*
|
|
16862
|
+
* @category AaveV4
|
|
16863
|
+
*/
|
|
16864
|
+
class AaveV4SetUserManagersWithSigAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
16865
|
+
/**
|
|
16866
|
+
* @param spoke Address of the spoke.
|
|
16867
|
+
* @param onBehalf The address of the user on whose behalf position manager can act.
|
|
16868
|
+
* @param nonce The nonce for the signature.
|
|
16869
|
+
* @param deadline The deadline for the signature.
|
|
16870
|
+
* @param signature The signature bytes.
|
|
16871
|
+
* @param updates The array of position manager updates.
|
|
16872
|
+
*/
|
|
16873
|
+
constructor(spoke, onBehalf, nonce, deadline, signature, updates) {
|
|
16874
|
+
super('AaveV4SetUserManagersWithSig', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('AaveV4SetUserManagersWithSig'), ['address', 'address', 'uint256', 'uint256', 'bytes', 'tuple(address,bool)[]'], [spoke, onBehalf, nonce, deadline, signature, updates]);
|
|
16875
|
+
}
|
|
16876
|
+
}
|
|
16877
|
+
|
|
16878
|
+
/***/ }),
|
|
16879
|
+
/* 422 */
|
|
16880
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16881
|
+
|
|
16882
|
+
__webpack_require__.r(__webpack_exports__);
|
|
16883
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16884
|
+
/* harmony export */ AaveV4DelegateSetUsingAsCollateralWithSigAction: () => (/* binding */ AaveV4DelegateSetUsingAsCollateralWithSigAction)
|
|
16885
|
+
/* harmony export */ });
|
|
16886
|
+
/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
16887
|
+
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
|
|
16888
|
+
|
|
16889
|
+
|
|
16890
|
+
/**
|
|
16891
|
+
* AaveV4DelegateSetUsingAsCollateralWithSigAction - Approves a delegatee to set using as collateral on behalf of delegator using an EIP712-typed intent.
|
|
16892
|
+
*
|
|
16893
|
+
* @category AaveV4
|
|
16894
|
+
*/
|
|
16895
|
+
class AaveV4DelegateSetUsingAsCollateralWithSigAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
16896
|
+
/**
|
|
16897
|
+
* @param permit EIP712-typed intent.
|
|
16898
|
+
* @param signature The EIP712-compliant signature bytes.
|
|
16899
|
+
*/
|
|
16900
|
+
constructor(permit, signature) {
|
|
16901
|
+
super('AaveV4DelegateSetUsingAsCollateralWithSig', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('AaveV4DelegateSetUsingAsCollateralWithSig'), [['address', 'address', 'address', 'bool', 'uint256', 'uint256'], 'bytes'], [permit, signature]);
|
|
16902
|
+
}
|
|
16903
|
+
}
|
|
16904
|
+
|
|
16905
|
+
/***/ }),
|
|
16906
|
+
/* 423 */
|
|
16907
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16908
|
+
|
|
16781
16909
|
__webpack_require__.r(__webpack_exports__);
|
|
16782
16910
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16783
16911
|
/* harmony export */ AaveV2RatioTrigger: () => (/* reexport safe */ _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__.AaveV2RatioTrigger),
|
|
@@ -16817,42 +16945,42 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16817
16945
|
/* harmony export */ TrailingStopTrigger: () => (/* reexport safe */ _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__.TrailingStopTrigger),
|
|
16818
16946
|
/* harmony export */ UniV3CurrentTickTrigger: () => (/* reexport safe */ _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__.UniV3CurrentTickTrigger)
|
|
16819
16947
|
/* harmony export */ });
|
|
16820
|
-
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
16821
|
-
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
16822
|
-
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
16823
|
-
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
16824
|
-
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
16825
|
-
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
16826
|
-
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
16827
|
-
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
16828
|
-
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(
|
|
16829
|
-
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(
|
|
16830
|
-
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(
|
|
16831
|
-
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(
|
|
16832
|
-
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(
|
|
16833
|
-
/* harmony import */ var _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(
|
|
16834
|
-
/* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(
|
|
16835
|
-
/* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(
|
|
16836
|
-
/* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(
|
|
16837
|
-
/* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(
|
|
16838
|
-
/* harmony import */ var _CurveUsdCollRatioTrigger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(
|
|
16839
|
-
/* harmony import */ var _CurveUsdHealthRatioTrigger__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(
|
|
16840
|
-
/* harmony import */ var _MorphoBlueRatioTrigger__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(
|
|
16841
|
-
/* harmony import */ var _OffchainPriceTrigger__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(
|
|
16842
|
-
/* harmony import */ var _MorphoBluePriceTrigger__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(
|
|
16843
|
-
/* harmony import */ var _LiquityV2RatioTrigger__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(
|
|
16844
|
-
/* harmony import */ var _ClosePriceTrigger__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(
|
|
16845
|
-
/* harmony import */ var _LiquityV2QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(
|
|
16846
|
-
/* harmony import */ var _FluidRatioTrigger__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(
|
|
16847
|
-
/* harmony import */ var _CompV3PriceTrigger__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(
|
|
16848
|
-
/* harmony import */ var _CompV3PriceRangeTrigger__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(
|
|
16849
|
-
/* harmony import */ var _LiquityV2AdjustRateDebtInFrontTrigger__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(
|
|
16850
|
-
/* harmony import */ var _AaveV3QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(
|
|
16851
|
-
/* harmony import */ var _SparkQuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(
|
|
16852
|
-
/* harmony import */ var _MorphoBluePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(
|
|
16853
|
-
/* harmony import */ var _AaveV4QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(
|
|
16854
|
-
/* harmony import */ var _AaveV4QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(
|
|
16855
|
-
/* harmony import */ var _AaveV4RatioTrigger__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(
|
|
16948
|
+
/* harmony import */ var _MakerRatioTrigger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(424);
|
|
16949
|
+
/* harmony import */ var _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(425);
|
|
16950
|
+
/* harmony import */ var _UniV3CurrentTickTrigger__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(426);
|
|
16951
|
+
/* harmony import */ var _TimestampTrigger__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(427);
|
|
16952
|
+
/* harmony import */ var _GasPriceTrigger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(428);
|
|
16953
|
+
/* harmony import */ var _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(429);
|
|
16954
|
+
/* harmony import */ var _ReflexerRatioTrigger__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(430);
|
|
16955
|
+
/* harmony import */ var _LiquityRatioTrigger__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(431);
|
|
16956
|
+
/* harmony import */ var _AaveV3RatioTrigger__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(432);
|
|
16957
|
+
/* harmony import */ var _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(433);
|
|
16958
|
+
/* harmony import */ var _TrailingStopTrigger__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(434);
|
|
16959
|
+
/* harmony import */ var _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(435);
|
|
16960
|
+
/* harmony import */ var _AaveV3QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(436);
|
|
16961
|
+
/* harmony import */ var _AaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(437);
|
|
16962
|
+
/* harmony import */ var _MorphoAaveV2RatioTrigger__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(438);
|
|
16963
|
+
/* harmony import */ var _SparkRatioTrigger__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(439);
|
|
16964
|
+
/* harmony import */ var _SparkQuotePriceTrigger__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(440);
|
|
16965
|
+
/* harmony import */ var _LiquityDebtInFrontWithLimitTrigger__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(441);
|
|
16966
|
+
/* harmony import */ var _CurveUsdCollRatioTrigger__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(442);
|
|
16967
|
+
/* harmony import */ var _CurveUsdHealthRatioTrigger__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(443);
|
|
16968
|
+
/* harmony import */ var _MorphoBlueRatioTrigger__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(444);
|
|
16969
|
+
/* harmony import */ var _OffchainPriceTrigger__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(445);
|
|
16970
|
+
/* harmony import */ var _MorphoBluePriceTrigger__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(446);
|
|
16971
|
+
/* harmony import */ var _LiquityV2RatioTrigger__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(447);
|
|
16972
|
+
/* harmony import */ var _ClosePriceTrigger__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(448);
|
|
16973
|
+
/* harmony import */ var _LiquityV2QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(449);
|
|
16974
|
+
/* harmony import */ var _FluidRatioTrigger__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(450);
|
|
16975
|
+
/* harmony import */ var _CompV3PriceTrigger__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(451);
|
|
16976
|
+
/* harmony import */ var _CompV3PriceRangeTrigger__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(452);
|
|
16977
|
+
/* harmony import */ var _LiquityV2AdjustRateDebtInFrontTrigger__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(453);
|
|
16978
|
+
/* harmony import */ var _AaveV3QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(454);
|
|
16979
|
+
/* harmony import */ var _SparkQuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(455);
|
|
16980
|
+
/* harmony import */ var _MorphoBluePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(456);
|
|
16981
|
+
/* harmony import */ var _AaveV4QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(457);
|
|
16982
|
+
/* harmony import */ var _AaveV4QuotePriceRangeTrigger__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(458);
|
|
16983
|
+
/* harmony import */ var _AaveV4RatioTrigger__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(459);
|
|
16856
16984
|
|
|
16857
16985
|
|
|
16858
16986
|
|
|
@@ -16891,7 +17019,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16891
17019
|
|
|
16892
17020
|
|
|
16893
17021
|
/***/ }),
|
|
16894
|
-
/*
|
|
17022
|
+
/* 424 */
|
|
16895
17023
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16896
17024
|
|
|
16897
17025
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -16914,7 +17042,7 @@ class MakerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
16914
17042
|
}
|
|
16915
17043
|
|
|
16916
17044
|
/***/ }),
|
|
16917
|
-
/*
|
|
17045
|
+
/* 425 */
|
|
16918
17046
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16919
17047
|
|
|
16920
17048
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -16937,7 +17065,7 @@ class ChainLinkPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
16937
17065
|
}
|
|
16938
17066
|
|
|
16939
17067
|
/***/ }),
|
|
16940
|
-
/*
|
|
17068
|
+
/* 426 */
|
|
16941
17069
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16942
17070
|
|
|
16943
17071
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -16960,7 +17088,7 @@ class UniV3CurrentTickTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
16960
17088
|
}
|
|
16961
17089
|
|
|
16962
17090
|
/***/ }),
|
|
16963
|
-
/*
|
|
17091
|
+
/* 427 */
|
|
16964
17092
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16965
17093
|
|
|
16966
17094
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -16983,7 +17111,7 @@ class TimestampTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
16983
17111
|
}
|
|
16984
17112
|
|
|
16985
17113
|
/***/ }),
|
|
16986
|
-
/*
|
|
17114
|
+
/* 428 */
|
|
16987
17115
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
16988
17116
|
|
|
16989
17117
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17006,7 +17134,7 @@ class GasPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17006
17134
|
}
|
|
17007
17135
|
|
|
17008
17136
|
/***/ }),
|
|
17009
|
-
/*
|
|
17137
|
+
/* 429 */
|
|
17010
17138
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17011
17139
|
|
|
17012
17140
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17029,7 +17157,7 @@ class CompoundRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17029
17157
|
}
|
|
17030
17158
|
|
|
17031
17159
|
/***/ }),
|
|
17032
|
-
/*
|
|
17160
|
+
/* 430 */
|
|
17033
17161
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17034
17162
|
|
|
17035
17163
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17052,7 +17180,7 @@ class ReflexerRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17052
17180
|
}
|
|
17053
17181
|
|
|
17054
17182
|
/***/ }),
|
|
17055
|
-
/*
|
|
17183
|
+
/* 431 */
|
|
17056
17184
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17057
17185
|
|
|
17058
17186
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17075,7 +17203,7 @@ class LiquityRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17075
17203
|
}
|
|
17076
17204
|
|
|
17077
17205
|
/***/ }),
|
|
17078
|
-
/*
|
|
17206
|
+
/* 432 */
|
|
17079
17207
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17080
17208
|
|
|
17081
17209
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17098,7 +17226,7 @@ class AaveV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17098
17226
|
}
|
|
17099
17227
|
|
|
17100
17228
|
/***/ }),
|
|
17101
|
-
/*
|
|
17229
|
+
/* 433 */
|
|
17102
17230
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17103
17231
|
|
|
17104
17232
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17121,7 +17249,7 @@ class CompV3RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17121
17249
|
}
|
|
17122
17250
|
|
|
17123
17251
|
/***/ }),
|
|
17124
|
-
/*
|
|
17252
|
+
/* 434 */
|
|
17125
17253
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17126
17254
|
|
|
17127
17255
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17144,7 +17272,7 @@ class TrailingStopTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17144
17272
|
}
|
|
17145
17273
|
|
|
17146
17274
|
/***/ }),
|
|
17147
|
-
/*
|
|
17275
|
+
/* 435 */
|
|
17148
17276
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17149
17277
|
|
|
17150
17278
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17167,7 +17295,7 @@ class CBRebondTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17167
17295
|
}
|
|
17168
17296
|
|
|
17169
17297
|
/***/ }),
|
|
17170
|
-
/*
|
|
17298
|
+
/* 436 */
|
|
17171
17299
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17172
17300
|
|
|
17173
17301
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17190,7 +17318,7 @@ class AaveV3QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
17190
17318
|
}
|
|
17191
17319
|
|
|
17192
17320
|
/***/ }),
|
|
17193
|
-
/*
|
|
17321
|
+
/* 437 */
|
|
17194
17322
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17195
17323
|
|
|
17196
17324
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17213,7 +17341,7 @@ class AaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17213
17341
|
}
|
|
17214
17342
|
|
|
17215
17343
|
/***/ }),
|
|
17216
|
-
/*
|
|
17344
|
+
/* 438 */
|
|
17217
17345
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17218
17346
|
|
|
17219
17347
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17236,7 +17364,7 @@ class MorphoAaveV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
17236
17364
|
}
|
|
17237
17365
|
|
|
17238
17366
|
/***/ }),
|
|
17239
|
-
/*
|
|
17367
|
+
/* 439 */
|
|
17240
17368
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17241
17369
|
|
|
17242
17370
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17259,7 +17387,7 @@ class SparkRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17259
17387
|
}
|
|
17260
17388
|
|
|
17261
17389
|
/***/ }),
|
|
17262
|
-
/*
|
|
17390
|
+
/* 440 */
|
|
17263
17391
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17264
17392
|
|
|
17265
17393
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17282,7 +17410,7 @@ class SparkQuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17282
17410
|
}
|
|
17283
17411
|
|
|
17284
17412
|
/***/ }),
|
|
17285
|
-
/*
|
|
17413
|
+
/* 441 */
|
|
17286
17414
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17287
17415
|
|
|
17288
17416
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17305,7 +17433,7 @@ class LiquityDebtInFrontWithLimitTrigger extends _Action__WEBPACK_IMPORTED_MODUL
|
|
|
17305
17433
|
}
|
|
17306
17434
|
|
|
17307
17435
|
/***/ }),
|
|
17308
|
-
/*
|
|
17436
|
+
/* 442 */
|
|
17309
17437
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17310
17438
|
|
|
17311
17439
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17328,7 +17456,7 @@ class CurveUsdCollRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Acti
|
|
|
17328
17456
|
}
|
|
17329
17457
|
|
|
17330
17458
|
/***/ }),
|
|
17331
|
-
/*
|
|
17459
|
+
/* 443 */
|
|
17332
17460
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17333
17461
|
|
|
17334
17462
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17351,7 +17479,7 @@ class CurveUsdHealthRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
17351
17479
|
}
|
|
17352
17480
|
|
|
17353
17481
|
/***/ }),
|
|
17354
|
-
/*
|
|
17482
|
+
/* 444 */
|
|
17355
17483
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17356
17484
|
|
|
17357
17485
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17374,7 +17502,7 @@ class MorphoBlueRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17374
17502
|
}
|
|
17375
17503
|
|
|
17376
17504
|
/***/ }),
|
|
17377
|
-
/*
|
|
17505
|
+
/* 445 */
|
|
17378
17506
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17379
17507
|
|
|
17380
17508
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17397,7 +17525,7 @@ class OffchainPriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17397
17525
|
}
|
|
17398
17526
|
|
|
17399
17527
|
/***/ }),
|
|
17400
|
-
/*
|
|
17528
|
+
/* 446 */
|
|
17401
17529
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17402
17530
|
|
|
17403
17531
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17426,7 +17554,7 @@ class MorphoBluePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17426
17554
|
}
|
|
17427
17555
|
|
|
17428
17556
|
/***/ }),
|
|
17429
|
-
/*
|
|
17557
|
+
/* 447 */
|
|
17430
17558
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17431
17559
|
|
|
17432
17560
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17447,7 +17575,7 @@ class LiquityV2RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action
|
|
|
17447
17575
|
}
|
|
17448
17576
|
|
|
17449
17577
|
/***/ }),
|
|
17450
|
-
/*
|
|
17578
|
+
/* 448 */
|
|
17451
17579
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17452
17580
|
|
|
17453
17581
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17470,7 +17598,7 @@ class ClosePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17470
17598
|
}
|
|
17471
17599
|
|
|
17472
17600
|
/***/ }),
|
|
17473
|
-
/*
|
|
17601
|
+
/* 449 */
|
|
17474
17602
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17475
17603
|
|
|
17476
17604
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17491,7 +17619,7 @@ class LiquityV2QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Ac
|
|
|
17491
17619
|
}
|
|
17492
17620
|
|
|
17493
17621
|
/***/ }),
|
|
17494
|
-
/*
|
|
17622
|
+
/* 450 */
|
|
17495
17623
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17496
17624
|
|
|
17497
17625
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17514,7 +17642,7 @@ class FluidRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17514
17642
|
}
|
|
17515
17643
|
|
|
17516
17644
|
/***/ }),
|
|
17517
|
-
/*
|
|
17645
|
+
/* 451 */
|
|
17518
17646
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17519
17647
|
|
|
17520
17648
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17537,7 +17665,7 @@ class CompV3PriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17537
17665
|
}
|
|
17538
17666
|
|
|
17539
17667
|
/***/ }),
|
|
17540
|
-
/*
|
|
17668
|
+
/* 452 */
|
|
17541
17669
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17542
17670
|
|
|
17543
17671
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17560,7 +17688,7 @@ class CompV3PriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
17560
17688
|
}
|
|
17561
17689
|
|
|
17562
17690
|
/***/ }),
|
|
17563
|
-
/*
|
|
17691
|
+
/* 453 */
|
|
17564
17692
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17565
17693
|
|
|
17566
17694
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17581,7 +17709,7 @@ class LiquityV2AdjustRateDebtInFrontTrigger extends _Action__WEBPACK_IMPORTED_MO
|
|
|
17581
17709
|
}
|
|
17582
17710
|
|
|
17583
17711
|
/***/ }),
|
|
17584
|
-
/*
|
|
17712
|
+
/* 454 */
|
|
17585
17713
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17586
17714
|
|
|
17587
17715
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17607,7 +17735,7 @@ class AaveV3QuotePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
17607
17735
|
}
|
|
17608
17736
|
|
|
17609
17737
|
/***/ }),
|
|
17610
|
-
/*
|
|
17738
|
+
/* 455 */
|
|
17611
17739
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17612
17740
|
|
|
17613
17741
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17633,7 +17761,7 @@ class SparkQuotePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
17633
17761
|
}
|
|
17634
17762
|
|
|
17635
17763
|
/***/ }),
|
|
17636
|
-
/*
|
|
17764
|
+
/* 456 */
|
|
17637
17765
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17638
17766
|
|
|
17639
17767
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17662,7 +17790,7 @@ class MorphoBluePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.A
|
|
|
17662
17790
|
}
|
|
17663
17791
|
|
|
17664
17792
|
/***/ }),
|
|
17665
|
-
/*
|
|
17793
|
+
/* 457 */
|
|
17666
17794
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17667
17795
|
|
|
17668
17796
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17685,7 +17813,7 @@ class AaveV4QuotePriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Actio
|
|
|
17685
17813
|
}
|
|
17686
17814
|
|
|
17687
17815
|
/***/ }),
|
|
17688
|
-
/*
|
|
17816
|
+
/* 458 */
|
|
17689
17817
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17690
17818
|
|
|
17691
17819
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17708,7 +17836,7 @@ class AaveV4QuotePriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
17708
17836
|
}
|
|
17709
17837
|
|
|
17710
17838
|
/***/ }),
|
|
17711
|
-
/*
|
|
17839
|
+
/* 459 */
|
|
17712
17840
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17713
17841
|
|
|
17714
17842
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17731,7 +17859,7 @@ class AaveV4RatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
|
|
|
17731
17859
|
}
|
|
17732
17860
|
|
|
17733
17861
|
/***/ }),
|
|
17734
|
-
/*
|
|
17862
|
+
/* 460 */
|
|
17735
17863
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17736
17864
|
|
|
17737
17865
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17745,9 +17873,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17745
17873
|
/* harmony export */ uniswapV3LP: () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
|
|
17746
17874
|
/* harmony export */ zeroExExchange: () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
|
|
17747
17875
|
/* harmony export */ });
|
|
17748
|
-
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
17876
|
+
/* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(461);
|
|
17749
17877
|
/* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(137);
|
|
17750
|
-
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
17878
|
+
/* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(463);
|
|
17751
17879
|
/* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(244);
|
|
17752
17880
|
/* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(224);
|
|
17753
17881
|
/* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(210);
|
|
@@ -17764,7 +17892,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17764
17892
|
|
|
17765
17893
|
|
|
17766
17894
|
/***/ }),
|
|
17767
|
-
/*
|
|
17895
|
+
/* 461 */
|
|
17768
17896
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17769
17897
|
|
|
17770
17898
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -17775,7 +17903,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17775
17903
|
/* harmony export */ });
|
|
17776
17904
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
|
|
17777
17905
|
/* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
17778
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
17906
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(462);
|
|
17779
17907
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
|
|
17780
17908
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
|
|
17781
17909
|
/* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -17977,20 +18105,20 @@ var createSellAction = /*#__PURE__*/function () {
|
|
|
17977
18105
|
}();
|
|
17978
18106
|
|
|
17979
18107
|
/***/ }),
|
|
17980
|
-
/*
|
|
18108
|
+
/* 462 */
|
|
17981
18109
|
/***/ ((module) => {
|
|
17982
18110
|
|
|
17983
|
-
module.exports =
|
|
18111
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__462__;
|
|
17984
18112
|
|
|
17985
18113
|
/***/ }),
|
|
17986
|
-
/*
|
|
18114
|
+
/* 463 */
|
|
17987
18115
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
17988
18116
|
|
|
17989
18117
|
__webpack_require__.r(__webpack_exports__);
|
|
17990
18118
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17991
18119
|
/* harmony export */ getAssetAddrByTokenId: () => (/* binding */ getAssetAddrByTokenId)
|
|
17992
18120
|
/* harmony export */ });
|
|
17993
|
-
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
18121
|
+
/* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(464);
|
|
17994
18122
|
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); } }
|
|
17995
18123
|
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); }); }; }
|
|
17996
18124
|
/**
|
|
@@ -18015,7 +18143,7 @@ var getAssetAddrByTokenId = /*#__PURE__*/function () {
|
|
|
18015
18143
|
}();
|
|
18016
18144
|
|
|
18017
18145
|
/***/ }),
|
|
18018
|
-
/*
|
|
18146
|
+
/* 464 */
|
|
18019
18147
|
/***/ ((module) => {
|
|
18020
18148
|
|
|
18021
18149
|
module.exports = /*#__PURE__*/JSON.parse('[{"constant":false,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"positions","outputs":[{"name":"nonce","type":"uint96"},{"name":"operator","type":"address"},{"name":"token0","type":"address"},{"name":"token1","type":"address"},{"name":"fee","type":"uint24"},{"name":"tickLower","type":"int24"},{"name":"tickUpper","type":"int24"},{"name":"liquidity","type":"uint128"},{"name":"feeGrowthInside0LastX128","type":"uint256"},{"name":"feeGrowthInside1LastX128","type":"uint256"},{"name":"tokensOwed0","type":"uint128"},{"name":"tokensOwed1","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"}]');
|
|
@@ -18119,8 +18247,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18119
18247
|
/* harmony import */ var _Strategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(29);
|
|
18120
18248
|
/* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);
|
|
18121
18249
|
/* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(35);
|
|
18122
|
-
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
18123
|
-
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(
|
|
18250
|
+
/* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(423);
|
|
18251
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(460);
|
|
18124
18252
|
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(4);
|
|
18125
18253
|
/* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(27);
|
|
18126
18254
|
/* Export types here */
|