@etherisc/gif-next 0.0.2-78bf628-134 → 0.0.2-790d44b-698

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 (231) hide show
  1. package/README.md +38 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.json +405 -0
  5. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  6. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +340 -0
  8. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +131 -0
  10. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +109 -18
  12. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  13. package/artifacts/contracts/components/Pool.sol/Pool.json +194 -3
  14. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  15. package/artifacts/contracts/components/Product.sol/Product.json +160 -21
  16. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  17. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  28. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  34. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  35. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +609 -416
  36. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
  37. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  38. package/artifacts/contracts/instance/Instance.sol/Instance.json +751 -467
  39. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  40. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +82 -18
  41. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  42. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +32 -0
  43. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  44. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  45. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
  46. package/artifacts/contracts/instance/base/IService.sol/IService.json +59 -18
  47. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
  48. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +115 -19
  49. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  50. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +14 -14
  51. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  52. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
  53. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
  54. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
  55. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +82 -18
  56. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
  58. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
  59. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
  60. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +55 -54
  61. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
  62. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
  63. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +56 -55
  64. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
  65. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +12 -7
  66. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
  68. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +12 -7
  69. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
  70. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
  71. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
  72. package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensation.json → distribution/IDistribution.sol/IDistribution.json} +2 -2
  73. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
  74. package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensationModule.json → distribution/IDistribution.sol/IDistributionModule.json} +2 -2
  75. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
  77. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +53 -40
  78. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
  79. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +53 -40
  80. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
  81. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
  82. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -5
  83. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
  84. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -5
  85. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
  86. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +104 -1
  88. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +126 -5
  90. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
  91. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
  92. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +209 -231
  93. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  94. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
  95. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
  96. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +209 -231
  97. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  98. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +119 -47
  99. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  100. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +484 -0
  101. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  102. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +59 -18
  103. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  104. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +366 -0
  105. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  106. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +124 -19
  107. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  108. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +212 -18
  109. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  110. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +170 -34
  111. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  112. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +296 -47
  113. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  114. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  115. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  116. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  117. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  118. package/artifacts/contracts/registry/Registry.sol/Registry.json +266 -14
  119. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  120. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
  121. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  122. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  123. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
  124. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +4 -0
  125. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +248 -0
  126. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +4 -0
  127. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +129 -0
  128. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  129. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  130. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
  131. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
  132. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +405 -0
  133. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  134. package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
  135. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
  136. package/artifacts/contracts/test/TestPool.sol/TestPool.json +194 -3
  137. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
  138. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +209 -27
  139. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  140. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
  141. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  142. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  143. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  144. package/artifacts/contracts/test/TestService.sol/TestService.json +95 -31
  145. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  146. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  147. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  148. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  149. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +89 -25
  150. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  151. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  152. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  153. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  154. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  155. package/artifacts/contracts/types/Fee.sol/FeeLib.json +50 -11
  156. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  157. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
  158. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  159. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
  160. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  161. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  162. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  163. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  164. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
  165. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
  166. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  167. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  168. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  169. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  170. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
  175. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  176. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  177. package/contracts/components/BaseComponent.sol +7 -1
  178. package/contracts/components/Distribution.sol +132 -0
  179. package/contracts/components/IDistributionComponent.sol +47 -0
  180. package/contracts/components/IPoolComponent.sol +14 -0
  181. package/contracts/components/IProductComponent.sol +24 -5
  182. package/contracts/components/Pool.sol +64 -3
  183. package/contracts/components/Product.sol +123 -13
  184. package/contracts/instance/IInstance.sol +7 -4
  185. package/contracts/instance/Instance.sol +11 -4
  186. package/contracts/instance/base/IInstanceBase.sol +3 -0
  187. package/contracts/instance/base/InstanceBase.sol +7 -0
  188. package/contracts/instance/base/Lifecycle.sol +10 -2
  189. package/contracts/instance/base/ModuleBase.sol +22 -17
  190. package/contracts/instance/module/access/Access.sol +3 -3
  191. package/contracts/instance/module/bundle/BundleModule.sol +10 -12
  192. package/contracts/instance/module/bundle/IBundle.sol +6 -11
  193. package/contracts/instance/module/component/ComponentModule.sol +15 -20
  194. package/contracts/instance/module/component/IComponent.sol +3 -2
  195. package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
  196. package/contracts/instance/module/distribution/IDistribution.sol +10 -0
  197. package/contracts/instance/module/policy/IPolicy.sol +10 -8
  198. package/contracts/instance/module/policy/PolicyModule.sol +33 -19
  199. package/contracts/instance/module/pool/IPoolModule.sol +0 -1
  200. package/contracts/instance/module/pool/PoolModule.sol +12 -9
  201. package/contracts/instance/module/risk/IRisk.sol +18 -2
  202. package/contracts/instance/module/risk/RiskModule.sol +56 -2
  203. package/contracts/instance/module/treasury/ITreasury.sol +29 -50
  204. package/contracts/instance/module/treasury/TreasuryModule.sol +71 -85
  205. package/contracts/instance/service/ComponentOwnerService.sol +19 -24
  206. package/contracts/instance/service/DistributionService.sol +59 -0
  207. package/contracts/instance/service/IDistributionService.sol +12 -0
  208. package/contracts/instance/service/IPoolService.sol +7 -0
  209. package/contracts/instance/service/IProductService.sol +56 -7
  210. package/contracts/instance/service/PoolService.sol +30 -4
  211. package/contracts/instance/service/ProductService.sol +229 -74
  212. package/contracts/registry/Registry.sol +190 -113
  213. package/contracts/shared/IVersionable.sol +51 -9
  214. package/contracts/shared/Proxy.sol +94 -0
  215. package/contracts/shared/Versionable.sol +90 -38
  216. package/contracts/test/TestDistribution.sol +21 -0
  217. package/contracts/test/TestPool.sol +5 -2
  218. package/contracts/test/TestProduct.sol +35 -7
  219. package/contracts/types/Fee.sol +8 -3
  220. package/contracts/types/ObjectType.sol +17 -5
  221. package/contracts/types/ReferralId.sol +48 -0
  222. package/contracts/types/RiskId.sol +43 -0
  223. package/contracts/types/RoleId.sol +2 -2
  224. package/contracts/types/Version.sol +8 -0
  225. package/package.json +1 -1
  226. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  227. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  228. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  229. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  230. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  231. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }
@@ -3,6 +3,29 @@
3
3
  "contractName": "ComponentServiceBase",
4
4
  "sourceName": "contracts/instance/base/ComponentServiceBase.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "InvalidInitialization",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "NotInitializing",
14
+ "type": "error"
15
+ },
16
+ {
17
+ "anonymous": false,
18
+ "inputs": [
19
+ {
20
+ "indexed": false,
21
+ "internalType": "uint64",
22
+ "name": "version",
23
+ "type": "uint64"
24
+ }
25
+ ],
26
+ "name": "Initialized",
27
+ "type": "event"
28
+ },
6
29
  {
7
30
  "anonymous": false,
8
31
  "inputs": [
@@ -25,35 +48,30 @@
25
48
  "type": "address"
26
49
  }
27
50
  ],
28
- "name": "LogVersionableActivated",
51
+ "name": "LogVersionableInitialized",
29
52
  "type": "event"
30
53
  },
31
54
  {
32
- "inputs": [
33
- {
34
- "internalType": "address",
35
- "name": "implementation",
36
- "type": "address"
37
- },
55
+ "inputs": [],
56
+ "name": "getData",
57
+ "outputs": [
38
58
  {
39
- "internalType": "address",
40
- "name": "activatedBy",
41
- "type": "address"
59
+ "internalType": "bytes",
60
+ "name": "data",
61
+ "type": "bytes"
42
62
  }
43
63
  ],
44
- "name": "activate",
45
- "outputs": [],
46
- "stateMutability": "nonpayable",
64
+ "stateMutability": "view",
47
65
  "type": "function"
48
66
  },
49
67
  {
50
68
  "inputs": [],
51
- "name": "getData",
69
+ "name": "getInitializedVersion",
52
70
  "outputs": [
53
71
  {
54
- "internalType": "bytes",
55
- "name": "data",
56
- "type": "bytes"
72
+ "internalType": "uint64",
73
+ "name": "",
74
+ "type": "uint64"
57
75
  }
58
76
  ],
59
77
  "stateMutability": "view",
@@ -241,6 +259,29 @@
241
259
  "stateMutability": "view",
242
260
  "type": "function"
243
261
  },
262
+ {
263
+ "inputs": [
264
+ {
265
+ "internalType": "address",
266
+ "name": "implementation",
267
+ "type": "address"
268
+ },
269
+ {
270
+ "internalType": "address",
271
+ "name": "activatedBy",
272
+ "type": "address"
273
+ },
274
+ {
275
+ "internalType": "bytes",
276
+ "name": "data",
277
+ "type": "bytes"
278
+ }
279
+ ],
280
+ "name": "initialize",
281
+ "outputs": [],
282
+ "stateMutability": "nonpayable",
283
+ "type": "function"
284
+ },
244
285
  {
245
286
  "inputs": [
246
287
  {
@@ -249,7 +290,7 @@
249
290
  "type": "uint24"
250
291
  }
251
292
  ],
252
- "name": "isActivated",
293
+ "name": "isInitialized",
253
294
  "outputs": [
254
295
  {
255
296
  "internalType": "bool",
@@ -291,6 +332,29 @@
291
332
  ],
292
333
  "stateMutability": "view",
293
334
  "type": "function"
335
+ },
336
+ {
337
+ "inputs": [
338
+ {
339
+ "internalType": "address",
340
+ "name": "implementation",
341
+ "type": "address"
342
+ },
343
+ {
344
+ "internalType": "address",
345
+ "name": "activatedBy",
346
+ "type": "address"
347
+ },
348
+ {
349
+ "internalType": "bytes",
350
+ "name": "data",
351
+ "type": "bytes"
352
+ }
353
+ ],
354
+ "name": "upgrade",
355
+ "outputs": [],
356
+ "stateMutability": "nonpayable",
357
+ "type": "function"
294
358
  }
295
359
  ],
296
360
  "bytecode": "0x",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }
