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

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 +984 -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 +1736 -0
  62. package/lib.commonjs/factories/contracts/governance/Governance__factory.js +2281 -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 +984 -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 +1736 -0
  176. package/lib.esm/factories/contracts/governance/Governance__factory.js +2277 -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,261 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../../../common";
4
+ import type { SLCCore, SLCCoreInterface } from "../../../contracts/slc-core/SLCCore";
5
+ type SLCCoreConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class SLCCore__factory extends ContractFactory {
7
+ constructor(...args: SLCCoreConstructorParams);
8
+ getDeployTransaction(overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<SLCCore & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): SLCCore__factory;
17
+ static readonly contractName: "SLCCore";
18
+ readonly contractName: "SLCCore";
19
+ static readonly bytecode = "0x6080806040523460d2577ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460ff8160401c1660c1576002600160401b03196001600160401b03821601605c575b604051610dcc90816100d88239f35b6001600160401b0319166001600160401b039081177ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005581527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a13880604d565b63f92ee8a960e01b60005260046000fd5b600080fdfe608080604052600436101561001d575b50361561001b57600080fd5b005b60003560e01c90816301ffc9a714610a77575080636df82bf4146107d6578063ddd1c18e1461066d578063e355396d146105915763fe1d464714610061573861000f565b3461058c57608036600319011261058c576004356001600160a01b0381169081900361058c5761008f610b38565b6044356001600160401b03811161058c576100ae903690600401610b0b565b92906064356001600160401b03811161058c576100cf903690600401610b0b565b949093600080516020610da0833981519152549460ff8660401c1615956001600160401b03811680159081610584575b600114908161057a575b159081610571575b506105605767ffffffffffffffff198116600117600080516020610da08339815191525586610533575b506001600160401b03831161043e57610162600080516020610d8083398151915254610b8a565b601f81116104e9575b50600083601f811160011461045f578061019b92600091610454575b508160011b916000199060031b1c19161790565b600080516020610d80833981519152555b6001600160401b03871161043e576101d2600080516020610d0083398151915254610b8a565b601f81116103e9575b50600090601f881160011461033b579680610231927f96649fbb2866456643455ff884bff57e7db72d6ee11afbb622e9a8eff9e6f21a979899600092610330575b50508160011b916000199060031b1c19161790565b600080516020610d00833981519152555b600080516020610d6083398151915280546001600160a01b03929092166001600160a01b03199283161790557ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708901805490911685179055427ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708902556040516020808252909283926102d392840191610bc4565b0390a26102dc57005b60ff60401b19600080516020610da08339815191525416600080516020610da0833981519152557fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602060405160018152a1005b01359050388061021c565b600080516020610d008339815191528252600080516020610d2083398151915291601f198916815b8181106103d1575091600193918a7f96649fbb2866456643455ff884bff57e7db72d6ee11afbb622e9a8eff9e6f21a999a9b94106103b7575b505050811b01600080516020610d0083398151915255610242565b0135600019600384901b60f8161c1916905538808061039c565b91936020600181928787013581550195019201610363565b600080516020610d0083398151915260005261042e90600080516020610d20833981519152601f8a0160051c81019160208b10610434575b601f0160051c0190610ce8565b386101db565b9091508190610421565b634e487b7160e01b600052604160045260246000fd5b905086013538610187565b50600080516020610d808339815191528152600080516020610d408339815191529084601f198116825b8181106104ce5750106104b4575b5050600183811b01600080516020610d80833981519152556101ac565b850135600019600386901b60f8161c191690553880610497565b88840135855560019094019360209384019388935001610489565b600080516020610d8083398151915260005261052d90600080516020610d40833981519152601f860160051c8101916020871061043457601f0160051c0190610ce8565b3861016b565b68ffffffffffffffffff19166801000000000000000117600080516020610da0833981519152553861013b565b63f92ee8a960e01b60005260046000fd5b90501538610111565b303b159150610109565b8891506100ff565b600080fd5b3461058c57608036600319011261058c57600435600281101561058c576105b6610b38565b604435916001600160401b03831161058c573660238401121561058c5782600401356001600160401b03811161043e57604051936105fe601f8301601f191660200186610b69565b818552366024838301011161058c57816000926024602093018388013785010152600080516020610d60833981519152546001600160a01b031633036106585760209261064e9260643592610c33565b6040519015158152f35b63988d1f0360e01b6000523360045260246000fd5b608036600319011261058c576024356004356044356001600160401b03811161058c5761069e903690600401610b0b565b9092606435906001600160401b03821161058c576020936106c6610768933690600401610b0b565b93908383897f85208b28331a2ddc87deba85d740779b245495ed55b9553c85a2297cb63d157c6040518b81528061070233948d8f840191610bc4565b0390a460018060a01b03600080516020610d60833981519152541694610756604051998a98899788976371896bf960e11b89523360048a01526024890152604488015260a0606488015260a4870191610bc4565b84810360031901608486015291610bc4565b039134905af19081156107ca5760009161078a575b6020826040519015158152f35b6020813d6020116107c2575b816107a360209383610b69565b810103126107be575180151581036107be579050602061077d565b5080fd5b3d9150610796565b6040513d6000823e3d90fd5b3461058c57600036600319011261058c57606060806040516107f781610b4e565b6000815260006020820152600060408201528280820152015260405161081c81610b4e565b600080516020610d60833981519152546001600160a01b0390811682527ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a7089015416602082019081527ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a70890254604080840191825251600080516020610d80833981519152549293928160006108ad83610b8a565b8083529260018116908115610a5857506001146109fd575b6108d192500382610b69565b60608301908152604051916000600080516020610d00833981519152546108f781610b8a565b80865290600181169081156109d95750600114610983575b509161096c916109258561097f96950385610b69565b608086019384526040519687966020885260018060a01b03905116602088015260018060a01b0390511660408701525160608601525160a0608086015260c0850190610aca565b9051838203601f190160a0850152610aca565b0390f35b600080516020610d0083398151915260009081529150600080516020610d208339815191525b8183106109bf575050830160200161096c61090f565b6001816020929493945483858a01015201910191906109a9565b60ff191660208088019190915291151560051b8601909101915061096c905061090f565b50600080516020610d8083398151915260009081529091600080516020610d408339815191525b818310610a3c5750509060206108d1928201016108c5565b6020919350806001915483858801015201910190918392610a24565b602092506108d194915060ff191682840152151560051b8201016108c5565b3461058c57602036600319011261058c576004359063ffffffff60e01b821680920361058c576020916301ffc9a760e01b8114908115610ab9575b5015158152f35b633e84f8e360e01b14905083610ab2565b919082519283825260005b848110610af6575050826000602080949584010152601f8019910116010190565b80602080928401015182828601015201610ad5565b9181601f8401121561058c578235916001600160401b03831161058c576020838186019501011161058c57565b602435906001600160a01b038216820361058c57565b60a081019081106001600160401b0382111761043e57604052565b90601f801991011681019081106001600160401b0382111761043e57604052565b90600182811c92168015610bba575b6020831014610ba457565b634e487b7160e01b600052602260045260246000fd5b91607f1691610b99565b908060209392818452848401376000828201840152601f01601f1916010190565b9493926002821015610c1d57606092610c1892875260018060a01b03166020870152608060408701526080860190610aca565b930152565b634e487b7160e01b600052602160045260246000fd5b9091939284511580610ce0575b610cd7576002821015610c1d5760018203610cc457600080865160208801865af4945b8515610ca2577f1c96d0d403ab5775272e1a820cb06f02ae5c0fc5fccb9d014c2bf9f045009172939291610c9d9160405194859485610be5565b0390a1565b90610cc091604051948594631cff564160e21b865260048601610be5565b0390fd5b60008086516020880184875af194610c63565b50600193505050565b508015610c40565b818110610cf3575050565b60008155600101610ce856fef304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708904593389ffcae5d5ac7abc8a7d0ded51b7fb0334335118eec3a8f8f41bf2879d65c394ce00b8f43a7a1e6b4be39eef6b85f5e64073751e9deb8caaec94b37d939ef304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708900f304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708903f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a164736f6c634300081e000a";
20
+ static readonly abi: readonly [{
21
+ readonly inputs: readonly [];
22
+ readonly stateMutability: "nonpayable";
23
+ readonly type: "constructor";
24
+ }, {
25
+ readonly inputs: readonly [{
26
+ readonly internalType: "enum IGovernance.OperationType";
27
+ readonly name: "operation";
28
+ readonly type: "uint8";
29
+ }, {
30
+ readonly internalType: "address";
31
+ readonly name: "to";
32
+ readonly type: "address";
33
+ }, {
34
+ readonly internalType: "bytes";
35
+ readonly name: "data";
36
+ readonly type: "bytes";
37
+ }, {
38
+ readonly internalType: "uint256";
39
+ readonly name: "value";
40
+ readonly type: "uint256";
41
+ }];
42
+ readonly name: "FailedToExecuteArbitraryCall";
43
+ readonly type: "error";
44
+ }, {
45
+ readonly inputs: readonly [];
46
+ readonly name: "InvalidInitialization";
47
+ readonly type: "error";
48
+ }, {
49
+ readonly inputs: readonly [{
50
+ readonly internalType: "address";
51
+ readonly name: "sender";
52
+ readonly type: "address";
53
+ }];
54
+ readonly name: "NotGovernance";
55
+ readonly type: "error";
56
+ }, {
57
+ readonly inputs: readonly [];
58
+ readonly name: "NotInitializing";
59
+ readonly type: "error";
60
+ }, {
61
+ readonly anonymous: false;
62
+ readonly inputs: readonly [{
63
+ readonly indexed: false;
64
+ readonly internalType: "enum IGovernance.OperationType";
65
+ readonly name: "operation";
66
+ readonly type: "uint8";
67
+ }, {
68
+ readonly indexed: false;
69
+ readonly internalType: "address";
70
+ readonly name: "to";
71
+ readonly type: "address";
72
+ }, {
73
+ readonly indexed: false;
74
+ readonly internalType: "bytes";
75
+ readonly name: "data";
76
+ readonly type: "bytes";
77
+ }, {
78
+ readonly indexed: false;
79
+ readonly internalType: "uint256";
80
+ readonly name: "value";
81
+ readonly type: "uint256";
82
+ }];
83
+ readonly name: "ArbitraryExecute";
84
+ readonly type: "event";
85
+ }, {
86
+ readonly anonymous: false;
87
+ readonly inputs: readonly [{
88
+ readonly indexed: false;
89
+ readonly internalType: "uint64";
90
+ readonly name: "version";
91
+ readonly type: "uint64";
92
+ }];
93
+ readonly name: "Initialized";
94
+ readonly type: "event";
95
+ }, {
96
+ readonly anonymous: false;
97
+ readonly inputs: readonly [{
98
+ readonly indexed: true;
99
+ readonly internalType: "address";
100
+ readonly name: "creator";
101
+ readonly type: "address";
102
+ }, {
103
+ readonly indexed: false;
104
+ readonly internalType: "string";
105
+ readonly name: "legalDocumentLink";
106
+ readonly type: "string";
107
+ }];
108
+ readonly name: "SLCInitialized";
109
+ readonly type: "event";
110
+ }, {
111
+ readonly anonymous: false;
112
+ readonly inputs: readonly [{
113
+ readonly indexed: true;
114
+ readonly internalType: "address";
115
+ readonly name: "requester";
116
+ readonly type: "address";
117
+ }, {
118
+ readonly indexed: true;
119
+ readonly internalType: "uint256";
120
+ readonly name: "serviceFee";
121
+ readonly type: "uint256";
122
+ }, {
123
+ readonly indexed: true;
124
+ readonly internalType: "uint256";
125
+ readonly name: "neutralsNumber";
126
+ readonly type: "uint256";
127
+ }, {
128
+ readonly indexed: false;
129
+ readonly internalType: "string";
130
+ readonly name: "additionalLink";
131
+ readonly type: "string";
132
+ }];
133
+ readonly name: "ServiceRequested";
134
+ readonly type: "event";
135
+ }, {
136
+ readonly inputs: readonly [{
137
+ readonly internalType: "address";
138
+ readonly name: "creator_";
139
+ readonly type: "address";
140
+ }, {
141
+ readonly internalType: "address";
142
+ readonly name: "governance_";
143
+ readonly type: "address";
144
+ }, {
145
+ readonly internalType: "string";
146
+ readonly name: "legalDocumentLink_";
147
+ readonly type: "string";
148
+ }, {
149
+ readonly internalType: "bytes";
150
+ readonly name: "data_";
151
+ readonly type: "bytes";
152
+ }];
153
+ readonly name: "__SLCCore_init";
154
+ readonly outputs: readonly [];
155
+ readonly stateMutability: "nonpayable";
156
+ readonly type: "function";
157
+ }, {
158
+ readonly inputs: readonly [{
159
+ readonly internalType: "enum IGovernance.OperationType";
160
+ readonly name: "operation_";
161
+ readonly type: "uint8";
162
+ }, {
163
+ readonly internalType: "address";
164
+ readonly name: "to_";
165
+ readonly type: "address";
166
+ }, {
167
+ readonly internalType: "bytes";
168
+ readonly name: "data_";
169
+ readonly type: "bytes";
170
+ }, {
171
+ readonly internalType: "uint256";
172
+ readonly name: "value_";
173
+ readonly type: "uint256";
174
+ }];
175
+ readonly name: "arbitraryExecute";
176
+ readonly outputs: readonly [{
177
+ readonly internalType: "bool";
178
+ readonly name: "success";
179
+ readonly type: "bool";
180
+ }];
181
+ readonly stateMutability: "nonpayable";
182
+ readonly type: "function";
183
+ }, {
184
+ readonly inputs: readonly [];
185
+ readonly name: "getSLCCoreStorage";
186
+ readonly outputs: readonly [{
187
+ readonly components: readonly [{
188
+ readonly internalType: "contract IGovernance";
189
+ readonly name: "governance";
190
+ readonly type: "address";
191
+ }, {
192
+ readonly internalType: "address";
193
+ readonly name: "slcCreator";
194
+ readonly type: "address";
195
+ }, {
196
+ readonly internalType: "uint256";
197
+ readonly name: "slcCreationTimestamp";
198
+ readonly type: "uint256";
199
+ }, {
200
+ readonly internalType: "string";
201
+ readonly name: "legalDocumentLink";
202
+ readonly type: "string";
203
+ }, {
204
+ readonly internalType: "bytes";
205
+ readonly name: "data";
206
+ readonly type: "bytes";
207
+ }];
208
+ readonly internalType: "struct SLCCore.SLCCoreStorage";
209
+ readonly name: "";
210
+ readonly type: "tuple";
211
+ }];
212
+ readonly stateMutability: "pure";
213
+ readonly type: "function";
214
+ }, {
215
+ readonly inputs: readonly [{
216
+ readonly internalType: "uint256";
217
+ readonly name: "serviceFee_";
218
+ readonly type: "uint256";
219
+ }, {
220
+ readonly internalType: "uint256";
221
+ readonly name: "neutralsNumber_";
222
+ readonly type: "uint256";
223
+ }, {
224
+ readonly internalType: "string";
225
+ readonly name: "additionalLink_";
226
+ readonly type: "string";
227
+ }, {
228
+ readonly internalType: "bytes";
229
+ readonly name: "data_";
230
+ readonly type: "bytes";
231
+ }];
232
+ readonly name: "requestService";
233
+ readonly outputs: readonly [{
234
+ readonly internalType: "bool";
235
+ readonly name: "";
236
+ readonly type: "bool";
237
+ }];
238
+ readonly stateMutability: "payable";
239
+ readonly type: "function";
240
+ }, {
241
+ readonly inputs: readonly [{
242
+ readonly internalType: "bytes4";
243
+ readonly name: "interfaceId";
244
+ readonly type: "bytes4";
245
+ }];
246
+ readonly name: "supportsInterface";
247
+ readonly outputs: readonly [{
248
+ readonly internalType: "bool";
249
+ readonly name: "";
250
+ readonly type: "bool";
251
+ }];
252
+ readonly stateMutability: "view";
253
+ readonly type: "function";
254
+ }, {
255
+ readonly stateMutability: "payable";
256
+ readonly type: "receive";
257
+ }];
258
+ static createInterface(): SLCCoreInterface;
259
+ static connect(address: string, runner?: ContractRunner | null): SLCCore;
260
+ }
261
+ export {};
@@ -0,0 +1,347 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SLCCore__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
+ stateMutability: "nonpayable",
12
+ type: "constructor",
13
+ },
14
+ {
15
+ inputs: [
16
+ {
17
+ internalType: "enum IGovernance.OperationType",
18
+ name: "operation",
19
+ type: "uint8",
20
+ },
21
+ {
22
+ internalType: "address",
23
+ name: "to",
24
+ type: "address",
25
+ },
26
+ {
27
+ internalType: "bytes",
28
+ name: "data",
29
+ type: "bytes",
30
+ },
31
+ {
32
+ internalType: "uint256",
33
+ name: "value",
34
+ type: "uint256",
35
+ },
36
+ ],
37
+ name: "FailedToExecuteArbitraryCall",
38
+ type: "error",
39
+ },
40
+ {
41
+ inputs: [],
42
+ name: "InvalidInitialization",
43
+ type: "error",
44
+ },
45
+ {
46
+ inputs: [
47
+ {
48
+ internalType: "address",
49
+ name: "sender",
50
+ type: "address",
51
+ },
52
+ ],
53
+ name: "NotGovernance",
54
+ type: "error",
55
+ },
56
+ {
57
+ inputs: [],
58
+ name: "NotInitializing",
59
+ type: "error",
60
+ },
61
+ {
62
+ anonymous: false,
63
+ inputs: [
64
+ {
65
+ indexed: false,
66
+ internalType: "enum IGovernance.OperationType",
67
+ name: "operation",
68
+ type: "uint8",
69
+ },
70
+ {
71
+ indexed: false,
72
+ internalType: "address",
73
+ name: "to",
74
+ type: "address",
75
+ },
76
+ {
77
+ indexed: false,
78
+ internalType: "bytes",
79
+ name: "data",
80
+ type: "bytes",
81
+ },
82
+ {
83
+ indexed: false,
84
+ internalType: "uint256",
85
+ name: "value",
86
+ type: "uint256",
87
+ },
88
+ ],
89
+ name: "ArbitraryExecute",
90
+ type: "event",
91
+ },
92
+ {
93
+ anonymous: false,
94
+ inputs: [
95
+ {
96
+ indexed: false,
97
+ internalType: "uint64",
98
+ name: "version",
99
+ type: "uint64",
100
+ },
101
+ ],
102
+ name: "Initialized",
103
+ type: "event",
104
+ },
105
+ {
106
+ anonymous: false,
107
+ inputs: [
108
+ {
109
+ indexed: true,
110
+ internalType: "address",
111
+ name: "creator",
112
+ type: "address",
113
+ },
114
+ {
115
+ indexed: false,
116
+ internalType: "string",
117
+ name: "legalDocumentLink",
118
+ type: "string",
119
+ },
120
+ ],
121
+ name: "SLCInitialized",
122
+ type: "event",
123
+ },
124
+ {
125
+ anonymous: false,
126
+ inputs: [
127
+ {
128
+ indexed: true,
129
+ internalType: "address",
130
+ name: "requester",
131
+ type: "address",
132
+ },
133
+ {
134
+ indexed: true,
135
+ internalType: "uint256",
136
+ name: "serviceFee",
137
+ type: "uint256",
138
+ },
139
+ {
140
+ indexed: true,
141
+ internalType: "uint256",
142
+ name: "neutralsNumber",
143
+ type: "uint256",
144
+ },
145
+ {
146
+ indexed: false,
147
+ internalType: "string",
148
+ name: "additionalLink",
149
+ type: "string",
150
+ },
151
+ ],
152
+ name: "ServiceRequested",
153
+ type: "event",
154
+ },
155
+ {
156
+ inputs: [
157
+ {
158
+ internalType: "address",
159
+ name: "creator_",
160
+ type: "address",
161
+ },
162
+ {
163
+ internalType: "address",
164
+ name: "governance_",
165
+ type: "address",
166
+ },
167
+ {
168
+ internalType: "string",
169
+ name: "legalDocumentLink_",
170
+ type: "string",
171
+ },
172
+ {
173
+ internalType: "bytes",
174
+ name: "data_",
175
+ type: "bytes",
176
+ },
177
+ ],
178
+ name: "__SLCCore_init",
179
+ outputs: [],
180
+ stateMutability: "nonpayable",
181
+ type: "function",
182
+ },
183
+ {
184
+ inputs: [
185
+ {
186
+ internalType: "enum IGovernance.OperationType",
187
+ name: "operation_",
188
+ type: "uint8",
189
+ },
190
+ {
191
+ internalType: "address",
192
+ name: "to_",
193
+ type: "address",
194
+ },
195
+ {
196
+ internalType: "bytes",
197
+ name: "data_",
198
+ type: "bytes",
199
+ },
200
+ {
201
+ internalType: "uint256",
202
+ name: "value_",
203
+ type: "uint256",
204
+ },
205
+ ],
206
+ name: "arbitraryExecute",
207
+ outputs: [
208
+ {
209
+ internalType: "bool",
210
+ name: "success",
211
+ type: "bool",
212
+ },
213
+ ],
214
+ stateMutability: "nonpayable",
215
+ type: "function",
216
+ },
217
+ {
218
+ inputs: [],
219
+ name: "getSLCCoreStorage",
220
+ outputs: [
221
+ {
222
+ components: [
223
+ {
224
+ internalType: "contract IGovernance",
225
+ name: "governance",
226
+ type: "address",
227
+ },
228
+ {
229
+ internalType: "address",
230
+ name: "slcCreator",
231
+ type: "address",
232
+ },
233
+ {
234
+ internalType: "uint256",
235
+ name: "slcCreationTimestamp",
236
+ type: "uint256",
237
+ },
238
+ {
239
+ internalType: "string",
240
+ name: "legalDocumentLink",
241
+ type: "string",
242
+ },
243
+ {
244
+ internalType: "bytes",
245
+ name: "data",
246
+ type: "bytes",
247
+ },
248
+ ],
249
+ internalType: "struct SLCCore.SLCCoreStorage",
250
+ name: "",
251
+ type: "tuple",
252
+ },
253
+ ],
254
+ stateMutability: "pure",
255
+ type: "function",
256
+ },
257
+ {
258
+ inputs: [
259
+ {
260
+ internalType: "uint256",
261
+ name: "serviceFee_",
262
+ type: "uint256",
263
+ },
264
+ {
265
+ internalType: "uint256",
266
+ name: "neutralsNumber_",
267
+ type: "uint256",
268
+ },
269
+ {
270
+ internalType: "string",
271
+ name: "additionalLink_",
272
+ type: "string",
273
+ },
274
+ {
275
+ internalType: "bytes",
276
+ name: "data_",
277
+ type: "bytes",
278
+ },
279
+ ],
280
+ name: "requestService",
281
+ outputs: [
282
+ {
283
+ internalType: "bool",
284
+ name: "",
285
+ type: "bool",
286
+ },
287
+ ],
288
+ stateMutability: "payable",
289
+ type: "function",
290
+ },
291
+ {
292
+ inputs: [
293
+ {
294
+ internalType: "bytes4",
295
+ name: "interfaceId",
296
+ type: "bytes4",
297
+ },
298
+ ],
299
+ name: "supportsInterface",
300
+ outputs: [
301
+ {
302
+ internalType: "bool",
303
+ name: "",
304
+ type: "bool",
305
+ },
306
+ ],
307
+ stateMutability: "view",
308
+ type: "function",
309
+ },
310
+ {
311
+ stateMutability: "payable",
312
+ type: "receive",
313
+ },
314
+ ];
315
+ const _bytecode = "0x6080806040523460d2577ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460ff8160401c1660c1576002600160401b03196001600160401b03821601605c575b604051610dcc90816100d88239f35b6001600160401b0319166001600160401b039081177ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005581527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a13880604d565b63f92ee8a960e01b60005260046000fd5b600080fdfe608080604052600436101561001d575b50361561001b57600080fd5b005b60003560e01c90816301ffc9a714610a77575080636df82bf4146107d6578063ddd1c18e1461066d578063e355396d146105915763fe1d464714610061573861000f565b3461058c57608036600319011261058c576004356001600160a01b0381169081900361058c5761008f610b38565b6044356001600160401b03811161058c576100ae903690600401610b0b565b92906064356001600160401b03811161058c576100cf903690600401610b0b565b949093600080516020610da0833981519152549460ff8660401c1615956001600160401b03811680159081610584575b600114908161057a575b159081610571575b506105605767ffffffffffffffff198116600117600080516020610da08339815191525586610533575b506001600160401b03831161043e57610162600080516020610d8083398151915254610b8a565b601f81116104e9575b50600083601f811160011461045f578061019b92600091610454575b508160011b916000199060031b1c19161790565b600080516020610d80833981519152555b6001600160401b03871161043e576101d2600080516020610d0083398151915254610b8a565b601f81116103e9575b50600090601f881160011461033b579680610231927f96649fbb2866456643455ff884bff57e7db72d6ee11afbb622e9a8eff9e6f21a979899600092610330575b50508160011b916000199060031b1c19161790565b600080516020610d00833981519152555b600080516020610d6083398151915280546001600160a01b03929092166001600160a01b03199283161790557ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708901805490911685179055427ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708902556040516020808252909283926102d392840191610bc4565b0390a26102dc57005b60ff60401b19600080516020610da08339815191525416600080516020610da0833981519152557fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602060405160018152a1005b01359050388061021c565b600080516020610d008339815191528252600080516020610d2083398151915291601f198916815b8181106103d1575091600193918a7f96649fbb2866456643455ff884bff57e7db72d6ee11afbb622e9a8eff9e6f21a999a9b94106103b7575b505050811b01600080516020610d0083398151915255610242565b0135600019600384901b60f8161c1916905538808061039c565b91936020600181928787013581550195019201610363565b600080516020610d0083398151915260005261042e90600080516020610d20833981519152601f8a0160051c81019160208b10610434575b601f0160051c0190610ce8565b386101db565b9091508190610421565b634e487b7160e01b600052604160045260246000fd5b905086013538610187565b50600080516020610d808339815191528152600080516020610d408339815191529084601f198116825b8181106104ce5750106104b4575b5050600183811b01600080516020610d80833981519152556101ac565b850135600019600386901b60f8161c191690553880610497565b88840135855560019094019360209384019388935001610489565b600080516020610d8083398151915260005261052d90600080516020610d40833981519152601f860160051c8101916020871061043457601f0160051c0190610ce8565b3861016b565b68ffffffffffffffffff19166801000000000000000117600080516020610da0833981519152553861013b565b63f92ee8a960e01b60005260046000fd5b90501538610111565b303b159150610109565b8891506100ff565b600080fd5b3461058c57608036600319011261058c57600435600281101561058c576105b6610b38565b604435916001600160401b03831161058c573660238401121561058c5782600401356001600160401b03811161043e57604051936105fe601f8301601f191660200186610b69565b818552366024838301011161058c57816000926024602093018388013785010152600080516020610d60833981519152546001600160a01b031633036106585760209261064e9260643592610c33565b6040519015158152f35b63988d1f0360e01b6000523360045260246000fd5b608036600319011261058c576024356004356044356001600160401b03811161058c5761069e903690600401610b0b565b9092606435906001600160401b03821161058c576020936106c6610768933690600401610b0b565b93908383897f85208b28331a2ddc87deba85d740779b245495ed55b9553c85a2297cb63d157c6040518b81528061070233948d8f840191610bc4565b0390a460018060a01b03600080516020610d60833981519152541694610756604051998a98899788976371896bf960e11b89523360048a01526024890152604488015260a0606488015260a4870191610bc4565b84810360031901608486015291610bc4565b039134905af19081156107ca5760009161078a575b6020826040519015158152f35b6020813d6020116107c2575b816107a360209383610b69565b810103126107be575180151581036107be579050602061077d565b5080fd5b3d9150610796565b6040513d6000823e3d90fd5b3461058c57600036600319011261058c57606060806040516107f781610b4e565b6000815260006020820152600060408201528280820152015260405161081c81610b4e565b600080516020610d60833981519152546001600160a01b0390811682527ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a7089015416602082019081527ff304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a70890254604080840191825251600080516020610d80833981519152549293928160006108ad83610b8a565b8083529260018116908115610a5857506001146109fd575b6108d192500382610b69565b60608301908152604051916000600080516020610d00833981519152546108f781610b8a565b80865290600181169081156109d95750600114610983575b509161096c916109258561097f96950385610b69565b608086019384526040519687966020885260018060a01b03905116602088015260018060a01b0390511660408701525160608601525160a0608086015260c0850190610aca565b9051838203601f190160a0850152610aca565b0390f35b600080516020610d0083398151915260009081529150600080516020610d208339815191525b8183106109bf575050830160200161096c61090f565b6001816020929493945483858a01015201910191906109a9565b60ff191660208088019190915291151560051b8601909101915061096c905061090f565b50600080516020610d8083398151915260009081529091600080516020610d408339815191525b818310610a3c5750509060206108d1928201016108c5565b6020919350806001915483858801015201910190918392610a24565b602092506108d194915060ff191682840152151560051b8201016108c5565b3461058c57602036600319011261058c576004359063ffffffff60e01b821680920361058c576020916301ffc9a760e01b8114908115610ab9575b5015158152f35b633e84f8e360e01b14905083610ab2565b919082519283825260005b848110610af6575050826000602080949584010152601f8019910116010190565b80602080928401015182828601015201610ad5565b9181601f8401121561058c578235916001600160401b03831161058c576020838186019501011161058c57565b602435906001600160a01b038216820361058c57565b60a081019081106001600160401b0382111761043e57604052565b90601f801991011681019081106001600160401b0382111761043e57604052565b90600182811c92168015610bba575b6020831014610ba457565b634e487b7160e01b600052602260045260246000fd5b91607f1691610b99565b908060209392818452848401376000828201840152601f01601f1916010190565b9493926002821015610c1d57606092610c1892875260018060a01b03166020870152608060408701526080860190610aca565b930152565b634e487b7160e01b600052602160045260246000fd5b9091939284511580610ce0575b610cd7576002821015610c1d5760018203610cc457600080865160208801865af4945b8515610ca2577f1c96d0d403ab5775272e1a820cb06f02ae5c0fc5fccb9d014c2bf9f045009172939291610c9d9160405194859485610be5565b0390a1565b90610cc091604051948594631cff564160e21b865260048601610be5565b0390fd5b60008086516020880184875af194610c63565b50600193505050565b508015610c40565b818110610cf3575050565b60008155600101610ce856fef304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708904593389ffcae5d5ac7abc8a7d0ded51b7fb0334335118eec3a8f8f41bf2879d65c394ce00b8f43a7a1e6b4be39eef6b85f5e64073751e9deb8caaec94b37d939ef304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708900f304ff929824090662a6977433af60f5d227e05590d7b320d3ccf44d6a708903f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a164736f6c634300081e000a";
316
+ const isSuperArgs = (xs) => xs.length > 1;
317
+ class SLCCore__factory extends ethers_1.ContractFactory {
318
+ constructor(...args) {
319
+ if (isSuperArgs(args)) {
320
+ super(...args);
321
+ }
322
+ else {
323
+ super(_abi, _bytecode, args[0]);
324
+ }
325
+ this.contractName = "SLCCore";
326
+ }
327
+ getDeployTransaction(overrides) {
328
+ return super.getDeployTransaction(overrides || {});
329
+ }
330
+ deploy(overrides) {
331
+ return super.deploy(overrides || {});
332
+ }
333
+ connect(runner) {
334
+ return super.connect(runner);
335
+ }
336
+ static contractName;
337
+ contractName;
338
+ static bytecode = _bytecode;
339
+ static abi = _abi;
340
+ static createInterface() {
341
+ return new ethers_1.Interface(_abi);
342
+ }
343
+ static connect(address, runner) {
344
+ return new ethers_1.Contract(address, _abi, runner);
345
+ }
346
+ }
347
+ exports.SLCCore__factory = SLCCore__factory;
@@ -0,0 +1,2 @@
1
+ export { SLCCore__factory } from "./SLCCore__factory";
2
+ export { SLCCoreFactory__factory } from "./SLCCoreFactory__factory";
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SLCCoreFactory__factory = exports.SLCCore__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ var SLCCore__factory_1 = require("./SLCCore__factory");
8
+ Object.defineProperty(exports, "SLCCore__factory", { enumerable: true, get: function () { return SLCCore__factory_1.SLCCore__factory; } });
9
+ var SLCCoreFactory__factory_1 = require("./SLCCoreFactory__factory");
10
+ Object.defineProperty(exports, "SLCCoreFactory__factory", { enumerable: true, get: function () { return SLCCoreFactory__factory_1.SLCCoreFactory__factory; } });