@defisaver/sdk 1.2.36 → 1.3.1

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.
@@ -288,6 +288,7 @@ export declare const actionAddresses: {
288
288
  ApproveToken: string;
289
289
  SendTokenAndUnwrap: string;
290
290
  ToggleSub: string;
291
+ CreateSub: string;
291
292
  TokenBalance: string;
292
293
  TokenizedVaultAdapter: string;
293
294
  ChangeProxyOwner: string;
@@ -328,7 +329,6 @@ export declare const actionAddresses: {
328
329
  AutomationV2Unsub?: undefined;
329
330
  UpdateSub?: undefined;
330
331
  TransferNFT?: undefined;
331
- CreateSub?: undefined;
332
332
  SDaiWrap?: undefined;
333
333
  SDaiUnwrap?: undefined;
334
334
  StarknetClaim?: undefined;
@@ -326,6 +326,7 @@ export const actionAddresses = {
326
326
  ApproveToken: '0x842a81d2cfe26d401CD63Cc14e9DEf275c197C1a',
327
327
  SendTokenAndUnwrap: '0xd4f69250cb4d1f083Dd372FEace391A16ABbfBDc',
328
328
  ToggleSub: '0xfc19a12e35bb0b5e6a3d3017be9e9022a6486eee',
329
+ CreateSub: '0x2daED8030BFC87B3d27c02E2f044B9CF4841Ff3e',
329
330
  TokenBalance: '0xC6FF5b01f7c7b35b6e093fF70D2332B361C5Be5A',
330
331
  TokenizedVaultAdapter: '0xdf31669FEd440f5BfF658ca0bBF0D22B8abdeb73',
331
332
  ChangeProxyOwner: '0x62769258ea8b3a85cc6fb4332fc2760a122dbc9e',
@@ -299,6 +299,7 @@ declare const actionAddressesAllChains: {
299
299
  ApproveToken: string;
300
300
  SendTokenAndUnwrap: string;
301
301
  ToggleSub: string;
302
+ CreateSub: string;
302
303
  TokenBalance: string;
303
304
  TokenizedVaultAdapter: string;
304
305
  ChangeProxyOwner: string;
@@ -339,7 +340,6 @@ declare const actionAddressesAllChains: {
339
340
  AutomationV2Unsub?: undefined;
340
341
  UpdateSub?: undefined;
341
342
  TransferNFT?: undefined;
342
- CreateSub?: undefined;
343
343
  SDaiWrap?: undefined;
344
344
  SDaiUnwrap?: undefined;
345
345
  StarknetClaim?: undefined;
@@ -1401,6 +1401,7 @@ declare const actionAddresses: (chainId?: null) => {
1401
1401
  ApproveToken: string;
1402
1402
  SendTokenAndUnwrap: string;
1403
1403
  ToggleSub: string;
1404
+ CreateSub: string;
1404
1405
  TokenBalance: string;
1405
1406
  TokenizedVaultAdapter: string;
1406
1407
  ChangeProxyOwner: string;
@@ -1441,7 +1442,6 @@ declare const actionAddresses: (chainId?: null) => {
1441
1442
  AutomationV2Unsub?: undefined;
1442
1443
  UpdateSub?: undefined;
1443
1444
  TransferNFT?: undefined;
1444
- CreateSub?: undefined;
1445
1445
  SDaiWrap?: undefined;
1446
1446
  SDaiUnwrap?: undefined;
1447
1447
  StarknetClaim?: undefined;
@@ -2646,6 +2646,7 @@ declare const _default: {
2646
2646
  ApproveToken: string;
2647
2647
  SendTokenAndUnwrap: string;
2648
2648
  ToggleSub: string;
2649
+ CreateSub: string;
2649
2650
  TokenBalance: string;
2650
2651
  TokenizedVaultAdapter: string;
2651
2652
  ChangeProxyOwner: string;
@@ -2686,7 +2687,6 @@ declare const _default: {
2686
2687
  AutomationV2Unsub?: undefined;
2687
2688
  UpdateSub?: undefined;
2688
2689
  TransferNFT?: undefined;
2689
- CreateSub?: undefined;
2690
2690
  SDaiWrap?: undefined;
2691
2691
  SDaiUnwrap?: undefined;
2692
2692
  StarknetClaim?: undefined;
@@ -3748,6 +3748,7 @@ declare const _default: {
3748
3748
  ApproveToken: string;
3749
3749
  SendTokenAndUnwrap: string;
3750
3750
  ToggleSub: string;
3751
+ CreateSub: string;
3751
3752
  TokenBalance: string;
3752
3753
  TokenizedVaultAdapter: string;
3753
3754
  ChangeProxyOwner: string;
@@ -3788,7 +3789,6 @@ declare const _default: {
3788
3789
  AutomationV2Unsub?: undefined;
3789
3790
  UpdateSub?: undefined;
3790
3791
  TransferNFT?: undefined;
3791
- CreateSub?: undefined;
3792
3792
  SDaiWrap?: undefined;
3793
3793
  SDaiUnwrap?: undefined;
3794
3794
  StarknetClaim?: undefined;
@@ -0,0 +1,10 @@
1
+ import { Action } from '../Action';
2
+ import { EthAddress, uint256 } from '../types';
3
+ /**
4
+ *
5
+ *
6
+ * @category Triggers
7
+ */
8
+ export declare class CompV3PriceRangeTrigger extends Action {
9
+ constructor(market: EthAddress, collToken: EthAddress, lowerPrice: uint256, upperPrice: uint256);
10
+ }
@@ -0,0 +1,12 @@
1
+ import { Action } from '../Action';
2
+ import { getAddr } from '../addresses';
3
+ /**
4
+ *
5
+ *
6
+ * @category Triggers
7
+ */
8
+ export class CompV3PriceRangeTrigger extends Action {
9
+ constructor(market, collToken, lowerPrice, upperPrice) {
10
+ super('CompV3PriceRangeTrigger', getAddr('Empty'), [['address', 'address', 'uint256', 'uint256']], [[market, collToken, lowerPrice, upperPrice]]);
11
+ }
12
+ }
@@ -0,0 +1,10 @@
1
+ import { Action } from '../Action';
2
+ import { EthAddress, uint256, uint8 } from '../types';
3
+ /**
4
+ *
5
+ *
6
+ * @category Triggers
7
+ */
8
+ export declare class CompV3PriceTrigger extends Action {
9
+ constructor(market: EthAddress, collToken: EthAddress, user: EthAddress, price: uint256, state: uint8);
10
+ }
@@ -0,0 +1,12 @@
1
+ import { Action } from '../Action';
2
+ import { getAddr } from '../addresses';
3
+ /**
4
+ *
5
+ *
6
+ * @category Triggers
7
+ */
8
+ export class CompV3PriceTrigger extends Action {
9
+ constructor(market, collToken, user, price, state) {
10
+ super('CompV3PriceTrigger', getAddr('Empty'), [['address', 'address', 'address', 'uint256', 'uint8']], [[market, collToken, user, price, state]]);
11
+ }
12
+ }
@@ -25,3 +25,5 @@ export * from './LiquityV2RatioTrigger';
25
25
  export * from './ClosePriceTrigger';
26
26
  export * from './LiquityV2QuotePriceTrigger';
27
27
  export * from './FluidRatioTrigger';
28
+ export * from './CompV3PriceTrigger';
29
+ export * from './CompV3PriceRangeTrigger';
@@ -25,3 +25,5 @@ export * from './LiquityV2RatioTrigger';
25
25
  export * from './ClosePriceTrigger';
26
26
  export * from './LiquityV2QuotePriceTrigger';
27
27
  export * from './FluidRatioTrigger';
28
+ export * from './CompV3PriceTrigger';
29
+ export * from './CompV3PriceRangeTrigger';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/sdk",
3
- "version": "1.2.36",
3
+ "version": "1.3.1",
4
4
  "description": "",
5
5
  "main": "./umd/index.js",
6
6
  "module": "./esm/src/index.js",
@@ -23,7 +23,7 @@
23
23
  "license": "ISC",
24
24
  "dependencies": {
25
25
  "@defisaver/eslint-config": "^1.0.0",
26
- "@defisaver/tokens": "^1.6.15",
26
+ "@defisaver/tokens": "^1.6.19",
27
27
  "@ethersproject/address": "^5.0.10",
28
28
  "@ethersproject/solidity": "^5.0.9",
29
29
  "@types/web3-eth-abi": "^1.2.2",
@@ -13,4 +13,4 @@ export * from './AaveV3OpenRatioCheckAction';
13
13
  export * from './MorphoBlueTargetRatioCheckAction';
14
14
  export * from './LiquityV2RatioCheckAction';
15
15
  export * from './LiquityV2TargetRatioCheckAction';
16
- export * from './FluidRatioCheckAction';
16
+ export * from './FluidRatioCheckAction';
package/src/addresses.ts CHANGED
@@ -374,6 +374,7 @@ export const actionAddresses = {
374
374
  ApproveToken: '0x842a81d2cfe26d401CD63Cc14e9DEf275c197C1a',
375
375
  SendTokenAndUnwrap: '0xd4f69250cb4d1f083Dd372FEace391A16ABbfBDc',
376
376
  ToggleSub: '0xfc19a12e35bb0b5e6a3d3017be9e9022a6486eee',
377
+ CreateSub: '0x2daED8030BFC87B3d27c02E2f044B9CF4841Ff3e',
377
378
  TokenBalance: '0xC6FF5b01f7c7b35b6e093fF70D2332B361C5Be5A',
378
379
  TokenizedVaultAdapter: '0xdf31669FEd440f5BfF658ca0bBF0D22B8abdeb73',
379
380
  ChangeProxyOwner: '0x62769258ea8b3a85cc6fb4332fc2760a122dbc9e',
@@ -0,0 +1,19 @@
1
+ import { Action } from '../Action';
2
+ import { getAddr } from '../addresses';
3
+ import { EthAddress, uint256 } from '../types';
4
+
5
+ /**
6
+ *
7
+ *
8
+ * @category Triggers
9
+ */
10
+ export class CompV3PriceRangeTrigger extends Action {
11
+ constructor(market:EthAddress, collToken:EthAddress, lowerPrice:uint256, upperPrice:uint256) {
12
+ super(
13
+ 'CompV3PriceRangeTrigger',
14
+ getAddr('Empty'),
15
+ [['address', 'address', 'uint256', 'uint256']],
16
+ [[market, collToken, lowerPrice, upperPrice]],
17
+ );
18
+ }
19
+ }
@@ -0,0 +1,25 @@
1
+ import { Action } from '../Action';
2
+ import { getAddr } from '../addresses';
3
+ import { EthAddress, uint256, uint8 } from '../types';
4
+
5
+ /**
6
+ *
7
+ *
8
+ * @category Triggers
9
+ */
10
+ export class CompV3PriceTrigger extends Action {
11
+ constructor(
12
+ market:EthAddress,
13
+ collToken:EthAddress,
14
+ user: EthAddress,
15
+ price:uint256,
16
+ state:uint8,
17
+ ) {
18
+ super(
19
+ 'CompV3PriceTrigger',
20
+ getAddr('Empty'),
21
+ [['address', 'address', 'address', 'uint256', 'uint8']],
22
+ [[market, collToken, user, price, state]],
23
+ );
24
+ }
25
+ }
@@ -25,3 +25,5 @@ export * from './LiquityV2RatioTrigger';
25
25
  export * from './ClosePriceTrigger';
26
26
  export * from './LiquityV2QuotePriceTrigger';
27
27
  export * from './FluidRatioTrigger';
28
+ export * from './CompV3PriceTrigger';
29
+ export * from './CompV3PriceRangeTrigger';
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__, __WEBPACK_EXTERNAL_MODULE__432__) => {
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__434__) => {
11
11
  return /******/ (() => { // webpackBootstrap
12
12
  /******/ "use strict";
13
13
  /******/ var __webpack_modules__ = ([
@@ -1615,6 +1615,7 @@ var actionAddresses = {
1615
1615
  ApproveToken: '0x842a81d2cfe26d401CD63Cc14e9DEf275c197C1a',
1616
1616
  SendTokenAndUnwrap: '0xd4f69250cb4d1f083Dd372FEace391A16ABbfBDc',
1617
1617
  ToggleSub: '0xfc19a12e35bb0b5e6a3d3017be9e9022a6486eee',
1618
+ CreateSub: '0x2daED8030BFC87B3d27c02E2f044B9CF4841Ff3e',
1618
1619
  TokenBalance: '0xC6FF5b01f7c7b35b6e093fF70D2332B361C5Be5A',
1619
1620
  TokenizedVaultAdapter: '0xdf31669FEd440f5BfF658ca0bBF0D22B8abdeb73',
1620
1621
  ChangeProxyOwner: '0x62769258ea8b3a85cc6fb4332fc2760a122dbc9e',
@@ -16023,6 +16024,8 @@ __webpack_require__.r(__webpack_exports__);
16023
16024
  /* harmony export */ CBRebondTrigger: () => (/* reexport safe */ _CBRebondTrigger__WEBPACK_IMPORTED_MODULE_11__.CBRebondTrigger),
16024
16025
  /* harmony export */ ChainLinkPriceTrigger: () => (/* reexport safe */ _ChainLinkPriceTrigger__WEBPACK_IMPORTED_MODULE_1__.ChainLinkPriceTrigger),
16025
16026
  /* harmony export */ ClosePriceTrigger: () => (/* reexport safe */ _ClosePriceTrigger__WEBPACK_IMPORTED_MODULE_24__.ClosePriceTrigger),
16027
+ /* harmony export */ CompV3PriceRangeTrigger: () => (/* reexport safe */ _CompV3PriceRangeTrigger__WEBPACK_IMPORTED_MODULE_28__.CompV3PriceRangeTrigger),
16028
+ /* harmony export */ CompV3PriceTrigger: () => (/* reexport safe */ _CompV3PriceTrigger__WEBPACK_IMPORTED_MODULE_27__.CompV3PriceTrigger),
16026
16029
  /* harmony export */ CompV3RatioTrigger: () => (/* reexport safe */ _CompV3RatioTrigger__WEBPACK_IMPORTED_MODULE_9__.CompV3RatioTrigger),
16027
16030
  /* harmony export */ CompoundRatioTrigger: () => (/* reexport safe */ _CompoundRatioTrigger__WEBPACK_IMPORTED_MODULE_5__.CompoundRatioTrigger),
16028
16031
  /* harmony export */ CurveUsdCollRatioTrigger: () => (/* reexport safe */ _CurveUsdCollRatioTrigger__WEBPACK_IMPORTED_MODULE_18__.CurveUsdCollRatioTrigger),
@@ -16072,6 +16075,10 @@ __webpack_require__.r(__webpack_exports__);
16072
16075
  /* harmony import */ var _ClosePriceTrigger__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(427);
16073
16076
  /* harmony import */ var _LiquityV2QuotePriceTrigger__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(428);
16074
16077
  /* harmony import */ var _FluidRatioTrigger__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(429);
16078
+ /* harmony import */ var _CompV3PriceTrigger__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(430);
16079
+ /* harmony import */ var _CompV3PriceRangeTrigger__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(431);
16080
+
16081
+
16075
16082
 
16076
16083
 
16077
16084
 
@@ -16727,6 +16734,52 @@ class FluidRatioTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
16727
16734
  /* 430 */
16728
16735
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16729
16736
 
16737
+ __webpack_require__.r(__webpack_exports__);
16738
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16739
+ /* harmony export */ CompV3PriceTrigger: () => (/* binding */ CompV3PriceTrigger)
16740
+ /* harmony export */ });
16741
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
16742
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
16743
+
16744
+
16745
+ /**
16746
+ *
16747
+ *
16748
+ * @category Triggers
16749
+ */
16750
+ class CompV3PriceTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
16751
+ constructor(market, collToken, user, price, state) {
16752
+ super('CompV3PriceTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'address', 'uint256', 'uint8']], [[market, collToken, user, price, state]]);
16753
+ }
16754
+ }
16755
+
16756
+ /***/ }),
16757
+ /* 431 */
16758
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16759
+
16760
+ __webpack_require__.r(__webpack_exports__);
16761
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16762
+ /* harmony export */ CompV3PriceRangeTrigger: () => (/* binding */ CompV3PriceRangeTrigger)
16763
+ /* harmony export */ });
16764
+ /* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
16765
+ /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27);
16766
+
16767
+
16768
+ /**
16769
+ *
16770
+ *
16771
+ * @category Triggers
16772
+ */
16773
+ class CompV3PriceRangeTrigger extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action {
16774
+ constructor(market, collToken, lowerPrice, upperPrice) {
16775
+ super('CompV3PriceRangeTrigger', (0,_addresses__WEBPACK_IMPORTED_MODULE_1__.getAddr)('Empty'), [['address', 'address', 'uint256', 'uint256']], [[market, collToken, lowerPrice, upperPrice]]);
16776
+ }
16777
+ }
16778
+
16779
+ /***/ }),
16780
+ /* 432 */
16781
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16782
+
16730
16783
  __webpack_require__.r(__webpack_exports__);
16731
16784
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16732
16785
  /* harmony export */ basicUtils: () => (/* reexport module object */ _basic_utils__WEBPACK_IMPORTED_MODULE_7__),
@@ -16738,9 +16791,9 @@ __webpack_require__.r(__webpack_exports__);
16738
16791
  /* harmony export */ uniswapV3LP: () => (/* reexport module object */ _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__),
16739
16792
  /* harmony export */ zeroExExchange: () => (/* reexport module object */ _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__)
16740
16793
  /* harmony export */ });
16741
- /* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(431);
16794
+ /* harmony import */ var _zeroExExchange__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(433);
16742
16795
  /* harmony import */ var _uniswapLP__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(137);
16743
- /* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(433);
16796
+ /* harmony import */ var _uniswapV3LP__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(435);
16744
16797
  /* harmony import */ var _convex_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(242);
16745
16798
  /* harmony import */ var _mstableAssetPairs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(222);
16746
16799
  /* harmony import */ var _curve_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(208);
@@ -16757,7 +16810,7 @@ __webpack_require__.r(__webpack_exports__);
16757
16810
 
16758
16811
 
16759
16812
  /***/ }),
16760
- /* 431 */
16813
+ /* 433 */
16761
16814
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16762
16815
 
16763
16816
  __webpack_require__.r(__webpack_exports__);
@@ -16768,7 +16821,7 @@ __webpack_require__.r(__webpack_exports__);
16768
16821
  /* harmony export */ });
16769
16822
  /* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
16770
16823
  /* harmony import */ var decimal_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(decimal_js__WEBPACK_IMPORTED_MODULE_0__);
16771
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(432);
16824
+ /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(434);
16772
16825
  /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
16773
16826
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
16774
16827
  /* harmony import */ var _defisaver_tokens__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_defisaver_tokens__WEBPACK_IMPORTED_MODULE_2__);
@@ -16970,20 +17023,20 @@ var createSellAction = /*#__PURE__*/function () {
16970
17023
  }();
16971
17024
 
16972
17025
  /***/ }),
16973
- /* 432 */
17026
+ /* 434 */
16974
17027
  /***/ ((module) => {
16975
17028
 
16976
- module.exports = __WEBPACK_EXTERNAL_MODULE__432__;
17029
+ module.exports = __WEBPACK_EXTERNAL_MODULE__434__;
16977
17030
 
16978
17031
  /***/ }),
16979
- /* 433 */
17032
+ /* 435 */
16980
17033
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
16981
17034
 
16982
17035
  __webpack_require__.r(__webpack_exports__);
16983
17036
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
16984
17037
  /* harmony export */ getAssetAddrByTokenId: () => (/* binding */ getAssetAddrByTokenId)
16985
17038
  /* harmony export */ });
16986
- /* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(434);
17039
+ /* harmony import */ var _abis_UniV3PositionManager_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(436);
16987
17040
  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); } }
16988
17041
  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); }); }; }
16989
17042
  /**
@@ -17008,7 +17061,7 @@ var getAssetAddrByTokenId = /*#__PURE__*/function () {
17008
17061
  }();
17009
17062
 
17010
17063
  /***/ }),
17011
- /* 434 */
17064
+ /* 436 */
17012
17065
  /***/ ((module) => {
17013
17066
 
17014
17067
  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"}]');
@@ -17113,7 +17166,7 @@ __webpack_require__.r(__webpack_exports__);
17113
17166
  /* harmony import */ var _DfsWeb3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(30);
17114
17167
  /* harmony import */ var _actions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(35);
17115
17168
  /* harmony import */ var _triggers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(402);
17116
- /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(430);
17169
+ /* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(432);
17117
17170
  /* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(4);
17118
17171
  /* harmony import */ var _addresses__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(27);
17119
17172
  /* Export types here */