@etherisc/gif-next 0.0.2-89c8f37-711 → 0.0.2-89ff2e2-420

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (530) hide show
  1. package/README.md +88 -9
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1046 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +752 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/{shared/ComponentVerifyingService.sol/ComponentVerifyingService.json → accounting/IAccountingService.sol/IAccountingService.json} +387 -112
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +673 -262
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +456 -24
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
  17. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +549 -209
  19. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +215 -18
  21. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +265 -16
  23. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +473 -17
  25. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +164 -487
  27. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +431 -36
  29. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +83 -387
  31. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +629 -365
  33. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +186 -128
  35. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +84 -198
  37. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +437 -126
  39. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  41. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1461 -0
  43. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  45. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2026 -0
  47. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
  49. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1404 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1628 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2452 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  65. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
  67. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +540 -65
  69. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +290 -57
  71. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  72. package/artifacts/contracts/instance/Instance.sol/Instance.json +549 -166
  73. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1034 -311
  75. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +369 -68
  77. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1689 -773
  79. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +303 -227
  81. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +106 -106
  83. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +921 -718
  85. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  87. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
  89. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
  90. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
  91. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
  92. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
  93. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +46 -5
  94. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
  95. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
  96. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  98. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  99. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  100. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  102. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  103. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
  104. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
  105. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +108 -355
  106. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
  107. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +429 -37
  108. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
  109. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
  110. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +91 -140
  111. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
  112. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +69 -11
  113. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
  114. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +84 -323
  115. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
  116. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +169 -190
  117. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
  118. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +140 -98
  119. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
  120. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +132 -421
  121. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
  122. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +430 -35
  123. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
  124. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +469 -344
  125. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  126. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +161 -115
  127. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
  128. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +308 -101
  129. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  130. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +120 -236
  131. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
  132. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +682 -340
  133. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
  134. package/artifacts/contracts/pool/Pool.sol/Pool.json +110 -416
  135. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  136. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +546 -0
  137. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
  138. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +901 -550
  139. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  140. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +193 -107
  141. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  142. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +324 -180
  143. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  144. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +122 -100
  145. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
  146. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +261 -439
  147. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
  148. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +430 -35
  149. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
  150. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +443 -235
  151. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  152. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +158 -124
  153. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  154. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +272 -9
  155. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
  156. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +319 -16
  157. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  158. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +376 -102
  159. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
  160. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +157 -83
  161. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  162. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +245 -233
  163. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  164. package/artifacts/contracts/product/{IProductService.sol/IProductService.json → IRiskService.sol/IRiskService.json} +88 -8
  165. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
  166. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +482 -303
  167. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  168. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  169. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  170. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +159 -109
  171. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
  172. package/artifacts/contracts/product/PricingService.sol/PricingService.json +224 -338
  173. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
  174. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +128 -138
  175. package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
  176. package/artifacts/contracts/product/Product.sol/Product.json +253 -431
  177. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  178. package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
  179. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  180. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
  181. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  182. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  183. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  184. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +342 -42
  185. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  186. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +144 -41
  187. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  188. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  189. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  190. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  191. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  192. package/artifacts/contracts/registry/Registry.sol/Registry.json +548 -103
  193. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
  194. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +795 -394
  195. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  196. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
  197. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  198. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +109 -292
  199. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  200. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +104 -90
  201. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  202. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  203. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
  204. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +47 -6
  205. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
  206. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +483 -253
  207. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
  208. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +489 -20
  209. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  210. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +15 -15
  211. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
  212. package/artifacts/contracts/shared/Component.sol/Component.json +67 -277
  213. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
  214. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +438 -647
  215. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
  216. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +140 -136
  217. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  218. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  219. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  220. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  221. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  225. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
  226. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +80 -100
  227. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
  228. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +394 -300
  229. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
  230. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +91 -140
  231. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  232. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +36 -0
  233. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  234. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +36 -0
  235. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  236. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +16 -0
  237. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  238. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +15 -47
  239. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  240. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +148 -0
  241. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  242. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  243. package/artifacts/contracts/shared/IService.sol/IService.json +55 -2
  244. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
  245. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -22
  246. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
  247. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +83 -322
  248. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  249. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +42 -1
  250. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  251. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +42 -1
  252. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
  253. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
  254. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  255. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +22 -57
  256. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  257. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +19 -141
  258. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  259. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +122 -97
  260. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  261. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
  262. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  263. package/artifacts/contracts/shared/Service.sol/Service.json +57 -111
  264. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  265. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +585 -12
  266. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  267. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  268. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  269. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  270. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
  271. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +312 -133
  272. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
  273. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +155 -23
  274. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
  275. package/artifacts/contracts/staking/Staking.sol/Staking.json +410 -390
  276. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  277. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  278. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
  279. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +46 -5
  280. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
  281. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +144 -101
  282. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
  283. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +91 -67
  284. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
  285. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +224 -171
  286. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
  287. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +121 -95
  288. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
  289. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +205 -150
  290. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
  291. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +91 -50
  292. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  293. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
  294. package/artifacts/contracts/type/Amount.sol/AmountLib.json +35 -11
  295. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  296. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  297. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +28 -4
  298. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  299. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
  300. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
  301. package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
  302. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
  303. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
  304. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  305. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  306. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
  307. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
  308. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  309. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
  310. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  311. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +33 -31
  312. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  313. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +19 -19
  314. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
  315. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
  316. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
  317. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
  318. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
  319. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +125 -7
  320. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
  321. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +42 -157
  322. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
  323. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +69 -2
  324. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
  325. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
  326. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
  327. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
  328. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
  329. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +15 -2
  330. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
  331. package/artifacts/contracts/type/String.sol/StrLib.json +50 -2
  332. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
  333. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +23 -4
  334. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
  335. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +73 -36
  336. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
  337. package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
  338. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
  339. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +101 -2
  340. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
  341. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  342. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +81 -80
  343. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  344. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
  345. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
  346. package/contracts/accounting/AccountingService.sol +274 -0
  347. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  348. package/contracts/accounting/IAccountingService.sol +47 -0
  349. package/contracts/authorization/AccessAdmin.sol +456 -267
  350. package/contracts/authorization/AccessAdminLib.sol +396 -0
  351. package/contracts/authorization/AccessManagerCloneable.sol +146 -4
  352. package/contracts/authorization/Authorization.sol +159 -203
  353. package/contracts/authorization/IAccess.sol +25 -6
  354. package/contracts/authorization/IAccessAdmin.sol +87 -79
  355. package/contracts/authorization/IAuthorization.sol +9 -36
  356. package/contracts/authorization/IServiceAuthorization.sol +57 -17
  357. package/contracts/authorization/ServiceAuthorization.sol +254 -24
  358. package/contracts/distribution/BasicDistribution.sol +20 -17
  359. package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
  360. package/contracts/distribution/Distribution.sol +42 -90
  361. package/contracts/distribution/DistributionService.sol +242 -131
  362. package/contracts/distribution/DistributionServiceManager.sol +6 -6
  363. package/contracts/distribution/IDistributionComponent.sol +4 -11
  364. package/contracts/distribution/IDistributionService.sol +47 -29
  365. package/contracts/examples/fire/DamageLevel.sol +59 -0
  366. package/contracts/examples/fire/FirePool.sol +86 -0
  367. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  368. package/contracts/examples/fire/FireProduct.sol +433 -0
  369. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  370. package/contracts/examples/fire/FireUSD.sol +26 -0
  371. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  372. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  373. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  374. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  375. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  376. package/contracts/examples/unpermissioned/SimpleProduct.sol +385 -0
  377. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  378. package/contracts/instance/BundleSet.sol +42 -38
  379. package/contracts/instance/IInstance.sol +101 -42
  380. package/contracts/instance/IInstanceService.sol +52 -31
  381. package/contracts/instance/Instance.sol +189 -97
  382. package/contracts/instance/InstanceAdmin.sol +275 -158
  383. package/contracts/instance/InstanceAuthorizationV3.sol +120 -58
  384. package/contracts/instance/InstanceReader.sol +478 -251
  385. package/contracts/instance/InstanceService.sol +298 -229
  386. package/contracts/instance/InstanceServiceManager.sol +6 -7
  387. package/contracts/instance/InstanceStore.sol +23 -2
  388. package/contracts/instance/RiskSet.sol +118 -0
  389. package/contracts/instance/base/BalanceStore.sol +3 -5
  390. package/contracts/instance/base/ObjectCounter.sol +1 -2
  391. package/contracts/instance/base/ObjectLifecycle.sol +11 -4
  392. package/contracts/instance/base/ObjectSet.sol +31 -33
  393. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  394. package/contracts/instance/module/IBundle.sol +6 -5
  395. package/contracts/instance/module/IComponents.sol +30 -19
  396. package/contracts/instance/module/IDistribution.sol +21 -8
  397. package/contracts/instance/module/IPolicy.sol +50 -29
  398. package/contracts/instance/module/IRisk.sol +5 -0
  399. package/contracts/oracle/BasicOracle.sol +1 -4
  400. package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
  401. package/contracts/oracle/IOracle.sol +9 -4
  402. package/contracts/oracle/IOracleService.sol +2 -1
  403. package/contracts/oracle/Oracle.sol +7 -19
  404. package/contracts/oracle/OracleService.sol +117 -85
  405. package/contracts/oracle/OracleServiceManager.sol +6 -6
  406. package/contracts/pool/BasicPool.sol +37 -28
  407. package/contracts/pool/BasicPoolAuthorization.sol +38 -11
  408. package/contracts/pool/BundleService.sol +200 -135
  409. package/contracts/pool/BundleServiceManager.sol +6 -6
  410. package/contracts/pool/IBundleService.sol +39 -38
  411. package/contracts/pool/IPoolComponent.sol +19 -15
  412. package/contracts/pool/IPoolService.sol +97 -77
  413. package/contracts/pool/Pool.sol +145 -130
  414. package/contracts/pool/PoolLib.sol +359 -0
  415. package/contracts/pool/PoolService.sol +413 -233
  416. package/contracts/pool/PoolServiceManager.sol +4 -4
  417. package/contracts/product/ApplicationService.sol +143 -46
  418. package/contracts/product/ApplicationServiceManager.sol +4 -4
  419. package/contracts/product/BasicProduct.sol +10 -13
  420. package/contracts/product/BasicProductAuthorization.sol +32 -12
  421. package/contracts/product/ClaimService.sol +385 -161
  422. package/contracts/product/ClaimServiceManager.sol +4 -4
  423. package/contracts/product/IApplicationService.sol +29 -3
  424. package/contracts/product/IClaimService.sol +44 -8
  425. package/contracts/product/IPolicyService.sol +61 -39
  426. package/contracts/product/IPricingService.sol +11 -10
  427. package/contracts/product/IProductComponent.sol +27 -5
  428. package/contracts/product/{IProductService.sol → IRiskService.sol} +8 -8
  429. package/contracts/product/PolicyService.sol +431 -285
  430. package/contracts/product/PolicyServiceLib.sol +139 -0
  431. package/contracts/product/PolicyServiceManager.sol +4 -4
  432. package/contracts/product/PricingService.sol +90 -84
  433. package/contracts/product/PricingServiceManager.sol +4 -4
  434. package/contracts/product/Product.sol +170 -99
  435. package/contracts/product/RiskService.sol +157 -0
  436. package/contracts/product/RiskServiceManager.sol +39 -0
  437. package/contracts/registry/ChainNft.sol +72 -40
  438. package/contracts/registry/IRegistry.sol +64 -28
  439. package/contracts/registry/IRegistryService.sol +5 -12
  440. package/contracts/registry/IRelease.sol +29 -0
  441. package/contracts/registry/ITransferInterceptor.sol +1 -2
  442. package/contracts/registry/Registry.sol +357 -203
  443. package/contracts/registry/RegistryAdmin.sol +110 -287
  444. package/contracts/registry/RegistryAuthorization.sol +284 -0
  445. package/contracts/registry/RegistryService.sol +37 -48
  446. package/contracts/registry/RegistryServiceManager.sol +3 -3
  447. package/contracts/registry/ReleaseAdmin.sol +195 -0
  448. package/contracts/registry/ReleaseLifecycle.sol +8 -3
  449. package/contracts/registry/ReleaseRegistry.sol +275 -240
  450. package/contracts/registry/ServiceAuthorizationV3.sol +202 -57
  451. package/contracts/registry/TokenRegistry.sol +12 -13
  452. package/contracts/shared/Component.sol +65 -135
  453. package/contracts/shared/ComponentService.sol +411 -384
  454. package/contracts/shared/ComponentServiceManager.sol +8 -5
  455. package/contracts/shared/ContractLib.sol +311 -0
  456. package/contracts/shared/IComponent.sol +6 -18
  457. package/contracts/shared/IComponentService.sol +42 -40
  458. package/contracts/shared/IInstanceLinkedComponent.sol +6 -32
  459. package/contracts/shared/ILifecycle.sol +3 -1
  460. package/contracts/shared/INftOwnable.sol +2 -0
  461. package/contracts/shared/IPolicyHolder.sol +12 -22
  462. package/contracts/shared/IRegisterable.sol +22 -1
  463. package/contracts/shared/IService.sol +3 -5
  464. package/contracts/shared/InitializableERC165.sol +10 -2
  465. package/contracts/shared/InstanceLinkedComponent.sol +72 -50
  466. package/contracts/shared/KeyValueStore.sol +1 -1
  467. package/contracts/shared/Lifecycle.sol +15 -4
  468. package/contracts/shared/NftOwnable.sol +29 -9
  469. package/contracts/shared/PolicyHolder.sol +18 -54
  470. package/contracts/shared/Registerable.sol +52 -21
  471. package/contracts/shared/RegistryLinked.sol +9 -14
  472. package/contracts/shared/Service.sol +20 -35
  473. package/contracts/shared/TokenHandler.sol +310 -26
  474. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  475. package/contracts/staking/IStaking.sol +48 -20
  476. package/contracts/staking/IStakingService.sol +21 -11
  477. package/contracts/staking/Staking.sol +198 -109
  478. package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +95 -45
  479. package/contracts/staking/StakingManager.sol +8 -6
  480. package/contracts/staking/StakingReader.sol +40 -24
  481. package/contracts/staking/StakingService.sol +96 -39
  482. package/contracts/staking/StakingServiceManager.sol +6 -5
  483. package/contracts/staking/StakingStore.sol +3 -2
  484. package/contracts/staking/TargetManagerLib.sol +8 -4
  485. package/contracts/type/Amount.sol +15 -0
  486. package/contracts/type/ClaimId.sol +6 -1
  487. package/contracts/type/Fee.sol +8 -8
  488. package/contracts/type/Key32.sol +2 -2
  489. package/contracts/type/Key32Set.sol +62 -0
  490. package/contracts/type/NftId.sol +7 -0
  491. package/contracts/type/ObjectType.sol +73 -37
  492. package/contracts/type/PayoutId.sol +10 -10
  493. package/contracts/type/RiskId.sol +38 -6
  494. package/contracts/type/RoleId.sol +61 -55
  495. package/contracts/type/Seconds.sol +25 -1
  496. package/contracts/type/Selector.sol +5 -0
  497. package/contracts/type/StateId.sol +15 -1
  498. package/contracts/type/String.sol +12 -0
  499. package/contracts/type/Timestamp.sol +4 -5
  500. package/contracts/type/UFixed.sol +37 -126
  501. package/contracts/type/Version.sol +54 -5
  502. package/contracts/upgradeability/ProxyManager.sol +81 -45
  503. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +7 -1
  504. package/contracts/upgradeability/Versionable.sol +6 -3
  505. package/package.json +5 -4
  506. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +0 -4
  507. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +0 -290
  508. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +0 -4
  509. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +0 -390
  510. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
  512. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +0 -4
  513. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +0 -4
  514. package/artifacts/contracts/product/ProductService.sol/ProductService.json +0 -708
  515. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  516. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +0 -702
  517. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
  518. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
  519. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
  520. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
  521. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -470
  522. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
  523. package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
  524. package/contracts/authorization/IModuleAuthorization.sol +0 -21
  525. package/contracts/authorization/ModuleAuthorization.sol +0 -78
  526. package/contracts/instance/module/IAccess.sol +0 -46
  527. package/contracts/product/ProductService.sol +0 -99
  528. package/contracts/product/ProductServiceManager.sol +0 -39
  529. package/contracts/shared/ComponentVerifyingService.sol +0 -117
  530. package/contracts/shared/InitializableCustom.sol +0 -177
