@etherisc/gif-next 0.0.2-a4b0112-987 → 0.0.2-a84e908-436

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 (366) hide show
  1. package/README.md +145 -6
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/{Component.sol/Component.json → BaseComponent.sol/BaseComponent.json} +26 -57
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +405 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/{instance/component/IComponent.sol/IComponentContract.json → components/IBaseComponent.sol/IBaseComponent.json} +26 -57
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IDistributionComponent.sol/IDistributionComponent.json} +162 -77
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +487 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +370 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +290 -40
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +167 -69
  18. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
  20. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
  22. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  24. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  26. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  34. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  38. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  40. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  42. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  43. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  44. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  45. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1177 -608
  46. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  47. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  48. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  49. package/artifacts/contracts/instance/Instance.sol/Instance.json +1501 -773
  50. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  51. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +364 -0
  52. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  53. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  54. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +560 -0
  56. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  58. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/IService.sol/IService.json} +167 -125
  60. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +440 -0
  62. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -0
  64. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  66. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  67. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
  68. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  69. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +364 -0
  70. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  72. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  73. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  74. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  76. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  77. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
  78. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  79. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  80. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
  82. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +117 -0
  84. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  85. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  86. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/{product/IProductService.sol/IProductService.json → module/component/IComponent.sol/IComponentModule.json} +51 -61
  88. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
  90. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
  92. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
  94. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  96. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  97. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +147 -117
  98. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +148 -118
  100. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  101. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  102. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +67 -52
  104. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  105. package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +51 -62
  106. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  107. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
  108. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
  110. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
  112. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  113. package/artifacts/contracts/instance/{treasury → module/treasury}/ITreasury.sol/ITreasury.json +1 -1
  114. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  115. package/artifacts/contracts/instance/{treasury → module/treasury}/ITreasury.sol/ITreasuryModule.json +278 -257
  116. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  117. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  118. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  119. package/artifacts/contracts/instance/{treasury → module/treasury}/TreasuryModule.sol/TreasuryModule.json +278 -257
  120. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +595 -0
  122. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +484 -0
  124. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +405 -0
  126. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +366 -0
  128. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +481 -0
  130. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  131. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +671 -0
  132. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  133. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +607 -0
  134. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  135. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +922 -0
  136. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  137. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +65 -2
  138. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  139. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  140. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +134 -30
  141. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  142. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  143. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  144. package/artifacts/contracts/registry/Registry.sol/Registry.json +493 -25
  145. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  146. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  147. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  148. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  149. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  150. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +16 -61
  151. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  153. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +4 -0
  154. package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +248 -0
  155. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +4 -0
  156. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +129 -0
  157. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  158. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +16 -61
  159. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  160. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  161. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
  162. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +405 -0
  163. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  164. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  165. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  166. package/artifacts/contracts/test/TestPool.sol/TestPool.json +578 -0
  167. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  168. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +575 -0
  169. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  170. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
  171. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  172. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  173. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  174. package/artifacts/contracts/test/TestService.sol/TestService.json +443 -0
  175. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  176. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  177. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  178. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  179. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  180. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +270 -0
  181. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  182. package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
  183. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  184. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  185. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  186. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  187. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  188. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  189. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  190. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  191. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  192. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  193. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  194. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  195. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  196. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  197. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  198. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  199. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
  200. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
  201. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  202. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  203. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  204. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  205. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  206. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  207. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  208. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +64 -2
  209. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  210. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +88 -62
  211. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  212. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  213. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  214. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  215. package/contracts/components/BaseComponent.sol +94 -0
  216. package/contracts/components/Distribution.sol +132 -0
  217. package/contracts/components/IBaseComponent.sol +19 -0
  218. package/contracts/components/IDistributionComponent.sol +47 -0
  219. package/contracts/components/IPoolComponent.sol +71 -0
  220. package/contracts/components/IProductComponent.sol +38 -0
  221. package/contracts/components/Pool.sol +199 -16
  222. package/contracts/components/Product.sol +169 -31
  223. package/contracts/instance/IInstance.sol +39 -11
  224. package/contracts/instance/IInstanceLinked.sol +8 -0
  225. package/contracts/instance/Instance.sol +51 -49
  226. package/contracts/instance/base/ComponentServiceBase.sol +42 -0
  227. package/contracts/instance/base/IInstanceBase.sol +22 -0
  228. package/contracts/instance/base/IKeyValueStore.sol +50 -0
  229. package/contracts/instance/{lifecycle → base}/ILifecycle.sol +4 -21
  230. package/contracts/instance/base/IService.sol +15 -0
  231. package/contracts/instance/base/InstanceBase.sol +91 -0
  232. package/contracts/instance/base/KeyValueStore.sol +161 -0
  233. package/contracts/instance/base/Lifecycle.sol +100 -0
  234. package/contracts/instance/base/ModuleBase.sol +57 -0
  235. package/contracts/instance/base/ServiceBase.sol +37 -0
  236. package/contracts/instance/module/access/Access.sol +149 -0
  237. package/contracts/instance/module/access/IAccess.sol +53 -0
  238. package/contracts/instance/module/bundle/BundleModule.sol +134 -0
  239. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  240. package/contracts/instance/module/component/ComponentModule.sol +70 -0
  241. package/contracts/instance/module/component/IComponent.sol +28 -0
  242. package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
  243. package/contracts/instance/module/distribution/IDistribution.sol +10 -0
  244. package/contracts/instance/module/policy/IPolicy.sol +63 -0
  245. package/contracts/instance/module/policy/PolicyModule.sol +91 -0
  246. package/contracts/instance/module/pool/IPoolModule.sol +40 -0
  247. package/contracts/instance/module/pool/PoolModule.sol +90 -0
  248. package/contracts/instance/module/risk/IRisk.sol +26 -0
  249. package/contracts/instance/module/risk/RiskModule.sol +62 -0
  250. package/contracts/instance/module/treasury/ITreasury.sol +82 -0
  251. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  252. package/contracts/instance/module/treasury/TreasuryModule.sol +138 -0
  253. package/contracts/instance/service/ComponentOwnerService.sol +157 -0
  254. package/contracts/instance/service/DistributionService.sol +59 -0
  255. package/contracts/instance/service/IComponentOwnerService.sol +22 -0
  256. package/contracts/instance/service/IDistributionService.sol +12 -0
  257. package/contracts/instance/service/IPoolService.sol +37 -0
  258. package/contracts/instance/service/IProductService.sol +107 -0
  259. package/contracts/instance/service/PoolService.sol +149 -0
  260. package/contracts/instance/service/ProductService.sol +509 -0
  261. package/contracts/registry/ChainNft.sol +61 -37
  262. package/contracts/registry/IRegistry.sol +25 -38
  263. package/contracts/registry/IRegistryLinked.sol +8 -0
  264. package/contracts/registry/Registry.sol +384 -110
  265. package/contracts/shared/ERC165.sol +21 -0
  266. package/contracts/shared/IOwnable.sol +6 -0
  267. package/contracts/shared/IRegisterable.sol +24 -0
  268. package/contracts/shared/IVersionable.sol +94 -0
  269. package/contracts/shared/Proxy.sol +94 -0
  270. package/contracts/shared/Registerable.sol +86 -0
  271. package/contracts/shared/Versionable.sol +145 -0
  272. package/contracts/test/TestDistribution.sol +21 -0
  273. package/contracts/test/TestFee.sol +25 -0
  274. package/contracts/test/TestPool.sol +25 -0
  275. package/contracts/test/TestProduct.sol +72 -0
  276. package/contracts/test/TestRegisterable.sol +19 -0
  277. package/contracts/test/TestRoleId.sol +14 -0
  278. package/contracts/test/TestService.sol +32 -0
  279. package/contracts/test/TestToken.sol +26 -0
  280. package/contracts/test/TestVersion.sol +44 -0
  281. package/contracts/test/TestVersionable.sol +17 -0
  282. package/contracts/test/Usdc.sol +26 -0
  283. package/contracts/types/AddressSet.sol +58 -0
  284. package/contracts/types/Fee.sol +44 -20
  285. package/contracts/types/Key32.sol +45 -0
  286. package/contracts/types/NftId.sol +22 -1
  287. package/contracts/types/NftIdSet.sol +60 -0
  288. package/contracts/types/ObjectType.sol +37 -13
  289. package/contracts/types/ReferralId.sol +48 -0
  290. package/contracts/types/RiskId.sol +43 -0
  291. package/contracts/types/RoleId.sol +38 -0
  292. package/contracts/types/StateId.sol +13 -3
  293. package/contracts/types/Timestamp.sol +22 -1
  294. package/contracts/types/UFixed.sol +26 -23
  295. package/contracts/types/Version.sol +103 -0
  296. package/package.json +12 -4
  297. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  298. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  299. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  300. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  301. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  302. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  303. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  304. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  305. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  306. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  307. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  308. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  309. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  310. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  311. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  312. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  313. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  314. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  315. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  316. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  317. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  318. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  319. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  320. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  321. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  322. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  323. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  324. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  325. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  326. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  327. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  328. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  329. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  330. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  331. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  332. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  333. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  334. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  335. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  336. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  337. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  338. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  339. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  340. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  341. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  342. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  343. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  344. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  345. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  346. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  347. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  348. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  349. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  350. package/contracts/components/Component.sol +0 -77
  351. package/contracts/components/IPool.sol +0 -15
  352. package/contracts/components/IProduct.sol +0 -16
  353. package/contracts/instance/access/Access.sol +0 -165
  354. package/contracts/instance/access/IAccess.sol +0 -63
  355. package/contracts/instance/component/ComponentModule.sol +0 -274
  356. package/contracts/instance/component/IComponent.sol +0 -74
  357. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  358. package/contracts/instance/policy/IPolicy.sol +0 -50
  359. package/contracts/instance/policy/PolicyModule.sol +0 -114
  360. package/contracts/instance/pool/IPoolModule.sol +0 -23
  361. package/contracts/instance/pool/PoolModule.sol +0 -81
  362. package/contracts/instance/product/IProductService.sol +0 -36
  363. package/contracts/instance/product/ProductService.sol +0 -136
  364. package/contracts/instance/treasury/ITreasury.sol +0 -91
  365. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  366. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
