@etherisc/gif-next 0.0.2-70d92f6-918 → 0.0.2-743affe-003

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 (385) hide show
  1. package/README.md +160 -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} +80 -72
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +445 -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} +58 -86
  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} +186 -98
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/{instance/treasury/ITreasury.sol/ITreasuryModule.json → components/IPoolComponent.sol/IPoolComponent.json} +230 -246
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +373 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +385 -111
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +236 -80
  18. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  34. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  36. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1395 -702
  40. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  41. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +1678 -824
  44. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  45. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +393 -0
  46. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  47. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  48. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +560 -0
  50. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  52. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  53. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/IService.sol/IService.json} +180 -135
  54. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  55. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +456 -0
  56. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -0
  58. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  59. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  60. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
  62. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +380 -0
  64. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  65. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  66. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  67. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  68. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  70. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
  72. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  73. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  74. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
  76. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPoolModule.json → module/component/ComponentModule.sol/ComponentModule.json} +49 -61
  78. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  79. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  80. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/{product/IProductService.sol/IProductService.json → module/component/IComponent.sol/IComponentModule.json} +51 -61
  82. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
  84. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
  86. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
  88. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  89. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  90. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +147 -117
  92. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +148 -118
  94. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  96. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +164 -0
  98. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +66 -57
  100. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  101. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
  102. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  103. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
  104. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  105. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
  106. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  107. package/artifacts/contracts/instance/{treasury → module/treasury}/ITreasury.sol/ITreasury.json +1 -1
  108. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +638 -0
  110. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  112. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  113. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +638 -0
  114. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +690 -0
  116. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +526 -0
  118. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +389 -0
  120. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +369 -0
  122. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +484 -0
  124. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +674 -0
  126. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +649 -0
  128. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +964 -0
  130. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  131. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +194 -2
  132. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  133. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
  134. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  135. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +415 -32
  136. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  137. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  138. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  139. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +668 -0
  140. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  141. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  142. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  143. package/artifacts/contracts/registry/Registry.sol/Registry.json +631 -52
  144. package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.dbg.json +4 -0
  145. package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.json +344 -0
  146. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  147. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +861 -0
  148. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  149. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  150. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  151. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  152. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  153. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +124 -0
  154. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  156. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  157. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +310 -0
  158. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  159. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +71 -77
  160. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  162. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  163. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  164. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
  165. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +445 -0
  166. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  168. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestPool.sol/TestPool.json +602 -0
  170. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +632 -0
  172. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +191 -0
  174. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  176. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  177. package/artifacts/contracts/test/TestService.sol/TestService.json +472 -0
  178. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  179. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  180. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  181. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  182. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  183. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +270 -0
  184. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  185. package/artifacts/contracts/{mock → test}/Usdc.sol/USDC.json +3 -3
  186. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  187. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  188. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  189. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  190. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  191. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  192. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  193. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  194. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  195. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  196. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  197. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  198. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  199. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  200. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
  202. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  204. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  206. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  207. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  208. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  209. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +64 -2
  210. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  211. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +58 -58
  212. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  214. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  216. package/contracts/components/BaseComponent.sol +79 -0
  217. package/contracts/components/Distribution.sol +155 -0
  218. package/contracts/components/IBaseComponent.sol +19 -0
  219. package/contracts/components/IDistributionComponent.sol +47 -0
  220. package/contracts/components/IPoolComponent.sol +65 -0
  221. package/contracts/components/IProductComponent.sol +39 -0
  222. package/contracts/components/Pool.sol +218 -24
  223. package/contracts/components/Product.sol +248 -38
  224. package/contracts/instance/IInstance.sol +40 -11
  225. package/contracts/instance/IInstanceLinked.sol +8 -0
  226. package/contracts/instance/Instance.sol +58 -45
  227. package/contracts/instance/base/ComponentServiceBase.sol +49 -0
  228. package/contracts/instance/base/IInstanceBase.sol +23 -0
  229. package/contracts/instance/base/IKeyValueStore.sol +50 -0
  230. package/contracts/instance/{lifecycle → base}/ILifecycle.sol +4 -21
  231. package/contracts/instance/base/IService.sol +15 -0
  232. package/contracts/instance/base/InstanceBase.sol +89 -0
  233. package/contracts/instance/base/KeyValueStore.sol +161 -0
  234. package/contracts/instance/base/Lifecycle.sol +100 -0
  235. package/contracts/instance/base/ModuleBase.sol +57 -0
  236. package/contracts/instance/base/ServiceBase.sol +43 -0
  237. package/contracts/instance/module/access/Access.sol +149 -0
  238. package/contracts/instance/module/access/IAccess.sol +53 -0
  239. package/contracts/instance/module/bundle/BundleModule.sol +134 -0
  240. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  241. package/contracts/instance/module/component/ComponentModule.sol +71 -0
  242. package/contracts/instance/module/component/IComponent.sol +28 -0
  243. package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
  244. package/contracts/instance/module/distribution/IDistribution.sol +10 -0
  245. package/contracts/instance/module/policy/IPolicy.sol +63 -0
  246. package/contracts/instance/module/policy/PolicyModule.sol +91 -0
  247. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  248. package/contracts/instance/module/pool/PoolModule.sol +95 -0
  249. package/contracts/instance/module/risk/IRisk.sol +26 -0
  250. package/contracts/instance/module/risk/RiskModule.sol +62 -0
  251. package/contracts/instance/module/treasury/ITreasury.sol +84 -0
  252. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  253. package/contracts/instance/module/treasury/TreasuryModule.sol +131 -0
  254. package/contracts/instance/service/ComponentOwnerService.sol +272 -0
  255. package/contracts/instance/service/DistributionService.sol +54 -0
  256. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  257. package/contracts/instance/service/IDistributionService.sol +12 -0
  258. package/contracts/instance/service/IPoolService.sol +37 -0
  259. package/contracts/instance/service/IProductService.sol +107 -0
  260. package/contracts/instance/service/PoolService.sol +149 -0
  261. package/contracts/instance/service/ProductService.sol +509 -0
  262. package/contracts/registry/ChainNft.sol +94 -42
  263. package/contracts/registry/IChainNft.sol +3 -2
  264. package/contracts/registry/IRegistry.sol +52 -44
  265. package/contracts/registry/IRegistryLinked.sol +8 -0
  266. package/contracts/registry/IRegistryService.sol +29 -0
  267. package/contracts/registry/ITransferInterceptor.sol +6 -0
  268. package/contracts/registry/Registry.sol +447 -124
  269. package/contracts/registry/RegistryInstaller.sol +100 -0
  270. package/contracts/registry/RegistryService.sol +383 -0
  271. package/contracts/shared/ERC165.sol +21 -0
  272. package/contracts/shared/IOwnable.sol +6 -0
  273. package/contracts/shared/IRegisterable.sol +22 -0
  274. package/contracts/shared/IVersionable.sol +96 -0
  275. package/contracts/shared/ProxyManager.sol +115 -0
  276. package/contracts/shared/Registerable.sol +117 -0
  277. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  278. package/contracts/shared/Versionable.sol +147 -0
  279. package/contracts/test/TestDistribution.sol +22 -0
  280. package/contracts/test/TestFee.sol +25 -0
  281. package/contracts/test/TestPool.sol +27 -0
  282. package/contracts/test/TestProduct.sol +74 -0
  283. package/contracts/test/TestRegisterable.sol +18 -0
  284. package/contracts/test/TestRoleId.sol +14 -0
  285. package/contracts/test/TestService.sol +26 -0
  286. package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
  287. package/contracts/test/TestVersion.sol +44 -0
  288. package/contracts/test/TestVersionable.sol +17 -0
  289. package/contracts/{mock → test}/Usdc.sol +1 -1
  290. package/contracts/types/AddressSet.sol +58 -0
  291. package/contracts/types/Fee.sol +44 -20
  292. package/contracts/types/Key32.sol +45 -0
  293. package/contracts/types/NftId.sol +22 -1
  294. package/contracts/types/NftIdSet.sol +60 -0
  295. package/contracts/types/ObjectType.sol +37 -13
  296. package/contracts/types/ReferralId.sol +48 -0
  297. package/contracts/types/RiskId.sol +43 -0
  298. package/contracts/types/RoleId.sol +38 -0
  299. package/contracts/types/StateId.sol +13 -3
  300. package/contracts/types/Timestamp.sol +22 -1
  301. package/contracts/types/UFixed.sol +12 -13
  302. package/contracts/types/Version.sol +104 -0
  303. package/package.json +8 -3
  304. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  305. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  306. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  307. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  308. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  309. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  310. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  311. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  312. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  313. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  314. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  315. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  316. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  317. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  318. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  319. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  320. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  321. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  322. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  323. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  324. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  325. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  326. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  327. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  328. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  329. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  330. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  331. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  332. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  333. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  334. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  335. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  336. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  337. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  338. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  339. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  340. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  341. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  342. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  343. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  344. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  345. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  346. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  347. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  348. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  349. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  350. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  351. package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
  352. package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
  353. package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
  354. package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
  355. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
  356. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
  357. package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
  358. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  359. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  360. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  361. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  362. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  363. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  364. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  365. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  366. package/contracts/components/Component.sol +0 -77
  367. package/contracts/components/IPool.sol +0 -15
  368. package/contracts/components/IProduct.sol +0 -16
  369. package/contracts/experiment/statemachine/README.md +0 -112
  370. package/contracts/instance/access/Access.sol +0 -165
  371. package/contracts/instance/access/IAccess.sol +0 -63
  372. package/contracts/instance/component/ComponentModule.sol +0 -274
  373. package/contracts/instance/component/IComponent.sol +0 -74
  374. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  375. package/contracts/instance/policy/IPolicy.sol +0 -50
  376. package/contracts/instance/policy/PolicyModule.sol +0 -114
  377. package/contracts/instance/pool/IPoolModule.sol +0 -23
  378. package/contracts/instance/pool/PoolModule.sol +0 -81
  379. package/contracts/instance/product/IProductService.sol +0 -36
  380. package/contracts/instance/product/ProductService.sol +0 -136
  381. package/contracts/instance/treasury/ITreasury.sol +0 -91
  382. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  383. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  384. package/contracts/mock/TestPool.sol +0 -16
  385. package/contracts/mock/TestProduct.sol +0 -39
