@etherisc/gif-next 3.0.0-a511887-523 → 3.0.0-b216819-597

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (474) hide show
  1. package/README.md +10 -1
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +1 -1
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +53 -168
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +1 -1
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +63 -154
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +1 -1
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +20 -107
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +63 -130
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +1 -1
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +145 -100
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +65 -20
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +55 -31
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
  17. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +3 -45
  19. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +1 -1
  21. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +1 -1
  23. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +42 -18
  25. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +67 -158
  27. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +65 -41
  29. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +49 -112
  31. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +112 -227
  33. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +93 -184
  35. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +48 -124
  37. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +19 -106
  39. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
  40. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
  41. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +76 -187
  42. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
  43. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +65 -41
  44. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
  45. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +113 -224
  46. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
  47. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +65 -41
  48. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
  49. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.dbg.json +4 -0
  50. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.json +799 -0
  51. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.dbg.json +4 -0
  52. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.json +229 -0
  53. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.dbg.json +4 -0
  54. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.json +801 -0
  55. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.dbg.json +4 -0
  56. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.json +1353 -0
  57. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.dbg.json +4 -0
  58. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.json +896 -0
  59. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.dbg.json +4 -0
  60. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.json +1466 -0
  61. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.dbg.json +4 -0
  62. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.json +844 -0
  63. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.dbg.json +4 -0
  64. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.json +2289 -0
  65. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.dbg.json +4 -0
  66. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.json +891 -0
  67. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.dbg.json +4 -0
  68. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.json +711 -0
  69. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.dbg.json +4 -0
  70. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.json +586 -0
  71. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.dbg.json +4 -0
  72. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.json +901 -0
  73. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
  74. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +74 -193
  75. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +1 -1
  76. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +65 -41
  77. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
  78. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +73 -192
  79. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
  80. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +81 -200
  81. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +1 -1
  82. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +65 -41
  83. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
  84. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +81 -200
  85. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +1 -1
  86. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +65 -41
  87. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +1 -1
  88. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
  89. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +2 -2
  90. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +1 -1
  91. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  92. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +18 -118
  93. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  94. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +31 -118
  95. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  96. package/artifacts/contracts/instance/Instance.sol/Instance.json +34 -181
  97. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
  98. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +149 -207
  99. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
  100. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +67 -43
  101. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  102. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +236 -75
  103. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  104. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +56 -167
  105. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  106. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +59 -148
  107. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  108. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2 -2
  109. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +1 -1
  110. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +2 -2
  111. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +1 -1
  112. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +2 -2
  113. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
  114. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
  115. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
  116. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
  117. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
  118. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
  119. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
  120. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
  121. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +2 -2
  122. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +1 -1
  123. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +2 -2
  124. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  125. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  126. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  127. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  128. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  129. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
  130. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
  131. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +67 -158
  132. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
  133. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +65 -41
  134. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
  135. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
  136. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +52 -128
  137. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
  138. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +26 -113
  139. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
  140. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +53 -116
  141. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
  142. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +69 -184
  143. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
  144. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +68 -159
  145. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
  146. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +56 -119
  147. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
  148. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +65 -41
  149. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
  150. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +84 -199
  151. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  152. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +80 -171
  153. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
  154. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +19 -106
  155. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  156. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +55 -131
  157. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
  158. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +26 -113
  159. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
  160. package/artifacts/contracts/pool/Pool.sol/Pool.json +56 -119
  161. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +1 -1
  162. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +20 -25
  163. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
  164. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +95 -210
  165. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  166. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +81 -172
  167. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  168. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +50 -165
  169. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  170. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +62 -153
  171. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
  172. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +49 -112
  173. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
  174. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +65 -41
  175. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
  176. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +96 -211
  177. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  178. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +85 -176
  179. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  180. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +19 -106
  181. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
  182. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +19 -106
  183. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  184. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +26 -113
  185. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
  186. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +26 -113
  187. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  188. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +48 -124
  189. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
  190. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +19 -106
  191. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
  192. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +89 -204
  193. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +1 -1
  194. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +20 -12
  195. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  196. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +78 -169
  197. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
  198. package/artifacts/contracts/product/PricingService.sol/PricingService.json +71 -186
  199. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
  200. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +69 -160
  201. package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
  202. package/artifacts/contracts/product/Product.sol/Product.json +49 -112
  203. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
  204. package/artifacts/contracts/product/RiskService.sol/RiskService.json +46 -161
  205. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
  206. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +60 -151
  207. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  208. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
  209. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  210. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +56 -155
  211. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  212. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +185 -219
  213. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +1 -1
  214. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +15 -1
  215. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  216. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  217. package/artifacts/contracts/registry/Registry.sol/Registry.json +96 -314
  218. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
  219. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +145 -207
  220. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +1 -1
  221. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +77 -57
  222. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  223. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +213 -302
  224. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  225. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +55 -162
  226. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +1 -1
  227. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +150 -208
  228. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
  229. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
  230. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
  231. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +146 -181
  232. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
  233. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +56 -32
  234. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  235. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +4 -46
  236. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
  237. package/artifacts/contracts/shared/Component.sol/Component.json +31 -124
  238. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
  239. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +323 -198
  240. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
  241. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +91 -166
  242. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
  243. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +44 -24
  244. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +1 -1
  245. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +1 -1
  246. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +1 -1
  247. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.dbg.json +4 -0
  248. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.json +633 -0
  249. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
  250. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +30 -136
  251. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
  252. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +234 -113
  253. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
  254. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +48 -124
  255. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  256. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  257. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +2 -44
  258. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  259. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +2 -44
  260. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  261. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +17 -117
  262. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  263. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +2 -44
  264. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  265. package/artifacts/contracts/shared/IService.sol/IService.json +19 -106
  266. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
  267. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
  268. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +49 -112
  269. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  270. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
  271. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
  272. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  273. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +4 -46
  274. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  275. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +4 -46
  276. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  277. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +16 -116
  278. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  279. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +4 -46
  280. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  281. package/artifacts/contracts/shared/Service.sol/Service.json +18 -105
  282. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  283. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +29 -42
  284. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +1 -1
  285. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +17 -30
  286. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
  287. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +34 -34
  288. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
  289. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +64 -132
  290. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
  291. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +19 -106
  292. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +1 -1
  293. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
  294. package/artifacts/contracts/staking/Staking.sol/Staking.json +111 -195
  295. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +1 -1
  296. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +2 -2
  297. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
  298. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +71 -156
  299. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
  300. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +4 -46
  301. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
  302. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +42 -157
  303. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
  304. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +58 -149
  305. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
  306. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +200 -274
  307. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +1 -1
  308. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +2 -2
  309. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
  310. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +16 -16
  311. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  312. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
  313. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  314. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +1 -1
  315. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +2 -2
  316. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  317. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
  318. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  319. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
  320. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
  321. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
  322. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
  323. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +1 -1
  324. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +2 -2
  325. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
  326. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +2 -2
  327. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  328. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
  329. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  330. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +22 -25
  331. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  332. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
  333. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
  334. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +23 -4
  335. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
  336. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
  337. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.dbg.json +4 -0
  338. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.json +33 -0
  339. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
  340. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +2 -2
  341. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
  342. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +4 -4
  343. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
  344. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +21 -2
  345. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
  346. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
  347. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
  348. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
  349. package/artifacts/contracts/type/String.sol/StrLib.json +21 -2
  350. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
  351. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +36 -4
  352. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
  353. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
  354. package/artifacts/contracts/type/Version.sol/VersionLib.json +10 -10
  355. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
  356. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +6 -19
  357. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  358. package/artifacts/contracts/upgradeability/{IUpgradeable.sol/IUpgradeable.json → IVersionable.sol/IVersionable.json} +4 -54
  359. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  360. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +40 -109
  361. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  362. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  363. package/artifacts/contracts/upgradeability/{Upgradeable.sol/Upgradeable.json → Versionable.sol/Versionable.json} +4 -54
  364. package/contracts/accounting/AccountingService.sol +2 -2
  365. package/contracts/accounting/AccountingServiceManager.sol +3 -3
  366. package/contracts/accounting/IAccountingService.sol +1 -1
  367. package/contracts/authorization/AccessAdmin.sol +22 -44
  368. package/contracts/authorization/AccessAdminLib.sol +20 -3
  369. package/contracts/authorization/AccessManagerCloneable.sol +48 -24
  370. package/contracts/authorization/Authorization.sol +2 -2
  371. package/contracts/authorization/IAccessAdmin.sol +3 -2
  372. package/contracts/authorization/IServiceAuthorization.sol +1 -1
  373. package/contracts/authorization/ServiceAuthorization.sol +4 -4
  374. package/contracts/distribution/BasicDistributionAuthorization.sol +4 -5
  375. package/contracts/distribution/DistributionService.sol +8 -11
  376. package/contracts/distribution/DistributionServiceManager.sol +3 -3
  377. package/contracts/examples/flight/FlightLib.sol +337 -0
  378. package/contracts/examples/flight/FlightMessageVerifier.sol +128 -0
  379. package/contracts/examples/flight/FlightNft.sol +234 -0
  380. package/contracts/examples/flight/FlightOracle.sol +226 -0
  381. package/contracts/examples/flight/FlightOracleAuthorization.sol +57 -0
  382. package/contracts/examples/flight/FlightPool.sol +89 -0
  383. package/contracts/examples/flight/FlightPoolAuthorization.sol +37 -0
  384. package/contracts/examples/flight/FlightProduct.sol +687 -0
  385. package/contracts/examples/flight/FlightProductAuthorization.sol +70 -0
  386. package/contracts/examples/flight/FlightProductManager.sol +49 -0
  387. package/contracts/examples/flight/FlightUSD.sol +28 -0
  388. package/contracts/examples/flight/originalV1.sol +396 -0
  389. package/contracts/instance/IInstance.sol +1 -1
  390. package/contracts/instance/Instance.sol +6 -3
  391. package/contracts/instance/InstanceAdmin.sol +14 -10
  392. package/contracts/instance/InstanceAuthorizationV3.sol +2 -4
  393. package/contracts/instance/InstanceReader.sol +41 -7
  394. package/contracts/instance/InstanceService.sol +4 -4
  395. package/contracts/instance/InstanceServiceManager.sol +3 -3
  396. package/contracts/oracle/BasicOracle.sol +1 -0
  397. package/contracts/oracle/BasicOracleAuthorization.sol +1 -3
  398. package/contracts/oracle/IOracleService.sol +12 -12
  399. package/contracts/oracle/Oracle.sol +4 -5
  400. package/contracts/oracle/OracleService.sol +1 -1
  401. package/contracts/oracle/OracleServiceManager.sol +3 -3
  402. package/contracts/pool/BasicPoolAuthorization.sol +4 -5
  403. package/contracts/pool/BundleService.sol +5 -5
  404. package/contracts/pool/BundleServiceManager.sol +3 -3
  405. package/contracts/pool/PoolLib.sol +4 -7
  406. package/contracts/pool/PoolService.sol +3 -3
  407. package/contracts/pool/PoolServiceManager.sol +3 -3
  408. package/contracts/product/ApplicationService.sol +5 -4
  409. package/contracts/product/ApplicationServiceManager.sol +3 -3
  410. package/contracts/product/BasicProductAuthorization.sol +7 -7
  411. package/contracts/product/ClaimService.sol +1 -1
  412. package/contracts/product/ClaimServiceManager.sol +3 -3
  413. package/contracts/product/PolicyService.sol +1 -1
  414. package/contracts/product/PolicyServiceLib.sol +5 -3
  415. package/contracts/product/PolicyServiceManager.sol +3 -3
  416. package/contracts/product/PricingService.sol +1 -1
  417. package/contracts/product/PricingServiceManager.sol +3 -3
  418. package/contracts/product/RiskService.sol +1 -1
  419. package/contracts/product/RiskServiceManager.sol +3 -3
  420. package/contracts/registry/ChainNft.sol +1 -1
  421. package/contracts/registry/IRegistry.sol +14 -20
  422. package/contracts/registry/IRegistryService.sol +14 -10
  423. package/contracts/registry/IRelease.sol +3 -0
  424. package/contracts/registry/Registry.sol +78 -124
  425. package/contracts/registry/RegistryAdmin.sol +23 -11
  426. package/contracts/registry/RegistryAuthorization.sol +1 -2
  427. package/contracts/registry/RegistryService.sol +78 -96
  428. package/contracts/registry/RegistryServiceManager.sol +3 -3
  429. package/contracts/registry/ReleaseAdmin.sol +19 -14
  430. package/contracts/registry/ReleaseRegistry.sol +50 -52
  431. package/contracts/registry/ServiceAuthorizationV3.sol +3 -4
  432. package/contracts/shared/Component.sol +17 -24
  433. package/contracts/shared/ComponentService.sol +106 -28
  434. package/contracts/shared/ComponentServiceManager.sol +3 -3
  435. package/contracts/shared/EcdsaChecker.sol +5 -0
  436. package/contracts/shared/IAuthorizedComponent.sol +15 -0
  437. package/contracts/shared/IComponent.sol +3 -5
  438. package/contracts/shared/IComponentService.sol +15 -0
  439. package/contracts/shared/IInstanceLinkedComponent.sol +9 -9
  440. package/contracts/shared/IRegisterable.sol +3 -8
  441. package/contracts/shared/IRegistryLinked.sol +1 -3
  442. package/contracts/shared/IService.sol +2 -2
  443. package/contracts/shared/InstanceLinkedComponent.sol +126 -40
  444. package/contracts/shared/NftOwnable.sol +14 -1
  445. package/contracts/shared/PolicyHolder.sol +2 -2
  446. package/contracts/shared/Registerable.sol +18 -36
  447. package/contracts/shared/RegistryLinked.sol +4 -11
  448. package/contracts/shared/Service.sol +5 -6
  449. package/contracts/shared/TokenHandler.sol +1 -4
  450. package/contracts/staking/IStaking.sol +4 -2
  451. package/contracts/staking/Staking.sol +18 -7
  452. package/contracts/staking/StakingManager.sol +3 -3
  453. package/contracts/staking/StakingService.sol +7 -10
  454. package/contracts/staking/StakingServiceManager.sol +4 -3
  455. package/contracts/staking/StakingStore.sol +8 -10
  456. package/contracts/type/ObjectType.sol +2 -31
  457. package/contracts/type/Referral.sol +6 -0
  458. package/contracts/type/RequestIdSet.sol +62 -0
  459. package/contracts/type/Seconds.sol +4 -0
  460. package/contracts/type/String.sol +30 -0
  461. package/contracts/type/Timestamp.sol +10 -1
  462. package/contracts/type/Version.sol +16 -15
  463. package/contracts/upgradeability/{IUpgradeable.sol → IVersionable.sol} +19 -13
  464. package/contracts/upgradeability/ProxyManager.sol +50 -46
  465. package/contracts/upgradeability/{Upgradeable.sol → Versionable.sol} +14 -25
  466. package/package.json +2 -1
  467. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  468. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -74
  469. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  470. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -74
  471. package/artifacts/contracts/upgradeability/IUpgradeable.sol/IUpgradeable.dbg.json +0 -4
  472. package/artifacts/contracts/upgradeability/Upgradeable.sol/Upgradeable.dbg.json +0 -4
  473. package/contracts/shared/IVersionable.sol +0 -19
  474. package/contracts/shared/Versionable.sol +0 -47
