@etherisc/gif-next 0.0.2-b7cfc95-746 → 0.0.2-b8121a8-197

Sign up to get free protection for your applications and to get access to all the features.
Files changed (359) hide show
  1. package/README.md +73 -1
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +390 -56
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +734 -106
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IComponent.sol/IComponent.json +143 -51
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +743 -26
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +737 -58
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +577 -4
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +677 -179
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +497 -131
  18. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +1 -1
  19. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +15 -15
  20. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
  21. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +69 -79
  22. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
  23. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
  24. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  25. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +910 -364
  26. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  27. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +194 -197
  28. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  29. package/artifacts/contracts/instance/Instance.sol/Instance.json +1028 -768
  30. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  31. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +440 -176
  32. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  33. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +120 -263
  34. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  35. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +369 -299
  36. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  37. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +330 -89
  38. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
  39. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +11 -40
  40. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
  41. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +119 -162
  42. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  43. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  44. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  45. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
  46. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  47. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
  48. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  49. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +61 -78
  50. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  51. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  52. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
  53. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  54. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  55. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  56. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
  58. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  59. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
  60. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  61. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
  62. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
  63. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +307 -308
  64. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  65. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +305 -80
  66. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
  68. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
  70. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1227 -259
  72. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  73. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +453 -72
  74. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  75. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
  76. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
  77. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +155 -245
  78. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
  79. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +409 -0
  80. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +728 -161
  82. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +60 -291
  84. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  85. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +81 -152
  86. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  87. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +22 -174
  88. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
  89. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +186 -384
  90. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +311 -114
  92. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +223 -197
  94. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +310 -77
  96. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  97. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +143 -214
  98. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +302 -77
  100. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  101. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
  102. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  103. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +34 -2
  104. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  105. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +109 -195
  106. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  107. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  108. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  109. package/artifacts/contracts/registry/Registry.sol/Registry.json +47 -15
  110. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
  111. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
  112. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  113. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +213 -231
  114. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  115. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +300 -81
  116. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +11 -11
  118. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +151 -34
  120. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  121. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  122. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  123. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  124. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
  125. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  126. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
  127. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  128. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
  129. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  130. package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
  131. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  132. package/artifacts/contracts/shared/IService.sol/IService.json +22 -174
  133. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  134. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
  135. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  136. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
  137. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  138. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
  139. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  140. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
  141. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  142. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
  143. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  144. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
  145. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  146. package/artifacts/contracts/shared/Service.sol/Service.json +114 -157
  147. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  148. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
  149. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  150. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  151. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  152. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
  153. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  154. package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
  155. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  156. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
  157. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  158. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
  159. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  160. package/artifacts/contracts/test/TestService.sol/TestService.json +135 -214
  161. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  162. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  163. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  164. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  165. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
  166. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  167. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  168. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  169. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  170. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  172. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
  173. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
  175. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  176. package/artifacts/contracts/types/Fee.sol/FeeLib.json +2 -2
  177. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  178. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
  179. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  180. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
  181. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  182. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  183. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  184. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  185. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  186. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  187. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
  188. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  189. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
  190. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  191. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
  192. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  193. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  194. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
  196. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  197. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  198. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  199. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
  200. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  201. package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
  202. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  203. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
  204. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  205. package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
  206. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  207. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  208. package/contracts/components/Component.sol +156 -82
  209. package/contracts/components/Distribution.sol +198 -72
  210. package/contracts/components/IComponent.sol +51 -14
  211. package/contracts/components/IDistributionComponent.sol +44 -17
  212. package/contracts/components/IPoolComponent.sol +88 -41
  213. package/contracts/components/IProductComponent.sol +8 -3
  214. package/contracts/components/Pool.sol +210 -169
  215. package/contracts/components/Product.sol +113 -115
  216. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +2 -12
  217. package/contracts/instance/BundleManager.sol +14 -16
  218. package/contracts/instance/Cloneable.sol +7 -2
  219. package/contracts/instance/IInstance.sol +51 -13
  220. package/contracts/instance/IInstanceService.sol +36 -4
  221. package/contracts/instance/Instance.sol +131 -66
  222. package/contracts/instance/InstanceAccessManager.sol +383 -164
  223. package/contracts/instance/InstanceReader.sol +9 -34
  224. package/contracts/instance/InstanceService.sol +279 -129
  225. package/contracts/instance/InstanceServiceManager.sol +1 -1
  226. package/contracts/instance/ObjectManager.sol +10 -29
  227. package/contracts/instance/base/ComponentService.sol +8 -7
  228. package/contracts/instance/base/KeyValueStore.sol +5 -2
  229. package/contracts/instance/base/Lifecycle.sol +11 -2
  230. package/contracts/instance/module/IAccess.sol +22 -16
  231. package/contracts/instance/module/IBundle.sol +2 -1
  232. package/contracts/instance/module/IComponents.sol +35 -0
  233. package/contracts/instance/module/IDistribution.sol +2 -0
  234. package/contracts/instance/module/IPolicy.sol +30 -3
  235. package/contracts/instance/module/ISetup.sol +7 -20
  236. package/contracts/instance/service/ApplicationService.sol +350 -0
  237. package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
  238. package/contracts/instance/service/BundleService.sol +82 -39
  239. package/contracts/instance/service/BundleServiceManager.sol +1 -1
  240. package/contracts/instance/service/ClaimService.sol +151 -0
  241. package/contracts/instance/service/ClaimServiceManager.sol +35 -0
  242. package/contracts/instance/service/DistributionService.sol +381 -29
  243. package/contracts/instance/service/DistributionServiceManager.sol +1 -1
  244. package/contracts/instance/service/IApplicationService.sol +82 -0
  245. package/contracts/instance/service/IBundleService.sol +30 -12
  246. package/contracts/instance/service/IClaimService.sol +61 -0
  247. package/contracts/instance/service/IDistributionService.sol +86 -0
  248. package/contracts/instance/service/IPolicyService.sol +27 -49
  249. package/contracts/instance/service/IPoolService.sol +17 -2
  250. package/contracts/instance/service/PolicyService.sol +148 -283
  251. package/contracts/instance/service/PolicyServiceManager.sol +2 -2
  252. package/contracts/instance/service/PoolService.sol +124 -46
  253. package/contracts/instance/service/PoolServiceManager.sol +1 -1
  254. package/contracts/instance/service/ProductService.sol +28 -28
  255. package/contracts/instance/service/ProductServiceManager.sol +2 -2
  256. package/contracts/registry/ChainNft.sol +8 -0
  257. package/contracts/registry/IRegistry.sol +5 -2
  258. package/contracts/registry/IRegistryService.sol +15 -6
  259. package/contracts/registry/ITransferInterceptor.sol +1 -0
  260. package/contracts/registry/Registry.sol +43 -28
  261. package/contracts/registry/RegistryService.sol +87 -124
  262. package/contracts/registry/RegistryServiceManager.sol +13 -13
  263. package/contracts/registry/ReleaseManager.sol +28 -58
  264. package/contracts/registry/TokenRegistry.sol +16 -12
  265. package/contracts/shared/ERC165.sol +14 -12
  266. package/contracts/shared/INftOwnable.sol +11 -10
  267. package/contracts/shared/IPolicyHolder.sol +26 -0
  268. package/contracts/shared/IRegisterable.sol +4 -4
  269. package/contracts/shared/IRegistryLinked.sol +12 -0
  270. package/contracts/shared/IService.sol +2 -0
  271. package/contracts/shared/IVersionable.sol +4 -47
  272. package/contracts/shared/NftOwnable.sol +66 -82
  273. package/contracts/shared/PolicyHolder.sol +81 -0
  274. package/contracts/shared/ProxyManager.sol +100 -25
  275. package/contracts/shared/Registerable.sol +16 -32
  276. package/contracts/shared/RegistryLinked.sol +48 -0
  277. package/contracts/shared/Service.sol +15 -17
  278. package/contracts/shared/TokenHandler.sol +11 -5
  279. package/contracts/shared/Versionable.sol +4 -92
  280. package/contracts/test/TestRegisterable.sol +1 -1
  281. package/contracts/test/TestService.sol +1 -1
  282. package/contracts/types/Blocknumber.sol +1 -0
  283. package/contracts/types/ClaimId.sol +52 -0
  284. package/contracts/types/DistributorType.sol +2 -2
  285. package/contracts/types/Fee.sol +1 -0
  286. package/contracts/types/NftId.sol +8 -0
  287. package/contracts/types/ObjectType.sol +10 -5
  288. package/contracts/types/PayoutId.sol +54 -0
  289. package/contracts/types/Referral.sol +4 -0
  290. package/contracts/types/RoleId.sol +16 -9
  291. package/contracts/types/Seconds.sol +54 -0
  292. package/contracts/types/StateId.sol +1 -0
  293. package/contracts/types/Timestamp.sol +13 -13
  294. package/contracts/types/UFixed.sol +1 -0
  295. package/contracts/types/Version.sol +1 -0
  296. package/package.json +3 -3
  297. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  298. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  299. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  300. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  301. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  302. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  303. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  304. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  305. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  306. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  307. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  308. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  309. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  310. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  311. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  312. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  313. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  314. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  315. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  316. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  317. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  318. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  319. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  320. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  321. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  322. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  323. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  324. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  325. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  326. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  327. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  328. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  329. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  330. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  331. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  332. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  333. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  334. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  335. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  336. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  337. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +0 -448
  338. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  339. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
  340. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  341. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -100
  342. package/contracts/experiment/cloning/Cloner.sol +0 -47
  343. package/contracts/experiment/errors/Require.sol +0 -38
  344. package/contracts/experiment/errors/Revert.sol +0 -44
  345. package/contracts/experiment/inheritance/A.sol +0 -53
  346. package/contracts/experiment/inheritance/B.sol +0 -28
  347. package/contracts/experiment/inheritance/C.sol +0 -34
  348. package/contracts/experiment/inheritance/IA.sol +0 -13
  349. package/contracts/experiment/inheritance/IB.sol +0 -10
  350. package/contracts/experiment/inheritance/IC.sol +0 -12
  351. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  352. package/contracts/experiment/statemachine/ISM.sol +0 -25
  353. package/contracts/experiment/statemachine/SM.sol +0 -57
  354. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  355. package/contracts/experiment/types/TypeA.sol +0 -47
  356. package/contracts/experiment/types/TypeB.sol +0 -29
  357. package/contracts/instance/IInstanceBase.sol +0 -25
  358. package/contracts/instance/InstanceBase.sol +0 -39
  359. package/contracts/instance/base/IInstanceBase.sol +0 -21
