@etherisc/gif-next 0.0.2-bfb44e0-483 → 0.0.2-c0b400a-177

Sign up to get free protection for your applications and to get access to all the features.
Files changed (344) hide show
  1. package/README.md +8 -8
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +80 -145
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +125 -239
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IComponent.sol/IComponent.json +77 -92
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +102 -183
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +261 -201
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +81 -164
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +278 -288
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +85 -218
  18. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  19. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  20. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
  21. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
  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 +496 -536
  26. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  27. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +105 -212
  28. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  29. package/artifacts/contracts/instance/Instance.sol/Instance.json +567 -621
  30. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  31. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +448 -121
  32. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  33. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +120 -227
  34. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  35. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +170 -397
  36. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  37. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +207 -116
  38. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
  39. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
  40. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
  41. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +18 -220
  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 +54 -71
  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 +1 -1
  59. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +182 -331
  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 +141 -366
  64. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  65. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +182 -107
  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 +824 -268
  72. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  73. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +312 -109
  74. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  75. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +124 -206
  76. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
  77. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +89 -257
  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 +514 -157
  82. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +45 -289
  84. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  85. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +69 -153
  86. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  87. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +12 -177
  88. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
  89. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +85 -442
  90. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +188 -141
  92. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +116 -249
  94. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +187 -104
  96. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  97. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +42 -272
  98. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +179 -104
  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 +19 -0
  104. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  105. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +71 -180
  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 +31 -12
  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 +90 -264
  114. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  115. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +182 -113
  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 +34 -67
  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 +2 -2
  123. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  124. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +4 -30
  125. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  126. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  127. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +4 -30
  128. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  129. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -21
  130. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  131. package/artifacts/contracts/shared/IService.sol/IService.json +12 -177
  132. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  133. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -150
  134. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  135. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +10 -62
  136. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  137. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -23
  138. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  139. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +171 -88
  140. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  141. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +11 -74
  142. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  143. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -23
  144. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  145. package/artifacts/contracts/shared/Service.sol/Service.json +13 -215
  146. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  147. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
  148. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  149. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  150. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  151. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -150
  152. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  153. package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
  154. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  155. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +11 -74
  156. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  157. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
  158. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  159. package/artifacts/contracts/test/TestService.sol/TestService.json +31 -269
  160. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  161. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  162. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  163. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  164. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +6 -188
  165. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  166. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  167. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  168. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  169. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  170. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  171. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
  172. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
  174. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  175. package/artifacts/contracts/types/Fee.sol/FeeLib.json +2 -2
  176. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  177. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
  178. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  179. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
  180. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  181. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  182. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  183. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  184. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  185. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  186. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
  187. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  188. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
  189. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  190. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
  191. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  192. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  193. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
  194. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
  195. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  196. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  197. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  198. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
  199. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  200. package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
  201. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  202. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
  203. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  204. package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
  205. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  206. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  207. package/contracts/components/Component.sol +96 -81
  208. package/contracts/components/Distribution.sol +29 -47
  209. package/contracts/components/IComponent.sol +40 -16
  210. package/contracts/components/IDistributionComponent.sol +1 -30
  211. package/contracts/components/IPoolComponent.sol +73 -47
  212. package/contracts/components/IProductComponent.sol +3 -2
  213. package/contracts/components/Pool.sol +171 -126
  214. package/contracts/components/Product.sol +38 -23
  215. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
  216. package/contracts/instance/BundleManager.sol +7 -5
  217. package/contracts/instance/Cloneable.sol +7 -2
  218. package/contracts/instance/IInstance.sol +23 -11
  219. package/contracts/instance/IInstanceService.sol +18 -5
  220. package/contracts/instance/Instance.sol +62 -16
  221. package/contracts/instance/InstanceAccessManager.sol +382 -157
  222. package/contracts/instance/InstanceReader.sol +7 -10
  223. package/contracts/instance/InstanceService.sol +222 -160
  224. package/contracts/instance/InstanceServiceManager.sol +1 -1
  225. package/contracts/instance/ObjectManager.sol +6 -8
  226. package/contracts/instance/base/ComponentService.sol +5 -5
  227. package/contracts/instance/base/KeyValueStore.sol +5 -2
  228. package/contracts/instance/base/Lifecycle.sol +11 -2
  229. package/contracts/instance/module/IAccess.sol +20 -13
  230. package/contracts/instance/module/IBundle.sol +2 -1
  231. package/contracts/instance/module/IComponents.sol +35 -0
  232. package/contracts/instance/module/IDistribution.sol +2 -0
  233. package/contracts/instance/module/IPolicy.sol +30 -3
  234. package/contracts/instance/module/ISetup.sol +7 -21
  235. package/contracts/instance/service/ApplicationService.sol +139 -57
  236. package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
  237. package/contracts/instance/service/BundleService.sol +76 -38
  238. package/contracts/instance/service/BundleServiceManager.sol +1 -1
  239. package/contracts/instance/service/ClaimService.sol +151 -0
  240. package/contracts/instance/service/ClaimServiceManager.sol +35 -0
  241. package/contracts/instance/service/DistributionService.sol +224 -31
  242. package/contracts/instance/service/DistributionServiceManager.sol +1 -1
  243. package/contracts/instance/service/IApplicationService.sol +9 -9
  244. package/contracts/instance/service/IBundleService.sol +19 -11
  245. package/contracts/instance/service/IClaimService.sol +61 -0
  246. package/contracts/instance/service/IDistributionService.sol +36 -3
  247. package/contracts/instance/service/IPolicyService.sol +18 -34
  248. package/contracts/instance/service/IPoolService.sol +17 -2
  249. package/contracts/instance/service/PolicyService.sol +74 -195
  250. package/contracts/instance/service/PolicyServiceManager.sol +2 -2
  251. package/contracts/instance/service/PoolService.sol +128 -17
  252. package/contracts/instance/service/PoolServiceManager.sol +1 -1
  253. package/contracts/instance/service/ProductService.sol +10 -2
  254. package/contracts/instance/service/ProductServiceManager.sol +2 -2
  255. package/contracts/registry/ChainNft.sol +8 -0
  256. package/contracts/registry/IRegistry.sol +2 -0
  257. package/contracts/registry/IRegistryService.sol +10 -8
  258. package/contracts/registry/ITransferInterceptor.sol +1 -0
  259. package/contracts/registry/Registry.sol +26 -21
  260. package/contracts/registry/RegistryService.sol +62 -40
  261. package/contracts/registry/RegistryServiceManager.sol +13 -13
  262. package/contracts/registry/ReleaseManager.sol +18 -28
  263. package/contracts/registry/TokenRegistry.sol +13 -10
  264. package/contracts/shared/ERC165.sol +2 -1
  265. package/contracts/shared/INftOwnable.sol +4 -9
  266. package/contracts/shared/IRegistryLinked.sol +0 -3
  267. package/contracts/shared/IService.sol +2 -0
  268. package/contracts/shared/IVersionable.sol +4 -47
  269. package/contracts/shared/NftOwnable.sol +10 -80
  270. package/contracts/shared/ProxyManager.sol +98 -24
  271. package/contracts/shared/Registerable.sol +3 -10
  272. package/contracts/shared/RegistryLinked.sol +10 -26
  273. package/contracts/shared/Service.sol +10 -12
  274. package/contracts/shared/TokenHandler.sol +11 -5
  275. package/contracts/shared/Versionable.sol +1 -90
  276. package/contracts/types/Blocknumber.sol +1 -0
  277. package/contracts/types/ClaimId.sol +52 -0
  278. package/contracts/types/Fee.sol +1 -0
  279. package/contracts/types/NftId.sol +8 -0
  280. package/contracts/types/ObjectType.sol +5 -4
  281. package/contracts/types/PayoutId.sol +54 -0
  282. package/contracts/types/Referral.sol +4 -0
  283. package/contracts/types/RoleId.sol +16 -9
  284. package/contracts/types/Seconds.sol +54 -0
  285. package/contracts/types/StateId.sol +1 -0
  286. package/contracts/types/Timestamp.sol +13 -13
  287. package/contracts/types/UFixed.sol +1 -0
  288. package/contracts/types/Version.sol +1 -0
  289. package/package.json +1 -1
  290. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  291. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  292. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  293. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  294. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  295. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  296. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  297. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  298. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  299. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  300. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  301. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  302. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  303. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  304. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  305. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  306. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  307. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  308. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  309. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  310. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  311. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  312. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  313. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  314. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  315. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  316. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  317. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  318. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  319. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  320. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  321. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  322. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  323. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  324. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  325. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  326. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  327. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  328. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  329. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  330. package/contracts/experiment/cloning/Cloner.sol +0 -47
  331. package/contracts/experiment/errors/Require.sol +0 -38
  332. package/contracts/experiment/errors/Revert.sol +0 -44
  333. package/contracts/experiment/inheritance/A.sol +0 -53
  334. package/contracts/experiment/inheritance/B.sol +0 -28
  335. package/contracts/experiment/inheritance/C.sol +0 -34
  336. package/contracts/experiment/inheritance/IA.sol +0 -13
  337. package/contracts/experiment/inheritance/IB.sol +0 -10
  338. package/contracts/experiment/inheritance/IC.sol +0 -12
  339. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  340. package/contracts/experiment/statemachine/ISM.sol +0 -25
  341. package/contracts/experiment/statemachine/SM.sol +0 -57
  342. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  343. package/contracts/experiment/types/TypeA.sol +0 -47
  344. package/contracts/experiment/types/TypeB.sol +0 -29
