televerse-dao-typechain-types 1.0.5 → 1.0.6-alpha.2

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 (216) hide show
  1. package/package.json +28 -6
  2. package/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
  3. package/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
  4. package/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
  5. package/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
  6. package/typechain-types/@openzeppelin/contracts/governance/Governor.d.ts +635 -0
  7. package/typechain-types/@openzeppelin/contracts/governance/IGovernor.d.ts +488 -0
  8. package/typechain-types/@openzeppelin/contracts/governance/TimelockController.d.ts +526 -0
  9. package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.d.ts +663 -0
  10. package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorSettings.d.ts +720 -0
  11. package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.d.ts +662 -0
  12. package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorVotes.d.ts +639 -0
  13. package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.d.ts +688 -0
  14. package/typechain-types/@openzeppelin/contracts/governance/extensions/index.d.ts +5 -0
  15. package/typechain-types/@openzeppelin/contracts/governance/index.d.ts +7 -0
  16. package/typechain-types/@openzeppelin/contracts/governance/utils/IVotes.d.ts +134 -0
  17. package/typechain-types/@openzeppelin/contracts/governance/utils/Votes.d.ts +201 -0
  18. package/typechain-types/@openzeppelin/contracts/governance/utils/index.d.ts +2 -0
  19. package/typechain-types/@openzeppelin/contracts/index.d.ts +10 -0
  20. package/typechain-types/@openzeppelin/contracts/interfaces/IERC1271.d.ts +35 -0
  21. package/typechain-types/@openzeppelin/contracts/interfaces/IERC3156FlashBorrower.d.ts +41 -0
  22. package/typechain-types/@openzeppelin/contracts/interfaces/IERC3156FlashLender.d.ts +57 -0
  23. package/typechain-types/@openzeppelin/contracts/interfaces/IERC4906.d.ts +231 -0
  24. package/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
  25. package/typechain-types/@openzeppelin/contracts/interfaces/IERC5805.d.ts +142 -0
  26. package/typechain-types/@openzeppelin/contracts/interfaces/IERC6372.d.ts +29 -0
  27. package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
  28. package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
  29. package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
  30. package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
  31. package/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +9 -0
  32. package/typechain-types/@openzeppelin/contracts/token/ERC1155/ERC1155.d.ts +236 -0
  33. package/typechain-types/@openzeppelin/contracts/token/ERC1155/IERC1155.d.ts +232 -0
  34. package/typechain-types/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.d.ts +75 -0
  35. package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.d.ts +268 -0
  36. package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.d.ts +268 -0
  37. package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.d.ts +252 -0
  38. package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.d.ts +236 -0
  39. package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/index.d.ts +4 -0
  40. package/typechain-types/@openzeppelin/contracts/token/ERC1155/index.d.ts +7 -0
  41. package/typechain-types/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.d.ts +75 -0
  42. package/typechain-types/@openzeppelin/contracts/token/ERC1155/utils/index.d.ts +1 -0
  43. package/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
  44. package/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
  45. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.d.ts +159 -0
  46. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20FlashMint.d.ts +177 -0
  47. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.d.ts +173 -0
  48. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
  49. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.d.ts +347 -0
  50. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
  51. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
  52. package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +7 -0
  53. package/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
  54. package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
  55. package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
  56. package/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
  57. package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
  58. package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
  59. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.d.ts +215 -0
  60. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
  61. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.d.ts +243 -0
  62. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.d.ts +243 -0
  63. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
  64. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
  65. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +6 -0
  66. package/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
  67. package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
  68. package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
  69. package/typechain-types/@openzeppelin/contracts/token/index.d.ts +6 -0
  70. package/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
  71. package/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
  72. package/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
  73. package/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
  74. package/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
  75. package/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
  76. package/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
  77. package/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
  78. package/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
  79. package/typechain-types/@openzeppelin/contracts/utils/index.d.ts +14 -0
  80. package/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
  81. package/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
  82. package/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
  83. package/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
  84. package/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
  85. package/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
  86. package/typechain-types/@openzeppelin/contracts/utils/structs/Checkpoints.d.ts +20 -0
  87. package/typechain-types/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.d.ts +20 -0
  88. package/typechain-types/@openzeppelin/contracts/utils/structs/index.d.ts +2 -0
  89. package/typechain-types/@openzeppelin/index.d.ts +2 -0
  90. package/typechain-types/common.d.ts +50 -0
  91. package/typechain-types/contracts/index.d.ts +6 -0
  92. package/typechain-types/contracts/mocks/MockToken20.d.ts +522 -0
  93. package/typechain-types/contracts/mocks/MockToken202.d.ts +522 -0
  94. package/typechain-types/contracts/mocks/index.d.ts +2 -0
  95. package/typechain-types/contracts/televerse/CommitteeElection.d.ts +308 -0
  96. package/typechain-types/contracts/televerse/ContractService.d.ts +592 -0
  97. package/typechain-types/contracts/televerse/DummyGovToken.d.ts +383 -0
  98. package/typechain-types/contracts/televerse/Governance.d.ts +1175 -0
  99. package/typechain-types/contracts/televerse/Location.d.ts +267 -0
  100. package/typechain-types/contracts/televerse/TeleverseDaoToken.sol/TeleverseDAOToken.d.ts +313 -0
  101. package/typechain-types/contracts/televerse/TeleverseDaoToken.sol/index.d.ts +1 -0
  102. package/typechain-types/contracts/televerse/TeleverseToken.d.ts +607 -0
  103. package/typechain-types/contracts/televerse/index.d.ts +8 -0
  104. package/typechain-types/contracts/tokens/GovernanceToken.d.ts +446 -0
  105. package/typechain-types/contracts/tokens/Token1155.d.ts +395 -0
  106. package/typechain-types/contracts/tokens/Token20.d.ts +522 -0
  107. package/typechain-types/contracts/tokens/Token721.d.ts +349 -0
  108. package/typechain-types/contracts/tokens/index.d.ts +4 -0
  109. package/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
  110. package/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
  111. package/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
  112. package/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
  113. package/typechain-types/factories/@openzeppelin/contracts/governance/Governor__factory.d.ts +1023 -0
  114. package/typechain-types/factories/@openzeppelin/contracts/governance/IGovernor__factory.d.ts +795 -0
  115. package/typechain-types/factories/@openzeppelin/contracts/governance/TimelockController__factory.d.ts +791 -0
  116. package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple__factory.d.ts +1045 -0
  117. package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorSettings__factory.d.ts +1098 -0
  118. package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl__factory.d.ts +1058 -0
  119. package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction__factory.d.ts +1108 -0
  120. package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorVotes__factory.d.ts +1033 -0
  121. package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/index.d.ts +5 -0
  122. package/typechain-types/factories/@openzeppelin/contracts/governance/index.d.ts +5 -0
  123. package/typechain-types/factories/@openzeppelin/contracts/governance/utils/IVotes__factory.d.ts +155 -0
  124. package/typechain-types/factories/@openzeppelin/contracts/governance/utils/Votes__factory.d.ts +304 -0
  125. package/typechain-types/factories/@openzeppelin/contracts/governance/utils/index.d.ts +2 -0
  126. package/typechain-types/factories/@openzeppelin/contracts/index.d.ts +5 -0
  127. package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1271__factory.d.ts +25 -0
  128. package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC3156FlashBorrower__factory.d.ts +37 -0
  129. package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC3156FlashLender__factory.d.ts +65 -0
  130. package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4906__factory.d.ts +252 -0
  131. package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
  132. package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5805__factory.d.ts +175 -0
  133. package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC6372__factory.d.ts +27 -0
  134. package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
  135. package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
  136. package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
  137. package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
  138. package/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +8 -0
  139. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/ERC1155__factory.d.ts +326 -0
  140. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver__factory.d.ts +81 -0
  141. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/IERC1155__factory.d.ts +236 -0
  142. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable__factory.d.ts +362 -0
  143. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable__factory.d.ts +364 -0
  144. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply__factory.d.ts +364 -0
  145. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI__factory.d.ts +250 -0
  146. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/index.d.ts +4 -0
  147. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/index.d.ts +5 -0
  148. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder__factory.d.ts +81 -0
  149. package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/utils/index.d.ts +1 -0
  150. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
  151. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
  152. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable__factory.d.ts +265 -0
  153. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20FlashMint__factory.d.ts +323 -0
  154. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable__factory.d.ts +279 -0
  155. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
  156. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes__factory.d.ts +591 -0
  157. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
  158. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
  159. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +7 -0
  160. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
  161. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
  162. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
  163. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
  164. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
  165. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
  166. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable__factory.d.ts +347 -0
  167. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
  168. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable__factory.d.ts +375 -0
  169. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage__factory.d.ts +362 -0
  170. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
  171. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
  172. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +6 -0
  173. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
  174. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
  175. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
  176. package/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +3 -0
  177. package/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
  178. package/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
  179. package/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
  180. package/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
  181. package/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
  182. package/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
  183. package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
  184. package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
  185. package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
  186. package/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +10 -0
  187. package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
  188. package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
  189. package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
  190. package/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
  191. package/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
  192. package/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
  193. package/typechain-types/factories/@openzeppelin/contracts/utils/structs/Checkpoints__factory.d.ts +26 -0
  194. package/typechain-types/factories/@openzeppelin/contracts/utils/structs/DoubleEndedQueue__factory.d.ts +34 -0
  195. package/typechain-types/factories/@openzeppelin/contracts/utils/structs/index.d.ts +2 -0
  196. package/typechain-types/factories/@openzeppelin/index.d.ts +1 -0
  197. package/typechain-types/factories/contracts/index.d.ts +3 -0
  198. package/typechain-types/factories/contracts/mocks/MockToken202__factory.d.ts +921 -0
  199. package/typechain-types/factories/contracts/mocks/MockToken20__factory.d.ts +921 -0
  200. package/typechain-types/factories/contracts/mocks/index.d.ts +2 -0
  201. package/typechain-types/factories/contracts/televerse/CommitteeElection__factory.d.ts +407 -0
  202. package/typechain-types/factories/contracts/televerse/ContractService__factory.d.ts +896 -0
  203. package/typechain-types/factories/contracts/televerse/DummyGovToken__factory.d.ts +682 -0
  204. package/typechain-types/factories/contracts/televerse/Governance__factory.d.ts +1770 -0
  205. package/typechain-types/factories/contracts/televerse/Location__factory.d.ts +342 -0
  206. package/typechain-types/factories/contracts/televerse/TeleverseDaoToken.sol/TeleverseDAOToken__factory.d.ts +490 -0
  207. package/typechain-types/factories/contracts/televerse/TeleverseDaoToken.sol/index.d.ts +1 -0
  208. package/typechain-types/factories/contracts/televerse/TeleverseToken__factory.d.ts +889 -0
  209. package/typechain-types/factories/contracts/televerse/index.d.ts +7 -0
  210. package/typechain-types/factories/contracts/tokens/GovernanceToken__factory.d.ts +771 -0
  211. package/typechain-types/factories/contracts/tokens/Token1155__factory.d.ts +584 -0
  212. package/typechain-types/factories/contracts/tokens/Token20__factory.d.ts +913 -0
  213. package/typechain-types/factories/contracts/tokens/Token721__factory.d.ts +582 -0
  214. package/typechain-types/factories/contracts/tokens/index.d.ts +4 -0
  215. package/typechain-types/factories/index.d.ts +2 -0
  216. package/typechain-types/index.d.ts +161 -0