@@ -16,6 +16,19 @@
16
16
  "stateMutability": "view",
17
17
  "type": "function"
18
18
  },
19
+ {
20
+ "inputs": [],
21
+ "name": "getDistributionService",
22
+ "outputs": [
23
+ {
24
+ "internalType": "contract IDistributionService",
25
+ "name": "",
26
+ "type": "address"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
19
32
  {
20
33
  "inputs": [],
21
34
  "name": "getKeyValueStore",
@@ -55,6 +68,25 @@
55
68
  "stateMutability": "view",
56
69
  "type": "function"
57
70
  },
71
+ {
72
+ "inputs": [
73
+ {
74
+ "internalType": "Key32",
75
+ "name": "key",
76
+ "type": "bytes32"
77
+ }
78
+ ],
79
+ "name": "getState",
80
+ "outputs": [
81
+ {
82
+ "internalType": "StateId",
83
+ "name": "state",
84
+ "type": "uint8"
85
+ }
86
+ ],
87
+ "stateMutability": "view",
88
+ "type": "function"
89
+ },
58
90
  {
59
91
  "inputs": [
60
92
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }
@@ -25,35 +25,30 @@
25
25
  "type": "address"
26
26
  }
27
27
  ],
28
- "name": "LogVersionableActivated",
28
+ "name": "LogVersionableInitialized",
29
29
  "type": "event"
30
30
  },
31
31
  {
32
- "inputs": [
33
- {
34
- "internalType": "address",
35
- "name": "implementation",
36
- "type": "address"
37
- },
32
+ "inputs": [],
33
+ "name": "getData",
34
+ "outputs": [
38
35
  {
39
- "internalType": "address",
40
- "name": "activatedBy",
41
- "type": "address"
36
+ "internalType": "bytes",
37
+ "name": "data",
38
+ "type": "bytes"
42
39
  }
43
40
  ],
44
- "name": "activate",
45
- "outputs": [],
46
- "stateMutability": "nonpayable",
41
+ "stateMutability": "view",
47
42
  "type": "function"
48
43
  },
49
44
  {
50
45
  "inputs": [],
51
- "name": "getData",
46
+ "name": "getInitializedVersion",
52
47
  "outputs": [
53
48
  {
54
- "internalType": "bytes",
55
- "name": "data",
56
- "type": "bytes"
49
+ "internalType": "uint64",
50
+ "name": "",
51
+ "type": "uint64"
57
52
  }
58
53
  ],
59
54
  "stateMutability": "view",
@@ -241,6 +236,29 @@
241
236
  "stateMutability": "view",
242
237
  "type": "function"
243
238
  },
239
+ {
240
+ "inputs": [
241
+ {
242
+ "internalType": "address",
243
+ "name": "implementation",
244
+ "type": "address"
245
+ },
246
+ {
247
+ "internalType": "address",
248
+ "name": "activatedBy",
249
+ "type": "address"
250
+ },
251
+ {
252
+ "internalType": "bytes",
253
+ "name": "activationData",
254
+ "type": "bytes"
255
+ }
256
+ ],
257
+ "name": "initialize",
258
+ "outputs": [],
259
+ "stateMutability": "nonpayable",
260
+ "type": "function"
261
+ },
244
262
  {
245
263
  "inputs": [
246
264
  {
@@ -249,7 +267,7 @@
249
267
  "type": "uint24"
250
268
  }
251
269
  ],
252
- "name": "isActivated",
270
+ "name": "isInitialized",
253
271
  "outputs": [
254
272
  {
255
273
  "internalType": "bool",
@@ -291,6 +309,29 @@
291
309
  ],
292
310
  "stateMutability": "view",
293
311
  "type": "function"
312
+ },
313
+ {
314
+ "inputs": [
315
+ {
316
+ "internalType": "address",
317
+ "name": "implementation",
318
+ "type": "address"
319
+ },
320
+ {
321
+ "internalType": "address",
322
+ "name": "activatedBy",
323
+ "type": "address"
324
+ },
325
+ {
326
+ "internalType": "bytes",
327
+ "name": "upgradeData",
328
+ "type": "bytes"
329
+ }
330
+ ],
331
+ "name": "upgrade",
332
+ "outputs": [],
333
+ "stateMutability": "nonpayable",
334
+ "type": "function"
294
335
  }
295
336
  ],
296
337
  "bytecode": "0x",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }
@@ -3,6 +3,29 @@
3
3
  "contractName": "InstanceBase",
4
4
  "sourceName": "contracts/instance/base/InstanceBase.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "InvalidInitialization",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "NotInitializing",
14
+ "type": "error"
15
+ },
16
+ {
17
+ "anonymous": false,
18
+ "inputs": [
19
+ {
20
+ "indexed": false,
21
+ "internalType": "uint64",
22
+ "name": "version",
23
+ "type": "uint64"
24
+ }
25
+ ],
26
+ "name": "Initialized",
27
+ "type": "event"
28
+ },
6
29
  {
7
30
  "anonymous": false,
8
31
  "inputs": [
@@ -25,34 +48,42 @@
25
48
  "type": "address"
26
49
  }
27
50
  ],