@@ -1,11 +1,8 @@
1
1
  // SPDX-License-Identifier: Apache-2.0
2
2
  pragma solidity ^0.8.20;
3
3
 
4
- import {Blocknumber} from "../types/Blocknumber.sol";
5
- import {Timestamp} from "../types/Timestamp.sol";
6
4
  import {Version} from "../types/Version.sol";
7
5
 
8
-
9
6
  /// IMPORTANT
10
7
  // Upgradeable contract MUST:
11
8
  // 1) inherit from Versionable
@@ -14,7 +11,7 @@ import {Version} from "../types/Version.sol";
14
11
  // 4) implement internal _upgrade() function with onlyInitializing modifier (1st version MUST revert)
15
12
  // 5) have onlyInitialising modifier for each function callable inside _initialize()/_upgrade() (MUST use different functions for initialization/upgrade and normal operations)
16
13
  // 6) use default empty constructor -> _disableInitializer() is called from Versionable contructor
17
- // 7) use namespace storage
14
+ // 7) use namespace storage (should this be needed)
18
15
  // 8) since now inheritance is used for upgradability, contract MUST BE inherited ONLY by the next version
19
16
  // Upgradeable contract SHOULD:
20
17
  // 9) define all non private methods as virtual (in order to be able to upgrade them latter)
@@ -22,48 +19,29 @@ import {Version} from "../types/Version.sol";
22
19
  // in some cases this ok but not in the others...
23
20
  //
24
21
  // IMPORTANT
25
- // Each version MUST:
22
+ // If introducting/amending storage related to Versionable version MUST:
26
23
  // 1) define namespace storage struct if accessing storage
27
24
  // - DO NOT use structs inside, except
28
25
  // - CAN use structs ONLY inside mappings
29
26
  // 2) ALWAYS define private getter if accessing storage
30
27
  // - MUST use default implementation, CAN change ONLY return type
31
- // - MUST use the same "LOCATION_V1"
32
28
 
33
29
  interface IVersionable {
34
30
 
35
- struct VersionInfo {
36
- Version version;
37
- address implementation;
38
- address activatedBy;
39
- Timestamp activatedAt;
40
- Blocknumber activatedIn;
41
- }
42
-
43
- event LogVersionableInitialized(Version version, address implementation, address activatedBy);
44
-
45
- // TODO uncomment when all implementations are ready
46
31
  /**
47
32
  * @dev IMPORTANT
48
33
  * implementation MUST be guarded by initializer modifier
49
- * implementation MUST call internal function Versionable._updateVersionHistory
50
34
  * new version MUST inherit from previous version
51
35
  */
52
- function initializeVersionable(address implementation, address activatedBy, bytes memory activationData) external;
36
+ function initializeVersionable(address activatedBy, bytes memory activationData) external;
53
37
 
54
38
  /**
55
39
  * @dev
56
40
  * implementation MUST be guarded by reinitializer(version().toUint64()) modifier
57
- * implementation MUST call internal function Versionable._updateVersionHistory
58
41
  * new version MUST inherit from previous version
59
42
  * the first verion MUST revert
60
43
  */
61
- function upgradeVersionable(address implementation, address activatedBy, bytes memory upgradeData) external;
62
-
63
- /**
64
- * @dev returns true if the specified version has been activated for the current contract
65
- */
66
- function isInitialized(Version version) external view returns(bool);
44
+ function upgradeVersionable(bytes memory upgradeData) external;
67
45
 
68
46
  /**
69
47
  * @dev returns version of this contract
@@ -72,25 +50,4 @@ interface IVersionable {
72
50
  */
73
51
  function getVersion() external pure returns(Version);
74
52
 
75
- /**
76
- * @dev returns the number of all deployed versions of this contract
77
- */
78
- function getVersionCount() external view returns(uint256 numberOfVersions);
79
-
80
- /**
81
- * @dev returns the i-th (index) version of this contract
82
- */
83
- function getVersion(uint256 index) external view returns(Version version);
84
-
85
- /**
86
- * @dev returns the i-th (index) version info of this contract
87
- */
88
- function getVersionInfo(Version version) external view returns(VersionInfo memory versionInfo);
89
-
90
- // TODO make sure it is needed here
91
- /**
92
- * @dev returns currently active version
93
- */
94
- function getInitializedVersion() external view returns(uint64);
95
-
96
53
  }
