@etherisc/gif-next 0.0.2-7f35518-483 → 0.0.2-803a717-124

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 (244) hide show
  1. package/README.md +63 -1
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +142 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +164 -62
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +104 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -52
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +28 -2
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  14. package/artifacts/contracts/components/Pool.sol/Pool.json +196 -102
  15. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  16. package/artifacts/contracts/components/Product.sol/Product.json +166 -58
  17. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  37. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  38. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  39. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  40. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +788 -0
  41. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  42. package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
  43. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  44. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +994 -10
  45. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  46. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
  47. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  48. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +75 -14
  49. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  50. package/artifacts/contracts/instance/Instance.sol/Instance.json +144 -648
  51. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  52. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +283 -143
  53. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  54. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
  55. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  56. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +74 -40
  57. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  58. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +123 -135
  59. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  60. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +19 -67
  61. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  62. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +285 -0
  63. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  64. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +30 -19
  65. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  66. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  67. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  68. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  69. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +54 -22
  72. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  74. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  75. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
  77. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
  78. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  79. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +923 -0
  80. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +432 -0
  82. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +39 -52
  84. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  85. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +43 -53
  86. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  87. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +13 -29
  88. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  89. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +669 -0
  90. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +13 -13
  92. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -13
  94. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  95. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +664 -0
  96. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  97. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -77
  98. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +25 -240
  100. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +971 -0
  102. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +464 -0
  104. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  105. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +42 -157
  106. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  107. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +13 -41
  108. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +755 -0
  110. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +420 -0
  112. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  113. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
  114. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  115. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +123 -232
  116. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  117. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +188 -65
  118. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  119. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  120. package/artifacts/contracts/registry/Registry.sol/Registry.json +137 -330
  121. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  122. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  123. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  124. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +37 -79
  125. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  126. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +38 -112
  127. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  128. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +546 -0
  129. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  130. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
  131. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  132. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  133. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  134. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  135. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  136. package/artifacts/contracts/shared/IService.sol/IService.json +13 -13
  137. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  138. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  139. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
  140. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  141. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
  142. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  143. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +2 -2
  144. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +1 -1
  145. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  146. package/artifacts/contracts/shared/Service.sol/Service.json +13 -13
  147. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  148. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  149. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  150. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  151. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  152. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +4 -4
  153. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  154. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  155. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  156. package/artifacts/contracts/test/TestService.sol/TestService.json +31 -31
  157. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  158. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  159. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  160. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  161. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  162. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  163. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  164. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  165. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  166. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  167. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  168. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  169. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
  170. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  175. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  176. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  177. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  178. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  179. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  180. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  181. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  182. package/contracts/components/BaseComponent.sol +66 -9
  183. package/contracts/components/Distribution.sol +12 -15
  184. package/contracts/components/IBaseComponent.sol +7 -0
  185. package/contracts/components/IDistributionComponent.sol +0 -2
  186. package/contracts/components/IPoolComponent.sol +5 -1
  187. package/contracts/components/Pool.sol +49 -25
  188. package/contracts/components/Product.sol +41 -46
  189. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
  190. package/contracts/instance/BundleManager.sol +129 -0
  191. package/contracts/instance/Cloneable.sol +46 -0
  192. package/contracts/instance/IInstance.sol +27 -4
  193. package/contracts/instance/IInstanceBase.sol +26 -0
  194. package/contracts/instance/IInstanceService.sol +11 -3
  195. package/contracts/instance/Instance.sol +50 -217
  196. package/contracts/instance/InstanceAccessManager.sol +94 -78
  197. package/contracts/instance/InstanceBase.sol +41 -0
  198. package/contracts/instance/InstanceReader.sol +9 -0
  199. package/contracts/instance/InstanceService.sol +205 -87
  200. package/contracts/instance/InstanceServiceManager.sol +10 -12
  201. package/contracts/instance/ObjectManager.sol +101 -0
  202. package/contracts/instance/base/ComponentServiceBase.sol +36 -24
  203. package/contracts/instance/module/IAccess.sol +27 -17
  204. package/contracts/instance/module/ISetup.sol +3 -1
  205. package/contracts/instance/service/BundleService.sol +260 -0
  206. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  207. package/contracts/instance/service/ComponentOwnerService.sol +4 -6
  208. package/contracts/instance/service/DistributionService.sol +41 -26
  209. package/contracts/instance/service/DistributionServiceManager.sol +10 -12
  210. package/contracts/instance/service/IBundleService.sol +45 -0
  211. package/contracts/instance/service/IPolicyService.sol +87 -0
  212. package/contracts/instance/service/IPoolService.sol +6 -23
  213. package/contracts/instance/service/IProductService.sol +6 -73
  214. package/contracts/instance/service/PolicyService.sol +503 -0
  215. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  216. package/contracts/instance/service/PoolService.sol +46 -129
  217. package/contracts/instance/service/PoolServiceManager.sol +10 -12
  218. package/contracts/instance/service/ProductService.sol +168 -0
  219. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  220. package/contracts/registry/ChainNft.sol +1 -1
  221. package/contracts/registry/IRegistry.sol +27 -30
  222. package/contracts/registry/IRegistryService.sol +37 -12
  223. package/contracts/registry/Registry.sol +150 -243
  224. package/contracts/registry/RegistryAccessManager.sol +210 -0
  225. package/contracts/registry/RegistryService.sol +76 -152
  226. package/contracts/registry/RegistryServiceManager.sol +18 -36
  227. package/contracts/registry/ReleaseManager.sol +348 -0
  228. package/contracts/registry/TokenRegistry.sol +5 -6
  229. package/contracts/shared/IService.sol +2 -1
  230. package/contracts/shared/NftOwnable.sol +2 -4
  231. package/contracts/shared/ProxyManager.sol +1 -1
  232. package/contracts/shared/Service.sol +11 -7
  233. package/contracts/test/TestService.sol +3 -2
  234. package/contracts/types/NftIdSet.sol +26 -24
  235. package/contracts/types/RoleId.sol +10 -9
  236. package/package.json +1 -1
  237. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
  238. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
  239. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
  240. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  241. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
  242. package/contracts/instance/AccessManagedSimple.sol +0 -115
  243. package/contracts/instance/AccessManagerSimple.sol +0 -692
  244. package/contracts/instance/IAccessManagerSimple.sol +0 -391