@@ -45,165 +45,139 @@
45
45
  "inputs": [
46
46
  {
47
47
  "internalType": "address",
48
- "name": "caller",
48
+ "name": "authority",
49
49
  "type": "address"
50
50
  }
51
51
  ],
52
- "name": "ErrorDistributionServiceCallerNotRegistered",
52
+ "name": "ErrorAuthorityInvalid",
53
53
  "type": "error"
54
54
  },
55
55
  {
56
56
  "inputs": [
57
57
  {
58
- "internalType": "Amount",
59
- "name": "amount",
60
- "type": "uint96"
61
- },
62
- {
63
- "internalType": "Amount",
64
- "name": "limit",
65
- "type": "uint96"
58
+ "internalType": "address",
59
+ "name": "caller",
60
+ "type": "address"
66
61
  }
67
62
  ],
68
- "name": "ErrorDistributionServiceCommissionWithdrawAmountExceedsLimit",
69
- "type": "error"
70
- },
71
- {
72
- "inputs": [],
73
- "name": "ErrorDistributionServiceCommissionWithdrawAmountIsZero",
63
+ "name": "ErrorDistributionServiceCallerNotDistributor",
74
64
  "type": "error"
75
65
  },
76
66
  {
77
67
  "inputs": [
78
68
  {
79
- "internalType": "Amount",
80
- "name": "transferredDistributionFeeAmount",
81
- "type": "uint96"
82
- },
83
- {
84
- "internalType": "Amount",
85
- "name": "expectedDistributionFeeAmount",
86
- "type": "uint96"
69
+ "internalType": "address",
70
+ "name": "caller",
71
+ "type": "address"
87
72
  }
88
73
  ],
89
- "name": "ErrorDistributionServiceInvalidFeeTransferred",
74
+ "name": "ErrorDistributionServiceCallerNotRegistered",
90
75
  "type": "error"
91
76
  },