@@ -12,7 +12,7 @@ import {NftId} from "../type/NftId.sol";
12
12
  import {ObjectType, COMPONENT} from "../type/ObjectType.sol";
13
13
  import {Registerable} from "../shared/Registerable.sol";
14
14
  import {TokenHandler} from "../shared/TokenHandler.sol";
15
- import {Version, VersionPart, VersionLib} from "../type/Version.sol";
15
+ import {Version, VersionLib} from "../type/Version.sol";
16
16
 
17
17
 
18
18
  abstract contract Component is
@@ -23,12 +23,9 @@ abstract contract Component is
23
23
  bytes32 public constant COMPONENT_LOCATION_V1 = 0xffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00;
24
24
 
25
25
  struct ComponentStorage {
26
- // slot 0
26
+ string _name; // unique (per instance) component name
27
+ bool _isInterceptor;
27
28
  IComponentService _componentService;
28
- // slot 1
29
- string _name; // unique (per instance) component name -> make pure to save gas?
30
- // slot 2
31
- bytes _data;
32
29
  }
33
30
 
34
31
 
@@ -47,7 +44,7 @@ abstract contract Component is
47
44
  }
48
45
  }
49
46
 
50
- /// @dev requires component parent to be registered
47
+
51
48
  function __Component_init(
52
49
  address authority,
53
50
  address registry,
@@ -78,6 +75,7 @@ abstract contract Component is
78
75
  // set component state
79
76
  ComponentStorage storage $ = _getComponentStorage();
80
77
  $._name = name;
78
+ $._isInterceptor = isInterceptor;
81
79
  $._componentService = IComponentService(_getServiceAddress(COMPONENT()));
82
80
 
83
81
  _registerInterface(type(IAccessManaged).interfaceId);
@@ -95,17 +93,6 @@ abstract contract Component is
95
93
  _nftTransferFrom(from, to, tokenId, operator);
96
94
  }
97
95
 
98
- /// @inheritdoc IComponent
99
- function withdrawFees(Amount amount)
100
- external
101
- virtual
102
- restricted()
103
- onlyOwner()
104
- returns (Amount withdrawnAmount)
105
- {
106
- return _withdrawFees(amount);
107
- }
108
-
109
96
 
110
97
  function getWallet() public view virtual returns (address walletAddress) {
111
98
  return getTokenHandler().getWallet();
@@ -123,6 +110,10 @@ abstract contract Component is
123
110
  return getComponentInfo().name;
124
111
  }
125
112
 
113
+ function getVersion() public view virtual returns (Version version) {
114
+ return VersionLib.toVersion(1, 0, 0);
115
+ }
116
+
126
117
  function getComponentInfo() public virtual view returns (IComponents.ComponentInfo memory info) {
127
118
  if (isRegistered()) {
128
119
  return _getComponentInfo();
@@ -138,6 +129,14 @@ abstract contract Component is
138
129
  }
139
130
 
140
131
 
132
+ function isNftInterceptor() public virtual view returns(bool isInterceptor) {
133
+ if (isRegistered()) {
134
+ return getRegistry().getObjectInfo(address(this)).isInterceptor;
135
+ } else {
136
+ return _getComponentStorage()._isInterceptor;
137
+ }
138
+ }
139
+
141
140
 
142
141
  function isRegistered() public virtual view returns (bool) {
143
142
  return getRegistry().getNftIdForAddress(address(this)).gtz();
@@ -171,12 +170,6 @@ abstract contract Component is
171
170
  // empty default implementation
172
171
  }
173
172
 
174
- function _withdrawFees(Amount amount)
175
- internal
176
- returns (Amount withdrawnAmount)
177
- {
178
- return _getComponentStorage()._componentService.withdrawFees(amount);
179
- }
180
173
 
181
174
  /// @dev Sets the components wallet to the specified address.
182
175
  /// Depending on the source of the component information this function needs to be overwritten.
@@ -49,7 +49,7 @@ contract ComponentService is
49
49
  )
