@web3dotorg/evm-slc-core-sdk 0.3.6 → 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 -2328
  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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,427 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common";
3
+ export declare namespace ParameterRegistry {
4
+ type AddressParameterStruct = {
5
+ key: string;
6
+ value: AddressLike;
7
+ };
8
+ type AddressParameterStructOutput = [key: string, value: string] & {
9
+ key: string;
10
+ value: string;
11
+ };
12
+ type Bytes32ParameterStruct = {
13
+ key: string;
14
+ value: BytesLike;
15
+ };
16
+ type Bytes32ParameterStructOutput = [key: string, value: string] & {
17
+ key: string;
18
+ value: string;
19
+ };
20
+ type StringParameterStruct = {
21
+ key: string;
22
+ value: string;
23
+ };
24
+ type StringParameterStructOutput = [key: string, value: string] & {
25
+ key: string;
26
+ value: string;
27
+ };
28
+ type UintParameterStruct = {
29
+ key: string;
30
+ value: BigNumberish;
31
+ };
32
+ type UintParameterStructOutput = [key: string, value: bigint] & {
33
+ key: string;
34
+ value: bigint;
35
+ };
36
+ }
37
+ export interface ParameterRegistryInterface extends Interface {
38
+ getFunction(nameOrSignature: "UPGRADE_INTERFACE_VERSION" | "__ParameterRegistry_init" | "addOwners" | "getAddr" | "getAddressParameters" | "getBytes32" | "getBytes32Parameters" | "getOwners" | "getParameterCounts" | "getString" | "getStringParameters" | "getUint" | "getUintParameters" | "hasParameter" | "implementation" | "isOwner" | "proxiableUUID" | "removeAddr" | "removeBytes32" | "removeOwners" | "removeString" | "removeUint" | "renounceOwnership" | "setAddr" | "setBytes32" | "setString" | "setUint" | "supportsInterface" | "upgradeToAndCall"): FunctionFragment;
39
+ getEvent(nameOrSignatureOrTopic: "AddressParameterSet" | "Bytes32ParameterSet" | "Initialized" | "OwnersAdded" | "OwnersRemoved" | "StringParameterSet" | "UintParameterSet" | "Upgraded"): EventFragment;
40
+ encodeFunctionData(functionFragment: "UPGRADE_INTERFACE_VERSION", values?: undefined): string;
41
+ encodeFunctionData(functionFragment: "__ParameterRegistry_init", values: [AddressLike[]]): string;
42
+ encodeFunctionData(functionFragment: "addOwners", values: [AddressLike[]]): string;
43
+ encodeFunctionData(functionFragment: "getAddr", values: [string]): string;
44
+ encodeFunctionData(functionFragment: "getAddressParameters", values: [BigNumberish, BigNumberish]): string;
45
+ encodeFunctionData(functionFragment: "getBytes32", values: [string]): string;
46
+ encodeFunctionData(functionFragment: "getBytes32Parameters", values: [BigNumberish, BigNumberish]): string;
47
+ encodeFunctionData(functionFragment: "getOwners", values?: undefined): string;
48
+ encodeFunctionData(functionFragment: "getParameterCounts", values?: undefined): string;
49
+ encodeFunctionData(functionFragment: "getString", values: [string]): string;
50
+ encodeFunctionData(functionFragment: "getStringParameters", values: [BigNumberish, BigNumberish]): string;
51
+ encodeFunctionData(functionFragment: "getUint", values: [string]): string;
52
+ encodeFunctionData(functionFragment: "getUintParameters", values: [BigNumberish, BigNumberish]): string;
53
+ encodeFunctionData(functionFragment: "hasParameter", values: [string, BigNumberish]): string;
54
+ encodeFunctionData(functionFragment: "implementation", values?: undefined): string;
55
+ encodeFunctionData(functionFragment: "isOwner", values: [AddressLike]): string;
56
+ encodeFunctionData(functionFragment: "proxiableUUID", values?: undefined): string;
57
+ encodeFunctionData(functionFragment: "removeAddr", values: [string]): string;
58
+ encodeFunctionData(functionFragment: "removeBytes32", values: [string]): string;
59
+ encodeFunctionData(functionFragment: "removeOwners", values: [AddressLike[]]): string;
60
+ encodeFunctionData(functionFragment: "removeString", values: [string]): string;
61
+ encodeFunctionData(functionFragment: "removeUint", values: [string]): string;
62
+ encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
63
+ encodeFunctionData(functionFragment: "setAddr", values: [string, AddressLike]): string;
64
+ encodeFunctionData(functionFragment: "setBytes32", values: [string, BytesLike]): string;
65
+ encodeFunctionData(functionFragment: "setString", values: [string, string]): string;
66
+ encodeFunctionData(functionFragment: "setUint", values: [string, BigNumberish]): string;
67
+ encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
68
+ encodeFunctionData(functionFragment: "upgradeToAndCall", values: [AddressLike, BytesLike]): string;
69
+ decodeFunctionResult(functionFragment: "UPGRADE_INTERFACE_VERSION", data: BytesLike): Result;
70
+ decodeFunctionResult(functionFragment: "__ParameterRegistry_init", data: BytesLike): Result;
71
+ decodeFunctionResult(functionFragment: "addOwners", data: BytesLike): Result;
72
+ decodeFunctionResult(functionFragment: "getAddr", data: BytesLike): Result;
73
+ decodeFunctionResult(functionFragment: "getAddressParameters", data: BytesLike): Result;
74
+ decodeFunctionResult(functionFragment: "getBytes32", data: BytesLike): Result;
75
+ decodeFunctionResult(functionFragment: "getBytes32Parameters", data: BytesLike): Result;
76
+ decodeFunctionResult(functionFragment: "getOwners", data: BytesLike): Result;
77
+ decodeFunctionResult(functionFragment: "getParameterCounts", data: BytesLike): Result;
78
+ decodeFunctionResult(functionFragment: "getString", data: BytesLike): Result;
79
+ decodeFunctionResult(functionFragment: "getStringParameters", data: BytesLike): Result;
80
+ decodeFunctionResult(functionFragment: "getUint", data: BytesLike): Result;
81
+ decodeFunctionResult(functionFragment: "getUintParameters", data: BytesLike): Result;
82
+ decodeFunctionResult(functionFragment: "hasParameter", data: BytesLike): Result;
83
+ decodeFunctionResult(functionFragment: "implementation", data: BytesLike): Result;
84
+ decodeFunctionResult(functionFragment: "isOwner", data: BytesLike): Result;
85
+ decodeFunctionResult(functionFragment: "proxiableUUID", data: BytesLike): Result;
86
+ decodeFunctionResult(functionFragment: "removeAddr", data: BytesLike): Result;
87
+ decodeFunctionResult(functionFragment: "removeBytes32", data: BytesLike): Result;
88
+ decodeFunctionResult(functionFragment: "removeOwners", data: BytesLike): Result;
89
+ decodeFunctionResult(functionFragment: "removeString", data: BytesLike): Result;
90
+ decodeFunctionResult(functionFragment: "removeUint", data: BytesLike): Result;
91
+ decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
92
+ decodeFunctionResult(functionFragment: "setAddr", data: BytesLike): Result;
93
+ decodeFunctionResult(functionFragment: "setBytes32", data: BytesLike): Result;
94
+ decodeFunctionResult(functionFragment: "setString", data: BytesLike): Result;
95
+ decodeFunctionResult(functionFragment: "setUint", data: BytesLike): Result;
96
+ decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
97
+ decodeFunctionResult(functionFragment: "upgradeToAndCall", data: BytesLike): Result;
98
+ }
99
+ export declare namespace AddressParameterSetEvent {
100
+ type InputTuple = [key: string, value: AddressLike];
101
+ type OutputTuple = [key: string, value: string];
102
+ interface OutputObject {
103
+ key: string;
104
+ value: string;
105
+ }
106
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
107
+ type Filter = TypedDeferredTopicFilter<Event>;
108
+ type Log = TypedEventLog<Event>;
109
+ type LogDescription = TypedLogDescription<Event>;
110
+ }
111
+ export declare namespace Bytes32ParameterSetEvent {
112
+ type InputTuple = [key: string, value: BytesLike];
113
+ type OutputTuple = [key: string, value: string];
114
+ interface OutputObject {
115
+ key: string;
116
+ value: string;
117
+ }
118
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
119
+ type Filter = TypedDeferredTopicFilter<Event>;
120
+ type Log = TypedEventLog<Event>;
121
+ type LogDescription = TypedLogDescription<Event>;
122
+ }
123
+ export declare namespace InitializedEvent {
124
+ type InputTuple = [version: BigNumberish];
125
+ type OutputTuple = [version: bigint];
126
+ interface OutputObject {
127
+ version: bigint;
128
+ }
129
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
130
+ type Filter = TypedDeferredTopicFilter<Event>;
131
+ type Log = TypedEventLog<Event>;
132
+ type LogDescription = TypedLogDescription<Event>;
133
+ }
134
+ export declare namespace OwnersAddedEvent {
135
+ type InputTuple = [newOwners: AddressLike[]];
136
+ type OutputTuple = [newOwners: string[]];
137
+ interface OutputObject {
138
+ newOwners: string[];
139
+ }
140
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
141
+ type Filter = TypedDeferredTopicFilter<Event>;
142
+ type Log = TypedEventLog<Event>;
143
+ type LogDescription = TypedLogDescription<Event>;
144
+ }
145
+ export declare namespace OwnersRemovedEvent {
146
+ type InputTuple = [removedOwners: AddressLike[]];
147
+ type OutputTuple = [removedOwners: string[]];
148
+ interface OutputObject {
149
+ removedOwners: string[];
150
+ }
151
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
152
+ type Filter = TypedDeferredTopicFilter<Event>;
153
+ type Log = TypedEventLog<Event>;
154
+ type LogDescription = TypedLogDescription<Event>;
155
+ }
156
+ export declare namespace StringParameterSetEvent {
157
+ type InputTuple = [key: string, value: string];
158
+ type OutputTuple = [key: string, value: string];
159
+ interface OutputObject {
160
+ key: string;
161
+ value: string;
162
+ }
163
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
164
+ type Filter = TypedDeferredTopicFilter<Event>;
165
+ type Log = TypedEventLog<Event>;
166
+ type LogDescription = TypedLogDescription<Event>;
167
+ }
168
+ export declare namespace UintParameterSetEvent {
169
+ type InputTuple = [key: string, value: BigNumberish];
170
+ type OutputTuple = [key: string, value: bigint];
171
+ interface OutputObject {
172
+ key: string;
173
+ value: bigint;
174
+ }
175
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
176
+ type Filter = TypedDeferredTopicFilter<Event>;
177
+ type Log = TypedEventLog<Event>;
178
+ type LogDescription = TypedLogDescription<Event>;
179
+ }
180
+ export declare namespace UpgradedEvent {
181
+ type InputTuple = [implementation: AddressLike];
182
+ type OutputTuple = [implementation: string];
183
+ interface OutputObject {
184
+ implementation: string;
185
+ }
186
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
187
+ type Filter = TypedDeferredTopicFilter<Event>;
188
+ type Log = TypedEventLog<Event>;
189
+ type LogDescription = TypedLogDescription<Event>;
190
+ }
191
+ export interface ParameterRegistry extends BaseContract {
192
+ contractName: "ParameterRegistry";
193
+ connect(runner?: ContractRunner | null): ParameterRegistry;
194
+ waitForDeployment(): Promise<this>;
195
+ interface: ParameterRegistryInterface;
196
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
197
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
198
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
199
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
200
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
201
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
202
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
203
+ listeners(eventName?: string): Promise<Array<Listener>>;
204
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
205
+ UPGRADE_INTERFACE_VERSION: TypedContractMethod<[], [string], "view">;
206
+ __ParameterRegistry_init: TypedContractMethod<[
207
+ initialOwners_: AddressLike[]
208
+ ], [
209
+ void
210
+ ], "nonpayable">;
211
+ addOwners: TypedContractMethod<[
212
+ newOwners_: AddressLike[]
213
+ ], [
214
+ void
215
+ ], "nonpayable">;
216
+ getAddr: TypedContractMethod<[key_: string], [string], "view">;
217
+ getAddressParameters: TypedContractMethod<[
218
+ offset_: BigNumberish,
219
+ limit_: BigNumberish
220
+ ], [
221
+ ParameterRegistry.AddressParameterStructOutput[]
222
+ ], "view">;
223
+ getBytes32: TypedContractMethod<[key_: string], [string], "view">;
224
+ getBytes32Parameters: TypedContractMethod<[
225
+ offset_: BigNumberish,
226
+ limit_: BigNumberish
227
+ ], [
228
+ ParameterRegistry.Bytes32ParameterStructOutput[]
229
+ ], "view">;
230
+ getOwners: TypedContractMethod<[], [string[]], "view">;
231
+ getParameterCounts: TypedContractMethod<[
232
+ ], [
233
+ [
234
+ bigint,
235
+ bigint,
236
+ bigint,
237
+ bigint
238
+ ] & {
239
+ addressCount: bigint;
240
+ uintCount: bigint;
241
+ stringCount: bigint;
242
+ bytes32Count: bigint;
243
+ }
244
+ ], "view">;
245
+ getString: TypedContractMethod<[key_: string], [string], "view">;
246
+ getStringParameters: TypedContractMethod<[
247
+ offset_: BigNumberish,
248
+ limit_: BigNumberish
249
+ ], [
250
+ ParameterRegistry.StringParameterStructOutput[]
251
+ ], "view">;
252
+ getUint: TypedContractMethod<[key_: string], [bigint], "view">;
253
+ getUintParameters: TypedContractMethod<[
254
+ offset_: BigNumberish,
255
+ limit_: BigNumberish
256
+ ], [
257
+ ParameterRegistry.UintParameterStructOutput[]
258
+ ], "view">;
259
+ hasParameter: TypedContractMethod<[
260
+ key_: string,
261
+ paramType_: BigNumberish
262
+ ], [
263
+ boolean
264
+ ], "view">;
265
+ implementation: TypedContractMethod<[], [string], "view">;
266
+ isOwner: TypedContractMethod<[address_: AddressLike], [boolean], "view">;
267
+ proxiableUUID: TypedContractMethod<[], [string], "view">;
268
+ removeAddr: TypedContractMethod<[key_: string], [void], "nonpayable">;
269
+ removeBytes32: TypedContractMethod<[key_: string], [void], "nonpayable">;
270
+ removeOwners: TypedContractMethod<[
271
+ oldOwners_: AddressLike[]
272
+ ], [
273
+ void
274
+ ], "nonpayable">;
275
+ removeString: TypedContractMethod<[key_: string], [void], "nonpayable">;
276
+ removeUint: TypedContractMethod<[key_: string], [void], "nonpayable">;
277
+ renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
278
+ setAddr: TypedContractMethod<[
279
+ key_: string,
280
+ value_: AddressLike
281
+ ], [
282
+ void
283
+ ], "nonpayable">;
284
+ setBytes32: TypedContractMethod<[
285
+ key_: string,
286
+ value_: BytesLike
287
+ ], [
288
+ void
289
+ ], "nonpayable">;
290
+ setString: TypedContractMethod<[
291
+ key_: string,
292
+ value_: string
293
+ ], [
294
+ void
295
+ ], "nonpayable">;
296
+ setUint: TypedContractMethod<[
297
+ key_: string,
298
+ value_: BigNumberish
299
+ ], [
300
+ void
301
+ ], "nonpayable">;
302
+ supportsInterface: TypedContractMethod<[
303
+ interfaceId_: BytesLike
304
+ ], [
305
+ boolean
306
+ ], "view">;
307
+ upgradeToAndCall: TypedContractMethod<[
308
+ newImplementation: AddressLike,
309
+ data: BytesLike
310
+ ], [
311
+ void
312
+ ], "payable">;
313
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
314
+ getFunction(nameOrSignature: "UPGRADE_INTERFACE_VERSION"): TypedContractMethod<[], [string], "view">;
315
+ getFunction(nameOrSignature: "__ParameterRegistry_init"): TypedContractMethod<[initialOwners_: AddressLike[]], [void], "nonpayable">;
316
+ getFunction(nameOrSignature: "addOwners"): TypedContractMethod<[newOwners_: AddressLike[]], [void], "nonpayable">;
317
+ getFunction(nameOrSignature: "getAddr"): TypedContractMethod<[key_: string], [string], "view">;
318
+ getFunction(nameOrSignature: "getAddressParameters"): TypedContractMethod<[
319
+ offset_: BigNumberish,
320
+ limit_: BigNumberish
321
+ ], [
322
+ ParameterRegistry.AddressParameterStructOutput[]
323
+ ], "view">;
324
+ getFunction(nameOrSignature: "getBytes32"): TypedContractMethod<[key_: string], [string], "view">;
325
+ getFunction(nameOrSignature: "getBytes32Parameters"): TypedContractMethod<[
326
+ offset_: BigNumberish,
327
+ limit_: BigNumberish
328
+ ], [
329
+ ParameterRegistry.Bytes32ParameterStructOutput[]
330
+ ], "view">;
331
+ getFunction(nameOrSignature: "getOwners"): TypedContractMethod<[], [string[]], "view">;
332
+ getFunction(nameOrSignature: "getParameterCounts"): TypedContractMethod<[
333
+ ], [
334
+ [
335
+ bigint,
336
+ bigint,
337
+ bigint,
338
+ bigint
339
+ ] & {
340
+ addressCount: bigint;
341
+ uintCount: bigint;
342
+ stringCount: bigint;
343
+ bytes32Count: bigint;
344
+ }
345
+ ], "view">;
346
+ getFunction(nameOrSignature: "getString"): TypedContractMethod<[key_: string], [string], "view">;
347
+ getFunction(nameOrSignature: "getStringParameters"): TypedContractMethod<[
348
+ offset_: BigNumberish,
349
+ limit_: BigNumberish
350
+ ], [
351
+ ParameterRegistry.StringParameterStructOutput[]
352
+ ], "view">;
353
+ getFunction(nameOrSignature: "getUint"): TypedContractMethod<[key_: string], [bigint], "view">;
354
+ getFunction(nameOrSignature: "getUintParameters"): TypedContractMethod<[
355
+ offset_: BigNumberish,
356
+ limit_: BigNumberish
357
+ ], [
358
+ ParameterRegistry.UintParameterStructOutput[]
359
+ ], "view">;
360
+ getFunction(nameOrSignature: "hasParameter"): TypedContractMethod<[
361
+ key_: string,
362
+ paramType_: BigNumberish
363
+ ], [
364
+ boolean
365
+ ], "view">;
366
+ getFunction(nameOrSignature: "implementation"): TypedContractMethod<[], [string], "view">;
367
+ getFunction(nameOrSignature: "isOwner"): TypedContractMethod<[address_: AddressLike], [boolean], "view">;
368
+ getFunction(nameOrSignature: "proxiableUUID"): TypedContractMethod<[], [string], "view">;
369
+ getFunction(nameOrSignature: "removeAddr"): TypedContractMethod<[key_: string], [void], "nonpayable">;
370
+ getFunction(nameOrSignature: "removeBytes32"): TypedContractMethod<[key_: string], [void], "nonpayable">;
371
+ getFunction(nameOrSignature: "removeOwners"): TypedContractMethod<[oldOwners_: AddressLike[]], [void], "nonpayable">;
372
+ getFunction(nameOrSignature: "removeString"): TypedContractMethod<[key_: string], [void], "nonpayable">;
373
+ getFunction(nameOrSignature: "removeUint"): TypedContractMethod<[key_: string], [void], "nonpayable">;
374
+ getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
375
+ getFunction(nameOrSignature: "setAddr"): TypedContractMethod<[
376
+ key_: string,
377
+ value_: AddressLike
378
+ ], [
379
+ void
380
+ ], "nonpayable">;
381
+ getFunction(nameOrSignature: "setBytes32"): TypedContractMethod<[
382
+ key_: string,
383
+ value_: BytesLike
384
+ ], [
385
+ void
386
+ ], "nonpayable">;
387
+ getFunction(nameOrSignature: "setString"): TypedContractMethod<[key_: string, value_: string], [void], "nonpayable">;
388
+ getFunction(nameOrSignature: "setUint"): TypedContractMethod<[
389
+ key_: string,
390
+ value_: BigNumberish
391
+ ], [
392
+ void
393
+ ], "nonpayable">;
394
+ getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId_: BytesLike], [boolean], "view">;
395
+ getFunction(nameOrSignature: "upgradeToAndCall"): TypedContractMethod<[
396
+ newImplementation: AddressLike,
397
+ data: BytesLike
398
+ ], [
399
+ void
400
+ ], "payable">;
401
+ getEvent(key: "AddressParameterSet"): TypedContractEvent<AddressParameterSetEvent.InputTuple, AddressParameterSetEvent.OutputTuple, AddressParameterSetEvent.OutputObject>;
402
+ getEvent(key: "Bytes32ParameterSet"): TypedContractEvent<Bytes32ParameterSetEvent.InputTuple, Bytes32ParameterSetEvent.OutputTuple, Bytes32ParameterSetEvent.OutputObject>;
403
+ getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
404
+ getEvent(key: "OwnersAdded"): TypedContractEvent<OwnersAddedEvent.InputTuple, OwnersAddedEvent.OutputTuple, OwnersAddedEvent.OutputObject>;
405
+ getEvent(key: "OwnersRemoved"): TypedContractEvent<OwnersRemovedEvent.InputTuple, OwnersRemovedEvent.OutputTuple, OwnersRemovedEvent.OutputObject>;
406
+ getEvent(key: "StringParameterSet"): TypedContractEvent<StringParameterSetEvent.InputTuple, StringParameterSetEvent.OutputTuple, StringParameterSetEvent.OutputObject>;
407
+ getEvent(key: "UintParameterSet"): TypedContractEvent<UintParameterSetEvent.InputTuple, UintParameterSetEvent.OutputTuple, UintParameterSetEvent.OutputObject>;
408
+ getEvent(key: "Upgraded"): TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
409
+ filters: {
410
+ "AddressParameterSet(string,address)": TypedContractEvent<AddressParameterSetEvent.InputTuple, AddressParameterSetEvent.OutputTuple, AddressParameterSetEvent.OutputObject>;
411
+ AddressParameterSet: TypedContractEvent<AddressParameterSetEvent.InputTuple, AddressParameterSetEvent.OutputTuple, AddressParameterSetEvent.OutputObject>;
412
+ "Bytes32ParameterSet(string,bytes32)": TypedContractEvent<Bytes32ParameterSetEvent.InputTuple, Bytes32ParameterSetEvent.OutputTuple, Bytes32ParameterSetEvent.OutputObject>;
413
+ Bytes32ParameterSet: TypedContractEvent<Bytes32ParameterSetEvent.InputTuple, Bytes32ParameterSetEvent.OutputTuple, Bytes32ParameterSetEvent.OutputObject>;
414
+ "Initialized(uint64)": TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
415
+ Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
416
+ "OwnersAdded(address[])": TypedContractEvent<OwnersAddedEvent.InputTuple, OwnersAddedEvent.OutputTuple, OwnersAddedEvent.OutputObject>;
417
+ OwnersAdded: TypedContractEvent<OwnersAddedEvent.InputTuple, OwnersAddedEvent.OutputTuple, OwnersAddedEvent.OutputObject>;
418
+ "OwnersRemoved(address[])": TypedContractEvent<OwnersRemovedEvent.InputTuple, OwnersRemovedEvent.OutputTuple, OwnersRemovedEvent.OutputObject>;
419
+ OwnersRemoved: TypedContractEvent<OwnersRemovedEvent.InputTuple, OwnersRemovedEvent.OutputTuple, OwnersRemovedEvent.OutputObject>;
420
+ "StringParameterSet(string,string)": TypedContractEvent<StringParameterSetEvent.InputTuple, StringParameterSetEvent.OutputTuple, StringParameterSetEvent.OutputObject>;
421
+ StringParameterSet: TypedContractEvent<StringParameterSetEvent.InputTuple, StringParameterSetEvent.OutputTuple, StringParameterSetEvent.OutputObject>;
422
+ "UintParameterSet(string,uint256)": TypedContractEvent<UintParameterSetEvent.InputTuple, UintParameterSetEvent.OutputTuple, UintParameterSetEvent.OutputObject>;
423
+ UintParameterSet: TypedContractEvent<UintParameterSetEvent.InputTuple, UintParameterSetEvent.OutputTuple, UintParameterSetEvent.OutputObject>;
424
+ "Upgraded(address)": TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
425
+ Upgraded: TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
426
+ };
427
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +1,3 @@
1
- /* Autogenerated file. Do not edit manually. */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
1
  export type { ExecutorsRegistry } from "./ExecutorsRegistry";
5
2
  export type { Governance } from "./Governance";
6
3
  export type { NeutralsRegistry } from "./NeutralsRegistry";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +1,3 @@
1
- /* Autogenerated file. Do not edit manually. */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
1
  import type * as governance from "./governance";
5
2
  export type { governance };
6
3
  import type * as interfaces from "./interfaces";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });