@etherisc/gif-next 0.0.2-e5ea33d → 0.0.2-e69072e-892

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