92
77
  {
93
78
  "inputs": [
94
79
  {
95
80
  "internalType": "uint256",
96
- "name": "maxDiscountPercentage",
81
+ "name": "commissionPercentage",
97
82
  "type": "uint256"
98
83
  },
99
84
  {
100
85
  "internalType": "uint256",
101
- "name": "limit",
86
+ "name": "maxCommissionPercentage",
102
87
  "type": "uint256"
103
88
  }
104
89
  ],
105
- "name": "ErrorDistributionServiceMaxDiscountTooHigh",
90
+ "name": "ErrorDistributionServiceCommissionTooHigh",
106
91
  "type": "error"
107
92
  },
108
93
  {
109
94
  "inputs": [
110
95
  {
111
- "internalType": "uint256",
112
- "name": "maxDiscountPercentage",
113
- "type": "uint256"
96
+ "internalType": "Amount",
97
+ "name": "amount",
98
+ "type": "uint96"
114
99
  },
115
100
  {
116
- "internalType": "uint256",
101
+ "internalType": "Amount",
117
102
  "name": "limit",
118
- "type": "uint256"
103
+ "type": "uint96"
119
104
  }
120
105
  ],
121
- "name": "ErrorDistributionServiceVariableFeesTooHight",
106
+ "name": "ErrorDistributionServiceCommissionWithdrawAmountExceedsLimit",
122
107
  "type": "error"
123
108
  },