@@ -19,7 +19,7 @@ import {IRegisterable} from "../../contracts/shared/IRegisterable.sol";
19
19
  import {Registerable} from "../../contracts/shared/Registerable.sol";
20
20
 
21
21
  import {RoleId, PRODUCT_OWNER_ROLE, POOL_OWNER_ROLE, ORACLE_OWNER_ROLE} from "../../contracts/types/RoleId.sol";
22
- import {ObjectType, REGISTRY, SERVICE, PRODUCT, ORACLE, POOL, INSTANCE, DISTRIBUTION, POLICY, BUNDLE, STAKE} from "../../contracts/types/ObjectType.sol";
22
+ import {ObjectType, REGISTRY, SERVICE, PRODUCT, ORACLE, POOL, INSTANCE, DISTRIBUTION, DISTRIBUTOR, APPLICATION, POLICY, CLAIM, BUNDLE, STAKE} from "../../contracts/types/ObjectType.sol";
23
23
  import {StateId, ACTIVE, PAUSED} from "../../contracts/types/StateId.sol";
24
24
  import {NftId, NftIdLib, zeroNftId} from "../../contracts/types/NftId.sol";
25
25
  import {Fee, FeeLib} from "../../contracts/types/Fee.sol";
@@ -40,34 +40,55 @@ contract RegistryService is
40
40
  // TODO update to real hash when registry is stable