28
- "name": "LogVersionableActivated",
51
+ "name": "LogVersionableInitialized",
29
52
  "type": "event"
30
53
  },
31
54
  {
32
- "inputs": [
55
+ "inputs": [],
56
+ "name": "getComponentOwnerService",
57
+ "outputs": [
33
58
  {
34
- "internalType": "address",
35
- "name": "implementation",
59
+ "internalType": "contract IComponentOwnerService",
60
+ "name": "service",
36
61
  "type": "address"
37
- },
62
+ }
63
+ ],
64
+ "stateMutability": "view",
65
+ "type": "function"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "getData",
70
+ "outputs": [
38
71
  {
39
- "internalType": "address",
40
- "name": "activatedBy",
41
- "type": "address"
72
+ "internalType": "bytes",
73
+ "name": "data",
74
+ "type": "bytes"
42
75
  }
43
76
  ],
44
- "name": "activate",
45
- "outputs": [],
46
- "stateMutability": "nonpayable",
77
+ "stateMutability": "view",
47
78
  "type": "function"
48
79
  },
49
80
  {
50
81
  "inputs": [],
51
- "name": "getComponentOwnerService",
82
+ "name": "getDistributionService",
52
83
  "outputs": [
53
84
  {
54
- "internalType": "contract IComponentOwnerService",
55
- "name": "service",
85
+ "internalType": "contract IDistributionService",
86
+ "name": "",
56
87
  "type": "address"
57
88
  }
58
89
  ],
@@ -61,12 +92,12 @@
61
92
  },
