@etherisc/gif-next 0.0.2-93de5de-423 → 0.0.2-93ee1cf-782

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 (684) hide show
  1. package/README.md +83 -93
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1293 -0
  4. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
  6. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  8. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +414 -0
  10. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  11. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  12. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1060 -0
  14. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +295 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  18. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +1196 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1324 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +470 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1018 -0
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1494 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +862 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +324 -350
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +984 -0
  36. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  37. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  38. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  39. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1429 -0
  40. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +502 -0
  42. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1979 -0
  44. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +470 -0
  46. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  48. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  49. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1430 -0
  50. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1177 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1606 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2281 -0
  56. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  57. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +808 -0
  58. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +338 -2102
  60. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  61. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +301 -77
  62. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  63. package/artifacts/contracts/instance/Instance.sol/Instance.json +404 -2888
  64. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1666 -0
  66. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  67. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +574 -0
  68. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1382 -482
  70. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +366 -370
  72. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  73. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +159 -106
  74. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3668 -0
  76. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  77. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +810 -0
  78. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  80. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  81. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  82. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  84. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  85. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  86. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  88. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  90. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  91. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  92. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  93. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  94. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  95. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  96. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  97. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  98. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  99. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +961 -0
  100. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  101. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +478 -0
  102. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  103. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  104. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  105. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +776 -0
  106. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  107. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → oracle/IOracleService.sol/IOracleService.json} +370 -283
  108. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  109. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +327 -303
  110. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +990 -0
  112. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +766 -0
  114. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  115. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +473 -541
  116. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  117. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +502 -0
  118. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  119. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1360 -0
  120. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  121. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +822 -0
  122. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  123. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +922 -0
  124. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  125. package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +414 -392
  126. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  127. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1285 -0
  128. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  129. package/artifacts/contracts/pool/Pool.sol/Pool.json +1029 -0
  130. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  131. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1619 -0
  132. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  133. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +794 -0
  134. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  135. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +806 -0
  136. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  137. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
  138. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  139. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +422 -520
  140. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  141. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +470 -0
  142. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  143. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1484 -0
  144. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +862 -0
  146. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  147. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +203 -202
  148. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  149. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +979 -0
  150. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  151. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +944 -0
  152. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  153. package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +253 -137
  154. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  155. package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +464 -265
  156. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  157. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +120 -64
  158. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  159. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1313 -0
  160. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  161. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +810 -0
  162. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  163. package/artifacts/contracts/product/PricingService.sol/PricingService.json +923 -0
  164. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  165. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  166. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  167. package/artifacts/contracts/product/Product.sol/Product.json +1106 -0
  168. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  169. package/artifacts/contracts/product/RiskService.sol/RiskService.json +638 -0
  170. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  171. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +718 -0
  172. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  173. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  174. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  175. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +473 -24
  176. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  177. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +263 -123
  178. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  179. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  180. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  181. package/artifacts/contracts/registry/Registry.sol/Registry.json +958 -118
  182. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  183. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1899 -0
  184. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  185. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +349 -253
  186. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  187. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +161 -94
  188. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  189. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  190. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  191. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1067 -0
  192. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  193. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  194. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  195. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  196. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  197. package/artifacts/contracts/shared/Component.sol/Component.json +695 -0
  198. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  199. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1835 -0
  200. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  201. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +846 -0
  202. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  203. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +118 -185
  204. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  205. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +488 -0
  206. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  207. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  208. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  209. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  210. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  211. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +245 -138
  212. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  213. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1402 -0
  214. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  215. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +711 -0
  216. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  217. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  218. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  219. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  220. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  221. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
  222. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  223. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  224. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  225. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +28 -6
  226. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  227. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  228. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  229. package/artifacts/contracts/shared/IService.sol/IService.json +135 -18
  230. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  231. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  232. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  233. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +799 -0
  234. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  235. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  236. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  237. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  238. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  239. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  240. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  241. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
  242. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  243. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  244. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  245. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +69 -99
  246. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  247. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  248. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  249. package/artifacts/contracts/shared/Service.sol/Service.json +136 -108
  250. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  251. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +734 -8
  252. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  253. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +395 -0
  254. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  255. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  256. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  257. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +723 -677
  258. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  259. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1043 -0
  260. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  261. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  262. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  263. package/artifacts/contracts/staking/Staking.sol/Staking.json +1816 -0
  264. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  265. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  266. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  267. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +780 -0
  268. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  269. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  270. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  271. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1265 -0
  272. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  273. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +734 -0
  274. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  275. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  276. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  277. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  278. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  279. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  280. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  282. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  284. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  286. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  287. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  288. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  290. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  291. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  292. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  293. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  294. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  296. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  297. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  298. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  300. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  302. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  304. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  306. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +180 -0
  308. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  310. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  312. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  314. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  316. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  317. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  318. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  320. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  322. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  324. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  326. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  328. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  330. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  331. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  332. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  333. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  334. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  335. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  336. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  337. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  338. package/contracts/authorization/AccessAdmin.sol +616 -0
  339. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  340. package/contracts/authorization/Authorization.sol +289 -0
  341. package/contracts/authorization/IAccess.sol +49 -0
  342. package/contracts/authorization/IAccessAdmin.sol +137 -0
  343. package/contracts/authorization/IAuthorization.sol +60 -0
  344. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  345. package/contracts/authorization/ReleaseAccessManager.sol +38 -0
  346. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  347. package/contracts/distribution/BasicDistribution.sol +139 -0
  348. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  349. package/contracts/distribution/Distribution.sol +284 -0
  350. package/contracts/distribution/DistributionService.sol +354 -0
  351. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  352. package/contracts/distribution/IDistributionComponent.sol +52 -0
  353. package/contracts/distribution/IDistributionService.sol +100 -0
  354. package/contracts/examples/fire/DamageLevel.sol +59 -0
  355. package/contracts/examples/fire/FirePool.sol +86 -0
  356. package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
  357. package/contracts/examples/fire/FireProduct.sol +431 -0
  358. package/contracts/examples/fire/FireProductAuthorization.sol +44 -0
  359. package/contracts/examples/fire/FireUSD.sol +26 -0
  360. package/contracts/examples/unpermissioned/SimpleDistribution.sol +58 -0
  361. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  362. package/contracts/examples/unpermissioned/SimplePool.sol +108 -0
  363. package/contracts/examples/unpermissioned/SimpleProduct.sol +345 -0
  364. package/contracts/instance/BundleSet.sol +130 -0
  365. package/contracts/instance/IInstance.sol +51 -71
  366. package/contracts/instance/IInstanceService.sol +41 -26
  367. package/contracts/instance/Instance.sol +173 -223
  368. package/contracts/instance/InstanceAdmin.sol +278 -0
  369. package/contracts/instance/InstanceAuthorizationV3.sol +217 -0
  370. package/contracts/instance/InstanceReader.sol +349 -63
  371. package/contracts/instance/InstanceService.sol +295 -347
  372. package/contracts/instance/InstanceServiceManager.sol +14 -29
  373. package/contracts/instance/InstanceStore.sol +287 -0
  374. package/contracts/instance/RiskSet.sol +119 -0
  375. package/contracts/instance/base/BalanceStore.sol +123 -0
  376. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  377. package/contracts/instance/base/ObjectCounter.sol +21 -0
  378. package/contracts/instance/base/ObjectLifecycle.sol +111 -0
  379. package/contracts/instance/base/ObjectSet.sol +78 -0
  380. package/contracts/instance/module/IAccess.sol +19 -20
  381. package/contracts/instance/module/IBundle.sol +8 -8
  382. package/contracts/instance/module/IComponents.sol +50 -0
  383. package/contracts/instance/module/IDistribution.sol +6 -4
  384. package/contracts/instance/module/IPolicy.sol +56 -18
  385. package/contracts/instance/module/IRisk.sol +2 -1
  386. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  387. package/contracts/oracle/BasicOracle.sol +47 -0
  388. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  389. package/contracts/oracle/IOracle.sol +36 -0
  390. package/contracts/oracle/IOracleComponent.sol +33 -0
  391. package/contracts/oracle/IOracleService.sol +66 -0
  392. package/contracts/oracle/Oracle.sol +156 -0
  393. package/contracts/oracle/OracleService.sol +309 -0
  394. package/contracts/oracle/OracleServiceManager.sol +39 -0
  395. package/contracts/pool/BasicPool.sol +175 -0
  396. package/contracts/pool/BasicPoolAuthorization.sol +68 -0
  397. package/contracts/pool/BundleService.sol +423 -0
  398. package/contracts/pool/BundleServiceManager.sol +39 -0
  399. package/contracts/pool/IBundleService.sol +122 -0
  400. package/contracts/pool/IPoolComponent.sol +62 -0
  401. package/contracts/pool/IPoolService.sol +153 -0
  402. package/contracts/pool/Pool.sol +345 -0
  403. package/contracts/pool/PoolService.sol +612 -0
  404. package/contracts/pool/PoolServiceManager.sol +39 -0
  405. package/contracts/product/ApplicationService.sol +259 -0
  406. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  407. package/contracts/product/BasicProduct.sol +49 -0
  408. package/contracts/product/BasicProductAuthorization.sol +42 -0
  409. package/contracts/product/ClaimService.sol +643 -0
  410. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  411. package/contracts/{instance/service → product}/IApplicationService.sol +20 -36
  412. package/contracts/product/IClaimService.sol +130 -0
  413. package/contracts/product/IPolicyService.sol +90 -0
  414. package/contracts/product/IPricingService.sol +39 -0
  415. package/contracts/product/IProductComponent.sol +59 -0
  416. package/contracts/product/IRiskService.sol +33 -0
  417. package/contracts/product/PolicyService.sol +733 -0
  418. package/contracts/product/PolicyServiceManager.sol +39 -0
  419. package/contracts/product/PricingService.sol +300 -0
  420. package/contracts/product/PricingServiceManager.sol +39 -0
  421. package/contracts/product/Product.sol +427 -0
  422. package/contracts/product/RiskService.sol +107 -0
  423. package/contracts/product/RiskServiceManager.sol +39 -0
  424. package/contracts/registry/ChainNft.sol +79 -34
  425. package/contracts/registry/IRegistry.sol +100 -26
  426. package/contracts/registry/IRegistryService.sol +36 -41
  427. package/contracts/registry/ITransferInterceptor.sol +1 -1
  428. package/contracts/registry/Registry.sol +465 -204
  429. package/contracts/registry/RegistryAdmin.sol +451 -0
  430. package/contracts/registry/RegistryService.sol +87 -129
  431. package/contracts/registry/RegistryServiceManager.sol +23 -32
  432. package/contracts/registry/ReleaseLifecycle.sol +30 -0
  433. package/contracts/registry/ReleaseRegistry.sol +485 -0
  434. package/contracts/registry/ServiceAuthorizationV3.sol +175 -0
  435. package/contracts/registry/TokenRegistry.sol +261 -62
  436. package/contracts/shared/Component.sol +217 -0
  437. package/contracts/shared/ComponentService.sol +806 -0
  438. package/contracts/shared/ComponentServiceManager.sol +38 -0
  439. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  440. package/contracts/shared/ContractLib.sol +224 -0
  441. package/contracts/shared/IComponent.sol +67 -0
  442. package/contracts/shared/IComponentService.sol +130 -0
  443. package/contracts/shared/IInstanceLinkedComponent.sol +41 -0
  444. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  445. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  446. package/contracts/shared/INftOwnable.sol +4 -2
  447. package/contracts/shared/IPolicyHolder.sol +23 -14
  448. package/contracts/shared/IRegisterable.sol +11 -0
  449. package/contracts/shared/IRegistryLinked.sol +0 -1
  450. package/contracts/shared/IService.sol +15 -6
  451. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  452. package/contracts/shared/InstanceLinkedComponent.sol +205 -0
  453. package/contracts/shared/KeyValueStore.sol +131 -0
  454. package/contracts/shared/Lifecycle.sol +88 -0
  455. package/contracts/shared/NftIdSet.sol +65 -0
  456. package/contracts/shared/NftOwnable.sol +32 -25
  457. package/contracts/shared/PolicyHolder.sol +22 -41
  458. package/contracts/shared/Registerable.sol +31 -22
  459. package/contracts/shared/RegistryLinked.sol +9 -19
  460. package/contracts/shared/Service.sol +55 -29
  461. package/contracts/shared/TokenHandler.sol +374 -12
  462. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  463. package/contracts/staking/IStaking.sol +173 -0
  464. package/contracts/staking/IStakingService.sol +157 -0
  465. package/contracts/staking/StakeManagerLib.sol +224 -0
  466. package/contracts/staking/Staking.sol +505 -0
  467. package/contracts/staking/StakingLifecycle.sol +23 -0
  468. package/contracts/staking/StakingManager.sol +52 -0
  469. package/contracts/staking/StakingReader.sol +190 -0
  470. package/contracts/staking/StakingService.sol +440 -0
  471. package/contracts/staking/StakingServiceManager.sol +44 -0
  472. package/contracts/staking/StakingStore.sol +605 -0
  473. package/contracts/staking/TargetManagerLib.sol +211 -0
  474. package/contracts/{types → type}/AddressSet.sol +1 -1
  475. package/contracts/type/Amount.sol +150 -0
  476. package/contracts/{types → type}/Blocknumber.sol +27 -3
  477. package/contracts/{types → type}/ClaimId.sol +31 -3
  478. package/contracts/{types → type}/Fee.sol +33 -23
  479. package/contracts/{types → type}/Key32.sol +2 -2
  480. package/contracts/type/Key32Set.sol +62 -0
  481. package/contracts/{types → type}/NftId.sol +28 -15
  482. package/contracts/{types → type}/NftIdSet.sol +2 -2
  483. package/contracts/type/ObjectType.sol +278 -0
  484. package/contracts/type/PayoutId.sol +82 -0
  485. package/contracts/{types → type}/Referral.sol +6 -1
  486. package/contracts/type/RequestId.sol +75 -0
  487. package/contracts/{types → type}/RiskId.sol +31 -5
  488. package/contracts/type/RoleId.sol +162 -0
  489. package/contracts/type/Seconds.sol +101 -0
  490. package/contracts/type/Selector.sol +102 -0
  491. package/contracts/{types → type}/StateId.sol +48 -4
  492. package/contracts/type/String.sol +53 -0
  493. package/contracts/{types → type}/Timestamp.sol +34 -15
  494. package/contracts/{types → type}/UFixed.sol +39 -9
  495. package/contracts/{types → type}/Version.sol +5 -2
  496. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  497. package/contracts/{shared → upgradeability}/ProxyManager.sol +93 -30
  498. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  499. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  500. package/package.json +11 -7
  501. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  502. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  503. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  504. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  505. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  506. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  507. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  508. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  509. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  510. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -764
  511. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  512. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  513. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  514. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  516. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  517. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  518. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  519. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  520. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  521. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  522. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  523. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  524. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  525. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  526. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -858
  527. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  528. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -657
  529. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  530. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1085
  531. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  532. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  533. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  534. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -743
  535. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  537. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  538. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -935
  539. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  540. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -677
  541. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  543. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -398
  545. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  546. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -480
  547. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  548. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  549. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -336
  550. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  551. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  552. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1109
  553. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  554. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -717
  555. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  556. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -716
  557. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  558. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -649
  559. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  560. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -766
  561. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  562. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  563. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  564. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  565. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  566. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  567. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  568. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  569. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  570. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  571. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  572. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  573. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  574. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  575. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  576. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  577. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  578. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  579. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  580. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  581. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  582. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  583. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  584. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -510
  585. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  586. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  587. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  588. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  589. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  590. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  591. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  592. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  593. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  594. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  595. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  596. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  597. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  598. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  599. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  600. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  601. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  602. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  603. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  604. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  605. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  606. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  607. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  608. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  609. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  610. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  611. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  613. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  614. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  615. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  617. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  619. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  621. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  622. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  623. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  624. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  625. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  626. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  627. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  628. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  629. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  630. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  631. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  632. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  633. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  634. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  635. package/contracts/components/Component.sol +0 -241
  636. package/contracts/components/Distribution.sol +0 -308
  637. package/contracts/components/IComponent.sol +0 -54
  638. package/contracts/components/IDistributionComponent.sol +0 -100
  639. package/contracts/components/IPoolComponent.sol +0 -87
  640. package/contracts/components/IProductComponent.sol +0 -39
  641. package/contracts/components/Pool.sol +0 -254
  642. package/contracts/components/Product.sol +0 -285
  643. package/contracts/instance/BundleManager.sol +0 -125
  644. package/contracts/instance/InstanceAccessManager.sol +0 -297
  645. package/contracts/instance/ObjectManager.sol +0 -84
  646. package/contracts/instance/base/ComponentService.sol +0 -134
  647. package/contracts/instance/base/KeyValueStore.sol +0 -172
  648. package/contracts/instance/base/Lifecycle.sol +0 -100
  649. package/contracts/instance/module/ISetup.sol +0 -47
  650. package/contracts/instance/module/ITreasury.sol +0 -23
  651. package/contracts/instance/service/ApplicationService.sol +0 -268
  652. package/contracts/instance/service/BundleService.sol +0 -298
  653. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  654. package/contracts/instance/service/ClaimService.sol +0 -151
  655. package/contracts/instance/service/DistributionService.sol +0 -277
  656. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  657. package/contracts/instance/service/IBundleService.sol +0 -54
  658. package/contracts/instance/service/IClaimService.sol +0 -61
  659. package/contracts/instance/service/IDistributionService.sol +0 -65
  660. package/contracts/instance/service/IPolicyService.sol +0 -89
  661. package/contracts/instance/service/IPoolService.sol +0 -20
  662. package/contracts/instance/service/IProductService.sol +0 -40
  663. package/contracts/instance/service/PolicyService.sol +0 -474
  664. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  665. package/contracts/instance/service/PoolService.sol +0 -109
  666. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  667. package/contracts/instance/service/ProductService.sol +0 -233
  668. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  669. package/contracts/registry/RegistryAccessManager.sol +0 -216
  670. package/contracts/registry/ReleaseManager.sol +0 -322
  671. package/contracts/shared/ContractDeployerLib.sol +0 -72
  672. package/contracts/test/TestFee.sol +0 -25
  673. package/contracts/test/TestRegisterable.sol +0 -18
  674. package/contracts/test/TestRoleId.sol +0 -14
  675. package/contracts/test/TestService.sol +0 -25
  676. package/contracts/test/TestToken.sol +0 -26
  677. package/contracts/test/TestVersion.sol +0 -44
  678. package/contracts/test/TestVersionable.sol +0 -17
  679. package/contracts/types/ChainId.sol +0 -38
  680. package/contracts/types/NumberId.sol +0 -52
  681. package/contracts/types/ObjectType.sol +0 -156
  682. package/contracts/types/PayoutId.sol +0 -54
  683. package/contracts/types/RoleId.sol +0 -90
  684. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -44,237 +44,273 @@