@@ -5,8 +5,7 @@ pragma solidity ^0.8.20;
5
5
 
6
6
  import {ERC165} from "./ERC165.sol";
7
7
  import {INftOwnable} from "./INftOwnable.sol";
8
- import {IRegistry} from "../registry/IRegistry.sol";
9
- import {NftId, zeroNftId} from "../types/NftId.sol";
8
+ import {NftId} from "../types/NftId.sol";
10
9
  import {RegistryLinked} from "./RegistryLinked.sol";
11
10
 
12
11
  contract NftOwnable is
@@ -18,7 +17,6 @@ contract NftOwnable is
18
17
  bytes32 public constant NFT_OWNABLE_STORAGE_LOCATION_V1 = 0x07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00;
19
18
 
20
19
  struct NftOwnableStorage {
21
- // IRegistry _registry;
22
20
  NftId _nftId;
23
21
  address _initialOwner;
24
22
  }
@@ -26,7 +24,7 @@ contract NftOwnable is
26
24
  /// @dev enforces msg.sender is owner of nft (or initial owner of nft ownable)
27
25
  modifier onlyOwner() {
28
26
  if (msg.sender != getOwner()) {
29
- revert ErrorNotOwner(msg.sender);
27
+ revert ErrorNftOwnableNotOwner(msg.sender);
30
28
  }
31
29
  _;
32
30
  }
@@ -42,21 +40,14 @@ contract NftOwnable is
42
40
  virtual
43
41
  onlyInitializing()
44
42
  {
45
- _setInitialOwner(initialOwner);
46
-
47
43
  initializeRegistryLinked(registryAddress);
48
44
  initializeERC165();
49
- registerInterface(type(INftOwnable).interfaceId);
50
- }
51
45
 
46
+ if(initialOwner == address(0)) {
47
+ revert ErrorNftOwnableInitialOwnerZero();
48
+ }
52
49
 
53
- function initializeOwner(address initialOwner)
54
- public
55
- initializer()
56
- {
57
- _setInitialOwner(initialOwner);
58
- initializeERC165();
59
- registerInterface(type(INftOwnable).interfaceId);
50
+ _getNftOwnableStorage()._initialOwner = initialOwner;
60
51
  }
61
52
 
62
53
 
@@ -71,35 +62,22 @@ contract NftOwnable is
71
62
  NftOwnableStorage storage $ = _getNftOwnableStorage();
72
63
 
73
64
  if ($._nftId.gtz()) {
74
- revert ErrorAlreadyLinked(address(getRegistry()), $._nftId);
75
- }
76
-
77
- if (address(getRegistry()) == address(0)) {
78
- revert ErrorRegistryNotInitialized();
65
+ revert ErrorNftOwnableAlreadyLinked($._nftId);
79
66
  }
80
67
 
81
68
  address contractAddress = address(this);
82
69
 
83
70
  if (!getRegistry().isRegistered(contractAddress)) {
84
- revert ErrorContractNotRegistered(contractAddress);
71
+ revert ErrorNftOwnableContractNotRegistered(contractAddress);
85
72
  }
86
73
 
87
74
  $._nftId = getRegistry().getNftId(contractAddress);
88
75
  }
89
76
 
90
-
91
- // function getRegistry() public view virtual override returns (IRegistry) {
92
- // return _getNftOwnableStorage()._registry;
93
- // }
94
-
95
77
  function getNftId() public view virtual override returns (NftId) {
96
78
  return _getNftOwnableStorage()._nftId;
97
79
  }
98
80
 
99
- function getInitialOwner() public view returns (address) {
100
- return _getNftOwnableStorage()._initialOwner;
101
- }
102
-
103
81
  function getOwner() public view virtual override returns (address) {
104
82
  NftOwnableStorage storage $ = _getNftOwnableStorage();
105
83
 
@@ -110,41 +88,22 @@ contract NftOwnable is
110
88
  return $._initialOwner;
111
89
  }