124
109
  {
125
110
  "inputs": [
126
- {
127
- "internalType": "address",
128
- "name": "wallet",
129
- "type": "address"
130
- },
131
- {
132
- "internalType": "address",
133
- "name": "tokenHandler",
134
- "type": "address"
135
- },
136
111
  {
137
112
  "internalType": "uint256",
138
- "name": "allowance",
113
+ "name": "maxDiscountPercentage",
139
114
  "type": "uint256"
140
115
  },
141
116
  {
142
117
  "internalType": "uint256",
143
- "name": "amount",
118
+ "name": "discountPercentage",
144
119
  "type": "uint256"
145
120
  }
146
121
  ],
147
- "name": "ErrorDistributionServiceWalletAllowanceTooSmall",
148
- "type": "error"
149
- },
150
- {
151
- "inputs": [
152
- {
153
- "internalType": "address",
154
- "name": "caller",
155
- "type": "address"
156
- }
157
- ],
158
- "name": "ErrorIDistributionServiceCallerNotDistributor",
122
+ "name": "ErrorDistributionServiceDiscountTooHigh",
159
123
  "type": "error"
160
124
  },
161
125
  {
162
126
  "inputs": [
163
127
  {
164
128
  "internalType": "uint256",
165
- "name": "commissionPercentage",
129
+ "name": "minDiscountPercentage",
166
130
  "type": "uint256"
167
131
  },
168
132
  {
169
133
  "internalType": "uint256",
170
- "name": "maxCommissionPercentage",
134
+ "name": "discountPercentage",
171
135
  "type": "uint256"
172
136
  }
173
137
  ],
174
- "name": "ErrorIDistributionServiceCommissionTooHigh",
138
+ "name": "ErrorDistributionServiceDiscountTooLow",
175
139
  "type": "error"
176
140
  },
