@etherisc/gif-next 0.0.2-c4efd5e → 0.0.2-c5c9395-682

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