@pancakeswap/infinity-sdk 1.0.0

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.
Files changed (207) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +12 -0
  3. package/dist/abis/BinMigratorAbi.d.ts +652 -0
  4. package/dist/abis/BinMigratorAbi.d.ts.map +1 -0
  5. package/dist/abis/BinPoolManagerAbi.d.ts +1184 -0
  6. package/dist/abis/BinPoolManagerAbi.d.ts.map +1 -0
  7. package/dist/abis/BinPositionManagerAbi.d.ts +667 -0
  8. package/dist/abis/BinPositionManagerAbi.d.ts.map +1 -0
  9. package/dist/abis/BinQuoterAbi.d.ts +644 -0
  10. package/dist/abis/BinQuoterAbi.d.ts.map +1 -0
  11. package/dist/abis/CLMigratorAbi.d.ts +650 -0
  12. package/dist/abis/CLMigratorAbi.d.ts.map +1 -0
  13. package/dist/abis/CLPoolManagerAbi.d.ts +1075 -0
  14. package/dist/abis/CLPoolManagerAbi.d.ts.map +1 -0
  15. package/dist/abis/CLPositionManagerAbi.d.ts +1130 -0
  16. package/dist/abis/CLPositionManagerAbi.d.ts.map +1 -0
  17. package/dist/abis/CLQuoterAbi.d.ts +644 -0
  18. package/dist/abis/CLQuoterAbi.d.ts.map +1 -0
  19. package/dist/abis/FarmingOffChainAbi.d.ts +982 -0
  20. package/dist/abis/FarmingOffChainAbi.d.ts.map +1 -0
  21. package/dist/abis/FarmingOffChainCLHelperAbi.d.ts +40 -0
  22. package/dist/abis/FarmingOffChainCLHelperAbi.d.ts.map +1 -0
  23. package/dist/abis/MixedQuoterAbi.d.ts +347 -0
  24. package/dist/abis/MixedQuoterAbi.d.ts.map +1 -0
  25. package/dist/abis/Permit2ForwardAbi.d.ts +124 -0
  26. package/dist/abis/Permit2ForwardAbi.d.ts.map +1 -0
  27. package/dist/abis/ProtocolFeeControllerAbi.d.ts +276 -0
  28. package/dist/abis/ProtocolFeeControllerAbi.d.ts.map +1 -0
  29. package/dist/abis/VaultAbi.d.ts +669 -0
  30. package/dist/abis/VaultAbi.d.ts.map +1 -0
  31. package/dist/abis/index.d.ts +15 -0
  32. package/dist/abis/index.d.ts.map +1 -0
  33. package/dist/constants/abiStructFragments.d.ts +15 -0
  34. package/dist/constants/abiStructFragments.d.ts.map +1 -0
  35. package/dist/constants/actions.d.ts +43 -0
  36. package/dist/constants/actions.d.ts.map +1 -0
  37. package/dist/constants/actionsAbiParameters.d.ts +244 -0
  38. package/dist/constants/actionsAbiParameters.d.ts.map +1 -0
  39. package/dist/constants/addresses.d.ts +22 -0
  40. package/dist/constants/addresses.d.ts.map +1 -0
  41. package/dist/constants/binPool.d.ts +11 -0
  42. package/dist/constants/binPool.d.ts.map +1 -0
  43. package/dist/constants/fee.d.ts +21 -0
  44. package/dist/constants/fee.d.ts.map +1 -0
  45. package/dist/constants/hooksList/bsc.d.ts +8 -0
  46. package/dist/constants/hooksList/bsc.d.ts.map +1 -0
  47. package/dist/constants/hooksList/bscTestnet.d.ts +21 -0
  48. package/dist/constants/hooksList/bscTestnet.d.ts.map +1 -0
  49. package/dist/constants/hooksList/dynamicFeeHook.d.ts +15 -0
  50. package/dist/constants/hooksList/dynamicFeeHook.d.ts.map +1 -0
  51. package/dist/constants/hooksList/index.d.ts +14 -0
  52. package/dist/constants/hooksList/index.d.ts.map +1 -0
  53. package/dist/constants/index.d.ts +11 -0
  54. package/dist/constants/index.d.ts.map +1 -0
  55. package/dist/constants/internalConstants.d.ts +11 -0
  56. package/dist/constants/internalConstants.d.ts.map +1 -0
  57. package/dist/entities/index.d.ts +2 -0
  58. package/dist/entities/index.d.ts.map +1 -0
  59. package/dist/entities/pool.d.ts +104 -0
  60. package/dist/entities/pool.d.ts.map +1 -0
  61. package/dist/functions/bin/addBinLiquidityMulticall.d.ts +22 -0
  62. package/dist/functions/bin/addBinLiquidityMulticall.d.ts.map +1 -0
  63. package/dist/functions/bin/calldatas/addLiquidity.d.ts +18 -0
  64. package/dist/functions/bin/calldatas/addLiquidity.d.ts.map +1 -0
  65. package/dist/functions/bin/calldatas/index.d.ts +7 -0
  66. package/dist/functions/bin/calldatas/index.d.ts.map +1 -0
  67. package/dist/functions/bin/calldatas/initializePool.d.ts +3 -0
  68. package/dist/functions/bin/calldatas/initializePool.d.ts.map +1 -0
  69. package/dist/functions/bin/calldatas/liquidity.d.ts +1 -0
  70. package/dist/functions/bin/calldatas/liquidity.d.ts.map +1 -0
  71. package/dist/functions/bin/calldatas/mint.d.ts +15 -0
  72. package/dist/functions/bin/calldatas/mint.d.ts.map +1 -0
  73. package/dist/functions/bin/calldatas/modifyLiquidities.d.ts +3 -0
  74. package/dist/functions/bin/calldatas/modifyLiquidities.d.ts.map +1 -0
  75. package/dist/functions/bin/calldatas/removeLiquidity.d.ts +15 -0
  76. package/dist/functions/bin/calldatas/removeLiquidity.d.ts.map +1 -0
  77. package/dist/functions/bin/calldatas/swap.d.ts +4 -0
  78. package/dist/functions/bin/calldatas/swap.d.ts.map +1 -0
  79. package/dist/functions/bin/createBinPool.d.ts +62 -0
  80. package/dist/functions/bin/createBinPool.d.ts.map +1 -0
  81. package/dist/functions/bin/decodeBinAmount.d.ts +16 -0
  82. package/dist/functions/bin/decodeBinAmount.d.ts.map +1 -0
  83. package/dist/functions/bin/getAmounts.d.ts +26 -0
  84. package/dist/functions/bin/getAmounts.d.ts.map +1 -0
  85. package/dist/functions/bin/getBinLiquidityConfigs.d.ts +7 -0
  86. package/dist/functions/bin/getBinLiquidityConfigs.d.ts.map +1 -0
  87. package/dist/functions/bin/getBinPoolTokenPrice.d.ts +4 -0
  88. package/dist/functions/bin/getBinPoolTokenPrice.d.ts.map +1 -0
  89. package/dist/functions/bin/getExternalFeeAmt.d.ts +6 -0
  90. package/dist/functions/bin/getExternalFeeAmt.d.ts.map +1 -0
  91. package/dist/functions/bin/getFeeAmount.d.ts +8 -0
  92. package/dist/functions/bin/getFeeAmount.d.ts.map +1 -0
  93. package/dist/functions/bin/getFeeAmountFrom.d.ts +9 -0
  94. package/dist/functions/bin/getFeeAmountFrom.d.ts.map +1 -0
  95. package/dist/functions/bin/getIdFromPrice.d.ts +11 -0
  96. package/dist/functions/bin/getIdFromPrice.d.ts.map +1 -0
  97. package/dist/functions/bin/getIdSlippage.d.ts +2 -0
  98. package/dist/functions/bin/getIdSlippage.d.ts.map +1 -0
  99. package/dist/functions/bin/getLiquidityShape.d.ts +32 -0
  100. package/dist/functions/bin/getLiquidityShape.d.ts.map +1 -0
  101. package/dist/functions/bin/getNextNonEmptyBin.d.ts +15 -0
  102. package/dist/functions/bin/getNextNonEmptyBin.d.ts.map +1 -0
  103. package/dist/functions/bin/getPriceFromId.d.ts +13 -0
  104. package/dist/functions/bin/getPriceFromId.d.ts.map +1 -0
  105. package/dist/functions/bin/index.d.ts +17 -0
  106. package/dist/functions/bin/index.d.ts.map +1 -0
  107. package/dist/functions/bin/liquidityConfigs.d.ts +15 -0
  108. package/dist/functions/bin/liquidityConfigs.d.ts.map +1 -0
  109. package/dist/functions/bin/parseReserveOfBin.d.ts +11 -0
  110. package/dist/functions/bin/parseReserveOfBin.d.ts.map +1 -0
  111. package/dist/functions/bin/priceConvert.d.ts +3 -0
  112. package/dist/functions/bin/priceConvert.d.ts.map +1 -0
  113. package/dist/functions/bin/swap.d.ts +20 -0
  114. package/dist/functions/bin/swap.d.ts.map +1 -0
  115. package/dist/functions/clamm/addCLLiquidityMulticall.d.ts +18 -0
  116. package/dist/functions/clamm/addCLLiquidityMulticall.d.ts.map +1 -0
  117. package/dist/functions/clamm/calldatas/burn.d.ts +4 -0
  118. package/dist/functions/clamm/calldatas/burn.d.ts.map +1 -0
  119. package/dist/functions/clamm/calldatas/claim.d.ts +9 -0
  120. package/dist/functions/clamm/calldatas/claim.d.ts.map +1 -0
  121. package/dist/functions/clamm/calldatas/decreaseLiquidity.d.ts +14 -0
  122. package/dist/functions/clamm/calldatas/decreaseLiquidity.d.ts.map +1 -0
  123. package/dist/functions/clamm/calldatas/donate.d.ts +4 -0
  124. package/dist/functions/clamm/calldatas/donate.d.ts.map +1 -0
  125. package/dist/functions/clamm/calldatas/increaseLiquidity.d.ts +4 -0
  126. package/dist/functions/clamm/calldatas/increaseLiquidity.d.ts.map +1 -0
  127. package/dist/functions/clamm/calldatas/index.d.ts +12 -0
  128. package/dist/functions/clamm/calldatas/index.d.ts.map +1 -0
  129. package/dist/functions/clamm/calldatas/initialize.d.ts +3 -0
  130. package/dist/functions/clamm/calldatas/initialize.d.ts.map +1 -0
  131. package/dist/functions/clamm/calldatas/initializePool.d.ts +3 -0
  132. package/dist/functions/clamm/calldatas/initializePool.d.ts.map +1 -0
  133. package/dist/functions/clamm/calldatas/mint.d.ts +4 -0
  134. package/dist/functions/clamm/calldatas/mint.d.ts.map +1 -0
  135. package/dist/functions/clamm/calldatas/modifyLiquidities.d.ts +3 -0
  136. package/dist/functions/clamm/calldatas/modifyLiquidities.d.ts.map +1 -0
  137. package/dist/functions/clamm/calldatas/modifyLiquidity.d.ts +10 -0
  138. package/dist/functions/clamm/calldatas/modifyLiquidity.d.ts.map +1 -0
  139. package/dist/functions/clamm/calldatas/swap.d.ts +9 -0
  140. package/dist/functions/clamm/calldatas/swap.d.ts.map +1 -0
  141. package/dist/functions/clamm/getCLPool.d.ts +6 -0
  142. package/dist/functions/clamm/getCLPool.d.ts.map +1 -0
  143. package/dist/functions/clamm/index.d.ts +5 -0
  144. package/dist/functions/clamm/index.d.ts.map +1 -0
  145. package/dist/functions/getPool.d.ts +19 -0
  146. package/dist/functions/getPool.d.ts.map +1 -0
  147. package/dist/functions/hooks/index.d.ts +2 -0
  148. package/dist/functions/hooks/index.d.ts.map +1 -0
  149. package/dist/functions/hooks/isDynamicFeeHook.d.ts +5 -0
  150. package/dist/functions/hooks/isDynamicFeeHook.d.ts.map +1 -0
  151. package/dist/functions/index.d.ts +5 -0
  152. package/dist/functions/index.d.ts.map +1 -0
  153. package/dist/functions/tick.d.ts +3 -0
  154. package/dist/functions/tick.d.ts.map +1 -0
  155. package/dist/index.d.ts +7 -0
  156. package/dist/index.d.ts.map +1 -0
  157. package/dist/index.js +7578 -0
  158. package/dist/index.mjs +7430 -0
  159. package/dist/types.d.ts +183 -0
  160. package/dist/types.d.ts.map +1 -0
  161. package/dist/utils/ActionsPlanner.d.ts +32 -0
  162. package/dist/utils/ActionsPlanner.d.ts.map +1 -0
  163. package/dist/utils/calculateSwapFee.d.ts +11 -0
  164. package/dist/utils/calculateSwapFee.d.ts.map +1 -0
  165. package/dist/utils/convertBinIdsToRelative.d.ts +12 -0
  166. package/dist/utils/convertBinIdsToRelative.d.ts.map +1 -0
  167. package/dist/utils/decodeHooksRegistration.d.ts +4 -0
  168. package/dist/utils/decodeHooksRegistration.d.ts.map +1 -0
  169. package/dist/utils/decodePoolKey.d.ts +3 -0
  170. package/dist/utils/decodePoolKey.d.ts.map +1 -0
  171. package/dist/utils/decodePoolParameters.d.ts +4 -0
  172. package/dist/utils/decodePoolParameters.d.ts.map +1 -0
  173. package/dist/utils/encodeHooksRegistration.d.ts +4 -0
  174. package/dist/utils/encodeHooksRegistration.d.ts.map +1 -0
  175. package/dist/utils/encodeMulticall.d.ts +3 -0
  176. package/dist/utils/encodeMulticall.d.ts.map +1 -0
  177. package/dist/utils/encodePermit2.d.ts +6 -0
  178. package/dist/utils/encodePermit2.d.ts.map +1 -0
  179. package/dist/utils/encodePoolKey.d.ts +9 -0
  180. package/dist/utils/encodePoolKey.d.ts.map +1 -0
  181. package/dist/utils/encodePoolParameters.d.ts +5 -0
  182. package/dist/utils/encodePoolParameters.d.ts.map +1 -0
  183. package/dist/utils/getAddLiquidityParameters.d.ts +66 -0
  184. package/dist/utils/getAddLiquidityParameters.d.ts.map +1 -0
  185. package/dist/utils/getBinIds.d.ts +9 -0
  186. package/dist/utils/getBinIds.d.ts.map +1 -0
  187. package/dist/utils/getIsInitializedByPoolKey.d.ts +4 -0
  188. package/dist/utils/getIsInitializedByPoolKey.d.ts.map +1 -0
  189. package/dist/utils/getPoolId.d.ts +10 -0
  190. package/dist/utils/getPoolId.d.ts.map +1 -0
  191. package/dist/utils/index.d.ts +17 -0
  192. package/dist/utils/index.d.ts.map +1 -0
  193. package/dist/utils/isInfinitySupported.d.ts +6 -0
  194. package/dist/utils/isInfinitySupported.d.ts.map +1 -0
  195. package/dist/utils/math/TreeMath.d.ts +12 -0
  196. package/dist/utils/math/TreeMath.d.ts.map +1 -0
  197. package/dist/utils/math/index.d.ts +4 -0
  198. package/dist/utils/math/index.d.ts.map +1 -0
  199. package/dist/utils/math/mulShift.d.ts +3 -0
  200. package/dist/utils/math/mulShift.d.ts.map +1 -0
  201. package/dist/utils/math/shiftDiv.d.ts +3 -0
  202. package/dist/utils/math/shiftDiv.d.ts.map +1 -0
  203. package/dist/utils/parseProtocolFee.d.ts +4 -0
  204. package/dist/utils/parseProtocolFee.d.ts.map +1 -0
  205. package/dist/utils/poolIdToPoolKey.d.ts +17 -0
  206. package/dist/utils/poolIdToPoolKey.d.ts.map +1 -0
  207. package/package.json +58 -0
