@4everland/land-v6 1.0.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.
Files changed (171) hide show
  1. package/.gitattributes +1 -0
  2. package/.gitmodules +3 -0
  3. package/README.md +9 -0
  4. package/package.json +96 -0
  5. package/tsconfig.json +11 -0
  6. package/types/BasicToken.d.ts +300 -0
  7. package/types/BlackList.d.ts +512 -0
  8. package/types/BlastOracleLand.d.ts +933 -0
  9. package/types/ChainlinkPriceFeed.d.ts +427 -0
  10. package/types/Console.d.ts +101 -0
  11. package/types/CustomPriceFeed.d.ts +214 -0
  12. package/types/ERC1967Proxy.d.ts +126 -0
  13. package/types/ERC1967Upgrade.d.ts +126 -0
  14. package/types/ERC20.d.ts +343 -0
  15. package/types/ERC20Basic.d.ts +199 -0
  16. package/types/ETHOracleLand.d.ts +901 -0
  17. package/types/FixedPriceFeed.d.ts +212 -0
  18. package/types/IAggregatorV3Interface.d.ts +234 -0
  19. package/types/IBeacon.d.ts +101 -0
  20. package/types/IBlast.d.ts +919 -0
  21. package/types/ICoin.d.ts +95 -0
  22. package/types/IERC1822Proxiable.d.ts +101 -0
  23. package/types/IERC1967.d.ts +126 -0
  24. package/types/IERC20.d.ts +324 -0
  25. package/types/IERC20Metadata.d.ts +363 -0
  26. package/types/IERC20Rebasing.d.ts +184 -0
  27. package/types/ILand.d.ts +386 -0
  28. package/types/ILandCore.d.ts +255 -0
  29. package/types/IPriceFeed.d.ts +108 -0
  30. package/types/IPyth.d.ts +194 -0
  31. package/types/IQuoter.d.ts +269 -0
  32. package/types/ITransparentUpgradeableProxy.d.ts +256 -0
  33. package/types/IUniswapV3Pool.d.ts +203 -0
  34. package/types/IUniswapV3PoolActions.d.ts +396 -0
  35. package/types/IUniswapV3PoolDerivedState.d.ts +185 -0
  36. package/types/IUniswapV3PoolEvents.d.ts +482 -0
  37. package/types/IUniswapV3PoolImmutables.d.ts +174 -0
  38. package/types/IUniswapV3PoolOwnerActions.d.ts +168 -0
  39. package/types/IUniswapV3PoolState.d.ts +438 -0
  40. package/types/IWETH.d.ts +374 -0
  41. package/types/Initializable.d.ts +92 -0
  42. package/types/Land.d.ts +586 -0
  43. package/types/LandCore.d.ts +255 -0
  44. package/types/LandMath.d.ts +101 -0
  45. package/types/LandOwnable.d.ts +134 -0
  46. package/types/LandOwnableUpgradeable.d.ts +148 -0
  47. package/types/MockDAI.d.ts +441 -0
  48. package/types/MockUSDC.d.ts +441 -0
  49. package/types/MockUSDT.d.ts +441 -0
  50. package/types/OracleLand.d.ts +724 -0
  51. package/types/Ownable.d.ts +130 -0
  52. package/types/Pausable.d.ts +203 -0
  53. package/types/Proxy.d.ts +78 -0
  54. package/types/ProxyAdmin.d.ts +357 -0
  55. package/types/PythPriceFeed.d.ts +423 -0
  56. package/types/StandardToken.d.ts +493 -0
  57. package/types/TetherToken.d.ts +1018 -0
  58. package/types/TransparentUpgradeableProxy.d.ts +126 -0
  59. package/types/UpgradedStandardToken.d.ts +630 -0
  60. package/types/common.d.ts +35 -0
  61. package/types/factories/BasicToken__factory.js +183 -0
  62. package/types/factories/BasicToken__factory.ts +185 -0
  63. package/types/factories/BlackList__factory.js +318 -0
  64. package/types/factories/BlackList__factory.ts +320 -0
  65. package/types/factories/BlastOracleLand__factory.js +656 -0
  66. package/types/factories/BlastOracleLand__factory.ts +649 -0
  67. package/types/factories/ChainlinkPriceFeed__factory.js +378 -0
  68. package/types/factories/ChainlinkPriceFeed__factory.ts +398 -0
  69. package/types/factories/Console__factory.js +76 -0
  70. package/types/factories/Console__factory.ts +66 -0
  71. package/types/factories/CustomPriceFeed__factory.js +207 -0
  72. package/types/factories/CustomPriceFeed__factory.ts +211 -0
  73. package/types/factories/ERC1967Proxy__factory.js +132 -0
  74. package/types/factories/ERC1967Proxy__factory.ts +137 -0
  75. package/types/factories/ERC1967Upgrade__factory.js +66 -0
  76. package/types/factories/ERC1967Upgrade__factory.ts +71 -0
  77. package/types/factories/ERC20Basic__factory.js +108 -0
  78. package/types/factories/ERC20Basic__factory.ts +110 -0
  79. package/types/factories/ERC20__factory.js +193 -0
  80. package/types/factories/ERC20__factory.ts +192 -0
  81. package/types/factories/ETHOracleLand__factory.js +625 -0
  82. package/types/factories/ETHOracleLand__factory.ts +615 -0
  83. package/types/factories/FixedPriceFeed__factory.js +192 -0
  84. package/types/factories/FixedPriceFeed__factory.ts +203 -0
  85. package/types/factories/IAggregatorV3Interface__factory.js +132 -0
  86. package/types/factories/IAggregatorV3Interface__factory.ts +141 -0
  87. package/types/factories/IBeacon__factory.js +34 -0
  88. package/types/factories/IBeacon__factory.ts +36 -0
  89. package/types/factories/IBlast__factory.js +439 -0
  90. package/types/factories/IBlast__factory.ts +438 -0
  91. package/types/factories/ICoin__factory.js +34 -0
  92. package/types/factories/ICoin__factory.ts +33 -0
  93. package/types/factories/IERC1822Proxiable__factory.js +34 -0
  94. package/types/factories/IERC1822Proxiable__factory.ts +39 -0
  95. package/types/factories/IERC1967__factory.js +66 -0
  96. package/types/factories/IERC1967__factory.ts +68 -0
  97. package/types/factories/IERC20Metadata__factory.js +243 -0
  98. package/types/factories/IERC20Metadata__factory.ts +248 -0
  99. package/types/factories/IERC20Rebasing__factory.js +83 -0
  100. package/types/factories/IERC20Rebasing__factory.ts +88 -0
  101. package/types/factories/IERC20__factory.js +204 -0
  102. package/types/factories/IERC20__factory.ts +203 -0
  103. package/types/factories/ILandCore__factory.js +143 -0
  104. package/types/factories/ILandCore__factory.ts +145 -0
  105. package/types/factories/ILand__factory.js +255 -0
  106. package/types/factories/ILand__factory.ts +254 -0
  107. package/types/factories/IPriceFeed__factory.js +40 -0
  108. package/types/factories/IPriceFeed__factory.ts +42 -0
  109. package/types/factories/IPyth__factory.js +103 -0
  110. package/types/factories/IPyth__factory.ts +102 -0
  111. package/types/factories/IQuoter__factory.js +147 -0
  112. package/types/factories/IQuoter__factory.ts +149 -0
  113. package/types/factories/ITransparentUpgradeableProxy__factory.js +136 -0
  114. package/types/factories/ITransparentUpgradeableProxy__factory.ts +145 -0
  115. package/types/factories/IUniswapV3PoolActions__factory.js +241 -0
  116. package/types/factories/IUniswapV3PoolActions__factory.ts +250 -0
  117. package/types/factories/IUniswapV3PoolDerivedState__factory.js +79 -0
  118. package/types/factories/IUniswapV3PoolDerivedState__factory.ts +88 -0
  119. package/types/factories/IUniswapV3PoolEvents__factory.js +348 -0
  120. package/types/factories/IUniswapV3PoolEvents__factory.ts +357 -0
  121. package/types/factories/IUniswapV3PoolImmutables__factory.js +99 -0
  122. package/types/factories/IUniswapV3PoolImmutables__factory.ts +108 -0
  123. package/types/factories/IUniswapV3PoolOwnerActions__factory.js +73 -0
  124. package/types/factories/IUniswapV3PoolOwnerActions__factory.ts +82 -0
  125. package/types/factories/IUniswapV3PoolState__factory.js +267 -0
  126. package/types/factories/IUniswapV3PoolState__factory.ts +272 -0
  127. package/types/factories/IUniswapV3Pool__factory.js +114 -0
  128. package/types/factories/IUniswapV3Pool__factory.ts +119 -0
  129. package/types/factories/IWETH__factory.js +224 -0
  130. package/types/factories/IWETH__factory.ts +223 -0
  131. package/types/factories/Initializable__factory.js +34 -0
  132. package/types/factories/Initializable__factory.ts +36 -0
  133. package/types/factories/LandCore__factory.js +201 -0
  134. package/types/factories/LandCore__factory.ts +199 -0
  135. package/types/factories/LandMath__factory.js +76 -0
  136. package/types/factories/LandMath__factory.ts +66 -0
  137. package/types/factories/LandOwnableUpgradeable__factory.js +128 -0
  138. package/types/factories/LandOwnableUpgradeable__factory.ts +125 -0
  139. package/types/factories/LandOwnable__factory.js +126 -0
  140. package/types/factories/LandOwnable__factory.ts +118 -0
  141. package/types/factories/Land__factory.js +462 -0
  142. package/types/factories/Land__factory.ts +449 -0
  143. package/types/factories/MockDAI__factory.js +338 -0
  144. package/types/factories/MockDAI__factory.ts +328 -0
  145. package/types/factories/MockUSDC__factory.js +338 -0
  146. package/types/factories/MockUSDC__factory.ts +328 -0
  147. package/types/factories/MockUSDT__factory.js +338 -0
  148. package/types/factories/MockUSDT__factory.ts +328 -0
  149. package/types/factories/OracleLand__factory.js +537 -0
  150. package/types/factories/OracleLand__factory.ts +527 -0
  151. package/types/factories/Ownable__factory.js +73 -0
  152. package/types/factories/Ownable__factory.ts +75 -0
  153. package/types/factories/Pausable__factory.js +135 -0
  154. package/types/factories/Pausable__factory.ts +125 -0
  155. package/types/factories/ProxyAdmin__factory.js +212 -0
  156. package/types/factories/ProxyAdmin__factory.ts +202 -0
  157. package/types/factories/Proxy__factory.js +29 -0
  158. package/types/factories/Proxy__factory.ts +28 -0
  159. package/types/factories/PythPriceFeed__factory.js +378 -0
  160. package/types/factories/PythPriceFeed__factory.ts +400 -0
  161. package/types/factories/StandardToken__factory.js +305 -0
  162. package/types/factories/StandardToken__factory.ts +307 -0
  163. package/types/factories/TetherToken__factory.js +732 -0
  164. package/types/factories/TetherToken__factory.ts +749 -0
  165. package/types/factories/TransparentUpgradeableProxy__factory.js +137 -0
  166. package/types/factories/TransparentUpgradeableProxy__factory.ts +152 -0
  167. package/types/factories/UpgradedStandardToken__factory.js +375 -0
  168. package/types/factories/UpgradedStandardToken__factory.ts +384 -0
  169. package/types/hardhat.d.ts +573 -0
  170. package/types/index.js +112 -0
  171. package/types/index.ts +112 -0