44
44
  {
45
45
  "inputs": [
46
46
  {
47
- "internalType": "ObjectType",
48
- "name": "objectType",
49
- "type": "uint8"
50
- },
47
+ "internalType": "address",
48
+ "name": "instanceBundleSet",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorInstanceBundleSetAlreadySet",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
51
57
  {
52
- "internalType": "StateId",
53
- "name": "fromStateId",
54
- "type": "uint8"
55
- },
58
+ "internalType": "address",
59
+ "name": "instanceAuthority",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorInstanceBundleSetAuthorityMismatch",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
56
68
  {
57
- "internalType": "StateId",
58
- "name": "toStateId",
59
- "type": "uint8"
69
+ "internalType": "address",
70
+ "name": "instance",
71
+ "type": "address"
60
72
  }
61
73
  ],
62
- "name": "ErrorInvalidStateTransition",
74
+ "name": "ErrorInstanceBundleSetInstanceMismatch",
63
75
  "type": "error"
64
76
  },
65
77
  {
66
78
  "inputs": [
67
79
  {
68
- "internalType": "NftId",
69
- "name": "nftId",
70
- "type": "uint96"
80
+ "internalType": "address",
81
+ "name": "InstanceAdmin",
82
+ "type": "address"
71
83
  }
72
84
  ],
73
- "name": "ErrorNftOwnableAlreadyLinked",
85
+ "name": "ErrorInstanceInstanceAdminAlreadySet",
74
86
  "type": "error"
75
87
  },
76
88
  {
77
89
  "inputs": [
78
90
  {
79
91
  "internalType": "address",
80
- "name": "contractAddress",
92
+ "name": "instanceAuthority",
81
93
  "type": "address"
82
94
  }
83
95
  ],
84
- "name": "ErrorNftOwnableContractNotRegistered",
96
+ "name": "ErrorInstanceInstanceAdminAuthorityMismatch",
85
97
  "type": "error"
86
98
  },
87
99
  {
88
100
  "inputs": [],
89
- "name": "ErrorNftOwnableInitialOwnerZero",
101
+ "name": "ErrorInstanceInstanceAdminZero",
90
102
  "type": "error"
91
103
  },
92
104
  {
93
105
  "inputs": [
94
106
  {
95
107
  "internalType": "address",
96
- "name": "account",
108
+ "name": "instanceAuthority",
97
109
  "type": "address"
98
110
  }
99
111
  ],
100
- "name": "ErrorNftOwnableNotOwner",
112
+ "name": "ErrorInstanceInstanceReaderInstanceMismatch",
101
113
  "type": "error"
102
114
  },
103
115
  {
104
116
  "inputs": [
105
117
  {
106
- "internalType": "NftId",
107
- "name": "nftId",
108
- "type": "uint96"
109
- },
110
- {
111
- "internalType": "ObjectType",
112
- "name": "objectType",
113
- "type": "uint8"
118
+ "internalType": "address",
119
+ "name": "instanceStore",
120
+ "type": "address"
114
121
  }
115
122
  ],
116
- "name": "ErrorNoLifecycle",
123
+ "name": "ErrorInstanceInstanceStoreAlreadySet",
117
124
  "type": "error"
118
125
  },
119
126
  {
120
127
  "inputs": [
121
128
  {
122
129
  "internalType": "address",
123
- "name": "registryAddress",
130
+ "name": "instanceAuthority",
124
131
  "type": "address"
125
132
  }
126
133
  ],
127
- "name": "ErrorNotRegistry",
134
+ "name": "ErrorInstanceInstanceStoreAuthorityMismatch",
128
135
  "type": "error"
129
136
  },
130
137
  {
131
- "anonymous": false,
132
138
  "inputs": [
133
139
  {
134
- "indexed": false,
135
140
  "internalType": "address",
136
- "name": "authority",
141
+ "name": "instanceRiskSet",
137
142
  "type": "address"
138
143
  }
139
144
  ],
140
- "name": "AuthorityUpdated",
141
- "type": "event"
145
+ "name": "ErrorInstanceRiskSetAlreadySet",
146
+ "type": "error"
142
147
  },