41
41
  bytes32 public constant REGISTRY_CREATION_CODE_HASH = bytes32(0);
42
42
 
43
- address public constant NFT_LOCK_ADDRESS = address(0x1);
43
+ // From IService
44
+ function getDomain() public pure override(IService, Service) returns(ObjectType serviceDomain) {
45
+ return REGISTRY();
46
+ }
47
+
48
+ // from Versionable
49
+
50
+ /// @dev top level initializer
51
+ function _initialize(
52
+ address owner,
53
+ bytes memory data
54
+ )
55
+ internal
56
+ virtual override
57
+ initializer()
58
+ {
59
+ (
60
+ address registryAddress,
61
+ address initialAuthority
62
+ ) = abi.decode(data, (address, address));
63
+
64
+ __AccessManaged_init(initialAuthority);
44
65
 
66
+ initializeService(registryAddress, owner);
67
+ registerInterface(type(IRegistryService).interfaceId);
68
+ }
45
69
 
46
- function registerInstance(IRegisterable instance)
70
+ function registerInstance(IRegisterable instance, address owner)
47
71
  external
72
+ restricted
48
73
  returns(
49
- IRegistry.ObjectInfo memory info,
50
- bytes memory data
74
+ IRegistry.ObjectInfo memory info
51
75
  )
52
76
  {
53
77
  if(!instance.supportsInterface(type(IInstance).interfaceId)) {
54
78
  revert NotInstance();
55
79
  }
56
80
 
57
- (info, data) = _getAndVerifyContractInfo(instance, INSTANCE(), msg.sender);
81
+ info = _getAndVerifyContractInfo(instance, INSTANCE(), owner);
82
+ info.nftId = getRegistry().register(info);
58
83
 
59
- info.nftId = _registry.register(info);
60
84
  instance.linkToRegisteredNftId(); // asume safe
61
-
62
- return (info, data);
63
85
  }
64
86
 
65
87
  function registerProduct(IComponent product, address owner)
66
88
  external
67
89
  restricted
68
90
  returns(
69
- IRegistry.ObjectInfo memory info,
70
- bytes memory data
91
+ IRegistry.ObjectInfo memory info
71
92
  )
72
93
  {
73
94
  // CAN revert if no ERC165 support -> will revert with empty message
@@ -75,49 +96,47 @@ contract RegistryService is
75
96
  revert NotProduct();
76
97
  }
77
98
 