@@ -0,0 +1,82 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
+ import {IDistributionComponent} from "../../../components/IDistributionComponent.sol";
6
+ import {IPoolComponent} from "../../../components/IPoolComponent.sol";
7
+ import {IProductComponent} from "../../../components/IProductComponent.sol";
8
+
9
+ import {NftId} from "../../../types/NftId.sol";
10
+ import {UFixed} from "../../../types/UFixed.sol";
11
+ import {Fee} from "../../../types/Fee.sol";
12
+
13
+ import {TokenHandler} from "./TokenHandler.sol";
14
+
15
+ interface ITreasury {
16
+ // TODO add events
17
+ // TODO add errors
18
+
19
+ // treasury info is linked to product nft id
20
+ struct TreasuryInfo {
21
+ NftId poolNftId;
22
+ NftId distributionNftId;
23
+ IERC20Metadata token;
24
+ Fee productFee; // product fee on net premium
25
+ Fee processingFee; // product fee on payout amounts
26
+ Fee poolFee; // pool fee on net premium
27
+ Fee stakingFee; // pool fee on staked capital from investor
28
+ Fee performanceFee; // pool fee on profits from capital investors
29
+ Fee distributionFee; // default distribution fee (no referral id)
30
+ }
31
+ }
32
+
33
+ interface ITreasuryModule is ITreasury {
34
+
35
+ function registerProductSetup(
36
+ IProductComponent product,
37
+ IPoolComponent pool,
38
+ IDistributionComponent distribution
39
+ ) external;
40
+
41
+ function setTreasuryInfo(
42
+ NftId productNftId,
43
+ TreasuryInfo memory info
44
+ ) external;
45
+
46
+ function hasTreasuryInfo(
47
+ NftId productNftId
48
+ ) external view returns (bool hasInfo);
49
+
50
+ function getTreasuryInfo(
51
+ NftId productNftId
52
+ ) external view returns (TreasuryInfo memory info);
53
+
54
+ function getProductNftId(
55
+ NftId componentNftId
56
+ ) external view returns (NftId productNftId);
57
+
58
+ function getTokenHandler(
59
+ NftId componentNftId
60
+ ) external view returns (TokenHandler tokenHandler);
61
+
62
+ function calculateFeeAmount(
63
+ uint256 amount,
64
+ Fee memory fee
65
+ ) external pure returns (uint256 feeAmount, uint256 netAmount);
66
+
67
+ function getFee(
68
+ UFixed fractionalFee,
69
+ uint256 fixedFee
70
+ ) external pure returns (Fee memory fee);
71
+
72
+ function getZeroFee() external view returns (Fee memory fee);
73
+
74
+ function getUFixed(
75
+ uint256 a
76
+ ) external pure returns (UFixed);
77
+
78
+ function getUFixed(
79
+ uint256 a,
80
+ int8 exp
81
+ ) external pure returns (UFixed);
82
+ }
@@ -0,0 +1,48 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
+
6
+ import {NftId} from "../../../types/NftId.sol";
7
+
8
+ contract TokenHandler {
9
+ NftId private _productNftId;
10
+ IERC20Metadata private _token;
11
+
12
+ constructor(
13
+ NftId productNftId,
14
+ address token
15
+ )
16
+ {
17
+ _productNftId = productNftId;
18
+ _token = IERC20Metadata(token);
19
+ }
20
+
21
+ // TODO add logging
22
+ function transfer(
23
+ address from,
24
+ address to,
25
+ uint256 amount
26
+ )
27
+ external // TODO add authz (only treasury/instance/product/pool/ service)
28
+ {
29
+ // TODO switch to oz safeTransferFrom
30
+ _token.transferFrom(from, to, amount);
31
+ }
32
+
33
+ function getProductNftId()
34
+ external
35
+ view
36
+ returns(NftId)
37
+ {
38
+ return _productNftId;
39
+ }
40
+
41
+ function getToken()
42
+ external
43
+ view
44
+ returns(IERC20Metadata)
45
+ {
46
+ return _token;
47
+ }
48
+ }
@@ -0,0 +1,138 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
+ import {IDistributionComponent} from "../../../components/IDistributionComponent.sol";
6
+ import {IPoolComponent} from "../../../components/IPoolComponent.sol";
7
+ import {IProductComponent} from "../../../components/IProductComponent.sol";
8
+
9
+ import {NftId} from "../../../types/NftId.sol";
10
+ import {TREASURY} from "../../../types/ObjectType.sol";
11
+ import {Fee, FeeLib} from "../../../types/Fee.sol";
12
+ import {UFixed, UFixedMathLib} from "../../../types/UFixed.sol";
13
+ import {TokenHandler} from "./TokenHandler.sol";
14
+ import {IKeyValueStore} from "../../base/IKeyValueStore.sol";
15
+ import {ITreasuryModule} from "./ITreasury.sol";
16
+ import {ModuleBase} from "../../base/ModuleBase.sol";
17
+
18
+ abstract contract TreasuryModule is
19
+ ModuleBase,
20
+ ITreasuryModule
21
+ {
22
+ // relation of distributor and pool nft map to product nft
23
+ mapping(NftId componentNftId => NftId productNftId) internal _productNft;
24
+ // relation of component nft to token hanlder
25
+ mapping(NftId componentNftId => TokenHandler tokenHandler) internal _tokenHandler;
26
+ Fee internal _zeroFee;
27
+
28
+
29
+ function initializeTreasuryModule(IKeyValueStore keyValueStore) internal {
30
+ _initialize(keyValueStore);
31
+ _zeroFee = FeeLib.zeroFee();
32
+ }
33
+
34
+ function registerProductSetup(
35
+ IProductComponent product,
36
+ IPoolComponent pool,
37
+ IDistributionComponent distribution
38
+ ) external override // TODO add authz (only component module)
39
+ {
40
+ NftId productNftId = product.getNftId();
41
+ NftId poolNftId = pool.getNftId();
42
+ NftId distributionNftId = distribution.getNftId();
43
+
44
+ require(productNftId.gtz(), "ERROR:TRS-010:PRODUCT_UNDEFINED");
45
+ require(poolNftId.gtz(), "ERROR:TRS-011:POOL_UNDEFINED");
46
+
47
+ require(address(_tokenHandler[productNftId]) == address(0), "ERROR:TRS-012:TOKEN_HANDLER_ALREADY_REGISTERED");
48
+ require(_productNft[poolNftId].eqz(), "ERROR:TRS-013:POOL_ALREADY_LINKED");
49
+ require(_productNft[distributionNftId].eqz(), "ERROR:TRS-014:COMPENSATION_ALREADY_LINKED");
50
+
51
+ // deploy product specific handler contract
52
+ IERC20Metadata token = product.getToken();
53
+ _tokenHandler[productNftId] = new TokenHandler(productNftId, address(token));
54
+ _productNft[distributionNftId] = productNftId;
55
+ _productNft[poolNftId] = productNftId;
56
+
57
+ TreasuryInfo memory info = TreasuryInfo(
58
+ poolNftId,
59
+ distributionNftId,
60
+ token,
61
+ product.getProductFee(),
62
+ product.getProcessingFee(),
63
+ pool.getPoolFee(),
64
+ pool.getStakingFee(),
65
+ pool.getPerformanceFee(),
66
+ distribution.getDistributionFee()
67
+ );
68
+
69
+ _create(TREASURY(), productNftId, abi.encode(info));
70
+ }
71
+
72
+ function setTreasuryInfo(
73
+ NftId productNftId,
74
+ TreasuryInfo memory info
75
+ )
76
+ external
77
+ // TODO add authz (only component module)
78
+ override
79
+ {
80
+ _updateData(TREASURY(), productNftId, abi.encode(info));
81
+ }
82
+
83
+ function getProductNftId(
84
+ NftId componentNftId
85
+ ) external view returns (NftId productNftId) {
86
+ return _productNft[componentNftId];
87
+ }
88
+
89
+ function getTokenHandler(
90
+ NftId componentNftId
91
+ ) external view override returns (TokenHandler tokenHandler) {
92
+ return _tokenHandler[componentNftId];
93
+ }
94
+
95
+ function hasTreasuryInfo(
96
+ NftId productNftId
97
+ ) public view override returns (bool hasInfo) {
98
+ return _exists(TREASURY(), productNftId);
99
+ }
100
+
101
+ function getTreasuryInfo(
102
+ NftId productNftId
103
+ ) public view override returns (TreasuryInfo memory info) {
104
+ return abi.decode(_getData(TREASURY(), productNftId), (TreasuryInfo));
105
+ }
106
+
107
+ function calculateFeeAmount(
108
+ uint256 amount,
109
+ Fee memory fee
110
+ ) public pure override returns (uint256 feeAmount, uint256 netAmount) {
111
+ return FeeLib.calculateFee(fee, amount);
112
+ }
113
+
114
+ function getFee(
115
+ UFixed fractionalFee,
116
+ uint256 fixedFee
117
+ ) external pure override returns (Fee memory fee) {
118
+ return FeeLib.toFee(fractionalFee, fixedFee);
119
+ }
120
+
121
+ function getZeroFee() external view override returns (Fee memory fee) {
122
+ return _zeroFee;
123
+ }
124
+
125
+ function getUFixed(
126
+ uint256 a
127
+ ) external pure override returns (UFixed) {
128
+ return UFixedMathLib.toUFixed(a);
129
+ }
130
+
131
+ function getUFixed(
132
+ uint256 a,
133
+ int8 exp
134
+ ) external pure returns (UFixed)
135
+ {
136
+ return UFixedMathLib.toUFixed(a, exp);
137
+ }
138
+ }
@@ -0,0 +1,157 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
+
6
+ import {IRegistry} from "../../registry/IRegistry.sol";
7
+ import {IInstance} from "../IInstance.sol";
8
+
9
+ import {ITreasuryModule} from "../module/treasury/ITreasury.sol";
10
+ import {TreasuryModule} from "../module/treasury/TreasuryModule.sol";
11
+ import {IComponent, IComponentModule} from "../module/component/IComponent.sol";
12
+ import {IBaseComponent} from "../../components/IBaseComponent.sol";
13
+ import {IPoolComponent} from "../../components/IPoolComponent.sol";
14
+ import {IKeyValueStore} from "../../instance/base/IKeyValueStore.sol";
15
+ import {IVersionable} from "../../shared/IVersionable.sol";
16
+ import {Versionable} from "../../shared/Versionable.sol";
17
+
18
+ import {RoleId, PRODUCT_OWNER_ROLE, POOL_OWNER_ROLE, DISTRIBUTION_OWNER_ROLE, ORACLE_OWNER_ROLE} from "../../types/RoleId.sol";
19
+ import {ObjectType, COMPONENT, PRODUCT, ORACLE, POOL, DISTRIBUTION} from "../../types/ObjectType.sol";
20
+ import {StateId, ACTIVE, PAUSED} from "../../types/StateId.sol";
21
+ import {Key32} from "../../types/Key32.sol";
22
+ import {NftId, NftIdLib, zeroNftId} from "../../types/NftId.sol";
23
+ import {Fee} from "../../types/Fee.sol";
24
+ import {Version, VersionLib} from "../../types/Version.sol";
25
+
26
+ import {IDistributionComponent} from "../../components/IDistributionComponent.sol";
27
+ import {IPoolComponent} from "../../components/IPoolComponent.sol";
28
+ import {IProductComponent} from "../../components/IProductComponent.sol";
29
+ import {ServiceBase} from "../base/ServiceBase.sol";
30
+ import {IComponentOwnerService} from "./IComponentOwnerService.sol";
31
+
32
+ contract ComponentOwnerService is
33
+ ServiceBase,
34
+ IComponentOwnerService
35
+ {
36
+ using NftIdLib for NftId;
37
+
38
+ string public constant NAME = "ComponentOwnerService";
39
+
40
+ modifier onlyRegisteredComponent(IBaseComponent component) {
41
+ NftId nftId = _registry.getNftId(address(component));
42
+ require(nftId.gtz(), "ERROR:COS-001:COMPONENT_UNKNOWN");
43
+ _;
44
+ }
45
+
46
+ constructor(
47
+ address registry,
48
+ NftId registryNftId
49
+ ) ServiceBase(registry, registryNftId) // solhint-disable-next-line no-empty-blocks
50
+ {
51
+
52
+ }
53
+
54
+ function getVersion()
55
+ public
56
+ pure
57
+ virtual override (IVersionable, Versionable)
58
+ returns(Version)
59
+ {
60
+ return VersionLib.toVersion(3,0,0);
61
+ }
62
+
63
+ function getName() external pure override returns(string memory name) {
64
+ return NAME;
65
+ }
66
+
67
+ function getRoleForType(
68
+ ObjectType cType
69
+ ) public pure override returns (RoleId role) {
70
+ if (cType == PRODUCT()) {
71
+ return PRODUCT_OWNER_ROLE();
72
+ }
73
+ if (cType == POOL()) {
74
+ return POOL_OWNER_ROLE();
75
+ }
76
+ if (cType == DISTRIBUTION()) {
77
+ return DISTRIBUTION_OWNER_ROLE();
78
+ }
79
+ if (cType == ORACLE()) {
80
+ return ORACLE_OWNER_ROLE();
81
+ }
82
+ }
83
+
84
+ function register(
85
+ IBaseComponent component
86
+ ) external override returns (NftId nftId) {
87
+ address initialOwner = component.getOwner();
88
+ require(
89
+ msg.sender == address(component),
90
+ "ERROR:COS-003:NOT_COMPONENT"
91
+ );
92
+
93
+ IInstance instance = component.getInstance();
94
+ ObjectType objectType = component.getType();
95
+ RoleId typeRole = getRoleForType(objectType);
96
+ require(
97
+ instance.hasRole(typeRole, initialOwner),
98
+ "ERROR:CMP-004:TYPE_ROLE_MISSING"
99
+ );
100
+
101
+ nftId = _registry.register(address(component));
102
+ IERC20Metadata token = component.getToken();
103
+
104
+ instance.registerComponent(
105
+ nftId,
106
+ token,
107
+ component.getWallet());
108
+
109
+ // component type specific registration actions
110
+ if (component.getType() == PRODUCT()) {
111
+ IProductComponent product = IProductComponent(address(component));
112
+
113
+ NftId poolNftId = product.getPoolNftId();
114
+ require(poolNftId.gtz(), "ERROR:CMP-005:POOL_UNKNOWN");
115
+ IPoolComponent pool = IPoolComponent(_registry.getObjectInfo(poolNftId).objectAddress);
116
+
117
+ NftId distributionNftId = product.getDistributionNftId();
118
+ IDistributionComponent distribution = IDistributionComponent(_registry.getObjectInfo(distributionNftId).objectAddress);
119
+
120
+ // register with tresury
121
+ instance.registerProductSetup(
122
+ product,
123
+ pool,
124
+ distribution
125
+ );
126
+ } else if (component.getType() == POOL()) {
127
+ IPoolComponent pool = IPoolComponent(address(component));
128
+
129
+ // register with pool
130
+ instance.registerPool(
131
+ nftId,
132
+ pool.isVerifying(),
133
+ pool.getCollateralizationLevel());
134
+ }
135
+ // TODO add compensation
136
+ }
137
+
138
+ function lock(
139
+ IBaseComponent component
140
+ ) external override onlyRegisteredComponent(component) {
141
+ // TODO use msg.sender to get component and get instance via registered parent nft id
142
+ IInstance instance = component.getInstance();
143
+ NftId nftId = component.getNftId();
144
+ Key32 key = nftId.toKey32(COMPONENT());
145
+ instance.updateState(key, PAUSED());
146
+ }
147
+
148
+ function unlock(
149
+ IBaseComponent component
150
+ ) external override onlyRegisteredComponent(component) {
151
+ // TODO use msg.sender to get component and get instance via registered parent nft id
152
+ IInstance instance = component.getInstance();
153
+ NftId nftId = component.getNftId();
154
+ Key32 key = nftId.toKey32(COMPONENT());
155
+ instance.updateState(key, ACTIVE());
156
+ }
157
+ }
@@ -0,0 +1,59 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IRegistry} from "../../registry/IRegistry.sol";
5
+ import {IInstance} from "../../instance/IInstance.sol";
6
+ import {ITreasury} from "../../instance/module/treasury/ITreasury.sol";
7
+
8
+ import {NftId} from "../../types/NftId.sol";
9
+ import {Fee} from "../../types/Fee.sol";
10
+ import {DISTRIBUTION} from "../../types/ObjectType.sol";
11
+ import {Version, VersionLib} from "../../types/Version.sol";
12
+
13
+ import {IVersionable} from "../../shared/IVersionable.sol";
14
+ import {Versionable} from "../../shared/Versionable.sol";
15
+
16
+ import {ComponentServiceBase} from "../base/ComponentServiceBase.sol";
17
+ import {IDistributionService} from "./IDistributionService.sol";
18
+
19
+ contract DistributionService is
20
+ ComponentServiceBase,
21
+ IDistributionService
22
+ {
23
+ string public constant NAME = "DistributionService";
24
+
25
+ constructor(
26
+ address registry,
27
+ NftId registryNftId
28
+ ) ComponentServiceBase(registry, registryNftId) // solhint-disable-next-line no-empty-blocks
29
+ {
30
+ _registerInterface(type(IDistributionService).interfaceId);
31
+ }
32
+
33
+ function getVersion()
34
+ public
35
+ pure
36
+ virtual override (IVersionable, Versionable)
37
+ returns(Version)
38
+ {
39
+ return VersionLib.toVersion(3,0,0);
40
+ }
41
+
42
+ function getName() external pure override returns(string memory name) {
43
+ return NAME;
44
+ }
45
+
46
+ function setFees(
47
+ Fee memory distributionFee
48
+ )
49
+ external
50
+ override
51
+ {
52
+ (IRegistry.ObjectInfo memory distributionInfo, IInstance instance) = _getAndVerifyComponentInfoAndInstance(DISTRIBUTION());
53
+
54
+ NftId productNftId = instance.getProductNftId(distributionInfo.nftId);
55
+ ITreasury.TreasuryInfo memory treasuryInfo = instance.getTreasuryInfo(productNftId);
56
+ treasuryInfo.distributionFee = distributionFee;
57
+ instance.setTreasuryInfo(productNftId, treasuryInfo);
58
+ }
59
+ }
@@ -0,0 +1,22 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {NftId} from "../../types/NftId.sol";
5
+ import {ObjectType} from "../../types/ObjectType.sol";
6
+ import {RoleId} from "../../types/RoleId.sol";
7
+ import {IBaseComponent} from "../../components/IBaseComponent.sol";
8
+ import {IService} from "../base/IService.sol";
9
+
10
+ // TODO rename to registry service
11
+ interface IComponentOwnerService is IService {
12
+
13
+ function register(IBaseComponent component) external returns(NftId componentNftId);
14
+
15
+ // TODO move to product/pool services
16
+ function lock(IBaseComponent component) external;
17
+
18
+ // TODO move to product/pool services
19
+ function unlock(IBaseComponent component) external;
20
+
21
+ function getRoleForType(ObjectType cType) external pure returns (RoleId role);
22
+ }
@@ -0,0 +1,12 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {NftId} from "../../types/NftId.sol";
5
+ import {Fee} from "../../types/Fee.sol";
6
+ import {IService} from "../base/IService.sol";
7
+
8
+ interface IDistributionService is IService {
9
+ function setFees(
10
+ Fee memory distributionFee
11
+ ) external;
12
+ }
@@ -0,0 +1,37 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {NftId} from "../../types/NftId.sol";
5
+ import {Fee} from "../../types/Fee.sol";
6
+ import {IService} from "../base/IService.sol";
7
+
8
+ interface IPoolService is IService {
9
+ function setFees(
10
+ Fee memory poolFee,
11
+ Fee memory stakingFee,
12
+ Fee memory performanceFee
13
+ ) external;
14
+
15
+ function createBundle(
16
+ address owner,
17
+ Fee memory fee,
18
+ uint256 amount,
19
+ uint256 lifetime,
20
+ bytes calldata filter
21
+ ) external returns(NftId bundleNftId);
22
+
23
+ function setBundleFee(
24
+ NftId bundleNftId,
25
+ Fee memory fee
26
+ ) external;
27
+
28
+ // function fundBundle(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
29
+
30
+ // function defundBundle(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
31
+
32
+ // function lockBundle(NftId bundleNftId) external;
33
+
34
+ // function unlockBundle(NftId bundleNftId) external;
35
+
36
+ // function closeBundle(NftId bundleNftId) external;
37
+ }
@@ -0,0 +1,107 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {IRisk} from "../module/risk/IRisk.sol";
5
+ import {IService} from "../base/IService.sol";
6
+
7
+ import {NftId} from "../../types/NftId.sol";
8
+ import {ReferralId} from "../../types/ReferralId.sol";
9
+ import {RiskId} from "../../types/RiskId.sol";
10
+ import {StateId} from "../../types/StateId.sol";
11
+ import {Timestamp} from "../../types/Timestamp.sol";
12
+ import {UFixed} from "../../types/UFixed.sol";
13
+ import {Fee} from "../../types/Fee.sol";
14
+
15
+ interface IProductService is IService {
16
+ function setFees(
17
+ Fee memory productFee,
18
+ Fee memory processingFee
19
+ ) external;
20
+
21
+ function createRisk(
22
+ RiskId riskId,
23
+ bytes memory data
24
+ ) external;
25
+
26
+
27
+ function setRiskInfo(
28
+ RiskId riskId,
29
+ IRisk.RiskInfo memory data
30
+ ) external;
31
+
32
+
33
+ function updateRiskState(
34
+ RiskId riskId,
35
+ StateId state
36
+ ) external;
37
+
38
+
39
+ function calculatePremium(
40
+ RiskId riskId,
41
+ uint256 sumInsuredAmount,
42
+ uint256 lifetime,
43
+ bytes memory applicationData,
44
+ NftId bundleNftId,
45
+ ReferralId referralId
46
+ )
47
+ external
48
+ view
49
+ returns (
50
+ uint256 premiumAmount,
51
+ uint256 productFeeAmount,
52
+ uint256 poolFeeAmount,
53
+ uint256 bundleFeeAmount,
54
+ uint256 distributionFeeAmount
55
+ );
56
+
57
+
58
+ function createApplication(
59
+ address applicationOwner,
60
+ RiskId riskId,
61
+ uint256 sumInsuredAmount,
62
+ uint256 lifetime,
63
+ bytes memory applicationData,
64
+ NftId bundleNftId,
65
+ ReferralId referralId
66
+ ) external returns (NftId nftId);
67
+
68
+ /**
69
+ * @dev revokes the application represented by {policyNftId}.
70
+ * an application can only be revoked in applied state.
71
+ * only the application holder may revoke an application.
72
+ */
73
+ function revoke(NftId policyNftId) external;
74
+
75
+ /**
76
+ * @dev underwrites the policy represented by {policyNftId}.
77
+ * optionally collects premiums and activates the policy.
78
+ * - premium payment is only attempted if requirePremiumPayment is set to true
79
+ * - activation is only done if activateAt is a non-zero timestamp
80
+ */
81
+ function underwrite(
82
+ NftId policyNftId,
83
+ bool requirePremiumPayment,
84
+ Timestamp activateAt
85
+ ) external;
86
+
87
+ // function decline(uint256 nftId) external;
88
+ // function expire(uint256 nftId) external;
89
+
90
+ function collectPremium(NftId policyNftId, Timestamp activateAt) external;
91
+
92
+ function activate(NftId policyNftId, Timestamp activateAt) external;
93
+
94
+
95
+ function close(NftId nftId) external;
96
+
97
+ // function createClaim(uint256 nftId, uint256 claimAmount) external;
98
+ // function confirmClaim(uint256 nftId, uint256 claimId, uint256 claimAmount) external;
99
+ // function declineClaim(uint256 nftId, uint256 claimId) external;
100
+ // function closeClaim(uint256 nftId, uint256 claimId) external;
101
+
102
+ function calculateRequiredCollateral(
103
+ UFixed collateralizationLevel,
104
+ uint256 sumInsuredAmount
105
+ ) external pure returns(uint256 collateralAmount);
106
+
107
+ }