177
141
  {
178
142
  "inputs": [
179
143
  {
180
- "internalType": "uint256",
181
- "name": "maxDiscountPercentage",
182
- "type": "uint256"
144
+ "internalType": "NftId",
145
+ "name": "distributorNftId",
146
+ "type": "uint96"
183
147
  },
184
148
  {
185
- "internalType": "uint256",
186
- "name": "discountPercentage",
187
- "type": "uint256"
149
+ "internalType": "NftId",
150
+ "name": "distributorDistributionNftId",
151
+ "type": "uint96"
152
+ },
153
+ {
154
+ "internalType": "NftId",
155
+ "name": "distributionNftId",
156
+ "type": "uint96"
188
157
  }
189
158
  ],
190
- "name": "ErrorIDistributionServiceDiscountTooHigh",
159
+ "name": "ErrorDistributionServiceDistributorDistributionMismatch",
191
160
  "type": "error"
192
161
  },
193
162
  {
194
163
  "inputs": [
195
164
  {
196
- "internalType": "uint256",
197
- "name": "minDiscountPercentage",
198
- "type": "uint256"
165
+ "internalType": "DistributorType",
166
+ "name": "distributorType",
167
+ "type": "bytes8"
199
168
  },
200
169
  {
201
- "internalType": "uint256",
202
- "name": "discountPercentage",
203
- "type": "uint256"
170
+ "internalType": "NftId",
171
+ "name": "distributorTypeDistributionNftId",
172
+ "type": "uint96"
173
+ },
174
+ {
175
+ "internalType": "NftId",
176
+ "name": "distributionNftId",
177
+ "type": "uint96"
204
178
  }
205
179
  ],
206
- "name": "ErrorIDistributionServiceDiscountTooLow",
180
+ "name": "ErrorDistributionServiceDistributorTypeDistributionMismatch",
207
181
  "type": "error"
208
182
  },
209
183
  {
@@ -214,23 +188,39 @@
214
188
  "type": "uint40"
215
189
  }
216
190
  ],
217
- "name": "ErrorIDistributionServiceExpirationInvalid",
191
+ "name": "ErrorDistributionServiceExpirationInvalid",
218
192
  "type": "error"
219
193
  },
220
194
  {
221
195
  "inputs": [
222
196
  {
223
- "internalType": "uint256",
197
+ "internalType": "Seconds",
224
198
  "name": "maxReferralLifetime",
225
- "type": "uint256"
199
+ "type": "uint40"
226
200
  },
227
201
  {
228
- "internalType": "uint256",
202
+ "internalType": "Timestamp",
229
203
  "name": "expiryAt",
230
- "type": "uint256"
204
+ "type": "uint40"
231
205
  }
232
206
  ],
233
- "name": "ErrorIDistributionServiceExpiryTooLong",
207
+ "name": "ErrorDistributionServiceExpiryTooLong",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [
212
+ {
213
+ "internalType": "Amount",
214
+ "name": "transferredDistributionFeeAmount",
215
+ "type": "uint96"
216
+ },
217
+ {
218
+ "internalType": "Amount",
219
+ "name": "expectedDistributionFeeAmount",
220
+ "type": "uint96"
221
+ }
222
+ ],
223
+ "name": "ErrorDistributionServiceInvalidFeeTransferred",
234
224
  "type": "error"
235
225
  },
236
226
  {
@@ -241,7 +231,7 @@
241
231
  "type": "string"
242
232
  }
243
233
  ],
244
- "name": "ErrorIDistributionServiceInvalidReferral",
234
+ "name": "ErrorDistributionServiceInvalidReferral",
245
235
  "type": "error"
246
236
  },
247
237
  {
@@ -252,7 +242,23 @@
252
242
  "type": "bytes8"
253
243
  }
254
244
  ],
255
- "name": "ErrorIDistributionServiceInvalidReferralId",
245
+ "name": "ErrorDistributionServiceInvalidReferralId",
246
+ "type": "error"
247
+ },
248
+ {
249
+ "inputs": [
250
+ {
251
+ "internalType": "uint256",
252
+ "name": "maxDiscountPercentage",
253
+ "type": "uint256"
254
+ },
255
+ {
256
+ "internalType": "uint256",
257
+ "name": "limit",
258
+ "type": "uint256"
259
+ }
260
+ ],
261
+ "name": "ErrorDistributionServiceMaxDiscountTooHigh",
256
262
  "type": "error"
257
263
  },
258
264
  {
@@ -263,7 +269,7 @@
263
269
  "type": "uint256"
264
270
  }
265
271
  ],
266
- "name": "ErrorIDistributionServiceMaxReferralsExceeded",
272
+ "name": "ErrorDistributionServiceMaxReferralsExceeded",
267
273
  "type": "error"
268
274
  },
269
275
  {
@@ -279,7 +285,7 @@
279
285
  "type": "uint256"
280
286
  }
281
287
  ],
282
- "name": "ErrorIDistributionServiceMinFeeTooHigh",
288
+ "name": "ErrorDistributionServiceMinFeeTooHigh",
283
289
  "type": "error"
284
290
  },
285
291
  {
@@ -295,7 +301,28 @@
295
301
  "type": "uint96"
296
302
  }
297
303
  ],
