@etherisc/gif-next 0.0.2-d086e6d-456 → 0.0.2-d1f0662-893

Sign up to get free protection for your applications and to get access to all the features.
Files changed (265) hide show
  1. package/README.md +6 -88
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +37 -6
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +60 -13
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IComponent.sol/IComponent.json +37 -6
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +44 -13
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +55 -24
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +52 -21
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +55 -24
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +52 -21
  18. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
  19. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
  20. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
  21. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  22. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +309 -2023
  23. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  24. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +21 -62
  25. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  26. package/artifacts/contracts/instance/Instance.sol/Instance.json +424 -2776
  27. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  28. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +95 -58
  29. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  30. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
  31. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  32. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +331 -51
  33. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  34. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +71 -215
  35. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  36. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +38 -83
  37. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  38. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
  39. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
  40. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +2 -2
  41. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
  42. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +25 -36
  43. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  44. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  45. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  46. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +8 -8
  47. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  48. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +6 -6
  49. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  50. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +6 -6
  51. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  52. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  53. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  54. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  55. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  56. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
  58. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +106 -246
  60. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  61. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +38 -55
  62. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
  63. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +166 -136
  64. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  65. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +38 -59
  66. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
  67. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +623 -91
  68. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  69. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +143 -32
  70. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +185 -451
  72. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  73. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +82 -107
  74. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  75. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +38 -191
  76. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
  77. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +97 -45
  78. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
  79. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +306 -62
  80. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +34 -297
  82. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +124 -103
  84. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  85. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +269 -60
  86. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
  87. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
  88. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  89. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +5 -37
  90. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +332 -162
  92. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +104 -53
  94. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +442 -84
  96. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  97. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +90 -39
  98. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
  100. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
  102. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  103. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +56 -59
  104. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
  105. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +28 -37
  106. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  107. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  108. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  109. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +5 -37
  110. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  111. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  112. package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
  113. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
  114. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
  115. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  116. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +22 -49
  117. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  118. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +21 -34
  119. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
  120. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
  121. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  122. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +10 -23
  123. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  124. package/artifacts/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +3 -3
  125. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  126. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  127. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  128. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +0 -13
  129. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  130. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
  131. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  132. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
  133. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  134. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  135. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  136. package/artifacts/contracts/shared/IService.sol/IService.json +5 -37
  137. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  138. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  139. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +6 -19
  140. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  141. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
  142. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  143. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -27
  144. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  145. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +6 -19
  146. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  147. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
  148. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  149. package/artifacts/contracts/shared/Service.sol/Service.json +11 -38
  150. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  151. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
  152. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  153. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  154. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  155. package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
  156. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  157. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +6 -19
  158. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  159. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  160. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  161. package/artifacts/contracts/test/TestService.sol/TestService.json +26 -49
  162. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  163. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  164. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  165. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  166. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  167. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +1 -1
  168. package/artifacts/contracts/types/Amount.sol/AmountLib.json +124 -4
  169. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  170. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +83 -4
  173. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
  175. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  176. package/artifacts/contracts/types/Fee.sol/FeeLib.json +42 -18
  177. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  178. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
  179. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  180. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
  181. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  182. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  183. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  184. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  185. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  186. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  187. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
  188. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  189. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
  190. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  191. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
  192. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  193. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  194. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +1 -1
  195. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  196. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  197. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  198. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +17 -4
  199. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  200. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  201. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  202. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  203. package/contracts/components/Component.sol +21 -2
  204. package/contracts/components/Distribution.sol +11 -6
  205. package/contracts/components/IComponent.sol +16 -2
  206. package/contracts/components/IPoolComponent.sol +8 -7
  207. package/contracts/components/IProductComponent.sol +5 -4
  208. package/contracts/components/Pool.sol +11 -12
  209. package/contracts/components/Product.sol +144 -62
  210. package/contracts/instance/BundleManager.sol +3 -4
  211. package/contracts/instance/IInstance.sol +32 -53
  212. package/contracts/instance/IInstanceService.sol +15 -14
  213. package/contracts/instance/Instance.sol +107 -205
  214. package/contracts/instance/InstanceAccessManager.sol +44 -25
  215. package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
  216. package/contracts/instance/InstanceReader.sol +84 -7
  217. package/contracts/instance/InstanceService.sol +102 -289
  218. package/contracts/instance/InstanceStore.sol +212 -0
  219. package/contracts/instance/ObjectManager.sol +1 -1
  220. package/contracts/instance/base/ComponentService.sol +53 -41
  221. package/contracts/instance/base/KeyValueStore.sol +0 -31
  222. package/contracts/instance/base/Lifecycle.sol +15 -4
  223. package/contracts/instance/module/IAccess.sol +2 -2
  224. package/contracts/instance/module/IComponents.sol +3 -3
  225. package/contracts/instance/module/IDistribution.sol +3 -2
  226. package/contracts/instance/module/IPolicy.sol +13 -8
  227. package/contracts/instance/service/ApplicationService.sol +60 -224
  228. package/contracts/instance/service/BundleService.sol +73 -122
  229. package/contracts/instance/service/ClaimService.sol +318 -32
  230. package/contracts/instance/service/DistributionService.sol +64 -151
  231. package/contracts/instance/service/IApplicationService.sol +8 -28
  232. package/contracts/instance/service/IBundleService.sol +34 -9
  233. package/contracts/instance/service/IClaimService.sol +52 -23
  234. package/contracts/instance/service/IDistributionService.sol +11 -22
  235. package/contracts/instance/service/IPolicyService.sol +24 -16
  236. package/contracts/instance/service/IPoolService.sol +18 -3
  237. package/contracts/instance/service/IPricingService.sol +37 -0
  238. package/contracts/instance/service/PolicyService.sol +134 -118
  239. package/contracts/instance/service/PoolService.sol +124 -64
  240. package/contracts/instance/service/PricingService.sol +275 -0
  241. package/contracts/instance/service/PricingServiceManager.sol +51 -0
  242. package/contracts/instance/service/ProductService.sol +14 -14
  243. package/contracts/registry/IRegistryService.sol +0 -2
  244. package/contracts/registry/RegistryService.sol +16 -15
  245. package/contracts/registry/ReleaseManager.sol +20 -18
  246. package/contracts/shared/IPolicyHolder.sol +23 -9
  247. package/contracts/shared/IRegistryLinked.sol +0 -1
  248. package/contracts/shared/IService.sol +3 -6
  249. package/contracts/shared/NftOwnable.sol +0 -2
  250. package/contracts/shared/PolicyHolder.sol +30 -17
  251. package/contracts/shared/Registerable.sol +10 -9
  252. package/contracts/shared/RegistryLinked.sol +0 -5
  253. package/contracts/shared/Service.sol +16 -7
  254. package/contracts/shared/TokenHandler.sol +4 -2
  255. package/contracts/test/TestService.sol +1 -1
  256. package/contracts/types/Amount.sol +49 -0
  257. package/contracts/types/ClaimId.sol +25 -2
  258. package/contracts/types/Fee.sol +7 -6
  259. package/contracts/types/ObjectType.sol +9 -5
  260. package/contracts/types/PayoutId.sol +33 -5
  261. package/contracts/types/StateId.sol +6 -2
  262. package/contracts/types/Timestamp.sol +5 -0
  263. package/package.json +1 -1
  264. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  265. /package/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol +0 -0