143
148
  {
144
- "anonymous": false,
145
149
  "inputs": [
146
150
  {
147
- "indexed": false,
148
- "internalType": "ObjectType",
149
- "name": "objectType",
150
- "type": "uint8"
151
- },
152
- {
153
- "indexed": false,
154
- "internalType": "KeyId",
155
- "name": "keyId",
156
- "type": "bytes31"
157
- },
158
- {
159
- "indexed": false,
160
- "internalType": "StateId",
161
- "name": "state",
162
- "type": "uint8"
163
- },
164
- {
165
- "indexed": false,
166
151
  "internalType": "address",
167
- "name": "createdBy",
152
+ "name": "instanceAuthority",
168
153
  "type": "address"
169
- },
154
+ }
155
+ ],
156
+ "name": "ErrorInstanceRiskSetAuthorityMismatch",
157
+ "type": "error"
158
+ },
159
+ {
160
+ "inputs": [
170
161
  {
171
- "indexed": false,
172
162
  "internalType": "address",
173
- "name": "txOrigin",
163
+ "name": "instance",
174
164
  "type": "address"
175
165
  }
176
166
  ],
177
- "name": "LogInfoCreated",
178
- "type": "event"
167
+ "name": "ErrorInstanceRiskSetInstanceMismatch",
168
+ "type": "error"
179
169
  },
180
170
  {
181
- "anonymous": false,
182
171
  "inputs": [
183
172
  {
184
- "indexed": false,
185
- "internalType": "ObjectType",
186
- "name": "objectType",
187
- "type": "uint8"
188
- },
173
+ "internalType": "NftId",
174
+ "name": "nftId",
175
+ "type": "uint96"
176
+ }
177
+ ],
178
+ "name": "ErrorNftOwnableAlreadyLinked",
179
+ "type": "error"
180
+ },
181
+ {
182
+ "inputs": [
189
183
  {
190
- "indexed": false,
191
- "internalType": "KeyId",
192
- "name": "keyId",
193
- "type": "bytes31"
184
+ "internalType": "address",
185
+ "name": "contractAddress",
186
+ "type": "address"
187
+ }
188
+ ],
189
+ "name": "ErrorNftOwnableContractNotRegistered",
190
+ "type": "error"
191
+ },
192
+ {
193
+ "inputs": [],
194
+ "name": "ErrorNftOwnableInitialOwnerZero",
195
+ "type": "error"
196
+ },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "NftId",
201
+ "name": "nftId",
202
+ "type": "uint96"
194
203
  },
195
204
  {
196
- "indexed": false,
197
- "internalType": "StateId",
198
- "name": "state",
205
+ "internalType": "ObjectType",
206
+ "name": "expectedObjectType",
199
207
  "type": "uint8"
200
- },
208
+ }
209
+ ],
210
+ "name": "ErrorNftOwnableInvalidType",
211
+ "type": "error"
212
+ },
213
+ {
214
+ "inputs": [
201
215
  {
202
- "indexed": false,
203
216
  "internalType": "address",
204
- "name": "updatedBy",
217
+ "name": "account",
205
218
  "type": "address"
206
- },
219
+ }
220
+ ],
221
+ "name": "ErrorNftOwnableNotOwner",
222
+ "type": "error"
223
+ },
224
+ {
225
+ "inputs": [
207
226
  {
208
- "indexed": false,
209
227
  "internalType": "address",
210
- "name": "txOrigin",
228
+ "name": "registryAddress",
211
229
  "type": "address"
212
- },
213
- {
214
- "indexed": false,
215
- "internalType": "Blocknumber",
216
- "name": "lastUpdatedIn",
217
- "type": "uint32"
218
230
  }
219
231
  ],
220
- "name": "LogInfoUpdated",
221
- "type": "event"
232
+ "name": "ErrorNotRegistry",
233
+ "type": "error"
222
234
  },
223
235
  {
224
236
  "anonymous": false,
225
237
  "inputs": [
226
238
  {
227
239
  "indexed": false,
228
- "internalType": "ObjectType",
229
- "name": "objectType",
230
- "type": "uint8"
231
- },
240
+ "internalType": "address",
241
+ "name": "authority",
242
+ "type": "address"
243
+ }
244
+ ],
245
+ "name": "AuthorityUpdated",
246
+ "type": "event"
247
+ },
248
+ {
249
+ "inputs": [],
250
+ "name": "authority",
251
+ "outputs": [
232
252
  {
233
- "indexed": false,
234
- "internalType": "KeyId",
235
- "name": "keyId",
236
- "type": "bytes31"
237
- },
253
+ "internalType": "address",
254
+ "name": "",
255
+ "type": "address"
256
+ }
257
+ ],
258
+ "stateMutability": "view",
259
+ "type": "function"
260
+ },
261
+ {
262
+ "inputs": [
238
263
  {
239
- "indexed": false,
240
- "internalType": "StateId",
241
- "name": "stateOld",
242
- "type": "uint8"
264
+ "internalType": "string",
265
+ "name": "roleName",
266
+ "type": "string"
243
267
  },
244
268
  {
245
- "indexed": false,
246
- "internalType": "StateId",
247
- "name": "stateNew",
248
- "type": "uint8"
249
- },
269
+ "internalType": "string",
270
+ "name": "adminName",
271
+ "type": "string"
272
+ }
273
+ ],
274
+ "name": "createRole",
275
+ "outputs": [
250
276
  {
251
- "indexed": false,
252
- "internalType": "address",
253
- "name": "updatedBy",
254
- "type": "address"
277
+ "internalType": "RoleId",
278
+ "name": "roleId",
279
+ "type": "uint64"
255
280
  },
256
281
  {
257
- "indexed": false,
282
+ "internalType": "RoleId",
283
+ "name": "admin",
284
+ "type": "uint64"
285
+ }
286
+ ],
287
+ "stateMutability": "nonpayable",
288
+ "type": "function"
289
+ },
290
+ {
291
+ "inputs": [
292
+ {
258
293
  "internalType": "address",
259
- "name": "txOrigin",
294
+ "name": "target",
260
295
  "type": "address"
261
296
  },
262
297
  {
263
- "indexed": false,
264
- "internalType": "Blocknumber",
265
- "name": "lastUpdatedIn",
266
- "type": "uint32"
298
+ "internalType": "string",
299
+ "name": "name",
300
+ "type": "string"
267
301
  }
268
302
  ],
269
- "name": "LogStateUpdated",
270
- "type": "event"
303
+ "name": "createTarget",
304
+ "outputs": [],
305
+ "stateMutability": "nonpayable",
306
+ "type": "function"
271
307
  },