@@ -0,0 +1,129 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {IInstance} from "./IInstance.sol";
5
+ import {INSTANCE} from "../types/ObjectType.sol";
6
+ import {InstanceReader} from "./InstanceReader.sol";
7
+ import {IPolicy} from "../instance/module/IPolicy.sol";
8
+ import {IRegistry} from "../registry/IRegistry.sol";
9
+ import {LibNftIdSet} from "../types/NftIdSet.sol";
10
+ import {NftId} from "../types/NftId.sol";
11
+ import {TimestampLib} from "../types/Timestamp.sol";
12
+
13
+ import {ObjectManager} from "./ObjectManager.sol";
14
+
15
+ contract BundleManager is
16
+ ObjectManager
17
+ {
18
+
19
+ event LogBundleManagerPolicyLinked(NftId bundleNftId, NftId policyNftId);
20
+ event LogBundleManagerPolicyUnlinked(NftId bundleNftId, NftId policyNftId);
21
+
22
+ event LogBundleManagerBundleAdded(NftId poolNftId, NftId bundleNftId);
23
+ event LogBundleManagerBundleUnlocked(NftId poolNftId, NftId bundleNftId);
24
+ event LogBundleManagerBundleLocked(NftId poolNftId, NftId bundleNftId);
25
+
26
+ error ErrorBundleManagerErrorPolicyAlreadyActivated(NftId policyNftId);
27
+ error ErrorBundleManagerErrorBundleLocked(NftId bundleNftId, NftId policyNftId);
28
+ error ErrorBundleManagerPolicyWithOpenClaims(NftId policyNftId, uint256 openClaimsCount);
29
+ error ErrorBundleManagerPolicyNotCloseable(NftId policyNftId);
30
+ error ErrorBundleManagerBundleUnknown(NftId bundleNftId);
31
+ error ErrorBundleManagerBundleNotRegistered(NftId bundleNftId);
32
+
33
+ mapping(NftId bundleNftId => LibNftIdSet.Set policies) internal _activePolicies;
34
+
35
+ constructor() ObjectManager() {
36
+ }
37
+
38
+
39
+ /// @dev links a policy with its bundle
40
+ // to link a policy it MUST NOT yet have been activated
41
+ // the bundle MUST be unlocked (active) for linking (underwriting) and registered with this instance
42
+ function linkPolicy(NftId policyNftId) external restricted() {
43
+ NftId bundleNftId = _instanceReader.getPolicyInfo(policyNftId).bundleNftId;
44
+ // decision will likely depend on the decision what to check here and what in the service
45
+ NftId poolNftId = _instanceReader.getBundleInfo(bundleNftId).poolNftId;
46
+
47
+ // ensure bundle is unlocked (in active set) and registered with this instance
48
+ if (!_isActive(poolNftId, bundleNftId)) {
49
+ revert ErrorBundleManagerErrorBundleLocked(bundleNftId, policyNftId);
50
+ }
51
+
52
+ LibNftIdSet.add(_activePolicies[bundleNftId], policyNftId);
53
+ emit LogBundleManagerPolicyLinked(bundleNftId, policyNftId);
54
+ }
55
+
56
+
57
+ /// @dev unlinks a policy from its bundle
58
+ // to unlink a policy it must closable, ie. meet one of the following criterias
59
+ // - the policy MUST be past its expiry period and it MUST NOT have any open claims
60
+ // - the policy's payoutAmount MUST be equal to its sumInsuredAmount and MUST NOT have any open claims
61
+ function unlinkPolicy(NftId policyNftId) external restricted() {
62
+ IPolicy.PolicyInfo memory policyInfo = _instanceReader.getPolicyInfo(policyNftId);
63
+
64
+ NftId bundleNftId = policyInfo.bundleNftId;
65
+ // decision will likely depend on the decision what to check here and what in the service
66
+ NftId poolNftId = _instanceReader.getBundleInfo(bundleNftId).poolNftId;
67
+
68
+ // ensure bundle is registered with this instance
69
+ if (!_contains(poolNftId, bundleNftId)) {
70
+ revert ErrorBundleManagerBundleUnknown(bundleNftId);
71
+ }
72
+
73
+ LibNftIdSet.remove(_activePolicies[bundleNftId], policyNftId);
74
+ emit LogBundleManagerPolicyUnlinked(policyInfo.bundleNftId, policyNftId);
75
+ }
76
+
77
+
78
+ /// @dev add a new bundle to a riskpool registerd with this instance
79
+ // the corresponding pool is fetched via instance reader
80
+ function add(NftId bundleNftId) external restricted() {
81
+ NftId poolNftId = _instanceReader.getBundleInfo(bundleNftId).poolNftId;
82
+
83
+ // ensure pool is registered with instance
84
+ if(poolNftId.eqz()) {
85
+ revert ErrorBundleManagerBundleNotRegistered(bundleNftId);
86
+ }
87
+
88
+ _add(poolNftId, bundleNftId);
89
+ emit LogBundleManagerBundleAdded(poolNftId, bundleNftId);
90
+ }
91
+
92
+ /// @dev unlocked (active) bundles are available to underwrite new policies
93
+ function unlock(NftId bundleNftId) external restricted() {
94
+ NftId poolNftId = _instanceReader.getBundleInfo(bundleNftId).poolNftId;
95
+ _activate(poolNftId, bundleNftId);
96
+ emit LogBundleManagerBundleUnlocked(poolNftId, bundleNftId);
97
+ }
98
+
99
+ /// @dev locked (deactivated) bundles may not underwrite any new policies
100
+ function lock(NftId bundleNftId) external restricted() {
101
+ NftId poolNftId = _instanceReader.getBundleInfo(bundleNftId).poolNftId;
102
+ _deactivate(poolNftId, bundleNftId);
103
+ emit LogBundleManagerBundleLocked(poolNftId, bundleNftId);
104
+ }
105
+
106
+ function bundles(NftId poolNftId) external view returns(uint256) {
107
+ return _objects(poolNftId);
108
+ }
109
+
110
+ function getBundleNftId(NftId poolNftId, uint256 idx) external view returns(NftId bundleNftId) {
111
+ return _getObject(poolNftId, idx);
112
+ }
113
+
114
+ function activeBundles(NftId poolNftId) external view returns(uint256) {
115
+ return _activeObjs(poolNftId);
116
+ }
117
+
118
+ function getActiveBundleNftId(NftId poolNftId, uint256 idx) external view returns(NftId bundleNftId) {
119
+ return _getActiveObject(poolNftId, idx);
120
+ }
121
+
122
+ function activePolicies(NftId bundleNftId) external view returns(uint256) {
123
+ return LibNftIdSet.size(_activePolicies[bundleNftId]);
124
+ }
125
+
126
+ function getActivePolicy(NftId bundleNftId, uint256 idx) external view returns(NftId policyNftId) {
127
+ return LibNftIdSet.getElementAt(_activePolicies[bundleNftId], idx);
128
+ }
129
+ }
@@ -0,0 +1,46 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
5
+ import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
6
+
7
+ import {IRegistry} from "../registry/IRegistry.sol";
8
+
9
+ abstract contract Cloneable is
10
+ AccessManagedUpgradeable
11
+ {
12
+ event CloneableInitialized(address authority, address registry);
13
+
14
+ error CloneableRegistryInvalid(address registry);
15
+
16
+ IRegistry internal _registry;
17
+
18
+ constructor() {
19
+ _registry = IRegistry(address(0));
20
+ }
21
+
22
+ /// @dev call to initialize MUST be made in the same transaction as cloning of the contract
23
+ function initialize(
24
+ address authority,
25
+ address registry
26
+ )
27
+ public
28
+ initializer
29
+ {
30
+ // check/handle access managed
31
+ __AccessManaged_init(authority);
32
+
33
+ // check/handle registry
34
+ if (registry.code.length == 0) {
35
+ revert CloneableRegistryInvalid(registry);
36
+ }
37
+
38
+ _registry = IRegistry(registry);
39
+
40
+ emit CloneableInitialized(authority, registry);
41
+ }
42
+
43
+ function getRegistry() external view returns (IRegistry) {
44
+ return _registry;
45
+ }
46
+ }
@@ -3,25 +3,34 @@ pragma solidity ^0.8.20;
3
3
 