@@ -8,11 +8,12 @@ import {InstanceReader} from "../../instance/InstanceReader.sol";
8
8
  import {ISetup} from "../../instance/module/ISetup.sol";
9
9
  import {IPolicy} from "../module/IPolicy.sol";
10
10
 
11
+ import {Amount, AmountLib} from "../../types/Amount.sol";
11
12
  import {NftId, NftIdLib, zeroNftId} from "../../types/NftId.sol";
12
13
  import {Fee, FeeLib} from "../../types/Fee.sol";
13
14
  import {PRODUCT_SERVICE_ROLE, DISTRIBUTION_OWNER_ROLE} from "../../types/RoleId.sol";
14
15
  import {KEEP_STATE} from "../../types/StateId.sol";
15
- import {ObjectType, DISTRIBUTION, INSTANCE, DISTRIBUTION, DISTRIBUTOR} from "../../types/ObjectType.sol";
16
+ import {ObjectType, DISTRIBUTION, INSTANCE, DISTRIBUTION, DISTRIBUTOR, PRICE} from "../../types/ObjectType.sol";
16
17
  import {Version, VersionLib} from "../../types/Version.sol";
17
18
  import {RoleId} from "../../types/RoleId.sol";
18
19
 
@@ -26,6 +27,7 @@ import {InstanceService} from "../InstanceService.sol";
26
27
  import {IComponent} from "../../components/IComponent.sol";
27
28
  import {IDistributionComponent} from "../../components/IDistributionComponent.sol";
28
29
  import {IDistributionService} from "./IDistributionService.sol";
30
+ import {IPricingService} from "./IPricingService.sol";
29
31
 
30
32
  import {UFixed, UFixedLib} from "../../types/UFixed.sol";
31
33
  import {DistributorType, DistributorTypeLib} from "../../types/DistributorType.sol";
@@ -33,6 +35,7 @@ import {ReferralId, ReferralStatus, ReferralLib} from "../../types/Referral.sol"
33
35
  import {Timestamp, TimestampLib, zeroTimestamp} from "../../types/Timestamp.sol";
34
36
  import {Key32} from "../../types/Key32.sol";
35
37
  import {IDistribution} from "../module/IDistribution.sol";
38
+ import {InstanceStore} from "../InstanceStore.sol";
36
39
 
37
40
 
38
41
  contract DistributionService is
@@ -60,11 +63,11 @@ contract DistributionService is
60
63
  (registryAddress, initialOwner) = abi.decode(data, (address, address));