112
90
 
113
- /// @dev set initialOwner
114
- /// initial owner may only be set during initialization
115
- function _setInitialOwner(address initialOwner)
116
- internal
117
- virtual
118
- onlyInitializing()
119
- {
120
- if(initialOwner == address(0)) {
121
- revert ErrorInitialOwnerZero();
122
- }
123
-
124
- _getNftOwnableStorage()._initialOwner = initialOwner;
125
- }
126
-
127
- // TODO check if function can be refactored to work with a registry address set in an initializer
128
91
  /// @dev used in constructor of registry service manager
129
92
  // links ownership of registry service manager ot nft owner of registry service
130
93
  function _linkToNftOwnable(
131
- address registryAddress,
132
94
  address nftOwnableAddress
133
95
  )
134
96
  internal
135
- onlyOwner()
136
97
  returns (NftId)
137
98
  {
138
99
  NftOwnableStorage storage $ = _getNftOwnableStorage();
139
100
 
140
101
  if ($._nftId.gtz()) {
141
- revert ErrorAlreadyLinked(address(getRegistry()), $._nftId);
102
+ revert ErrorNftOwnableAlreadyLinked($._nftId);
142
103
  }
143
104
 
144
- _setRegistry(registryAddress);
145
-
146
105
  if (!getRegistry().isRegistered(nftOwnableAddress)) {
147
- revert ErrorContractNotRegistered(nftOwnableAddress);
106
+ revert ErrorNftOwnableContractNotRegistered(nftOwnableAddress);
148
107
  }
149
108
 
150
109
  $._nftId = getRegistry().getNftId(nftOwnableAddress);
@@ -153,35 +112,6 @@ contract NftOwnable is
153
112
  }
154
113
 
155
114
 
