@etherisc/gif-next 0.0.2-efdb520-159 → 0.0.2-f0d86c2-077

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 (221) hide show
  1. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  2. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  4. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  5. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  6. package/artifacts/contracts/components/Pool.sol/Pool.json +2 -2
  7. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  8. package/artifacts/contracts/components/Product.sol/Product.json +2 -2
  9. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  10. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  11. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  12. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  13. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  14. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  15. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  16. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  17. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  21. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  25. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  27. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  29. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  30. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +48 -204
  31. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
  32. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  33. package/artifacts/contracts/instance/Instance.sol/Instance.json +211 -303
  34. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  35. package/artifacts/contracts/instance/{service → base}/ComponentServiceBase.sol/ComponentServiceBase.json +6 -6
  36. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  37. package/artifacts/contracts/instance/{IServiceLinked.sol/IServiceLinked.json → base/IInstanceBase.sol/IInstanceBase.json} +15 -2
  38. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +511 -0
  40. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  41. package/artifacts/contracts/instance/{module/lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  42. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  43. package/artifacts/contracts/instance/{service → base}/IService.sol/IService.json +6 -6
  44. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  45. package/artifacts/contracts/instance/{InstanceBase.sol → base/InstanceBase.sol}/InstanceBase.json +19 -6
  46. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  47. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +692 -0
  48. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  50. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{module/product/ProductModule.sol/ProductModule.json → base/ModuleBase.sol/ModuleBase.json} +2 -2
  52. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  53. package/artifacts/contracts/instance/{service → base}/ServiceBase.sol/ServiceBase.json +6 -6
  54. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
  55. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
  56. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
  58. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +50 -30
  59. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
  60. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
  61. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +50 -30
  62. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +4 -0
  63. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +10 -0
  64. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +4 -0
  65. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +10 -0
  66. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +4 -0
  67. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +10 -0
  68. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
  74. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
  75. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
  77. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  78. package/artifacts/contracts/instance/module/{product/IProductModule.sol/IProductModule.json → risk/IRisk.sol/IRisk.json} +2 -2
  79. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  80. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +10 -0
  81. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  82. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +10 -0
  83. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
  84. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +1 -6
  86. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
  88. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +1 -6
  90. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +48 -44
  92. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +5 -5
  94. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +5 -5
  96. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  97. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +5 -5
  98. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +18 -46
  100. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  101. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +47 -59
  102. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  103. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  104. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  105. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  106. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  107. package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
  108. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  109. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
  110. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  111. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  112. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +5 -5
  113. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  114. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  115. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +5 -5
  116. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  117. package/artifacts/contracts/test/TestFee.sol/TestFee.json +28 -4
  118. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
  119. package/artifacts/contracts/test/TestPool.sol/TestPool.json +2 -2
  120. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
  121. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +2 -2
  122. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  123. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
  124. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  125. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +38 -4
  126. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  127. package/artifacts/contracts/test/TestService.sol/TestService.json +15 -43
  128. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  129. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  130. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +14 -18
  131. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  132. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +15 -39
  133. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  134. package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
  135. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  136. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  137. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  138. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  139. package/artifacts/contracts/types/Fee.sol/FeeLib.json +218 -0
  140. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  141. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  142. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  143. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  144. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  145. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  146. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  147. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  148. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  149. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  150. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  151. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  152. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  153. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +34 -8
  154. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  155. package/artifacts/contracts/types/Version.sol/VersionLib.json +63 -2
  156. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  157. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  158. package/contracts/components/BaseComponent.sol +0 -1
  159. package/contracts/instance/IInstance.sol +13 -11
  160. package/contracts/instance/Instance.sol +13 -7
  161. package/contracts/instance/{service → base}/ComponentServiceBase.sol +1 -0
  162. package/contracts/instance/base/IInstanceBase.sol +14 -0
  163. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  164. package/contracts/instance/base/ILifecycle.sol +30 -0
  165. package/contracts/instance/{InstanceBase.sol → base/InstanceBase.sol} +21 -15
  166. package/contracts/instance/base/KeyValueStore.sol +156 -0
  167. package/contracts/instance/{module/lifecycle/LifecycleModule.sol → base/Lifecycle.sol} +36 -30
  168. package/contracts/instance/base/ModuleBase.sol +52 -0
  169. package/contracts/instance/{service → base}/ServiceBase.sol +1 -3
  170. package/contracts/instance/module/access/Access.sol +3 -3
  171. package/contracts/instance/module/bundle/BundleModule.sol +24 -116
  172. package/contracts/instance/module/bundle/IBundle.sol +8 -3
  173. package/contracts/instance/module/compensation/CompensationModule.sol +8 -0
  174. package/contracts/instance/module/compensation/ICompensation.sol +10 -0
  175. package/contracts/instance/module/component/ComponentModule.sol +10 -19
  176. package/contracts/instance/module/policy/PolicyModule.sol +2 -10
  177. package/contracts/instance/module/{product/IProductModule.sol → risk/IRisk.sol} +6 -2
  178. package/contracts/instance/module/risk/RiskModule.sol +8 -0
  179. package/contracts/instance/module/treasury/ITreasury.sol +2 -3
  180. package/contracts/instance/module/treasury/TreasuryModule.sol +15 -11
  181. package/contracts/instance/service/ComponentOwnerService.sol +4 -8
  182. package/contracts/instance/service/IComponentOwnerService.sol +1 -1
  183. package/contracts/instance/service/IPoolService.sol +1 -1
  184. package/contracts/instance/service/IProductService.sol +1 -1
  185. package/contracts/instance/service/PoolService.sol +36 -11
  186. package/contracts/instance/service/ProductService.sol +6 -10
  187. package/contracts/registry/Registry.sol +1 -1
  188. package/contracts/shared/IVersionable.sol +2 -2
  189. package/contracts/shared/Versionable.sol +3 -6
  190. package/contracts/test/TestFee.sol +3 -3
  191. package/contracts/test/TestPool.sol +1 -1
  192. package/contracts/test/TestProduct.sol +1 -1
  193. package/contracts/test/TestRoleId.sol +2 -2
  194. package/contracts/test/TestService.sol +3 -6
  195. package/contracts/test/TestVersion.sol +4 -7
  196. package/contracts/test/TestVersionable.sol +2 -5
  197. package/contracts/test/Usdc.sol +26 -0
  198. package/contracts/types/Fee.sol +39 -20
  199. package/contracts/types/Key32.sol +45 -0
  200. package/contracts/types/NftId.sol +16 -1
  201. package/contracts/types/RoleId.sol +11 -9
  202. package/contracts/types/StateId.sol +7 -1
  203. package/contracts/types/UFixed.sol +19 -16
  204. package/contracts/types/Version.sol +29 -25
  205. package/package.json +1 -1
  206. package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +0 -4
  207. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  208. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  209. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  210. package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  211. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  212. package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  213. package/artifacts/contracts/instance/module/product/IProductModule.sol/IProductModule.dbg.json +0 -4
  214. package/artifacts/contracts/instance/module/product/ProductModule.sol/ProductModule.dbg.json +0 -4
  215. package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  216. package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +0 -4
  217. package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  218. package/contracts/instance/IServiceLinked.sol +0 -12
  219. package/contracts/instance/module/lifecycle/ILifecycle.sol +0 -47
  220. package/contracts/instance/module/product/ProductModule.sol +0 -8
  221. /package/contracts/instance/{service → base}/IService.sol +0 -0
@@ -4,12 +4,13 @@ pragma solidity ^0.8.19;
4
4
  import {NftId} from "../types/NftId.sol";
5
5
  import {RoleId} from "../types/RoleId.sol";
6
6
 
7
- import {InstanceBase} from "./InstanceBase.sol";
7
+ import {InstanceBase} from "./base/InstanceBase.sol";
8
8
  import {AccessModule} from "./module/access/Access.sol";
9
- import {LifecycleModule} from "./module/lifecycle/LifecycleModule.sol";
9
+ import {CompensationModule} from "./module/compensation/CompensationModule.sol";
10
10
  import {ComponentModule} from "./module/component/ComponentModule.sol";
11
11
  import {PolicyModule} from "./module/policy/PolicyModule.sol";
12
12
  import {PoolModule} from "./module/pool/PoolModule.sol";
13
+ import {RiskModule} from "./module/risk/RiskModule.sol";
13
14
  import {BundleModule} from "./module/bundle/BundleModule.sol";
14
15
  import {TreasuryModule} from "./module/treasury/TreasuryModule.sol";
15
16
 
@@ -20,20 +21,23 @@ import {IBundleModule} from "./module/bundle/IBundle.sol";
20
21
  import {IComponentModule} from "./module/component/IComponent.sol";
21
22
  import {IPoolModule} from "./module/pool/IPoolModule.sol";
22
23
  import {IPolicyModule} from "./module/policy/IPolicy.sol";
23
- import {IServiceLinked} from "./IServiceLinked.sol";
24
+ import {IInstanceBase} from "./base/IInstanceBase.sol";
24
25
 
25
26
  import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
26
27
  import {IProductService} from "./service/IProductService.sol";
27
28
  import {IPoolService} from "./service/IPoolService.sol";
28
29
 
30
+ import {IKeyValueStore} from "./base/IKeyValueStore.sol";
31
+
29
32
  contract Instance is
30
33
  InstanceBase,
31
34
  AccessModule,
32
35
  BundleModule,
33
36
  ComponentModule,
34
- LifecycleModule,
37
+ CompensationModule,
35
38
  PolicyModule,
36
39
  PoolModule,
40
+ RiskModule,
37
41
  TreasuryModule
38
42
  {
39
43
  constructor(
@@ -48,15 +52,17 @@ contract Instance is
48
52
  PoolModule()
49
53
  TreasuryModule()
50
54
  {
55
+ initializeBundleModule(_keyValueStore);
51
56
  }
52
57
 
53
58
  function getRegistry() public view override (Registerable, IBundleModule, IComponentModule, IPolicyModule) returns (IRegistry registry) { return super.getRegistry(); }
59
+ function getKeyValueStore() public view override (InstanceBase, IBundleModule) returns (IKeyValueStore keyValueStore) { return super.getKeyValueStore(); }
54
60
 
55
61
  function hasRole(RoleId role, address member) public view override (AccessModule, IComponentModule) returns (bool) { return super.hasRole(role, member); }
56
62
 
57
- function getComponentOwnerService() external view override (IComponentModule, IServiceLinked) returns(IComponentOwnerService service) { return _componentOwnerService; }
58
- function getProductService() external view override (IBundleModule, IPolicyModule, IServiceLinked) returns(IProductService service) { return _productService; }
59
- function getPoolService() external view override (IBundleModule, IPoolModule, IServiceLinked) returns(IPoolService service) { return _poolService; }
63
+ function getComponentOwnerService() external view override (IComponentModule, IInstanceBase) returns(IComponentOwnerService service) { return _componentOwnerService; }
64
+ function getProductService() external view override (IBundleModule, IPolicyModule, IInstanceBase) returns(IProductService service) { return _productService; }
65
+ function getPoolService() external view override (IBundleModule, IPoolModule, IInstanceBase) returns(IPoolService service) { return _poolService; }
60
66
 
61
67
  function getOwner() public view override (IAccessModule, Registerable) returns(address owner) { return super.getOwner(); }
62
68
  }
@@ -15,6 +15,7 @@ abstract contract ComponentServiceBase is ServiceBase {
15
15
  NftId registryNftId
16
16
  )
17
17
  ServiceBase(registry, registryNftId)
18
+ // solhint-disable-next-line no-empty-blocks
18
19
  {
19
20
  }
20
21
 
@@ -0,0 +1,14 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IKeyValueStore} from "./IKeyValueStore.sol";
5
+ import {IComponentOwnerService} from "../service/IComponentOwnerService.sol";
6
+ import {IProductService} from "../service/IProductService.sol";
7
+ import {IPoolService} from "../service/IPoolService.sol";
8
+
9
+ interface IInstanceBase {
10
+ function getKeyValueStore() external view returns (IKeyValueStore keyValueStore);
11
+ function getComponentOwnerService() external view returns(IComponentOwnerService service);
12
+ function getProductService() external view returns(IProductService service);
13
+ function getPoolService() external view returns(IPoolService service);
14
+ }
@@ -0,0 +1,49 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {Blocknumber, blockBlocknumber, zeroBlocknumber} from "../../types/Blocknumber.sol";
5
+ import {Key32, KeyId} from "../../types/Key32.sol";
6
+ import {NftId} from "../../types/NftId.sol";
7
+ import {ObjectType} from "../../types/ObjectType.sol";
8
+ import {StateId} from "../../types/StateId.sol";
9
+
10
+ import {ILifecycle} from "./ILifecycle.sol";
11
+
12
+ interface IKeyValueStore is ILifecycle {
13
+
14
+ struct Key {
15
+ ObjectType objectType;
16
+ KeyId id;
17
+ }
18
+
19
+ struct Value {
20
+ Metadata metadata;
21
+ bytes data;
22
+ }
23
+
24
+ struct Metadata {
25
+ ObjectType objectType;
26
+ StateId state;
27
+ address updatedBy;
28
+ Blocknumber updatedIn;
29
+ Blocknumber createdIn;
30
+ }
31
+
32
+ event LogInfoCreated(Key key, StateId state, address createdBy);
33
+ event LogInfoUpdated(Key key, StateId state, address updatedBy, Blocknumber lastUpdatedIn);
34
+ event LogStateUpdated(Key key, StateId stateOld, StateId stateNew, address updatedBy, Blocknumber lastUpdatedIn);
35
+
36
+ // generic state changing functions
37
+ function create(Key32 key, ObjectType objectType, bytes memory data) external;
38
+ function update(Key32 key, StateId state, bytes memory data) external;
39
+ function updateData(Key32 key, bytes memory data) external;
40
+ function updateState(Key32 key, StateId state) external;
41
+
42
+ function exists(Key32 key) external view returns (bool);
43
+ function get(Key32 key) external view returns (Value memory value);
44
+ function getData(Key32 key) external view returns (bytes memory data);
45
+ function getMetadata(Key32 key) external view returns (Metadata memory metadata);
46
+ function getState(Key32 key) external view returns (StateId state);
47
+
48
+ function toKey32(ObjectType objectType, KeyId id) external pure returns(Key32);
49
+ }
@@ -0,0 +1,30 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {ObjectType} from "../../types/ObjectType.sol";
5
+ import {StateId, toStateId, zeroStateId} from "../../types/StateId.sol";
6
+ import {NftId} from "../../types/NftId.sol";
7
+
8
+ interface ILifecycle {
9
+
10
+ error ErrorNoLifecycle(NftId nftId, ObjectType objectType);
11
+ error ErrorInvalidStateTransition(
12
+ ObjectType objectType,
13
+ StateId fromStateId,
14
+ StateId toStateId
15
+ );
16
+
17
+ function hasLifecycle(
18
+ ObjectType objectType
19
+ ) external view returns (bool);
20
+
21
+ function getInitialState(
22
+ ObjectType objectType
23
+ ) external view returns (StateId);
24
+
25
+ function isValidTransition(
26
+ ObjectType objectType,
27
+ StateId fromId,
28
+ StateId toId
29
+ ) external view returns (bool);
30
+ }
@@ -1,27 +1,32 @@
1
1
  // SPDX-License-Identifier: Apache-2.0
2
2
  pragma solidity ^0.8.19;
3
3
 
4
- import {Versionable} from "../shared/Versionable.sol";
5
- import {Registerable} from "../shared/Registerable.sol";
4
+ import {Versionable} from "../../shared/Versionable.sol";
5
+ import {Registerable} from "../../shared/Registerable.sol";
6
6
  // import {IRegistry} from "../registry/IRegistry.sol";
7
7
 
8
8
  // import {IInstance} from "./IInstance.sol";
9
- import {ObjectType, INSTANCE} from "../types/ObjectType.sol";
10
- import {NftId} from "../types/NftId.sol";
11
- import {Version, VersionPart, toVersion, toVersionPart} from "../types/Version.sol";
9
+ import {ObjectType, INSTANCE} from "../../types/ObjectType.sol";
10
+ import {NftId} from "../../types/NftId.sol";
11
+ import {Version, VersionPart, VersionLib} from "../../types/Version.sol";
12
12
 
13
- import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
14
- import {IProductService} from "./service/IProductService.sol";
15
- import {IPoolService} from "./service/IPoolService.sol";
13
+ import {IComponentOwnerService} from "../service/IComponentOwnerService.sol";
14
+ import {IProductService} from "../service/IProductService.sol";
15
+ import {IPoolService} from "../service/IPoolService.sol";
16
16
 
17
- import {IServiceLinked} from "./IServiceLinked.sol";
18
- import {IInstance} from "./IInstance.sol";
17
+ import {IKeyValueStore} from "./IKeyValueStore.sol";
18
+ import {IInstance} from "../IInstance.sol";
19
+ import {IInstanceBase} from "./IInstanceBase.sol";
20
+
21
+ import {KeyValueStore} from "./KeyValueStore.sol";
19
22
 
20
23
  abstract contract InstanceBase is
21
24
  Versionable,
22
25
  Registerable,
23
- IServiceLinked
26
+ IInstanceBase
24
27
  {
28
+ IKeyValueStore internal _keyValueStore;
29
+
25
30
  IComponentOwnerService internal _componentOwnerService;
26
31
  IProductService internal _productService;
27
32
  IPoolService internal _poolService;
@@ -33,10 +38,14 @@ abstract contract InstanceBase is
33
38
  Registerable(registry, registryNftId)
34
39
  Versionable()
35
40
  {
41
+ _keyValueStore = new KeyValueStore();
42
+
36
43
  _registerInterface(type(IInstance).interfaceId);
37
44
  _linkToServicesInRegistry();
38
45
  }
39
46
 
47
+ function getKeyValueStore() public view virtual override returns (IKeyValueStore keyValueStore) { return _keyValueStore; }
48
+
40
49
  // from versionable
41
50
  function getVersion()
42
51
  public
@@ -44,10 +53,7 @@ abstract contract InstanceBase is
44
53
  virtual override
45
54
  returns(Version)
46
55
  {
47
- return toVersion(
48
- toVersionPart(3),
49
- toVersionPart(0),
50
- toVersionPart(0));
56
+ return VersionLib.toVersion(3,0,0);
51
57
  }
52
58
 
53
59
  // from registerable
@@ -0,0 +1,156 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {Blocknumber, blockBlocknumber, zeroBlocknumber} from "../../types/Blocknumber.sol";
5
+ import {Key32, KeyId, Key32Lib} from "../../types/Key32.sol";
6
+ import {NftId} from "../../types/NftId.sol";
7
+ import {ObjectType} from "../../types/ObjectType.sol";
8
+ import {StateId, ACTIVE} from "../../types/StateId.sol";
9
+ import {Timestamp, blockTimestamp, zeroTimestamp} from "../../types/Timestamp.sol";
10
+
11
+ import {Lifecycle} from "./Lifecycle.sol";
12
+ import {IKeyValueStore} from "./IKeyValueStore.sol";
13
+
14
+ contract KeyValueStore is Lifecycle, IKeyValueStore {
15
+
16
+ mapping(Key32 key32 => Value value) private _value;
17
+ address private _owner;
18
+
19
+ modifier onlyOwner() {
20
+ require(
21
+ msg.sender == _owner,
22
+ "ERROR:KVS-001:NOT_OWNER");
23
+ _;
24
+ }
25
+
26
+ constructor() {
27
+ _owner = msg.sender;
28
+ }
29
+
30
+ function create(
31
+ Key32 key32,
32
+ ObjectType objectType,
33
+ bytes memory data
34
+ )
35
+ public
36
+ onlyOwner
37
+ {
38
+ require(objectType.gtz(), "ERROR:KVS-010:TYPE_UNDEFINED");
39
+
40
+ Metadata storage metadata = _value[key32].metadata;
41
+ require(metadata.state.eqz(), "ERROR:KVS-012:ALREADY_CREATED");
42
+
43
+ address createdBy = msg.sender;
44
+ Blocknumber blocknumber = blockBlocknumber();
45
+ StateId initialState = hasLifecycle(objectType) ? getInitialState(objectType) : ACTIVE();
46
+
47
+ // set metadata
48
+ metadata.objectType = objectType;
49
+ metadata.state = initialState;
50
+ metadata.updatedBy = createdBy;
51
+ metadata.updatedIn = blocknumber;
52
+ metadata.createdIn = blocknumber;
53
+
54
+ // set data
55
+ _value[key32].data = data;
56
+
57
+ emit LogInfoCreated(toKey(key32), initialState, createdBy);
58
+ }
59
+
60
+ function update(Key32 key32, StateId state, bytes memory data)
61
+ public
62
+ onlyOwner
63
+ {
64
+ require(state.gtz(), "ERROR:KVS-020:STATE_UNDEFINED");
65
+ Metadata storage metadata = _value[key32].metadata;
66
+ StateId stateOld = metadata.state;
67
+ require(stateOld.gtz(), "ERROR:KVS-021:NOT_EXISTING");
68
+
69
+ // update data
70
+ _value[key32].data = data;
71
+
72
+ // update metadata (and state)
73
+ address updatedBy = msg.sender;
74
+ Blocknumber lastUpdatedIn = metadata.updatedIn;
75
+ metadata.state = state;
76
+ metadata.updatedBy = updatedBy;
77
+ metadata.updatedIn = blockBlocknumber();
78
+
79
+ // create log entries
80
+ Key memory key = toKey(key32);
81
+ emit LogStateUpdated(key, state, stateOld, updatedBy, lastUpdatedIn);
82
+ emit LogInfoUpdated(key, state, updatedBy, lastUpdatedIn);
83
+ }
84
+
85
+ function updateData(Key32 key32, bytes memory data)
86
+ public
87
+ onlyOwner
88
+ {
89
+ Metadata storage metadata = _value[key32].metadata;
90
+ StateId state = metadata.state;
91
+ require(state.gtz(), "ERROR:KVS-030:NOT_EXISTING");
92
+
93
+ // update data
94
+ _value[key32].data = data;
95
+
96
+ // update metadata
97
+ address updatedBy = msg.sender;
98
+ Blocknumber lastUpdatedIn = metadata.updatedIn;
99
+ metadata.updatedBy = updatedBy;
100
+ metadata.updatedIn = blockBlocknumber();
101
+
102
+ // create log entry
103
+ Key memory key = toKey(key32);
104
+ emit LogInfoUpdated(key, state, updatedBy, lastUpdatedIn);
105
+ }
106
+
107
+ function updateState(Key32 key32, StateId state)
108
+ public
109
+ onlyOwner
110
+ {
111
+ require(state.gtz(), "ERROR:KVS-040:STATE_UNDEFINED");
112
+ Metadata storage metadata = _value[key32].metadata;
113
+ StateId stateOld = metadata.state;
114
+ require(stateOld.gtz(), "ERROR:KVS-041:NOT_EXISTING");
115
+
116
+ // update metadata (and state)
117
+ address updatedBy = msg.sender;
118
+ Blocknumber lastUpdatedIn = metadata.updatedIn;
119
+ metadata.state = state;
120
+ metadata.updatedBy = updatedBy;
121
+ metadata.updatedIn = blockBlocknumber();
122
+
123
+ // create log entry
124
+ Key memory key = toKey(key32);
125
+ emit LogStateUpdated(key, state, stateOld, updatedBy, lastUpdatedIn);
126
+ }
127
+
128
+ function exists(Key32 key32) public view returns (bool) {
129
+ return _value[key32].metadata.state.gtz();
130
+ }
131
+
132
+ function get(Key32 key32) public view returns (Value memory value) {
133
+ return _value[key32];
134
+ }
135
+
136
+ function getMetadata(Key32 key32) public view returns (Metadata memory metadata) {
137
+ return _value[key32].metadata;
138
+ }
139
+
140
+ function getData(Key32 key32) public view returns (bytes memory data) {
141
+ return _value[key32].data;
142
+ }
143
+
144
+ function getState(Key32 key32) public view returns (StateId state) {
145
+ return _value[key32].metadata.state;
146
+ }
147
+
148
+ function toKey32(ObjectType objectType, KeyId id) external pure returns(Key32) {
149
+ return Key32Lib.toKey32(objectType, id);
150
+ }
151
+
152
+ function toKey(Key32 key32) public pure returns (Key memory key) {
153
+ (ObjectType objectType, KeyId id) = key32.toKey();
154
+ return Key(objectType, id);
155
+ }
156
+ }
@@ -1,12 +1,12 @@
1
1
  // SPDX-License-Identifier: Apache-2.0
2
2
  pragma solidity ^0.8.19;
3
3
 
4
- import {NftId} from "../../../types/NftId.sol";
5
- import {ObjectType, PRODUCT, ORACLE, POOL, BUNDLE, POLICY} from "../../../types/ObjectType.sol";
6
- import {StateId, ACTIVE, PAUSED, ARCHIVED, CLOSED, APPLIED, UNDERWRITTEN, REVOKED, DECLINED} from "../../../types/StateId.sol";
7
- import {ILifecycleModule} from "./ILifecycle.sol";
4
+ import {NftId} from "../../types/NftId.sol";
5
+ import {ObjectType, PRODUCT, ORACLE, POOL, BUNDLE, POLICY} from "../../types/ObjectType.sol";
6
+ import {StateId, ACTIVE, PAUSED, ARCHIVED, CLOSED, APPLIED, UNDERWRITTEN, REVOKED, DECLINED} from "../../types/StateId.sol";
7
+ import {ILifecycle} from "./ILifecycle.sol";
8
8
 
9
- contract LifecycleModule is ILifecycleModule {
9
+ contract Lifecycle is ILifecycle {
10
10
  mapping(ObjectType objectType => StateId initialState)
11
11
  private _initialState;
12
12
 
@@ -22,38 +22,44 @@ contract LifecycleModule is ILifecycleModule {
22
22
  _setupPolicyLifecycle();
23
23
  }
24
24
 
25
- function checkAndLogTransition(
26
- NftId nftId,
25
+ function hasLifecycle(
26
+ ObjectType objectType
27
+ )
28
+ public
29
+ view
30
+ override
31
+ returns (bool)
32
+ {
33
+ return _initialState[objectType].gtz();
34
+ }
35
+
36
+ function getInitialState(
37
+ ObjectType objectType
38
+ )
39
+ public
40
+ view
41
+ returns (StateId)
42
+ {
43
+ return _initialState[objectType];
44
+ }
45
+
46
+ function checkTransition(
27
47
  ObjectType objectType,
28
48
  StateId fromId,
29
49
  StateId toId
30
- ) public returns (StateId) // add only currentcontract? would that work?
50
+ )
51
+ public
52
+ view
31
53
  {
32
- if (!_isValidTransition[objectType][fromId][toId]) {
33
- revert ErrorInvalidStateTransition(nftId, objectType, fromId, toId);
54
+ // return if no life cycle support
55
+ if (_initialState[objectType].eqz()) {
56
+ return;
34
57
  }
35
58
 
36
- if (objectType == POLICY()) {
37
- emit LogPolicyStateChanged(nftId, fromId, toId);
38
- } else if (objectType == BUNDLE()) {
39
- emit LogBundleStateChanged(nftId, fromId, toId);
40
- } else if (
41
- objectType == PRODUCT() ||
42
- objectType == ORACLE() ||
43
- objectType == POOL()
44
- ) {
45
- emit LogComponentStateChanged(nftId, objectType, fromId, toId);
46
- } else {
47
- revert ErrorNoLifecycle(nftId, objectType);
59
+ // enforce valid state transition
60
+ if (!_isValidTransition[objectType][fromId][toId]) {
61
+ revert ErrorInvalidStateTransition(objectType, fromId, toId);
48
62
  }
49
-
50
- return toId;
51
- }
52
-
53
- function getInitialState(
54
- ObjectType objectType
55
- ) public view returns (StateId) {
56
- return _initialState[objectType];
57
63
  }
58
64
 
59
65
  function isValidTransition(
@@ -0,0 +1,52 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IRegistry} from "../../registry/IRegistry.sol";
5
+
6
+ import {Blocknumber, blockNumber} from "../../types/Blocknumber.sol";
7
+ import {Key32, KeyId} from "../../types/Key32.sol";
8
+ import {LibNftIdSet} from "../../types/NftIdSet.sol";
9
+ import {NftId} from "../../types/NftId.sol";
10
+ import {ObjectType, PRODUCT, ORACLE, POOL, BUNDLE, POLICY} from "../../types/ObjectType.sol";
11
+ import {StateId, ACTIVE, PAUSED, ARCHIVED, CLOSED, APPLIED, REVOKED, DECLINED} from "../../types/StateId.sol";
12
+ import {Timestamp, blockTimestamp, zeroTimestamp} from "../../types/Timestamp.sol";
13
+
14
+ import {IKeyValueStore} from "./IKeyValueStore.sol";
15
+
16
+ abstract contract ModuleBase {
17
+
18
+ IKeyValueStore private _store;
19
+ ObjectType private _type;
20
+
21
+ function _initialize(IKeyValueStore keyValueStore, ObjectType objectType) internal {
22
+ _store = keyValueStore;
23
+ _type = objectType;
24
+ }
25
+
26
+ function _create(NftId nftId, bytes memory data) internal {
27
+ _store.create(
28
+ _toKey32(nftId),
29
+ _type,
30
+ data);
31
+ }
32
+
33
+ function _updateData(NftId nftId, bytes memory data) internal {
34
+ _store.updateData(_toKey32(nftId), data);
35
+ }
36
+
37
+ function _updateState(NftId nftId, StateId state) internal {
38
+ _store.updateState(_toKey32(nftId), state);
39
+ }
40
+
41
+ function _getData(NftId nftId) internal view returns(bytes memory data) {
42
+ return _store.getData(_toKey32(nftId));
43
+ }
44
+
45
+ function _getState(NftId nftId) internal view returns(StateId) {
46
+ return _store.getState(_toKey32(nftId));
47
+ }
48
+
49
+ function _toKey32(NftId nftId) internal view returns (Key32 key32) {
50
+ return nftId.toKey32(_type);
51
+ }
52
+ }
@@ -1,11 +1,9 @@
1
1
  // SPDX-License-Identifier: Apache-2.0
2
2
  pragma solidity ^0.8.19;
3
3
 
4
- // import {IRegistry} from "../../registry/IRegistry.sol";
5
- // import {ITreasury, ITreasuryModule, TokenHandler} from "../../instance/module/treasury/ITreasury.sol";
6
4
  import {NftId, zeroNftId} from "../../types/NftId.sol";
7
5
  import {ObjectType, SERVICE} from "../../types/ObjectType.sol";
8
- import {Version, VersionPart, toVersion, toVersionPart} from "../../types/Version.sol";
6
+ import {Version, VersionPart} from "../../types/Version.sol";
9
7
 
10
8
  import {Registerable} from "../../shared/Registerable.sol";
11
9
  import {IVersionable} from "../../shared/IVersionable.sol";
@@ -5,7 +5,7 @@ pragma solidity ^0.8.19;
5
5
  // import {AccessControlEnumerable} from "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
6
6
  import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
7
7
 
8
- import {RoleId, toRoleId} from "../../../types/RoleId.sol";
8
+ import {RoleId, RoleIdLib} from "../../../types/RoleId.sol";
9
9
  import {DISTRIBUTOR_OWNER_ROLE, ORACLE_OWNER_ROLE, POOL_OWNER_ROLE, PRODUCT_OWNER_ROLE} from "../../../types/RoleId.sol";
10
10
  import {DISTRIBUTOR_OWNER_ROLE_NAME, ORACLE_OWNER_ROLE_NAME, POOL_OWNER_ROLE_NAME, PRODUCT_OWNER_ROLE_NAME} from "../../../types/RoleId.sol";
11
11
  import {IAccessModule} from "./IAccess.sol";
@@ -45,7 +45,7 @@ abstract contract AccessModule is IAccessModule {
45
45
  function createRole(
46
46
  string memory roleName
47
47
  ) public override onlyAccessOwner returns (RoleId role) {
48
- role = toRoleId(roleName);
48
+ role = RoleIdLib.toRoleId(roleName);
49
49
  require(
50
50
  !roleExists(role),
51
51
  "ERROR:ACS-010:ROLE_ALREADY_EXISTS");
@@ -95,7 +95,7 @@ abstract contract AccessModule is IAccessModule {
95
95
  }
96
96
 
97
97
  function getRoleId(string memory roleName) external pure override returns (RoleId role) {
98
- return toRoleId(roleName);
98
+ return RoleIdLib.toRoleId(roleName);
99
99
  }
100
100
 
101
101
  function getRoleInfo(