78
- (info, data) = _getAndVerifyContractInfo(product, PRODUCT(), owner);
79
-
80
- info.nftId = _registry.register(info);
81
-
82
- return (info, data);
99
+ info = _getAndVerifyContractInfo(product, PRODUCT(), owner);
100
+ info.nftId = getRegistry().register(info);
83
101
  }
84
102
 
85
103
  function registerPool(IComponent pool, address owner)
86
104
  external
87
105
  restricted
88
106
  returns(
89
- IRegistry.ObjectInfo memory info,
90
- bytes memory data
107
+ IRegistry.ObjectInfo memory info
91
108
  )
92
109
  {
93
110
  if(!pool.supportsInterface(type(IPoolComponent).interfaceId)) {
94
111
  revert NotPool();
95
112
  }
96
113
 
97
- (info, data) = _getAndVerifyContractInfo(pool, POOL(), owner);
98
-
99
- info.nftId = _registry.register(info);
100
-
101
- return (info, data);
114
+ info = _getAndVerifyContractInfo(pool, POOL(), owner);
115
+ info.nftId = getRegistry().register(info);
102
116
  }
103
117
 
104
118
  function registerDistribution(IComponent distribution, address owner)
105
119
  external
106
120
  restricted
107
121
  returns(
108
- IRegistry.ObjectInfo memory info,
109
- bytes memory data
122
+ IRegistry.ObjectInfo memory info
110
123
  )
111
124
  {
112
125
  if(!distribution.supportsInterface(type(IDistributionComponent).interfaceId)) {
113
126
  revert NotDistribution();
114
127
  }
115
128
 
116
- (info, data) = _getAndVerifyContractInfo(distribution, DISTRIBUTION(), owner);
117
-
118
- info.nftId = _registry.register(info);
129
+ info = _getAndVerifyContractInfo(distribution, DISTRIBUTION(), owner);
130
+ info.nftId = getRegistry().register(info);
131
+ }
119
132
 
120
- return (info, data);
133
+ function registerDistributor(IRegistry.ObjectInfo memory info)
134
+ external
135
+ restricted
136
+ returns(NftId nftId)
137
+ {
138
+ _verifyObjectInfo(info, DISTRIBUTOR());
139
+ nftId = getRegistry().register(info);
121
140
  }
122
141
 
123
142
  function registerPolicy(IRegistry.ObjectInfo memory info)
@@ -127,7 +146,7 @@ contract RegistryService is
127
146
  {
128
147
  _verifyObjectInfo(info, POLICY());
129
148
 
130
- nftId = _registry.register(info);
149
+ nftId = getRegistry().register(info);
131
150
  }
132
151
 
133
152
  function registerBundle(IRegistry.ObjectInfo memory info)
@@ -137,7 +156,7 @@ contract RegistryService is
137
156
  {
138
157
  _verifyObjectInfo(info, BUNDLE());
139
158
 
140
- nftId = _registry.register(info);
159
+ nftId = getRegistry().register(info);
141
160
  }
142
161
 
143
162
  function registerStake(IRegistry.ObjectInfo memory info)
@@ -147,73 +166,55 @@ contract RegistryService is
147
166
  {
148
167
  _verifyObjectInfo(info, STAKE());
149
168
 
150
- nftId = _registry.register(info);
151
- }
152
-
153
- // From IService
154
- function getDomain() public pure override(IService, Service) returns(ObjectType serviceDomain) {
155
- return REGISTRY();
156
- }
157
-
158
- // from Versionable
159
-
160
- /// @dev top level initializer
161
- function _initialize(
162
- address owner,
163
- bytes memory data
164
- )
165
- internal
166
- initializer
167
- virtual override
168
- {
169
- (
170
- address initialAuthority,
171
- address registry
172
- ) = abi.decode(data, (address, address));
173
-
174
- __AccessManaged_init(initialAuthority);
175
-
176
- _initializeService(address(registry), owner);
177
-
178
- _registerInterface(type(IRegistryService).interfaceId);
169
+ nftId = getRegistry().register(info);
179
170
  }
180
171
 
181
172
  // from IRegisterable
182
173
 