@@ -0,0 +1,1130 @@
1
+ export declare const CLPositionManagerAbi: readonly [{
2
+ readonly type: "constructor";
3
+ readonly inputs: readonly [{
4
+ readonly name: "_vault";
5
+ readonly type: "address";
6
+ readonly internalType: "contract IVault";
7
+ }, {
8
+ readonly name: "_clPoolManager";
9
+ readonly type: "address";
10
+ readonly internalType: "contract ICLPoolManager";
11
+ }, {
12
+ readonly name: "_permit2";
13
+ readonly type: "address";
14
+ readonly internalType: "contract IAllowanceTransfer";
15
+ }, {
16
+ readonly name: "_unsubscribeGasLimit";
17
+ readonly type: "uint256";
18
+ readonly internalType: "uint256";
19
+ }, {
20
+ readonly name: "_tokenDescriptor";
21
+ readonly type: "address";
22
+ readonly internalType: "contract ICLPositionDescriptor";
23
+ }, {
24
+ readonly name: "_weth9";
25
+ readonly type: "address";
26
+ readonly internalType: "contract IWETH9";
27
+ }];
28
+ readonly stateMutability: "nonpayable";
29
+ }, {
30
+ readonly type: "receive";
31
+ readonly stateMutability: "payable";
32
+ }, {
33
+ readonly type: "function";
34
+ readonly name: "DOMAIN_SEPARATOR";
35
+ readonly inputs: readonly [];
36
+ readonly outputs: readonly [{
37
+ readonly name: "";
38
+ readonly type: "bytes32";
39
+ readonly internalType: "bytes32";
40
+ }];
41
+ readonly stateMutability: "view";
42
+ }, {
43
+ readonly type: "function";
44
+ readonly name: "WETH9";
45
+ readonly inputs: readonly [];
46
+ readonly outputs: readonly [{
47
+ readonly name: "";
48
+ readonly type: "address";
49
+ readonly internalType: "contract IWETH9";
50
+ }];
51
+ readonly stateMutability: "view";
52
+ }, {
53
+ readonly type: "function";
54
+ readonly name: "approve";
55
+ readonly inputs: readonly [{
56
+ readonly name: "spender";
57
+ readonly type: "address";
58
+ readonly internalType: "address";
59
+ }, {
60
+ readonly name: "id";
61
+ readonly type: "uint256";
62
+ readonly internalType: "uint256";
63
+ }];
64
+ readonly outputs: readonly [];
65
+ readonly stateMutability: "nonpayable";
66
+ }, {
67
+ readonly type: "function";
68
+ readonly name: "balanceOf";
69
+ readonly inputs: readonly [{
70
+ readonly name: "owner";
71
+ readonly type: "address";
72
+ readonly internalType: "address";
73
+ }];
74
+ readonly outputs: readonly [{
75
+ readonly name: "";
76
+ readonly type: "uint256";
77
+ readonly internalType: "uint256";
78
+ }];
79
+ readonly stateMutability: "view";
80
+ }, {
81
+ readonly type: "function";
82
+ readonly name: "clPoolManager";
83
+ readonly inputs: readonly [];
84
+ readonly outputs: readonly [{
85
+ readonly name: "";
86
+ readonly type: "address";
87
+ readonly internalType: "contract ICLPoolManager";
88
+ }];
89
+ readonly stateMutability: "view";
90
+ }, {
91
+ readonly type: "function";
92
+ readonly name: "getApproved";
93
+ readonly inputs: readonly [{
94
+ readonly name: "";
95
+ readonly type: "uint256";
96
+ readonly internalType: "uint256";
97
+ }];
98
+ readonly outputs: readonly [{
99
+ readonly name: "";
100
+ readonly type: "address";
101
+ readonly internalType: "address";
102
+ }];
103
+ readonly stateMutability: "view";
104
+ }, {
105
+ readonly type: "function";
106
+ readonly name: "getPoolAndPositionInfo";
107
+ readonly inputs: readonly [{
108
+ readonly name: "tokenId";
109
+ readonly type: "uint256";
110
+ readonly internalType: "uint256";
111
+ }];
112
+ readonly outputs: readonly [{
113
+ readonly name: "poolKey";
114
+ readonly type: "tuple";
115
+ readonly internalType: "struct PoolKey";
116
+ readonly components: readonly [{
117
+ readonly name: "currency0";
118
+ readonly type: "address";
119
+ readonly internalType: "Currency";
120
+ }, {
121
+ readonly name: "currency1";
122
+ readonly type: "address";
123
+ readonly internalType: "Currency";
124
+ }, {
125
+ readonly name: "hooks";
126
+ readonly type: "address";
127
+ readonly internalType: "contract IHooks";
128
+ }, {
129
+ readonly name: "poolManager";
130
+ readonly type: "address";
131
+ readonly internalType: "contract IPoolManager";
132
+ }, {
133
+ readonly name: "fee";
134
+ readonly type: "uint24";
135
+ readonly internalType: "uint24";
136
+ }, {
137
+ readonly name: "parameters";
138
+ readonly type: "bytes32";
139
+ readonly internalType: "bytes32";
140
+ }];
141
+ }, {
142
+ readonly name: "info";
143
+ readonly type: "uint256";
144
+ readonly internalType: "CLPositionInfo";
145
+ }];
146
+ readonly stateMutability: "view";
147
+ }, {
148
+ readonly type: "function";
149
+ readonly name: "getPositionLiquidity";
150
+ readonly inputs: readonly [{
151
+ readonly name: "tokenId";
152
+ readonly type: "uint256";
153
+ readonly internalType: "uint256";
154
+ }];
155
+ readonly outputs: readonly [{
156
+ readonly name: "liquidity";
157
+ readonly type: "uint128";
158
+ readonly internalType: "uint128";
159
+ }];
160
+ readonly stateMutability: "view";
161
+ }, {
162
+ readonly type: "function";
163
+ readonly name: "initializePool";
164
+ readonly inputs: readonly [{
165
+ readonly name: "key";
166
+ readonly type: "tuple";
167
+ readonly internalType: "struct PoolKey";
168
+ readonly components: readonly [{
169
+ readonly name: "currency0";
170
+ readonly type: "address";
171
+ readonly internalType: "Currency";
172
+ }, {
173
+ readonly name: "currency1";
174
+ readonly type: "address";
175
+ readonly internalType: "Currency";
176
+ }, {
177
+ readonly name: "hooks";
178
+ readonly type: "address";
179
+ readonly internalType: "contract IHooks";
180
+ }, {
181
+ readonly name: "poolManager";
182
+ readonly type: "address";
183
+ readonly internalType: "contract IPoolManager";
184
+ }, {
185
+ readonly name: "fee";
186
+ readonly type: "uint24";
187
+ readonly internalType: "uint24";
188
+ }, {
189
+ readonly name: "parameters";
190
+ readonly type: "bytes32";
191
+ readonly internalType: "bytes32";
192
+ }];
193
+ }, {
194
+ readonly name: "sqrtPriceX96";
195
+ readonly type: "uint160";
196
+ readonly internalType: "uint160";
197
+ }];
198
+ readonly outputs: readonly [{
199
+ readonly name: "";
200
+ readonly type: "int24";
201
+ readonly internalType: "int24";
202
+ }];
203
+ readonly stateMutability: "payable";
204
+ }, {
205
+ readonly type: "function";
206
+ readonly name: "isApprovedForAll";
207
+ readonly inputs: readonly [{
208
+ readonly name: "";
209
+ readonly type: "address";
210
+ readonly internalType: "address";
211
+ }, {
212
+ readonly name: "";
213
+ readonly type: "address";
214
+ readonly internalType: "address";
215
+ }];
216
+ readonly outputs: readonly [{
217
+ readonly name: "";
218
+ readonly type: "bool";
219
+ readonly internalType: "bool";
220
+ }];
221
+ readonly stateMutability: "view";
222
+ }, {
223
+ readonly type: "function";
224
+ readonly name: "lockAcquired";
225
+ readonly inputs: readonly [{
226
+ readonly name: "data";
227
+ readonly type: "bytes";
228
+ readonly internalType: "bytes";
229
+ }];
230
+ readonly outputs: readonly [{
231
+ readonly name: "";
232
+ readonly type: "bytes";
233
+ readonly internalType: "bytes";
234
+ }];
235
+ readonly stateMutability: "nonpayable";
236
+ }, {
237
+ readonly type: "function";
238
+ readonly name: "modifyLiquidities";
239
+ readonly inputs: readonly [{
240
+ readonly name: "payload";
241
+ readonly type: "bytes";
242
+ readonly internalType: "bytes";
243
+ }, {
244
+ readonly name: "deadline";
245
+ readonly type: "uint256";
246
+ readonly internalType: "uint256";
247
+ }];
248
+ readonly outputs: readonly [];
249
+ readonly stateMutability: "payable";
250
+ }, {
251
+ readonly type: "function";
252
+ readonly name: "modifyLiquiditiesWithoutLock";
253
+ readonly inputs: readonly [{
254
+ readonly name: "actions";
255
+ readonly type: "bytes";
256
+ readonly internalType: "bytes";
257
+ }, {
258
+ readonly name: "params";
259
+ readonly type: "bytes[]";
260
+ readonly internalType: "bytes[]";
261
+ }];
262
+ readonly outputs: readonly [];
263
+ readonly stateMutability: "payable";
264
+ }, {
265
+ readonly type: "function";
266
+ readonly name: "msgSender";
267
+ readonly inputs: readonly [];
268
+ readonly outputs: readonly [{
269
+ readonly name: "";
270
+ readonly type: "address";
271
+ readonly internalType: "address";
272
+ }];
273
+ readonly stateMutability: "view";
274
+ }, {
275
+ readonly type: "function";
276
+ readonly name: "multicall";
277
+ readonly inputs: readonly [{
278
+ readonly name: "data";
279
+ readonly type: "bytes[]";
280
+ readonly internalType: "bytes[]";
281
+ }];
282
+ readonly outputs: readonly [{
283
+ readonly name: "results";
284
+ readonly type: "bytes[]";
285
+ readonly internalType: "bytes[]";
286
+ }];
287
+ readonly stateMutability: "payable";
288
+ }, {
289
+ readonly type: "function";
290
+ readonly name: "name";
291
+ readonly inputs: readonly [];
292
+ readonly outputs: readonly [{
293
+ readonly name: "";
294
+ readonly type: "string";
295
+ readonly internalType: "string";
296
+ }];
297
+ readonly stateMutability: "view";
298
+ }, {
299
+ readonly type: "function";
300
+ readonly name: "nextTokenId";
301
+ readonly inputs: readonly [];
302
+ readonly outputs: readonly [{
303
+ readonly name: "";
304
+ readonly type: "uint256";
305
+ readonly internalType: "uint256";
306
+ }];
307
+ readonly stateMutability: "view";
308
+ }, {
309
+ readonly type: "function";
310
+ readonly name: "nonces";
311
+ readonly inputs: readonly [{
312
+ readonly name: "owner";
313
+ readonly type: "address";
314
+ readonly internalType: "address";
315
+ }, {
316
+ readonly name: "word";
317
+ readonly type: "uint256";
318
+ readonly internalType: "uint256";
319
+ }];
320
+ readonly outputs: readonly [{
321
+ readonly name: "bitmap";
322
+ readonly type: "uint256";
323
+ readonly internalType: "uint256";
324
+ }];
325
+ readonly stateMutability: "view";
326
+ }, {
327
+ readonly type: "function";
328
+ readonly name: "ownerOf";
329
+ readonly inputs: readonly [{
330
+ readonly name: "id";
331
+ readonly type: "uint256";
332
+ readonly internalType: "uint256";
333
+ }];
334
+ readonly outputs: readonly [{
335
+ readonly name: "owner";
336
+ readonly type: "address";
337
+ readonly internalType: "address";
338
+ }];
339
+ readonly stateMutability: "view";
340
+ }, {
341
+ readonly type: "function";
342
+ readonly name: "permit";
343
+ readonly inputs: readonly [{
344
+ readonly name: "spender";
345
+ readonly type: "address";
346
+ readonly internalType: "address";
347
+ }, {
348
+ readonly name: "tokenId";
349
+ readonly type: "uint256";
350
+ readonly internalType: "uint256";
351
+ }, {
352
+ readonly name: "deadline";
353
+ readonly type: "uint256";
354
+ readonly internalType: "uint256";
355
+ }, {
356
+ readonly name: "nonce";
357
+ readonly type: "uint256";
358
+ readonly internalType: "uint256";
359
+ }, {
360
+ readonly name: "signature";
361
+ readonly type: "bytes";
362
+ readonly internalType: "bytes";
363
+ }];
364
+ readonly outputs: readonly [];
365
+ readonly stateMutability: "payable";
366
+ }, {
367
+ readonly type: "function";
368
+ readonly name: "permit";
369
+ readonly inputs: readonly [{
370
+ readonly name: "owner";
371
+ readonly type: "address";
372
+ readonly internalType: "address";
373
+ }, {
374
+ readonly name: "permitSingle";
375
+ readonly type: "tuple";
376
+ readonly internalType: "struct IAllowanceTransfer.PermitSingle";
377
+ readonly components: readonly [{
378
+ readonly name: "details";
379
+ readonly type: "tuple";
380
+ readonly internalType: "struct IAllowanceTransfer.PermitDetails";
381
+ readonly components: readonly [{
382
+ readonly name: "token";
383
+ readonly type: "address";
384
+ readonly internalType: "address";
385
+ }, {
386
+ readonly name: "amount";
387
+ readonly type: "uint160";
388
+ readonly internalType: "uint160";
389
+ }, {
390
+ readonly name: "expiration";
391
+ readonly type: "uint48";
392
+ readonly internalType: "uint48";
393
+ }, {
394
+ readonly name: "nonce";
395
+ readonly type: "uint48";
396
+ readonly internalType: "uint48";
397
+ }];
398
+ }, {
399
+ readonly name: "spender";
400
+ readonly type: "address";
401
+ readonly internalType: "address";
402
+ }, {
403
+ readonly name: "sigDeadline";
404
+ readonly type: "uint256";
405
+ readonly internalType: "uint256";
406
+ }];
407
+ }, {
408
+ readonly name: "signature";
409
+ readonly type: "bytes";
410
+ readonly internalType: "bytes";
411
+ }];
412
+ readonly outputs: readonly [{
413
+ readonly name: "err";
414
+ readonly type: "bytes";
415
+ readonly internalType: "bytes";
416
+ }];
417
+ readonly stateMutability: "payable";
418
+ }, {
419
+ readonly type: "function";
420
+ readonly name: "permit2";
421
+ readonly inputs: readonly [];
422
+ readonly outputs: readonly [{
423
+ readonly name: "";
424
+ readonly type: "address";
425
+ readonly internalType: "contract IAllowanceTransfer";
426
+ }];
427
+ readonly stateMutability: "view";
428
+ }, {
429
+ readonly type: "function";
430
+ readonly name: "permitBatch";
431
+ readonly inputs: readonly [{
432
+ readonly name: "owner";
433
+ readonly type: "address";
434
+ readonly internalType: "address";
435
+ }, {
436
+ readonly name: "_permitBatch";
437
+ readonly type: "tuple";
438
+ readonly internalType: "struct IAllowanceTransfer.PermitBatch";
439
+ readonly components: readonly [{
440
+ readonly name: "details";
441
+ readonly type: "tuple[]";
442
+ readonly internalType: "struct IAllowanceTransfer.PermitDetails[]";
443
+ readonly components: readonly [{
444
+ readonly name: "token";
445
+ readonly type: "address";
446
+ readonly internalType: "address";
447
+ }, {
448
+ readonly name: "amount";
449
+ readonly type: "uint160";
450
+ readonly internalType: "uint160";
451
+ }, {
452
+ readonly name: "expiration";
453
+ readonly type: "uint48";
454
+ readonly internalType: "uint48";
455
+ }, {
456
+ readonly name: "nonce";
457
+ readonly type: "uint48";
458
+ readonly internalType: "uint48";
459
+ }];
460
+ }, {
461
+ readonly name: "spender";
462
+ readonly type: "address";
463
+ readonly internalType: "address";
464
+ }, {
465
+ readonly name: "sigDeadline";
466
+ readonly type: "uint256";
467
+ readonly internalType: "uint256";
468
+ }];
469
+ }, {
470
+ readonly name: "signature";
471
+ readonly type: "bytes";
472
+ readonly internalType: "bytes";
473
+ }];
474
+ readonly outputs: readonly [{
475
+ readonly name: "err";
476
+ readonly type: "bytes";
477
+ readonly internalType: "bytes";
478
+ }];
479
+ readonly stateMutability: "payable";
480
+ }, {
481
+ readonly type: "function";
482
+ readonly name: "permitForAll";
483
+ readonly inputs: readonly [{
484
+ readonly name: "owner";
485
+ readonly type: "address";
486
+ readonly internalType: "address";
487
+ }, {
488
+ readonly name: "operator";
489
+ readonly type: "address";
490
+ readonly internalType: "address";
491
+ }, {
492
+ readonly name: "approved";
493
+ readonly type: "bool";
494
+ readonly internalType: "bool";
495
+ }, {
496
+ readonly name: "deadline";
497
+ readonly type: "uint256";
498
+ readonly internalType: "uint256";
499
+ }, {
500
+ readonly name: "nonce";
501
+ readonly type: "uint256";
502
+ readonly internalType: "uint256";
503
+ }, {
504
+ readonly name: "signature";
505
+ readonly type: "bytes";
506
+ readonly internalType: "bytes";
507
+ }];
508
+ readonly outputs: readonly [];
509
+ readonly stateMutability: "payable";
510
+ }, {
511
+ readonly type: "function";
512
+ readonly name: "poolKeys";
513
+ readonly inputs: readonly [{
514
+ readonly name: "poolId";
515
+ readonly type: "bytes25";
516
+ readonly internalType: "bytes25";
517
+ }];
518
+ readonly outputs: readonly [{
519
+ readonly name: "currency0";
520
+ readonly type: "address";
521
+ readonly internalType: "Currency";
522
+ }, {
523
+ readonly name: "currency1";
524
+ readonly type: "address";
525
+ readonly internalType: "Currency";
526
+ }, {
527
+ readonly name: "hooks";
528
+ readonly type: "address";
529
+ readonly internalType: "contract IHooks";
530
+ }, {
531
+ readonly name: "poolManager";
532
+ readonly type: "address";
533
+ readonly internalType: "contract IPoolManager";
534
+ }, {
535
+ readonly name: "fee";
536
+ readonly type: "uint24";
537
+ readonly internalType: "uint24";
538
+ }, {
539
+ readonly name: "parameters";
540
+ readonly type: "bytes32";
541
+ readonly internalType: "bytes32";
542
+ }];
543
+ readonly stateMutability: "view";
544
+ }, {
545
+ readonly type: "function";
546
+ readonly name: "positionInfo";
547
+ readonly inputs: readonly [{
548
+ readonly name: "tokenId";
549
+ readonly type: "uint256";
550
+ readonly internalType: "uint256";
551
+ }];
552
+ readonly outputs: readonly [{
553
+ readonly name: "info";
554
+ readonly type: "uint256";
555
+ readonly internalType: "CLPositionInfo";
556
+ }];
557
+ readonly stateMutability: "view";
558
+ }, {
559
+ readonly type: "function";
560
+ readonly name: "positions";
561
+ readonly inputs: readonly [{
562
+ readonly name: "tokenId";
563
+ readonly type: "uint256";
564
+ readonly internalType: "uint256";
565
+ }];
566
+ readonly outputs: readonly [{
567
+ readonly name: "poolKey";
568
+ readonly type: "tuple";
569
+ readonly internalType: "struct PoolKey";
570
+ readonly components: readonly [{
571
+ readonly name: "currency0";
572
+ readonly type: "address";
573
+ readonly internalType: "Currency";
574
+ }, {
575
+ readonly name: "currency1";
576
+ readonly type: "address";
577
+ readonly internalType: "Currency";
578
+ }, {
579
+ readonly name: "hooks";
580
+ readonly type: "address";
581
+ readonly internalType: "contract IHooks";
582
+ }, {
583
+ readonly name: "poolManager";
584
+ readonly type: "address";
585
+ readonly internalType: "contract IPoolManager";
586
+ }, {
587
+ readonly name: "fee";
588
+ readonly type: "uint24";
589
+ readonly internalType: "uint24";
590
+ }, {
591
+ readonly name: "parameters";
592
+ readonly type: "bytes32";
593
+ readonly internalType: "bytes32";
594
+ }];
595
+ }, {
596
+ readonly name: "tickLower";
597
+ readonly type: "int24";
598
+ readonly internalType: "int24";
599
+ }, {
600
+ readonly name: "tickUpper";
601
+ readonly type: "int24";
602
+ readonly internalType: "int24";
603
+ }, {
604
+ readonly name: "liquidity";
605
+ readonly type: "uint128";
606
+ readonly internalType: "uint128";
607
+ }, {
608
+ readonly name: "feeGrowthInside0LastX128";
609
+ readonly type: "uint256";
610
+ readonly internalType: "uint256";
611
+ }, {
612
+ readonly name: "feeGrowthInside1LastX128";
613
+ readonly type: "uint256";
614
+ readonly internalType: "uint256";
615
+ }, {
616
+ readonly name: "_subscriber";
617
+ readonly type: "address";
618
+ readonly internalType: "contract ICLSubscriber";
619
+ }];
620
+ readonly stateMutability: "view";
621
+ }, {
622
+ readonly type: "function";
623
+ readonly name: "revokeNonce";
624
+ readonly inputs: readonly [{
625
+ readonly name: "nonce";
626
+ readonly type: "uint256";
627
+ readonly internalType: "uint256";
628
+ }];
629
+ readonly outputs: readonly [];
630
+ readonly stateMutability: "payable";
631
+ }, {
632
+ readonly type: "function";
633
+ readonly name: "safeTransferFrom";
634
+ readonly inputs: readonly [{
635
+ readonly name: "from";
636
+ readonly type: "address";
637
+ readonly internalType: "address";
638
+ }, {
639
+ readonly name: "to";
640
+ readonly type: "address";
641
+ readonly internalType: "address";
642
+ }, {
643
+ readonly name: "id";
644
+ readonly type: "uint256";
645
+ readonly internalType: "uint256";
646
+ }];
647
+ readonly outputs: readonly [];
648
+ readonly stateMutability: "nonpayable";
649
+ }, {
650
+ readonly type: "function";
651
+ readonly name: "safeTransferFrom";
652
+ readonly inputs: readonly [{
653
+ readonly name: "from";
654
+ readonly type: "address";
655
+ readonly internalType: "address";
656
+ }, {
657
+ readonly name: "to";
658
+ readonly type: "address";
659
+ readonly internalType: "address";
660
+ }, {
661
+ readonly name: "id";
662
+ readonly type: "uint256";
663
+ readonly internalType: "uint256";
664
+ }, {
665
+ readonly name: "data";
666
+ readonly type: "bytes";
667
+ readonly internalType: "bytes";
668
+ }];
669
+ readonly outputs: readonly [];
670
+ readonly stateMutability: "nonpayable";
671
+ }, {
672
+ readonly type: "function";
673
+ readonly name: "setApprovalForAll";
674
+ readonly inputs: readonly [{
675
+ readonly name: "operator";
676
+ readonly type: "address";
677
+ readonly internalType: "address";
678
+ }, {
679
+ readonly name: "approved";
680
+ readonly type: "bool";
681
+ readonly internalType: "bool";
682
+ }];
683
+ readonly outputs: readonly [];
684
+ readonly stateMutability: "nonpayable";
685
+ }, {
686
+ readonly type: "function";
687
+ readonly name: "subscribe";
688
+ readonly inputs: readonly [{
689
+ readonly name: "tokenId";
690
+ readonly type: "uint256";
691
+ readonly internalType: "uint256";
692
+ }, {
693
+ readonly name: "newSubscriber";
694
+ readonly type: "address";
695
+ readonly internalType: "address";
696
+ }, {
697
+ readonly name: "data";
698
+ readonly type: "bytes";
699
+ readonly internalType: "bytes";
700
+ }];
701
+ readonly outputs: readonly [];
702
+ readonly stateMutability: "payable";
703
+ }, {
704
+ readonly type: "function";
705
+ readonly name: "subscriber";
706
+ readonly inputs: readonly [{
707
+ readonly name: "tokenId";
708
+ readonly type: "uint256";
709
+ readonly internalType: "uint256";
710
+ }];
711
+ readonly outputs: readonly [{
712
+ readonly name: "subscriber";
713
+ readonly type: "address";
714
+ readonly internalType: "contract ICLSubscriber";
715
+ }];
716
+ readonly stateMutability: "view";
717
+ }, {
718
+ readonly type: "function";
719
+ readonly name: "supportsInterface";
720
+ readonly inputs: readonly [{
721
+ readonly name: "interfaceId";
722
+ readonly type: "bytes4";
723
+ readonly internalType: "bytes4";
724
+ }];
725
+ readonly outputs: readonly [{
726
+ readonly name: "";
727
+ readonly type: "bool";
728
+ readonly internalType: "bool";
729
+ }];
730
+ readonly stateMutability: "view";
731
+ }, {
732
+ readonly type: "function";
733
+ readonly name: "symbol";
734
+ readonly inputs: readonly [];
735
+ readonly outputs: readonly [{
736
+ readonly name: "";
737
+ readonly type: "string";
738
+ readonly internalType: "string";
739
+ }];
740
+ readonly stateMutability: "view";
741
+ }, {
742
+ readonly type: "function";
743
+ readonly name: "tokenDescriptor";
744
+ readonly inputs: readonly [];
745
+ readonly outputs: readonly [{
746
+ readonly name: "";
747
+ readonly type: "address";
748
+ readonly internalType: "contract ICLPositionDescriptor";
749
+ }];
750
+ readonly stateMutability: "view";
751
+ }, {
752
+ readonly type: "function";
753
+ readonly name: "tokenURI";
754
+ readonly inputs: readonly [{
755
+ readonly name: "tokenId";
756
+ readonly type: "uint256";
757
+ readonly internalType: "uint256";
758
+ }];
759
+ readonly outputs: readonly [{
760
+ readonly name: "";
761
+ readonly type: "string";
762
+ readonly internalType: "string";
763
+ }];
764
+ readonly stateMutability: "view";
765
+ }, {
766
+ readonly type: "function";
767
+ readonly name: "transferFrom";
768
+ readonly inputs: readonly [{
769
+ readonly name: "from";
770
+ readonly type: "address";
771
+ readonly internalType: "address";
772
+ }, {
773
+ readonly name: "to";
774
+ readonly type: "address";
775
+ readonly internalType: "address";
776
+ }, {
777
+ readonly name: "id";
778
+ readonly type: "uint256";
779
+ readonly internalType: "uint256";
780
+ }];
781
+ readonly outputs: readonly [];
782
+ readonly stateMutability: "nonpayable";
783
+ }, {
784
+ readonly type: "function";
785
+ readonly name: "unsubscribe";
786
+ readonly inputs: readonly [{
787
+ readonly name: "tokenId";
788
+ readonly type: "uint256";
789
+ readonly internalType: "uint256";
790
+ }];
791
+ readonly outputs: readonly [];
792
+ readonly stateMutability: "payable";
793
+ }, {
794
+ readonly type: "function";
795
+ readonly name: "unsubscribeGasLimit";
796
+ readonly inputs: readonly [];
797
+ readonly outputs: readonly [{
798
+ readonly name: "";
799
+ readonly type: "uint256";
800
+ readonly internalType: "uint256";
801
+ }];
802
+ readonly stateMutability: "view";
803
+ }, {
804
+ readonly type: "function";
805
+ readonly name: "vault";
806
+ readonly inputs: readonly [];
807
+ readonly outputs: readonly [{
808
+ readonly name: "";
809
+ readonly type: "address";
810
+ readonly internalType: "contract IVault";
811
+ }];
812
+ readonly stateMutability: "view";
813
+ }, {
814
+ readonly type: "event";
815
+ readonly name: "Approval";
816
+ readonly inputs: readonly [{
817
+ readonly name: "owner";
818
+ readonly type: "address";
819
+ readonly indexed: true;
820
+ readonly internalType: "address";
821
+ }, {
822
+ readonly name: "spender";
823
+ readonly type: "address";
824
+ readonly indexed: true;
825
+ readonly internalType: "address";
826
+ }, {
827
+ readonly name: "id";
828
+ readonly type: "uint256";
829
+ readonly indexed: true;
830
+ readonly internalType: "uint256";
831
+ }];
832
+ readonly anonymous: false;
833
+ }, {
834
+ readonly type: "event";
835
+ readonly name: "ApprovalForAll";
836
+ readonly inputs: readonly [{
837
+ readonly name: "owner";
838
+ readonly type: "address";
839
+ readonly indexed: true;
840
+ readonly internalType: "address";
841
+ }, {
842
+ readonly name: "operator";
843
+ readonly type: "address";
844
+ readonly indexed: true;
845
+ readonly internalType: "address";
846
+ }, {
847
+ readonly name: "approved";
848
+ readonly type: "bool";
849
+ readonly indexed: false;
850
+ readonly internalType: "bool";
851
+ }];
852
+ readonly anonymous: false;
853
+ }, {
854
+ readonly type: "event";
855
+ readonly name: "MintPosition";
856
+ readonly inputs: readonly [{
857
+ readonly name: "tokenId";
858
+ readonly type: "uint256";
859
+ readonly indexed: true;
860
+ readonly internalType: "uint256";
861
+ }];
862
+ readonly anonymous: false;
863
+ }, {
864
+ readonly type: "event";
865
+ readonly name: "ModifyLiquidity";
866
+ readonly inputs: readonly [{
867
+ readonly name: "tokenId";
868
+ readonly type: "uint256";
869
+ readonly indexed: true;
870
+ readonly internalType: "uint256";
871
+ }, {
872
+ readonly name: "liquidityChange";
873
+ readonly type: "int256";
874
+ readonly indexed: false;
875
+ readonly internalType: "int256";
876
+ }, {
877
+ readonly name: "feesAccrued";
878
+ readonly type: "int256";
879
+ readonly indexed: false;
880
+ readonly internalType: "BalanceDelta";
881
+ }];
882
+ readonly anonymous: false;
883
+ }, {
884
+ readonly type: "event";
885
+ readonly name: "Subscription";
886
+ readonly inputs: readonly [{
887
+ readonly name: "tokenId";
888
+ readonly type: "uint256";
889
+ readonly indexed: true;
890
+ readonly internalType: "uint256";
891
+ }, {
892
+ readonly name: "subscriber";
893
+ readonly type: "address";
894
+ readonly indexed: true;
895
+ readonly internalType: "address";
896
+ }];
897
+ readonly anonymous: false;
898
+ }, {
899
+ readonly type: "event";
900
+ readonly name: "Transfer";
901
+ readonly inputs: readonly [{
902
+ readonly name: "from";
903
+ readonly type: "address";
904
+ readonly indexed: true;
905
+ readonly internalType: "address";
906
+ }, {
907
+ readonly name: "to";
908
+ readonly type: "address";
909
+ readonly indexed: true;
910
+ readonly internalType: "address";
911
+ }, {
912
+ readonly name: "id";
913
+ readonly type: "uint256";
914
+ readonly indexed: true;
915
+ readonly internalType: "uint256";
916
+ }];
917
+ readonly anonymous: false;
918
+ }, {
919
+ readonly type: "event";
920
+ readonly name: "Unsubscription";
921
+ readonly inputs: readonly [{
922
+ readonly name: "tokenId";
923
+ readonly type: "uint256";
924
+ readonly indexed: true;
925
+ readonly internalType: "uint256";
926
+ }, {
927
+ readonly name: "subscriber";
928
+ readonly type: "address";
929
+ readonly indexed: true;
930
+ readonly internalType: "address";
931
+ }];
932
+ readonly anonymous: false;
933
+ }, {
934
+ readonly type: "error";
935
+ readonly name: "AlreadySubscribed";
936
+ readonly inputs: readonly [{
937
+ readonly name: "tokenId";
938
+ readonly type: "uint256";
939
+ readonly internalType: "uint256";
940
+ }, {
941
+ readonly name: "subscriber";
942
+ readonly type: "address";
943
+ readonly internalType: "address";
944
+ }];
945
+ }, {
946
+ readonly type: "error";
947
+ readonly name: "BurnNotificationReverted";
948
+ readonly inputs: readonly [{
949
+ readonly name: "subscriber";
950
+ readonly type: "address";
951
+ readonly internalType: "address";
952
+ }, {
953
+ readonly name: "reason";
954
+ readonly type: "bytes";
955
+ readonly internalType: "bytes";
956
+ }];
957
+ }, {
958
+ readonly type: "error";
959
+ readonly name: "ContractLocked";
960
+ readonly inputs: readonly [];
961
+ }, {
962
+ readonly type: "error";
963
+ readonly name: "DeadlinePassed";
964
+ readonly inputs: readonly [{
965
+ readonly name: "deadline";
966
+ readonly type: "uint256";
967
+ readonly internalType: "uint256";
968
+ }];
969
+ }, {
970
+ readonly type: "error";
971
+ readonly name: "DeltaNotNegative";
972
+ readonly inputs: readonly [{
973
+ readonly name: "currency";
974
+ readonly type: "address";
975
+ readonly internalType: "Currency";
976
+ }];
977
+ }, {
978
+ readonly type: "error";
979
+ readonly name: "DeltaNotPositive";
980
+ readonly inputs: readonly [{
981
+ readonly name: "currency";
982
+ readonly type: "address";
983
+ readonly internalType: "Currency";
984
+ }];
985
+ }, {
986
+ readonly type: "error";
987
+ readonly name: "GasLimitTooLow";
988
+ readonly inputs: readonly [];
989
+ }, {
990
+ readonly type: "error";
991
+ readonly name: "InputLengthMismatch";
992
+ readonly inputs: readonly [];
993
+ }, {
994
+ readonly type: "error";
995
+ readonly name: "InsufficientBalance";
996
+ readonly inputs: readonly [];
997
+ }, {
998
+ readonly type: "error";
999
+ readonly name: "InvalidContractSignature";
1000
+ readonly inputs: readonly [];
1001
+ }, {
1002
+ readonly type: "error";
1003
+ readonly name: "InvalidEthSender";
1004
+ readonly inputs: readonly [];
1005
+ }, {
1006
+ readonly type: "error";
1007
+ readonly name: "InvalidSignature";
1008
+ readonly inputs: readonly [];
1009
+ }, {
1010
+ readonly type: "error";
1011
+ readonly name: "InvalidSignatureLength";
1012
+ readonly inputs: readonly [];
1013
+ }, {
1014
+ readonly type: "error";
1015
+ readonly name: "InvalidSigner";
1016
+ readonly inputs: readonly [];
1017
+ }, {
1018
+ readonly type: "error";
1019
+ readonly name: "InvalidTick";
1020
+ readonly inputs: readonly [{
1021
+ readonly name: "tick";
1022
+ readonly type: "int24";
1023
+ readonly internalType: "int24";
1024
+ }];
1025
+ }, {
1026
+ readonly type: "error";
1027
+ readonly name: "InvalidTokenID";
1028
+ readonly inputs: readonly [];
1029
+ }, {
1030
+ readonly type: "error";
1031
+ readonly name: "MaximumAmountExceeded";
1032
+ readonly inputs: readonly [{
1033
+ readonly name: "maximumAmount";
1034
+ readonly type: "uint128";
1035
+ readonly internalType: "uint128";
1036
+ }, {
1037
+ readonly name: "amountRequested";
1038
+ readonly type: "uint128";
1039
+ readonly internalType: "uint128";
1040
+ }];
1041
+ }, {
1042
+ readonly type: "error";
1043
+ readonly name: "MinimumAmountInsufficient";
1044
+ readonly inputs: readonly [{
1045
+ readonly name: "minimumAmount";
1046
+ readonly type: "uint128";
1047
+ readonly internalType: "uint128";
1048
+ }, {
1049
+ readonly name: "amountReceived";
1050
+ readonly type: "uint128";
1051
+ readonly internalType: "uint128";
1052
+ }];
1053
+ }, {
1054
+ readonly type: "error";
1055
+ readonly name: "ModifyLiquidityNotificationReverted";
1056
+ readonly inputs: readonly [{
1057
+ readonly name: "subscriber";
1058
+ readonly type: "address";
1059
+ readonly internalType: "address";
1060
+ }, {
1061
+ readonly name: "reason";
1062
+ readonly type: "bytes";
1063
+ readonly internalType: "bytes";
1064
+ }];
1065
+ }, {
1066
+ readonly type: "error";
1067
+ readonly name: "NoCodeSubscriber";
1068
+ readonly inputs: readonly [];
1069
+ }, {
1070
+ readonly type: "error";
1071
+ readonly name: "NoSelfPermit";
1072
+ readonly inputs: readonly [];
1073
+ }, {
1074
+ readonly type: "error";
1075
+ readonly name: "NonceAlreadyUsed";
1076
+ readonly inputs: readonly [];
1077
+ }, {
1078
+ readonly type: "error";
1079
+ readonly name: "NotApproved";
1080
+ readonly inputs: readonly [{
1081
+ readonly name: "caller";
1082
+ readonly type: "address";
1083
+ readonly internalType: "address";
1084
+ }];
1085
+ }, {
1086
+ readonly type: "error";
1087
+ readonly name: "NotSubscribed";
1088
+ readonly inputs: readonly [];
1089
+ }, {
1090
+ readonly type: "error";
1091
+ readonly name: "NotVault";
1092
+ readonly inputs: readonly [];
1093
+ }, {
1094
+ readonly type: "error";
1095
+ readonly name: "SafeCastOverflow";
1096
+ readonly inputs: readonly [];
1097
+ }, {
1098
+ readonly type: "error";
1099
+ readonly name: "SignatureDeadlineExpired";
1100
+ readonly inputs: readonly [];
1101
+ }, {
1102
+ readonly type: "error";
1103
+ readonly name: "SubscriptionReverted";
1104
+ readonly inputs: readonly [{
1105
+ readonly name: "subscriber";
1106
+ readonly type: "address";
1107
+ readonly internalType: "address";
1108
+ }, {
1109
+ readonly name: "reason";
1110
+ readonly type: "bytes";
1111
+ readonly internalType: "bytes";
1112
+ }];
1113
+ }, {
1114
+ readonly type: "error";
1115
+ readonly name: "Unauthorized";
1116
+ readonly inputs: readonly [];
1117
+ }, {
1118
+ readonly type: "error";
1119
+ readonly name: "UnsupportedAction";
1120
+ readonly inputs: readonly [{
1121
+ readonly name: "action";
1122
+ readonly type: "uint256";
1123
+ readonly internalType: "uint256";
1124
+ }];
1125
+ }, {
1126
+ readonly type: "error";
1127
+ readonly name: "VaultMustBeUnlocked";
1128
+ readonly inputs: readonly [];
1129
+ }];
1130
+ //# sourceMappingURL=CLPositionManagerAbi.d.ts.map