4
4
  import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
5
5
 
6
+ import {BundleManager} from "./BundleManager.sol";
6
7
  import {InstanceReader} from "./InstanceReader.sol";
7
8
 
9
+ import {InstanceAccessManager} from "./InstanceAccessManager.sol";
8
10
  import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
9
11
  import {IDistributionService} from "./service/IDistributionService.sol";
10
12
  import {IPoolService} from "./service/IPoolService.sol";
11
13
  import {IProductService} from "./service/IProductService.sol";
14
+ import {IPolicyService} from "./service/IPolicyService.sol";
15
+ import {IBundleService} from "./service/IBundleService.sol";
12
16
  import {IBundle} from "./module/IBundle.sol";
13
17
  import {ISetup} from "./module/ISetup.sol";
14
18
  import {NftId} from "../types/NftId.sol";
15
19
  import {StateId} from "../types/StateId.sol";
20
+ import {RiskId} from "../types/RiskId.sol";
21
+ import {IRisk} from "./module/IRisk.sol";
22
+ import {IPolicy} from "./module/IPolicy.sol";
23
+ import {IKeyValueStore} from "./base/IKeyValueStore.sol";
16
24
 
17
- interface IInstance is IERC165 {
25
+
26
+ interface IInstance is IERC165, IKeyValueStore {
18
27
 
19
28
  function getComponentOwnerService() external view returns (IComponentOwnerService);
20
29
  function getDistributionService() external view returns (IDistributionService);
21
- // function getProductService() external view returns (IProductService);
30
+ function getProductService() external view returns (IProductService);
22
31
  function getPoolService() external view returns (IPoolService);
23
-
24
- function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external;
32
+ function getPolicyService() external view returns (IPolicyService);
33
+ function getBundleService() external view returns (IBundleService);
25
34
 
26
35
  function createDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup) external;
27
36
  function updateDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup, StateId newState) external;