50
50
  internal
51
51
  virtual override
52
- onlyInitializing()
52
+ initializer()
53
53
  {
54
54
  (
55
55
  address authority,
@@ -74,21 +74,26 @@ contract ComponentService is
74
74
  restricted()
75
75
  returns (NftId componentNftId)
76
76
  {
77
+ // checks
77
78
  // check sender is registered product
78
79
  IRegistry registry = getRegistry();
79
- if (!registry.isObjectType(msg.sender, PRODUCT(), getRelease())) {
80
+ if (!registry.isObjectType(msg.sender, PRODUCT())) {
80
81
  revert ErrorComponentServiceCallerNotProduct(msg.sender);
81
82
  }
82
83
 
84
+ // check provided address is product contract
85
+ if (!_isInstanceLinkedComponent(componentAddress)) {
86
+ revert ErrorComponentServiceNotComponent(componentAddress);
87
+ }
88
+
83
89
  NftId productNftId = registry.getNftIdForAddress(msg.sender);
84
90
  IInstance instance = IInstance(
85
91
  registry.getObjectAddress(
86
92
  registry.getParentNftId(productNftId)));
87
93
 
88
- componentNftId = _register(
94
+ componentNftId = _verifyAndRegister(
89
95
  instance,
90
- componentAddress,
91
- COMPONENT(),
96
+ componentAddress,
92
97
  productNftId, // product is parent of component to be registered
93
98
  address(0)); // token will be inhereited from product
94
99
  }
@@ -205,18 +210,23 @@ contract ComponentService is
205
210
  nonReentrant()
206
211
  returns (NftId productNftId)
207
212
  {
213
+ // checks
208
214
  // check sender is registered instance
209
215
  IRegistry registry = getRegistry();
210
- if (!registry.isObjectType(msg.sender, INSTANCE(), getRelease())) {
216
+ if (!registry.isObjectType(msg.sender, INSTANCE())) {
211
217
  revert ErrorComponentServiceCallerNotInstance(msg.sender);
212
218
  }
213
219
 
220
+ // check provided address is product contract
221
+ if (!_isProduct(productAddress)) {
222
+ revert ErrorComponentServiceNotProduct(productAddress);
223
+ }
224
+
214
225
  IInstance instance = IInstance(msg.sender);
215
226
  NftId instanceNftId = registry.getNftIdForAddress(msg.sender);
216
- productNftId = _register(
227
+ productNftId = _verifyAndRegister(
217
228
  instance,
218
229
  productAddress,
219
- PRODUCT(),
220
230
  instanceNftId, // instance is parent of product to be registered
221
231
  token);
222
232
 
@@ -226,6 +236,25 @@ contract ComponentService is
226
236
  token);
227
237
  }
228
238
 
239
+
240
+ function _isProduct(address target) internal view virtual returns (bool) {
241
+ if (!_isInstanceLinkedComponent(target)) {
242
+ return false;
243
+ }
244
+
245
+ return IInstanceLinkedComponent(target).getInitialInfo().objectType == PRODUCT();
246
+ }
247
+
248
+
249
+ function _isInstanceLinkedComponent(address target) internal view virtual returns (bool) {
250
+ if (!ContractLib.isContract(target)) {
251
+ return false;
252
+ }
253
+
254
+ return ContractLib.supportsInterface(target, type(IInstanceLinkedComponent).interfaceId);
255
+ }
256
+
257
+
229
258
  /// @inheritdoc IComponentService
230
259
  function setProductFees(
231
260
  Fee memory productFee, // product fee on net premium
@@ -449,10 +478,9 @@ contract ComponentService is
449
478
 
450
479
  /// @dev Registers the component represented by the provided address.
451
480
  /// The caller must ensure componentAddress is IInstanceLinkedComponent.
452
- function _register(
481
+ function _verifyAndRegister(
453
482
  IInstance instance,
454
483
  address componentAddress,
455
- ObjectType componentType,
456
484
  NftId parentNftId,
457
485
  address token
458
486
  )
@@ -460,27 +488,36 @@ contract ComponentService is
460
488
  virtual
461
489
  returns (NftId componentNftId)
462
490
  {
463
- IInstanceLinkedComponent component = IInstanceLinkedComponent(componentAddress);
464
- IRegistry.ObjectInfo memory info = _registryService.registerComponent(
465
- component,
466
- parentNftId,
467
- componentType,
468
- address(0)); // component owner have no importance here
469
-
470
- componentType = info.objectType;
471
- componentNftId = info.nftId;
491
+ (
492
+ IInstanceLinkedComponent component,
493
+ IRegistry.ObjectInfo memory objectInfo // initial component info
494
+ ) = _getAndVerifyRegisterableComponent(
495
+ componentAddress,
496
+ parentNftId);
472
497
 
473
498
  InstanceStore instanceStore = instance.getInstanceStore();
474
- InstanceReader instanceReader = instance.getInstanceReader();
499
+ ObjectType componentType = objectInfo.objectType;
475
500
 
476
501
  if(componentType == PRODUCT()) {
502
+ // register product with registry
503
+ componentNftId = _registryService.registerProduct(
504
+ component,
505
+ objectInfo.initialOwner).nftId;
506
+
477
507
  // create product info in instance store
478
508
  _createProduct(instance.getProductStore(), componentNftId, componentAddress);
479
509
  } else {
510
+ // register non product component with registry
511
+ componentNftId = _registryService.registerProductLinkedComponent(
512
+ component,
513
+ objectInfo.objectType,
514
+ objectInfo.initialOwner).nftId;
515
+
516
+ InstanceReader instanceReader = instance.getInstanceReader();
517
+
480
518
  // create non product component info in instance store
481
- NftId productNftId = info.parentNftId;
519
+ NftId productNftId = parentNftId;
482
520
  IComponents.ProductInfo memory productInfo = instanceReader.getProductInfo(productNftId);
483
-
484
521
  if(componentType == POOL()) {
485
522
  _createPool(instanceStore, instance.getProductStore(), productNftId, componentNftId, componentAddress, productInfo);
486
523
  } else if(componentType == DISTRIBUTION()) {
@@ -492,7 +529,7 @@ contract ComponentService is
492
529
  }
493
530
 
494
531
  // get product's token
495
- token = address(instanceReader.getToken(productNftId));
532
+ token = address(instanceReader.getTokenHandler(productNftId).TOKEN());
496
533
  }
497
534
 
498
535
  _checkToken(instance, token);
@@ -500,13 +537,17 @@ contract ComponentService is
500
537
  InstanceAdmin instanceAdmin = instance.getInstanceAdmin();
501
538
 
502
539
  // deploy and wire token handler
503
- IRegistry registry = getRegistry();
504
540
  IComponents.ComponentInfo memory componentInfo = component.getInitialComponentInfo();
505
541
  componentInfo.tokenHandler = TokenHandlerDeployerLib.deployTokenHandler(
506
- address(registry),
507
- componentAddress, // initially, component is its own wallet
542
+ address(getRegistry()),
543
+ address(component), // initially, component is its own wallet
508
544
  token,
509
545
  instanceAdmin.authority());
546
+
547
+ emit LogComponentServiceTokenHandlerDeployed(
548
+ componentNftId,
549
+ address(componentInfo.tokenHandler),
550
+ token);
510
551
 
511
552
  // register component with instance
512
553
  instanceStore.createComponent(
@@ -523,9 +564,9 @@ contract ComponentService is
523
564
  instance.getNftId(),
524
565
  componentNftId,
525
566
  componentType,
526
- componentAddress,
567
+ address(component),
527
568
  token,
528
- registry.ownerOf(componentNftId));
569
+ objectInfo.initialOwner);
529
570
  }
530
571
 
531
572
 
@@ -577,6 +618,43 @@ contract ComponentService is
577
618
  info = instanceReader.getFeeInfo(productNftId);
578
619
  }
579
620
 
621
+
622
+ /// @dev Based on the provided component address required type the component
623
+ /// and related instance contract this function reverts iff:
624
+ /// - the component parent does not match with the required parent
625
+ /// - the component release does not match with the service release
626
+ /// - the component has already been registered
627
+ function _getAndVerifyRegisterableComponent(
628
+ address componentAddress,
629
+ NftId requiredParent
630
+ )
631
+ internal
632
+ view
633
+ returns (
634
+ IInstanceLinkedComponent component,
635
+ IRegistry.ObjectInfo memory info
636
+ )
637
+ {
638
+ component = IInstanceLinkedComponent(componentAddress);
639
+ info = component.getInitialInfo();
640
+
641
+ // check component parent
642
+ if(info.parentNftId != requiredParent) {
643
+ revert ErrorComponentServiceComponentParentInvalid(componentAddress, requiredParent, info.parentNftId);
644
+ }
645
+
646
+ // check component release (must match with service release)
647
+ if(component.getRelease() != getRelease()) {
648
+ revert ErrorComponentServiceComponentReleaseMismatch(componentAddress, getRelease(), component.getRelease());
649
+ }
650
+
651
+ // check component has not already been registered
652
+ if (getRegistry().getNftIdForAddress(componentAddress).gtz()) {
653
+ revert ErrorComponentServiceComponentAlreadyRegistered(componentAddress);
654
+ }
655
+ }
656
+
657
+
580
658
  function _setLocked(InstanceAdmin instanceAdmin, address componentAddress, bool locked) internal {
581
659
  instanceAdmin.setTargetLocked(componentAddress, locked);
582
660
  }
@@ -2,7 +2,7 @@
2
2
  pragma solidity ^0.8.20;
3
3
 
4
4
  import {ComponentService} from "./ComponentService.sol";
5
- import {IUpgradeable} from "../upgradeability/IUpgradeable.sol";
5
+ import {IVersionable} from "../upgradeability/IVersionable.sol";
6
6
  import {ProxyManager} from "../upgradeability/ProxyManager.sol";
7
7
 
8
8
  contract ComponentServiceManager is ProxyManager {
@@ -18,13 +18,13 @@ contract ComponentServiceManager is ProxyManager {
18
18
  {
19
19
  ComponentService svc = new ComponentService();
20
20
  bytes memory data = abi.encode(authority, registry);
21
- IUpgradeable upgradeable = initialize(
21
+ IVersionable versionable = initialize(
22
22
  registry,
23
23
  address(svc),
24
24
  data,
25
25
  salt);
26
26
 
27
- _componentService = ComponentService(address(upgradeable));
27
+ _componentService = ComponentService(address(versionable));
28
28
  }
29
29
 
30
30
  //--- view functions ----------------------------------------------------//
@@ -0,0 +1,5 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";
5
+ import {SignatureChecker} from "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
@@ -0,0 +1,15 @@
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ pragma solidity ^0.8.20;
3
+
4
+ import {IComponent} from "../shared/IComponent.sol";
5
+ import {IAuthorization} from "../authorization/IAuthorization.sol";
6
+
7
+ /// @dev component base class
8
+ /// component examples are product, distribution, pool and oracle
9
+ interface IAuthorizedComponent is
10
+ IComponent
11
+ {
12
+ /// @dev returns the initial component authorization specification.
13
+ function getAuthorization() external view returns (IAuthorization authorization);
14
+
15
+ }
@@ -29,11 +29,6 @@ interface IComponent is
29
29
  event LogComponentWalletTokensTransferred(address from, address to, uint256 amount);
30
30
  event LogComponentTokenHandlerApproved(address tokenHandler, address token, Amount limit, bool isMaxAmount);
31
31
 
32
- /// @dev Withdraw fees from the distribution component. Only component owner is allowed to withdraw fees.
33
- /// @param amount the amount to withdraw
34
- /// @return withdrawnAmount the amount that was actually withdrawn
35
- function withdrawFees(Amount amount) external returns (Amount withdrawnAmount);
36
-
37
32
  /// @dev returns the name of this component
38
33
  /// to successfully register the component with an instance the name MUST be unique in the linked instance
39
34
  function getName() external view returns (string memory name);
@@ -48,6 +43,9 @@ interface IComponent is
48
43
  /// the default address is the token handler address
49
44
  function getWallet() external view returns (address walletAddress);
50
45
 
46
+ /// @dev returns true iff this compoent intercepts nft minting and transfers for objects registered by this component
47
+ function isNftInterceptor() external view returns(bool isInterceptor);
48
+
51
49
  /// @dev returns true iff this component is registered with the registry
52
50
  function isRegistered() external view returns (bool);
53
51
 
@@ -18,11 +18,18 @@ interface IComponentService is
18
18
  {
19
19
  // registerProduct
20
20
  error ErrorComponentServiceCallerNotInstance(address caller);
21
+ error ErrorComponentServiceNotProduct(address product);
21
22
  error ErrorComponentServiceTokenInvalid(address token);
22
23
 
23
24
  // registerComponent
24
25
  error ErrorComponentServiceCallerNotProduct(address caller);
26
+ error ErrorComponentServiceNotComponent(address component);
27
+
28
+ error ErrorComponentServiceNotInstanceLinkedComponent(address component);
25
29
  error ErrorComponentServiceComponentTypeNotSupported(address component, ObjectType invalid);
30
+ error ErrorComponentServiceComponentParentInvalid(address component, NftId required, NftId actual);
31
+ error ErrorComponentServiceComponentReleaseMismatch(address component, VersionPart serviceRelease, VersionPart componentRelease);
32
+ error ErrorComponentServiceComponentAlreadyRegistered(address component);
26
33
 
27
34
  error ErrorProductServiceNoDistributionExpected(NftId productNftId);
28
35
  error ErrorProductServiceDistributionAlreadyRegistered(NftId productNftId, NftId distributionNftId);
@@ -30,11 +37,19 @@ interface IComponentService is
30
37
  error ErrorProductServiceOraclesAlreadyRegistered(NftId productNftId, uint8 expectedOracles);
31
38
  error ErrorProductServicePoolAlreadyRegistered(NftId productNftId, NftId poolNftId);
32
39
 
40
+ error ErrorComponentServiceNewWalletAddressZero();
41
+ error ErrorComponentServiceWalletAddressZero();
42
+ error ErrorComponentServiceWalletAddressIsSameAsCurrent();
43
+
33
44
  error ErrorComponentServiceWithdrawAmountIsZero();
34
45
  error ErrorComponentServiceWithdrawAmountExceedsLimit(Amount withdrawnAmount, Amount withdrawLimit);
46
+ error ErrorComponentServiceWalletAllowanceTooSmall(address wallet, address spender, uint256 allowance, uint256 amount);
35
47
 
36
48
  event LogComponentServiceComponentLocked(address component, bool locked);
49
+ event LogComponentServiceTokenHandlerDeployed(NftId componentNftId, address tokenHandler, address token);
37
50
  event LogComponentServiceRegistered(NftId instanceNftId, NftId componentNftId, ObjectType componentType, address component, address token, address initialOwner);
51
+ event LogComponentServiceWalletAddressChanged(NftId componentNftId, address currentWallet, address newWallet);
52
+ event LogComponentServiceWalletTokensTransferred(NftId componentNftId, address currentWallet, address newWallet, uint256 currentBalance);
38
53
  event LogComponentServiceComponentFeesWithdrawn(NftId componentNftId, address recipient, address token, Amount withdrawnAmount);
39
54
  event LogComponentServiceProductFeesUpdated(NftId productNftId);
40
55
  event LogComponentServiceDistributionFeesUpdated(NftId distributionNftId);
@@ -2,26 +2,26 @@
2
2
  pragma solidity ^0.8.20;
3
3
 
4
4
  import {Amount} from "../type/Amount.sol";
5
- import {IComponent} from "../shared/IComponent.sol";
5
+ import {IAuthorizedComponent} from "../shared/IAuthorizedComponent.sol";
6
6
  import {IAuthorization} from "../authorization/IAuthorization.sol";
7
7
  import {IInstance} from "../instance/IInstance.sol";
8
8
  import {NftId} from "../type/NftId.sol";
9
9
  import {ObjectType} from "../type/ObjectType.sol";
10
- import {VersionPart} from "../type/Version.sol";
11
10
 
12
11
  /// @dev component base class
13
12
  /// component examples are product, distribution, pool and oracle
14
13
  interface IInstanceLinkedComponent is
15
- IComponent
14
+ IAuthorizedComponent
16
15
  {
17
- error ErrorInstanceLinkedComponentInstanceInvalid();
18
- error ErrorInstanceLinkedComponentInstanceMismatch(VersionPart instanceRelease, VersionPart componentRelease);
16
+ error ErrorInstanceLinkedComponentTypeMismatch(ObjectType requiredType, ObjectType objectType);
17
+ error ErrorInstanceLinkedComponentNotProduct(NftId nftId, ObjectType objectType);
18
+
19
+ /// @dev Withdraw fees from the distribution component. Only component owner is allowed to withdraw fees.
20
+ /// @param amount the amount to withdraw
21
+ /// @return withdrawnAmount the amount that was actually withdrawn
22
+ function withdrawFees(Amount amount) external returns (Amount withdrawnAmount);
19
23
 
20
24
  /// @dev defines the instance to which this component is linked to
21
25
  function getInstance() external view returns (IInstance instance);
22
26
 
23
- // TODO consider moving to Registerable -> it works with authority
24
- /// @dev returns the initial component authorization specification.
25
- function getAuthorization() external view returns (IAuthorization authorization);
26
-
27
27
  }
@@ -4,8 +4,8 @@ pragma solidity ^0.8.20;
4
4
  import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
5
5
 
6
6
  import {INftOwnable} from "./INftOwnable.sol";
7
+ import {IRelease} from "../registry/IRelease.sol";
7
8
  import {IRegistry} from "../registry/IRegistry.sol";
8
- import {IVersionable} from "./IVersionable.sol";
9
9
 
10
10
  /// @title IRegisterable
11
11
  /// @dev Marks contracts that are intended to be registered in the registry.
@@ -13,7 +13,7 @@ import {IVersionable} from "./IVersionable.sol";
13
13
  interface IRegisterable is
14
14
  IAccessManaged,
15
15
  INftOwnable,
16
- IVersionable
16
+ IRelease
17
17
  {
18
18
  // __Registerable_init
19
19
  error ErrorAuthorityInvalid(address authority);
@@ -32,10 +32,5 @@ interface IRegisterable is
32
32
  function getInitialInfo()
33
33
  external
34
34
  view
35
- returns (IRegistry.ObjectInfo memory info);
36
-
37
- function getInitialData()
38
- external
39
- view
40
- returns (bytes memory data);
35
+ returns (IRegistry.ObjectInfo memory);
41
36
  }
@@ -5,9 +5,7 @@ import {IRegistry} from "../registry/IRegistry.sol";
5
5
 
6
6
  interface IRegistryLinked {
7
7
 
8
- error ErrorRegistryLinkedRegistryAlreadyInitialized(address target, address registry);
9
- error ErrorRegistryLinkedNotRegistry(address target, address notRegistry);
10
- error ErrorRegistryLinkedRegistryMismatch(address target, address givenRegistry, address pureRegistry);
8
+ error ErrorNotRegistry(address registryAddress);
11
9
 
12
10
  function getRegistry() external view returns (IRegistry);
13
11
  }
@@ -4,14 +4,14 @@ pragma solidity ^0.8.20;
4
4
  import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
5
5
 
6
6
  import {IRegisterable} from "./IRegisterable.sol";
7
- import {IUpgradeable} from "../upgradeability/IUpgradeable.sol";
7
+ import {IVersionable} from "../upgradeability/IVersionable.sol";
8
8
  import {ObjectType} from "../type/ObjectType.sol";
9
9
  import {RoleId} from "../type/RoleId.sol";
10
10
 
11
11
  interface IService is
12
12
  IAccessManaged,
13
13
  IRegisterable,
14
- IUpgradeable
14
+ IVersionable
15
15
  {
16
16
  /// @dev returns the domain for this service.
17
17
  /// In any GIF release only one service for any given domain may be deployed.