@@ -0,0 +1,272 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type {
8
+ IUniswapV3PoolState,
9
+ IUniswapV3PoolStateInterface,
10
+ } from "../IUniswapV3PoolState";
11
+
12
+ const _abi = [
13
+ {
14
+ inputs: [],
15
+ name: "feeGrowthGlobal0X128",
16
+ outputs: [
17
+ {
18
+ internalType: "uint256",
19
+ name: "",
20
+ type: "uint256",
21
+ },
22
+ ],
23
+ stateMutability: "view",
24
+ type: "function",
25
+ },
26
+ {
27
+ inputs: [],
28
+ name: "feeGrowthGlobal1X128",
29
+ outputs: [
30
+ {
31
+ internalType: "uint256",
32
+ name: "",
33
+ type: "uint256",
34
+ },
35
+ ],
36
+ stateMutability: "view",
37
+ type: "function",
38
+ },
39
+ {
40
+ inputs: [],
41
+ name: "liquidity",
42
+ outputs: [
43
+ {
44
+ internalType: "uint128",
45
+ name: "",
46
+ type: "uint128",
47
+ },
48
+ ],
49
+ stateMutability: "view",
50
+ type: "function",
51
+ },
52
+ {
53
+ inputs: [
54
+ {
55
+ internalType: "uint256",
56
+ name: "index",
57
+ type: "uint256",
58
+ },
59
+ ],
60
+ name: "observations",
61
+ outputs: [
62
+ {
63
+ internalType: "uint32",
64
+ name: "blockTimestamp",
65
+ type: "uint32",
66
+ },
67
+ {
68
+ internalType: "int56",
69
+ name: "tickCumulative",
70
+ type: "int56",
71
+ },
72
+ {
73
+ internalType: "uint160",
74
+ name: "secondsPerLiquidityCumulativeX128",
75
+ type: "uint160",
76
+ },
77
+ {
78
+ internalType: "bool",
79
+ name: "initialized",
80
+ type: "bool",
81
+ },
82
+ ],
83
+ stateMutability: "view",
84
+ type: "function",
85
+ },
86
+ {
87
+ inputs: [
88
+ {
89
+ internalType: "bytes32",
90
+ name: "key",
91
+ type: "bytes32",
92
+ },
93
+ ],
94
+ name: "positions",
95
+ outputs: [
96
+ {
97
+ internalType: "uint128",
98
+ name: "_liquidity",
99
+ type: "uint128",
100
+ },
101
+ {
102
+ internalType: "uint256",
103
+ name: "feeGrowthInside0LastX128",
104
+ type: "uint256",
105
+ },
106
+ {
107
+ internalType: "uint256",
108
+ name: "feeGrowthInside1LastX128",
109
+ type: "uint256",
110
+ },
111
+ {
112
+ internalType: "uint128",
113
+ name: "tokensOwed0",
114
+ type: "uint128",
115
+ },
116
+ {
117
+ internalType: "uint128",
118
+ name: "tokensOwed1",
119
+ type: "uint128",
120
+ },
121
+ ],
122
+ stateMutability: "view",
123
+ type: "function",
124
+ },
125
+ {
126
+ inputs: [],
127
+ name: "protocolFees",
128
+ outputs: [
129
+ {
130
+ internalType: "uint128",
131
+ name: "token0",
132
+ type: "uint128",
133
+ },
134
+ {
135
+ internalType: "uint128",
136
+ name: "token1",
137
+ type: "uint128",
138
+ },
139
+ ],
140
+ stateMutability: "view",
141
+ type: "function",
142
+ },
143
+ {
144
+ inputs: [],
145
+ name: "slot0",
146
+ outputs: [
147
+ {
148
+ internalType: "uint160",
149
+ name: "sqrtPriceX96",
150
+ type: "uint160",
151
+ },
152
+ {
153
+ internalType: "int24",
154
+ name: "tick",
155
+ type: "int24",
156
+ },
157
+ {
158
+ internalType: "uint16",
159
+ name: "observationIndex",
160
+ type: "uint16",
161
+ },
162
+ {
163
+ internalType: "uint16",
164
+ name: "observationCardinality",
165
+ type: "uint16",
166
+ },
167
+ {
168
+ internalType: "uint16",
169
+ name: "observationCardinalityNext",
170
+ type: "uint16",
171
+ },
172
+ {
173
+ internalType: "uint8",
174
+ name: "feeProtocol",
175
+ type: "uint8",
176
+ },
177
+ {
178
+ internalType: "bool",
179
+ name: "unlocked",
180
+ type: "bool",
181
+ },
182
+ ],
183
+ stateMutability: "view",
184
+ type: "function",
185
+ },
186
+ {
187
+ inputs: [
188
+ {
189
+ internalType: "int16",
190
+ name: "wordPosition",
191
+ type: "int16",
192
+ },
193
+ ],
194
+ name: "tickBitmap",
195
+ outputs: [
196
+ {
197
+ internalType: "uint256",
198
+ name: "",
199
+ type: "uint256",
200
+ },
201
+ ],
202
+ stateMutability: "view",
203
+ type: "function",
204
+ },
205
+ {
206
+ inputs: [
207
+ {
208
+ internalType: "int24",
209
+ name: "tick",
210
+ type: "int24",
211
+ },
212
+ ],
213
+ name: "ticks",
214
+ outputs: [
215
+ {
216
+ internalType: "uint128",
217
+ name: "liquidityGross",
218
+ type: "uint128",
219
+ },
220
+ {
221
+ internalType: "int128",
222
+ name: "liquidityNet",
223
+ type: "int128",
224
+ },
225
+ {
226
+ internalType: "uint256",
227
+ name: "feeGrowthOutside0X128",
228
+ type: "uint256",
229
+ },
230
+ {
231
+ internalType: "uint256",
232
+ name: "feeGrowthOutside1X128",
233
+ type: "uint256",
234
+ },
235
+ {
236
+ internalType: "int56",
237
+ name: "tickCumulativeOutside",
238
+ type: "int56",
239
+ },
240
+ {
241
+ internalType: "uint160",
242
+ name: "secondsPerLiquidityOutsideX128",
243
+ type: "uint160",
244
+ },
245
+ {
246
+ internalType: "uint32",
247
+ name: "secondsOutside",
248
+ type: "uint32",
249
+ },
250
+ {
251
+ internalType: "bool",
252
+ name: "initialized",
253
+ type: "bool",
254
+ },
255
+ ],
256
+ stateMutability: "view",
257
+ type: "function",
258
+ },
259
+ ];
260
+
261
+ export class IUniswapV3PoolState__factory {
262
+ static readonly abi = _abi;
263
+ static createInterface(): IUniswapV3PoolStateInterface {
264
+ return new utils.Interface(_abi) as IUniswapV3PoolStateInterface;
265
+ }
266
+ static connect(
267
+ address: string,
268
+ signerOrProvider: Signer | Provider
269
+ ): IUniswapV3PoolState {
270
+ return new Contract(address, _abi, signerOrProvider) as IUniswapV3PoolState;
271
+ }
272
+ }
@@ -0,0 +1,114 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.IUniswapV3Pool__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ inputs: [
11
+ {
12
+ internalType: "uint32[]",
13
+ name: "secondsAgos",
14
+ type: "uint32[]",
15
+ },
16
+ ],
17
+ name: "observe",
18
+ outputs: [
19
+ {
20
+ internalType: "int56[]",
21
+ name: "tickCumulatives",
22
+ type: "int56[]",
23
+ },
24
+ {
25
+ internalType: "uint160[]",
26
+ name: "secondsPerLiquidityCumulativeX128s",
27
+ type: "uint160[]",
28
+ },
29
+ ],
30
+ stateMutability: "view",
31
+ type: "function",
32
+ },
33
+ {
34
+ inputs: [],
35
+ name: "slot0",
36
+ outputs: [
37
+ {
38
+ internalType: "uint160",
39
+ name: "sqrtPriceX96",
40
+ type: "uint160",
41
+ },
42
+ {
43
+ internalType: "int24",
44
+ name: "tick",
45
+ type: "int24",
46
+ },
47
+ {
48
+ internalType: "uint16",
49
+ name: "observationIndex",
50
+ type: "uint16",
51
+ },
52
+ {
53
+ internalType: "uint16",
54
+ name: "observationCardinality",
55
+ type: "uint16",
56
+ },
57
+ {
58
+ internalType: "uint16",
59
+ name: "observationCardinalityNext",
60
+ type: "uint16",
61
+ },
62
+ {
63
+ internalType: "uint8",
64
+ name: "feeProtocol",
65
+ type: "uint8",
66
+ },
67
+ {
68
+ internalType: "bool",
69
+ name: "unlocked",
70
+ type: "bool",
71
+ },
72
+ ],
73
+ stateMutability: "view",
74
+ type: "function",
75
+ },
76
+ {
77
+ inputs: [],
78
+ name: "token0",
79
+ outputs: [
80
+ {
81
+ internalType: "address",
82
+ name: "",
83
+ type: "address",
84
+ },
85
+ ],
86
+ stateMutability: "view",
87
+ type: "function",
88
+ },
89
+ {
90
+ inputs: [],
91
+ name: "token1",
92
+ outputs: [
93
+ {
94
+ internalType: "address",
95
+ name: "",
96
+ type: "address",
97
+ },
98
+ ],
99
+ stateMutability: "view",
100
+ type: "function",
101
+ },
102
+ ];
103
+ var IUniswapV3Pool__factory = exports.IUniswapV3Pool__factory = /** @class */ (function () {
104
+ function IUniswapV3Pool__factory() {
105
+ }
106
+ IUniswapV3Pool__factory.createInterface = function () {
107
+ return new ethers_1.utils.Interface(_abi);
108
+ };
109
+ IUniswapV3Pool__factory.connect = function (address, signerOrProvider) {
110
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
111
+ };
112
+ IUniswapV3Pool__factory.abi = _abi;
113
+ return IUniswapV3Pool__factory;
114
+ }());
@@ -0,0 +1,119 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type {
8
+ IUniswapV3Pool,
9
+ IUniswapV3PoolInterface,
10
+ } from "../IUniswapV3Pool";
11
+
12
+ const _abi = [
13
+ {
14
+ inputs: [
15
+ {
16
+ internalType: "uint32[]",
17
+ name: "secondsAgos",
18
+ type: "uint32[]",
19
+ },
20
+ ],
21
+ name: "observe",
22
+ outputs: [
23
+ {
24
+ internalType: "int56[]",
25
+ name: "tickCumulatives",
26
+ type: "int56[]",
27
+ },
28
+ {
29
+ internalType: "uint160[]",
30
+ name: "secondsPerLiquidityCumulativeX128s",
31
+ type: "uint160[]",
32
+ },
33
+ ],
34
+ stateMutability: "view",
35
+ type: "function",
36
+ },
37
+ {
38
+ inputs: [],
39
+ name: "slot0",
40
+ outputs: [
41
+ {
42
+ internalType: "uint160",
43
+ name: "sqrtPriceX96",
44
+ type: "uint160",
45
+ },
46
+ {
47
+ internalType: "int24",
48
+ name: "tick",
49
+ type: "int24",
50
+ },
51
+ {
52
+ internalType: "uint16",
53
+ name: "observationIndex",
54
+ type: "uint16",
55
+ },
56
+ {
57
+ internalType: "uint16",
58
+ name: "observationCardinality",
59
+ type: "uint16",
60
+ },
61
+ {
62
+ internalType: "uint16",
63
+ name: "observationCardinalityNext",
64
+ type: "uint16",
65
+ },
66
+ {
67
+ internalType: "uint8",
68
+ name: "feeProtocol",
69
+ type: "uint8",
70
+ },
71
+ {
72
+ internalType: "bool",
73
+ name: "unlocked",
74
+ type: "bool",
75
+ },
76
+ ],
77
+ stateMutability: "view",
78
+ type: "function",
79
+ },
80
+ {
81
+ inputs: [],
82
+ name: "token0",
83
+ outputs: [
84
+ {
85
+ internalType: "address",
86
+ name: "",
87
+ type: "address",
88
+ },
89
+ ],
90
+ stateMutability: "view",
91
+ type: "function",
92
+ },
93
+ {
94
+ inputs: [],
95
+ name: "token1",
96
+ outputs: [
97
+ {
98
+ internalType: "address",
99
+ name: "",
100
+ type: "address",
101
+ },
102
+ ],
103
+ stateMutability: "view",
104
+ type: "function",
105
+ },
106
+ ];
107
+
108
+ export class IUniswapV3Pool__factory {
109
+ static readonly abi = _abi;
110
+ static createInterface(): IUniswapV3PoolInterface {
111
+ return new utils.Interface(_abi) as IUniswapV3PoolInterface;
112
+ }
113
+ static connect(
114
+ address: string,
115
+ signerOrProvider: Signer | Provider
116
+ ): IUniswapV3Pool {
117
+ return new Contract(address, _abi, signerOrProvider) as IUniswapV3Pool;
118
+ }
119
+ }