61
64
  // TODO while DistributionService is not deployed in DistributionServiceManager constructor
62
65
  // owner is DistributionServiceManager deployer
63
- initializeService(registryAddress, owner);
66
+ initializeService(registryAddress, address(0), owner);
64
67
  registerInterface(type(IDistributionService).interfaceId);
65
68
  }
66
69
 
67
- function getDomain() public pure override(Service, IService) returns(ObjectType) {
70
+ function getDomain() public pure override returns(ObjectType) {
68
71
  return DISTRIBUTION();
69
72
  }
70
73
 
@@ -87,7 +90,7 @@ contract DistributionService is
87
90
  distribution.linkToRegisteredNftId();
88
91
  distributionNftId = distributionInfo.nftId;
89
92
 
90
- instance.createDistributionSetup(distributionNftId, distribution.getSetupInfo());
93
+ instance.getInstanceStore().createDistributionSetup(distributionNftId, distribution.getSetupInfo());
91
94
  // TODO move to distribution?
92
95
  bytes4[][] memory selectors = new bytes4[][](2);
93
96
  selectors[0] = new bytes4[](1);
@@ -119,14 +122,14 @@ contract DistributionService is
119
122
  revert ErrorIDistributionServiceMinFeeTooHigh(minDistributionOwnerFee.fractionalFee.toInt(), distributionFee.fractionalFee.toInt());
120
123
  }
121
124
 
122
- (NftId distributionNftId, IRegistry.ObjectInfo memory info , IInstance instance) = _getAndVerifyComponentInfoAndInstance(DISTRIBUTION());
125
+ (NftId distributionNftId,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(DISTRIBUTION());
123
126
  InstanceReader instanceReader = instance.getInstanceReader();
124
127
 
125
128
  ISetup.DistributionSetupInfo memory distSetupInfo = instanceReader.getDistributionSetupInfo(distributionNftId);
126
129
  distSetupInfo.minDistributionOwnerFee = minDistributionOwnerFee;
127
130
  distSetupInfo.distributionFee = distributionFee;
128
131
 
129
- instance.updateDistributionSetup(distributionNftId, distSetupInfo, KEEP_STATE());
132
+ instance.getInstanceStore().updateDistributionSetup(distributionNftId, distSetupInfo, KEEP_STATE());
130
133
  }
131
134
 