@@ -35,5 +44,19 @@ interface IInstance is IERC165 {
35
44
  function updateBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle, StateId newState) external;
36
45
  function updateBundleState(NftId bundleNftId, StateId newState) external;
37
46
 
47
+ function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external;
48
+ function updateProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup, StateId newState) external;
49
+ function updateProductSetupState(NftId productNftId, StateId newState) external;
50
+
51
+ function createRisk(RiskId riskId, IRisk.RiskInfo memory risk) external;
52
+ function updateRisk(RiskId riskId, IRisk.RiskInfo memory risk, StateId newState) external;
53
+ function updateRiskState(RiskId riskId, StateId newState) external;
54
+
55
+ function createPolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy) external;
56
+ function updatePolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external;
57
+ function updatePolicyState(NftId policyNftId, StateId newState) external;
58
+
59
+ function getInstanceAccessManager() external view returns (InstanceAccessManager);
38
60
  function getInstanceReader() external view returns (InstanceReader);
61
+ function getBundleManager() external view returns (BundleManager);
39
62
  }
@@ -0,0 +1,26 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
5
+
6
+ import {BundleManager} from "./BundleManager.sol";
7
+ import {InstanceReader} from "./InstanceReader.sol";
8
+
9
+ import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
10
+ import {IDistributionService} from "./service/IDistributionService.sol";
11
+ import {IPoolService} from "./service/IPoolService.sol";
12
+ import {IProductService} from "./service/IProductService.sol";
13
+ import {IBundle} from "./module/IBundle.sol";
14
+ import {ISetup} from "./module/ISetup.sol";
15
+ import {NftId} from "../types/NftId.sol";
16
+ import {StateId} from "../types/StateId.sol";
17
+ import {RiskId} from "../types/RiskId.sol";
18
+ import {IRisk} from "./module/IRisk.sol";
19
+ import {IPolicy} from "./module/IPolicy.sol";
20
+ import {IKeyValueStore} from "./base/IKeyValueStore.sol";
21
+
22
+
23
+ interface IInstanceBase is IERC165, IKeyValueStore {
24
+
25
+
26
+ }
@@ -10,21 +10,29 @@ import {IRegistry} from "../registry/IRegistry.sol";
10
10
  import {IRegisterable} from "../shared/IRegisterable.sol";
