@etherisc/gif-next 0.0.2-a1053ad-624 → 0.0.2-a25e4b8-781

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 (267) hide show
  1. package/README.md +67 -1
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
  3. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → components/Component.sol/Component.json} +288 -166
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +260 -89
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/{BaseComponent.sol/BaseComponent.json → IComponent.sol/IComponent.json} +129 -30
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +28 -2
  11. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +5 -5
  13. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  14. package/artifacts/contracts/components/Pool.sol/Pool.json +290 -116
  15. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  16. package/artifacts/contracts/components/Product.sol/Product.json +271 -144
  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/Dummy.sol/LifeCycleModule.json +2 -2
  32. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  36. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  38. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  40. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  41. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
  42. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  43. package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
  44. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  45. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1649 -28
  46. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  47. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +162 -13
  48. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  49. package/artifacts/contracts/instance/Instance.sol/Instance.json +176 -678
  50. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  51. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +231 -114
  52. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  53. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +182 -58
  54. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  55. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +315 -62
  56. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  57. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +57 -21
  58. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  59. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
  60. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +125 -11
  62. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  63. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -13
  64. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  65. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  66. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  67. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +2 -2
  68. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  69. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
  70. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
  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 +1094 -0
  80. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +436 -0
  82. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  83. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +764 -0
  84. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +424 -0
  86. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  87. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +720 -0
  88. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  89. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -13
  90. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  91. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +771 -0
  92. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -77
  94. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +25 -240
  96. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1219 -0
  98. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +492 -0
  100. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +798 -0
  102. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +424 -0
  104. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +848 -0
  106. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +424 -0
  108. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  109. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
  110. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  111. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +339 -59
  112. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  113. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +195 -86
  114. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  115. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  116. package/artifacts/contracts/registry/Registry.sol/Registry.json +301 -188
  117. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  118. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  119. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  120. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +38 -112
  121. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  122. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +38 -91
  123. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  124. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
  125. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  126. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +381 -0
  127. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  128. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  129. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
  130. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  131. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  132. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  133. package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +14 -14
  134. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  135. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  136. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
  137. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  138. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
  139. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  140. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +4 -4
  141. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/Service.sol/Service.json} +15 -15
  143. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  144. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  145. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  146. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  147. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  148. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  149. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +4 -4
  150. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  151. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  152. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  153. package/artifacts/contracts/test/TestService.sol/TestService.json +31 -31
  154. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  155. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  156. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  157. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  158. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
  159. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  160. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  161. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  163. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  164. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  165. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  166. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  167. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  168. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
  169. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  170. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  175. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  176. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  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/VersionLib.json +2 -2
  182. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  183. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
  184. package/contracts/components/Component.sol +179 -0
  185. package/contracts/components/Distribution.sol +20 -32
  186. package/contracts/components/IComponent.sol +37 -0
  187. package/contracts/components/IDistributionComponent.sol +1 -0
  188. package/contracts/components/IPoolComponent.sol +5 -1
  189. package/contracts/components/IProductComponent.sol +2 -2
  190. package/contracts/components/Pool.sol +49 -50
  191. package/contracts/components/Product.sol +60 -60
  192. package/contracts/instance/BundleManager.sol +125 -0
  193. package/contracts/instance/Cloneable.sol +46 -0
  194. package/contracts/instance/IInstance.sol +50 -12
  195. package/contracts/instance/IInstanceService.sol +30 -7
  196. package/contracts/instance/Instance.sol +66 -249
  197. package/contracts/instance/InstanceAccessManager.sol +88 -78
  198. package/contracts/instance/InstanceReader.sol +34 -21
  199. package/contracts/instance/InstanceService.sol +313 -53
  200. package/contracts/instance/InstanceServiceManager.sol +10 -12
  201. package/contracts/instance/ObjectManager.sol +84 -0
  202. package/contracts/instance/base/ComponentService.sol +133 -0
  203. package/contracts/instance/base/IInstanceBase.sol +0 -2
  204. package/contracts/instance/module/IAccess.sol +27 -17
  205. package/contracts/instance/module/IBundle.sol +1 -0
  206. package/contracts/instance/module/ISetup.sol +3 -0
  207. package/contracts/instance/service/BundleService.sol +293 -0
  208. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  209. package/contracts/instance/service/DistributionService.sol +115 -0
  210. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  211. package/contracts/instance/service/IBundleService.sol +44 -0
  212. package/contracts/instance/service/IDistributionService.sol +1 -1
  213. package/contracts/instance/service/IPolicyService.sol +94 -0
  214. package/contracts/instance/service/IPoolService.sol +7 -24
  215. package/contracts/instance/service/IProductService.sol +7 -74
  216. package/contracts/instance/service/PolicyService.sol +538 -0
  217. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  218. package/contracts/instance/service/PoolService.sol +142 -0
  219. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  220. package/contracts/instance/service/ProductService.sol +241 -0
  221. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  222. package/contracts/registry/ChainNft.sol +1 -1
  223. package/contracts/registry/IRegistry.sol +47 -6
  224. package/contracts/registry/IRegistryService.sol +52 -30
  225. package/contracts/registry/Registry.sol +243 -214
  226. package/contracts/registry/RegistryAccessManager.sol +216 -0
  227. package/contracts/registry/RegistryService.sol +87 -214
  228. package/contracts/registry/RegistryServiceManager.sol +20 -22
  229. package/contracts/registry/ReleaseManager.sol +352 -0
  230. package/contracts/registry/TokenRegistry.sol +112 -0
  231. package/contracts/shared/ERC165.sol +6 -2
  232. package/contracts/shared/IRegisterable.sol +0 -2
  233. package/contracts/shared/IService.sol +16 -0
  234. package/contracts/shared/NftOwnable.sol +4 -4
  235. package/contracts/shared/ProxyManager.sol +1 -1
  236. package/contracts/shared/Registerable.sol +1 -0
  237. package/contracts/shared/Service.sol +60 -0
  238. package/contracts/test/TestService.sol +6 -7
  239. package/contracts/types/NftIdSet.sol +26 -24
  240. package/contracts/types/RoleId.sol +14 -6
  241. package/contracts/types/StateId.sol +4 -0
  242. package/contracts/types/Version.sol +4 -1
  243. package/package.json +1 -1
  244. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  245. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  246. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -267
  247. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
  248. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
  249. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1119
  250. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  251. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
  252. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  253. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  254. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  255. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  256. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
  257. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  258. package/contracts/components/BaseComponent.sol +0 -86
  259. package/contracts/components/IBaseComponent.sol +0 -24
  260. package/contracts/instance/AccessManagedSimple.sol +0 -114
  261. package/contracts/instance/AccessManagerSimple.sol +0 -682
  262. package/contracts/instance/IAccessManagerSimple.sol +0 -391
  263. package/contracts/instance/base/ComponentServiceBase.sol +0 -49
  264. package/contracts/instance/base/IService.sol +0 -15
  265. package/contracts/instance/base/ServiceBase.sol +0 -44
  266. package/contracts/instance/service/ComponentOwnerService.sol +0 -317
  267. package/contracts/instance/service/IComponentOwnerService.sol +0 -20
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/87bb0e6336af67aff324941d5e57b181.json"
3
+ "buildInfo": "../../../build-info/e54a45d99367d9556932f13b1554e20b.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/87bb0e6336af67aff324941d5e57b181.json"
3
+ "buildInfo": "../../../build-info/e54a45d99367d9556932f13b1554e20b.json"
4
4
  }
