@web3dotorg/evm-slc-core-sdk 0.3.8 → 0.3.10

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 (273) hide show
  1. package/lib.commonjs/common.d.ts +50 -0
  2. package/lib.commonjs/common.js +2 -0
  3. package/lib.commonjs/constants.d.ts +23 -0
  4. package/lib.commonjs/constants.js +32 -0
  5. package/lib.commonjs/contracts/governance/ExecutorsRegistry.d.ts +597 -0
  6. package/lib.commonjs/contracts/governance/ExecutorsRegistry.js +2 -0
  7. package/lib.commonjs/contracts/governance/Governance.d.ts +987 -0
  8. package/lib.commonjs/contracts/governance/Governance.js +2 -0
  9. package/lib.commonjs/contracts/governance/NeutralsRegistry.d.ts +718 -0
  10. package/lib.commonjs/contracts/governance/NeutralsRegistry.js +2 -0
  11. package/lib.commonjs/contracts/governance/ParameterRegistry.d.ts +427 -0
  12. package/lib.commonjs/contracts/governance/ParameterRegistry.js +2 -0
  13. package/{contracts/governance/index.ts → lib.commonjs/contracts/governance/index.d.ts} +0 -3
  14. package/lib.commonjs/contracts/governance/index.js +2 -0
  15. package/{contracts/index.ts → lib.commonjs/contracts/index.d.ts} +0 -3
  16. package/lib.commonjs/contracts/index.js +2 -0
  17. package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
  18. package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.js +2 -0
  19. package/lib.commonjs/contracts/interfaces/IGovernance.d.ts +99 -0
  20. package/lib.commonjs/contracts/interfaces/IGovernance.js +2 -0
  21. package/lib.commonjs/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
  22. package/lib.commonjs/contracts/interfaces/INeutralsRegistry.js +2 -0
  23. package/lib.commonjs/contracts/interfaces/IQParameters.d.ts +38 -0
  24. package/lib.commonjs/contracts/interfaces/IQParameters.js +2 -0
  25. package/lib.commonjs/contracts/interfaces/ISLCCore.d.ts +137 -0
  26. package/lib.commonjs/contracts/interfaces/ISLCCore.js +2 -0
  27. package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
  28. package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.js +2 -0
  29. package/lib.commonjs/contracts/interfaces/IWrappedToken.d.ts +134 -0
  30. package/lib.commonjs/contracts/interfaces/IWrappedToken.js +2 -0
  31. package/{contracts/interfaces/index.ts → lib.commonjs/contracts/interfaces/index.d.ts} +0 -3
  32. package/lib.commonjs/contracts/interfaces/index.js +2 -0
  33. package/lib.commonjs/contracts/libs/Errors.d.ts +21 -0
  34. package/lib.commonjs/contracts/libs/Errors.js +2 -0
  35. package/lib.commonjs/contracts/libs/NeutralsSelection.d.ts +21 -0
  36. package/lib.commonjs/contracts/libs/NeutralsSelection.js +2 -0
  37. package/{contracts/libs/index.ts → lib.commonjs/contracts/libs/index.d.ts} +0 -3
  38. package/lib.commonjs/contracts/libs/index.js +2 -0
  39. package/lib.commonjs/contracts/mocks/MockGovernance.d.ts +201 -0
  40. package/lib.commonjs/contracts/mocks/MockGovernance.js +2 -0
  41. package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
  42. package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.js +2 -0
  43. package/lib.commonjs/contracts/mocks/SimpleContract.d.ts +38 -0
  44. package/lib.commonjs/contracts/mocks/SimpleContract.js +2 -0
  45. package/lib.commonjs/contracts/mocks/WrappedToken.d.ts +174 -0
  46. package/lib.commonjs/contracts/mocks/WrappedToken.js +2 -0
  47. package/{contracts/mocks/index.ts → lib.commonjs/contracts/mocks/index.d.ts} +0 -3
  48. package/lib.commonjs/contracts/mocks/index.js +2 -0
  49. package/lib.commonjs/contracts/slc-core/SLCCore.d.ts +198 -0
  50. package/lib.commonjs/contracts/slc-core/SLCCore.js +2 -0
  51. package/lib.commonjs/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
  52. package/lib.commonjs/contracts/slc-core/SLCCoreFactory.js +2 -0
  53. package/{contracts/slc-core/index.ts → lib.commonjs/contracts/slc-core/index.d.ts} +0 -3
  54. package/lib.commonjs/contracts/slc-core/index.js +2 -0
  55. package/lib.commonjs/contracts/token/Token.d.ts +201 -0
  56. package/lib.commonjs/contracts/token/Token.js +2 -0
  57. package/lib.commonjs/contracts/token/index.d.ts +1 -0
  58. package/lib.commonjs/contracts/token/index.js +2 -0
  59. package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
  60. package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.js +1211 -0
  61. package/lib.commonjs/factories/contracts/governance/Governance__factory.d.ts +1740 -0
  62. package/lib.commonjs/factories/contracts/governance/Governance__factory.js +2286 -0
  63. package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
  64. package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.js +1486 -0
  65. package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
  66. package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.js +805 -0
  67. package/lib.commonjs/factories/contracts/governance/index.d.ts +4 -0
  68. package/lib.commonjs/factories/contracts/governance/index.js +14 -0
  69. package/lib.commonjs/factories/contracts/index.d.ts +6 -0
  70. package/lib.commonjs/factories/contracts/index.js +35 -0
  71. package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
  72. package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.js +422 -0
  73. package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
  74. package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.js +150 -0
  75. package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
  76. package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.js +521 -0
  77. package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
  78. package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.js +95 -0
  79. package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
  80. package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.js +191 -0
  81. package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
  82. package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.js +224 -0
  83. package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
  84. package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.js +215 -0
  85. package/lib.commonjs/factories/contracts/interfaces/index.d.ts +7 -0
  86. package/lib.commonjs/factories/contracts/interfaces/index.js +20 -0
  87. package/lib.commonjs/factories/contracts/libs/Errors__factory.d.ts +128 -0
  88. package/lib.commonjs/factories/contracts/libs/Errors__factory.js +182 -0
  89. package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
  90. package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.js +74 -0
  91. package/lib.commonjs/factories/contracts/libs/index.d.ts +2 -0
  92. package/lib.commonjs/factories/contracts/libs/index.js +10 -0
  93. package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
  94. package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.js +324 -0
  95. package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
  96. package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.js +695 -0
  97. package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
  98. package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.js +81 -0
  99. package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
  100. package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.js +404 -0
  101. package/lib.commonjs/factories/contracts/mocks/index.d.ts +4 -0
  102. package/lib.commonjs/factories/contracts/mocks/index.js +14 -0
  103. package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
  104. package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.js +539 -0
  105. package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
  106. package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.js +347 -0
  107. package/lib.commonjs/factories/contracts/slc-core/index.d.ts +2 -0
  108. package/lib.commonjs/factories/contracts/slc-core/index.js +10 -0
  109. package/lib.commonjs/factories/contracts/token/Token__factory.d.ts +355 -0
  110. package/lib.commonjs/factories/contracts/token/Token__factory.js +476 -0
  111. package/lib.commonjs/factories/contracts/token/index.d.ts +1 -0
  112. package/lib.commonjs/factories/contracts/token/index.js +8 -0
  113. package/lib.commonjs/index.d.ts +5 -0
  114. package/lib.commonjs/index.js +23 -0
  115. package/lib.esm/common.d.ts +50 -0
  116. package/lib.esm/common.js +1 -0
  117. package/lib.esm/constants.d.ts +23 -0
  118. package/lib.esm/constants.js +29 -0
  119. package/lib.esm/contracts/governance/ExecutorsRegistry.d.ts +597 -0
  120. package/lib.esm/contracts/governance/ExecutorsRegistry.js +1 -0
  121. package/lib.esm/contracts/governance/Governance.d.ts +987 -0
  122. package/lib.esm/contracts/governance/Governance.js +1 -0
  123. package/lib.esm/contracts/governance/NeutralsRegistry.d.ts +718 -0
  124. package/lib.esm/contracts/governance/NeutralsRegistry.js +1 -0
  125. package/lib.esm/contracts/governance/ParameterRegistry.d.ts +427 -0
  126. package/lib.esm/contracts/governance/ParameterRegistry.js +1 -0
  127. package/lib.esm/contracts/governance/index.d.ts +4 -0
  128. package/lib.esm/contracts/governance/index.js +1 -0
  129. package/lib.esm/contracts/index.d.ts +12 -0
  130. package/lib.esm/contracts/index.js +1 -0
  131. package/lib.esm/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
  132. package/lib.esm/contracts/interfaces/IExecutorsRegistry.js +1 -0
  133. package/lib.esm/contracts/interfaces/IGovernance.d.ts +99 -0
  134. package/lib.esm/contracts/interfaces/IGovernance.js +1 -0
  135. package/lib.esm/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
  136. package/lib.esm/contracts/interfaces/INeutralsRegistry.js +1 -0
  137. package/lib.esm/contracts/interfaces/IQParameters.d.ts +38 -0
  138. package/lib.esm/contracts/interfaces/IQParameters.js +1 -0
  139. package/lib.esm/contracts/interfaces/ISLCCore.d.ts +137 -0
  140. package/lib.esm/contracts/interfaces/ISLCCore.js +1 -0
  141. package/lib.esm/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
  142. package/lib.esm/contracts/interfaces/ISLCCoreFactory.js +1 -0
  143. package/lib.esm/contracts/interfaces/IWrappedToken.d.ts +134 -0
  144. package/lib.esm/contracts/interfaces/IWrappedToken.js +1 -0
  145. package/lib.esm/contracts/interfaces/index.d.ts +7 -0
  146. package/lib.esm/contracts/interfaces/index.js +1 -0
  147. package/lib.esm/contracts/libs/Errors.d.ts +21 -0
  148. package/lib.esm/contracts/libs/Errors.js +1 -0
  149. package/lib.esm/contracts/libs/NeutralsSelection.d.ts +21 -0
  150. package/lib.esm/contracts/libs/NeutralsSelection.js +1 -0
  151. package/lib.esm/contracts/libs/index.d.ts +2 -0
  152. package/lib.esm/contracts/libs/index.js +1 -0
  153. package/lib.esm/contracts/mocks/MockGovernance.d.ts +201 -0
  154. package/lib.esm/contracts/mocks/MockGovernance.js +1 -0
  155. package/lib.esm/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
  156. package/lib.esm/contracts/mocks/MockNeutralsRegistry.js +1 -0
  157. package/lib.esm/contracts/mocks/SimpleContract.d.ts +38 -0
  158. package/lib.esm/contracts/mocks/SimpleContract.js +1 -0
  159. package/lib.esm/contracts/mocks/WrappedToken.d.ts +174 -0
  160. package/lib.esm/contracts/mocks/WrappedToken.js +1 -0
  161. package/lib.esm/contracts/mocks/index.d.ts +4 -0
  162. package/lib.esm/contracts/mocks/index.js +1 -0
  163. package/lib.esm/contracts/slc-core/SLCCore.d.ts +198 -0
  164. package/lib.esm/contracts/slc-core/SLCCore.js +1 -0
  165. package/lib.esm/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
  166. package/lib.esm/contracts/slc-core/SLCCoreFactory.js +1 -0
  167. package/lib.esm/contracts/slc-core/index.d.ts +2 -0
  168. package/lib.esm/contracts/slc-core/index.js +1 -0
  169. package/lib.esm/contracts/token/Token.d.ts +201 -0
  170. package/lib.esm/contracts/token/Token.js +1 -0
  171. package/lib.esm/contracts/token/index.d.ts +1 -0
  172. package/lib.esm/contracts/token/index.js +1 -0
  173. package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
  174. package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.js +1207 -0
  175. package/lib.esm/factories/contracts/governance/Governance__factory.d.ts +1740 -0
  176. package/lib.esm/factories/contracts/governance/Governance__factory.js +2282 -0
  177. package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
  178. package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.js +1482 -0
  179. package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
  180. package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.js +801 -0
  181. package/lib.esm/factories/contracts/governance/index.d.ts +4 -0
  182. package/lib.esm/factories/contracts/index.d.ts +6 -0
  183. package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
  184. package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.js +418 -0
  185. package/lib.esm/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
  186. package/lib.esm/factories/contracts/interfaces/IGovernance__factory.js +146 -0
  187. package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
  188. package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.js +517 -0
  189. package/lib.esm/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
  190. package/lib.esm/factories/contracts/interfaces/IQParameters__factory.js +91 -0
  191. package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
  192. package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.js +187 -0
  193. package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
  194. package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.js +220 -0
  195. package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
  196. package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.js +211 -0
  197. package/lib.esm/factories/contracts/interfaces/index.d.ts +7 -0
  198. package/lib.esm/factories/contracts/libs/Errors__factory.d.ts +128 -0
  199. package/lib.esm/factories/contracts/libs/Errors__factory.js +178 -0
  200. package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
  201. package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.js +70 -0
  202. package/lib.esm/factories/contracts/libs/index.d.ts +2 -0
  203. package/lib.esm/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
  204. package/lib.esm/factories/contracts/mocks/MockGovernance__factory.js +320 -0
  205. package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
  206. package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.js +691 -0
  207. package/lib.esm/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
  208. package/lib.esm/factories/contracts/mocks/SimpleContract__factory.js +77 -0
  209. package/lib.esm/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
  210. package/lib.esm/factories/contracts/mocks/WrappedToken__factory.js +400 -0
  211. package/lib.esm/factories/contracts/mocks/index.d.ts +4 -0
  212. package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
  213. package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.js +535 -0
  214. package/lib.esm/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
  215. package/lib.esm/factories/contracts/slc-core/SLCCore__factory.js +343 -0
  216. package/lib.esm/factories/contracts/slc-core/index.d.ts +2 -0
  217. package/lib.esm/factories/contracts/token/Token__factory.d.ts +355 -0
  218. package/lib.esm/factories/contracts/token/Token__factory.js +472 -0
  219. package/lib.esm/factories/contracts/token/index.d.ts +1 -0
  220. package/lib.esm/index.d.ts +5 -0
  221. package/lib.esm/index.js +7 -0
  222. package/package.json +10 -3
  223. package/common.ts +0 -131
  224. package/constants.ts +0 -34
  225. package/contracts/governance/ExecutorsRegistry.ts +0 -1249
  226. package/contracts/governance/Governance.ts +0 -1740
  227. package/contracts/governance/NeutralsRegistry.ts +0 -1415
  228. package/contracts/governance/ParameterRegistry.ts +0 -832
  229. package/contracts/interfaces/IExecutorsRegistry.ts +0 -601
  230. package/contracts/interfaces/IGovernance.ts +0 -215
  231. package/contracts/interfaces/INeutralsRegistry.ts +0 -624
  232. package/contracts/interfaces/IQParameters.ts +0 -109
  233. package/contracts/interfaces/ISLCCore.ts +0 -289
  234. package/contracts/interfaces/ISLCCoreFactory.ts +0 -217
  235. package/contracts/interfaces/IWrappedToken.ts +0 -272
  236. package/contracts/libs/Errors.ts +0 -71
  237. package/contracts/libs/NeutralsSelection.ts +0 -71
  238. package/contracts/mocks/MockGovernance.ts +0 -389
  239. package/contracts/mocks/MockNeutralsRegistry.ts +0 -791
  240. package/contracts/mocks/SimpleContract.ts +0 -110
  241. package/contracts/mocks/WrappedToken.ts +0 -334
  242. package/contracts/slc-core/SLCCore.ts +0 -397
  243. package/contracts/slc-core/SLCCoreFactory.ts +0 -559
  244. package/contracts/token/Token.ts +0 -399
  245. package/contracts/token/index.ts +0 -4
  246. package/factories/contracts/governance/ExecutorsRegistry__factory.ts +0 -1240
  247. package/factories/contracts/governance/Governance__factory.ts +0 -2307
  248. package/factories/contracts/governance/NeutralsRegistry__factory.ts +0 -1515
  249. package/factories/contracts/governance/ParameterRegistry__factory.ts +0 -834
  250. package/factories/contracts/interfaces/IExecutorsRegistry__factory.ts +0 -428
  251. package/factories/contracts/interfaces/IGovernance__factory.ts +0 -153
  252. package/factories/contracts/interfaces/INeutralsRegistry__factory.ts +0 -527
  253. package/factories/contracts/interfaces/IQParameters__factory.ts +0 -101
  254. package/factories/contracts/interfaces/ISLCCoreFactory__factory.ts +0 -197
  255. package/factories/contracts/interfaces/ISLCCore__factory.ts +0 -227
  256. package/factories/contracts/interfaces/IWrappedToken__factory.ts +0 -221
  257. package/factories/contracts/libs/Errors__factory.ts +0 -205
  258. package/factories/contracts/libs/NeutralsSelection__factory.ts +0 -103
  259. package/factories/contracts/mocks/MockGovernance__factory.ts +0 -353
  260. package/factories/contracts/mocks/MockNeutralsRegistry__factory.ts +0 -730
  261. package/factories/contracts/mocks/SimpleContract__factory.ts +0 -110
  262. package/factories/contracts/mocks/WrappedToken__factory.ts +0 -433
  263. package/factories/contracts/slc-core/SLCCoreFactory__factory.ts +0 -568
  264. package/factories/contracts/slc-core/SLCCore__factory.ts +0 -373
  265. package/factories/contracts/token/Token__factory.ts +0 -505
  266. package/index.ts +0 -44
  267. /package/{factories/contracts/governance/index.ts → lib.esm/factories/contracts/governance/index.js} +0 -0
  268. /package/{factories/contracts/index.ts → lib.esm/factories/contracts/index.js} +0 -0
  269. /package/{factories/contracts/interfaces/index.ts → lib.esm/factories/contracts/interfaces/index.js} +0 -0
  270. /package/{factories/contracts/libs/index.ts → lib.esm/factories/contracts/libs/index.js} +0 -0
  271. /package/{factories/contracts/mocks/index.ts → lib.esm/factories/contracts/mocks/index.js} +0 -0
  272. /package/{factories/contracts/slc-core/index.ts → lib.esm/factories/contracts/slc-core/index.js} +0 -0
  273. /package/{factories/contracts/token/index.ts → lib.esm/factories/contracts/token/index.js} +0 -0