11
11
  import {IBaseComponent} from "../components/IBaseComponent.sol";
12
12
 
13
- import {AccessManagerSimple} from "./AccessManagerSimple.sol";
13
+ import {InstanceAccessManager} from "./InstanceAccessManager.sol";
14
14
  import {Instance} from "./Instance.sol";
15
15
  import {InstanceReader} from "./InstanceReader.sol";
16
+ import {BundleManager} from "./BundleManager.sol";
16
17
 
17
18
  interface IInstanceService is IService {
18
19
 
20
+ error ErrorInstanceServiceRequestUnauhorized(address caller);
21
+ error ErrorInstanceServiceNotInstanceOwner(address caller, NftId instanceNftId);
22
+
19
23
  event LogInstanceCloned(address clonedAccessManagerAddress, address clonedInstanceAddress, address clonedInstanceReaderAddress, NftId clonedInstanceNftId);
20
24
 
21
25
  function createInstanceClone()
22
26
  external
23
27
  returns (
24
- AccessManagerSimple clonedAccessManager,
28
+ InstanceAccessManager clonedAccessManager,
25
29
  Instance clonedInstance,
26
30
  NftId instanceNftId,
27
- InstanceReader clonedInstanceReader
31
+ InstanceReader clonedInstanceReader,
32
+ BundleManager clonedBundleManager
28
33
  );
34
+
35
+ function hasRole(address account, RoleId role, address instanceAddress) external returns (bool);
36
+
29
37
  }
30
38
 
@@ -3,9 +3,9 @@ pragma solidity ^0.8.20;
3
3
 
4
4
  import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
5
5
  import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
6
+ import {Initializable} from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
7
+ import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
6
8
 
7
- import {AccessManagedSimple} from "./AccessManagedSimple.sol";
8
- import {AccessManagerSimple} from "./AccessManagerSimple.sol";
9
9
  import {IAccess} from "./module/IAccess.sol";
10
10
  import {IBundle} from "./module/IBundle.sol";
11
11
  import {IPolicy} from "./module/IPolicy.sol";
@@ -15,26 +15,32 @@ import {Key32, KeyId, Key32Lib} from "../types/Key32.sol";
15
15
  import {KeyValueStore} from "./base/KeyValueStore.sol";
16
16
  import {IInstance} from "./IInstance.sol";
17
17
  import {InstanceReader} from "./InstanceReader.sol";
18
+ import {InstanceAccessManager} from "./InstanceAccessManager.sol";
19
+ import {BundleManager} from "./BundleManager.sol";
18
20
  import {NftId} from "../types/NftId.sol";
19
21
  import {NumberId} from "../types/NumberId.sol";
20
- import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
22
+ import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET, COMPONENT} from "../types/ObjectType.sol";
21
23
  import {RiskId, RiskIdLib} from "../types/RiskId.sol";
22
24
  import {RoleId, RoleIdLib} from "../types/RoleId.sol";
23
25
  import {StateId, ACTIVE} from "../types/StateId.sol";
26
+ import {TimestampLib} from "../types/Timestamp.sol";
24
27
  import {ERC165} from "../shared/ERC165.sol";
25
28
  import {Registerable} from "../shared/Registerable.sol";
26
29
  import {ComponentOwnerService} from "./service/ComponentOwnerService.sol";
27
30
  import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
28
31
  import {IDistributionService} from "./service/IDistributionService.sol";