62
93
  {
63
94
  "inputs": [],
64
- "name": "getData",
95
+ "name": "getInitializedVersion",
65
96
  "outputs": [
66
97
  {
67
- "internalType": "bytes",
68
- "name": "data",
69
- "type": "bytes"
98
+ "internalType": "uint64",
99
+ "name": "",
100
+ "type": "uint64"
70
101
  }
71
102
  ],
72
103
  "stateMutability": "view",
@@ -163,6 +194,25 @@
163
194
  "stateMutability": "view",
164
195
  "type": "function"
165
196
  },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "Key32",
201
+ "name": "key",
202
+ "type": "bytes32"
203
+ }
204
+ ],
205
+ "name": "getState",
206
+ "outputs": [
207
+ {
208
+ "internalType": "StateId",
209
+ "name": "state",
210
+ "type": "uint8"
211
+ }
212
+ ],
213
+ "stateMutability": "view",
214
+ "type": "function"
215
+ },
166
216
  {
167
217
  "inputs": [],
168
218
  "name": "getType",
@@ -267,6 +317,29 @@
267
317
  "stateMutability": "view",
268
318
  "type": "function"
269
319
  },
320
+ {
321
+ "inputs": [
322
+ {
323
+ "internalType": "address",
324
+ "name": "implementation",
325
+ "type": "address"
326
+ },
327
+ {
328
+ "internalType": "address",
329
+ "name": "activatedBy",
330
+ "type": "address"
331
+ },
332
+ {
333
+ "internalType": "bytes",
334
+ "name": "data",
335
+ "type": "bytes"
336
+ }
337
+ ],
338
+ "name": "initialize",
339
+ "outputs": [],
340
+ "stateMutability": "nonpayable",
341
+ "type": "function"
342
+ },
270
343
  {
271
344
  "inputs": [
272
345
  {
@@ -275,7 +348,7 @@
275
348
  "type": "uint24"
276
349
  }
277
350
  ],
278
- "name": "isActivated",
351
+ "name": "isInitialized",
279
352
  "outputs": [
280
353
  {
281
354
  "internalType": "bool",
@@ -335,6 +408,29 @@
335
408
  "outputs": [],
336
409
  "stateMutability": "nonpayable",
337
410
  "type": "function"
411
+ },
412
+ {
413
+ "inputs": [
414
+ {
415
+ "internalType": "address",
416
+ "name": "implementation",
417
+ "type": "address"
418
+ },
419
+ {
420
+ "internalType": "address",
421
+ "name": "activatedBy",
422
+ "type": "address"
423
+ },
424
+ {
425
+ "internalType": "bytes",
426
+ "name": "data",
427
+ "type": "bytes"
428
+ }
429
+ ],
430
+ "name": "upgrade",
431
+ "outputs": [],
432
+ "stateMutability": "nonpayable",
433
+ "type": "function"
338
434
  }
339
435
  ],
340
436
  "bytecode": "0x",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/8e55ece999861400da8a6ef1228e2169.json"
3
+ "buildInfo": "../../../../build-info/8001b3000c8aaafadc7458dc79160a6a.json"
4
4
  }