183
- function getInitialInfo()
184
- public
185
- view
186
- virtual override(IRegisterable, Registerable)
187
- returns (IRegistry.ObjectInfo memory info, bytes memory data)
174
+ function getFunctionConfigs()
175
+ external
176
+ pure
177
+ returns(
178
+ FunctionConfig[] memory config
179
+ )
188
180
  {
189
- (info , data) = super.getInitialInfo();
190
-
191
- FunctionConfig[] memory config = new FunctionConfig[](6);
181
+ config = new FunctionConfig[](8);
192
182
 
193
183
  // order of service registrations MUST be reverse to this array
194
184
  /*config[-1].serviceDomain = STAKE();
195
185
  config[-1].selector = RegistryService.registerStake.selector;*/
196
186
 
197
187
  config[0].serviceDomain = POLICY();
198
- config[0].selector = RegistryService.registerPolicy.selector;
188
+ config[0].selectors = new bytes4[](0);
199
189
 
200
- config[1].serviceDomain = BUNDLE();
201
- config[1].selector = RegistryService.registerBundle.selector;
190
+ config[1].serviceDomain = APPLICATION();
191
+ config[1].selectors = new bytes4[](1);
192
+ config[1].selectors[0] = RegistryService.registerPolicy.selector;
202
193
 
203
- config[2].serviceDomain = PRODUCT();
204
- config[2].selector = RegistryService.registerProduct.selector;
194
+ config[2].serviceDomain = CLAIM();
195
+ config[2].selectors = new bytes4[](0);
205
196
 
206
- config[3].serviceDomain = POOL();
207
- config[3].selector = RegistryService.registerPool.selector;
197
+ config[3].serviceDomain = BUNDLE();
198
+ config[3].selectors = new bytes4[](1);
199
+ config[3].selectors[0] = RegistryService.registerBundle.selector;
208
200
 
209
- config[4].serviceDomain = DISTRIBUTION();
210
- config[4].selector = RegistryService.registerDistribution.selector;
201
+ config[4].serviceDomain = PRODUCT();
202
+ config[4].selectors = new bytes4[](1);
203
+ config[4].selectors[0] = RegistryService.registerProduct.selector;
211
204
 
212
- // registerInstance() have no restriction
213
- config[5].serviceDomain = INSTANCE();
214
- config[5].selector = RegistryService.registerInstance.selector;
205
+ config[5].serviceDomain = POOL();
206
+ config[5].selectors = new bytes4[](1);
207
+ config[5].selectors[0] = RegistryService.registerPool.selector;
208
+
209
+ config[6].serviceDomain = DISTRIBUTION();
210
+ config[6].selectors = new bytes4[](2);
211
+ config[6].selectors[0] = RegistryService.registerDistribution.selector;
212
+ config[6].selectors[1] = RegistryService.registerDistributor.selector;
215
213
 
216
- data = abi.encode(config);
214
+ // registerInstance() have no restriction
215
+ config[7].serviceDomain = INSTANCE();
216
+ config[7].selectors = new bytes4[](1);
217
+ config[7].selectors[0] = RegistryService.registerInstance.selector;
217
218
  }
218
219
 
219
220
  // Internal
@@ -224,16 +225,12 @@ contract RegistryService is
224
225
  address expectedOwner // assume can be 0 when given by other service
225
226
  )
226
227
  internal
227
- view
228
+ // view
228
229
  returns(
229
- IRegistry.ObjectInfo memory info,
230
- bytes memory data
230
+ IRegistry.ObjectInfo memory info
231
231
  )
232
232
  {
233
- (
234
- info,
235
- data
236
- ) = registerable.getInitialInfo();
233
+ info = registerable.getInitialInfo();
237
234
  info.objectAddress = address(registerable);
238
235
 
239
236
  if(info.objectType != expectedType) {// type is checked in registry anyway...but service logic may depend on expected value
@@ -242,13 +239,8 @@ contract RegistryService is
242
239
 
243
240
  address owner = info.initialOwner;
244
241
 
245
- // solhint-disable-next-line
246
- if(expectedType == INSTANCE()) {
247
- // any address may create a new instance via instance service
248
- } else {
249
- if(owner != expectedOwner) { // registerable owner protection
250
- revert NotRegisterableOwner(expectedOwner);
251
- }
242
+ if(owner != expectedOwner) { // registerable owner protection
243
+ revert NotRegisterableOwner(expectedOwner);
252
244
  }
253
245
 
254
246
  if(owner == address(registerable)) {
@@ -262,15 +254,6 @@ contract RegistryService is
262
254
  if(getRegistry().isRegistered(owner)) {
263
255
  revert RegisterableOwnerIsRegistered();
264
256
  }
265
-
266
- /*NftId parentNftId = info.parentNftId;
267
- IRegistry.ObjectInfo memory parentInfo = getRegistry().getObjectInfo(parentNftId);
268
-
269
- if(parentInfo.objectType != parentType) { // parent registration + type
270
- revert InvalidParent(parentNftId);
271
- }*/
272
-
273
- return(info, data);
274
257
  }
275
258
 
276
259
  function _verifyObjectInfo(
@@ -296,25 +279,5 @@ contract RegistryService is
296
279
  if(getRegistry().isRegistered(owner)) {
297
280
  revert RegisterableOwnerIsRegistered();
298
281
  }
299
-
300
- // can catch all 3 if check that initialOwner is not registered
301
- /*if(info.initialOwner == msg.sender) {
302
- revert InitialOwnerIsParent();
303
- }
304
-
305
- if(info.initialOwner == address(this)) {
306
- revert InitialOwnerIsService();
307
- }
308
-
309
- if(info.initialOwner == address(getRegistry())) {
310
- revert InitialOwnerIsRegistry();
311
- }*/
312
-
313
- /*NftId parentNftId = info.parentNftId;
314
- IRegistry.ObjectInfo memory parentInfo = getRegistry().getObjectInfo(parentNftId);
315
-
316
- if(parentInfo.objectType != parentType) { // parent registration + type
317
- revert InvalidParent(parentNftId);
318
- }*/
319
282
  }
320
283
  }
@@ -22,32 +22,32 @@ contract RegistryServiceManager is
22
22
  /// @dev initializes proxy manager with registry service implementation and deploys registry
23
23
  constructor(
24
24
  address initialAuthority, // used by implementation
25
- address registry) // used by implementation
26
- ProxyManager()
25
+ address registryAddress) // used by implementation
26
+ ProxyManager(registryAddress)
27
27
  {
28
28
  require(initialAuthority > address(0), "RegistryServiceManager: initial authority is 0");
29
- require(registry > address(0), "RegistryServiceManager: registry is 0");
29
+ require(registryAddress > address(0), "RegistryServiceManager: registry is 0");
30
30
 
31
31
  // implementation's initializer func `data` argument
32
- bytes memory initializationData = abi.encode(
33
- initialAuthority,
34
- registry);
35
-
32
+ RegistryService srv = new RegistryService();
33
+ bytes memory data = abi.encode(registryAddress, initialAuthority);
36
34
  IVersionable versionable = deploy(
37
- address(new RegistryService()),
38
- initializationData);
35
+ address(srv),
36
+ data);
39
37
 
40
38
  _registryService = RegistryService(address(versionable));
39
+
40
+ // _linkToNftOwnable(address(_registryService));
41
41
  }