29
32
  import {IPoolService} from "./service/IPoolService.sol";
33
+ import {IProductService} from "./service/IProductService.sol";
34
+ import {IPolicyService} from "./service/IPolicyService.sol";
35
+ import {IBundleService} from "./service/IBundleService.sol";
30
36
  import {VersionPart} from "../types/Version.sol";
37
+ import {InstanceBase} from "./InstanceBase.sol";
31
38
 
32
39
  contract Instance is
33
- AccessManagedSimple,
34
- KeyValueStore,
40
+ AccessManagedUpgradeable,
35
41
  IInstance,
36
- ERC165,
37
- Registerable
42
+ // Initializable,
43
+ InstanceBase
38
44
  {
39
45
 
40
46
  uint64 public constant ADMIN_ROLE = type(uint64).min;
@@ -45,155 +51,26 @@ contract Instance is
45
51
 
46
52
  bool private _initialized;
47
53
 
48
- mapping(ShortString name => RoleId roleId) internal _role;
49
- mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
50
- RoleId [] internal _roles;
51
-
52
- mapping(ShortString name => address target) internal _target;
53
-
54
- AccessManagerSimple internal _accessManager;
54
+ InstanceAccessManager internal _accessManager;
55
55
  InstanceReader internal _instanceReader;
56
+ BundleManager internal _bundleManager;
56
57
 
57
- constructor(address accessManagerAddress, address registryAddress, NftId registryNftId)
58
+ function initialize(address accessManagerAddress, address registryAddress, NftId registryNftId, address initialOwner)
59
+ public
60
+ initializer
58
61
  {
59
- initialize(accessManagerAddress, registryAddress, registryNftId, msg.sender);
60
- }
61
-
62
- function initialize(address accessManagerAddress, address registryAddress, NftId registryNftId, address initialOwner) public {
63
62
  require(!_initialized, "Contract instance has already been initialized");
64
63
 
65
- initializeAccessManagedSimple(accessManagerAddress);
64
+ __AccessManaged_init(accessManagerAddress);
66
65
 
67
- _accessManager = AccessManagerSimple(accessManagerAddress);
68
- _createRole(RoleIdLib.toRoleId(ADMIN_ROLE), "AdminRole", false, false);
69
- _createRole(RoleIdLib.toRoleId(PUBLIC_ROLE), "PublicRole", false, false);
70
-
66
+ _accessManager = InstanceAccessManager(accessManagerAddress);
67
+
71
68
  _initializeRegisterable(registryAddress, registryNftId, INSTANCE(), false, initialOwner, "");
72
69
 
73
70
  _registerInterface(type(IInstance).interfaceId);
74
71
  _initialized = true;
75
72
  }
76
73
 
77
- //--- Role ------------------------------------------------------//
78
- function createStandardRole(RoleId roleId, string memory name) external restricted() {
79
- _createRole(roleId, name, false, true);
80
- }
81
-
82
- function createCustomRole(RoleId roleId, string memory name) external restricted() {
83
- _createRole(roleId, name, true, true);
84
- }
85
-
86
- function updateRole(RoleId roleId, string memory name, StateId newState) external restricted() {
87
- (bool isCustom,) = _validateRoleParameters(roleId, name, false);
88
- IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
89
- update(toRoleKey32(roleId), abi.encode(role), newState);
90
- }
91
-
92
- function updateRoleState(RoleId roleId, StateId newState) external restricted() {
93
- updateState(toRoleKey32(roleId), newState);
94
- }
95
-
96
- function grantRole(RoleId roleId, address member) external restricted() returns (bool granted) {
97
- Key32 roleKey = toRoleKey32(roleId);
98
-
99
- if (!exists(roleKey)) {
100
- revert IAccess.ErrorGrantNonexstentRole(roleId);
101
- }
102
-
103
- if (getState(roleKey) != ACTIVE()) {
104
- revert IAccess.ErrorRoleIdNotActive(roleId);
105
- }
106
-
107
- if (!EnumerableSet.contains(_roleMembers[roleId], member)) {
108
- _accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
109
- EnumerableSet.add(_roleMembers[roleId], member);
110
- return true;
111
- }
112
-
113
- return false;
114
- }
115
-
116
- function revokeRole(RoleId roleId, address member) external restricted() returns (bool revoked) {
117
- Key32 roleKey = toRoleKey32(roleId);
118
-
119
- if (!exists(roleKey)) {
120
- revert IAccess.ErrorRevokeNonexstentRole(roleId);
121
- }
122
-
123
- if (EnumerableSet.contains(_roleMembers[roleId], member)) {
124
- _accessManager.revokeRole(roleId.toInt(), member);
125
- EnumerableSet.remove(_roleMembers[roleId], member);
126
- return true;
127
- }
128
-
129
- return false;
130
- }
131
-
132
- /// @dev not restricted function by intention
133
- /// the restriction to role members is already enforced by the call to the access manger
134
- function renounceRole(RoleId roleId) external returns (bool revoked) {
135
- address member = msg.sender;
136
- Key32 roleKey = toRoleKey32(roleId);
137
-
138
- if (!exists(roleKey)) {
139
- revert IAccess.ErrorRenounceNonexstentRole(roleId);
140
- }
141
-
142
- if (EnumerableSet.contains(_roleMembers[roleId], member)) {
143
- _accessManager.renounceRole(roleId.toInt(), member);
144
- EnumerableSet.remove(_roleMembers[roleId], member);
145
- return true;
146
- }
147
-
148
- return false;
149
- }
150
-
151
- function roles() external view returns (uint256 numberOfRoles) {
152
- return _roles.length;
153
- }
154
-
155
- function getRoleId(uint256 idx) external view returns (RoleId roleId) {
156
- return _roles[idx];
157
- }
158
-
159
- function getRole(RoleId roleId) external view returns (IAccess.RoleInfo memory role) {
160
- return abi.decode(getData(roleId.toKey32()), (IAccess.RoleInfo));
161
- }
162
-
163
- function roleMembers(RoleId roleId) external view returns (uint256 numberOfMembers) {
164
- return EnumerableSet.length(_roleMembers[roleId]);
165
- }
166
-
167
- function getRoleMember(RoleId roleId, uint256 idx) external view returns (address roleMember) {
168
- return EnumerableSet.at(_roleMembers[roleId], idx);
169
- }
170
-
171
- function _createRole(RoleId roleId, string memory name, bool isCustom, bool validateParameters) internal {
172
- if (validateParameters) {
173
- _validateRoleParameters(roleId, name, isCustom);
174
- }
175
-
176
- IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
177
- _role[role.name] = roleId;
178
- _roles.push(roleId);
179
-
180
- create(toRoleKey32(roleId), abi.encode(role));
181
- }
182
-
183
- //--- Target ------------------------------------------------------//
184
- function createTarget(address target, IAccess.TargetInfo memory targetInfo) external restricted() {
185
- _validateTargetParameters(target, targetInfo);
186
- create(toTargetKey32(target), abi.encode(targetInfo));
187
- }
188
-
189
- function setTargetClosed(address target, bool closed) external restricted() {
190
- if (!exists(toTargetKey32(target))) {
191
- revert IAccess.ErrorTargetDoesNotExist(target);
192
- }
193
-
194
- _accessManager.setTargetClosed(target, closed);
195
- }
196
-
197
74
  //--- ProductSetup ------------------------------------------------------//
198
75
  function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external restricted() {
199
76
  create(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup));
@@ -338,71 +215,6 @@ contract Instance is
338
215
  }