@@ -0,0 +1,695 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MockNeutralsRegistry__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ inputs: [
11
+ {
12
+ internalType: "address",
13
+ name: "delegator",
14
+ type: "address",
15
+ },
16
+ {
17
+ internalType: "address",
18
+ name: "neutral",
19
+ type: "address",
20
+ },
21
+ {
22
+ internalType: "uint256",
23
+ name: "requested",
24
+ type: "uint256",
25
+ },
26
+ {
27
+ internalType: "uint256",
28
+ name: "availible",
29
+ type: "uint256",
30
+ },
31
+ ],
32
+ name: "InsufficientDelegationAmount",
33
+ type: "error",
34
+ },
35
+ {
36
+ inputs: [
37
+ {
38
+ internalType: "uint256",
39
+ name: "amount",
40
+ type: "uint256",
41
+ },
42
+ ],
43
+ name: "InvalidDelegationAmount",
44
+ type: "error",
45
+ },
46
+ {
47
+ inputs: [
48
+ {
49
+ internalType: "uint256",
50
+ name: "requestedDelegation",
51
+ type: "uint256",
52
+ },
53
+ {
54
+ internalType: "uint256",
55
+ name: "currentDelegatedStake",
56
+ type: "uint256",
57
+ },
58
+ {
59
+ internalType: "uint256",
60
+ name: "maxPossibleDelegatedStake",
61
+ type: "uint256",
62
+ },
63
+ ],
64
+ name: "MaxDelegationAmplificationConstraintViolated",
65
+ type: "error",
66
+ },
67
+ {
68
+ inputs: [
69
+ {
70
+ internalType: "address",
71
+ name: "neutral",
72
+ type: "address",
73
+ },
74
+ ],
75
+ name: "NeutralAlreadyPaused",
76
+ type: "error",
77
+ },
78
+ {
79
+ inputs: [
80
+ {
81
+ internalType: "address",
82
+ name: "subject",
83
+ type: "address",
84
+ },
85
+ ],
86
+ name: "NeutralCannotDelegateToHimself",
87
+ type: "error",
88
+ },
89
+ {
90
+ inputs: [
91
+ {
92
+ internalType: "address",
93
+ name: "neutral",
94
+ type: "address",
95
+ },
96
+ ],
97
+ name: "NeutralHasNoStake",
98
+ type: "error",
99
+ },
100
+ {
101
+ inputs: [
102
+ {
103
+ internalType: "address",
104
+ name: "neutral",
105
+ type: "address",
106
+ },
107
+ ],
108
+ name: "NeutralNotPaused",
109
+ type: "error",
110
+ },
111
+ {
112
+ inputs: [
113
+ {
114
+ internalType: "address",
115
+ name: "subject",
116
+ type: "address",
117
+ },
118
+ ],
119
+ name: "NoWithdrawalAnnouncement",
120
+ type: "error",
121
+ },
122
+ {
123
+ inputs: [
124
+ {
125
+ internalType: "uint256",
126
+ name: "providedNumber",
127
+ type: "uint256",
128
+ },
129
+ {
130
+ internalType: "uint256",
131
+ name: "activeNeutralsCount",
132
+ type: "uint256",
133
+ },
134
+ ],
135
+ name: "SelectedNeutralsNumberOutOfRange",
136
+ type: "error",
137
+ },
138
+ {
139
+ inputs: [
140
+ {
141
+ internalType: "address",
142
+ name: "subject",
143
+ type: "address",
144
+ },
145
+ ],
146
+ name: "WithdrawalAlreadyAnnounced",
147
+ type: "error",
148
+ },
149
+ {
150
+ inputs: [
151
+ {
152
+ internalType: "address",
153
+ name: "subject",
154
+ type: "address",
155
+ },
156
+ {
157
+ internalType: "uint256",
158
+ name: "availableAt",
159
+ type: "uint256",
160
+ },
161
+ ],
162
+ name: "WithdrawalNotReady",
163
+ type: "error",
164
+ },
165
+ {
166
+ anonymous: false,
167
+ inputs: [
168
+ {
169
+ indexed: false,
170
+ internalType: "address",
171
+ name: "delegator",
172
+ type: "address",
173
+ },
174
+ {
175
+ indexed: false,
176
+ internalType: "address",
177
+ name: "neutral",
178
+ type: "address",
179
+ },
180
+ {
181
+ indexed: false,
182
+ internalType: "uint256",
183
+ name: "amount",
184
+ type: "uint256",
185
+ },
186
+ ],
187
+ name: "DelegationWithdrawn",
188
+ type: "event",
189
+ },
190
+ {
191
+ anonymous: false,
192
+ inputs: [
193
+ {
194
+ indexed: true,
195
+ internalType: "address",
196
+ name: "neutral",
197
+ type: "address",
198
+ },
199
+ {
200
+ indexed: false,
201
+ internalType: "uint256",
202
+ name: "stake",
203
+ type: "uint256",
204
+ },
205
+ ],
206
+ name: "NeutralActivated",
207
+ type: "event",
208
+ },
209
+ {
210
+ anonymous: false,
211
+ inputs: [
212
+ {
213
+ indexed: true,
214
+ internalType: "address",
215
+ name: "neutral",
216
+ type: "address",
217
+ },
218
+ ],
219
+ name: "NeutralMovedToStandby",
220
+ type: "event",
221
+ },
222
+ {
223
+ anonymous: false,
224
+ inputs: [
225
+ {
226
+ indexed: true,
227
+ internalType: "address",
228
+ name: "neutral",
229
+ type: "address",
230
+ },
231
+ ],
232
+ name: "NeutralPaused",
233
+ type: "event",
234
+ },
235
+ {
236
+ anonymous: false,
237
+ inputs: [
238
+ {
239
+ indexed: true,
240
+ internalType: "address",
241
+ name: "neutral",
242
+ type: "address",
243
+ },
244
+ {
245
+ indexed: false,
246
+ internalType: "uint256",
247
+ name: "amount",
248
+ type: "uint256",
249
+ },
250
+ {
251
+ indexed: false,
252
+ internalType: "address",
253
+ name: "recipient",
254
+ type: "address",
255
+ },
256
+ ],
257
+ name: "NeutralSlashed",
258
+ type: "event",
259
+ },
260
+ {
261
+ anonymous: false,
262
+ inputs: [
263
+ {
264
+ indexed: true,
265
+ internalType: "address",
266
+ name: "neutral",
267
+ type: "address",
268
+ },
269
+ {
270
+ indexed: false,
271
+ internalType: "uint256",
272
+ name: "amount",
273
+ type: "uint256",
274
+ },
275
+ {
276
+ indexed: false,
277
+ internalType: "uint256",
278
+ name: "totalStake",
279
+ type: "uint256",
280
+ },
281
+ ],
282
+ name: "NeutralStaked",
283
+ type: "event",
284
+ },
285
+ {
286
+ anonymous: false,
287
+ inputs: [
288
+ {
289
+ indexed: true,
290
+ internalType: "address",
291
+ name: "neutral",
292
+ type: "address",
293
+ },
294
+ ],
295
+ name: "NeutralUnpaused",
296
+ type: "event",
297
+ },
298
+ {
299
+ anonymous: false,
300
+ inputs: [
301
+ {
302
+ indexed: true,
303
+ internalType: "address",
304
+ name: "neutral",
305
+ type: "address",
306
+ },
307
+ {
308
+ indexed: false,
309
+ internalType: "uint256",
310
+ name: "amount",
311
+ type: "uint256",
312
+ },
313
+ {
314
+ indexed: false,
315
+ internalType: "uint256",
316
+ name: "remainingStake",
317
+ type: "uint256",
318
+ },
319
+ ],
320
+ name: "NeutralUnstaked",
321
+ type: "event",
322
+ },
323
+ {
324
+ anonymous: false,
325
+ inputs: [
326
+ {
327
+ indexed: true,
328
+ internalType: "address",
329
+ name: "neutral",
330
+ type: "address",
331
+ },
332
+ {
333
+ indexed: false,
334
+ internalType: "uint256",
335
+ name: "amount",
336
+ type: "uint256",
337
+ },
338
+ ],
339
+ name: "RewardsClaimed",
340
+ type: "event",
341
+ },
342
+ {
343
+ anonymous: false,
344
+ inputs: [
345
+ {
346
+ indexed: false,
347
+ internalType: "address[]",
348
+ name: "selectedNeutrals",
349
+ type: "address[]",
350
+ },
351
+ {
352
+ indexed: false,
353
+ internalType: "uint256",
354
+ name: "totalAmount",
355
+ type: "uint256",
356
+ },
357
+ ],
358
+ name: "RewardsDistributed",
359
+ type: "event",
360
+ },
361
+ {
362
+ anonymous: false,
363
+ inputs: [
364
+ {
365
+ indexed: true,
366
+ internalType: "address",
367
+ name: "neutral",
368
+ type: "address",
369
+ },
370
+ {
371
+ indexed: false,
372
+ internalType: "uint256",
373
+ name: "amount",
374
+ type: "uint256",
375
+ },
376
+ {
377
+ indexed: false,
378
+ internalType: "uint256",
379
+ name: "availableAt",
380
+ type: "uint256",
381
+ },
382
+ ],
383
+ name: "WithdrawalAnnounced",
384
+ type: "event",
385
+ },
386
+ {
387
+ anonymous: false,
388
+ inputs: [
389
+ {
390
+ indexed: true,
391
+ internalType: "address",
392
+ name: "neutral",
393
+ type: "address",
394
+ },
395
+ {
396
+ indexed: false,
397
+ internalType: "uint256",
398
+ name: "amount",
399
+ type: "uint256",
400
+ },
401
+ ],
402
+ name: "WithdrawalCancelled",
403
+ type: "event",
404
+ },
405
+ {
406
+ inputs: [
407
+ {
408
+ internalType: "address",
409
+ name: "neutral_",
410
+ type: "address",
411
+ },
412
+ {
413
+ internalType: "string",
414
+ name: "externalLink_",
415
+ type: "string",
416
+ },
417
+ ],
418
+ name: "addNeutral",
419
+ outputs: [],
420
+ stateMutability: "nonpayable",
421
+ type: "function",
422
+ },
423
+ {
424
+ inputs: [
425
+ {
426
+ internalType: "address[]",
427
+ name: "neutrals_",
428
+ type: "address[]",
429
+ },
430
+ ],
431
+ name: "addNeutrals",
432
+ outputs: [],
433
+ stateMutability: "nonpayable",
434
+ type: "function",
435
+ },
436
+ {
437
+ inputs: [],
438
+ name: "clearNeutrals",
439
+ outputs: [],
440
+ stateMutability: "nonpayable",
441
+ type: "function",
442
+ },
443
+ {
444
+ inputs: [
445
+ {
446
+ internalType: "address[]",
447
+ name: "selectedNeutrals_",
448
+ type: "address[]",
449
+ },
450
+ {
451
+ internalType: "uint256",
452
+ name: "amount_",
453
+ type: "uint256",
454
+ },
455
+ ],
456
+ name: "distributeRewards",
457
+ outputs: [],
458
+ stateMutability: "nonpayable",
459
+ type: "function",
460
+ },
461
+ {
462
+ inputs: [],
463
+ name: "getActiveNeutrals",
464
+ outputs: [
465
+ {
466
+ internalType: "address[]",
467
+ name: "",
468
+ type: "address[]",
469
+ },
470
+ ],
471
+ stateMutability: "view",
472
+ type: "function",
473
+ },
474
+ {
475
+ inputs: [
476
+ {
477
+ internalType: "address",
478
+ name: "candidate_",
479
+ type: "address",
480
+ },
481
+ ],
482
+ name: "getNeutralInfo",
483
+ outputs: [
484
+ {
485
+ components: [
486
+ {
487
+ internalType: "uint256",
488
+ name: "selfStake",
489
+ type: "uint256",
490
+ },
491
+ {
492
+ internalType: "uint256",
493
+ name: "weight",
494
+ type: "uint256",
495
+ },
496
+ {
497
+ internalType: "uint256",
498
+ name: "delegatedStake",
499
+ type: "uint256",
500
+ },
501
+ {
502
+ internalType: "uint256",
503
+ name: "rewards",
504
+ type: "uint256",
505
+ },
506
+ {
507
+ internalType: "uint256",
508
+ name: "delegationShare",
509
+ type: "uint256",
510
+ },
511
+ {
512
+ internalType: "bool",
513
+ name: "isActive",
514
+ type: "bool",
515
+ },
516
+ {
517
+ internalType: "bool",
518
+ name: "isPaused",
519
+ type: "bool",
520
+ },
521
+ {
522
+ internalType: "string",
523
+ name: "externalLink",
524
+ type: "string",
525
+ },
526
+ ],
527
+ internalType: "struct MockNeutralsRegistry.NeutralsInfo",
528
+ name: "",
529
+ type: "tuple",
530
+ },
531
+ ],
532
+ stateMutability: "view",
533
+ type: "function",
534
+ },
535
+ {
536
+ inputs: [],
537
+ name: "getNeutralsCount",
538
+ outputs: [
539
+ {
540
+ internalType: "uint256",
541
+ name: "",
542
+ type: "uint256",
543
+ },
544
+ ],
545
+ stateMutability: "view",
546
+ type: "function",
547
+ },
548
+ {
549
+ inputs: [
550
+ {
551
+ internalType: "uint256",
552
+ name: "number_",
553
+ type: "uint256",
554
+ },
555
+ ],
556
+ name: "getNeutralsSlice",
557
+ outputs: [
558
+ {
559
+ internalType: "address[]",
560
+ name: "",
561
+ type: "address[]",
562
+ },
563
+ ],
564
+ stateMutability: "view",
565
+ type: "function",
566
+ },
567
+ {
568
+ inputs: [
569
+ {
570
+ internalType: "address",
571
+ name: "candidate_",
572
+ type: "address",
573
+ },
574
+ ],
575
+ name: "isNeutral",
576
+ outputs: [
577
+ {
578
+ internalType: "bool",
579
+ name: "",
580
+ type: "bool",
581
+ },
582
+ ],
583
+ stateMutability: "view",
584
+ type: "function",
585
+ },
586
+ {
587
+ inputs: [
588
+ {
589
+ internalType: "address",
590
+ name: "neutral_",
591
+ type: "address",
592
+ },
593
+ ],
594
+ name: "removeNeutral",
595
+ outputs: [],
596
+ stateMutability: "nonpayable",
597
+ type: "function",
598
+ },
599
+ {
600
+ inputs: [
601
+ {
602
+ internalType: "address",
603
+ name: "governance_",
604
+ type: "address",
605
+ },
606
+ ],
607
+ name: "setGovernance",
608
+ outputs: [],
609
+ stateMutability: "nonpayable",
610
+ type: "function",
611
+ },
612
+ {
613
+ inputs: [
614
+ {
615
+ internalType: "address",
616
+ name: "token_",
617
+ type: "address",
618
+ },
619
+ ],
620
+ name: "setToken",
621
+ outputs: [],
622
+ stateMutability: "nonpayable",
623
+ type: "function",
624
+ },
625
+ {
626
+ inputs: [
627
+ {
628
+ internalType: "address",
629
+ name: "neutral_",
630
+ type: "address",
631
+ },
632
+ {
633
+ internalType: "uint256",
634
+ name: "amount_",
635
+ type: "uint256",
636
+ },
637
+ ],
638
+ name: "slashNeutral",
639
+ outputs: [],
640
+ stateMutability: "nonpayable",
641
+ type: "function",
642
+ },
643
+ {
644
+ inputs: [
645
+ {
646
+ internalType: "bytes4",
647
+ name: "interfaceId",
648
+ type: "bytes4",
649
+ },
650
+ ],
651
+ name: "supportsInterface",
652
+ outputs: [
653
+ {
654
+ internalType: "bool",
655
+ name: "",
656
+ type: "bool",
657
+ },
658
+ ],
659
+ stateMutability: "pure",
660
+ type: "function",
661
+ },
662
+ ];
663
+ const _bytecode = "0x6080806040523460155761100c908161001b8239f35b600080fdfe608080604052600436101561001357600080fd5b60003560e01c90816301ffc9a714610c075750806308d8812214610b8e5780630c75325914610905578063144fa6d7146108ce5780633f01c77e146108b05780634b33e582146106aa5780636cd08a931461066b57806387fb530a146105bc578063ab033ea914610585578063dcf2fc39146104bf578063e665169b1461049e578063ed3f77cb14610175578063f4deaca31461015a5763fac8a8c4146100b957600080fd5b34610155576020366003190112610155576002546004358082101561014e57505b6100e381610d04565b906100f16040519283610ce3565b808252601f1961010082610d04565b0136602084013760005b818110610123576040518061011f8582610c5a565b0390f35b8061012f600192610d1b565b838060a01b0391549060031b1c166101478286610fcb565b520161010a565b90506100da565b600080fd5b3461015557604036600319011261015557610173610c9d565b005b34610155576020366003190112610155576004356001600160401b0381116101555736602382011215610155578060040135906101b182610d04565b916101bf6040519384610ce3565b8083526024602084019160051b8301019136831161015557602401905b828210610486578360005b8151811015610173576001600160a01b036102028284610fcb565b5116600052600360205260ff6040600020541615610439575b60405161022781610cc7565b6000815260066020820191600083526040810160008152606082019060008252608083016000815260a08401926001845260c085019260008452604097885198610271818b610ce3565b60168a5275687474703a2f2f746573742e6e65757472616c2e6d6560501b60208b015260e08801998a526001600160a01b036102ad8c8e610fcb565b51166000526004602052600020965187555160018701555160028601555160038501555160048401556102f36005840192511515839060ff801983541691151516179055565b51151561ff0082549160081b169061ff0019161790550190518051906001600160401b038211610423576103278354610dbe565b601f81116103e6575b50602090601f831160011461037b579180610367926001969594600092610370575b50508160011b916000199060031b1c19161790565b90555b016101e7565b015190508780610352565b90601f1983169184600052816000209260005b8181106103ce5750916001969594929183889593106103b5575b505050811b01905561036a565b015160001960f88460031b161c191690558680806103a8565b9293602060018192878601518155019501930161038e565b61041390846000526020600020601f850160051c81019160208610610419575b601f0160051c0190610df8565b85610330565b9091508190610406565b634e487b7160e01b600052604160045260246000fd5b6104556001600160a01b0361044e8385610fcb565b5116610d4c565b6001600160a01b036104678284610fcb565b511660005260036020526040600020600160ff1982541617905561021b565b6020809161049384610cb3565b8152019101906101dc565b34610155576020366003190112610155576101736104ba610c9d565b610e89565b34610155576040366003190112610155576004356001600160401b03811161015557366023820112156101555780600401356001600160401b038111610155573660248260051b8401011161015557604051908060408301604084525260246060830193019060005b81811061055f5760243560208501527f4c7cb22838e004dd47d1cb8aabab908f17a2851609c953fb7547c066d5e41acf84860385a1005b909193602080600192838060a01b0361057789610cb3565b168152019501929101610528565b34610155576020366003190112610155576001600160a01b036105a6610c9d565b1660018060a01b03196000541617600055600080f35b346101555760003660031901126101555760005b60025481101561063b57806105e6600192610d1b565b838060a01b0391549060031b1c166000526003602052604060002060ff19815416905561061281610d1b565b838060a01b0391549060031b1c1660005260046020526106356040600020610e0f565b016105d0565b60025460006002558061064a57005b600260005261017390600080516020610fe083398151915290810190610df8565b34610155576020366003190112610155576001600160a01b0361068c610c9d565b166000526003602052602060ff604060002054166040519015158152f35b34610155576020366003190112610155576106c3610c9d565b606060e06040516106d381610cc7565b60008152600060208201526000604082015260008382015260006080820152600060a0820152600060c0820152015260018060a01b0316600052600460205260406000206040519061072482610cc7565b80548252600181015490602083019182526002810154906040840191825260038101546060850190815260048201549060808601918252600583015493600660a088019460ff87161515865260ff60c08a019760081c161515875201956040519687600082549261079484610dbe565b808452936001811690811561088e5750600114610848575b506107b992500388610ce3565b60e0880196875260405197602089525160208901525160408801525160608701525160808601525160a085015251151560c084015251151560e08301525161010080830152818151918261012083015260005b83811061082f575050816000610140809484010152601f80199101168101030190f35b602082820181015161014087840101528593500161080c565b90506000929192526020600020906000915b8183106108735750509060206107b9928201018b6107ac565b8060209294838560019454920101520191019091899261085a565b9050602092506107b994915060ff191682840152151560051b8201018b6107ac565b34610155576000366003190112610155576020600254604051908152f35b34610155576020366003190112610155576001600160a01b036108ef610c9d565b1660018060a01b03196001541617600155600080f35b346101555760403660031901126101555761091e610c9d565b6024356001600160401b0381116101555736602382011215610155578060040135916001600160401b038311610155573660248484010111610155576001600160a01b03811660008181526003602052604090205490919060ff1615610b66575b506040519061098d82610cc7565b600082526020820190600082526040830160008152606084016000815260808501916000835260a08601946001865260c087019460008652601f19601f8b0116602001986040519a6109e08c9b8c610ce3565b808b528060009b60248d940190602001378b016020015260e08801998a528852600460205260408820965187555160018701555160028601555160038501555160048401556005830191511515610a4390839060ff801983541691151516179055565b51151581549060081b61ff00169061ff00191617905560060191519182516001600160401b038111610b5257610a798254610dbe565b601f8111610b22575b506020601f8211600114610ac35781908495610ab3949592610ab85750508160011b916000199060031b1c19161790565b905580f35b015190508580610352565b82845280842090601f198316855b818110610b0a57509583600195969710610af1575b505050811b01905580f35b015160001960f88460031b161c19169055848080610ae6565b9192602060018192868b015181550194019201610ad1565b610b4c9083855260208520601f840160051c8101916020851061041957601f0160051c0190610df8565b84610a82565b634e487b7160e01b83526041600452602483fd5b610b6f90610d4c565b8060005260036020526040600020600160ff198254161790558361097f565b34610155576000366003190112610155576040516002805480835260009182526020830191600080516020610fe083398151915291905b818110610be85761011f85610bdc81870382610ce3565b60405191829182610c5a565b82546001600160a01b0316845260209093019260019283019201610bc5565b34610155576020366003190112610155576004359063ffffffff60e01b821680920361015557602091638135b5b360e01b8114908115610c49575b5015158152f35b6301ffc9a760e01b14905083610c42565b602060408183019282815284518094520192019060005b818110610c7e5750505090565b82516001600160a01b0316845260209384019390920191600101610c71565b600435906001600160a01b038216820361015557565b35906001600160a01b038216820361015557565b61010081019081106001600160401b0382111761042357604052565b90601f801991011681019081106001600160401b0382111761042357604052565b6001600160401b0381116104235760051b60200190565b600254811015610d3657600260005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b6002549190600160401b8310156104235760018301600255600092600254811015610daa576002909352600080516020610fe083398151915290920180546001600160a01b0319166001600160a01b0390931692909217909155565b565b634e487b7160e01b84526032600452602484fd5b90600182811c92168015610dee575b6020831014610dd857565b634e487b7160e01b600052602260045260246000fd5b91607f1691610dcd565b818110610e03575050565b60008155600101610df8565b60069060008155600060018201556000600282015560006003820155600060048201556000600582015501610e448154610dbe565b9081610e4e575050565b81601f60009311600114610e60575055565b81835260208320610e7c91601f0160051c810190600101610df8565b8082528160208120915555565b6001600160a01b031660008181526003602052604090205460ff1615610fc8576002549060005b828110610ee6575b508091506000526003602052604060002060ff1981541690556000526004602052610da86040600020610e0f565b81610ef082610d1b565b905460039190911b1c6001600160a01b031614610f0f57600101610eb0565b9091600019810191908211610fb257610f45610f2d610f6993610d1b565b905460039190911b1c6001600160a01b031691610d1b565b81546001600160a01b0393841660039290921b91821b9390911b1916919091179055565b6002548015610f9c5760001901610f7f81610d1b565b81549060018060a01b039060031b1b191690556002558038610eb8565b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b50565b8051821015610d365760209160051b01019056fe405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acea164736f6c634300081e000a";
664
+ const isSuperArgs = (xs) => xs.length > 1;
665
+ class MockNeutralsRegistry__factory extends ethers_1.ContractFactory {
666
+ constructor(...args) {
667
+ if (isSuperArgs(args)) {
668
+ super(...args);
669
+ }
670
+ else {
671
+ super(_abi, _bytecode, args[0]);
672
+ }
673
+ this.contractName = "MockNeutralsRegistry";
674
+ }
675
+ getDeployTransaction(overrides) {
676
+ return super.getDeployTransaction(overrides || {});
677
+ }
678
+ deploy(overrides) {
679
+ return super.deploy(overrides || {});
680
+ }
681
+ connect(runner) {
682
+ return super.connect(runner);
683
+ }
684
+ static contractName;
685
+ contractName;
686
+ static bytecode = _bytecode;
687
+ static abi = _abi;
688
+ static createInterface() {
689
+ return new ethers_1.Interface(_abi);
690
+ }
691
+ static connect(address, runner) {
692
+ return new ethers_1.Contract(address, _abi, runner);
693
+ }
694
+ }
695
+ exports.MockNeutralsRegistry__factory = MockNeutralsRegistry__factory;