@etherisc/gif-next 0.0.2-f0d86c2-077 → 0.0.2-f29e479-370

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