156
- // function _setRegistry(address registryAddress)
157
- // private
158
- // {
159
- // NftOwnableStorage storage $ = _getNftOwnableStorage();
160
-
161
- // if (address($._registry) != address(0)) {
162
- // revert ErrorRegistryAlreadyInitialized(address($._registry));
163
- // }
164
-
165
- // if (registryAddress == address(0)) {
166
- // revert ErrorRegistryAddressZero();
167
- // }
168
-
169
- // if (registryAddress.code.length == 0) {
170
- // revert ErrorNotRegistry(registryAddress);
171
- // }
172
-
173
- // $._registry = IRegistry(registryAddress);
174
-
175
- // try $._registry.supportsInterface(type(IRegistry).interfaceId) returns (bool isRegistry) {
176
- // if (!isRegistry) {
177
- // revert ErrorNotRegistry(registryAddress);
178
- // }
179
- // } catch {
180
- // revert ErrorNotRegistry(registryAddress);
181
- // }
182
- // }
183
-
184
-
185
115
  function _getNftOwnableStorage() private pure returns (NftOwnableStorage storage $) {
186
116
  assembly {
187
117
  $.slot := NFT_OWNABLE_STORAGE_LOCATION_V1
@@ -1,34 +1,56 @@
1
1
  // SPDX-License-Identifier: Apache-2.0
2
2
  pragma solidity ^0.8.20;
3
3
 
4
- import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
5
- import {ProxyAdmin} from "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
6
4
  import {ITransparentUpgradeableProxy} from "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
7
5
 
6
+ import {Blocknumber, blockNumber} from "../types/Blocknumber.sol";
8
7
  import {IVersionable} from "./IVersionable.sol";
9
8
  import {NftOwnable} from "./NftOwnable.sol";
9
+ import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
10
+ import {ProxyAdmin} from "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
11
+ import {Timestamp, TimestampLib} from "../types/Timestamp.sol";
10
12
  import {UpgradableProxyWithAdmin} from "./UpgradableProxyWithAdmin.sol";
13
+ import {Version, VersionLib} from "../types/Version.sol";
11
14
 
12
15
  /// @dev manages proxy deployments for upgradable contracs of type IVersionable
13
16
  contract ProxyManager is
14
17
  NftOwnable
15
18
  {
16
19
 
17
- event LogProxyDeployed(address indexed proxy, address initialImplementation);
18
- event LogProxyDeployedWithSalt(address indexed proxy, address initialImplementation);
19
- event LogProxyUpgraded(address indexed proxy, address upgradedImplementation);
20
+ struct VersionInfo {
21
+ Version version;
22
+ address implementation;
23
+ address activatedBy;
24
+ Timestamp activatedAt;
25
+ Blocknumber activatedIn;
26
+ }
27
+
28
+ event LogProxyManagerVersionableDeployed(address indexed proxy, address initialImplementation);
29
+ event LogProxyManagerVersionableUpgraded(address indexed proxy, address upgradedImplementation);
20
30
 
21
- error ErrorAlreadyDeployed();
22
- error ErrorAlreadyDeployedWithSalt();
23
- error ErrorNotYetDeployed();
31
+ error ErrorProxyManagerAlreadyDeployed();
32
+ error ErrorProxyManagerNotYetDeployed();
33
+
34
+ error ErrorProxyManagerZeroVersion();
35
+ error ErrorProxyManagerNextVersionNotIncreasing(Version nextVersion);
24
36
 
25
37
  UpgradableProxyWithAdmin internal _proxy;
26
- bool internal _isDeployed;
38
+
39
+ // state to keep version history
40
+ mapping(Version version => VersionInfo info) _versionHistory;
41
+ Version [] _versions;
27
42
 
28
43
  /// @dev only used to capture proxy owner
29
- constructor()
44
+ constructor(address registry)
30
45
  {
31
- initializeOwner(msg.sender);
46
+ initializeProxyManager(registry);
47
+ }
48
+
49
+ function initializeProxyManager(address registry)
50
+ public
51
+ initializer()
52
+ {
53
+ initializeNftOwnable(msg.sender, registry);
32
54
  }
33
55
 
34
56
  /// @dev deploy initial contract
@@ -38,22 +60,23 @@ contract ProxyManager is
38
60
  onlyOwner()
39
61
  returns (IVersionable versionable)
40
62
  {
41
- if (_isDeployed) { revert ErrorAlreadyDeployed(); }
42
- _isDeployed = true;
63
+ if (_versions.length > 0) {
64
+ revert ErrorProxyManagerAlreadyDeployed();
65
+ }
43
66
 
44
67
  address currentProxyOwner = getOwner(); // used by implementation
45
68
  address initialProxyAdminOwner = address(this); // used by proxy
46
- bytes memory data = getDeployData(initialImplementation, currentProxyOwner, initializationData);
47
69
 
48
70
  _proxy = new UpgradableProxyWithAdmin(
49
71
  initialImplementation,
50
72
  initialProxyAdminOwner,
51
- data
73
+ getDeployData(currentProxyOwner, initializationData)
52
74
  );
53
75
 
54
76
  versionable = IVersionable(address(_proxy));
77
+ _updateVersionHistory(versionable.getVersion(), initialImplementation, currentProxyOwner);
55
78
 
56
- emit LogProxyDeployed(address(_proxy), initialImplementation);
79
+ emit LogProxyManagerVersionableDeployed(address(_proxy), initialImplementation);
57
80
  }
58
81
 
59
82
  /// @dev upgrade existing contract
@@ -63,33 +86,84 @@ contract ProxyManager is
63
86
  onlyOwner()
64
87
  returns (IVersionable versionable)
65
88
  {
66
- if (!_isDeployed) { revert ErrorNotYetDeployed(); }
89
+ if (_versions.length == 0) {
90
+ revert ErrorProxyManagerNotYetDeployed();
91
+ }
67
92
 
68
93
  address currentProxyOwner = getOwner();
69
94
  ProxyAdmin proxyAdmin = getProxy().getProxyAdmin();
70
95
  ITransparentUpgradeableProxy proxy = ITransparentUpgradeableProxy(address(_proxy));
71
- bytes memory data = getUpgradeData(newImplementation, currentProxyOwner, upgradeData);
72
96
 
73
97
  proxyAdmin.upgradeAndCall(
74
98
  proxy,
75
99
  newImplementation,
76
- data);
100
+ getUpgradeData(upgradeData));
77
101
 
78
102
  versionable = IVersionable(address(_proxy));
103
+ _updateVersionHistory(versionable.getVersion(), newImplementation, currentProxyOwner);
79
104
 
80
- emit LogProxyUpgraded(address(_proxy), newImplementation);
105
+ emit LogProxyManagerVersionableUpgraded(address(_proxy), newImplementation);
81
106
 
82
107
  }
83
108
 
84
- function getDeployData(address implementation, address proxyOwner, bytes memory deployData) public pure returns (bytes memory data) {
85
- return abi.encodeWithSelector(IVersionable.initializeVersionable.selector, implementation, proxyOwner, deployData);
109
+ function getDeployData(address proxyOwner, bytes memory deployData) public pure returns (bytes memory data) {
110
+ return abi.encodeWithSelector(
111
+ IVersionable.initializeVersionable.selector,
112
+ proxyOwner,
113
+ deployData);
86
114
  }
87
115
 
88
- function getUpgradeData(address implementation, address proxyOwner, bytes memory upgradeData) public pure returns (bytes memory data) {
89
- return abi.encodeWithSelector(IVersionable.upgradeVersionable.selector, implementation, proxyOwner, upgradeData);
116
+ function getUpgradeData(bytes memory upgradeData) public pure returns (bytes memory data) {
117
+ return abi.encodeWithSelector(
118
+ IVersionable.upgradeVersionable.selector,
119
+ upgradeData);
90
120
  }
91
121
 
92
122
  function getProxy() public returns (UpgradableProxyWithAdmin) {
93
123
  return _proxy;
94
124
  }
125
+
126
+ function getVersion() external view virtual returns(Version) {
127
+ return IVersionable(address(_proxy)).getVersion();
128
+ }
129
+
130
+ function getVersionCount() external view returns(uint256) {
131
+ return _versions.length;
132
+ }
133
+
134
+ function getVersion(uint256 idx) external view returns(Version) {
135
+ return _versions[idx];
136
+ }
137
+
138
+ function getVersionInfo(Version _version) external view returns(VersionInfo memory) {
139
+ return _versionHistory[_version];
140
+ }
141
+
142
+ function _updateVersionHistory(
143
+ Version newVersion,
144
+ address implementation,
145
+ address activatedBy
146
+ )
147
+ private
148
+ {
149
+ if(newVersion == VersionLib.zeroVersion()) {
150
+ revert ErrorProxyManagerZeroVersion();
151
+ }
152
+
153
+ if(_versions.length > 0) {
154
+ if(newVersion.toInt() <= _versions[_versions.length-1].toInt()) {
155
+ revert ErrorProxyManagerNextVersionNotIncreasing(newVersion);
156
+ }
157
+ }
158
+
159
+ // update version history
160
+ _versions.push(newVersion);
161
+ _versionHistory[newVersion] = VersionInfo(
162
+ newVersion,
163
+ implementation,
164
+ activatedBy,
165
+ TimestampLib.blockTimestamp(),
166
+ blockNumber()
167
+ );
168
+ }
95
169
  }
@@ -18,8 +18,6 @@ contract Registerable is
18
18
  // keccak256(abi.encode(uint256(keccak256("gif-next.contracts.shared.Registerable.sol")) - 1)) & ~bytes32(uint256(0xff));
19
19
  bytes32 public constant REGISTERABLE_LOCATION_V1 = 0x6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300;
20
20
 
21
- error ErrorRegisterableNotRegistry(address registryAddress);
22
-
23
21
  struct RegisterableStorage {
24
22
  NftId _parentNftId;
25
23
  ObjectType _objectType;
@@ -39,7 +37,7 @@ contract Registerable is
39
37
  ObjectType objectType,
40
38
  bool isInterceptor,
41
39
  address initialOwner,
42
- bytes memory data
40
+ bytes memory registryData // writeonly data that will saved in the object info record of the registry
43
41
  )
44
42
  public
45
43
  virtual
@@ -49,16 +47,11 @@ contract Registerable is
49
47
  initialOwner,
50
48
  registryAddress);
51
49
 
52
- // TODO check parentNftId -> registry.isRegistered(parentNftId)
53
- // TODO check object-parent type pair -> registry.isValidTypeCombo() or something...verify with registry that setup will be able to register...
54
-
55
50
  RegisterableStorage storage $ = _getRegisterableStorage();
56
51
  $._parentNftId = parentNftId;
57
52
  $._objectType = objectType;
58
53
  $._isInterceptor = isInterceptor;
59
- $._data = data;
60
-
61
- registerInterface(type(IRegisterable).interfaceId);
54
+ $._data = registryData;
62
55
  }
63
56
 
64
57
 
@@ -75,7 +68,7 @@ contract Registerable is
75
68
  $._objectType,
76
69
  $._isInterceptor,
77
70
  address(this),
78
- getInitialOwner(),
71
+ getOwner(),
79
72
  $._data);