42
42
 
43
- // from IRegisterable
43
+ // // from IRegisterable
44
44
 
45
- // IMPORTANT: registry here and in constructor MUST be the same
46
- function linkToNftOwnable(address registry)
45
+ // // IMPORTANT: registry here and in constructor MUST be the same
46
+ function linkOwnershipToServiceNft()
47
47
  public
48
48
  onlyOwner
49
49
  {
50
- _linkToNftOwnable(registry, address(_registryService));
50
+ _linkToNftOwnable(address(_registryService));
51
51
  }
52
52
 
53
53
  //--- view functions ----------------------------------------------------//
@@ -41,7 +41,7 @@ contract ReleaseManager is AccessManaged
41
41
  error SelfRegistration();
42
42
  error RegisterableOwnerIsRegistered();
43
43
 
44
- // _verifyServiceInfo
44
+ // _verifyService
45
45
  error UnexpectedServiceVersion(VersionPart expected, VersionPart found);
46
46
  error UnexpectedServiceDomain(ObjectType expected, ObjectType found);
47
47
 
@@ -61,7 +61,7 @@ contract ReleaseManager is AccessManaged
61
61
 
62
62
  mapping(VersionPart version => IRegistry.ReleaseInfo info) _release;
63
63
 
64
- mapping(VersionPart version => mapping(ObjectType serviceDomain => bytes4)) _selector; // registry service function selector assigned to domain
64
+ mapping(VersionPart version => mapping(ObjectType serviceDomain => bytes4[])) _selectors; // registry service function selector assigned to domain
65
65
 
66
66
  uint _awaitingRegistration; // "services left to register" counter
67
67
 
@@ -135,6 +135,7 @@ contract ReleaseManager is AccessManaged
135
135
  if(!service.supportsInterface(type(IRegistryService).interfaceId)) {
136
136
  revert NotRegistryService();
137
137
  }
138
+
138
139
  // TODO unreliable! MUST guarantee the same authority -> how?
139
140
  address serviceAuthority = service.authority();
140
141
  if(serviceAuthority != authority()) {
@@ -143,18 +144,12 @@ contract ReleaseManager is AccessManaged
143
144
  serviceAuthority);
144
145
  }
145
146
 
146
- (
147
- IRegistry.ObjectInfo memory info,
148
- bytes memory data
149
- ) = _getAndVerifyContractInfo(service, SERVICE(), msg.sender);
147
+ IRegistry.ObjectInfo memory info = _getAndVerifyContractInfo(service, SERVICE(), msg.sender);
150
148
 
151
149
  VersionPart version = _next;
152
150
  ObjectType domain = REGISTRY();
153
- _verifyServiceInfo(info, version, domain);
154
-
155
- _createRelease(data);
156
-
157
- //setTargetClosed(service, true);
151
+ _verifyService(service, version, domain);
152
+ _createRelease(service.getFunctionConfigs());
158
153
 
159
154
  nftId = _registry.registerService(info, version, domain);
160
155
 
@@ -173,24 +168,19 @@ contract ReleaseManager is AccessManaged
173
168
  revert NotService();