298
- "name": "ErrorIDistributionServiceParentNftIdNotInstance",
304
+ "name": "ErrorDistributionServiceParentNftIdNotInstance",
305
+ "type": "error"
306
+ },
307
+ {
308
+ "inputs": [
309
+ {
310
+ "internalType": "ReferralId",
311
+ "name": "referralId",
312
+ "type": "bytes8"
313
+ },
314
+ {
315
+ "internalType": "NftId",
316
+ "name": "referralDistributionNft",
317
+ "type": "uint96"
318
+ },
319
+ {
320
+ "internalType": "NftId",
321
+ "name": "distributionNftId",
322
+ "type": "uint96"
323
+ }
324
+ ],
325
+ "name": "ErrorDistributionServiceReferralDistributionMismatch",
299
326
  "type": "error"
300
327
  },
301
328
  {
@@ -311,7 +338,23 @@
311
338
  "type": "bytes8"
312
339
  }
313
340
  ],
314
- "name": "ErrorIDistributionServiceReferralInvalid",
341
+ "name": "ErrorDistributionServiceReferralInvalid",
342
+ "type": "error"
343
+ },
344
+ {
345
+ "inputs": [
346
+ {
347
+ "internalType": "uint256",
348
+ "name": "maxDiscountPercentage",
349
+ "type": "uint256"
350
+ },
351
+ {
352
+ "internalType": "uint256",
353
+ "name": "limit",
354
+ "type": "uint256"
355
+ }
356
+ ],
357
+ "name": "ErrorDistributionServiceVariableFeesTooHight",
315
358
  "type": "error"
316
359
  },
317
360
  {
@@ -341,6 +384,22 @@
341
384
  "name": "ErrorNftOwnableInitialOwnerZero",
342
385
  "type": "error"
343
386
  },