80
73
  }
81
74
  }
@@ -21,32 +21,6 @@ contract RegistryLinked is
21
21
  virtual
22
22
  onlyInitializing()
23
23
  {
24
- _setRegistry(registryAddress);
25
- }
26
-
27
-
28
- function getRegistry() public view returns (IRegistry) {
29
- return _registry;
30
- }
31
-
32
-
33
- function getRegistryAddress() public view returns (address) {
34
- return address(_registry);
35
- }
36
-
37
-
38
- function _setRegistry(address registryAddress)
39
- internal
40
- {
41
-
42
- if (address(_registry) != address(0)) {
43
- revert ErrorRegistryAlreadyInitialized(address(_registry));
44
- }
45
-
46
- if (registryAddress == address(0)) {
47
- revert ErrorRegistryAddressZero();
48
- }
49
-
50
24
  if (registryAddress.code.length == 0) {
51
25
  revert ErrorNotRegistry(registryAddress);
52
26
  }
@@ -61,4 +35,14 @@ contract RegistryLinked is
61
35
  revert ErrorNotRegistry(registryAddress);
62
36
  }
63
37
  }
38
+
39
+
40
+ function getRegistry() public view returns (IRegistry) {
41
+ return _registry;
42
+ }
43
+
44
+
45
+ function getRegistryAddress() public view returns (address) {
46
+ return address(_registry);
47
+ }
64
48
  }