132
135
  function createDistributorType(
@@ -143,7 +146,7 @@ contract DistributionService is
143
146
  external
144
147
  returns (DistributorType distributorType)
145
148
  {
146
- (NftId distributionNftId, IInstance instance) = _getAndVerifyCallingDistribution();
149
+ (NftId distributionNftId,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(DISTRIBUTION());
147
150
 
148
151
  {
149
152
  ISetup.DistributionSetupInfo memory setupInfo = instance.getInstanceReader().getDistributionSetupInfo(distributionNftId);
@@ -153,33 +156,33 @@ contract DistributionService is
153
156
  revert ErrorIDistributionServiceMaxDiscountTooHigh(maxDiscountPercentage.toInt(), maxDiscountPercentageLimit.toInt());
154
157
  }
155
158
  }
156
-
159
+
157
160
  distributorType = DistributorTypeLib.toDistributorType(distributionNftId, name);
158
- Key32 key32 = distributorType.toKey32();
159
-
160
- if(!instance.exists(key32)) {
161
- IDistribution.DistributorTypeInfo memory info = IDistribution.DistributorTypeInfo(
162
- name,
163
- minDiscountPercentage,
164
- maxDiscountPercentage,
165
- commissionPercentage,
166
- maxReferralCount,
167
- maxReferralLifetime,
168
- allowSelfReferrals,
169
- allowRenewals,
170
- data);
171
-
172
- instance.createDistributorType(key32, info);
173
- }
161
+ IDistribution.DistributorTypeInfo memory info = IDistribution.DistributorTypeInfo(
162
+ name,
163
+ minDiscountPercentage,
164
+ maxDiscountPercentage,
165
+ commissionPercentage,
166
+ maxReferralCount,
167
+ maxReferralLifetime,
168
+ allowSelfReferrals,
169
+ allowRenewals,
170
+ data);
171
+
172
+ instance.getInstanceStore().createDistributorType(distributorType, info);
174
173
  }
175
174
 
175
+
176
176
  function createDistributor(
177
177
  address distributor,
178
178
  DistributorType distributorType,
179
179
  bytes memory data
180
- ) external returns (NftId distributorNftId)
180
+ )
181
+ external
182
+ virtual
183
+ returns (NftId distributorNftId)
181
184
  {
182
- (NftId distributionNftId, IInstance instance) = _getAndVerifyCallingDistribution();
185
+ (NftId distributionNftId,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(DISTRIBUTION());
183
186
 
184
187
  distributorNftId = getRegistryService().registerDistributor(
185
188
  IRegistry.ObjectInfo(
@@ -196,25 +199,27 @@ contract DistributionService is
196
199
  distributorType,
197
200
  true, // active
198
201
  data,
199
- 0,
202
+ AmountLib.zero(),
200
203
  0);
201
204
 
202
- instance.createDistributor(distributorNftId, info);
205
+ instance.getInstanceStore().createDistributor(distributorNftId, info);
203
206
  }
204
207
 
205
- function updateDistributorType(
206
- NftId distributorNftId,
207
- DistributorType distributorType,
208
- bytes memory data
209
- ) external virtual
210
- {
211
- (, IInstance instance) = _getAndVerifyCallingDistribution();
212
- InstanceReader instanceReader = instance.getInstanceReader();
213
- IDistribution.DistributorInfo memory distributorInfo = instanceReader.getDistributorInfo(distributorNftId);
214
- distributorInfo.distributorType = distributorType;
215
- distributorInfo.data = data;
216
- instance.updateDistributor(distributorNftId, distributorInfo, KEEP_STATE());
217
- }
208
+ // function updateDistributorType(
209
+ // NftId distributorNftId,
210
+ // DistributorType distributorType,
211
+ // bytes memory data
212
+ // )
213
+ // external
214
+ // virtual
215
+ // {
216
+ // (, IInstance instance) = _getAndVerifyCallingDistribution();
217
+ // InstanceReader instanceReader = instance.getInstanceReader();
218
+ // IDistribution.DistributorInfo memory distributorInfo = instanceReader.getDistributorInfo(distributorNftId);
219
+ // distributorInfo.distributorType = distributorType;
220
+ // distributorInfo.data = data;
221
+ // instance.updateDistributor(distributorNftId, distributorInfo, KEEP_STATE());
222
+ // }
218
223
 
219
224
 
220
225
  function createReferral(
@@ -229,7 +234,7 @@ contract DistributionService is
229
234
  virtual
230
235
  returns (ReferralId referralId)
231
236
  {
232
- (NftId distributionNftId, IInstance instance) = _getAndVerifyCallingDistribution();
237
+ (NftId distributionNftId,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(DISTRIBUTION());
233
238
 
234
239
  if (bytes(code).length == 0) {
235
240
  revert ErrorIDistributionServiceInvalidReferral(code);
@@ -239,8 +244,7 @@ contract DistributionService is
239
244
  }
240
245
 
241
246
  InstanceReader instanceReader = instance.getInstanceReader();
242
- IDistribution.DistributorInfo memory distributorInfo = instanceReader.getDistributorInfo(distributorNftId);
243
- DistributorType distributorType = distributorInfo.distributorType;
247
+ DistributorType distributorType = instanceReader.getDistributorInfo(distributorNftId).distributorType;
244
248
  IDistribution.DistributorTypeInfo memory distributorTypeData = instanceReader.getDistributorTypeInfo(distributorType);
245
249
 
246
250
  if (distributorTypeData.maxReferralCount < maxReferrals) {
@@ -267,15 +271,15 @@ contract DistributionService is
267
271
  data
268
272
  );
269
273
 
270
- instance.createReferral(referralId.toKey32(), info);
274
+ instance.getInstanceStore().createReferral(referralId, info);
271
275
  return referralId;
272
276
  }
273
277
 
274
278
  function processSale(
275
- NftId distributionNftId,
279
+ NftId distributionNftId, // assume always of distribution type
276
280
  ReferralId referralId,
277
281
  IPolicy.Premium memory premium,
278
- uint256 transferredDistributionFeeAmount
282
+ Amount transferredDistributionFeeAmount
279
283
  )
280
284
  external
281
285
  virtual
@@ -289,104 +293,36 @@ contract DistributionService is
289
293
 
290
294
  IInstance instance = _getInstanceForDistribution(distributionNftId);
291
295
  InstanceReader reader = instance.getInstanceReader();
296
+ InstanceStore store = instance.getInstanceStore();
292
297
  IDistribution.ReferralInfo memory referralInfo = reader.getReferralInfo(referralId);
293
298
  IDistribution.DistributorInfo memory distributorInfo = reader.getDistributorInfo(referralInfo.distributorNftId);
294
299
  ISetup.DistributionSetupInfo memory setupInfo = reader.getDistributionSetupInfo(distributionNftId);
295
300
 
296
- uint256 distributionOwnerFee = premium.distributionOwnerFeeFixAmount + premium.distributionOwnerFeeVarAmount;
297
- uint256 commissionAmount = premium.commissionAmount;
301
+ Amount distributionOwnerFee = AmountLib.toAmount(premium.distributionOwnerFeeFixAmount + premium.distributionOwnerFeeVarAmount);
302
+ Amount commissionAmount = AmountLib.toAmount(premium.commissionAmount);
298
303
 
299
- if (transferredDistributionFeeAmount != distributionOwnerFee + commissionAmount) {
300
- revert ErrorIDistributionServiceInvalidFeeTransferred(transferredDistributionFeeAmount, distributionOwnerFee + commissionAmount);
304
+ if (!(transferredDistributionFeeAmount == distributionOwnerFee + commissionAmount)) {
305
+ revert ErrorDistributionServiceInvalidFeeTransferred(transferredDistributionFeeAmount, distributionOwnerFee + commissionAmount);
301
306
  }
302
307
 
303
308
 
304
- if (distributionOwnerFee > 0) {
305
- setupInfo.sumDistributionOwnerFees += distributionOwnerFee;
306
- instance.updateDistributionSetup(distributionNftId, setupInfo, KEEP_STATE());
309
+ if (distributionOwnerFee.gtz()) {
310
+ setupInfo.sumDistributionOwnerFees += distributionOwnerFee.toInt();
311
+ store.updateDistributionSetup(distributionNftId, setupInfo, KEEP_STATE());
307
312
  }
308
313
 
309
314
  if (isReferral) {
310
315
  referralInfo.usedReferrals += 1;
311
- instance.updateReferral(referralId.toKey32(), referralInfo, KEEP_STATE());
316
+ store.updateReferral(referralId, referralInfo, KEEP_STATE());
312
317
 
313
- if (commissionAmount > 0) {
314
- distributorInfo.sumCommisions += commissionAmount;
318
+ if (commissionAmount.gtz()) {
319
+ distributorInfo.commissionAmount = distributorInfo.commissionAmount + commissionAmount;
315
320
  distributorInfo.numPoliciesSold += 1;
316
- instance.updateDistributor(referralInfo.distributorNftId, distributorInfo, KEEP_STATE());
321
+ store.updateDistributor(referralInfo.distributorNftId, distributorInfo, KEEP_STATE());
317
322
  }
318
323
  }
319
324
  }
320
325
 
321
- function calculateFeeAmount(
322
- NftId distributionNftId,
323
- ReferralId referralId,
324
- IPolicy.Premium memory premium
325
- )
326
- external
327
- virtual
328
- view
329
- returns (IPolicy.Premium memory finalPremium)
330
- {
331
- IInstance instance = _getInstanceForDistribution(distributionNftId);
332
- InstanceReader reader = instance.getInstanceReader();
333
-
334
- // first calculate all fixed and variable fees for the distribution - this will defined the fullPremium
335
- ISetup.DistributionSetupInfo memory setupInfo = reader.getDistributionSetupInfo(distributionNftId);
336
- Fee memory distributionFee = setupInfo.distributionFee;
337
- Fee memory minDistributionOwnerFee = setupInfo.minDistributionOwnerFee;
338
- uint256 distributionFeeVarAmount = (UFixedLib.toUFixed(premium.netPremiumAmount) * distributionFee.fractionalFee).toInt();
339
- premium.distributionFeeVarAmount = distributionFeeVarAmount;
340
- premium.fullPremiumAmount += distributionFeeVarAmount;
341
-
342
- // if the referral is not valid, then the distribution owner gets everything
343
- if (! referralIsValid(distributionNftId, referralId)) {
344
- premium.distributionOwnerFeeFixAmount = premium.distributionFeeFixAmount;
345
- premium.distributionOwnerFeeVarAmount = premium.distributionFeeVarAmount;
346
- premium.premiumAmount = premium.fullPremiumAmount;
347
- return premium;
348
- }
349
-
350
- // if the referral is valid, the the commission and discount are calculated based in the full premium
351
- // the remaing amount goes to the distribution owner
352
- {
353
- IDistribution.ReferralInfo memory referralInfo = reader.getReferralInfo(referralId);
354
- IDistribution.DistributorInfo memory distributorInfo = reader.getDistributorInfo(referralInfo.distributorNftId);
355
- IDistribution.DistributorTypeInfo memory distributorTypeInfo = reader.getDistributorTypeInfo(distributorInfo.distributorType);
356
-
357
- uint256 commissionAmount = UFixedLib.toUFixed(premium.netPremiumAmount).mul(distributorTypeInfo.commissionPercentage).toInt();
358
- premium.commissionAmount = commissionAmount;
359
- premium.discountAmount = UFixedLib.toUFixed(premium.fullPremiumAmount).mul(referralInfo.discountPercentage).toInt();
360
- premium.distributionOwnerFeeFixAmount = minDistributionOwnerFee.fixedFee;
361
- premium.distributionOwnerFeeVarAmount = distributionFeeVarAmount - commissionAmount - premium.discountAmount;
362
- premium.premiumAmount = premium.fullPremiumAmount - premium.discountAmount;
363
- }
364
-
365
- // sanity check to validate the fee calculation
366
- if (premium.distributionOwnerFeeFixAmount < minDistributionOwnerFee.fixedFee) {
367
- revert ErrorIDistributionServiceFeeCalculationMismatch(
368
- premium.distributionFeeFixAmount,
369
- premium.distributionFeeVarAmount,
370
- premium.distributionOwnerFeeFixAmount,
371
- premium.distributionOwnerFeeVarAmount,
372
- premium.commissionAmount,
373
- premium.discountAmount
374
- );
375
- }
376
- if ((premium.distributionFeeVarAmount) != (premium.discountAmount + premium.distributionOwnerFeeVarAmount + premium.commissionAmount)) {
377
- revert ErrorIDistributionServiceFeeCalculationMismatch(
378
- premium.distributionFeeFixAmount,
379
- premium.distributionFeeVarAmount,
380
- premium.distributionOwnerFeeFixAmount,
381
- premium.distributionOwnerFeeVarAmount,
382
- premium.commissionAmount,
383
- premium.discountAmount
384
- );
385
- }
386
-
387
- return premium;
388
- }
389
-
390
326
  // TODO: zero should return false
391
327
  function referralIsValid(NftId distributionNftId, ReferralId referralId) public view returns (bool isValid) {
392
328
  IInstance instance = _getInstanceForDistribution(distributionNftId);
@@ -400,29 +336,6 @@ contract DistributionService is
400
336
  isValid = isValid && info.usedReferrals < info.maxReferrals;
401
337
  }
402
338
 
403
- function _getAndVerifyCallingDistribution()
404
- internal
405
- view
406
- returns(
407
- NftId distributionNftId,
408
- IInstance instance
409
- )
410
- {
411
- distributionNftId = getRegistry().getNftId(msg.sender);
412
- if (distributionNftId.eqz()) {
413
- revert ErrorIServiceCallerUnknown(msg.sender);
414
- }
415
-
416
- IRegistry.ObjectInfo memory info = getRegistry().getObjectInfo(distributionNftId);
417
- if(info.objectType != DISTRIBUTION()) {
418
- revert ErrorIDistributionServiceCallerNotDistributor(msg.sender);
419
- }
420
-
421
- address instanceAddress = getRegistry().getObjectInfo(info.parentNftId).objectAddress;
422
- instance = IInstance(instanceAddress);
423
- }
424
-
425
-
426
339
  function _getInstanceForDistribution(NftId distributionNftId)
427
340
  internal
428
341
  view
@@ -432,4 +345,4 @@ contract DistributionService is
432
345
  address instanceAddress = getRegistry().getObjectInfo(instanceNftId).objectAddress;
433
346
  return IInstance(instanceAddress);
434
347
  }
435
- }
348
+ }
@@ -2,31 +2,28 @@
2
2
  pragma solidity ^0.8.19;
3
3
 
4
4
  import {IPolicy} from "../module/IPolicy.sol";
5
- import {IRisk} from "../module/IRisk.sol";
6
5
  import {IService} from "../../shared/IService.sol";
7
6
 
7
+ import {Amount} from "../../types/Amount.sol";
8
8
  import {NftId} from "../../types/NftId.sol";
9
+ import {ObjectType} from "../../types/ObjectType.sol";
9
10
  import {ReferralId} from "../../types/Referral.sol";
10
11
  import {RiskId} from "../../types/RiskId.sol";
11
12
  import {Seconds} from "../../types/Seconds.sol";
12
- import {StateId} from "../../types/StateId.sol";
13
- import {Timestamp} from "../../types/Timestamp.sol";
14
- import {UFixed} from "../../types/UFixed.sol";
15
- import {Fee} from "../../types/Fee.sol";
16
13
 
17
14
  /// @dev gif service responsible for creating applications
18
15
  /// only product components may call transaction functions
19
16
  interface IApplicationService is IService {
20
17
 
21
- error IApplicationServicePolicyNotApplied(NftId applicationNftId);
22
- error IApplicationServiceBundlePoolMismatch(NftId bundleNftId, NftId bundlePoolNftId, NftId poolNftId);
18
+ error ErrorApplicationServiceNotProduct(NftId callerNftId, ObjectType callerType);
19
+ error ErrorApplicationServiceBundlePoolMismatch(NftId bundleNftId, NftId bundlePoolNftId, NftId poolNftId);
23
20
 
24
21
  /// @dev creates a new application based on the specified attributes
25
22
  /// may only be called by a product component
26
23
  function create(
27
24
  address applicationOwner,
28
25
  RiskId riskId,
29
- uint256 sumInsuredAmount,
26
+ Amount sumInsuredAmount,
30
27
  Seconds lifetime,
31
28
  NftId bundleNftId,
32
29
  ReferralId referralId,
@@ -41,8 +38,8 @@ interface IApplicationService is IService {
41
38
  RiskId riskId,
42
39
  NftId bundleNftId,
43
40
  ReferralId referralId,
44
- uint256 sumInsuredAmount,
45
- uint256 lifetime,
41
+ Amount sumInsuredAmount,
42
+ Seconds lifetime,
46
43
  bytes memory applicationData
47
44
  ) external;
48
45
 
@@ -62,21 +59,4 @@ interface IApplicationService is IService {
62
59
  /// an application can only be revoked in applied state
63
60
  /// only the application holder may revoke an application
64
61
  function revoke(NftId policyNftId) external;
65
-
66
- /// @dev calculates the premium amount for the specified attributes
67
- /// also returns the various fee components involved with creating a policy
68
- function calculatePremium(
69
- NftId productNftId,
70
- RiskId riskId,
71
- uint256 sumInsuredAmount,
72
- Seconds lifetime,
73
- bytes memory applicationData,
74
- NftId bundleNftId,
75
- ReferralId referralId
76
- )
77
- external
78
- view
79
- returns (
80
- IPolicy.Premium memory premium
81
- );
82
- }
62
+ }
@@ -16,11 +16,16 @@ interface IBundleService is IService {
16
16
  event LogBundleServiceBundleActivated(NftId bundleNftId);
17
17
  event LogBundleServiceBundleLocked(NftId bundleNftId);
18
18
 
19
- error ErrorBundleServiceInsufficientAllowance(address bundleOwner, address tokenHandlerAddress, uint256 amount);
19
+ error ErrorBundleServiceInsufficientAllowance(address bundleOwner, address tokenHandlerAddress, Amount amount);
20
20
  error ErrorBundleServiceBundleNotOpen(NftId bundleNftId, StateId state, Timestamp expiredAt);
21
- error ErrorBundleServiceCapacityInsufficient(NftId bundleNftId, uint capacityAmount, uint collateralAmount);
21
+ error ErrorBundleServiceCapacityInsufficient(NftId bundleNftId, Amount capacityAmount, Amount collateralAmount);
22
22
  error ErrorBundleServiceBundleWithOpenPolicies(NftId bundleNftId, uint256 openPoliciesCount);
23
23
 
24
+ error ErrorBundleServiceBundleUnknown(NftId bundleNftId);
25
+ error ErrorBundleServiceBundlePoolMismatch(NftId bundleNftId, NftId expectedPool, NftId actualPool);
26
+
27
+ error ErrorBundleServicePolicyNotCloseable(NftId policyNftId);
28
+
24
29
  /// @dev create a new bundle for the specified attributes
25
30
  /// may only be called by pool service
26
31
  function create(
@@ -35,6 +40,13 @@ interface IBundleService is IService {
35
40
  external
36
41
  returns(NftId bundleNftId); // the nft id of the newly created bundle
37
42
 
43
+
44
+ /// @dev increase bundle stakes by the specified amount
45
+ /// may only be called by the bundle owner
46
+ // function stake(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
47
+
48
+ // function unstake(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
49
+
38
50
  /// @dev locks the specified bundle, locked bundles are not available to collateralize new policies
39
51
  /// only active bundles may be locked
40
52
  /// may only be called by registered and unlocked pool components
@@ -71,23 +83,36 @@ interface IBundleService is IService {
71
83
  IInstance instanceNftId,
72
84
  NftId policyNftId,
73
85
  NftId bundleNftId,
74
- uint256 collateralAmount,
75
- uint256 premium // premium amount after pool fee
86
+ Amount collateralAmount,
87
+ Amount premiumAmount // premium after pool fee
76
88
  ) external;
77
89
 
78
-
79
90
  /// @dev releases the specified collateral in the bundle
80
91
  /// may only be called by pool service
81
92
  function releaseCollateral(
82
93
  IInstance instance,
83
94
  NftId policyNftId,
84
95
  NftId bundleNftId,
85
- uint256 collateralAmount
96
+ Amount collateralAmount
86
97
  ) external;
87
98
 
88
- function increaseBalance(IInstance instance, NftId bundleNftId, uint256 amount) external;
99
+ /// @dev unlink policy from bundle
100
+ /// policy may only be unlinked if policy is closeable
101
+ /// may only be called by pool service
102
+ function unlinkPolicy(
103
+ IInstance instance,
104
+ NftId policyNftId
105
+ ) external;
89
106
 
90
- // function stake(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
107
+ /// @dev updates the bundle's fees of with the provided fee amount
108
+ function updateBundleFees(
109
+ IInstance instance,
110
+ NftId bundleNftId,
111
+ Amount feeAmount
112
+ ) external;
91
113
 
92
- // function unstake(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
114
+ function increaseBalance(
115
+ IInstance instance,
116
+ NftId bundleNftId,
117
+ Amount amount) external;
93
118
  }
@@ -1,14 +1,14 @@
1
1
  // SPDX-License-Identifier: Apache-2.0
2
2
  pragma solidity ^0.8.19;
3
3
 
4
- import {IRisk} from "../module/IRisk.sol";
4
+ import {IInstance} from "../IInstance.sol";
5
+ import {InstanceReader} from "../InstanceReader.sol";
5
6
  import {IService} from "../../shared/IService.sol";
6
7
 
8
+ import {Amount} from "../../types/Amount.sol";
7
9
  import {ClaimId} from "../../types/ClaimId.sol";
8
10
  import {PayoutId} from "../../types/PayoutId.sol";
9
11
  import {NftId} from "../../types/NftId.sol";
10
- import {ReferralId} from "../../types/Referral.sol";
11
- import {RiskId} from "../../types/RiskId.sol";
12
12
  import {StateId} from "../../types/StateId.sol";
13
13
  import {Timestamp} from "../../types/Timestamp.sol";
14
14
  import {UFixed} from "../../types/UFixed.sol";
@@ -20,42 +20,71 @@ interface IClaimService is
20
20
  IService
21
21
  {
22
22
 
23
+ event LogClaimServiceClaimSubmitted(NftId policyNftId, ClaimId claimId, Amount claimAmount);
24
+ event LogClaimServiceClaimConfirmed(NftId policyNftId, ClaimId claimId, Amount confirmedAmount);
25
+ event LogClaimServiceClaimDeclined(NftId policyNftId, ClaimId claimId);
26
+ event LogClaimServiceClaimClosed(NftId policyNftId, ClaimId claimId);
27
+
28
+ event LogClaimServicePayoutCreated(NftId policyNftId, PayoutId payoutId, Amount amount);
29
+ event LogClaimServicePayoutProcessed(NftId policyNftId, PayoutId payoutId, Amount amount, address beneficiary, Amount netAmount);
30
+
31
+ error ErrorClaimServicePolicyProductMismatch(NftId policyNftId, NftId expectedProduct, NftId actualProduct);
32
+ error ErrorClaimServicePolicyNotOpen(NftId policyNftId);
33
+ error ErrorClaimServiceClaimExceedsSumInsured(NftId policyNftId, Amount sumInsured, Amount payoutsIncludingClaimAmount);
34
+
35
+ error ErrorClaimServiceClaimWithOpenPayouts(NftId policyNftId, ClaimId claimId, uint8 openPayouts);
36
+ error ErrorClaimServiceClaimWithMissingPayouts(NftId policyNftId, ClaimId claimId, Amount claimAmount, Amount paidAmount);
37
+ error ErrorClaimServiceClaimNotInExpectedState(NftId policyNftId, ClaimId claimId, StateId expectedState, StateId actualState);
38
+
23
39
  /// @dev create a new claim for the specified policy
40
+ /// returns the id of the newly created claim
24
41
  /// function can only be called by product, policy needs to match with calling product
25
- function createClaim(
42
+ function submit(
26
43
  NftId policyNftId,
27
- uint256 claimAmount,
44
+ Amount claimAmount,
28
45
  bytes memory claimData
29
- ) external returns (ClaimId);
46
+ ) external returns (ClaimId claimId);
30
47
 
31
- /// @dev confirms the specified claim and fixes the final claim amount
48
+ /// @dev declines the specified claim
32
49
  /// function can only be called by product, policy needs to match with calling product
33
- function confirmClaim(NftId policyNftId, ClaimId claimId, uint256 claimAmount) external;
50
+ function decline(
51
+ NftId policyNftId,
52
+ ClaimId claimId) external;
34
53
 
35
- /// @dev declares the claim as invalid, no payout(s) will be made
54
+ /// @dev confirms the specified claim and specifies the payout amount
36
55
  /// function can only be called by product, policy needs to match with calling product
37
- function declineClaim(NftId policyNftId, ClaimId claimId) external;
56
+ function confirm(
57
+ NftId policyNftId,
58
+ ClaimId claimId,
59
+ Amount confirmedAmount
60
+ ) external;
38
61
 
39
- /// @dev closes the claim
40
- /// a claim may only be closed once all existing payouts have been executed and the sum of the paid out amounts has reached the claim amount
62
+ /// @dev closes the specified claim
41
63
  /// function can only be called by product, policy needs to match with calling product
42
- function closeClaim(NftId policyNftId, ClaimId claimId) external;
64
+ function close(
65
+ NftId policyNftId,
66
+ ClaimId claimId
67
+ ) external;
43
68
 
44
- /// @dev create a new payout for the specified policy and claim
69
+
70
+ /// @dev creates a new payout for the specified claim
71
+ /// returns the id of the newly created payout, this id is unique for the specified policy
45
72
  /// function can only be called by product, policy needs to match with calling product
46
73
  function createPayout(
47
74
  NftId policyNftId,
48
75
  ClaimId claimId,
49
- uint256 payoutAmount,
50
- bytes calldata payoutData
51
- ) external returns (PayoutId payoutId);
52
-
53
- /// @dev callback function to confirm transfer of payout token to beneficiary
54
- /// allows claim service to update claims/payout book keeping
55
- /// only pool service can confirm executed payout
56
- function payoutExecuted(
76
+ Amount amount,
77
+ bytes memory data
78
+ )
79
+ external
80
+ returns (PayoutId payoutId);
81
+
82
+
83
+ /// @dev processes the specified payout
84
+ /// this includes moving the payout token to the beneficiary (default: policy holder)
85
+ /// function can only be called by product, policy needs to match with calling product
86
+ function processPayout(
57
87
  NftId policyNftId,
58
88
  PayoutId payoutId
59
89
  ) external;
60
-
61
90
  }