387
+ {
388
+ "inputs": [
389
+ {
390
+ "internalType": "NftId",
391
+ "name": "nftId",
392
+ "type": "uint96"
393
+ },
394
+ {
395
+ "internalType": "ObjectType",
396
+ "name": "expectedObjectType",
397
+ "type": "uint8"
398
+ }
399
+ ],
400
+ "name": "ErrorNftOwnableInvalidType",
401
+ "type": "error"
402
+ },
344
403
  {
345
404
  "inputs": [
346
405
  {
@@ -365,7 +424,7 @@
365
424
  },
366
425
  {
367
426
  "inputs": [],
368
- "name": "ErrorServiceNotImplemented",
427
+ "name": "ErrorRegisterableNotActive",
369
428
  "type": "error"
370
429
  },
371
430
  {
@@ -412,6 +471,162 @@
412
471
  "name": "LogDistributionServiceCommissionWithdrawn",
413
472
  "type": "event"
414
473
  },
474
+ {
475
+ "anonymous": false,
476
+ "inputs": [
477
+ {
478
+ "indexed": false,
479
+ "internalType": "NftId",
480
+ "name": "distributionNftId",
481
+ "type": "uint96"
482
+ },
483
+ {
484
+ "indexed": false,
485
+ "internalType": "NftId",
486
+ "name": "distributorNftId",
487
+ "type": "uint96"
488
+ },
489
+ {
490
+ "indexed": false,
491
+ "internalType": "DistributorType",
492
+ "name": "distributorType",
493
+ "type": "bytes8"
494
+ },
495
+ {
496
+ "indexed": false,
497
+ "internalType": "address",
498
+ "name": "distributor",
499
+ "type": "address"
500
+ }
501
+ ],
502
+ "name": "LogDistributionServiceDistributorCreated",
503
+ "type": "event"
504
+ },
505
+ {
506
+ "anonymous": false,
507
+ "inputs": [
508
+ {
509
+ "indexed": false,
510
+ "internalType": "NftId",
511
+ "name": "distributorNftId",
512
+ "type": "uint96"
513
+ },
514
+ {
515
+ "indexed": false,
516
+ "internalType": "DistributorType",
517
+ "name": "oldDistributorType",
518
+ "type": "bytes8"
519
+ },
520
+ {
521
+ "indexed": false,
522
+ "internalType": "DistributorType",
523
+ "name": "newDistributorType",
524
+ "type": "bytes8"
525
+ }
526
+ ],
527
+ "name": "LogDistributionServiceDistributorTypeChanged",
528
+ "type": "event"
529
+ },
530
+ {
531
+ "anonymous": false,
532
+ "inputs": [
533
+ {
534
+ "indexed": false,
535
+ "internalType": "NftId",
536
+ "name": "distributionNftId",
537
+ "type": "uint96"
538
+ },
539
+ {
540
+ "indexed": false,
541
+ "internalType": "string",
542
+ "name": "name",
543
+ "type": "string"
544
+ }
545
+ ],
546
+ "name": "LogDistributionServiceDistributorTypeCreated",
547
+ "type": "event"
548
+ },
549
+ {
550
+ "anonymous": false,
551
+ "inputs": [
552
+ {
553
+ "indexed": false,
554
+ "internalType": "NftId",
555
+ "name": "distributionNftId",
556
+ "type": "uint96"
557
+ },
558
+ {
559
+ "indexed": false,
560
+ "internalType": "NftId",
561
+ "name": "distributorNftId",
562
+ "type": "uint96"
563
+ },
564
+ {
565
+ "indexed": false,
566
+ "internalType": "ReferralId",
567
+ "name": "referralId",
568
+ "type": "bytes8"
569
+ },
570
+ {
571
+ "indexed": false,
572
+ "internalType": "string",
573
+ "name": "code",
574
+ "type": "string"
575
+ }
576
+ ],
577
+ "name": "LogDistributionServiceReferralCreated",
578
+ "type": "event"
579
+ },
580
+ {
581
+ "anonymous": false,
582
+ "inputs": [
583
+ {
584
+ "indexed": false,
585
+ "internalType": "NftId",
586
+ "name": "distributionNftId",
587
+ "type": "uint96"
588
+ },
589
+ {
590
+ "indexed": false,
591
+ "internalType": "NftId",
592
+ "name": "distributorNftId",
593
+ "type": "uint96"
594
+ },
595
+ {
596
+ "indexed": false,
597
+ "internalType": "ReferralId",
598
+ "name": "referralId",
599
+ "type": "bytes8"
600
+ },
601
+ {
602
+ "indexed": false,
603
+ "internalType": "uint32",
604
+ "name": "usedReferrals",
605
+ "type": "uint32"
606
+ }
607
+ ],
608
+ "name": "LogDistributionServiceReferralProcessed",
609
+ "type": "event"
610
+ },
611
+ {
612
+ "anonymous": false,
613
+ "inputs": [
614
+ {
615
+ "indexed": false,
616
+ "internalType": "NftId",
617
+ "name": "distributionNftId",
618
+ "type": "uint96"
619
+ },
620
+ {
621
+ "indexed": false,
622
+ "internalType": "ReferralId",
623
+ "name": "referralId",
624
+ "type": "bytes8"
625
+ }
626
+ ],
627
+ "name": "LogDistributionServiceSaleProcessed",
628
+ "type": "event"
629
+ },
415
630
  {
416
631
  "inputs": [],
417
632
  "name": "authority",
@@ -425,6 +640,29 @@
425
640
  "stateMutability": "view",
426
641
  "type": "function"
427
642
  },
643
+ {
644
+ "inputs": [
645
+ {
646
+ "internalType": "NftId",
647
+ "name": "distributorNftId",
648
+ "type": "uint96"
649
+ },
650
+ {
651
+ "internalType": "DistributorType",
652
+ "name": "newDistributorType",
653
+ "type": "bytes8"
654
+ },
655
+ {
656
+ "internalType": "bytes",
657
+ "name": "data",
658
+ "type": "bytes"
659
+ }
660
+ ],
661
+ "name": "changeDistributorType",
662
+ "outputs": [],
663
+ "stateMutability": "nonpayable",
664
+ "type": "function"
665
+ },
428
666
  {
429
667
  "inputs": [
430
668
  {
@@ -464,17 +702,17 @@
464
702
  {
465
703
  "internalType": "UFixed",
466
704
  "name": "minDiscountPercentage",
467
- "type": "uint256"
705
+ "type": "uint160"
468
706
  },
469
707
  {
470
708
  "internalType": "UFixed",
471
709
  "name": "maxDiscountPercentage",
472
- "type": "uint256"
710
+ "type": "uint160"
473
711
  },
474
712
  {
475
713
  "internalType": "UFixed",
476
714
  "name": "commissionPercentage",
477
- "type": "uint256"
715
+ "type": "uint160"
478
716
  },
479
717
  {
480
718
  "internalType": "uint32",
@@ -482,9 +720,9 @@
482
720
  "type": "uint32"
483
721
  },
484
722
  {
485
- "internalType": "uint32",
723
+ "internalType": "Seconds",
486
724
  "name": "maxReferralLifetime",
487
- "type": "uint32"
725
+ "type": "uint40"
488
726
  },
489
727
  {
490
728
  "internalType": "bool",
@@ -528,7 +766,7 @@
528
766
  {
529
767
  "internalType": "UFixed",
530
768
  "name": "discountPercentage",
531
- "type": "uint256"
769
+ "type": "uint160"
532
770
  },
533
771
  {
534
772
  "internalType": "uint32",
@@ -557,6 +795,35 @@
557
795
  "stateMutability": "nonpayable",
558
796
  "type": "function"
559
797
  },
798
+ {
799
+ "inputs": [
800
+ {
801
+ "internalType": "contract InstanceReader",
802
+ "name": "instanceReader",
803
+ "type": "address"
804
+ },
805
+ {
806
+ "internalType": "ReferralId",
807
+ "name": "referralId",
808
+ "type": "bytes8"
809
+ }
810
+ ],
811
+ "name": "getDiscountPercentage",
812
+ "outputs": [
813
+ {
814
+ "internalType": "UFixed",
815
+ "name": "discountPercentage",
816
+ "type": "uint160"
817
+ },
818
+ {
819
+ "internalType": "ReferralStatus",
820
+ "name": "status",
821
+ "type": "uint8"
822
+ }
823
+ ],
824
+ "stateMutability": "view",
825
+ "type": "function"
826
+ },
560
827
  {
561
828
  "inputs": [],
562
829
  "name": "getDomain",
@@ -659,6 +926,19 @@
659
926
  "stateMutability": "view",
660
927
  "type": "function"
661
928
  },
929
+ {
930
+ "inputs": [],
931
+ "name": "getRelease",
932
+ "outputs": [
933
+ {
934
+ "internalType": "VersionPart",
935
+ "name": "release",
936
+ "type": "uint8"
937
+ }
938
+ ],
939
+ "stateMutability": "view",
940
+ "type": "function"
941
+ },
662
942
  {
663
943
  "inputs": [],
664
944
  "name": "getRoleId",
@@ -669,7 +949,7 @@
669
949
  "type": "uint64"
670
950
  }
671
951
  ],
672
- "stateMutability": "pure",
952
+ "stateMutability": "view",
673
953
  "type": "function"
674
954
  },
675
955
  {
@@ -703,6 +983,19 @@
703
983
  "stateMutability": "nonpayable",
704
984
  "type": "function"
705
985
  },
986
+ {
987
+ "inputs": [],
988
+ "name": "isActive",
989
+ "outputs": [
990
+ {
991
+ "internalType": "bool",
992
+ "name": "active",
993
+ "type": "bool"
994
+ }
995
+ ],
996
+ "stateMutability": "view",
997
+ "type": "function"
998
+ },
706
999
  {
707
1000
  "inputs": [],
708
1001
  "name": "isConsumingScheduledOp",
@@ -729,6 +1022,24 @@
729
1022
  "stateMutability": "nonpayable",
730
1023
  "type": "function"
731
1024
  },
1025
+ {
1026
+ "inputs": [
1027
+ {
1028
+ "internalType": "NftId",
1029
+ "name": "distributionNftId",
1030
+ "type": "uint96"
1031
+ },
1032
+ {
1033
+ "internalType": "ReferralId",
1034
+ "name": "referralId",
1035
+ "type": "bytes8"
1036
+ }
1037
+ ],
1038
+ "name": "processReferral",
1039
+ "outputs": [],
1040
+ "stateMutability": "nonpayable",
1041
+ "type": "function"
1042
+ },
732
1043
  {
733
1044
  "inputs": [
734
1045
  {
@@ -759,82 +1070,82 @@
759
1070
  "type": "uint96"
760
1071
  },
761
1072
  {
762
- "internalType": "uint256",
1073
+ "internalType": "Amount",
763
1074
  "name": "netPremiumAmount",
764
- "type": "uint256"
1075
+ "type": "uint96"
765
1076
  },
766
1077
  {
767
- "internalType": "uint256",
1078
+ "internalType": "Amount",
768
1079
  "name": "fullPremiumAmount",
769
- "type": "uint256"
1080
+ "type": "uint96"
770
1081
  },
771
1082
  {
772
- "internalType": "uint256",
1083
+ "internalType": "Amount",
773
1084
  "name": "premiumAmount",
774
- "type": "uint256"
1085
+ "type": "uint96"
775
1086
  },
776
1087
  {
777
- "internalType": "uint256",
1088
+ "internalType": "Amount",
778
1089
  "name": "productFeeFixAmount",
779
- "type": "uint256"
1090
+ "type": "uint96"
780
1091
  },
781
1092
  {
782
- "internalType": "uint256",
1093
+ "internalType": "Amount",
783
1094
  "name": "poolFeeFixAmount",
784
- "type": "uint256"
1095
+ "type": "uint96"
785
1096
  },
786
1097
  {
787
- "internalType": "uint256",
1098
+ "internalType": "Amount",
788
1099
  "name": "bundleFeeFixAmount",
789
- "type": "uint256"
1100
+ "type": "uint96"
790
1101
  },
791
1102
  {
792
- "internalType": "uint256",
1103
+ "internalType": "Amount",
793
1104
  "name": "distributionFeeFixAmount",
794
- "type": "uint256"
1105
+ "type": "uint96"
795
1106
  },
796
1107
  {
797
- "internalType": "uint256",
1108
+ "internalType": "Amount",
798
1109
  "name": "productFeeVarAmount",
799
- "type": "uint256"
1110
+ "type": "uint96"
800
1111
  },
801
1112
  {
802
- "internalType": "uint256",
1113
+ "internalType": "Amount",
803
1114
  "name": "poolFeeVarAmount",
804
- "type": "uint256"
1115
+ "type": "uint96"
805
1116
  },
806
1117
  {
807
- "internalType": "uint256",
1118
+ "internalType": "Amount",
808
1119
  "name": "bundleFeeVarAmount",
809
- "type": "uint256"
1120
+ "type": "uint96"
810
1121
  },
811
1122
  {
812
- "internalType": "uint256",
1123
+ "internalType": "Amount",
813
1124
  "name": "distributionFeeVarAmount",
814
- "type": "uint256"
1125
+ "type": "uint96"
815
1126
  },
816
1127
  {
817
- "internalType": "uint256",
1128
+ "internalType": "Amount",
818
1129
  "name": "distributionOwnerFeeFixAmount",
819
- "type": "uint256"
1130
+ "type": "uint96"
820
1131
  },
821
1132
  {
822
- "internalType": "uint256",
1133
+ "internalType": "Amount",
823
1134
  "name": "distributionOwnerFeeVarAmount",
824
- "type": "uint256"
1135
+ "type": "uint96"
825
1136
  },
826
1137
  {
827
- "internalType": "uint256",
1138
+ "internalType": "Amount",
828
1139
  "name": "commissionAmount",
829
- "type": "uint256"
1140
+ "type": "uint96"
830
1141
  },
831
1142
  {
832
- "internalType": "uint256",
1143
+ "internalType": "Amount",
833
1144
  "name": "discountAmount",
834
- "type": "uint256"
1145
+ "type": "uint96"
835
1146
  }
836
1147
  ],
837
- "internalType": "struct IPolicy.Premium",
1148
+ "internalType": "struct IPolicy.PremiumInfo",
838
1149
  "name": "premium",
839
1150
  "type": "tuple"
840
1151
  }