@@ -3,7 +3,7 @@ pragma solidity ^0.8.19;
3
3
 
4
4
  import {ObjectType, SERVICE} from "../types/ObjectType.sol";
5
5
  import {NftId, zeroNftId} from "../types/NftId.sol";
6
- import {Version, VersionPart, VersionLib} from "../types/Version.sol";
6
+ import {Version, VersionPart, VersionLib, VersionPartLib} from "../types/Version.sol";
7
7
 
8
8
  import {Versionable} from "./Versionable.sol";
9
9
  import {IService} from "./IService.sol";
@@ -22,8 +22,9 @@ abstract contract Service is
22
22
  {
23
23
  function getDomain() public pure virtual override returns(ObjectType);
24
24
 
25
+ // version major version MUST be consistent with major version of getVersion()
25
26
  function getMajorVersion() public view virtual override returns(VersionPart majorVersion) {
26
- return getVersion().toMajorPart();
27
+ return VersionPartLib.toVersionPart(3);
27
28
  }
28
29
 
29
30
  // from Versionable
@@ -44,17 +45,14 @@ abstract contract Service is
44
45
  virtual
45
46
  onlyInitializing()
46
47
  {
47
- // service must provide its name and version upon registration
48
- bytes memory data = abi.encode(getDomain(), getMajorVersion());
49
- NftId registryNftId = _getRegistryNftId(registry);
50
- bool isInterceptor = false;
48
+ initializeRegisterable(
49
+ registry,
50
+ IRegistry(registry).getNftId(),
51
+ SERVICE(),
52
+ false, // is interceptor
53
+ initialOwner,
54
+ ""); // data
51
55
 
52
- initializeRegisterable(registry, registryNftId, SERVICE(), isInterceptor, initialOwner, data);
53
56
  registerInterface(type(IService).interfaceId);
54
57
  }
55
-
56
- // this is just a conveniene function, actual validation will be done upon registration
57
- function _getRegistryNftId(address registryAddress) internal view returns (NftId) {
58
- return IRegistry(registryAddress).getNftId(registryAddress);
59
- }
60
58
  }
@@ -4,6 +4,8 @@ pragma solidity ^0.8.20;
4
4
  import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
5
5
  import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
6
6
 
7
+ /// @dev token specific transfer helper
8
+ /// relies internally on oz SafeERC20.safeTransferFrom
7
9
  contract TokenHandler {
8
10
  IERC20Metadata private _token;
9
11
 
@@ -11,17 +13,21 @@ contract TokenHandler {
11
13
  _token = IERC20Metadata(token);
12
14
  }
13
15
 
14
- // TODO add logging
15
16
  function transfer(
16
17
  address from,
17
18
  address to,
18
- uint256 amount // TODO add authz (only treasury/instance/product/pool/ service)
19
- ) external {
19
+ uint256 amount
20
+ )
21
+ external
22
+ {
20
23
  SafeERC20.safeTransferFrom(_token, from, to, amount);
21
- // _token.transferFrom(from, to, amount);
22
24
  }
23
25
 
24
- function getToken() external view returns (IERC20Metadata) {
26
+ function getToken()
27
+ external
28
+ view
29
+ returns (IERC20Metadata)
30
+ {
25
31
  return _token;
26
32
  }
27
33
  }