@@ -0,0 +1,261 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { IERC721Metadata, IERC721MetadataInterface } from "../../../../../../@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata";
3
+ export declare class IERC721Metadata__factory {
4
+ static readonly abi: readonly [{
5
+ readonly anonymous: false;
6
+ readonly inputs: readonly [{
7
+ readonly indexed: true;
8
+ readonly internalType: "address";
9
+ readonly name: "owner";
10
+ readonly type: "address";
11
+ }, {
12
+ readonly indexed: true;
13
+ readonly internalType: "address";
14
+ readonly name: "approved";
15
+ readonly type: "address";
16
+ }, {
17
+ readonly indexed: true;
18
+ readonly internalType: "uint256";
19
+ readonly name: "tokenId";
20
+ readonly type: "uint256";
21
+ }];
22
+ readonly name: "Approval";
23
+ readonly type: "event";
24
+ }, {
25
+ readonly anonymous: false;
26
+ readonly inputs: readonly [{
27
+ readonly indexed: true;
28
+ readonly internalType: "address";
29
+ readonly name: "owner";
30
+ readonly type: "address";
31
+ }, {
32
+ readonly indexed: true;
33
+ readonly internalType: "address";
34
+ readonly name: "operator";
35
+ readonly type: "address";
36
+ }, {
37
+ readonly indexed: false;
38
+ readonly internalType: "bool";
39
+ readonly name: "approved";
40
+ readonly type: "bool";
41
+ }];
42
+ readonly name: "ApprovalForAll";
43
+ readonly type: "event";
44
+ }, {
45
+ readonly anonymous: false;
46
+ readonly inputs: readonly [{
47
+ readonly indexed: true;
48
+ readonly internalType: "address";
49
+ readonly name: "from";
50
+ readonly type: "address";
51
+ }, {
52
+ readonly indexed: true;
53
+ readonly internalType: "address";
54
+ readonly name: "to";
55
+ readonly type: "address";
56
+ }, {
57
+ readonly indexed: true;
58
+ readonly internalType: "uint256";
59
+ readonly name: "tokenId";
60
+ readonly type: "uint256";
61
+ }];
62
+ readonly name: "Transfer";
63
+ readonly type: "event";
64
+ }, {
65
+ readonly inputs: readonly [{
66
+ readonly internalType: "address";
67
+ readonly name: "to";
68
+ readonly type: "address";
69
+ }, {
70
+ readonly internalType: "uint256";
71
+ readonly name: "tokenId";
72
+ readonly type: "uint256";
73
+ }];
74
+ readonly name: "approve";
75
+ readonly outputs: readonly [];
76
+ readonly stateMutability: "nonpayable";
77
+ readonly type: "function";
78
+ }, {
79
+ readonly inputs: readonly [{
80
+ readonly internalType: "address";
81
+ readonly name: "owner";
82
+ readonly type: "address";
83
+ }];
84
+ readonly name: "balanceOf";
85
+ readonly outputs: readonly [{
86
+ readonly internalType: "uint256";
87
+ readonly name: "balance";
88
+ readonly type: "uint256";
89
+ }];
90
+ readonly stateMutability: "view";
91
+ readonly type: "function";
92
+ }, {
93
+ readonly inputs: readonly [{
94
+ readonly internalType: "uint256";
95
+ readonly name: "tokenId";
96
+ readonly type: "uint256";
97
+ }];
98
+ readonly name: "getApproved";
99
+ readonly outputs: readonly [{
100
+ readonly internalType: "address";
101
+ readonly name: "operator";
102
+ readonly type: "address";
103
+ }];
104
+ readonly stateMutability: "view";
105
+ readonly type: "function";
106
+ }, {
107
+ readonly inputs: readonly [{
108
+ readonly internalType: "address";
109
+ readonly name: "owner";
110
+ readonly type: "address";
111
+ }, {
112
+ readonly internalType: "address";
113
+ readonly name: "operator";
114
+ readonly type: "address";
115
+ }];
116
+ readonly name: "isApprovedForAll";
117
+ readonly outputs: readonly [{
118
+ readonly internalType: "bool";
119
+ readonly name: "";
120
+ readonly type: "bool";
121
+ }];
122
+ readonly stateMutability: "view";
123
+ readonly type: "function";
124
+ }, {
125
+ readonly inputs: readonly [];
126
+ readonly name: "name";
127
+ readonly outputs: readonly [{
128
+ readonly internalType: "string";
129
+ readonly name: "";
130
+ readonly type: "string";
131
+ }];
132
+ readonly stateMutability: "view";
133
+ readonly type: "function";
134
+ }, {
135
+ readonly inputs: readonly [{
136
+ readonly internalType: "uint256";
137
+ readonly name: "tokenId";
138
+ readonly type: "uint256";
139
+ }];
140
+ readonly name: "ownerOf";
141
+ readonly outputs: readonly [{
142
+ readonly internalType: "address";
143
+ readonly name: "owner";
144
+ readonly type: "address";
145
+ }];
146
+ readonly stateMutability: "view";
147
+ readonly type: "function";
148
+ }, {
149
+ readonly inputs: readonly [{
150
+ readonly internalType: "address";
151
+ readonly name: "from";
152
+ readonly type: "address";
153
+ }, {
154
+ readonly internalType: "address";
155
+ readonly name: "to";
156
+ readonly type: "address";
157
+ }, {
158
+ readonly internalType: "uint256";
159
+ readonly name: "tokenId";
160
+ readonly type: "uint256";
161
+ }];
162
+ readonly name: "safeTransferFrom";
163
+ readonly outputs: readonly [];
164
+ readonly stateMutability: "nonpayable";
165
+ readonly type: "function";
166
+ }, {
167
+ readonly inputs: readonly [{
168
+ readonly internalType: "address";
169
+ readonly name: "from";
170
+ readonly type: "address";
171
+ }, {
172
+ readonly internalType: "address";
173
+ readonly name: "to";
174
+ readonly type: "address";
175
+ }, {
176
+ readonly internalType: "uint256";
177
+ readonly name: "tokenId";
178
+ readonly type: "uint256";
179
+ }, {
180
+ readonly internalType: "bytes";
181
+ readonly name: "data";
182
+ readonly type: "bytes";
183
+ }];
184
+ readonly name: "safeTransferFrom";
185
+ readonly outputs: readonly [];
186
+ readonly stateMutability: "nonpayable";
187
+ readonly type: "function";
188
+ }, {
189
+ readonly inputs: readonly [{
190
+ readonly internalType: "address";
191
+ readonly name: "operator";
192
+ readonly type: "address";
193
+ }, {
194
+ readonly internalType: "bool";
195
+ readonly name: "approved";
196
+ readonly type: "bool";
197
+ }];
198
+ readonly name: "setApprovalForAll";
199
+ readonly outputs: readonly [];
200
+ readonly stateMutability: "nonpayable";
201
+ readonly type: "function";
202
+ }, {
203
+ readonly inputs: readonly [{
204
+ readonly internalType: "bytes4";
205
+ readonly name: "interfaceId";
206
+ readonly type: "bytes4";
207
+ }];
208
+ readonly name: "supportsInterface";
209
+ readonly outputs: readonly [{
210
+ readonly internalType: "bool";
211
+ readonly name: "";
212
+ readonly type: "bool";
213
+ }];
214
+ readonly stateMutability: "view";
215
+ readonly type: "function";
216
+ }, {
217
+ readonly inputs: readonly [];
218
+ readonly name: "symbol";
219
+ readonly outputs: readonly [{
220
+ readonly internalType: "string";
221
+ readonly name: "";
222
+ readonly type: "string";
223
+ }];
224
+ readonly stateMutability: "view";
225
+ readonly type: "function";
226
+ }, {
227
+ readonly inputs: readonly [{
228
+ readonly internalType: "uint256";
229
+ readonly name: "tokenId";
230
+ readonly type: "uint256";
231
+ }];
232
+ readonly name: "tokenURI";
233
+ readonly outputs: readonly [{
234
+ readonly internalType: "string";
235
+ readonly name: "";
236
+ readonly type: "string";
237
+ }];
238
+ readonly stateMutability: "view";
239
+ readonly type: "function";
240
+ }, {
241
+ readonly inputs: readonly [{
242
+ readonly internalType: "address";
243
+ readonly name: "from";
244
+ readonly type: "address";
245
+ }, {
246
+ readonly internalType: "address";
247
+ readonly name: "to";
248
+ readonly type: "address";
249
+ }, {
250
+ readonly internalType: "uint256";
251
+ readonly name: "tokenId";
252
+ readonly type: "uint256";
253
+ }];
254
+ readonly name: "transferFrom";
255
+ readonly outputs: readonly [];
256
+ readonly stateMutability: "nonpayable";
257
+ readonly type: "function";
258
+ }];
259
+ static createInterface(): IERC721MetadataInterface;
260
+ static connect(address: string, runner?: ContractRunner | null): IERC721Metadata;
261
+ }
@@ -0,0 +1,6 @@
1
+ export { ERC721Burnable__factory } from "./ERC721Burnable__factory";
2
+ export { ERC721Enumerable__factory } from "./ERC721Enumerable__factory";
3
+ export { ERC721Pausable__factory } from "./ERC721Pausable__factory";
4
+ export { ERC721URIStorage__factory } from "./ERC721URIStorage__factory";
5
+ export { IERC721Enumerable__factory } from "./IERC721Enumerable__factory";
6
+ export { IERC721Metadata__factory } from "./IERC721Metadata__factory";
@@ -0,0 +1,5 @@
1
+ export * as extensions from "./extensions";
2
+ export * as utils from "./utils";
3
+ export { ERC721__factory } from "./ERC721__factory";
4
+ export { IERC721__factory } from "./IERC721__factory";
5
+ export { IERC721Receiver__factory } from "./IERC721Receiver__factory";
@@ -0,0 +1,33 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { ERC721Holder, ERC721HolderInterface } from "../../../../../../@openzeppelin/contracts/token/ERC721/utils/ERC721Holder";
3
+ export declare class ERC721Holder__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [{
6
+ readonly internalType: "address";
7
+ readonly name: "";
8
+ readonly type: "address";
9
+ }, {
10
+ readonly internalType: "address";
11
+ readonly name: "";
12
+ readonly type: "address";
13
+ }, {
14
+ readonly internalType: "uint256";
15
+ readonly name: "";
16
+ readonly type: "uint256";
17
+ }, {
18
+ readonly internalType: "bytes";
19
+ readonly name: "";
20
+ readonly type: "bytes";
21
+ }];
22
+ readonly name: "onERC721Received";
23
+ readonly outputs: readonly [{
24
+ readonly internalType: "bytes4";
25
+ readonly name: "";
26
+ readonly type: "bytes4";
27
+ }];
28
+ readonly stateMutability: "nonpayable";
29
+ readonly type: "function";
30
+ }];
31
+ static createInterface(): ERC721HolderInterface;
32
+ static connect(address: string, runner?: ContractRunner | null): ERC721Holder;
33
+ }
@@ -0,0 +1 @@
1
+ export { ERC721Holder__factory } from "./ERC721Holder__factory";
@@ -0,0 +1,3 @@
1
+ export * as erc1155 from "./ERC1155";
2
+ export * as erc20 from "./ERC20";
3
+ export * as erc721 from "./ERC721";
@@ -0,0 +1,42 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../../../../common";
4
+ import type { Address, AddressInterface } from "../../../../@openzeppelin/contracts/utils/Address";
5
+ type AddressConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class Address__factory extends ContractFactory {
7
+ constructor(...args: AddressConstructorParams);
8
+ getDeployTransaction(overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<Address & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): Address__factory;
17
+ static readonly bytecode = "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220b456ea1dd0696c499ee97184ece1f3b9257372aa154e356e85b471d0613ddb6b64736f6c63430008140033";
18
+ static readonly abi: readonly [{
19
+ readonly inputs: readonly [{
20
+ readonly internalType: "address";
21
+ readonly name: "target";
22
+ readonly type: "address";
23
+ }];
24
+ readonly name: "AddressEmptyCode";
25
+ readonly type: "error";
26
+ }, {
27
+ readonly inputs: readonly [{
28
+ readonly internalType: "address";
29
+ readonly name: "account";
30
+ readonly type: "address";
31
+ }];
32
+ readonly name: "AddressInsufficientBalance";
33
+ readonly type: "error";
34
+ }, {
35
+ readonly inputs: readonly [];
36
+ readonly name: "FailedInnerCall";
37
+ readonly type: "error";
38
+ }];
39
+ static createInterface(): AddressInterface;
40
+ static connect(address: string, runner?: ContractRunner | null): Address;
41
+ }
42
+ export {};
@@ -0,0 +1,33 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { Nonces, NoncesInterface } from "../../../../@openzeppelin/contracts/utils/Nonces";
3
+ export declare class Nonces__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [{
6
+ readonly internalType: "address";
7
+ readonly name: "account";
8
+ readonly type: "address";
9
+ }, {
10
+ readonly internalType: "uint256";
11
+ readonly name: "currentNonce";
12
+ readonly type: "uint256";
13
+ }];
14
+ readonly name: "InvalidAccountNonce";
15
+ readonly type: "error";
16
+ }, {
17
+ readonly inputs: readonly [{
18
+ readonly internalType: "address";
19
+ readonly name: "owner";
20
+ readonly type: "address";
21
+ }];
22
+ readonly name: "nonces";
23
+ readonly outputs: readonly [{
24
+ readonly internalType: "uint256";
25
+ readonly name: "";
26
+ readonly type: "uint256";
27
+ }];
28
+ readonly stateMutability: "view";
29
+ readonly type: "function";
30
+ }];
31
+ static createInterface(): NoncesInterface;
32
+ static connect(address: string, runner?: ContractRunner | null): Nonces;
33
+ }
@@ -0,0 +1,45 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { Pausable, PausableInterface } from "../../../../@openzeppelin/contracts/utils/Pausable";
3
+ export declare class Pausable__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [];
6
+ readonly name: "EnforcedPause";
7
+ readonly type: "error";
8
+ }, {
9
+ readonly inputs: readonly [];
10
+ readonly name: "ExpectedPause";
11
+ readonly type: "error";
12
+ }, {
13
+ readonly anonymous: false;
14
+ readonly inputs: readonly [{
15
+ readonly indexed: false;
16
+ readonly internalType: "address";
17
+ readonly name: "account";
18
+ readonly type: "address";
19
+ }];
20
+ readonly name: "Paused";
21
+ readonly type: "event";
22
+ }, {
23
+ readonly anonymous: false;
24
+ readonly inputs: readonly [{
25
+ readonly indexed: false;
26
+ readonly internalType: "address";
27
+ readonly name: "account";
28
+ readonly type: "address";
29
+ }];
30
+ readonly name: "Unpaused";
31
+ readonly type: "event";
32
+ }, {
33
+ readonly inputs: readonly [];
34
+ readonly name: "paused";
35
+ readonly outputs: readonly [{
36
+ readonly internalType: "bool";
37
+ readonly name: "";
38
+ readonly type: "bool";
39
+ }];
40
+ readonly stateMutability: "view";
41
+ readonly type: "function";
42
+ }];
43
+ static createInterface(): PausableInterface;
44
+ static connect(address: string, runner?: ContractRunner | null): Pausable;
45
+ }
@@ -0,0 +1,11 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { ReentrancyGuard, ReentrancyGuardInterface } from "../../../../@openzeppelin/contracts/utils/ReentrancyGuard";
3
+ export declare class ReentrancyGuard__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [];
6
+ readonly name: "ReentrancyGuardReentrantCall";
7
+ readonly type: "error";
8
+ }];
9
+ static createInterface(): ReentrancyGuardInterface;
10
+ static connect(address: string, runner?: ContractRunner | null): ReentrancyGuard;
11
+ }
@@ -0,0 +1,34 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../../../../common";
4
+ import type { ShortStrings, ShortStringsInterface } from "../../../../@openzeppelin/contracts/utils/ShortStrings";
5
+ type ShortStringsConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class ShortStrings__factory extends ContractFactory {
7
+ constructor(...args: ShortStringsConstructorParams);
8
+ getDeployTransaction(overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<ShortStrings & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): ShortStrings__factory;
17
+ static readonly bytecode = "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212204142a79a183a5e2235ce28d53b0416d794ece90937565826428ee8fff8d53fab64736f6c63430008140033";
18
+ static readonly abi: readonly [{
19
+ readonly inputs: readonly [];
20
+ readonly name: "InvalidShortString";
21
+ readonly type: "error";
22
+ }, {
23
+ readonly inputs: readonly [{
24
+ readonly internalType: "string";
25
+ readonly name: "str";
26
+ readonly type: "string";
27
+ }];
28
+ readonly name: "StringTooLong";
29
+ readonly type: "error";
30
+ }];
31
+ static createInterface(): ShortStringsInterface;
32
+ static connect(address: string, runner?: ContractRunner | null): ShortStrings;
33
+ }
34
+ export {};
@@ -0,0 +1,34 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../../../../common";
4
+ import type { Strings, StringsInterface } from "../../../../@openzeppelin/contracts/utils/Strings";
5
+ type StringsConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class Strings__factory extends ContractFactory {
7
+ constructor(...args: StringsConstructorParams);
8
+ getDeployTransaction(overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<Strings & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): Strings__factory;
17
+ static readonly bytecode = "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220c8bdbc4a255ae0f53c6a5944e7525adbce75a57e972e2459d67903feae388e2e64736f6c63430008140033";
18
+ static readonly abi: readonly [{
19
+ readonly inputs: readonly [{
20
+ readonly internalType: "uint256";
21
+ readonly name: "value";
22
+ readonly type: "uint256";
23
+ }, {
24
+ readonly internalType: "uint256";
25
+ readonly name: "length";
26
+ readonly type: "uint256";
27
+ }];
28
+ readonly name: "StringsInsufficientHexLength";
29
+ readonly type: "error";
30
+ }];
31
+ static createInterface(): StringsInterface;
32
+ static connect(address: string, runner?: ContractRunner | null): Strings;
33
+ }
34
+ export {};
@@ -0,0 +1,42 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../../../../../common";
4
+ import type { ECDSA, ECDSAInterface } from "../../../../../@openzeppelin/contracts/utils/cryptography/ECDSA";
5
+ type ECDSAConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class ECDSA__factory extends ContractFactory {
7
+ constructor(...args: ECDSAConstructorParams);
8
+ getDeployTransaction(overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<ECDSA & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): ECDSA__factory;
17
+ static readonly bytecode = "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea264697066735822122080bf14de2fa251a8ec728f0c343fd248a1e7999a4bd5b67a8cccf52ab65b382764736f6c63430008140033";
18
+ static readonly abi: readonly [{
19
+ readonly inputs: readonly [];
20
+ readonly name: "ECDSAInvalidSignature";
21
+ readonly type: "error";
22
+ }, {
23
+ readonly inputs: readonly [{
24
+ readonly internalType: "uint256";
25
+ readonly name: "length";
26
+ readonly type: "uint256";
27
+ }];
28
+ readonly name: "ECDSAInvalidSignatureLength";
29
+ readonly type: "error";
30
+ }, {
31
+ readonly inputs: readonly [{
32
+ readonly internalType: "bytes32";
33
+ readonly name: "s";
34
+ readonly type: "bytes32";
35
+ }];
36
+ readonly name: "ECDSAInvalidSignatureS";
37
+ readonly type: "error";
38
+ }];
39
+ static createInterface(): ECDSAInterface;
40
+ static connect(address: string, runner?: ContractRunner | null): ECDSA;
41
+ }
42
+ export {};
@@ -0,0 +1,58 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { EIP712, EIP712Interface } from "../../../../../@openzeppelin/contracts/utils/cryptography/EIP712";
3
+ export declare class EIP712__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [];
6
+ readonly name: "InvalidShortString";
7
+ readonly type: "error";
8
+ }, {
9
+ readonly inputs: readonly [{
10
+ readonly internalType: "string";
11
+ readonly name: "str";
12
+ readonly type: "string";
13
+ }];
14
+ readonly name: "StringTooLong";
15
+ readonly type: "error";
16
+ }, {
17
+ readonly anonymous: false;
18
+ readonly inputs: readonly [];
19
+ readonly name: "EIP712DomainChanged";
20
+ readonly type: "event";
21
+ }, {
22
+ readonly inputs: readonly [];
23
+ readonly name: "eip712Domain";
24
+ readonly outputs: readonly [{
25
+ readonly internalType: "bytes1";
26
+ readonly name: "fields";
27
+ readonly type: "bytes1";
28
+ }, {
29
+ readonly internalType: "string";
30
+ readonly name: "name";
31
+ readonly type: "string";
32
+ }, {
33
+ readonly internalType: "string";
34
+ readonly name: "version";
35
+ readonly type: "string";
36
+ }, {
37
+ readonly internalType: "uint256";
38
+ readonly name: "chainId";
39
+ readonly type: "uint256";
40
+ }, {
41
+ readonly internalType: "address";
42
+ readonly name: "verifyingContract";
43
+ readonly type: "address";
44
+ }, {
45
+ readonly internalType: "bytes32";
46
+ readonly name: "salt";
47
+ readonly type: "bytes32";
48
+ }, {
49
+ readonly internalType: "uint256[]";
50
+ readonly name: "extensions";
51
+ readonly type: "uint256[]";
52
+ }];
53
+ readonly stateMutability: "view";
54
+ readonly type: "function";
55
+ }];
56
+ static createInterface(): EIP712Interface;
57
+ static connect(address: string, runner?: ContractRunner | null): EIP712;
58
+ }
@@ -0,0 +1,2 @@
1
+ export { ECDSA__factory } from "./ECDSA__factory";
2
+ export { EIP712__factory } from "./EIP712__factory";
@@ -0,0 +1,10 @@
1
+ export * as cryptography from "./cryptography";
2
+ export * as introspection from "./introspection";
3
+ export * as math from "./math";
4
+ export * as structs from "./structs";
5
+ export { Address__factory } from "./Address__factory";
6
+ export { Nonces__factory } from "./Nonces__factory";
7
+ export { Pausable__factory } from "./Pausable__factory";
8
+ export { ReentrancyGuard__factory } from "./ReentrancyGuard__factory";
9
+ export { ShortStrings__factory } from "./ShortStrings__factory";
10
+ export { Strings__factory } from "./Strings__factory";
@@ -0,0 +1,21 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { ERC165, ERC165Interface } from "../../../../../@openzeppelin/contracts/utils/introspection/ERC165";
3
+ export declare class ERC165__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [{
6
+ readonly internalType: "bytes4";
7
+ readonly name: "interfaceId";
8
+ readonly type: "bytes4";
9
+ }];
10
+ readonly name: "supportsInterface";
11
+ readonly outputs: readonly [{
12
+ readonly internalType: "bool";
13
+ readonly name: "";
14
+ readonly type: "bool";
15
+ }];
16
+ readonly stateMutability: "view";
17
+ readonly type: "function";
18
+ }];
19
+ static createInterface(): ERC165Interface;
20
+ static connect(address: string, runner?: ContractRunner | null): ERC165;
21
+ }