@@ -170,8 +170,8 @@
170
170
  "type": "function"
171
171
  }
172
172
  ],
173
- "bytecode": "0x61039161003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea2646970667358221220e42f77cfda39708b26a423d08fb99d9e3d65c337357ab7291eb4fdfec94256eb64736f6c63430008140033",
174
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea2646970667358221220e42f77cfda39708b26a423d08fb99d9e3d65c337357ab7291eb4fdfec94256eb64736f6c63430008140033",
173
+ "bytecode": "0x61039161003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea264697066735822122096e4b37266f82e0aaf6f30afa90c545c35f82576ca3b67d630233921e58f525b64736f6c63430008140033",
174
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea264697066735822122096e4b37266f82e0aaf6f30afa90c545c35f82576ca3b67d630233921e58f525b64736f6c63430008140033",
175
175
  "linkReferences": {},
176
176
  "deployedLinkReferences": {}
177
177
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/87bb0e6336af67aff324941d5e57b181.json"
3
+ "buildInfo": "../../../build-info/e54a45d99367d9556932f13b1554e20b.json"
4
4
  }
@@ -7,7 +7,7 @@
7
7
  "inputs": [
8
8
  {
9
9
  "internalType": "VersionPart",
10
- "name": "x",
10
+ "name": "a",
11
11
  "type": "uint8"
12
12
  }
13
13
  ],