174
169
  }
175
170
 
176
- (
177
- IRegistry.ObjectInfo memory info,
178
- //bytes memory data
179
- ) = _getAndVerifyContractInfo(service, SERVICE(), msg.sender);
180
-
181
- VersionPart version = _next;
171
+ IRegistry.ObjectInfo memory info = _getAndVerifyContractInfo(service, SERVICE(), msg.sender);
172
+ VersionPart version = getNextVersion();
182
173
  ObjectType domain = _release[version].domains[_awaitingRegistration];// reversed registration order of services specified in RegistryService config
183
- _verifyServiceInfo(info, version, domain);
174
+ _verifyService(service, version, domain);
184
175
 
185
176
  // setup and grant unique role if service does registrations
186
- bytes4[] memory selector = new bytes4[](1);
187
- selector[0] = _selector[version][domain];
177
+ bytes4[] memory selectors = _selectors[version][domain];
188
178
  address registryService = _registry.getServiceAddress(REGISTRY(), version);
189
- if(selector[0] != 0) {
179
+ if(selectors.length > 0) {
190
180
  _accessManager.setAndGrantUniqueRole(
191
181
  address(service),
192
182
  registryService,
193
- selector);
183
+ selectors);
194
184
  }
195
185
 
196
186
  _awaitingRegistration--;
@@ -244,13 +234,12 @@ contract ReleaseManager is AccessManaged
244
234
  address expectedOwner // assume always valid, can not be 0
245
235
  )
246
236
  internal
247
- view
237
+ // view
248
238
  returns(
249
- IRegistry.ObjectInfo memory info,
250
- bytes memory data
239
+ IRegistry.ObjectInfo memory info
251
240
  )
252
241
  {
253
- (info, data) = service.getInitialInfo();
242
+ info = service.getInitialInfo();
254
243
  info.objectAddress = address(service);
255
244
  info.isInterceptor = false; // service is never interceptor, at least now
256
245
 
@@ -267,27 +256,14 @@ contract ReleaseManager is AccessManaged
267
256
  if(owner == address(service)) {
268
257
  revert SelfRegistration();
269
258
  }
270
-
271
- /*if(owner == address(0)) { // never 0
272
- revert();// RegisterableOwnerIsZero();
273
- }*/
274
259
 
275
260
  if(_registry.isRegistered(owner)) {
276
261
  revert RegisterableOwnerIsRegistered();
277
262
  }
278
-
279
- /*NftId parentNftId = info.parentNftId;
280
- IRegistry.ObjectInfo memory parentInfo = getRegistry().getObjectInfo(parentNftId);
281
-
282
- if(parentInfo.objectType != parentType) { // parent registration + type
283
- revert InvalidParent(parentNftId);
284
- }*/
285
-
286
- return(info, data);
287
263
  }
288
264
 