339
216
 
340
217
  //--- internal view/pure functions --------------------------------------//
341
- function _toRole(RoleId roleId, string memory name, bool isCustom)
342
- internal
343
- pure
344
- returns (IAccess.RoleInfo memory role)
345
- {
346
- return IAccess.RoleInfo(
347
- ShortStrings.toShortString(name),
348
- isCustom);
349
- }
350
-
351
- function _validateRoleParameters(
352
- RoleId roleId,
353
- string memory name,
354
- bool isCustom
355
- )
356
- internal
357
- view
358
- returns (
359
- bool roleExists,
360
- bool roleIsCustom
361
- )
362
- {
363
- Key32 roleKey = toRoleKey32(roleId);
364
- roleExists = exists(roleKey);
365
- if (roleExists) {
366
- roleIsCustom = abi.decode(getData(roleKey), (IAccess.RoleInfo)).isCustom;
367
- } else {
368
- roleIsCustom = isCustom;
369
- }
370
-
371
- // check role id
372
- uint64 roleIdInt = RoleId.unwrap(roleId);
373
- if(roleIdInt == ADMIN_ROLE || roleIdInt == PUBLIC_ROLE) {
374
- revert IAccess.ErrorRoleIdInvalid(roleId);
375
- }
376
-
377
- if (roleIsCustom && roleIdInt < CUSTOM_ROLE_ID_MIN) {
378
- revert IAccess.ErrorRoleIdTooSmall(roleId);
379
- } else if (roleIsCustom && roleIdInt >= CUSTOM_ROLE_ID_MIN) {
380
- revert IAccess.ErrorRoleIdTooBig(roleId);
381
- }
382
-
383
- // role name checks
384
- ShortString nameShort = ShortStrings.toShortString(name);
385
- if (ShortStrings.byteLength(nameShort) == 0) {
386
- revert IAccess.ErrorRoleNameEmpty(roleId);
387
- }
388
-
389
- if (_role[nameShort] != RoleIdLib.zero() && _role[nameShort] != roleId) {
390
- revert IAccess.ErrorRoleNameNotUnique(_role[nameShort], nameShort);
391
- }
392
- }
393
-
394
- function _validateTargetParameters(address target, IAccess.TargetInfo memory targetInfo) internal view {
395
-
396
- }
397
-
398
- function toRoleKey32(RoleId roleId) public pure returns (Key32) {
399
- return roleId.toKey32();
400
- }
401
-
402
- function toTargetKey32(address target) public pure returns (Key32) {
403
- return Key32Lib.toKey32(TARGET(), KeyId.wrap(bytes20(target)));
404
- }
405
-
406
218
  function _toNftKey32(NftId nftId, ObjectType objectType) internal pure returns (Key32) {
407
219
  return nftId.toKey32(objectType);
408
220
  }
