@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,99 @@
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.IUniswapV3PoolImmutables__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ inputs: [],
11
+ name: "factory",
12
+ outputs: [
13
+ {
14
+ internalType: "address",
15
+ name: "",
16
+ type: "address",
17
+ },
18
+ ],
19
+ stateMutability: "view",
20
+ type: "function",
21
+ },
22
+ {
23
+ inputs: [],
24
+ name: "fee",
25
+ outputs: [
26
+ {
27
+ internalType: "uint24",
28
+ name: "",
29
+ type: "uint24",
30
+ },
31
+ ],
32
+ stateMutability: "view",
33
+ type: "function",
34
+ },
35
+ {
36
+ inputs: [],
37
+ name: "maxLiquidityPerTick",
38
+ outputs: [
39
+ {
40
+ internalType: "uint128",
41
+ name: "",
42
+ type: "uint128",
43
+ },
44
+ ],
45
+ stateMutability: "view",
46
+ type: "function",
47
+ },
48
+ {
49
+ inputs: [],
50
+ name: "tickSpacing",
51
+ outputs: [
52
+ {
53
+ internalType: "int24",
54
+ name: "",
55
+ type: "int24",
56
+ },
57
+ ],
58
+ stateMutability: "view",
59
+ type: "function",
60
+ },
61
+ {
62
+ inputs: [],
63
+ name: "token0",
64
+ outputs: [
65
+ {
66
+ internalType: "address",
67
+ name: "",
68
+ type: "address",
69
+ },
70
+ ],
71
+ stateMutability: "view",
72
+ type: "function",
73
+ },
74
+ {
75
+ inputs: [],
76
+ name: "token1",
77
+ outputs: [
78
+ {
79
+ internalType: "address",
80
+ name: "",
81
+ type: "address",
82
+ },
83
+ ],
84
+ stateMutability: "view",
85
+ type: "function",
86
+ },
87
+ ];
88
+ var IUniswapV3PoolImmutables__factory = exports.IUniswapV3PoolImmutables__factory = /** @class */ (function () {
89
+ function IUniswapV3PoolImmutables__factory() {
90
+ }
91
+ IUniswapV3PoolImmutables__factory.createInterface = function () {
92
+ return new ethers_1.utils.Interface(_abi);
93
+ };
94
+ IUniswapV3PoolImmutables__factory.connect = function (address, signerOrProvider) {
95
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
96
+ };
97
+ IUniswapV3PoolImmutables__factory.abi = _abi;
98
+ return IUniswapV3PoolImmutables__factory;
99
+ }());
@@ -0,0 +1,108 @@
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
+ IUniswapV3PoolImmutables,
9
+ IUniswapV3PoolImmutablesInterface,
10
+ } from "../IUniswapV3PoolImmutables";
11
+
12
+ const _abi = [
13
+ {
14
+ inputs: [],
15
+ name: "factory",
16
+ outputs: [
17
+ {
18
+ internalType: "address",
19
+ name: "",
20
+ type: "address",
21
+ },
22
+ ],
23
+ stateMutability: "view",
24
+ type: "function",
25
+ },
26
+ {
27
+ inputs: [],
28
+ name: "fee",
29
+ outputs: [
30
+ {
31
+ internalType: "uint24",
32
+ name: "",
33
+ type: "uint24",
34
+ },
35
+ ],
36
+ stateMutability: "view",
37
+ type: "function",
38
+ },
39
+ {
40
+ inputs: [],
41
+ name: "maxLiquidityPerTick",
42
+ outputs: [
43
+ {
44
+ internalType: "uint128",
45
+ name: "",
46
+ type: "uint128",
47
+ },
48
+ ],
49
+ stateMutability: "view",
50
+ type: "function",
51
+ },
52
+ {
53
+ inputs: [],
54
+ name: "tickSpacing",
55
+ outputs: [
56
+ {
57
+ internalType: "int24",
58
+ name: "",
59
+ type: "int24",
60
+ },
61
+ ],
62
+ stateMutability: "view",
63
+ type: "function",
64
+ },
65
+ {
66
+ inputs: [],
67
+ name: "token0",
68
+ outputs: [
69
+ {
70
+ internalType: "address",
71
+ name: "",
72
+ type: "address",
73
+ },
74
+ ],
75
+ stateMutability: "view",
76
+ type: "function",
77
+ },
78
+ {
79
+ inputs: [],
80
+ name: "token1",
81
+ outputs: [
82
+ {
83
+ internalType: "address",
84
+ name: "",
85
+ type: "address",
86
+ },
87
+ ],
88
+ stateMutability: "view",
89
+ type: "function",
90
+ },
91
+ ];
92
+
93
+ export class IUniswapV3PoolImmutables__factory {
94
+ static readonly abi = _abi;
95
+ static createInterface(): IUniswapV3PoolImmutablesInterface {
96
+ return new utils.Interface(_abi) as IUniswapV3PoolImmutablesInterface;
97
+ }
98
+ static connect(
99
+ address: string,
100
+ signerOrProvider: Signer | Provider
101
+ ): IUniswapV3PoolImmutables {
102
+ return new Contract(
103
+ address,
104
+ _abi,
105
+ signerOrProvider
106
+ ) as IUniswapV3PoolImmutables;
107
+ }
108
+ }
@@ -0,0 +1,73 @@
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.IUniswapV3PoolOwnerActions__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ inputs: [
11
+ {
12
+ internalType: "address",
13
+ name: "recipient",
14
+ type: "address",
15
+ },
16
+ {
17
+ internalType: "uint128",
18
+ name: "amount0Requested",
19
+ type: "uint128",
20
+ },
21
+ {
22
+ internalType: "uint128",
23
+ name: "amount1Requested",
24
+ type: "uint128",
25
+ },
26
+ ],
27
+ name: "collectProtocol",
28
+ outputs: [
29
+ {
30
+ internalType: "uint128",
31
+ name: "amount0",
32
+ type: "uint128",
33
+ },
34
+ {
35
+ internalType: "uint128",
36
+ name: "amount1",
37
+ type: "uint128",
38
+ },
39
+ ],
40
+ stateMutability: "nonpayable",
41
+ type: "function",
42
+ },
43
+ {
44
+ inputs: [
45
+ {
46
+ internalType: "uint8",
47
+ name: "feeProtocol0",
48
+ type: "uint8",
49
+ },
50
+ {
51
+ internalType: "uint8",
52
+ name: "feeProtocol1",
53
+ type: "uint8",
54
+ },
55
+ ],
56
+ name: "setFeeProtocol",
57
+ outputs: [],
58
+ stateMutability: "nonpayable",
59
+ type: "function",
60
+ },
61
+ ];
62
+ var IUniswapV3PoolOwnerActions__factory = exports.IUniswapV3PoolOwnerActions__factory = /** @class */ (function () {
63
+ function IUniswapV3PoolOwnerActions__factory() {
64
+ }
65
+ IUniswapV3PoolOwnerActions__factory.createInterface = function () {
66
+ return new ethers_1.utils.Interface(_abi);
67
+ };
68
+ IUniswapV3PoolOwnerActions__factory.connect = function (address, signerOrProvider) {
69
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
70
+ };
71
+ IUniswapV3PoolOwnerActions__factory.abi = _abi;
72
+ return IUniswapV3PoolOwnerActions__factory;
73
+ }());
@@ -0,0 +1,82 @@
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
+ IUniswapV3PoolOwnerActions,
9
+ IUniswapV3PoolOwnerActionsInterface,
10
+ } from "../IUniswapV3PoolOwnerActions";
11
+
12
+ const _abi = [
13
+ {
14
+ inputs: [
15
+ {
16
+ internalType: "address",
17
+ name: "recipient",
18
+ type: "address",
19
+ },
20
+ {
21
+ internalType: "uint128",
22
+ name: "amount0Requested",
23
+ type: "uint128",
24
+ },
25
+ {
26
+ internalType: "uint128",
27
+ name: "amount1Requested",
28
+ type: "uint128",
29
+ },
30
+ ],
31
+ name: "collectProtocol",
32
+ outputs: [
33
+ {
34
+ internalType: "uint128",
35
+ name: "amount0",
36
+ type: "uint128",
37
+ },
38
+ {
39
+ internalType: "uint128",
40
+ name: "amount1",
41
+ type: "uint128",
42
+ },
43
+ ],
44
+ stateMutability: "nonpayable",
45
+ type: "function",
46
+ },
47
+ {
48
+ inputs: [
49
+ {
50
+ internalType: "uint8",
51
+ name: "feeProtocol0",
52
+ type: "uint8",
53
+ },
54
+ {
55
+ internalType: "uint8",
56
+ name: "feeProtocol1",
57
+ type: "uint8",
58
+ },
59
+ ],
60
+ name: "setFeeProtocol",
61
+ outputs: [],
62
+ stateMutability: "nonpayable",
63
+ type: "function",
64
+ },
65
+ ];
66
+
67
+ export class IUniswapV3PoolOwnerActions__factory {
68
+ static readonly abi = _abi;
69
+ static createInterface(): IUniswapV3PoolOwnerActionsInterface {
70
+ return new utils.Interface(_abi) as IUniswapV3PoolOwnerActionsInterface;
71
+ }
72
+ static connect(
73
+ address: string,
74
+ signerOrProvider: Signer | Provider
75
+ ): IUniswapV3PoolOwnerActions {
76
+ return new Contract(
77
+ address,
78
+ _abi,
79
+ signerOrProvider
80
+ ) as IUniswapV3PoolOwnerActions;
81
+ }
82
+ }
@@ -0,0 +1,267 @@
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.IUniswapV3PoolState__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ inputs: [],
11
+ name: "feeGrowthGlobal0X128",
12
+ outputs: [
13
+ {
14
+ internalType: "uint256",
15
+ name: "",
16
+ type: "uint256",
17
+ },
18
+ ],
19
+ stateMutability: "view",
20
+ type: "function",
21
+ },
22
+ {
23
+ inputs: [],
24
+ name: "feeGrowthGlobal1X128",
25
+ outputs: [
26
+ {
27
+ internalType: "uint256",
28
+ name: "",
29
+ type: "uint256",
30
+ },
31
+ ],
32
+ stateMutability: "view",
33
+ type: "function",
34
+ },
35
+ {
36
+ inputs: [],
37
+ name: "liquidity",
38
+ outputs: [
39
+ {
40
+ internalType: "uint128",
41
+ name: "",
42
+ type: "uint128",
43
+ },
44
+ ],
45
+ stateMutability: "view",
46
+ type: "function",
47
+ },
48
+ {
49
+ inputs: [
50
+ {
51
+ internalType: "uint256",
52
+ name: "index",
53
+ type: "uint256",
54
+ },
55
+ ],
56
+ name: "observations",
57
+ outputs: [
58
+ {
59
+ internalType: "uint32",
60
+ name: "blockTimestamp",
61
+ type: "uint32",
62
+ },
63
+ {
64
+ internalType: "int56",
65
+ name: "tickCumulative",
66
+ type: "int56",
67
+ },
68
+ {
69
+ internalType: "uint160",
70
+ name: "secondsPerLiquidityCumulativeX128",
71
+ type: "uint160",
72
+ },
73
+ {
74
+ internalType: "bool",
75
+ name: "initialized",
76
+ type: "bool",
77
+ },
78
+ ],
79
+ stateMutability: "view",
80
+ type: "function",
81
+ },
82
+ {
83
+ inputs: [
84
+ {
85
+ internalType: "bytes32",
86
+ name: "key",
87
+ type: "bytes32",
88
+ },
89
+ ],
90
+ name: "positions",
91
+ outputs: [
92
+ {
93
+ internalType: "uint128",
94
+ name: "_liquidity",
95
+ type: "uint128",
96
+ },
97
+ {
98
+ internalType: "uint256",
99
+ name: "feeGrowthInside0LastX128",
100
+ type: "uint256",
101
+ },
102
+ {
103
+ internalType: "uint256",
104
+ name: "feeGrowthInside1LastX128",
105
+ type: "uint256",
106
+ },
107
+ {
108
+ internalType: "uint128",
109
+ name: "tokensOwed0",
110
+ type: "uint128",
111
+ },
112
+ {
113
+ internalType: "uint128",
114
+ name: "tokensOwed1",
115
+ type: "uint128",
116
+ },
117
+ ],
118
+ stateMutability: "view",
119
+ type: "function",
120
+ },
121
+ {
122
+ inputs: [],
123
+ name: "protocolFees",
124
+ outputs: [
125
+ {
126
+ internalType: "uint128",
127
+ name: "token0",
128
+ type: "uint128",
129
+ },
130
+ {
131
+ internalType: "uint128",
132
+ name: "token1",
133
+ type: "uint128",
134
+ },
135
+ ],
136
+ stateMutability: "view",
137
+ type: "function",
138
+ },
139
+ {
140
+ inputs: [],
141
+ name: "slot0",
142
+ outputs: [
143
+ {
144
+ internalType: "uint160",
145
+ name: "sqrtPriceX96",
146
+ type: "uint160",
147
+ },
148
+ {
149
+ internalType: "int24",
150
+ name: "tick",
151
+ type: "int24",
152
+ },
153
+ {
154
+ internalType: "uint16",
155
+ name: "observationIndex",
156
+ type: "uint16",
157
+ },
158
+ {
159
+ internalType: "uint16",
160
+ name: "observationCardinality",
161
+ type: "uint16",
162
+ },
163
+ {
164
+ internalType: "uint16",
165
+ name: "observationCardinalityNext",
166
+ type: "uint16",
167
+ },
168
+ {
169
+ internalType: "uint8",
170
+ name: "feeProtocol",
171
+ type: "uint8",
172
+ },
173
+ {
174
+ internalType: "bool",
175
+ name: "unlocked",
176
+ type: "bool",
177
+ },
178
+ ],
179
+ stateMutability: "view",
180
+ type: "function",
181
+ },
182
+ {
183
+ inputs: [
184
+ {
185
+ internalType: "int16",
186
+ name: "wordPosition",
187
+ type: "int16",
188
+ },
189
+ ],
190
+ name: "tickBitmap",
191
+ outputs: [
192
+ {
193
+ internalType: "uint256",
194
+ name: "",
195
+ type: "uint256",
196
+ },
197
+ ],
198
+ stateMutability: "view",
199
+ type: "function",
200
+ },
201
+ {
202
+ inputs: [
203
+ {
204
+ internalType: "int24",
205
+ name: "tick",
206
+ type: "int24",
207
+ },
208
+ ],
209
+ name: "ticks",
210
+ outputs: [
211
+ {
212
+ internalType: "uint128",
213
+ name: "liquidityGross",
214
+ type: "uint128",
215
+ },
216
+ {
217
+ internalType: "int128",
218
+ name: "liquidityNet",
219
+ type: "int128",
220
+ },
221
+ {
222
+ internalType: "uint256",
223
+ name: "feeGrowthOutside0X128",
224
+ type: "uint256",
225
+ },
226
+ {
227
+ internalType: "uint256",
228
+ name: "feeGrowthOutside1X128",
229
+ type: "uint256",
230
+ },
231
+ {
232
+ internalType: "int56",
233
+ name: "tickCumulativeOutside",
234
+ type: "int56",
235
+ },
236
+ {
237
+ internalType: "uint160",
238
+ name: "secondsPerLiquidityOutsideX128",
239
+ type: "uint160",
240
+ },
241
+ {
242
+ internalType: "uint32",
243
+ name: "secondsOutside",
244
+ type: "uint32",
245
+ },
246
+ {
247
+ internalType: "bool",
248
+ name: "initialized",
249
+ type: "bool",
250
+ },
251
+ ],
252
+ stateMutability: "view",
253
+ type: "function",
254
+ },
255
+ ];
256
+ var IUniswapV3PoolState__factory = exports.IUniswapV3PoolState__factory = /** @class */ (function () {
257
+ function IUniswapV3PoolState__factory() {
258
+ }
259
+ IUniswapV3PoolState__factory.createInterface = function () {
260
+ return new ethers_1.utils.Interface(_abi);
261
+ };
262
+ IUniswapV3PoolState__factory.connect = function (address, signerOrProvider) {
263
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
264
+ };
265
+ IUniswapV3PoolState__factory.abi = _abi;
266
+ return IUniswapV3PoolState__factory;
267
+ }());