@@ -21,10 +21,29 @@
21
21
  ],
22
22
  "stateMutability": "pure",
23
23
  "type": "function"
24
+ },
25
+ {
26
+ "inputs": [
27
+ {
28
+ "internalType": "uint256",
29
+ "name": "a",
30
+ "type": "uint256"
31
+ }
32
+ ],
33
+ "name": "toVersionPart",
34
+ "outputs": [
35
+ {
36
+ "internalType": "VersionPart",
37
+ "name": "",
38
+ "type": "uint8"
39
+ }
40
+ ],
41
+ "stateMutability": "pure",
42
+ "type": "function"
24
43
  }
25
44
  ],
26
- "bytecode": "0x60b9610039600b82828239805160001a60731461002c57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c8063ac43d834146038575b600080fd5b60496043366004605b565b60ff1690565b60405190815260200160405180910390f35b600060208284031215606c57600080fd5b813560ff81168114607c57600080fd5b939250505056fea264697066735822122028c6578af7cf354c26921be53c7bafd817914c3fa380a53d5f0e3935a1b47c8b64736f6c63430008140033",
27
- "deployedBytecode": "0x730000000000000000000000000000000000000000301460806040526004361060335760003560e01c8063ac43d834146038575b600080fd5b60496043366004605b565b60ff1690565b60405190815260200160405180910390f35b600060208284031215606c57600080fd5b813560ff81168114607c57600080fd5b939250505056fea264697066735822122028c6578af7cf354c26921be53c7bafd817914c3fa380a53d5f0e3935a1b47c8b64736f6c63430008140033",
45
+ "bytecode": "0x60fb610039600b82828239805160001a60731461002c57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c80638e4ad86c146042578063ac43d834146067575b600080fd5b6050604d3660046085565b90565b60405160ff90911681526020015b60405180910390f35b60786072366004609d565b60ff1690565b604051908152602001605e565b600060208284031215609657600080fd5b5035919050565b60006020828403121560ae57600080fd5b813560ff8116811460be57600080fd5b939250505056fea264697066735822122074bb6f75f2cab9692d05e41844bf40283045a9440c662c37a97b2502d38207ed64736f6c63430008140033",
46
+ "deployedBytecode": "0x7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c80638e4ad86c146042578063ac43d834146067575b600080fd5b6050604d3660046085565b90565b60405160ff90911681526020015b60405180910390f35b60786072366004609d565b60ff1690565b604051908152602001605e565b600060208284031215609657600080fd5b5035919050565b60006020828403121560ae57600080fd5b813560ff8116811460be57600080fd5b939250505056fea264697066735822122074bb6f75f2cab9692d05e41844bf40283045a9440c662c37a97b2502d38207ed64736f6c63430008140033",
28
47
  "linkReferences": {},
29
48
  "deployedLinkReferences": {}
30
49
  }