@@ -0,0 +1,177 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "VersionLib",
4
+ "sourceName": "contracts/types/Version.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "Version",
10
+ "name": "version",
11
+ "type": "uint24"
12
+ }
13
+ ],
14
+ "name": "toInt",
15
+ "outputs": [
16
+ {
17
+ "internalType": "uint256",
18
+ "name": "",
19
+ "type": "uint256"
20
+ }
21
+ ],
22
+ "stateMutability": "pure",
23
+ "type": "function"
24
+ },
25
+ {
26
+ "inputs": [
27
+ {
28
+ "internalType": "Version",
29
+ "name": "version",
30
+ "type": "uint24"
31
+ }
32
+ ],
33
+ "name": "toMajorPart",
34
+ "outputs": [
35
+ {
36
+ "internalType": "VersionPart",
37
+ "name": "major",
38
+ "type": "uint8"
39
+ }
40
+ ],
41
+ "stateMutability": "pure",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "Version",
48
+ "name": "version",
49
+ "type": "uint24"
50
+ }
51
+ ],
52
+ "name": "toUint64",
53
+ "outputs": [
54
+ {
55
+ "internalType": "uint64",
56
+ "name": "",
57
+ "type": "uint64"
58
+ }
59
+ ],
60
+ "stateMutability": "pure",
61
+ "type": "function"
62
+ },
63
+ {
64
+ "inputs": [
65
+ {
66
+ "internalType": "uint256",
67
+ "name": "major",
68
+ "type": "uint256"
69
+ },
70
+ {
71
+ "internalType": "uint256",
72
+ "name": "minor",
73
+ "type": "uint256"
74
+ },
75
+ {
76
+ "internalType": "uint256",
77
+ "name": "patch",
78
+ "type": "uint256"
79
+ }
80
+ ],
81
+ "name": "toVersion",
82
+ "outputs": [
83
+ {
84
+ "internalType": "Version",
85
+ "name": "",
86
+ "type": "uint24"
87
+ }
88
+ ],
89
+ "stateMutability": "pure",
90
+ "type": "function"
91
+ },
92
+ {
93
+ "inputs": [
94
+ {
95
+ "internalType": "uint64",
96
+ "name": "versionNumber",
97
+ "type": "uint64"
98
+ }
99
+ ],
100
+ "name": "toVersion",
101
+ "outputs": [
102
+ {
103
+ "internalType": "Version",
104
+ "name": "",
105
+ "type": "uint24"
106
+ }
107
+ ],
108
+ "stateMutability": "pure",
109
+ "type": "function"
110
+ },
111
+ {
112
+ "inputs": [
113
+ {
114
+ "internalType": "uint256",
115
+ "name": "versionPart",
116
+ "type": "uint256"
117
+ }
118
+ ],
119
+ "name": "toVersionPart",
120
+ "outputs": [
121
+ {
122
+ "internalType": "VersionPart",
123
+ "name": "",
124
+ "type": "uint8"
125
+ }
126
+ ],
127
+ "stateMutability": "pure",
128
+ "type": "function"
129
+ },
130
+ {
131
+ "inputs": [
132
+ {
133
+ "internalType": "Version",
134
+ "name": "version",
135
+ "type": "uint24"
136
+ }
137
+ ],
138
+ "name": "toVersionParts",
139
+ "outputs": [
140
+ {
141
+ "internalType": "VersionPart",
142
+ "name": "major",
143
+ "type": "uint8"
144
+ },
145
+ {
146
+ "internalType": "VersionPart",
147
+ "name": "minor",
148
+ "type": "uint8"
149
+ },
150
+ {
151
+ "internalType": "VersionPart",
152
+ "name": "patch",
153
+ "type": "uint8"
154
+ }
155
+ ],
156
+ "stateMutability": "pure",
157
+ "type": "function"
158
+ },
159
+ {
160
+ "inputs": [],
161
+ "name": "zeroVersion",
162
+ "outputs": [
163
+ {
164
+ "internalType": "Version",
165
+ "name": "",
166
+ "type": "uint24"
167
+ }
168
+ ],
169
+ "stateMutability": "pure",
170
+ "type": "function"
171
+ }
172
+ ],
173
+ "bytecode": "0x61039161003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea2646970667358221220e42f77cfda39708b26a423d08fb99d9e3d65c337357ab7291eb4fdfec94256eb64736f6c63430008140033",
174
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600436106100925760003560e01c80638e4ad86c116100655780638e4ad86c1461012157806394aa449c14610144578063a123b37c14610152578063c9e66e291461017957600080fd5b806304b8f6c5146100975780632efe0113146100b357806349a7111a146100c657806355601007146100fd575b600080fd5b60005b60405162ffffff90911681526020015b60405180910390f35b61009a6100c136600461026e565b610190565b6100d96100d436600461029a565b610231565b6040805160ff948516815292841660208401529216918101919091526060016100aa565b61011361010b36600461029a565b62ffffff1690565b6040519081526020016100aa565b61013261012f3660046102c6565b90565b60405160ff90911681526020016100aa565b61009a61012f3660046102df565b61016061010b36600461029a565b60405167ffffffffffffffff90911681526020016100aa565b61013261018736600461029a565b60101c60ff1690565b6000610100841080156101a4575061010083105b80156101b1575061010082105b61020c5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a5652532d3031303a56455253494f4e5f504152545f544f4f5f42604482015261494760f01b606482015260840160405180910390fd5b8161021f600885901b601087901b61031f565b610229919061031f565b949350505050565b600080808360ff601082901c166102488383610338565b915061ffff600883901c16600061025f8185610338565b92989197509195509350505050565b60008060006060848603121561028357600080fd5b505081359360208301359350604090920135919050565b6000602082840312156102ac57600080fd5b813562ffffff811681146102bf57600080fd5b9392505050565b6000602082840312156102d857600080fd5b5035919050565b6000602082840312156102f157600080fd5b813567ffffffffffffffff811681146102bf57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561033257610332610309565b92915050565b62ffffff82811682821603908082111561035457610354610309565b509291505056fea2646970667358221220e42f77cfda39708b26a423d08fb99d9e3d65c337357ab7291eb4fdfec94256eb64736f6c63430008140033",
175
+ "linkReferences": {},
176
+ "deployedLinkReferences": {}
177
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/2c78228c851a60b159426de30077d024.json"
4
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "VersionPartLib",
4
+ "sourceName": "contracts/types/Version.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "VersionPart",
10
+ "name": "x",
11
+ "type": "uint8"
12
+ }
13
+ ],
14
+ "name": "toInt",
15
+ "outputs": [
16
+ {
17
+ "internalType": "uint256",
18
+ "name": "",
19
+ "type": "uint256"
20
+ }
21
+ ],
22
+ "stateMutability": "pure",
23
+ "type": "function"
24
+ }
25
+ ],
26
+ "bytecode": "0x60b9610039600b82828239805160001a60731461002c57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c8063ac43d834146038575b600080fd5b60496043366004605b565b60ff1690565b60405190815260200160405180910390f35b600060208284031215606c57600080fd5b813560ff81168114607c57600080fd5b939250505056fea264697066735822122028c6578af7cf354c26921be53c7bafd817914c3fa380a53d5f0e3935a1b47c8b64736f6c63430008140033",
27
+ "deployedBytecode": "0x730000000000000000000000000000000000000000301460806040526004361060335760003560e01c8063ac43d834146038575b600080fd5b60496043366004605b565b60ff1690565b60405190815260200160405180910390f35b600060208284031215606c57600080fd5b813560ff81168114607c57600080fd5b939250505056fea264697066735822122028c6578af7cf354c26921be53c7bafd817914c3fa380a53d5f0e3935a1b47c8b64736f6c63430008140033",
28
+ "linkReferences": {},
29
+ "deployedLinkReferences": {}
30
+ }
@@ -0,0 +1,79 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {IERC20Metadata} from "@openzeppelin5/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
+
6
+ import {Registerable} from "../shared/Registerable.sol";
7
+
8
+ import {IRegistry} from "../registry/IRegistry.sol";
9
+ import {IInstance} from "../instance/IInstance.sol";
10
+
11
+ import {IInstance} from "../instance/IInstance.sol";
12
+ import {IComponentOwnerService} from "../instance/service/IComponentOwnerService.sol";
13
+ import {IBaseComponent} from "./IBaseComponent.sol";
14
+ import {NftId} from "../types/NftId.sol";
15
+ import {ObjectType} from "../types/ObjectType.sol";
16
+
17
+ abstract contract BaseComponent is
18
+ Registerable,
19
+ IBaseComponent
20
+ {
21
+ IComponentOwnerService internal _componentOwnerService;
22
+
23
+ address internal _deployer;
24
+ address internal _wallet;
25
+ IERC20Metadata internal _token;
26
+ IInstance internal _instance;
27
+
28
+ constructor(
29
+ address registry,
30
+ NftId instanceNftId,
31
+ address token,
32
+ ObjectType componentType,
33
+ bool isInterceptor,
34
+ address initialOwner
35
+ )
36
+ {
37
+ bytes memory data = "";
38
+ _initializeRegisterable(registry, instanceNftId, componentType, isInterceptor, initialOwner, data);
39
+
40
+ IRegistry.ObjectInfo memory instanceInfo = getRegistry().getObjectInfo(instanceNftId);
41
+ _instance = IInstance(instanceInfo.objectAddress);
42
+ require(
43
+ _instance.supportsInterface(type(IInstance).interfaceId),
44
+ ""
45
+ );
46
+
47
+ _componentOwnerService = _instance.getComponentOwnerService();
48
+ _wallet = address(this);
49
+ _token = IERC20Metadata(token);
50
+
51
+ _registerInterface(type(IBaseComponent).interfaceId);
52
+ }
53
+
54
+ // from component contract
55
+ function lock() external onlyOwner override {
56
+ _componentOwnerService.lock(this);
57
+ }
58
+
59
+ function unlock() external onlyOwner override {
60
+ _componentOwnerService.unlock(this);
61
+ }
62
+
63
+ function getWallet()
64
+ external
65
+ view
66
+ override
67
+ returns (address walletAddress)
68
+ {
69
+ return _wallet;
70
+ }
71
+
72
+ function getToken() external view override returns (IERC20Metadata token) {
73
+ return _token;
74
+ }
75
+
76
+ function getInstance() external view override returns (IInstance instance) {
77
+ return _instance;
78
+ }
79
+ }
@@ -0,0 +1,155 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {DISTRIBUTION} from "../types/ObjectType.sol";
5
+ import {IDistributionService} from "../instance/service/IDistributionService.sol";
6
+ import {IProductService} from "../instance/service/IProductService.sol";
7
+ import {NftId} from "../types/NftId.sol";
8
+ import {ReferralId} from "../types/ReferralId.sol";
9
+ import {Fee, FeeLib} from "../types/Fee.sol";
10
+ import {BaseComponent} from "./BaseComponent.sol";
11
+ import {IDistributionComponent} from "./IDistributionComponent.sol";
12
+ import {IRegistry} from "../registry/IRegistry.sol";
13
+ import {IRegisterable} from "../shared/IRegisterable.sol";
14
+ import {Registerable} from "../shared/Registerable.sol";
15
+
16
+ contract Distribution is
17
+ BaseComponent,
18
+ IDistributionComponent
19
+ {
20
+
21
+ Fee internal _initialDistributionFee;
22
+ bool internal _isVerifying;
23
+
24
+ IDistributionService private _distributionService;
25
+ IProductService private _productService;
26
+
27
+ modifier onlyProductService() {
28
+ require(
29
+ msg.sender == address(_productService),
30
+ "ERROR:POL-002:NOT_PRODUCT_SERVICE");
31
+ _;
32
+ }
33
+
34
+ constructor(
35
+ address registry,
36
+ NftId instanceNftId,
37
+ // TODO refactor into tokenNftId
38
+ address token,
39
+ bool verifying,
40
+ Fee memory distributionFee,
41
+ address initialOwner
42
+ )
43
+ BaseComponent(registry, instanceNftId, token, DISTRIBUTION(), true, initialOwner)
44
+ {
45
+ _isVerifying = verifying;
46
+ _initialDistributionFee = distributionFee;
47
+
48
+ _distributionService = _instance.getDistributionService();
49
+ _productService = _instance.getProductService();
50
+
51
+ _registerInterface(type(IDistributionComponent).interfaceId);
52
+ }
53
+
54
+
55
+ function setFees(
56
+ Fee memory distributionFee
57
+ )
58
+ external
59
+ override
60
+ {
61
+ _distributionService.setFees(distributionFee);
62
+ }
63
+
64
+ function calculateFeeAmount(
65
+ ReferralId referralId,
66
+ uint256 netPremiumAmount
67
+ )
68
+ external
69
+ view
70
+ virtual override
71
+ returns (uint256 feeAmount)
72
+ {
73
+ Fee memory fee = getDistributionFee();
74
+ (feeAmount,) = FeeLib.calculateFee(fee, netPremiumAmount);
75
+ }
76
+
77
+
78
+ function calculateRenewalFeeAmount(
79
+ ReferralId referralId,
80
+ uint256 netPremiumAmount
81
+ )
82
+ external
83
+ view
84
+ virtual override
85
+ returns (uint256 feeAmount)
86
+ {
87
+ // default is no fees
88
+ return 0 * netPremiumAmount;
89
+ }
90
+
91
+ function processSale(
92
+ ReferralId referralId,
93
+ uint256 feeAmount
94
+ )
95
+ external
96
+ onlyProductService
97
+ virtual override
98
+ {
99
+ // default is no action
100
+ }
101
+
102
+ function processRenewal(
103
+ ReferralId referralId,
104
+ uint256 feeAmount
105
+ )
106
+ external
107
+ onlyProductService
108
+ virtual override
109
+ {
110
+ // default is no action
111
+ }
112
+
113
+ function referralIsValid(ReferralId referralId) external view returns (bool isValid) {
114
+ // default is invalid
115
+ return false;
116
+ }
117
+
118
+ /// @dev default distribution fee, ie when not using any valid referralId
119
+ function getDistributionFee() public view returns (Fee memory distributionFee) {
120
+ NftId productNftId = _instance.getProductNftId(getNftId());
121
+ if (_instance.hasTreasuryInfo(productNftId)) {
122
+ return _instance.getTreasuryInfo(productNftId).distributionFee;
123
+ } else {
124
+ return _initialDistributionFee;
125
+ }
126
+ }
127
+
128
+
129
+ /// @dev returns true iff the component needs to be called when selling/renewing policis
130
+ function isVerifying() external view returns (bool verifying) {
131
+ return _isVerifying;
132
+ }
133
+
134
+ // from IRegisterable
135
+
136
+ function getInitialInfo()
137
+ public
138
+ view
139
+ override (IRegisterable, Registerable)
140
+ returns(IRegistry.ObjectInfo memory, bytes memory)
141
+ {
142
+ (
143
+ IRegistry.ObjectInfo memory info,
144
+ bytes memory data
145
+ ) = super.getInitialInfo();
146
+
147
+ return (
148
+ info,
149
+ abi.encode(
150
+ _initialDistributionFee,
151
+ _isVerifying
152
+ )
153
+ );
154
+ }
155
+ }
@@ -0,0 +1,19 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {IERC20Metadata} from "@openzeppelin5/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
+
6
+ import {IRegisterable} from "../shared/IRegisterable.sol";
7
+ import {IInstanceLinked} from "../instance/IInstanceLinked.sol";
8
+
9
+ interface IBaseComponent is IRegisterable, IInstanceLinked {
10
+
11
+ function lock() external;
12
+
13
+ function unlock() external;
14
+
15
+ function getToken() external view returns (IERC20Metadata token);
16
+
17
+ function getWallet() external view returns (address walletAddress);
18
+
19
+ }
@@ -0,0 +1,47 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.19;
3
+
4
+ import {Fee} from "../types/Fee.sol";
5
+ import {ReferralId} from "../types/ReferralId.sol";
6
+ import {NftId} from "../types/NftId.sol";
7
+ import {IBaseComponent} from "./IBaseComponent.sol";
8
+
9
+ interface IDistributionComponent is IBaseComponent {
10
+
11
+ function setFees(
12
+ Fee memory distributionFee
13
+ ) external;
14
+
15
+ function calculateFeeAmount(
16
+ ReferralId referralId,
17
+ uint256 netPremiumAmount
18
+ ) external view returns (uint256 feeAmount);
19
+
20
+ function calculateRenewalFeeAmount(
21
+ ReferralId referralId,
22
+ uint256 netPremiumAmount
23
+ ) external view returns (uint256 feeAmount);
24
+
25
+ /// @dev callback from product service when selling a policy for a specific referralId
26
+ /// the used referral id and the collected fee are provided as parameters
27
+ /// the component implementation can then process this information accordingly
28
+ function processSale(
29
+ ReferralId referralId,
30
+ uint256 feeAmount
31
+ ) external;
32
+
33
+ /// @dev callback from product service when a policy is renews for a specific referralId
34
+ function processRenewal(
35
+ ReferralId referralId,
36
+ uint256 feeAmount
37
+ ) external;
38
+
39
+ /// @dev returns true iff the referral id is valid
40
+ function referralIsValid(ReferralId referralId) external view returns (bool isValid);
41
+
42
+ /// @dev default distribution fee, ie when not using any valid referralId
43
+ function getDistributionFee() external view returns (Fee memory distributionFee);
44
+
45
+ /// @dev returns true iff the component needs to be called when selling/renewing policis
46
+ function isVerifying() external view returns (bool verifying);
47
+ }
@@ -0,0 +1,65 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {NftId} from "../types/NftId.sol";
5
+ import {Fee} from "../types/Fee.sol";
6
+ import {UFixed} from "../types/UFixed.sol";
7
+ import {IBaseComponent} from "./IBaseComponent.sol";
8
+
9
+ interface IPoolComponent is IBaseComponent {
10
+
11
+ event LogUnderwrittenByPool(NftId policyNftId, uint256 collateralizationAmount, address pool);
12
+
13
+ function setFees(
14
+ Fee memory poolFee,
15
+ Fee memory stakingFee,
16
+ Fee memory performanceFee
17
+ ) external;
18
+
19
+ /**
20
+ * @dev creates a new bundle for this pool.
21
+ */
22
+ function createBundle(
23
+ Fee memory fee,
24
+ uint256 initialAmount,
25
+ uint256 lifetime,
26
+ bytes memory filter
27
+ ) external returns(NftId bundleNftId);
28
+
29
+ function setBundleFee(
30
+ NftId policyNftId,
31
+ Fee memory fee
32
+ ) external;
33
+
34
+ /**
35
+ * @dev this is a callback function that is called by the product service when underwriting a policy.
36
+ * the pool has the option to check the details and object to underwriting by reverting.
37
+ * the function is only called for "active" pools that ask to be involved/notified
38
+ * by product related state changes.
39
+ */
40
+ function underwrite(
41
+ NftId policyNftId,
42
+ bytes memory policyData,
43
+ bytes memory bundleFilter,
44
+ uint256 collateralizationAmount
45
+ ) external;
46
+
47
+ /**
48
+ * @dev returns true iff the policy application data in policyData matches
49
+ * with the bundle filter criteria encoded in bundleFilter.
50
+ */
51
+ function policyMatchesBundle(
52
+ bytes memory policyData,
53
+ bytes memory bundleFilter
54
+ )
55
+ external
56
+ view
57
+ returns (bool isMatching);
58
+
59
+ function isVerifying() external view returns (bool verifying);
60
+
61
+ function getCollateralizationLevel() external view returns (UFixed collateralizationLevel);
62
+
63
+ function getFees() external view returns (Fee memory poolFee, Fee memory stakingFee, Fee memory performanceFee);
64
+
65
+ }
@@ -0,0 +1,39 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {Fee} from "../types/Fee.sol";
5
+ import {NftId} from "../types/NftId.sol";
6
+ import {ReferralId} from "../types/ReferralId.sol";
7
+ import {RiskId} from "../types/RiskId.sol";
8
+
9
+ import {IBaseComponent} from "./IBaseComponent.sol";
10
+
11
+ interface IProductComponent is IBaseComponent {
12
+
13
+ function setFees(
14
+ Fee memory productFee,
15
+ Fee memory processingFee
16
+ ) external;
17
+
18
+ function calculatePremium(
19
+ uint256 sumInsuredAmount,
20
+ RiskId riskId,
21
+ uint256 lifetime,
22
+ bytes memory applicationData,
23
+ ReferralId referralId,
24
+ NftId bundleNftId
25
+ ) external view returns (uint256 premiumAmount);
26
+
27
+ function calculateNetPremium(
28
+ uint256 sumInsuredAmount,
29
+ RiskId riskId,
30
+ uint256 lifetime,
31
+ bytes memory applicationData
32
+ ) external view returns (uint256 netPremiumAmount);
33
+
34
+ function getProductFee() external view returns (Fee memory productFee);
35
+ function getProcessingFee() external view returns (Fee memory processingFee);
36
+
37
+ function getPoolNftId() external view returns (NftId poolNftId);
38
+ function getDistributionNftId() external view returns (NftId distributionNftId);
39
+ }