272
308
  {
273
309
  "inputs": [],
274
- "name": "authority",
310
+ "name": "getBundleSet",
275
311
  "outputs": [
276
312
  {
277
- "internalType": "address",
313
+ "internalType": "contract BundleSet",
278
314
  "name": "",
279
315
  "type": "address"
280
316
  }
@@ -283,1737 +319,227 @@
283
319
  "type": "function"
284
320
  },
285
321
  {
286
- "inputs": [
287
- {
288
- "internalType": "NftId",
289
- "name": "applicationNftId",
290
- "type": "uint96"
291
- },
322
+ "inputs": [],
323
+ "name": "getInitialInfo",
324
+ "outputs": [
292
325
  {
293
326
  "components": [
294
327
  {
295
328
  "internalType": "NftId",
296
- "name": "productNftId",
329
+ "name": "nftId",
297
330
  "type": "uint96"
298
331
  },
299
332
  {
300
333
  "internalType": "NftId",
301
- "name": "bundleNftId",
334
+ "name": "parentNftId",
302
335
  "type": "uint96"
303
336
  },
304
337
  {
305
- "internalType": "ReferralId",
306
- "name": "referralId",
307
- "type": "bytes8"
308
- },
309
- {
310
- "internalType": "RiskId",
311
- "name": "riskId",
312
- "type": "bytes8"
313
- },
314
- {
315
- "internalType": "uint256",
316
- "name": "sumInsuredAmount",
317
- "type": "uint256"
318
- },
319
- {
320
- "internalType": "uint256",
321
- "name": "premiumAmount",
322
- "type": "uint256"
338
+ "internalType": "ObjectType",
339
+ "name": "objectType",
340
+ "type": "uint8"
323
341
  },
324
342
  {
325
- "internalType": "uint256",
326
- "name": "premiumPaidAmount",
327
- "type": "uint256"
343
+ "internalType": "bool",
344
+ "name": "isInterceptor",
345
+ "type": "bool"
328
346
  },
329
347
  {
330
- "internalType": "uint256",
331
- "name": "lifetime",
332
- "type": "uint256"
348
+ "internalType": "address",
349
+ "name": "objectAddress",
350
+ "type": "address"
333
351
  },
334
352
  {
335
- "internalType": "bytes",
336
- "name": "applicationData",
337
- "type": "bytes"
353
+ "internalType": "address",
354
+ "name": "initialOwner",
355
+ "type": "address"
338
356
  },
339
357
  {
340
358
  "internalType": "bytes",
341
- "name": "policyData",
359
+ "name": "data",
342
360
  "type": "bytes"
343
- },
344
- {
345
- "internalType": "uint16",
346
- "name": "claimsCount",
347
- "type": "uint16"
348
- },
349
- {
350
- "internalType": "uint16",
351
- "name": "openClaimsCount",
352
- "type": "uint16"
353
- },
354
- {
355
- "internalType": "uint256",
356
- "name": "payoutAmount",
357
- "type": "uint256"
358
- },
359
- {
360
- "internalType": "Timestamp",
361
- "name": "activatedAt",
362
- "type": "uint40"
363
- },
364
- {
365
- "internalType": "Timestamp",
366
- "name": "expiredAt",
367
- "type": "uint40"
368
- },
369
- {
370
- "internalType": "Timestamp",
371
- "name": "closedAt",
372
- "type": "uint40"
373
361
  }
374
362
  ],
375
- "internalType": "struct IPolicy.PolicyInfo",
376
- "name": "policy",
363
+ "internalType": "struct IRegistry.ObjectInfo",
364
+ "name": "",
377
365
  "type": "tuple"
378
366
  }
379
367
  ],
380
- "name": "createApplication",
381
- "outputs": [],
382
- "stateMutability": "nonpayable",
368
+ "stateMutability": "view",
383
369
  "type": "function"
384
370
  },
385
371
  {
386
- "inputs": [
387
- {
388
- "internalType": "NftId",
389
- "name": "bundleNftId",
390
- "type": "uint96"
391
- },
372
+ "inputs": [],
373
+ "name": "getInstanceAdmin",
374
+ "outputs": [
392
375
  {
393
- "components": [
394
- {
395
- "internalType": "NftId",
396
- "name": "poolNftId",
397
- "type": "uint96"
398
- },
399
- {
400
- "components": [
401
- {
402
- "internalType": "UFixed",
403
- "name": "fractionalFee",
404
- "type": "uint256"
405
- },
406
- {
407
- "internalType": "uint256",
408
- "name": "fixedFee",
409
- "type": "uint256"
410
- }
411
- ],
412
- "internalType": "struct Fee",
413
- "name": "fee",
414
- "type": "tuple"
415
- },
416
- {
417
- "internalType": "bytes",
418
- "name": "filter",
419
- "type": "bytes"
420
- },
421
- {
422
- "internalType": "uint256",
423
- "name": "capitalAmount",
424
- "type": "uint256"
425
- },
426
- {
427
- "internalType": "uint256",
428
- "name": "lockedAmount",
429
- "type": "uint256"
430
- },
431
- {
432
- "internalType": "uint256",
433
- "name": "balanceAmount",
434
- "type": "uint256"
435
- },
436
- {
437
- "internalType": "uint256",
438
- "name": "lifetime",
439
- "type": "uint256"
440
- },
441
- {
442
- "internalType": "Timestamp",
443
- "name": "expiredAt",
444
- "type": "uint40"
445
- },
446
- {
447
- "internalType": "Timestamp",
448
- "name": "closedAt",
449
- "type": "uint40"
450
- }
451
- ],
452
- "internalType": "struct IBundle.BundleInfo",
453
- "name": "bundle",
454
- "type": "tuple"
455
- }
456
- ],
457
- "name": "createBundle",
458
- "outputs": [],
459
- "stateMutability": "nonpayable",
460
- "type": "function"
461
- },
462
- {
463
- "inputs": [
464
- {
465
- "internalType": "NftId",
466
- "name": "distributionNftId",
467
- "type": "uint96"
468
- },
469
- {
470
- "components": [
471
- {
472
- "internalType": "NftId",
473
- "name": "productNftId",
474
- "type": "uint96"
475
- },
476
- {
477
- "internalType": "contract TokenHandler",
478
- "name": "tokenHandler",
479
- "type": "address"
480
- },
481
- {
482
- "components": [
483
- {
484
- "internalType": "UFixed",
485
- "name": "fractionalFee",
486
- "type": "uint256"
487
- },
488
- {
489
- "internalType": "uint256",
490
- "name": "fixedFee",
491
- "type": "uint256"
492
- }
493
- ],
494
- "internalType": "struct Fee",
495
- "name": "distributionFee",
496
- "type": "tuple"
497
- },
498
- {
499
- "internalType": "address",
500
- "name": "wallet",
501
- "type": "address"
502
- }
503
- ],
504
- "internalType": "struct ISetup.DistributionSetupInfo",
505
- "name": "setup",
506
- "type": "tuple"
507
- }
508
- ],
509
- "name": "createDistributionSetup",
510
- "outputs": [],
511
- "stateMutability": "nonpayable",
512
- "type": "function"
513
- },
514
- {
515
- "inputs": [
516
- {
517
- "internalType": "NftId",
518
- "name": "nftId",
519
- "type": "uint96"
520
- },
521
- {
522
- "components": [
523
- {
524
- "internalType": "DistributorType",
525
- "name": "distributorType",
526
- "type": "bytes8"
527
- },
528
- {
529
- "internalType": "bool",
530
- "name": "active",
531
- "type": "bool"
532
- },
533
- {
534
- "internalType": "bytes",
535
- "name": "data",
536
- "type": "bytes"
537
- }
538
- ],
539
- "internalType": "struct IDistribution.DistributorInfo",
540
- "name": "info",
541
- "type": "tuple"
542
- }
543
- ],
544
- "name": "createDistributor",
545
- "outputs": [],
546
- "stateMutability": "nonpayable",
547
- "type": "function"
548
- },
549
- {
550
- "inputs": [
551
- {
552
- "internalType": "Key32",
553
- "name": "distributorKey",
554
- "type": "bytes32"
555
- },
556
- {
557
- "components": [
558
- {
559
- "internalType": "string",
560
- "name": "name",
561
- "type": "string"
562
- },
563
- {
564
- "internalType": "UFixed",
565
- "name": "minDiscountPercentage",
566
- "type": "uint256"
567
- },
568
- {
569
- "internalType": "UFixed",
570
- "name": "maxDiscountPercentage",
571
- "type": "uint256"
572
- },
573
- {
574
- "internalType": "UFixed",
575
- "name": "commissionPercentage",
576
- "type": "uint256"
577
- },
578
- {
579
- "internalType": "uint32",
580
- "name": "maxReferralCount",
581
- "type": "uint32"
582
- },
583
- {
584
- "internalType": "uint32",
585
- "name": "maxReferralLifetime",
586
- "type": "uint32"
587
- },
588
- {
589
- "internalType": "bool",
590
- "name": "allowSelfReferrals",
591
- "type": "bool"
592
- },
593
- {
594
- "internalType": "bool",
595
- "name": "allowRenewals",
596
- "type": "bool"
597
- },
598
- {
599
- "internalType": "bytes",
600
- "name": "data",
601
- "type": "bytes"
602
- }
603
- ],
604
- "internalType": "struct IDistribution.DistributorTypeInfo",
605
- "name": "info",
606
- "type": "tuple"
607
- }
608
- ],
609
- "name": "createDistributorType",
610
- "outputs": [],
611
- "stateMutability": "nonpayable",
612
- "type": "function"
613
- },
614
- {
615
- "inputs": [
616
- {
617
- "internalType": "NftId",
618
- "name": "poolNftId",
619
- "type": "uint96"
620
- },
621
- {
622
- "components": [
623
- {
624
- "internalType": "NftId",
625
- "name": "productNftId",
626
- "type": "uint96"
627
- },
628
- {
629
- "internalType": "contract TokenHandler",
630
- "name": "tokenHandler",
631
- "type": "address"
632
- },
633
- {
634
- "internalType": "bool",
635
- "name": "isInterceptingBundleTransfers",
636
- "type": "bool"
637
- },
638
- {
639
- "internalType": "bool",
640
- "name": "isExternallyManaged",
641
- "type": "bool"
642
- },
643
- {
644
- "internalType": "bool",
645
- "name": "isVerifyingApplications",
646
- "type": "bool"
647
- },
648
- {
649
- "internalType": "UFixed",
650
- "name": "collateralizationLevel",
651
- "type": "uint256"
652
- },
653
- {
654
- "internalType": "UFixed",
655
- "name": "retentionLevel",
656
- "type": "uint256"
657
- },
658
- {
659
- "components": [
660
- {
661
- "internalType": "UFixed",
662
- "name": "fractionalFee",
663
- "type": "uint256"
664
- },
665
- {
666
- "internalType": "uint256",
667
- "name": "fixedFee",
668
- "type": "uint256"
669
- }
670
- ],
671
- "internalType": "struct Fee",
672
- "name": "poolFee",
673
- "type": "tuple"
674
- },
675
- {
676
- "components": [
677
- {
678
- "internalType": "UFixed",
679
- "name": "fractionalFee",
680
- "type": "uint256"
681
- },
682
- {
683
- "internalType": "uint256",
684
- "name": "fixedFee",
685
- "type": "uint256"
686
- }
687
- ],
688
- "internalType": "struct Fee",
689
- "name": "stakingFee",
690
- "type": "tuple"
691
- },
692
- {
693
- "components": [
694
- {
695
- "internalType": "UFixed",
696
- "name": "fractionalFee",
697
- "type": "uint256"
698
- },
699
- {
700
- "internalType": "uint256",
701
- "name": "fixedFee",
702
- "type": "uint256"
703
- }
704
- ],
705
- "internalType": "struct Fee",
706
- "name": "performanceFee",
707
- "type": "tuple"
708
- },
709
- {
710
- "internalType": "address",
711
- "name": "wallet",
712
- "type": "address"
713
- }
714
- ],
715
- "internalType": "struct ISetup.PoolSetupInfo",
716
- "name": "setup",
717
- "type": "tuple"
718
- }
719
- ],
720
- "name": "createPoolSetup",
721
- "outputs": [],
722
- "stateMutability": "nonpayable",
723
- "type": "function"
724
- },
725
- {
726
- "inputs": [
727
- {
728
- "internalType": "NftId",
729
- "name": "productNftId",
730
- "type": "uint96"
731
- },
732
- {
733
- "components": [
734
- {
735
- "internalType": "contract IERC20Metadata",
736
- "name": "token",
737
- "type": "address"
738
- },
739
- {
740
- "internalType": "contract TokenHandler",
741
- "name": "tokenHandler",
742
- "type": "address"
743
- },
744
- {
745
- "internalType": "NftId",
746
- "name": "distributionNftId",
747
- "type": "uint96"
748
- },
749
- {
750
- "internalType": "NftId",
751
- "name": "poolNftId",
752
- "type": "uint96"
753
- },
754
- {
755
- "components": [
756
- {
757
- "internalType": "UFixed",
758
- "name": "fractionalFee",
759
- "type": "uint256"
760
- },
761
- {
762
- "internalType": "uint256",
763
- "name": "fixedFee",
764
- "type": "uint256"
765
- }
766
- ],
767
- "internalType": "struct Fee",
768
- "name": "distributionFee",
769
- "type": "tuple"
770
- },
771
- {
772
- "components": [
773
- {
774
- "internalType": "UFixed",
775
- "name": "fractionalFee",
776
- "type": "uint256"
777
- },
778
- {
779
- "internalType": "uint256",
780
- "name": "fixedFee",
781
- "type": "uint256"
782
- }
783
- ],
784
- "internalType": "struct Fee",
785
- "name": "productFee",
786
- "type": "tuple"
787
- },
788
- {
789
- "components": [
790
- {
791
- "internalType": "UFixed",
792
- "name": "fractionalFee",
793
- "type": "uint256"
794
- },
795
- {
796
- "internalType": "uint256",
797
- "name": "fixedFee",
798
- "type": "uint256"
799
- }
800
- ],
801
- "internalType": "struct Fee",
802
- "name": "processingFee",
803
- "type": "tuple"
804
- },
805
- {
806
- "components": [
807
- {
808
- "internalType": "UFixed",
809
- "name": "fractionalFee",
810
- "type": "uint256"
811
- },
812
- {
813
- "internalType": "uint256",
814
- "name": "fixedFee",
815
- "type": "uint256"
816
- }
817
- ],
818
- "internalType": "struct Fee",
819
- "name": "poolFee",
820
- "type": "tuple"
821
- },
822
- {
823
- "components": [
824
- {
825
- "internalType": "UFixed",
826
- "name": "fractionalFee",
827
- "type": "uint256"
828
- },
829
- {
830
- "internalType": "uint256",
831
- "name": "fixedFee",
832
- "type": "uint256"
833
- }
834
- ],
835
- "internalType": "struct Fee",
836
- "name": "stakingFee",
837
- "type": "tuple"
838
- },
839
- {
840
- "components": [
841
- {
842
- "internalType": "UFixed",
843
- "name": "fractionalFee",
844
- "type": "uint256"
845
- },
846
- {
847
- "internalType": "uint256",
848
- "name": "fixedFee",
849
- "type": "uint256"
850
- }
851
- ],
852
- "internalType": "struct Fee",
853
- "name": "performanceFee",
854
- "type": "tuple"
855
- },
856
- {
857
- "internalType": "bool",
858
- "name": "isIntercepting",
859
- "type": "bool"
860
- },
861
- {
862
- "internalType": "address",
863
- "name": "wallet",
864
- "type": "address"
865
- }
866
- ],
867
- "internalType": "struct ISetup.ProductSetupInfo",
868
- "name": "setup",
869
- "type": "tuple"
870
- }
871
- ],
872
- "name": "createProductSetup",
873
- "outputs": [],
874
- "stateMutability": "nonpayable",
875
- "type": "function"
876
- },
877
- {
878
- "inputs": [
879
- {
880
- "internalType": "Key32",
881
- "name": "referralKey",
882
- "type": "bytes32"
883
- },
884
- {
885
- "components": [
886
- {
887
- "internalType": "NftId",
888
- "name": "distributorNftId",
889
- "type": "uint96"
890
- },
891
- {
892
- "internalType": "string",
893
- "name": "referralCode",
894
- "type": "string"
895
- },
896
- {
897
- "internalType": "UFixed",
898
- "name": "discountPercentage",
899
- "type": "uint256"
900
- },
901
- {
902
- "internalType": "uint32",
903
- "name": "maxReferrals",
904
- "type": "uint32"
905
- },
906
- {
907
- "internalType": "uint32",
908
- "name": "usedReferrals",
909
- "type": "uint32"
910
- },
911
- {
912
- "internalType": "Timestamp",
913
- "name": "expiryAt",
914
- "type": "uint40"
915
- },
916
- {
917
- "internalType": "bytes",
918
- "name": "data",
919
- "type": "bytes"
920
- }
921
- ],
922
- "internalType": "struct IDistribution.ReferralInfo",
923
- "name": "referralInfo",
924
- "type": "tuple"
925
- }
926
- ],
927
- "name": "createReferral",
928
- "outputs": [],
929
- "stateMutability": "nonpayable",
930
- "type": "function"
931
- },
932
- {
933
- "inputs": [
934
- {
935
- "internalType": "RiskId",
936
- "name": "riskId",
937
- "type": "bytes8"
938
- },
939
- {
940
- "components": [
941
- {
942
- "internalType": "NftId",
943
- "name": "productNftId",
944
- "type": "uint96"
945
- },
946
- {
947
- "internalType": "bytes",
948
- "name": "data",
949
- "type": "bytes"
950
- }
951
- ],
952
- "internalType": "struct IRisk.RiskInfo",
953
- "name": "risk",
954
- "type": "tuple"
955
- }
956
- ],
957
- "name": "createRisk",
958
- "outputs": [],
959
- "stateMutability": "nonpayable",
960
- "type": "function"
961
- },
962
- {
963
- "inputs": [
964
- {
965
- "internalType": "Key32",
966
- "name": "key",
967
- "type": "bytes32"
968
- }
969
- ],
970
- "name": "exists",
971
- "outputs": [
972
- {
973
- "internalType": "bool",
974
- "name": "",
975
- "type": "bool"
976
- }
977
- ],
978
- "stateMutability": "view",
979
- "type": "function"
980
- },
981
- {
982
- "inputs": [
983
- {
984
- "internalType": "Key32",
985
- "name": "key",
986
- "type": "bytes32"
987
- }
988
- ],
989
- "name": "get",
990
- "outputs": [
991
- {
992
- "components": [
993
- {
994
- "components": [
995
- {
996
- "internalType": "ObjectType",
997
- "name": "objectType",
998
- "type": "uint8"
999
- },
1000
- {
1001
- "internalType": "StateId",
1002
- "name": "state",
1003
- "type": "uint8"
1004
- },
1005
- {
1006
- "internalType": "address",
1007
- "name": "updatedBy",
1008
- "type": "address"
1009
- },
1010
- {
1011
- "internalType": "Blocknumber",
1012
- "name": "updatedIn",
1013
- "type": "uint32"
1014
- },
1015
- {
1016
- "internalType": "Blocknumber",
1017
- "name": "createdIn",
1018
- "type": "uint32"
1019
- }
1020
- ],
1021
- "internalType": "struct IKeyValueStore.Metadata",
1022
- "name": "metadata",
1023
- "type": "tuple"
1024
- },
1025
- {
1026
- "internalType": "bytes",
1027
- "name": "data",
1028
- "type": "bytes"
1029
- }
1030
- ],
1031
- "internalType": "struct IKeyValueStore.Value",
1032
- "name": "value",
1033
- "type": "tuple"
1034
- }
1035
- ],
1036
- "stateMutability": "view",
1037
- "type": "function"
1038
- },
1039
- {
1040
- "inputs": [],
1041
- "name": "getBundleManager",
1042
- "outputs": [
1043
- {
1044
- "internalType": "contract BundleManager",
1045
- "name": "",
1046
- "type": "address"
1047
- }
1048
- ],
1049
- "stateMutability": "view",
1050
- "type": "function"
1051
- },
1052
- {
1053
- "inputs": [],
1054
- "name": "getBundleService",
1055
- "outputs": [
1056
- {
1057
- "internalType": "contract IBundleService",
1058
- "name": "",
1059
- "type": "address"
1060
- }
1061
- ],
1062
- "stateMutability": "view",
1063
- "type": "function"
1064
- },
1065
- {
1066
- "inputs": [
1067
- {
1068
- "internalType": "Key32",
1069
- "name": "key",
1070
- "type": "bytes32"
1071
- }
1072
- ],
1073
- "name": "getData",
1074
- "outputs": [
1075
- {
1076
- "internalType": "bytes",
1077
- "name": "data",
1078
- "type": "bytes"
1079
- }
1080
- ],
1081
- "stateMutability": "view",
1082
- "type": "function"
1083
- },
1084
- {
1085
- "inputs": [],
1086
- "name": "getDistributionService",
1087
- "outputs": [
1088
- {
1089
- "internalType": "contract IDistributionService",
1090
- "name": "",
1091
- "type": "address"
1092
- }
1093
- ],
1094
- "stateMutability": "view",
1095
- "type": "function"
1096
- },
1097
- {
1098
- "inputs": [],
1099
- "name": "getInitialInfo",
1100
- "outputs": [
1101
- {
1102
- "components": [
1103
- {
1104
- "internalType": "NftId",
1105
- "name": "nftId",
1106
- "type": "uint96"
1107
- },
1108
- {
1109
- "internalType": "NftId",
1110
- "name": "parentNftId",
1111
- "type": "uint96"
1112
- },
1113
- {
1114
- "internalType": "ObjectType",
1115
- "name": "objectType",
1116
- "type": "uint8"
1117
- },
1118
- {
1119
- "internalType": "bool",
1120
- "name": "isInterceptor",
1121
- "type": "bool"
1122
- },
1123
- {
1124
- "internalType": "address",
1125
- "name": "objectAddress",
1126
- "type": "address"
1127
- },
1128
- {
1129
- "internalType": "address",
1130
- "name": "initialOwner",
1131
- "type": "address"
1132
- },
1133
- {
1134
- "internalType": "bytes",
1135
- "name": "data",
1136
- "type": "bytes"
1137
- }
1138
- ],
1139
- "internalType": "struct IRegistry.ObjectInfo",
1140
- "name": "",
1141
- "type": "tuple"
1142
- }
1143
- ],
1144
- "stateMutability": "view",
1145
- "type": "function"
1146
- },
1147
- {
1148
- "inputs": [
1149
- {
1150
- "internalType": "ObjectType",
1151
- "name": "objectType",
1152
- "type": "uint8"
1153
- }
1154
- ],
1155
- "name": "getInitialState",
1156
- "outputs": [
1157
- {
1158
- "internalType": "StateId",
1159
- "name": "",
1160
- "type": "uint8"
1161
- }
1162
- ],
1163
- "stateMutability": "view",
1164
- "type": "function"
1165
- },
1166
- {
1167
- "inputs": [],
1168
- "name": "getInstanceReader",
1169
- "outputs": [
1170
- {
1171
- "internalType": "contract InstanceReader",
1172
- "name": "",
1173
- "type": "address"
1174
- }
1175
- ],
1176
- "stateMutability": "view",
1177
- "type": "function"
1178
- },
1179
- {
1180
- "inputs": [],
1181
- "name": "getMajorVersion",
1182
- "outputs": [
1183
- {
1184
- "internalType": "VersionPart",
1185
- "name": "majorVersion",
1186
- "type": "uint8"
1187
- }
1188
- ],
1189
- "stateMutability": "pure",
1190
- "type": "function"
1191
- },
1192
- {
1193
- "inputs": [
1194
- {
1195
- "internalType": "Key32",
1196
- "name": "key",
1197
- "type": "bytes32"
1198
- }
1199
- ],
1200
- "name": "getMetadata",
1201
- "outputs": [
1202
- {
1203
- "components": [
1204
- {
1205
- "internalType": "ObjectType",
1206
- "name": "objectType",
1207
- "type": "uint8"
1208
- },
1209
- {
1210
- "internalType": "StateId",
1211
- "name": "state",
1212
- "type": "uint8"
1213
- },
1214
- {
1215
- "internalType": "address",
1216
- "name": "updatedBy",
1217
- "type": "address"
1218
- },
1219
- {
1220
- "internalType": "Blocknumber",
1221
- "name": "updatedIn",
1222
- "type": "uint32"
1223
- },
1224
- {
1225
- "internalType": "Blocknumber",
1226
- "name": "createdIn",
1227
- "type": "uint32"
1228
- }
1229
- ],
1230
- "internalType": "struct IKeyValueStore.Metadata",
1231
- "name": "metadata",
1232
- "type": "tuple"
1233
- }
1234
- ],
1235
- "stateMutability": "view",
1236
- "type": "function"
1237
- },
1238
- {
1239
- "inputs": [],
1240
- "name": "getNftId",
1241
- "outputs": [
1242
- {
1243
- "internalType": "NftId",
1244
- "name": "",
1245
- "type": "uint96"
1246
- }
1247
- ],
1248
- "stateMutability": "view",
1249
- "type": "function"
1250
- },
1251
- {
1252
- "inputs": [],
1253
- "name": "getOwner",
1254
- "outputs": [
1255
- {
1256
- "internalType": "address",
1257
- "name": "",
1258
- "type": "address"
1259
- }
1260
- ],
1261
- "stateMutability": "view",
1262
- "type": "function"
1263
- },
1264
- {
1265
- "inputs": [],
1266
- "name": "getPolicyService",
1267
- "outputs": [
1268
- {
1269
- "internalType": "contract IPolicyService",
1270
- "name": "",
1271
- "type": "address"
1272
- }
1273
- ],
1274
- "stateMutability": "view",
1275
- "type": "function"
1276
- },
1277
- {
1278
- "inputs": [],
1279
- "name": "getPoolService",
1280
- "outputs": [
1281
- {
1282
- "internalType": "contract IPoolService",
1283
- "name": "",
1284
- "type": "address"
1285
- }
1286
- ],
1287
- "stateMutability": "view",
1288
- "type": "function"
1289
- },
1290
- {
1291
- "inputs": [],
1292
- "name": "getProductService",
1293
- "outputs": [
1294
- {
1295
- "internalType": "contract IProductService",
1296
- "name": "",
1297
- "type": "address"
1298
- }
1299
- ],
1300
- "stateMutability": "view",
1301
- "type": "function"
1302
- },
1303
- {
1304
- "inputs": [],
1305
- "name": "getRegistry",
1306
- "outputs": [
1307
- {
1308
- "internalType": "contract IRegistry",
1309
- "name": "",
1310
- "type": "address"
1311
- }
1312
- ],
1313
- "stateMutability": "view",
1314
- "type": "function"
1315
- },
1316
- {
1317
- "inputs": [],
1318
- "name": "getRegistryAddress",
1319
- "outputs": [
1320
- {
1321
- "internalType": "address",
1322
- "name": "",
1323
- "type": "address"
1324
- }
1325
- ],
1326
- "stateMutability": "view",
1327
- "type": "function"
1328
- },
1329
- {
1330
- "inputs": [
1331
- {
1332
- "internalType": "Key32",
1333
- "name": "key",
1334
- "type": "bytes32"
1335
- }
1336
- ],
1337
- "name": "getState",
1338
- "outputs": [
1339
- {
1340
- "internalType": "StateId",
1341
- "name": "state",
1342
- "type": "uint8"
1343
- }
1344
- ],
1345
- "stateMutability": "view",
1346
- "type": "function"
1347
- },
1348
- {
1349
- "inputs": [
1350
- {
1351
- "internalType": "ObjectType",
1352
- "name": "objectType",
1353
- "type": "uint8"
1354
- }
1355
- ],
1356
- "name": "hasLifecycle",
1357
- "outputs": [
1358
- {
1359
- "internalType": "bool",
1360
- "name": "",
1361
- "type": "bool"
1362
- }
1363
- ],
1364
- "stateMutability": "view",
1365
- "type": "function"
1366
- },
1367
- {
1368
- "inputs": [],
1369
- "name": "isConsumingScheduledOp",
1370
- "outputs": [
1371
- {
1372
- "internalType": "bytes4",
1373
- "name": "",
1374
- "type": "bytes4"
1375
- }
1376
- ],
1377
- "stateMutability": "view",
1378
- "type": "function"
1379
- },
1380
- {
1381
- "inputs": [
1382
- {
1383
- "internalType": "ObjectType",
1384
- "name": "objectType",
1385
- "type": "uint8"
1386
- },
1387
- {
1388
- "internalType": "StateId",
1389
- "name": "fromId",
1390
- "type": "uint8"
1391
- },
1392
- {
1393
- "internalType": "StateId",
1394
- "name": "toId",
1395
- "type": "uint8"
1396
- }
1397
- ],
1398
- "name": "isValidTransition",
1399
- "outputs": [
1400
- {
1401
- "internalType": "bool",
1402
- "name": "",
1403
- "type": "bool"
1404
- }
1405
- ],
1406
- "stateMutability": "view",
1407
- "type": "function"
1408
- },
1409
- {
1410
- "inputs": [],
1411
- "name": "linkToRegisteredNftId",
1412
- "outputs": [],
1413
- "stateMutability": "nonpayable",
1414
- "type": "function"
1415
- },
1416
- {
1417
- "inputs": [
1418
- {
1419
- "internalType": "address",
376
+ "internalType": "contract InstanceAdmin",
1420
377
  "name": "",
1421
378
  "type": "address"
1422
379
  }
1423
380
  ],
1424
- "name": "setAuthority",
1425
- "outputs": [],
1426
- "stateMutability": "nonpayable",
1427
- "type": "function"
1428
- },
1429
- {
1430
- "inputs": [
1431
- {
1432
- "internalType": "bytes4",
1433
- "name": "interfaceId",
1434
- "type": "bytes4"
1435
- }
1436
- ],
1437
- "name": "supportsInterface",
1438
- "outputs": [
1439
- {
1440
- "internalType": "bool",
1441
- "name": "",
1442
- "type": "bool"
1443
- }
1444
- ],
1445
381
  "stateMutability": "view",
1446
382
  "type": "function"
1447
383
  },
1448
384
  {
1449
- "inputs": [
1450
- {
1451
- "internalType": "ObjectType",
1452
- "name": "objectType",
1453
- "type": "uint8"
1454
- },
1455
- {
1456
- "internalType": "KeyId",
1457
- "name": "id",
1458
- "type": "bytes31"
1459
- }
1460
- ],
1461
- "name": "toKey32",
385
+ "inputs": [],
386
+ "name": "getInstanceReader",
1462
387
  "outputs": [
1463
388
  {
1464
- "internalType": "Key32",
389
+ "internalType": "contract InstanceReader",
1465
390
  "name": "",
1466
- "type": "bytes32"
1467
- }
1468
- ],
1469
- "stateMutability": "pure",
1470
- "type": "function"
1471
- },
1472
- {
1473
- "inputs": [
1474
- {
1475
- "internalType": "NftId",
1476
- "name": "applicationNftId",
1477
- "type": "uint96"
1478
- },
1479
- {
1480
- "components": [
1481
- {
1482
- "internalType": "NftId",
1483
- "name": "productNftId",
1484
- "type": "uint96"
1485
- },
1486
- {
1487
- "internalType": "NftId",
1488
- "name": "bundleNftId",
1489
- "type": "uint96"
1490
- },
1491
- {
1492
- "internalType": "ReferralId",
1493
- "name": "referralId",
1494
- "type": "bytes8"
1495
- },
1496
- {
1497
- "internalType": "RiskId",
1498
- "name": "riskId",
1499
- "type": "bytes8"
1500
- },
1501
- {
1502
- "internalType": "uint256",
1503
- "name": "sumInsuredAmount",
1504
- "type": "uint256"
1505
- },
1506
- {
1507
- "internalType": "uint256",
1508
- "name": "premiumAmount",
1509
- "type": "uint256"
1510
- },
1511
- {
1512
- "internalType": "uint256",
1513
- "name": "premiumPaidAmount",
1514
- "type": "uint256"
1515
- },
1516
- {
1517
- "internalType": "uint256",
1518
- "name": "lifetime",
1519
- "type": "uint256"
1520
- },
1521
- {
1522
- "internalType": "bytes",
1523
- "name": "applicationData",
1524
- "type": "bytes"
1525
- },
1526
- {
1527
- "internalType": "bytes",
1528
- "name": "policyData",
1529
- "type": "bytes"
1530
- },
1531
- {
1532
- "internalType": "uint16",
1533
- "name": "claimsCount",
1534
- "type": "uint16"
1535
- },
1536
- {
1537
- "internalType": "uint16",
1538
- "name": "openClaimsCount",
1539
- "type": "uint16"
1540
- },
1541
- {
1542
- "internalType": "uint256",
1543
- "name": "payoutAmount",
1544
- "type": "uint256"
1545
- },
1546
- {
1547
- "internalType": "Timestamp",
1548
- "name": "activatedAt",
1549
- "type": "uint40"
1550
- },
1551
- {
1552
- "internalType": "Timestamp",
1553
- "name": "expiredAt",
1554
- "type": "uint40"
1555
- },
1556
- {
1557
- "internalType": "Timestamp",
1558
- "name": "closedAt",
1559
- "type": "uint40"
1560
- }
1561
- ],
1562
- "internalType": "struct IPolicy.PolicyInfo",
1563
- "name": "policy",
1564
- "type": "tuple"
1565
- },
1566
- {
1567
- "internalType": "StateId",
1568
- "name": "newState",
1569
- "type": "uint8"
391
+ "type": "address"
1570
392
  }
1571
393
  ],
1572
- "name": "updateApplication",
1573
- "outputs": [],
1574
- "stateMutability": "nonpayable",
394
+ "stateMutability": "view",
1575
395
  "type": "function"
1576
396
  },
1577
397
  {
1578
- "inputs": [
1579
- {
1580
- "internalType": "NftId",
1581
- "name": "applicationNftId",
1582
- "type": "uint96"
1583
- },
398
+ "inputs": [],
399
+ "name": "getInstanceStore",
400
+ "outputs": [
1584
401
  {
1585
- "internalType": "StateId",
1586
- "name": "newState",
1587
- "type": "uint8"
402
+ "internalType": "contract InstanceStore",
403
+ "name": "",
404
+ "type": "address"
1588
405
  }
1589
406
  ],
1590
- "name": "updateApplicationState",
1591
- "outputs": [],
1592
- "stateMutability": "nonpayable",
407
+ "stateMutability": "view",
1593
408
  "type": "function"
1594
409
  },
1595
410
  {
1596
- "inputs": [
411
+ "inputs": [],
412
+ "name": "getNftId",
413
+ "outputs": [
1597
414
  {
1598
415
  "internalType": "NftId",
1599
- "name": "bundleNftId",
416
+ "name": "",
1600
417
  "type": "uint96"
1601
- },
1602
- {
1603
- "components": [
1604
- {
1605
- "internalType": "NftId",
1606
- "name": "poolNftId",
1607
- "type": "uint96"
1608
- },
1609
- {
1610
- "components": [
1611
- {
1612
- "internalType": "UFixed",
1613
- "name": "fractionalFee",
1614
- "type": "uint256"
1615
- },
1616
- {
1617
- "internalType": "uint256",
1618
- "name": "fixedFee",
1619
- "type": "uint256"
1620
- }
1621
- ],
1622
- "internalType": "struct Fee",
1623
- "name": "fee",
1624
- "type": "tuple"
1625
- },
1626
- {
1627
- "internalType": "bytes",
1628
- "name": "filter",
1629
- "type": "bytes"
1630
- },
1631
- {
1632
- "internalType": "uint256",
1633
- "name": "capitalAmount",
1634
- "type": "uint256"
1635
- },
1636
- {
1637
- "internalType": "uint256",
1638
- "name": "lockedAmount",
1639
- "type": "uint256"
1640
- },
1641
- {
1642
- "internalType": "uint256",
1643
- "name": "balanceAmount",
1644
- "type": "uint256"
1645
- },
1646
- {
1647
- "internalType": "uint256",
1648
- "name": "lifetime",
1649
- "type": "uint256"
1650
- },
1651
- {
1652
- "internalType": "Timestamp",
1653
- "name": "expiredAt",
1654
- "type": "uint40"
1655
- },
1656
- {
1657
- "internalType": "Timestamp",
1658
- "name": "closedAt",
1659
- "type": "uint40"
1660
- }
1661
- ],
1662
- "internalType": "struct IBundle.BundleInfo",
1663
- "name": "bundle",
1664
- "type": "tuple"
1665
- },
1666
- {
1667
- "internalType": "StateId",
1668
- "name": "newState",
1669
- "type": "uint8"
1670
418
  }
1671
419
  ],
1672
- "name": "updateBundle",
1673
- "outputs": [],
1674
- "stateMutability": "nonpayable",
420
+ "stateMutability": "view",
1675
421
  "type": "function"
1676
422
  },
1677
423
  {
1678
- "inputs": [
1679
- {
1680
- "internalType": "NftId",
1681
- "name": "bundleNftId",
1682
- "type": "uint96"
1683
- },
424
+ "inputs": [],
425
+ "name": "getOwner",
426
+ "outputs": [
1684
427
  {
1685
- "internalType": "StateId",
1686
- "name": "newState",
1687
- "type": "uint8"
428
+ "internalType": "address",
429
+ "name": "",
430
+ "type": "address"
1688
431
  }
1689
432
  ],
1690
- "name": "updateBundleState",
1691
- "outputs": [],
1692
- "stateMutability": "nonpayable",
433
+ "stateMutability": "view",
1693
434
  "type": "function"
1694
435
  },
1695
436
  {
1696
- "inputs": [
1697
- {
1698
- "internalType": "NftId",
1699
- "name": "distributionNftId",
1700
- "type": "uint96"
1701
- },
1702
- {
1703
- "components": [
1704
- {
1705
- "internalType": "NftId",
1706
- "name": "productNftId",
1707
- "type": "uint96"
1708
- },
1709
- {
1710
- "internalType": "contract TokenHandler",
1711
- "name": "tokenHandler",
1712
- "type": "address"
1713
- },
1714
- {
1715
- "components": [
1716
- {
1717
- "internalType": "UFixed",
1718
- "name": "fractionalFee",
1719
- "type": "uint256"
1720
- },
1721
- {
1722
- "internalType": "uint256",
1723
- "name": "fixedFee",
1724
- "type": "uint256"
1725
- }
1726
- ],
1727
- "internalType": "struct Fee",
1728
- "name": "distributionFee",
1729
- "type": "tuple"
1730
- },
1731
- {
1732
- "internalType": "address",
1733
- "name": "wallet",
1734
- "type": "address"
1735
- }
1736
- ],
1737
- "internalType": "struct ISetup.DistributionSetupInfo",
1738
- "name": "setup",
1739
- "type": "tuple"
1740
- },
437
+ "inputs": [],
438
+ "name": "getRegistry",
439
+ "outputs": [
1741
440
  {
1742
- "internalType": "StateId",
1743
- "name": "newState",
1744
- "type": "uint8"
441
+ "internalType": "contract IRegistry",
442
+ "name": "",
443
+ "type": "address"
1745
444
  }
1746
445
  ],
1747
- "name": "updateDistributionSetup",
1748
- "outputs": [],
1749
- "stateMutability": "nonpayable",
446
+ "stateMutability": "view",
1750
447
  "type": "function"
1751
448
  },
1752
449
  {
1753
- "inputs": [
1754
- {
1755
- "internalType": "NftId",
1756
- "name": "distributionNftId",
1757
- "type": "uint96"
1758
- },
450
+ "inputs": [],
451
+ "name": "getRelease",
452
+ "outputs": [
1759
453
  {
1760
- "internalType": "StateId",
1761
- "name": "newState",
454
+ "internalType": "VersionPart",
455
+ "name": "release",
1762
456
  "type": "uint8"
1763
457
  }
1764
458
  ],
1765
- "name": "updateDistributionSetupState",
1766
- "outputs": [],
1767
- "stateMutability": "nonpayable",
459
+ "stateMutability": "pure",
1768
460
  "type": "function"
1769
461
  },
1770
462
  {
1771
- "inputs": [
1772
- {
1773
- "internalType": "NftId",
1774
- "name": "nftId",
1775
- "type": "uint96"
1776
- },
1777
- {
1778
- "components": [
1779
- {
1780
- "internalType": "DistributorType",
1781
- "name": "distributorType",
1782
- "type": "bytes8"
1783
- },
1784
- {
1785
- "internalType": "bool",
1786
- "name": "active",
1787
- "type": "bool"
1788
- },
1789
- {
1790
- "internalType": "bytes",
1791
- "name": "data",
1792
- "type": "bytes"
1793
- }
1794
- ],
1795
- "internalType": "struct IDistribution.DistributorInfo",
1796
- "name": "info",
1797
- "type": "tuple"
1798
- },
463
+ "inputs": [],
464
+ "name": "getRiskSet",
465
+ "outputs": [
1799
466
  {
1800
- "internalType": "StateId",
1801
- "name": "newState",
1802
- "type": "uint8"
467
+ "internalType": "contract RiskSet",
468
+ "name": "",
469
+ "type": "address"
1803
470
  }
1804
471
  ],
1805
- "name": "updateDistributor",
1806
- "outputs": [],
1807
- "stateMutability": "nonpayable",
472
+ "stateMutability": "view",
1808
473
  "type": "function"
1809
474
  },
1810
475
  {
1811
476
  "inputs": [
1812
477
  {
1813
- "internalType": "NftId",
1814
- "name": "nftId",
1815
- "type": "uint96"
478
+ "internalType": "RoleId",
479
+ "name": "roleId",
480
+ "type": "uint64"
1816
481
  },
1817
482
  {
1818
- "internalType": "StateId",
1819
- "name": "newState",
1820
- "type": "uint8"
483
+ "internalType": "address",
484
+ "name": "account",
485
+ "type": "address"
1821
486
  }
1822
487
  ],
1823
- "name": "updateDistributorState",
488
+ "name": "grantRole",
1824
489
  "outputs": [],
1825
490
  "stateMutability": "nonpayable",
1826
491
  "type": "function"
1827
492
  },
1828
493
  {
1829
- "inputs": [
1830
- {
1831
- "internalType": "Key32",
1832
- "name": "distributorKey",
1833
- "type": "bytes32"
1834
- },
1835
- {
1836
- "components": [
1837
- {
1838
- "internalType": "string",
1839
- "name": "name",
1840
- "type": "string"
1841
- },
1842
- {
1843
- "internalType": "UFixed",
1844
- "name": "minDiscountPercentage",
1845
- "type": "uint256"
1846
- },
1847
- {
1848
- "internalType": "UFixed",
1849
- "name": "maxDiscountPercentage",
1850
- "type": "uint256"
1851
- },
1852
- {
1853
- "internalType": "UFixed",
1854
- "name": "commissionPercentage",
1855
- "type": "uint256"
1856
- },
1857
- {
1858
- "internalType": "uint32",
1859
- "name": "maxReferralCount",
1860
- "type": "uint32"
1861
- },
1862
- {
1863
- "internalType": "uint32",
1864
- "name": "maxReferralLifetime",
1865
- "type": "uint32"
1866
- },
1867
- {
1868
- "internalType": "bool",
1869
- "name": "allowSelfReferrals",
1870
- "type": "bool"
1871
- },
1872
- {
1873
- "internalType": "bool",
1874
- "name": "allowRenewals",
1875
- "type": "bool"
1876
- },
1877
- {
1878
- "internalType": "bytes",
1879
- "name": "data",
1880
- "type": "bytes"
1881
- }
1882
- ],
1883
- "internalType": "struct IDistribution.DistributorTypeInfo",
1884
- "name": "info",
1885
- "type": "tuple"
1886
- },
494
+ "inputs": [],
495
+ "name": "isConsumingScheduledOp",
496
+ "outputs": [
1887
497
  {
1888
- "internalType": "StateId",
1889
- "name": "newState",
1890
- "type": "uint8"
498
+ "internalType": "bytes4",
499
+ "name": "",
500
+ "type": "bytes4"
1891
501
  }
1892
502
  ],
1893
- "name": "updateDistributorType",
1894
- "outputs": [],
1895
- "stateMutability": "nonpayable",
503
+ "stateMutability": "view",
1896
504
  "type": "function"
1897
505
  },
1898
506
  {
1899
- "inputs": [
1900
- {
1901
- "internalType": "Key32",
1902
- "name": "distributorKey",
1903
- "type": "bytes32"
1904
- },
507
+ "inputs": [],
508
+ "name": "linkToRegisteredNftId",
509
+ "outputs": [
1905
510
  {
1906
- "internalType": "StateId",
1907
- "name": "newState",
1908
- "type": "uint8"
511
+ "internalType": "NftId",
512
+ "name": "",
513
+ "type": "uint96"
1909
514
  }
1910
515
  ],
1911
- "name": "updateDistributorTypeState",
1912
- "outputs": [],
1913
516
  "stateMutability": "nonpayable",
1914
517
  "type": "function"
1915
518
  },
1916
519
  {
1917
520
  "inputs": [
1918
521
  {
1919
- "internalType": "NftId",
1920
- "name": "policyNftId",
1921
- "type": "uint96"
522
+ "internalType": "address",
523
+ "name": "from",
524
+ "type": "address"
1922
525
  },
1923
526
  {
1924
- "components": [
1925
- {
1926
- "internalType": "NftId",
1927
- "name": "productNftId",
1928
- "type": "uint96"
1929
- },
1930
- {
1931
- "internalType": "NftId",
1932
- "name": "bundleNftId",
1933
- "type": "uint96"
1934
- },
1935
- {
1936
- "internalType": "ReferralId",
1937
- "name": "referralId",
1938
- "type": "bytes8"
1939
- },
1940
- {
1941
- "internalType": "RiskId",
1942
- "name": "riskId",
1943
- "type": "bytes8"
1944
- },
1945
- {
1946
- "internalType": "uint256",
1947
- "name": "sumInsuredAmount",
1948
- "type": "uint256"
1949
- },
1950
- {
1951
- "internalType": "uint256",
1952
- "name": "premiumAmount",
1953
- "type": "uint256"
1954
- },
1955
- {
1956
- "internalType": "uint256",
1957
- "name": "premiumPaidAmount",
1958
- "type": "uint256"
1959
- },
1960
- {
1961
- "internalType": "uint256",
1962
- "name": "lifetime",
1963
- "type": "uint256"
1964
- },
1965
- {
1966
- "internalType": "bytes",
1967
- "name": "applicationData",
1968
- "type": "bytes"
1969
- },
1970
- {
1971
- "internalType": "bytes",
1972
- "name": "policyData",
1973
- "type": "bytes"
1974
- },
1975
- {
1976
- "internalType": "uint16",
1977
- "name": "claimsCount",
1978
- "type": "uint16"
1979
- },
1980
- {
1981
- "internalType": "uint16",
1982
- "name": "openClaimsCount",
1983
- "type": "uint16"
1984
- },
1985
- {
1986
- "internalType": "uint256",
1987
- "name": "payoutAmount",
1988
- "type": "uint256"
1989
- },
1990
- {
1991
- "internalType": "Timestamp",
1992
- "name": "activatedAt",
1993
- "type": "uint40"
1994
- },
1995
- {
1996
- "internalType": "Timestamp",
1997
- "name": "expiredAt",
1998
- "type": "uint40"
1999
- },
2000
- {
2001
- "internalType": "Timestamp",
2002
- "name": "closedAt",
2003
- "type": "uint40"
2004
- }
2005
- ],
2006
- "internalType": "struct IPolicy.PolicyInfo",
2007
- "name": "policy",
2008
- "type": "tuple"
527
+ "internalType": "address",
528
+ "name": "to",
529
+ "type": "address"
2009
530
  },
2010
531
  {
2011
- "internalType": "StateId",
2012
- "name": "newState",
2013
- "type": "uint8"
532
+ "internalType": "uint256",
533
+ "name": "tokenId",
534
+ "type": "uint256"
535
+ },
536
+ {
537
+ "internalType": "address",
538
+ "name": "operator",
539
+ "type": "address"
2014
540
  }
2015
541
  ],
2016
- "name": "updatePolicy",
542
+ "name": "nftTransferFrom",
2017
543
  "outputs": [],
2018
544
  "stateMutability": "nonpayable",
2019
545
  "type": "function"
@@ -2021,133 +547,49 @@
2021
547
  {
2022
548
  "inputs": [
2023
549
  {
2024
- "internalType": "NftId",
2025
- "name": "policyNftId",
550
+ "internalType": "Amount",
551
+ "name": "dipAmount",
2026
552
  "type": "uint96"
2027
- },
2028
- {
2029
- "internalType": "StateId",
2030
- "name": "newState",
2031
- "type": "uint8"
2032
553
  }
2033
554
  ],
2034
- "name": "updatePolicyState",
555
+ "name": "refillStakingRewardReserves",
2035
556
  "outputs": [],
2036
557
  "stateMutability": "nonpayable",
2037
558
  "type": "function"
2038
559
  },
2039
560
  {
2040
561
  "inputs": [
562
+ {
563
+ "internalType": "address",
564
+ "name": "product",
565
+ "type": "address"
566
+ }
567
+ ],
568
+ "name": "registerProduct",
569
+ "outputs": [
2041
570
  {
2042
571
  "internalType": "NftId",
2043
- "name": "poolNftId",
572
+ "name": "productNftId",
2044
573
  "type": "uint96"
2045
- },
574
+ }
575
+ ],
576
+ "stateMutability": "nonpayable",
577
+ "type": "function"
578
+ },
579
+ {
580
+ "inputs": [
2046
581
  {
2047
- "components": [
2048
- {
2049
- "internalType": "NftId",
2050
- "name": "productNftId",
2051
- "type": "uint96"
2052
- },
2053
- {
2054
- "internalType": "contract TokenHandler",
2055
- "name": "tokenHandler",
2056
- "type": "address"
2057
- },
2058
- {
2059
- "internalType": "bool",
2060
- "name": "isInterceptingBundleTransfers",
2061
- "type": "bool"
2062
- },
2063
- {
2064
- "internalType": "bool",
2065
- "name": "isExternallyManaged",
2066
- "type": "bool"
2067
- },
2068
- {
2069
- "internalType": "bool",
2070
- "name": "isVerifyingApplications",
2071
- "type": "bool"
2072
- },
2073
- {
2074
- "internalType": "UFixed",
2075
- "name": "collateralizationLevel",
2076
- "type": "uint256"
2077
- },
2078
- {
2079
- "internalType": "UFixed",
2080
- "name": "retentionLevel",
2081
- "type": "uint256"
2082
- },
2083
- {
2084
- "components": [
2085
- {
2086
- "internalType": "UFixed",
2087
- "name": "fractionalFee",
2088
- "type": "uint256"
2089
- },
2090
- {
2091
- "internalType": "uint256",
2092
- "name": "fixedFee",
2093
- "type": "uint256"
2094
- }
2095
- ],
2096
- "internalType": "struct Fee",
2097
- "name": "poolFee",
2098
- "type": "tuple"
2099
- },
2100
- {
2101
- "components": [
2102
- {
2103
- "internalType": "UFixed",
2104
- "name": "fractionalFee",
2105
- "type": "uint256"
2106
- },
2107
- {
2108
- "internalType": "uint256",
2109
- "name": "fixedFee",
2110
- "type": "uint256"
2111
- }
2112
- ],
2113
- "internalType": "struct Fee",
2114
- "name": "stakingFee",
2115
- "type": "tuple"
2116
- },
2117
- {
2118
- "components": [
2119
- {
2120
- "internalType": "UFixed",
2121
- "name": "fractionalFee",
2122
- "type": "uint256"
2123
- },
2124
- {
2125
- "internalType": "uint256",
2126
- "name": "fixedFee",
2127
- "type": "uint256"
2128
- }
2129
- ],
2130
- "internalType": "struct Fee",
2131
- "name": "performanceFee",
2132
- "type": "tuple"
2133
- },
2134
- {
2135
- "internalType": "address",
2136
- "name": "wallet",
2137
- "type": "address"
2138
- }
2139
- ],
2140
- "internalType": "struct ISetup.PoolSetupInfo",
2141
- "name": "setup",
2142
- "type": "tuple"
582
+ "internalType": "RoleId",
583
+ "name": "roleId",
584
+ "type": "uint64"
2143
585
  },
2144
586
  {
2145
- "internalType": "StateId",
2146
- "name": "newState",
2147
- "type": "uint8"
587
+ "internalType": "address",
588
+ "name": "account",
589
+ "type": "address"
2148
590
  }
2149
591
  ],
2150
- "name": "updatePoolSetup",
592
+ "name": "revokeRole",
2151
593
  "outputs": [],
2152
594
  "stateMutability": "nonpayable",
2153
595
  "type": "function"
@@ -2155,17 +597,12 @@
2155
597
  {
2156
598
  "inputs": [
2157
599
  {
2158
- "internalType": "NftId",
2159
- "name": "poolNftId",
2160
- "type": "uint96"
2161
- },
2162
- {
2163
- "internalType": "StateId",
2164
- "name": "newState",
2165
- "type": "uint8"
600
+ "internalType": "address",
601
+ "name": "",
602
+ "type": "address"
2166
603
  }
2167
604
  ],
2168
- "name": "updatePoolSetupState",
605
+ "name": "setAuthority",
2169
606
  "outputs": [],
2170
607
  "stateMutability": "nonpayable",
2171
608
  "type": "function"
@@ -2173,156 +610,12 @@
2173
610
  {
2174
611
  "inputs": [
2175
612
  {
2176
- "internalType": "NftId",
2177
- "name": "productNftId",
2178
- "type": "uint96"
2179
- },
2180
- {
2181
- "components": [
2182
- {
2183
- "internalType": "contract IERC20Metadata",
2184
- "name": "token",
2185
- "type": "address"
2186
- },
2187
- {
2188
- "internalType": "contract TokenHandler",
2189
- "name": "tokenHandler",
2190
- "type": "address"
2191
- },
2192
- {
2193
- "internalType": "NftId",
2194
- "name": "distributionNftId",
2195
- "type": "uint96"
2196
- },
2197
- {
2198
- "internalType": "NftId",
2199
- "name": "poolNftId",
2200
- "type": "uint96"
2201
- },
2202
- {
2203
- "components": [
2204
- {
2205
- "internalType": "UFixed",
2206
- "name": "fractionalFee",
2207
- "type": "uint256"
2208
- },
2209
- {
2210
- "internalType": "uint256",
2211
- "name": "fixedFee",
2212
- "type": "uint256"
2213
- }
2214
- ],
2215
- "internalType": "struct Fee",
2216
- "name": "distributionFee",
2217
- "type": "tuple"
2218
- },
2219
- {
2220
- "components": [
2221
- {
2222
- "internalType": "UFixed",
2223
- "name": "fractionalFee",
2224
- "type": "uint256"
2225
- },
2226
- {
2227
- "internalType": "uint256",
2228
- "name": "fixedFee",
2229
- "type": "uint256"
2230
- }
2231
- ],
2232
- "internalType": "struct Fee",
2233
- "name": "productFee",
2234
- "type": "tuple"
2235
- },
2236
- {
2237
- "components": [
2238
- {
2239
- "internalType": "UFixed",
2240
- "name": "fractionalFee",
2241
- "type": "uint256"
2242
- },
2243
- {
2244
- "internalType": "uint256",
2245
- "name": "fixedFee",
2246
- "type": "uint256"
2247
- }
2248
- ],
2249
- "internalType": "struct Fee",
2250
- "name": "processingFee",
2251
- "type": "tuple"
2252
- },
2253
- {
2254
- "components": [
2255
- {
2256
- "internalType": "UFixed",
2257
- "name": "fractionalFee",
2258
- "type": "uint256"
2259
- },
2260
- {
2261
- "internalType": "uint256",
2262
- "name": "fixedFee",
2263
- "type": "uint256"
2264
- }
2265
- ],
2266
- "internalType": "struct Fee",
2267
- "name": "poolFee",
2268
- "type": "tuple"
2269
- },
2270
- {
2271
- "components": [
2272
- {
2273
- "internalType": "UFixed",
2274
- "name": "fractionalFee",
2275
- "type": "uint256"
2276
- },
2277
- {
2278
- "internalType": "uint256",
2279
- "name": "fixedFee",
2280
- "type": "uint256"
2281
- }
2282
- ],
2283
- "internalType": "struct Fee",
2284
- "name": "stakingFee",
2285
- "type": "tuple"
2286
- },
2287
- {
2288
- "components": [
2289
- {
2290
- "internalType": "UFixed",
2291
- "name": "fractionalFee",
2292
- "type": "uint256"
2293
- },
2294
- {
2295
- "internalType": "uint256",
2296
- "name": "fixedFee",
2297
- "type": "uint256"
2298
- }
2299
- ],
2300
- "internalType": "struct Fee",
2301
- "name": "performanceFee",
2302
- "type": "tuple"
2303
- },
2304
- {
2305
- "internalType": "bool",
2306
- "name": "isIntercepting",
2307
- "type": "bool"
2308
- },
2309
- {
2310
- "internalType": "address",
2311
- "name": "wallet",
2312
- "type": "address"
2313
- }
2314
- ],
2315
- "internalType": "struct ISetup.ProductSetupInfo",
2316
- "name": "setup",
2317
- "type": "tuple"
2318
- },
2319
- {
2320
- "internalType": "StateId",
2321
- "name": "newState",
2322
- "type": "uint8"
613
+ "internalType": "Seconds",
614
+ "name": "stakeLockingPeriod",
615
+ "type": "uint40"
2323
616
  }
2324
617
  ],
2325
- "name": "updateProductSetup",
618
+ "name": "setStakingLockingPeriod",
2326
619
  "outputs": [],
2327
620
  "stateMutability": "nonpayable",
2328
621
  "type": "function"
@@ -2330,17 +623,12 @@
2330
623
  {
2331
624
  "inputs": [
2332
625
  {
2333
- "internalType": "NftId",
2334
- "name": "productNftId",
2335
- "type": "uint96"
2336
- },
2337
- {
2338
- "internalType": "StateId",
2339
- "name": "newState",
2340
- "type": "uint8"
626
+ "internalType": "UFixed",
627
+ "name": "rewardRate",
628
+ "type": "uint256"
2341
629
  }
2342
630
  ],
2343
- "name": "updateProductSetupState",
631
+ "name": "setStakingRewardRate",
2344
632
  "outputs": [],
2345
633
  "stateMutability": "nonpayable",
2346
634
  "type": "function"
@@ -2348,59 +636,22 @@
2348
636
  {
2349
637
  "inputs": [
2350
638
  {
2351
- "internalType": "Key32",
2352
- "name": "referralKey",
2353
- "type": "bytes32"
639
+ "internalType": "string",
640
+ "name": "targetName",
641
+ "type": "string"
2354
642
  },
2355
643
  {
2356
- "components": [
2357
- {
2358
- "internalType": "NftId",
2359
- "name": "distributorNftId",
2360
- "type": "uint96"
2361
- },
2362
- {
2363
- "internalType": "string",
2364
- "name": "referralCode",
2365
- "type": "string"
2366
- },
2367
- {
2368
- "internalType": "UFixed",
2369
- "name": "discountPercentage",
2370
- "type": "uint256"
2371
- },
2372
- {
2373
- "internalType": "uint32",
2374
- "name": "maxReferrals",
2375
- "type": "uint32"
2376
- },
2377
- {
2378
- "internalType": "uint32",
2379
- "name": "usedReferrals",
2380
- "type": "uint32"
2381
- },
2382
- {
2383
- "internalType": "Timestamp",
2384
- "name": "expiryAt",
2385
- "type": "uint40"
2386
- },
2387
- {
2388
- "internalType": "bytes",
2389
- "name": "data",
2390
- "type": "bytes"
2391
- }
2392
- ],
2393
- "internalType": "struct IDistribution.ReferralInfo",
2394
- "name": "referralInfo",
2395
- "type": "tuple"
644
+ "internalType": "bytes4[]",
645
+ "name": "selectors",
646
+ "type": "bytes4[]"
2396
647
  },
2397
648
  {
2398
- "internalType": "StateId",
2399
- "name": "newState",
2400
- "type": "uint8"
649
+ "internalType": "RoleId",
650
+ "name": "roleId",
651
+ "type": "uint64"
2401
652
  }
2402
653
  ],
2403
- "name": "updateReferral",
654
+ "name": "setTargetFunctionRole",
2404
655
  "outputs": [],
2405
656
  "stateMutability": "nonpayable",
2406
657
  "type": "function"
@@ -2408,17 +659,17 @@
2408
659
  {
2409
660
  "inputs": [
2410
661
  {
2411
- "internalType": "Key32",
2412
- "name": "referralKey",
2413
- "type": "bytes32"
662
+ "internalType": "address",
663
+ "name": "target",
664
+ "type": "address"
2414
665
  },
2415
666
  {
2416
- "internalType": "StateId",
2417
- "name": "newState",
2418
- "type": "uint8"
667
+ "internalType": "bool",
668
+ "name": "locked",
669
+ "type": "bool"
2419
670
  }
2420
671
  ],
2421
- "name": "updateReferralState",
672
+ "name": "setTargetLocked",
2422
673
  "outputs": [],
2423
674
  "stateMutability": "nonpayable",
2424
675
  "type": "function"
@@ -2426,53 +677,38 @@
2426
677
  {
2427
678
  "inputs": [
2428
679
  {
2429
- "internalType": "RiskId",
2430
- "name": "riskId",
2431
- "type": "bytes8"
2432
- },
2433
- {
2434
- "components": [
2435
- {
2436
- "internalType": "NftId",
2437
- "name": "productNftId",
2438
- "type": "uint96"
2439
- },
2440
- {
2441
- "internalType": "bytes",
2442
- "name": "data",
2443
- "type": "bytes"
2444
- }
2445
- ],
2446
- "internalType": "struct IRisk.RiskInfo",
2447
- "name": "risk",
2448
- "type": "tuple"
2449
- },
680
+ "internalType": "bytes4",
681
+ "name": "interfaceId",
682
+ "type": "bytes4"
683
+ }
684
+ ],
685
+ "name": "supportsInterface",
686
+ "outputs": [
2450
687
  {
2451
- "internalType": "StateId",
2452
- "name": "newState",
2453
- "type": "uint8"
688
+ "internalType": "bool",
689
+ "name": "",
690
+ "type": "bool"
2454
691
  }
2455
692
  ],
2456
- "name": "updateRisk",
2457
- "outputs": [],
2458
- "stateMutability": "nonpayable",
693
+ "stateMutability": "view",
2459
694
  "type": "function"
2460
695
  },
2461
696
  {
2462
697
  "inputs": [
2463
698
  {
2464
- "internalType": "RiskId",
2465
- "name": "riskId",
2466
- "type": "bytes8"
2467
- },
699
+ "internalType": "Amount",
700
+ "name": "dipAmount",
701
+ "type": "uint96"
702
+ }
703
+ ],
704
+ "name": "withdrawStakingRewardReserves",
705
+ "outputs": [
2468
706
  {
2469
- "internalType": "StateId",
2470
- "name": "newState",
2471
- "type": "uint8"
707
+ "internalType": "Amount",
708
+ "name": "newBalance",
709
+ "type": "uint96"
2472
710
  }
2473
711
  ],
2474
- "name": "updateRiskState",
2475
- "outputs": [],
2476
712
  "stateMutability": "nonpayable",
2477
713
  "type": "function"
2478
714
  }