289
- function _verifyServiceInfo(
290
- IRegistry.ObjectInfo memory info,
265
+ function _verifyService(
266
+ IService service,
291
267
  VersionPart expectedVersion,
292
268
  ObjectType expectedDomain
293
269
  )
@@ -295,28 +271,22 @@ contract ReleaseManager is AccessManaged
295
271
  view
296
272
  returns(ObjectType)
297
273
  {
298
- (
299
- ObjectType domain,
300
- VersionPart version
301
- ) = abi.decode(info.data, (ObjectType, VersionPart));
302
-
303
- if(version != expectedVersion) {
304
- revert UnexpectedServiceVersion(expectedVersion, version);
274
+ if(service.getMajorVersion() != expectedVersion) {
275
+ revert UnexpectedServiceVersion(expectedVersion, service.getMajorVersion());
305
276
  }
306
277
 
307
- if(domain != expectedDomain) {
308
- revert UnexpectedServiceDomain(expectedDomain, domain);
278
+ if(service.getDomain() != expectedDomain) {
279
+ revert UnexpectedServiceDomain(expectedDomain, service.getDomain());
309
280
  }
310
281
 
311
- return domain;
282
+ return expectedDomain;
312
283
  }
313
284
 
314
285
  // TODO check if registry supports types specified in the config array
315
- function _createRelease(bytes memory configBytes)
286
+ function _createRelease(IRegistryService.FunctionConfig[] memory config)
316
287
  internal
317
288
  {
318
- VersionPart version = _next;
319
- IRegistryService.FunctionConfig[] memory config = abi.decode(configBytes, (IRegistryService.FunctionConfig[]));
289
+ VersionPart version = getNextVersion();
320
290
 
321
291
  if(config.length == 0) {
322
292
  revert ConfigMissing();
@@ -326,21 +296,21 @@ contract ReleaseManager is AccessManaged
326
296
  for(uint idx = 0; idx < config.length; idx++)
327
297
  {
328
298
  ObjectType domain = config[idx].serviceDomain;
329
- bytes4 selector = config[idx].selector;
330
-
331
299
  // not "registry service" / zero domain
332
300
  if(
333
301
  domain == REGISTRY() ||
334
302
  domain.eqz()
335
303
  ) { revert ConfigServiceDomainInvalid(idx, domain); }
336
304
 
305
+ bytes4[] memory selectors = config[idx].selectors;
306
+
337
307
  // TODO can be zero -> e.g. duplicate domain, first with zero selector, second with non zero selector -> need to check _release[version].domains.contains(domain) instead
338
308
  // no overwrite
339
- if(_selector[version][domain] > 0) {
309
+ if(_selectors[version][domain].length > 0) {
340
310
  revert SelectorAlreadyExists(version, domain);
341
311
  }
342
312
 
343
- _selector[version][domain] = selector;
313
+ _selectors[version][domain] = selectors;
344
314
  _release[version].domains.push(domain);
345
315
  }
346
316
  // TODO set when activated?
@@ -26,9 +26,19 @@ contract TokenRegistry is
26
26
  mapping(address token => bool registered) internal _registered;
27
27
  mapping(address token => mapping(VersionPart majorVersion => bool isActive)) internal _active;
28
28
 
29
- constructor()
30
- NftOwnable()
31
- { }
29
+ constructor(
30
+ address registry
31
+ )
32
+ {
33
+ initialize(registry);
34
+ }
35
+
36
+ function initialize(address registry)
37
+ public
38
+ initializer()
39
+ {
40
+ initializeNftOwnable(msg.sender, registry);
41
+ }
32
42
 
33
43
 
34
44
  /// @dev link ownership of token registry to nft owner of registry service
@@ -40,9 +50,8 @@ contract TokenRegistry is
40
50
  IRegistry registry = IRegistry(registryAddress);
41
51
  // TODO use _latest instead of _initial -> but _latest is 0 before first release activation
42
52
  address registryServiceAddress = registry.getServiceAddress(REGISTRY(), registry.getNextVersion());
43
- //address registryServiceAddress = registry.getServiceAddress(REGISTRY(), registry.getInitialVersion());
44
53
 
45
- _linkToNftOwnable(registryAddress, registryServiceAddress);
54
+ _linkToNftOwnable(registryServiceAddress);
46
55
  }
47
56
 
48
57
  /// @dev token state is informative, registry have no clue about used tokens
@@ -60,7 +69,7 @@ contract TokenRegistry is
60
69
  // verify valid major version
61
70
  // ensure major version increments is one
62
71
  uint256 version = majorVersion.toInt();
63
- if (!_registry.isValidRelease(majorVersion)) {
72
+ if (!getRegistry().isValidRelease(majorVersion)) {
64
73
  revert TokenMajorVersionInvalid(majorVersion);
65
74
  }
66
75
 
@@ -93,12 +102,7 @@ contract TokenRegistry is
93
102
  revert NotContract(token);
94
103
  }
95
104
 
96
- // MUST not be GIF registerable
97
- if(ERC165Checker.supportsInterface(token, type(IRegisterable).interfaceId)) {
98
- revert NotToken(token);
99
- }
100
-
101
- // MUST have decimals > 0
105
+ // MUST have decimals > 0 (indicator that this is in fact an erc20 token)
102
106
  IERC20Metadata erc20 = IERC20Metadata(token);
103
107
  if(erc20.decimals() == 0) {
104
108
  revert TokenDecimalsZero();
@@ -2,24 +2,26 @@
2
2
  pragma solidity ^0.8.19;
3
3
 
4
4
  import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
5
+ import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
5
6
 
6
- contract ERC165 is IERC165 {
7
+ contract ERC165 is
8
+ Initializable,
9
+ IERC165
10
+ {
7
11
  mapping(bytes4 => bool) private _isSupported;
8
12
 
9
- constructor() {
10
- _initializeERC165();
11
- }
12
-
13
- function supportsInterface(bytes4 interfaceId) external view override returns (bool) {
14
- return _isSupported[interfaceId];
15
- }
16
-
17
- // @dev register support for ERC165 itself
18
- function _initializeERC165() internal {
13
+ // @dev initializes with support for ERC165
14
+ function initializeERC165() public onlyInitializing() {
19
15
  _isSupported[type(IERC165).interfaceId] = true;
20
16
  }
21
17
 
22
- function _registerInterface(bytes4 interfaceId) internal {
18
+ // @dev register support for provided interfaceId
19
+ // includes initialization for ERC165_ID if not yet done
20
+ function registerInterface(bytes4 interfaceId) public onlyInitializing() {
23
21
  _isSupported[interfaceId] = true;
24
22
  }
23
+
24
+ function supportsInterface(bytes4 interfaceId) external view override returns (bool) {
25
+ return _isSupported[interfaceId];
26
+ }
25
27
  }