@@ -416,28 +228,49 @@ contract Instance is
416
228
  }
417
229
 
418
230
  function getComponentOwnerService() external view returns (IComponentOwnerService) {
419
- return ComponentOwnerService(_registry.getServiceAddress("ComponentOwnerService", VersionPart.wrap(3)));
231
+ return ComponentOwnerService(_registry.getServiceAddress(COMPONENT(), VersionPart.wrap(3)));
420
232
  }
421
233
 
422
234
  function getDistributionService() external view returns (IDistributionService) {
423
- return IDistributionService(_registry.getServiceAddress("DistributionService", VersionPart.wrap(3)));
235
+ return IDistributionService(_registry.getServiceAddress(DISTRIBUTION(), VersionPart.wrap(3)));
424
236
  }
425
237
 
426
- // TODO reactivate when services are available
427
- // function getProductService() external view returns (IProductService) {
428
- // return ProductService(_registry.getServiceAddress("ProductService", VersionPart.wrap(3)));
429
- // }
238
+ function getProductService() external view returns (IProductService) {
239
+ return IProductService(_registry.getServiceAddress(PRODUCT(), VersionPart.wrap(3)));
240
+ }
430
241
 
431
242
  function getPoolService() external view returns (IPoolService) {
432
- return IPoolService(_registry.getServiceAddress("PoolService", VersionPart.wrap(3)));
243
+ return IPoolService(_registry.getServiceAddress(POOL(), VersionPart.wrap(3)));
244
+ }
245
+
246
+ function getPolicyService() external view returns (IPolicyService) {
247
+ return IPolicyService(_registry.getServiceAddress(POLICY(), VersionPart.wrap(3)));
248
+ }
249
+
250
+ function getBundleService() external view returns (IBundleService) {
251
+ return IBundleService(_registry.getServiceAddress(BUNDLE(), VersionPart.wrap(3)));
252
+ }
253
+
254
+ function getInstanceAccessManager() external view returns (InstanceAccessManager) {
255
+ return _accessManager;
433
256
  }
434
257
 
435
258
  function setInstanceReader(InstanceReader instanceReader) external restricted() {
436
- require(address(_instanceReader) == address(0), "InstanceReader is set");
259
+ require(instanceReader.getInstanceNftId() == getNftId(), "NFT ID of InstanceReader does not match");
437
260
  _instanceReader = instanceReader;
438
261
  }
439
262
 
440
263
  function getInstanceReader() external view returns (InstanceReader) {
441
264
  return _instanceReader;
442
265
  }
266
+
267
+ function setBundleManager(BundleManager bundleManager) external restricted() {
268
+ require(address(_bundleManager) == address(0), "BundleManager is set");
269
+ require(bundleManager.getInstanceNftId() == getNftId(), "NFT ID of BundleManager does not match");
270
+ _bundleManager = bundleManager;
271
+ }
272
+
273
+ function getBundleManager() external view returns (BundleManager) {
274
+ return _bundleManager;
275
+ }
443
276
  }