@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,539 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SLCCoreFactory__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: "target",
14
+ type: "address",
15
+ },
16
+ ],
17
+ name: "AddressEmptyCode",
18
+ type: "error",
19
+ },
20
+ {
21
+ inputs: [
22
+ {
23
+ internalType: "address",
24
+ name: "parametersRegistry",
25
+ type: "address",
26
+ },
27
+ ],
28
+ name: "DefaultGovernanceNotSet",
29
+ type: "error",
30
+ },
31
+ {
32
+ inputs: [
33
+ {
34
+ internalType: "address",
35
+ name: "implementation",
36
+ type: "address",
37
+ },
38
+ ],
39
+ name: "ERC1967InvalidImplementation",
40
+ type: "error",
41
+ },
42
+ {
43
+ inputs: [],
44
+ name: "ERC1967NonPayable",
45
+ type: "error",
46
+ },
47
+ {
48
+ inputs: [],
49
+ name: "FailedCall",
50
+ type: "error",
51
+ },
52
+ {
53
+ inputs: [],
54
+ name: "InvalidInitialization",
55
+ type: "error",
56
+ },
57
+ {
58
+ inputs: [],
59
+ name: "NotInitializing",
60
+ type: "error",
61
+ },
62
+ {
63
+ inputs: [
64
+ {
65
+ internalType: "address",
66
+ name: "owner",
67
+ type: "address",
68
+ },
69
+ ],
70
+ name: "OwnableInvalidOwner",
71
+ type: "error",
72
+ },
73
+ {
74
+ inputs: [
75
+ {
76
+ internalType: "address",
77
+ name: "account",
78
+ type: "address",
79
+ },
80
+ ],
81
+ name: "OwnableUnauthorizedAccount",
82
+ type: "error",
83
+ },
84
+ {
85
+ inputs: [],
86
+ name: "UUPSUnauthorizedCallContext",
87
+ type: "error",
88
+ },
89
+ {
90
+ inputs: [
91
+ {
92
+ internalType: "bytes32",
93
+ name: "slot",
94
+ type: "bytes32",
95
+ },
96
+ ],
97
+ name: "UUPSUnsupportedProxiableUUID",
98
+ type: "error",
99
+ },
100
+ {
101
+ anonymous: false,
102
+ inputs: [
103
+ {
104
+ indexed: false,
105
+ internalType: "uint64",
106
+ name: "version",
107
+ type: "uint64",
108
+ },
109
+ ],
110
+ name: "Initialized",
111
+ type: "event",
112
+ },
113
+ {
114
+ anonymous: false,
115
+ inputs: [
116
+ {
117
+ indexed: true,
118
+ internalType: "address",
119
+ name: "previousOwner",
120
+ type: "address",
121
+ },
122
+ {
123
+ indexed: true,
124
+ internalType: "address",
125
+ name: "newOwner",
126
+ type: "address",
127
+ },
128
+ ],
129
+ name: "OwnershipTransferred",
130
+ type: "event",
131
+ },
132
+ {
133
+ anonymous: false,
134
+ inputs: [
135
+ {
136
+ indexed: true,
137
+ internalType: "address",
138
+ name: "slc",
139
+ type: "address",
140
+ },
141
+ {
142
+ indexed: true,
143
+ internalType: "address",
144
+ name: "governance",
145
+ type: "address",
146
+ },
147
+ {
148
+ indexed: true,
149
+ internalType: "address",
150
+ name: "deployer",
151
+ type: "address",
152
+ },
153
+ ],
154
+ name: "SLCDeployed",
155
+ type: "event",
156
+ },
157
+ {
158
+ anonymous: false,
159
+ inputs: [
160
+ {
161
+ indexed: true,
162
+ internalType: "address",
163
+ name: "implementation",
164
+ type: "address",
165
+ },
166
+ ],
167
+ name: "Upgraded",
168
+ type: "event",
169
+ },
170
+ {
171
+ inputs: [],
172
+ name: "UPGRADE_INTERFACE_VERSION",
173
+ outputs: [
174
+ {
175
+ internalType: "string",
176
+ name: "",
177
+ type: "string",
178
+ },
179
+ ],
180
+ stateMutability: "view",
181
+ type: "function",
182
+ },
183
+ {
184
+ inputs: [
185
+ {
186
+ internalType: "address",
187
+ name: "initialOwner_",
188
+ type: "address",
189
+ },
190
+ {
191
+ internalType: "address",
192
+ name: "parametersRegistry_",
193
+ type: "address",
194
+ },
195
+ {
196
+ internalType: "address",
197
+ name: "slcImplementation_",
198
+ type: "address",
199
+ },
200
+ ],
201
+ name: "__SLCFactory_init",
202
+ outputs: [],
203
+ stateMutability: "nonpayable",
204
+ type: "function",
205
+ },
206
+ {
207
+ inputs: [
208
+ {
209
+ internalType: "string",
210
+ name: "legalDocumentLink_",
211
+ type: "string",
212
+ },
213
+ ],
214
+ name: "deploySLC",
215
+ outputs: [
216
+ {
217
+ internalType: "address",
218
+ name: "",
219
+ type: "address",
220
+ },
221
+ ],
222
+ stateMutability: "nonpayable",
223
+ type: "function",
224
+ },
225
+ {
226
+ inputs: [
227
+ {
228
+ internalType: "address",
229
+ name: "governance_",
230
+ type: "address",
231
+ },
232
+ {
233
+ internalType: "string",
234
+ name: "legalDocumentLink_",
235
+ type: "string",
236
+ },
237
+ ],
238
+ name: "deploySLCWithGovernance",
239
+ outputs: [
240
+ {
241
+ internalType: "address",
242
+ name: "",
243
+ type: "address",
244
+ },
245
+ ],
246
+ stateMutability: "nonpayable",
247
+ type: "function",
248
+ },
249
+ {
250
+ inputs: [
251
+ {
252
+ internalType: "uint256",
253
+ name: "offset_",
254
+ type: "uint256",
255
+ },
256
+ {
257
+ internalType: "uint256",
258
+ name: "limit_",
259
+ type: "uint256",
260
+ },
261
+ ],
262
+ name: "getDeployedSLCs",
263
+ outputs: [
264
+ {
265
+ internalType: "address[]",
266
+ name: "",
267
+ type: "address[]",
268
+ },
269
+ ],
270
+ stateMutability: "view",
271
+ type: "function",
272
+ },
273
+ {
274
+ inputs: [],
275
+ name: "getSLCCoreImplementation",
276
+ outputs: [
277
+ {
278
+ internalType: "address",
279
+ name: "",
280
+ type: "address",
281
+ },
282
+ ],
283
+ stateMutability: "view",
284
+ type: "function",
285
+ },
286
+ {
287
+ inputs: [],
288
+ name: "getSLCFactoryStorage",
289
+ outputs: [
290
+ {
291
+ components: [
292
+ {
293
+ internalType: "address",
294
+ name: "parametersRegistry",
295
+ type: "address",
296
+ },
297
+ {
298
+ internalType: "address",
299
+ name: "slcCoreImplementation",
300
+ type: "address",
301
+ },
302
+ ],
303
+ internalType: "struct SLCCoreFactory.SLCFactoryStorageData",
304
+ name: "",
305
+ type: "tuple",
306
+ },
307
+ ],
308
+ stateMutability: "view",
309
+ type: "function",
310
+ },
311
+ {
312
+ inputs: [
313
+ {
314
+ internalType: "address",
315
+ name: "slcDeployer_",
316
+ type: "address",
317
+ },
318
+ {
319
+ internalType: "uint256",
320
+ name: "nonce_",
321
+ type: "uint256",
322
+ },
323
+ ],
324
+ name: "getSalt",
325
+ outputs: [
326
+ {
327
+ internalType: "bytes32",
328
+ name: "",
329
+ type: "bytes32",
330
+ },
331
+ ],
332
+ stateMutability: "pure",
333
+ type: "function",
334
+ },
335
+ {
336
+ inputs: [],
337
+ name: "implementation",
338
+ outputs: [
339
+ {
340
+ internalType: "address",
341
+ name: "",
342
+ type: "address",
343
+ },
344
+ ],
345
+ stateMutability: "view",
346
+ type: "function",
347
+ },
348
+ {
349
+ inputs: [
350
+ {
351
+ internalType: "address",
352
+ name: "toCheck_",
353
+ type: "address",
354
+ },
355
+ ],
356
+ name: "isSLCCore",
357
+ outputs: [
358
+ {
359
+ internalType: "bool",
360
+ name: "",
361
+ type: "bool",
362
+ },
363
+ ],
364
+ stateMutability: "view",
365
+ type: "function",
366
+ },
367
+ {
368
+ inputs: [
369
+ {
370
+ internalType: "address",
371
+ name: "owner_",
372
+ type: "address",
373
+ },
374
+ ],
375
+ name: "nonces",
376
+ outputs: [
377
+ {
378
+ internalType: "uint256",
379
+ name: "",
380
+ type: "uint256",
381
+ },
382
+ ],
383
+ stateMutability: "view",
384
+ type: "function",
385
+ },
386
+ {
387
+ inputs: [],
388
+ name: "owner",
389
+ outputs: [
390
+ {
391
+ internalType: "address",
392
+ name: "",
393
+ type: "address",
394
+ },
395
+ ],
396
+ stateMutability: "view",
397
+ type: "function",
398
+ },
399
+ {
400
+ inputs: [
401
+ {
402
+ internalType: "address",
403
+ name: "slcDeployer_",
404
+ type: "address",
405
+ },
406
+ {
407
+ internalType: "uint256",
408
+ name: "nonce_",
409
+ type: "uint256",
410
+ },
411
+ ],
412
+ name: "predictSLCAddress",
413
+ outputs: [
414
+ {
415
+ internalType: "address",
416
+ name: "",
417
+ type: "address",
418
+ },
419
+ ],
420
+ stateMutability: "view",
421
+ type: "function",
422
+ },
423
+ {
424
+ inputs: [],
425
+ name: "proxiableUUID",
426
+ outputs: [
427
+ {
428
+ internalType: "bytes32",
429
+ name: "",
430
+ type: "bytes32",
431
+ },
432
+ ],
433
+ stateMutability: "view",
434
+ type: "function",
435
+ },
436
+ {
437
+ inputs: [],
438
+ name: "renounceOwnership",
439
+ outputs: [],
440
+ stateMutability: "nonpayable",
441
+ type: "function",
442
+ },
443
+ {
444
+ inputs: [
445
+ {
446
+ internalType: "address",
447
+ name: "newImplementation_",
448
+ type: "address",
449
+ },
450
+ ],
451
+ name: "setSLCCoreImplementation",
452
+ outputs: [],
453
+ stateMutability: "nonpayable",
454
+ type: "function",
455
+ },
456
+ {
457
+ inputs: [
458
+ {
459
+ internalType: "bytes4",
460
+ name: "interfaceId_",
461
+ type: "bytes4",
462
+ },
463
+ ],
464
+ name: "supportsInterface",
465
+ outputs: [
466
+ {
467
+ internalType: "bool",
468
+ name: "",
469
+ type: "bool",
470
+ },
471
+ ],
472
+ stateMutability: "view",
473
+ type: "function",
474
+ },
475
+ {
476
+ inputs: [
477
+ {
478
+ internalType: "address",
479
+ name: "newOwner",
480
+ type: "address",
481
+ },
482
+ ],
483
+ name: "transferOwnership",
484
+ outputs: [],
485
+ stateMutability: "nonpayable",
486
+ type: "function",
487
+ },
488
+ {
489
+ inputs: [
490
+ {
491
+ internalType: "address",
492
+ name: "newImplementation",
493
+ type: "address",
494
+ },
495
+ {
496
+ internalType: "bytes",
497
+ name: "data",
498
+ type: "bytes",
499
+ },
500
+ ],
501
+ name: "upgradeToAndCall",
502
+ outputs: [],
503
+ stateMutability: "payable",
504
+ type: "function",
505
+ },
506
+ ];
507
+ const _bytecode = "0x60a0806040523460295730608052611613908161002f823960805181818161084501526109180152f35b600080fdfe608080604052600436101561001357600080fd5b60003560e01c90816301ffc9a714610b32575080633aef559c14610adc5780634f1ef2861461089c57806352d1902d1461083257806356456d83146107af5780635c60da1b146107795780636ecf2b0f1461070c578063715018a6146106a25780637ecebe001461067657806389b09e6c146106405780638da5cb5b1461060a5780639785debd146105db578063a732feba146105b2578063ad3cb1cc14610567578063c0cd5d4c14610415578063dcd0428814610306578063e554235614610169578063f2fde38b1461013e5763fd3926e1146100f057600080fd5b34610139576020366003190112610139576001600160a01b03610111610b85565b166000526000805160206115a783398151915260205260206040600020541515604051908152f35b600080fd5b346101395760203660031901126101395761016761015a610b85565b6101626110cb565b610e8f565b005b3461013957606036600319011261013957610182610b85565b6024356001600160a01b0381169190829003610139576044356001600160a01b0381168103610139576000805160206115e7833981519152549260ff8460401c1615936001600160401b038116801590816102fe575b60011490816102f4575b1590816102eb575b506102da5767ffffffffffffffff1981166001176000805160206115e7833981519152556102539361022d91866102ad575b50610225611126565b610162611126565b60008051602061154783398151915280546001600160a01b031916919091179055610e60565b61025957005b60ff60401b196000805160206115e783398151915254166000805160206115e7833981519152557fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602060405160018152a1005b68ffffffffffffffffff191668010000000000000001176000805160206115e7833981519152558661021c565b63f92ee8a960e01b60005260046000fd5b905015866101ea565b303b1591506101e2565b8691506101d8565b346101395760403660031901126101395761031f610b85565b600b60018060a01b036000805160206115c78339815191525416916103ea61029d6103cd6103dd6040516103566020850182610bf9565b838152602081019361128a8539602080986103986103a660405161037a8582610bf9565b60008152601f19850136868301376040519283918683019586611101565b03601f198101835282610bf9565b6040519586946103be858701998a9251928391610c35565b85019151809385840190610c35565b010103601f198101835282610bf9565b5190209160243590610e27565b604051916040830152838201523081520160ff8153605590206040516001600160a01b039091168152f35b34610139576020366003190112610139576004356001600160401b03811161013957610445903690600401610b9b565b9060018060a01b036000805160206115478339815191525416906040916104bb602084516104738682610bf9565b8181527f736c632e676f7665726e616e63652e64656661756c74476f7665726e616e63658282015285518093819263d502db9760e01b83528460048401526024830190610c58565b0381855afa90811561055c57600091610513575b50906001600160a01b038216156104ff5750926104ee91602094610f05565b90516001600160a01b039091168152f35b63a4d4bdd760e01b60005260045260246000fd5b6020813d602011610554575b8161052c60209383610bf9565b810103126105505751906001600160a01b038216820361054d5750856104cf565b80fd5b5080fd5b3d915061051f565b84513d6000823e3d90fd5b34610139576000366003190112610139576105ae604080519061058a8183610bf9565b60058252640352e302e360dc1b602083015251918291602083526020830190610c58565b0390f35b34610139576020366003190112610139576101676105ce610b85565b6105d66110cb565b610e60565b346101395760403660031901126101395760206106026105f9610b85565b60243590610e27565b604051908152f35b3461013957600036600319011261013957600080516020611567833981519152546040516001600160a01b039091168152602090f35b34610139576000366003190112610139576000805160206115c7833981519152546040516001600160a01b039091168152602090f35b34610139576020366003190112610139576020610699610694610b85565b610dee565b54604051908152f35b34610139576000366003190112610139576106bb6110cb565b60008051602061156783398151915280546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b346101395760403660031901126101395761072b602435600435610cb7565b60405180916020820160208352815180915260206040840192019060005b818110610757575050500390f35b82516001600160a01b0316845285945060209384019390920191600101610749565b3461013957600036600319011261013957600080516020611587833981519152546040516001600160a01b039091168152602090f35b3461013957600036600319011261013957600060206040516107d081610bc8565b8281520152600080516020611547833981519152546000805160206115c7833981519152546040805190926001600160a01b0390811692169060209061081581610bc8565b838152019081528251918252516001600160a01b03166020820152f35b34610139576000366003190112610139577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316300361088b5760206040516000805160206115878339815191528152f35b63703e46dd60e11b60005260046000fd5b6040366003190112610139576108b0610b85565b602435906001600160401b0382116101395736602383011215610139578160040135906108dc82610c1a565b916108ea6040519384610bf9565b8083526020830193366024838301011161013957816000926024602093018737840101526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016308114908115610ab9575b5061088b576109506110cb565b6040516352d1902d60e01b81526001600160a01b0382169390602081600481885afa60009181610a85575b506109955784634c9c8ce360e01b60005260045260246000fd5b80600080516020611587833981519152869203610a715750823b15610a5d5760008051602061158783398151915280546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2825115610a425760008091610167945190845af43d15610a3a573d91610a1d83610c1a565b92610a2b6040519485610bf9565b83523d6000602085013e611228565b606091611228565b50505034610a4c57005b63b398979f60e01b60005260046000fd5b634c9c8ce360e01b60005260045260246000fd5b632a87526960e21b60005260045260246000fd5b9091506020813d602011610ab1575b81610aa160209383610bf9565b810103126101395751908661097b565b3d9150610a94565b600080516020611587833981519152546001600160a01b03161415905084610943565b3461013957604036600319011261013957610af5610b85565b6024356001600160401b03811161013957602091610b1a610b20923690600401610b9b565b91610f05565b6040516001600160a01b039091168152f35b34610139576020366003190112610139576004359063ffffffff60e01b821680920361013957602091635c4f270b60e01b8114908115610b74575b5015158152f35b6301ffc9a760e01b14905083610b6d565b600435906001600160a01b038216820361013957565b9181601f84011215610139578235916001600160401b038311610139576020838186019501011161013957565b604081019081106001600160401b03821117610be357604052565b634e487b7160e01b600052604160045260246000fd5b90601f801991011681019081106001600160401b03821117610be357604052565b6001600160401b038111610be357601f01601f191660200190565b60005b838110610c485750506000910152565b8181015183820152602001610c38565b90602091610c7181518092818552858086019101610c35565b601f01601f1916010190565b6001600160401b038111610be35760051b60200190565b91908201809211610ca157565b634e487b7160e01b600052601160045260246000fd5b9091600080516020611527833981519152549283831015610dd057610cdc9083610c94565b92808411610dc8575b50818303928311610ca15790610cfa83610c7d565b92610d086040519485610bf9565b808452610d17601f1991610c7d565b01366020850137600080516020611527833981519152549060005b8451811015610dc357610d458183610c94565b600084821015610daf5760008051602061152783398151915290527f0fbe5a72878ef604ae3790b4a26433b276c547e333ec85e890b8d8e065c16496015485516001600160a01b0390911690600090831015610daf5750600582901b860160200152600101610d32565b634e487b7160e01b81526032600452602490fd5b505050565b925038610ce5565b50915050604051610de2602082610bf9565b60008152600036813790565b6001600160a01b031660009081527f2a4c5f206148f75b3c203bb4f62027a088ca55bbc9fba0fb4e0029fabdf990066020526040902090565b906040519060208201926bffffffffffffffffffffffff199060601b168352603482015260348152610e5a605482610bf9565b51902090565b6000805160206115c783398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03168015610eef5760008051602061156783398151915280546001600160a01b0319811683179091556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b631e4fbdf760e01b600052600060045260246000fd5b91600090610f1233610dee565b5493600185018086116110b757610f2833610dee565b556000805160206115c7833981519152546001600160a01b031694610f4d9033610e27565b60209060405196610f5e8389610bf9565b858852601f198301978836858301376040519161029d808401908482106001600160401b038311176110a35791849391610f9c9361128a8639611101565b039086f580156110985760018060a01b03169560405191610fbd8184610bf9565b8583523690830137853b15611094578391611033849260a4604051968795869563fe1d464760e01b875233600488015260018060a01b03169a8b602488015260806044880152816084880152838701378481018201879052601f01601f1916840184810382016003190160648601520190610c58565b038183885af1801561108957611079575b509061104f83611154565b50827fb1c7fff7b87010c38efaf8d7e5a7d5e41b5462f5c0a1c399a78d07bb9ce2d39d339380a490565b8161108391610bf9565b38611044565b6040513d84823e3d90fd5b8380fd5b6040513d86823e3d90fd5b634e487b7160e01b8a52604160045260248afd5b634e487b7160e01b84526011600452602484fd5b600080516020611567833981519152546001600160a01b031633036110ec57565b63118cdaa760e01b6000523360045260246000fd5b6001600160a01b03909116815260406020820181905261112392910190610c58565b90565b60ff6000805160206115e78339815191525460401c161561114357565b631afcd79f60e31b60005260046000fd5b90816000526000805160206115a783398151915260205260406000205415600014611222576000805160206115278339815191525491600160401b831015610be35760018301600080516020611527833981519152556000926000805160206115278339815191525481101561120e576020846000805160206115278339815191528495965220015560008051602061152783398151915254906000526000805160206115a7833981519152602052604060002055600190565b634e487b7160e01b84526032600452602484fd5b60009150565b9061124e575080511561123d57805190602001fd5b63d6bda27560e01b60005260046000fd5b81511580611280575b61125f575090565b639996b31560e01b60009081526001600160a01b0391909116600452602490fd5b50803b1561125756fe608060405261029d8038038061001481610188565b928339810190604081830312610183578051906001600160a01b03821690818303610183576020810151906001600160401b038211610183570183601f820112156101835780519061006d610068836101c3565b610188565b94828652602083830101116101835760005b82811061016e575050602060009185010152813b1561015a577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a28151156101415760008083602061012995519101845af43d15610139573d91610119610068846101c3565b9283523d6000602085013e6101de565b505b604051605d90816102408239f35b6060916101de565b5050341561012b5763b398979f60e01b60005260046000fd5b634c9c8ce360e01b60005260045260246000fd5b8060208092840101518282890101520161007f565b600080fd5b6040519190601f01601f191682016001600160401b038111838210176101ad57604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b0381116101ad57601f01601f191660200190565b9061020457508051156101f357805190602001fd5b63d6bda27560e01b60005260046000fd5b81511580610236575b610215575090565b639996b31560e01b60009081526001600160a01b0391909116600452602490fd5b50803b1561020d56fe60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5460009081906001600160a01b0316368280378136915af43d6000803e15604b573d6000f35b3d6000fdfea164736f6c634300081e000a2a4c5f206148f75b3c203bb4f62027a088ca55bbc9fba0fb4e0029fabdf990042a4c5f206148f75b3c203bb4f62027a088ca55bbc9fba0fb4e0029fabdf990029016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc2a4c5f206148f75b3c203bb4f62027a088ca55bbc9fba0fb4e0029fabdf990052a4c5f206148f75b3c203bb4f62027a088ca55bbc9fba0fb4e0029fabdf99003f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a164736f6c634300081e000a";
508
+ const isSuperArgs = (xs) => xs.length > 1;
509
+ class SLCCoreFactory__factory extends ethers_1.ContractFactory {
510
+ constructor(...args) {
511
+ if (isSuperArgs(args)) {
512
+ super(...args);
513
+ }
514
+ else {
515
+ super(_abi, _bytecode, args[0]);
516
+ }
517
+ this.contractName = "SLCCoreFactory";
518
+ }
519
+ getDeployTransaction(overrides) {
520
+ return super.getDeployTransaction(overrides || {});
521
+ }
522
+ deploy(overrides) {
523
+ return super.deploy(overrides || {});
524
+ }
525
+ connect(runner) {
526
+ return super.connect(runner);
527
+ }
528
+ static contractName;
529
+ contractName;
530
+ static bytecode = _bytecode;
531
+ static abi = _abi;
532
+ static createInterface() {
533
+ return new ethers_1.Interface(_abi);
534
+ }
535
+ static connect(address, runner) {
536
+ return new ethers_1.Contract(address, _abi, runner);
537
+ }
538
+ }
539
+ exports.SLCCoreFactory__factory = SLCCoreFactory__factory;