@@ -0,0 +1,179 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
5
+ import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
6
+ import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
7
+
8
+ import {IComponent} from "./IComponent.sol";
9
+ import {IProductService} from "../instance/service/IProductService.sol";
10
+ import {IInstanceService} from "../instance/IInstanceService.sol";
11
+ import {IInstance} from "../instance/IInstance.sol";
12
+ import {InstanceAccessManager} from "../instance/InstanceAccessManager.sol";
13
+ import {IRegistry} from "../registry/IRegistry.sol";
14
+ import {NftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
15
+ import {ObjectType, INSTANCE, PRODUCT} from "../types/ObjectType.sol";
16
+ import {VersionLib} from "../types/Version.sol";
17
+ import {Registerable} from "../shared/Registerable.sol";
18
+ import {RoleId, RoleIdLib} from "../types/RoleId.sol";
19
+ import {IAccess} from "../instance/module/IAccess.sol";
20
+
21
+ // TODO discuss to inherit from oz accessmanaged
22
+ // TODO make contract upgradeable, then add ComponentUpradeable that also intherits from Versionable
23
+ // same pattern as for Service which is also upgradeable
24
+ abstract contract Component is
25
+ Registerable,
26
+ IComponent,
27
+ AccessManagedUpgradeable
28
+ {
29
+ IInstanceService internal _instanceService;
30
+ IProductService internal _productService;
31
+
32
+ IInstance internal _instance;
33
+ IERC20Metadata internal _token;
34
+ address internal _wallet;
35
+ NftId internal _productNftId;
36
+
37
+ modifier onlyProductService() {
38
+ if(msg.sender != address(_productService)) {
39
+ revert ErrorComponentNotProductService(msg.sender);
40
+ }
41
+ _;
42
+ }
43
+
44
+ // TODO discuss replacement with modifier restricted from accessmanaged
45
+ modifier onlyInstanceRole(uint64 roleIdNum) {
46
+ RoleId roleId = RoleIdLib.toRoleId(roleIdNum);
47
+ InstanceAccessManager accessManager = InstanceAccessManager(_instance.authority());
48
+ if( !accessManager.hasRole(roleId, msg.sender)) {
49
+ revert ErrorComponentUnauthorized(msg.sender, roleIdNum);
50
+ }
51
+ _;
52
+ }
53
+
54
+ // TODO discuss replacement with modifier restricted from accessmanaged
55
+ modifier isNotLocked() {
56
+ InstanceAccessManager accessManager = InstanceAccessManager(_instance.authority());
57
+ if (accessManager.isTargetLocked(address(this))) {
58
+ revert IAccess.ErrorIAccessTargetLocked(address(this));
59
+ }
60
+ _;
61
+ }
62
+
63
+ function __initialize_component (
64
+ address registry,
65
+ NftId instanceNftId,
66
+ address token,
67
+ ObjectType componentType,
68
+ bool isInterceptor,
69
+ address initialOwner
70
+ ) internal
71
+ {
72
+ bytes memory data = "";
73
+ _initializeRegisterable(registry, instanceNftId, componentType, isInterceptor, initialOwner, data);
74
+
75
+ IRegistry.ObjectInfo memory instanceInfo = _registry.getObjectInfo(instanceNftId);
76
+ _instance = IInstance(instanceInfo.objectAddress);
77
+ require(
78
+ _instance.supportsInterface(type(IInstance).interfaceId),
79
+ ""
80
+ );
81
+
82
+ _instanceService = IInstanceService(_registry.getServiceAddress(INSTANCE(), VersionLib.toVersion(3, 0, 0).toMajorPart()));
83
+ _productService = IProductService(_registry.getServiceAddress(PRODUCT(), VersionLib.toVersion(3, 0, 0).toMajorPart()));
84
+ _wallet = address(this);
85
+ _token = IERC20Metadata(token);
86
+
87
+ _registerInterface(type(IComponent).interfaceId);
88
+ }
89
+
90
+ // TODO discuss replacement with modifier restricted from accessmanaged
91
+ function lock() external onlyOwner override {
92
+ _instanceService.setTargetLocked(getName(), true);
93
+ }
94
+
95
+ // TODO discuss replacement with modifier restricted from accessmanaged
96
+ function unlock() external onlyOwner override {
97
+ _instanceService.setTargetLocked(getName(), false);
98
+ }
99
+
100
+ // TODO discuss to split this base contract into a minimal component base (eg oracle)
101
+ // and a component base that is linked to a product component (all others in v3)
102
+ function setProductNftId(NftId productNftId)
103
+ external
104
+ override
105
+ onlyProductService()
106
+ {
107
+ if(_productNftId.gtz()) {
108
+ revert ErrorComponentProductNftAlreadySet();
109
+ }
110
+
111
+ _productNftId = productNftId;
112
+ }
113
+
114
+ /// @dev Sets the wallet address for the component.
115
+ /// if the current wallet has tokens, these will be transferred.
116
+ /// if the new wallet address is externally owned, an approval from the
117
+ /// owner of the external wallet for the component to move all tokens must exist.
118
+ function setWallet(address newWallet) external override onlyOwner {
119
+ address currentWallet = _wallet;
120
+ uint256 currentBalance = _token.balanceOf(currentWallet);
121
+
122
+ // checks
123
+ if (newWallet == currentWallet) {
124
+ revert ErrorComponentWalletAddressIsSameAsCurrent(newWallet);
125
+ }
126
+
127
+ if (currentBalance > 0) {
128
+ if (currentWallet == address(this)) {
129
+ // move tokens from component smart contract to external wallet
130
+ } else {
131
+ // move tokens from external wallet to component smart contract or another external wallet
132
+ uint256 allowance = _token.allowance(currentWallet, address(this));
133
+ if (allowance < currentBalance) {
134
+ revert ErrorComponentWalletAllowanceTooSmall(currentWallet, newWallet, allowance, currentBalance);
135
+ }
136
+ }
137
+ }
138
+
139
+ // effects
140
+ _wallet = newWallet;
141
+ emit LogComponentWalletAddressChanged(newWallet);
142
+
143
+ // interactions
144
+ if (currentBalance > 0) {
145
+ // transfer tokens from current wallet to new wallet
146
+ if (currentWallet == address(this)) {
147
+ // transferFrom requires self allowance too
148
+ _token.approve(address(this), currentBalance);
149
+ }
150
+
151
+ SafeERC20.safeTransferFrom(_token, currentWallet, newWallet, currentBalance);
152
+ emit LogComponentWalletTokensTransferred(currentWallet, newWallet, currentBalance);
153
+ }
154
+ }
155
+
156
+ // TODO set name via constructor or initialization, pure function likely too restrictive
157
+ function getName() public pure virtual returns (string memory name);
158
+
159
+ function getWallet()
160
+ external
161
+ view
162
+ override
163
+ returns (address walletAddress)
164
+ {
165
+ return _wallet;
166
+ }
167
+
168
+ function getToken() public view override returns (IERC20Metadata token) {
169
+ return _token;
170
+ }
171
+
172
+ function getInstance() public view override returns (IInstance instance) {
173
+ return _instance;
174
+ }
175
+
176
+ function getProductNftId() public view override returns (NftId productNftId) {
177
+ return _productNftId;
178
+ }
179
+ }
@@ -7,7 +7,7 @@ import {IProductService} from "../instance/service/IProductService.sol";
7
7
  import {NftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
8
8
  import {ReferralId} from "../types/Referral.sol";
9
9
  import {Fee, FeeLib} from "../types/Fee.sol";
10
- import {BaseComponent} from "./BaseComponent.sol";
10
+ import {Component} from "./Component.sol";
11
11
  import {IDistributionComponent} from "./IDistributionComponent.sol";
12
12
  import {IRegistry} from "../registry/IRegistry.sol";
13
13
  import {IRegisterable} from "../shared/IRegisterable.sol";
@@ -16,8 +16,8 @@ import {Registerable} from "../shared/Registerable.sol";
16
16
  import {TokenHandler} from "../shared/TokenHandler.sol";
17
17
  import {InstanceReader} from "../instance/InstanceReader.sol";
18
18
 
19
- contract Distribution is
20
- BaseComponent,
19
+ abstract contract Distribution is
20
+ Component,
21
21
  IDistributionComponent
22
22
  {
23
23
  using NftIdLib for NftId;
@@ -25,34 +25,26 @@ contract Distribution is
25
25
  Fee internal _initialDistributionFee;
26
26
  bool internal _isVerifying;
27
27
 
28
- IDistributionService private _distributionService;
29
- IProductService private _productService;
28
+ TokenHandler internal _tokenHandler;
30
29
 
31
- modifier onlyProductService() {
32
- require(
33
- msg.sender == address(_productService),
34
- "ERROR:POL-002:NOT_PRODUCT_SERVICE");
35
- _;
36
- }
30
+ IDistributionService private _distributionService;
37
31
 
38
- constructor(
32
+ function __initialize(
39
33
  address registry,
40
34
  NftId instanceNftId,
41
- NftId productNftId,
42
35
  // TODO refactor into tokenNftId
43
36
  address token,
44
37
  bool verifying,
45
38
  Fee memory distributionFee,
46
39
  address initialOwner
47
- )
48
- BaseComponent(registry, instanceNftId, productNftId, token, DISTRIBUTION(), true, initialOwner)
49
- {
40
+ ) internal {
41
+ __initialize_component(registry, instanceNftId, token, DISTRIBUTION(), true, initialOwner);
42
+
50
43
  _isVerifying = verifying;
51
44
  _initialDistributionFee = distributionFee;
52
45
 
53
- // TODO: reactivate when services are available again
54
- // _distributionService = _instance.getDistributionService();
55
- // _productService = _instance.getProductService();
46
+ _tokenHandler = TokenHandler(token);
47
+ _distributionService = _instance.getDistributionService();
56
48
 
57
49
  _registerInterface(type(IDistributionComponent).interfaceId);
58
50
  }
@@ -123,19 +115,10 @@ contract Distribution is
123
115
  }
124
116
 
125
117
  function getSetupInfo() public view returns (ISetup.DistributionSetupInfo memory setupInfo) {
126
- if (getNftId().eq(zeroNftId())) {
127
- return ISetup.DistributionSetupInfo(
128
- _productNftId,
129
- TokenHandler(address(0)),
130
- _initialDistributionFee,
131
- _isVerifying,
132
- address(0)
133
- );
134
- }
135
-
136
118
  InstanceReader reader = _instance.getInstanceReader();
137
119
  return reader.getDistributionSetupInfo(getNftId());
138
120
  }
121
+
139
122
 
140
123
  /// @dev returns true iff the component needs to be called when selling/renewing policis
141
124
  function isVerifying() external view returns (bool verifying) {
@@ -152,14 +135,19 @@ contract Distribution is
152
135
  {
153
136
  (
154
137
  IRegistry.ObjectInfo memory info,
155
- bytes memory data
156
138
  ) = super.getInitialInfo();
157
139
 
158
140
  return (
159
141
  info,
160
142
  abi.encode(
161
- _initialDistributionFee,
162
- _isVerifying
143
+ getName(),
144
+ ISetup.DistributionSetupInfo(
145
+ _productNftId,
146
+ _tokenHandler,
147
+ _initialDistributionFee,
148
+ _isVerifying,
149
+ address(this)
150
+ )
163
151
  )
164
152
  );
165
153
  }
@@ -0,0 +1,37 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
+
6
+ import {IRegisterable} from "../shared/IRegisterable.sol";
7
+ import {IInstance} from "../instance/IInstance.sol";
8
+ import {NftId} from "../types/NftId.sol";
9
+
10
+ interface IComponent is IRegisterable {
11
+
12
+ error ErrorComponentProductNftAlreadySet();
13
+ error ErrorComponentWalletAddressIsSameAsCurrent(address newWallet);
14
+ error ErrorComponentWalletAllowanceTooSmall(address oldWallet, address newWallet, uint256 allowance, uint256 balance);
15
+ error ErrorComponentUnauthorized(address caller, uint64 requiredRoleIdNum);
16
+ error ErrorComponentNotProductService(address caller);
17
+
18
+ event LogComponentWalletAddressChanged(address newWallet);
19
+ event LogComponentWalletTokensTransferred(address from, address to, uint256 amount);
20
+
21
+ function getName() external pure returns (string memory name);
22
+
23
+ // TODO remove and replace with accessmanaged target locking mechanism
24
+ function lock() external;
25
+ function unlock() external;
26
+
27
+ function getToken() external view returns (IERC20Metadata token);
28
+
29
+ function setWallet(address walletAddress) external;
30
+ function getWallet() external view returns (address walletAddress);
31
+
32
+ function getInstance() external view returns (IInstance instance);
33
+
34
+ function setProductNftId(NftId productNftId) external;
35
+ function getProductNftId() external view returns (NftId productNftId);
36
+
37
+ }
@@ -4,6 +4,7 @@ pragma solidity ^0.8.19;
4
4
  import {Fee} from "../types/Fee.sol";
5
5
  import {ReferralId} from "../types/Referral.sol";
6
6
  import {NftId} from "../types/NftId.sol";
7
+ import {ISetup} from "../instance/module/ISetup.sol";
7
8
 
8
9
  interface IDistributionComponent {
9
10
 
@@ -43,6 +43,10 @@ interface IPoolComponent {
43
43
  uint256 collateralizationAmount
44
44
  ) external;
45
45
 
46
+ function lockBundle(NftId bundleNftId) external;
47
+
48
+ function unlockBundle(NftId bundleNftId) external;
49
+
46
50
  /**
47
51
  * @dev returns true iff the policy application data in policyData matches
48
52
  * with the bundle filter criteria encoded in bundleFilter.
@@ -55,7 +59,7 @@ interface IPoolComponent {
55
59
  view
56
60
  returns (bool isMatching);
57
61
 
58
- function isVerifying() external view returns (bool verifying);
62
+ function isConfirmingApplication() external view returns (bool isConfirmingApplication);
59
63
 
60
64
  function getCollateralizationLevel() external view returns (UFixed collateralizationLevel);
61
65
 
@@ -18,8 +18,8 @@ interface IProductComponent {
18
18
  RiskId riskId,
19
19
  uint256 lifetime,
20
20
  bytes memory applicationData,
21
- ReferralId referralId,
22
- NftId bundleNftId
21
+ NftId bundleNftId,
22
+ ReferralId referralId
23
23
  ) external view returns (uint256 premiumAmount);
24
24
 
25
25
  function calculateNetPremium(
@@ -1,42 +1,40 @@
1
1
  // SPDX-License-Identifier: Apache-2.0
2
2
  pragma solidity ^0.8.20;
3
3
 
4
- import {ObjectType, POOL} from "../types/ObjectType.sol";
5
- import {IProductService} from "../instance/service/IProductService.sol";
4
+ import {POOL} from "../types/ObjectType.sol";
6
5
  import {IPoolService} from "../instance/service/IPoolService.sol";
7
- import {NftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
6
+ import {IBundleService} from "../instance/service/IBundleService.sol";
7
+ import {NftId, NftIdLib} from "../types/NftId.sol";
8
8
  import {Fee} from "../types/Fee.sol";
9
9
  import {UFixed} from "../types/UFixed.sol";
10
10
  import {IPoolComponent} from "./IPoolComponent.sol";
11
- import {BaseComponent} from "./BaseComponent.sol";
11
+ import {Component} from "./Component.sol";
12
12
  import {TokenHandler} from "../shared/TokenHandler.sol";
13
13
  import {ISetup} from "../instance/module/ISetup.sol";
14
14
 
15
15
  import {IRegistry} from "../registry/IRegistry.sol";
16
16
 
17
- // import {IPool} from "../instance/module/pool/IPoolModule.sol";
18
- import {ITreasury} from "../instance/module/ITreasury.sol";
19
17
  import {ISetup} from "../instance/module/ISetup.sol";
20
18
  import {InstanceReader} from "../instance/InstanceReader.sol";
21
19
 
22
20
  import {IRegisterable} from "../shared/IRegisterable.sol";
23
21
  import {Registerable} from "../shared/Registerable.sol";
24
22
 
25
- contract Pool is BaseComponent, IPoolComponent {
23
+ abstract contract Pool is Component, IPoolComponent {
26
24
  using NftIdLib for NftId;
27
25
 
28
- bool internal _isVerifying;
26
+ bool internal _isConfirmingApplication;
29
27
  UFixed internal _collateralizationLevel;
30
28
 
31
29
  Fee internal _initialPoolFee;
32
30
  Fee internal _initialStakingFee;
33
31
  Fee internal _initialPerformanceFee;
34
32
 
33
+ TokenHandler internal _tokenHandler;
34
+
35
35
  // may be used to interact with instance by derived contracts
36
36
  IPoolService internal _poolService;
37
-
38
- // only relevant to protect callback functions for "active" pools
39
- IProductService private _productService;
37
+ IBundleService private _bundleService;
40
38
 
41
39
  modifier onlyPoolService() {
42
40
  require(
@@ -45,39 +43,33 @@ contract Pool is BaseComponent, IPoolComponent {
45
43
  _;
46
44
  }
47
45
 
48
- modifier onlyProductService() {
49
- require(
50
- msg.sender == address(_productService),
51
- "ERROR:POL-002:NOT_PRODUCT_SERVICE");
52
- _;
53
- }
54
-
55
- constructor(
46
+ function __initialize(
56
47
  address registry,
57
48
  NftId instanceNftId,
58
- NftId productNftId,
59
49
  // TODO refactor into tokenNftId
60
50
  address token,
61
51
  bool isInterceptor,
62
- bool verifying,
52
+ bool isConfirmingApplication,
63
53
  UFixed collateralizationLevel,
64
54
  Fee memory poolFee,
65
55
  Fee memory stakingFee,
66
56
  Fee memory performanceFee,
67
57
  address initialOwner
68
- )
69
- BaseComponent(registry, instanceNftId, productNftId, token, POOL(), isInterceptor, initialOwner)
70
- {
71
- _isVerifying = verifying;
58
+ ) internal {
59
+ __initialize_component(registry, instanceNftId, token, POOL(), isInterceptor, initialOwner);
60
+
61
+ _isConfirmingApplication = isConfirmingApplication;
72
62
  // TODO add validation
73
63
  _collateralizationLevel = collateralizationLevel;
74
64
  _initialPoolFee = poolFee;
75
65
  _initialStakingFee = stakingFee;
76
66
  _initialPerformanceFee = performanceFee;
77
67
 
78
- // TODO: reactivate when services are available again
79
- // _poolService = _instance.getPoolService();
68
+ _tokenHandler = new TokenHandler(token);
69
+
70
+ _poolService = _instance.getPoolService();
80
71
  // _productService = _instance.getProductService();
72
+ _bundleService = _instance.getBundleService();
81
73
 
82
74
  _registerInterface(type(IPoolComponent).interfaceId);
83
75
  }
@@ -93,7 +85,7 @@ contract Pool is BaseComponent, IPoolComponent {
93
85
  returns(NftId bundleNftId)
94
86
  {
95
87
  address owner = msg.sender;
96
- bundleNftId = _poolService.createBundle(
88
+ bundleNftId = _bundleService.createBundle(
97
89
  owner,
98
90
  fee,
99
91
  initialAmount,
@@ -138,8 +130,8 @@ contract Pool is BaseComponent, IPoolComponent {
138
130
  }
139
131
 
140
132
 
141
- function isVerifying() external view override returns (bool verifying) {
142
- return _isVerifying;
133
+ function isConfirmingApplication() external view override returns (bool isConfirmingApplication) {
134
+ return _isConfirmingApplication;
143
135
  }
144
136
 
145
137
  function getCollateralizationLevel() external view override returns (UFixed collateralizationLevel) {
@@ -166,24 +158,30 @@ contract Pool is BaseComponent, IPoolComponent {
166
158
  override
167
159
  // TODO add onlyBundleOwner
168
160
  {
169
- _poolService.setBundleFee(bundleNftId, fee);
161
+ _bundleService.setBundleFee(bundleNftId, fee);
170
162
  }
171
163
 
172
- function getSetupInfo() public view returns (ISetup.PoolSetupInfo memory setupInfo) {
173
- // TODO fix this
174
- if (getNftId().eq(zeroNftId())) {
175
- return ISetup.PoolSetupInfo(
176
- _productNftId,
177
- TokenHandler(address(0)),
178
- _collateralizationLevel,
179
- _initialPoolFee,
180
- _initialStakingFee,
181
- _initialPerformanceFee,
182
- _isVerifying,
183
- _wallet
184
- );
185
- }
164
+ function lockBundle(
165
+ NftId bundleNftId
166
+ )
167
+ external
168
+ override
169
+ // TODO add onlyBundleOwner
170
+ {
171
+ _bundleService.lockBundle(bundleNftId);
172
+ }
173
+
174
+ function unlockBundle(
175
+ NftId bundleNftId
176
+ )
177
+ external
178
+ override
179
+ // TODO add onlyBundleOwner
180
+ {
181
+ _bundleService.unlockBundle(bundleNftId);
182
+ }
186
183
 
184
+ function getSetupInfo() public view returns (ISetup.PoolSetupInfo memory setupInfo) {
187
185
  InstanceReader reader = _instance.getInstanceReader();
188
186
  return reader.getPoolSetupInfo(getNftId());
189
187
  }
@@ -200,20 +198,21 @@ contract Pool is BaseComponent, IPoolComponent {
200
198
  {
201
199
  (
202
200
  IRegistry.ObjectInfo memory info,
203
- bytes memory data
204
201
  ) = super.getInitialInfo();
205
202
 
206
203
  return (
207
204
  info,
208
205
  abi.encode(
206
+ getName(),
209
207
  ISetup.PoolSetupInfo(
210
- getProductNftId(),
211
- TokenHandler(address(0)),
208
+ _productNftId,
209
+ _tokenHandler,
212
210
  _collateralizationLevel,
213
211
  _initialPoolFee,
214
212
  _initialStakingFee,
215
213
  _initialPerformanceFee,
216
- _isVerifying,
214
+ false,
215
+ _isConfirmingApplication,
217
216
  _wallet
218
217
  )
219
218
  )
@@ -248,7 +247,7 @@ contract Pool is BaseComponent, IPoolComponent {
248
247
  internal
249
248
  returns(NftId bundleNftId)
250
249
  {
251
- bundleNftId = _poolService.createBundle(
250
+ bundleNftId = _bundleService.createBundle(
252
251
  bundleOwner,
253
252
  fee,
254
253
  amount,