@etherisc/gif-next 0.0.2-e802d97-251 → 0.0.2-e83e4a5-207
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.
- package/README.md +18 -2
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.json +10 -0
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1505 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +17 -242
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +138 -93
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +65 -57
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +71 -146
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +45 -16
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +33 -108
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +58 -78
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +147 -40
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +72 -140
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1208 -290
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +110 -76
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +210 -103
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +49 -49
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +84 -135
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +0 -53
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
 - package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +3 -78
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.json +2 -2
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +43 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +13 -0
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +13 -0
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +13 -96
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +66 -29
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +44 -32
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1477 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +78 -49
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +50 -42
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +13 -0
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +7 -202
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +13 -0
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/pool/Pool.sol/Pool.json +7 -303
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +62 -41
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +42 -38
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +66 -37
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +44 -36
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1299 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +106 -69
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +64 -52
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +13 -0
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +13 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +13 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +13 -0
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +13 -42
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/product/IProductService.sol/IProductService.json +13 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +84 -47
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +53 -41
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +92 -63
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +57 -49
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/product/Product.sol/Product.json +13 -153
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +54 -25
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +38 -30
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +0 -44
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +13 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +24 -68
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1505 -166
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +50 -13
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +37 -25
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +185 -318
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +4 -4
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +82 -85
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +52 -60
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +13 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +13 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +13 -0
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +11 -5
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +0 -5
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +13 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +1 -1
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +13 -53
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +15 -89
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +4 -65
 - package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +22 -22
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +6 -6
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +6 -6
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -14
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +8 -8
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +13 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +6 -6
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +49 -7
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +44 -28
 - package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
 - package/artifacts/contracts/staking/Staking.sol/Staking.json +44 -84
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +40 -56
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +6 -6
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +92 -73
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +39 -47
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +197 -149
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +22 -22
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +2 -2
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +8 -8
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +4 -4
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +4 -4
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +12 -12
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +4 -4
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +136 -2
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +4 -4
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.json +4 -4
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +4 -4
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +4 -4
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +219 -6
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +2 -2
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
 - package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +4 -4
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/type/UFixed.sol/MathLib.json +2 -2
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +21 -2
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -2
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.json +2 -2
 - package/contracts/authorization/AccessAdmin.sol +591 -0
 - package/contracts/authorization/AccessManagerCloneable.sol +16 -0
 - package/contracts/authorization/Authorization.sol +218 -0
 - package/contracts/authorization/IAccess.sol +48 -0
 - package/contracts/authorization/IAccessAdmin.sol +136 -0
 - package/contracts/authorization/IAuthorization.sol +54 -0
 - package/contracts/authorization/IModuleAuthorization.sol +21 -0
 - package/contracts/authorization/IServiceAuthorization.sol +38 -0
 - package/contracts/authorization/ModuleAuthorization.sol +78 -0
 - package/contracts/authorization/ServiceAuthorization.sol +90 -0
 - package/contracts/distribution/BasicDistribution.sol +149 -0
 - package/contracts/distribution/BasicDistributionAuthorization.sol +43 -0
 - package/contracts/distribution/Distribution.sol +126 -104
 - package/contracts/distribution/DistributionService.sol +13 -9
 - package/contracts/distribution/IDistributionComponent.sol +17 -35
 - package/contracts/distribution/IDistributionService.sol +5 -1
 - package/contracts/instance/IInstance.sol +11 -7
 - package/contracts/instance/IInstanceService.sol +29 -18
 - package/contracts/instance/Instance.sol +103 -85
 - package/contracts/instance/InstanceAdmin.sol +202 -267
 - package/contracts/instance/InstanceAuthorizationV3.sol +202 -0
 - package/contracts/instance/InstanceReader.sol +24 -9
 - package/contracts/instance/InstanceService.sol +151 -70
 - package/contracts/instance/InstanceStore.sol +15 -20
 - package/contracts/instance/base/BalanceStore.sol +11 -6
 - package/contracts/instance/base/Cloneable.sol +2 -25
 - package/contracts/instance/base/ObjectLifecycle.sol +106 -0
 - package/contracts/instance/base/ObjectManager.sol +7 -10
 - package/contracts/oracle/BasicOracle.sol +48 -0
 - package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
 - package/contracts/oracle/IOracle.sol +16 -0
 - package/contracts/oracle/Oracle.sol +61 -49
 - package/contracts/oracle/OracleService.sol +5 -4
 - package/contracts/pool/BasicPool.sol +164 -0
 - package/contracts/pool/BasicPoolAuthorization.sol +49 -0
 - package/contracts/pool/BundleService.sol +19 -19
 - package/contracts/pool/IPoolComponent.sol +0 -60
 - package/contracts/pool/Pool.sol +143 -131
 - package/contracts/pool/PoolService.sol +7 -8
 - package/contracts/product/ApplicationService.sol +5 -5
 - package/contracts/product/BasicProduct.sol +82 -0
 - package/contracts/product/BasicProductAuthorization.sol +40 -0
 - package/contracts/product/ClaimService.sol +5 -5
 - package/contracts/product/IProductComponent.sol +6 -9
 - package/contracts/product/PolicyService.sol +5 -5
 - package/contracts/product/PricingService.sol +4 -5
 - package/contracts/product/Product.sol +103 -88
 - package/contracts/product/ProductService.sol +5 -5
 - package/contracts/registry/IRegistry.sol +5 -8
 - package/contracts/registry/Registry.sol +6 -4
 - package/contracts/registry/RegistryAdmin.sol +276 -148
 - package/contracts/registry/RegistryService.sol +5 -5
 - package/contracts/registry/RegistryServiceManager.sol +0 -5
 - package/contracts/registry/ReleaseLifecycle.sol +27 -0
 - package/contracts/registry/ReleaseManager.sol +161 -274
 - package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
 - package/contracts/shared/ComponentService.sol +24 -61
 - package/contracts/shared/ComponentVerifyingService.sol +1 -1
 - package/contracts/shared/IInstanceLinkedComponent.sol +4 -0
 - package/contracts/shared/IKeyValueStore.sol +1 -0
 - package/contracts/shared/ILifecycle.sol +1 -2
 - package/contracts/shared/IService.sol +7 -0
 - package/contracts/shared/InstanceLinkedComponent.sol +26 -19
 - package/contracts/shared/KeyValueStore.sol +6 -2
 - package/contracts/shared/Lifecycle.sol +16 -69
 - package/contracts/shared/Service.sol +27 -21
 - package/contracts/staking/IStakingService.sol +11 -7
 - package/contracts/staking/StakeManagerLib.sol +52 -0
 - package/contracts/staking/Staking.sol +58 -96
 - package/contracts/staking/StakingLifecycle.sol +23 -0
 - package/contracts/staking/StakingService.sol +61 -56
 - package/contracts/staking/StakingServiceManager.sol +0 -1
 - package/contracts/staking/StakingStore.sol +82 -39
 - package/contracts/type/ObjectType.sol +169 -62
 - package/contracts/type/RoleId.sol +103 -75
 - package/contracts/type/Selector.sol +102 -0
 - package/contracts/type/String.sol +53 -0
 - package/contracts/type/UFixed.sol +6 -0
 - package/package.json +4 -1
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +0 -4
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +0 -228
 - package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +0 -4
 - package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +0 -137
 - package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +0 -1193
 - package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +0 -1715
 - package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +0 -1728
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +0 -1806
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +0 -4
 - package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +0 -1824
 - package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +0 -4
 - package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +0 -1562
 - package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +0 -4
 - package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +0 -1600
 - package/contracts/instance/InstanceAuthorizationsLib.sol +0 -377
 - package/contracts/registry/ServiceAuthorizationsLib.sol +0 -173
 - package/contracts/shared/AccessManagerCustom.sol +0 -736
 - package/contracts/shared/AccessManagerExtended.sol +0 -470
 - package/contracts/shared/AccessManagerExtendedInitializeable.sol +0 -13
 - package/contracts/shared/AccessManagerExtendedWithDisable.sol +0 -137
 - package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +0 -14
 - package/contracts/shared/IAccessManagerExtended.sol +0 -74
 - package/contracts/shared/IAccessManagerExtendedWithDisable.sol +0 -18
 
    
        package/contracts/pool/Pool.sol
    CHANGED
    
    | 
         @@ -2,15 +2,16 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {Amount, AmountLib} from "../type/Amount.sol";
         
     | 
| 
       5 
     | 
    
         
            -
            import { 
     | 
| 
       6 
     | 
    
         
            -
            import {Fee, FeeLib} from "../type/Fee.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {BUNDLE, COMPONENT, POOL} from "../type/ObjectType.sol";
         
     | 
| 
       7 
6 
     | 
    
         
             
            import {IBundleService} from "./IBundleService.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {IAuthorization} from "../authorization/IAuthorization.sol";
         
     | 
| 
       8 
8 
     | 
    
         
             
            import {IPoolComponent} from "./IPoolComponent.sol";
         
     | 
| 
       9 
9 
     | 
    
         
             
            import {IPoolService} from "./IPoolService.sol";
         
     | 
| 
       10 
10 
     | 
    
         
             
            import {IComponents} from "../instance/module/IComponents.sol";
         
     | 
| 
       11 
11 
     | 
    
         
             
            import {IComponentService} from "../shared/IComponentService.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {InstanceLinkedComponent} from "../shared/InstanceLinkedComponent.sol";
         
     | 
| 
      
 13 
     | 
    
         
            +
            import {Fee, FeeLib} from "../type/Fee.sol";
         
     | 
| 
       12 
14 
     | 
    
         
             
            import {NftId, NftIdLib} from "../type/NftId.sol";
         
     | 
| 
       13 
     | 
    
         
            -
            import {BUNDLE, COMPONENT, POOL} from "../type/ObjectType.sol";
         
     | 
| 
       14 
15 
     | 
    
         
             
            import {RoleId, PUBLIC_ROLE} from "../type/RoleId.sol";
         
     | 
| 
       15 
16 
     | 
    
         
             
            import {Seconds} from "../type/Seconds.sol";
         
     | 
| 
       16 
17 
     | 
    
         
             
            import {TokenHandler} from "../shared/TokenHandler.sol";
         
     | 
| 
         @@ -38,29 +39,110 @@ abstract contract Pool is 
     | 
|
| 
       38 
39 
     | 
    
         
             
                }
         
     | 
| 
       39 
40 
     | 
    
         | 
| 
       40 
41 
     | 
    
         | 
| 
       41 
     | 
    
         
            -
                 
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
      
 42 
     | 
    
         
            +
                /// @dev see {IPoolComponent.verifyApplication}
         
     | 
| 
      
 43 
     | 
    
         
            +
                function verifyApplication(
         
     | 
| 
      
 44 
     | 
    
         
            +
                    NftId applicationNftId, 
         
     | 
| 
      
 45 
     | 
    
         
            +
                    bytes memory applicationData,
         
     | 
| 
      
 46 
     | 
    
         
            +
                    NftId bundleNftId, 
         
     | 
| 
      
 47 
     | 
    
         
            +
                    bytes memory bundleFilter,
         
     | 
| 
      
 48 
     | 
    
         
            +
                    Amount collateralizationAmount
         
     | 
| 
      
 49 
     | 
    
         
            +
                )
         
     | 
| 
      
 50 
     | 
    
         
            +
                    public
         
     | 
| 
      
 51 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 52 
     | 
    
         
            +
                    restricted()
         
     | 
| 
      
 53 
     | 
    
         
            +
                {
         
     | 
| 
      
 54 
     | 
    
         
            +
                    if(!applicationMatchesBundle(
         
     | 
| 
      
 55 
     | 
    
         
            +
                        applicationNftId,
         
     | 
| 
      
 56 
     | 
    
         
            +
                        applicationData, 
         
     | 
| 
      
 57 
     | 
    
         
            +
                        bundleNftId, 
         
     | 
| 
      
 58 
     | 
    
         
            +
                        bundleFilter,
         
     | 
| 
      
 59 
     | 
    
         
            +
                        collateralizationAmount)
         
     | 
| 
      
 60 
     | 
    
         
            +
                    )
         
     | 
| 
      
 61 
     | 
    
         
            +
                    {
         
     | 
| 
      
 62 
     | 
    
         
            +
                        revert ErrorPoolApplicationBundleMismatch(applicationNftId);
         
     | 
| 
       44 
63 
     | 
    
         
             
                    }
         
     | 
| 
       45 
     | 
    
         
            -
             
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
                    emit LogPoolVerifiedByPool(address(this), applicationNftId, collateralizationAmount);
         
     | 
| 
      
 66 
     | 
    
         
            +
                }
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
                /// @dev see {IPoolComponent.applicationMatchesBundle}
         
     | 
| 
      
 70 
     | 
    
         
            +
                /// Override this function to implement any custom application verification 
         
     | 
| 
      
 71 
     | 
    
         
            +
                /// Default implementation always returns true
         
     | 
| 
      
 72 
     | 
    
         
            +
                function applicationMatchesBundle(
         
     | 
| 
      
 73 
     | 
    
         
            +
                    NftId applicationNftId, 
         
     | 
| 
      
 74 
     | 
    
         
            +
                    bytes memory applicationData,
         
     | 
| 
      
 75 
     | 
    
         
            +
                    NftId bundleNftId, 
         
     | 
| 
      
 76 
     | 
    
         
            +
                    bytes memory bundleFilter,
         
     | 
| 
      
 77 
     | 
    
         
            +
                    Amount collateralizationAmount
         
     | 
| 
      
 78 
     | 
    
         
            +
                )
         
     | 
| 
      
 79 
     | 
    
         
            +
                    public
         
     | 
| 
      
 80 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 81 
     | 
    
         
            +
                    view
         
     | 
| 
      
 82 
     | 
    
         
            +
                    returns (bool isMatching)
         
     | 
| 
      
 83 
     | 
    
         
            +
                {
         
     | 
| 
      
 84 
     | 
    
         
            +
                    return true;
         
     | 
| 
       46 
85 
     | 
    
         
             
                }
         
     | 
| 
       47 
86 
     | 
    
         | 
| 
       48 
87 
     | 
    
         | 
| 
       49 
     | 
    
         
            -
                function  
     | 
| 
      
 88 
     | 
    
         
            +
                function register()
         
     | 
| 
      
 89 
     | 
    
         
            +
                    external
         
     | 
| 
      
 90 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 91 
     | 
    
         
            +
                    onlyOwner()
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                    _getPoolStorage()._componentService.registerPool();
         
     | 
| 
      
 94 
     | 
    
         
            +
                }
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
                function getInitialPoolInfo()
         
     | 
| 
      
 98 
     | 
    
         
            +
                    public 
         
     | 
| 
      
 99 
     | 
    
         
            +
                    virtual 
         
     | 
| 
      
 100 
     | 
    
         
            +
                    view 
         
     | 
| 
      
 101 
     | 
    
         
            +
                    returns (IComponents.PoolInfo memory poolInfo)
         
     | 
| 
      
 102 
     | 
    
         
            +
                {
         
     | 
| 
      
 103 
     | 
    
         
            +
                    return IComponents.PoolInfo(
         
     | 
| 
      
 104 
     | 
    
         
            +
                        NftIdLib.zero(), // will be set when GIF registers the related product
         
     | 
| 
      
 105 
     | 
    
         
            +
                        PUBLIC_ROLE(), // bundleOwnerRole
         
     | 
| 
      
 106 
     | 
    
         
            +
                        AmountLib.max(), // maxCapitalAmount,
         
     | 
| 
      
 107 
     | 
    
         
            +
                        isNftInterceptor(), // isInterceptingBundleTransfers
         
     | 
| 
      
 108 
     | 
    
         
            +
                        false, // isExternallyManaged,
         
     | 
| 
      
 109 
     | 
    
         
            +
                        false, // isVerifyingApplications,
         
     | 
| 
      
 110 
     | 
    
         
            +
                        UFixedLib.toUFixed(1), // collateralizationLevel,
         
     | 
| 
      
 111 
     | 
    
         
            +
                        UFixedLib.toUFixed(1), // retentionLevel,
         
     | 
| 
      
 112 
     | 
    
         
            +
                        FeeLib.zero(), // initialPoolFee,
         
     | 
| 
      
 113 
     | 
    
         
            +
                        FeeLib.zero(), // initialStakingFee,
         
     | 
| 
      
 114 
     | 
    
         
            +
                        FeeLib.zero() // initialPerformanceFee,
         
     | 
| 
      
 115 
     | 
    
         
            +
                    );
         
     | 
| 
      
 116 
     | 
    
         
            +
                }
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
                // Internals
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
                function _initializePool(
         
     | 
| 
       50 
121 
     | 
    
         
             
                    address registry,
         
     | 
| 
       51 
122 
     | 
    
         
             
                    NftId instanceNftId,
         
     | 
| 
       52 
123 
     | 
    
         
             
                    string memory name,
         
     | 
| 
       53 
124 
     | 
    
         
             
                    address token,
         
     | 
| 
      
 125 
     | 
    
         
            +
                    IAuthorization authorization,
         
     | 
| 
       54 
126 
     | 
    
         
             
                    bool isInterceptingNftTransfers,
         
     | 
| 
       55 
127 
     | 
    
         
             
                    address initialOwner,
         
     | 
| 
       56 
128 
     | 
    
         
             
                    bytes memory registryData, // writeonly data that will saved in the object info record of the registry
         
     | 
| 
       57 
129 
     | 
    
         
             
                    bytes memory componentData // component specifidc data 
         
     | 
| 
       58 
130 
     | 
    
         
             
                )
         
     | 
| 
       59 
     | 
    
         
            -
                     
     | 
| 
      
 131 
     | 
    
         
            +
                    internal
         
     | 
| 
       60 
132 
     | 
    
         
             
                    virtual
         
     | 
| 
       61 
133 
     | 
    
         
             
                    onlyInitializing()
         
     | 
| 
       62 
134 
     | 
    
         
             
                {
         
     | 
| 
       63 
     | 
    
         
            -
                     
     | 
| 
      
 135 
     | 
    
         
            +
                    _initializeInstanceLinkedComponent(
         
     | 
| 
      
 136 
     | 
    
         
            +
                        registry, 
         
     | 
| 
      
 137 
     | 
    
         
            +
                        instanceNftId, 
         
     | 
| 
      
 138 
     | 
    
         
            +
                        name, 
         
     | 
| 
      
 139 
     | 
    
         
            +
                        token, 
         
     | 
| 
      
 140 
     | 
    
         
            +
                        POOL(), 
         
     | 
| 
      
 141 
     | 
    
         
            +
                        authorization, 
         
     | 
| 
      
 142 
     | 
    
         
            +
                        isInterceptingNftTransfers, 
         
     | 
| 
      
 143 
     | 
    
         
            +
                        initialOwner, 
         
     | 
| 
      
 144 
     | 
    
         
            +
                        registryData, 
         
     | 
| 
      
 145 
     | 
    
         
            +
                        componentData);
         
     | 
| 
       64 
146 
     | 
    
         | 
| 
       65 
147 
     | 
    
         
             
                    PoolStorage storage $ = _getPoolStorage();
         
     | 
| 
       66 
148 
     | 
    
         
             
                    $._poolService = IPoolService(_getServiceAddress(POOL())); 
         
     | 
| 
         @@ -70,201 +152,130 @@ abstract contract Pool is 
     | 
|
| 
       70 
152 
     | 
    
         
             
                    registerInterface(type(IPoolComponent).interfaceId);
         
     | 
| 
       71 
153 
     | 
    
         
             
                }
         
     | 
| 
       72 
154 
     | 
    
         | 
| 
       73 
     | 
    
         
            -
             
     | 
| 
       74 
     | 
    
         
            -
                 
     | 
| 
       75 
     | 
    
         
            -
             
     | 
| 
       76 
     | 
    
         
            -
                    virtual
         
     | 
| 
       77 
     | 
    
         
            -
                    onlyOwner()
         
     | 
| 
       78 
     | 
    
         
            -
                {
         
     | 
| 
       79 
     | 
    
         
            -
                    _getPoolStorage()._componentService.registerPool();
         
     | 
| 
       80 
     | 
    
         
            -
                }
         
     | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
                function stake(
         
     | 
| 
      
 155 
     | 
    
         
            +
                /// @dev increases the staked tokens by the specified amount
         
     | 
| 
      
 156 
     | 
    
         
            +
                /// bundle MUST be in active or locked state
         
     | 
| 
      
 157 
     | 
    
         
            +
                function _stake(
         
     | 
| 
       84 
158 
     | 
    
         
             
                    NftId bundleNftId, 
         
     | 
| 
       85 
159 
     | 
    
         
             
                    Amount amount
         
     | 
| 
       86 
160 
     | 
    
         
             
                )
         
     | 
| 
       87 
     | 
    
         
            -
                     
     | 
| 
      
 161 
     | 
    
         
            +
                    internal
         
     | 
| 
       88 
162 
     | 
    
         
             
                    virtual
         
     | 
| 
       89 
     | 
    
         
            -
                    restricted()
         
     | 
| 
       90 
     | 
    
         
            -
                    onlyBundleOwner(bundleNftId)
         
     | 
| 
       91 
163 
     | 
    
         
             
                {
         
     | 
| 
       92 
164 
     | 
    
         
             
                    // TODO add implementation
         
     | 
| 
       93 
165 
     | 
    
         
             
                }
         
     | 
| 
       94 
166 
     | 
    
         | 
| 
       95 
167 
     | 
    
         | 
| 
       96 
     | 
    
         
            -
                 
     | 
| 
      
 168 
     | 
    
         
            +
                /// @dev decreases the staked tokens by the specified amount
         
     | 
| 
      
 169 
     | 
    
         
            +
                /// bundle MUST be in active, locked or closed state
         
     | 
| 
      
 170 
     | 
    
         
            +
                function _unstake(
         
     | 
| 
       97 
171 
     | 
    
         
             
                    NftId bundleNftId, 
         
     | 
| 
       98 
172 
     | 
    
         
             
                    Amount amount
         
     | 
| 
       99 
173 
     | 
    
         
             
                )
         
     | 
| 
       100 
     | 
    
         
            -
                     
     | 
| 
      
 174 
     | 
    
         
            +
                    internal
         
     | 
| 
       101 
175 
     | 
    
         
             
                    virtual
         
     | 
| 
       102 
     | 
    
         
            -
                    restricted()
         
     | 
| 
       103 
     | 
    
         
            -
                    onlyBundleOwner(bundleNftId)
         
     | 
| 
       104 
176 
     | 
    
         
             
                {
         
     | 
| 
       105 
177 
     | 
    
         
             
                    // TODO add implementation
         
     | 
| 
       106 
178 
     | 
    
         
             
                }
         
     | 
| 
       107 
179 
     | 
    
         | 
| 
       108 
180 
     | 
    
         | 
| 
       109 
     | 
    
         
            -
                 
     | 
| 
      
 181 
     | 
    
         
            +
                /// @dev extends the bundle lifetime of the bundle by the specified time
         
     | 
| 
      
 182 
     | 
    
         
            +
                /// bundle MUST be in active or locked state
         
     | 
| 
      
 183 
     | 
    
         
            +
                function _extend(
         
     | 
| 
       110 
184 
     | 
    
         
             
                    NftId bundleNftId, 
         
     | 
| 
       111 
185 
     | 
    
         
             
                    Seconds lifetimeExtension
         
     | 
| 
       112 
186 
     | 
    
         
             
                )
         
     | 
| 
       113 
     | 
    
         
            -
                     
     | 
| 
      
 187 
     | 
    
         
            +
                    internal
         
     | 
| 
       114 
188 
     | 
    
         
             
                    virtual
         
     | 
| 
       115 
     | 
    
         
            -
                    restricted()
         
     | 
| 
       116 
     | 
    
         
            -
                    onlyBundleOwner(bundleNftId)
         
     | 
| 
       117 
189 
     | 
    
         
             
                {
         
     | 
| 
       118 
190 
     | 
    
         
             
                    // TODO add implementation
         
     | 
| 
       119 
191 
     | 
    
         
             
                }
         
     | 
| 
       120 
192 
     | 
    
         | 
| 
       121 
193 
     | 
    
         | 
| 
       122 
     | 
    
         
            -
                 
     | 
| 
       123 
     | 
    
         
            -
             
     | 
| 
      
 194 
     | 
    
         
            +
                /// @dev Locks the specified bundle.
         
     | 
| 
      
 195 
     | 
    
         
            +
                /// A bundle to be locked MUST be in active state.
         
     | 
| 
      
 196 
     | 
    
         
            +
                /// Locked bundles may not be used to collateralize any new policy.
         
     | 
| 
      
 197 
     | 
    
         
            +
                function _lockBundle(NftId bundleNftId)
         
     | 
| 
      
 198 
     | 
    
         
            +
                    internal
         
     | 
| 
       124 
199 
     | 
    
         
             
                    virtual
         
     | 
| 
       125 
     | 
    
         
            -
                    //restricted() // TODO consider adding this back
         
     | 
| 
       126 
     | 
    
         
            -
                    onlyBundleOwner(bundleNftId)
         
     | 
| 
       127 
200 
     | 
    
         
             
                {
         
     | 
| 
       128 
201 
     | 
    
         
             
                    _getPoolStorage()._bundleService.lock(bundleNftId);
         
     | 
| 
       129 
202 
     | 
    
         
             
                }
         
     | 
| 
       130 
203 
     | 
    
         | 
| 
       131 
204 
     | 
    
         | 
| 
       132 
     | 
    
         
            -
                 
     | 
| 
       133 
     | 
    
         
            -
             
     | 
| 
      
 205 
     | 
    
         
            +
                /// @dev Unlocks the specified bundle.
         
     | 
| 
      
 206 
     | 
    
         
            +
                /// A bundle to be unlocked MUST be in locked state.
         
     | 
| 
      
 207 
     | 
    
         
            +
                function _unlockBundle(NftId bundleNftId)
         
     | 
| 
      
 208 
     | 
    
         
            +
                    internal
         
     | 
| 
       134 
209 
     | 
    
         
             
                    virtual
         
     | 
| 
       135 
     | 
    
         
            -
                    //restricted()
         
     | 
| 
       136 
     | 
    
         
            -
                    onlyBundleOwner(bundleNftId)
         
     | 
| 
       137 
210 
     | 
    
         
             
                {
         
     | 
| 
       138 
211 
     | 
    
         
             
                    _getPoolStorage()._bundleService.unlock(bundleNftId);
         
     | 
| 
       139 
212 
     | 
    
         
             
                }
         
     | 
| 
       140 
213 
     | 
    
         | 
| 
       141 
214 
     | 
    
         | 
| 
       142 
     | 
    
         
            -
                 
     | 
| 
       143 
     | 
    
         
            -
             
     | 
| 
      
 215 
     | 
    
         
            +
                /// @dev Close the specified bundle.
         
     | 
| 
      
 216 
     | 
    
         
            +
                /// A bundle to be closed MUST be in active or locked state.
         
     | 
| 
      
 217 
     | 
    
         
            +
                /// To close a bundle all all linked policies MUST be in closed state as well.
         
     | 
| 
      
 218 
     | 
    
         
            +
                /// Closing a bundle finalizes the bundle bookkeeping including overall profit calculation.
         
     | 
| 
      
 219 
     | 
    
         
            +
                /// Once a bundle is closed this action cannot be reversed.
         
     | 
| 
      
 220 
     | 
    
         
            +
                function _close(NftId bundleNftId)
         
     | 
| 
      
 221 
     | 
    
         
            +
                    internal
         
     | 
| 
       144 
222 
     | 
    
         
             
                    virtual
         
     | 
| 
       145 
     | 
    
         
            -
                    //restricted()
         
     | 
| 
       146 
     | 
    
         
            -
                    onlyBundleOwner(bundleNftId)
         
     | 
| 
       147 
223 
     | 
    
         
             
                {
         
     | 
| 
       148 
224 
     | 
    
         
             
                    _getPoolStorage()._poolService.closeBundle(bundleNftId);
         
     | 
| 
       149 
225 
     | 
    
         
             
                }
         
     | 
| 
       150 
226 
     | 
    
         | 
| 
       151 
227 
     | 
    
         | 
| 
       152 
     | 
    
         
            -
                 
     | 
| 
      
 228 
     | 
    
         
            +
                /// @dev Sets the fee for the specified bundle.
         
     | 
| 
      
 229 
     | 
    
         
            +
                /// The fee is added on top of the poolFee and deducted from the premium amounts
         
     | 
| 
      
 230 
     | 
    
         
            +
                /// Via these fees individual bundler owner may earn income per policy in the context of peer to peer pools.
         
     | 
| 
      
 231 
     | 
    
         
            +
                function _setBundleFee(
         
     | 
| 
       153 
232 
     | 
    
         
             
                    NftId bundleNftId, 
         
     | 
| 
       154 
233 
     | 
    
         
             
                    Fee memory fee
         
     | 
| 
       155 
234 
     | 
    
         
             
                )
         
     | 
| 
       156 
     | 
    
         
            -
                     
     | 
| 
      
 235 
     | 
    
         
            +
                    internal
         
     | 
| 
       157 
236 
     | 
    
         
             
                    virtual
         
     | 
| 
       158 
     | 
    
         
            -
                    //restricted()
         
     | 
| 
       159 
     | 
    
         
            -
                    onlyBundleOwner(bundleNftId)
         
     | 
| 
       160 
237 
     | 
    
         
             
                {
         
     | 
| 
       161 
238 
     | 
    
         
             
                    _getPoolStorage()._bundleService.setFee(bundleNftId, fee);
         
     | 
| 
       162 
239 
     | 
    
         
             
                }
         
     | 
| 
       163 
240 
     | 
    
         | 
| 
       164 
241 
     | 
    
         | 
| 
       165 
     | 
    
         
            -
                 
     | 
| 
       166 
     | 
    
         
            -
             
     | 
| 
      
 242 
     | 
    
         
            +
                /// @dev Sets the maximum overall capital amound held by this pool.
         
     | 
| 
      
 243 
     | 
    
         
            +
                /// Function may only be called by pool owner.
         
     | 
| 
      
 244 
     | 
    
         
            +
                function _setMaxCapitalAmount(Amount maxCapitalAmount)
         
     | 
| 
      
 245 
     | 
    
         
            +
                    internal
         
     | 
| 
       167 
246 
     | 
    
         
             
                    virtual
         
     | 
| 
       168 
     | 
    
         
            -
                    restricted()
         
     | 
| 
       169 
     | 
    
         
            -
                    onlyOwner()
         
     | 
| 
       170 
247 
     | 
    
         
             
                {
         
     | 
| 
       171 
248 
     | 
    
         
             
                    _getPoolStorage()._poolService.setMaxCapitalAmount(maxCapitalAmount);
         
     | 
| 
       172 
249 
     | 
    
         
             
                }
         
     | 
| 
       173 
250 
     | 
    
         | 
| 
       174 
     | 
    
         
            -
             
     | 
| 
       175 
     | 
    
         
            -
                 
     | 
| 
       176 
     | 
    
         
            -
             
     | 
| 
      
 251 
     | 
    
         
            +
                /// @dev Sets the required role to create/own bundles.
         
     | 
| 
      
 252 
     | 
    
         
            +
                /// May only be called once after setting up a pool.
         
     | 
| 
      
 253 
     | 
    
         
            +
                /// May only be called by pool owner.
         
     | 
| 
      
 254 
     | 
    
         
            +
                function _setBundleOwnerRole(RoleId bundleOwnerRole)
         
     | 
| 
      
 255 
     | 
    
         
            +
                    internal
         
     | 
| 
       177 
256 
     | 
    
         
             
                    virtual
         
     | 
| 
       178 
     | 
    
         
            -
                    restricted()
         
     | 
| 
       179 
     | 
    
         
            -
                    onlyOwner()
         
     | 
| 
       180 
257 
     | 
    
         
             
                {
         
     | 
| 
       181 
258 
     | 
    
         
             
                    _getPoolStorage()._poolService.setBundleOwnerRole(bundleOwnerRole);
         
     | 
| 
       182 
259 
     | 
    
         
             
                }
         
     | 
| 
       183 
260 
     | 
    
         | 
| 
       184 
261 
     | 
    
         | 
| 
       185 
     | 
    
         
            -
                 
     | 
| 
      
 262 
     | 
    
         
            +
                /// @dev Update pool fees to the specified values.
         
     | 
| 
      
 263 
     | 
    
         
            +
                /// Pool fee: are deducted from the premium amount and goes to the pool owner.
         
     | 
| 
      
 264 
     | 
    
         
            +
                /// Staking fee: are deducted from the staked tokens by a bundle owner and goes to the pool owner.
         
     | 
| 
      
 265 
     | 
    
         
            +
                /// Performance fee: when a bundle is closed a bundle specific profit is calculated.
         
     | 
| 
      
 266 
     | 
    
         
            +
                /// The performance fee is deducted from this profit and goes to the pool owner.
         
     | 
| 
      
 267 
     | 
    
         
            +
                function _setPoolFees(
         
     | 
| 
       186 
268 
     | 
    
         
             
                    Fee memory poolFee,
         
     | 
| 
       187 
269 
     | 
    
         
             
                    Fee memory stakingFee,
         
     | 
| 
       188 
270 
     | 
    
         
             
                    Fee memory performanceFee
         
     | 
| 
       189 
271 
     | 
    
         
             
                )
         
     | 
| 
       190 
     | 
    
         
            -
                     
     | 
| 
      
 272 
     | 
    
         
            +
                    internal
         
     | 
| 
       191 
273 
     | 
    
         
             
                    virtual
         
     | 
| 
       192 
     | 
    
         
            -
                    restricted()
         
     | 
| 
       193 
     | 
    
         
            -
                    onlyOwner()
         
     | 
| 
       194 
274 
     | 
    
         
             
                {
         
     | 
| 
       195 
275 
     | 
    
         
             
                    _getPoolStorage()._componentService.setPoolFees(poolFee, stakingFee, performanceFee);
         
     | 
| 
       196 
276 
     | 
    
         
             
                }
         
     | 
| 
       197 
277 
     | 
    
         | 
| 
       198 
     | 
    
         
            -
             
     | 
| 
       199 
     | 
    
         
            -
                /// @dev see {IPool.verifyApplication}
         
     | 
| 
       200 
     | 
    
         
            -
                function verifyApplication(
         
     | 
| 
       201 
     | 
    
         
            -
                    NftId applicationNftId, 
         
     | 
| 
       202 
     | 
    
         
            -
                    bytes memory applicationData,
         
     | 
| 
       203 
     | 
    
         
            -
                    NftId bundleNftId, 
         
     | 
| 
       204 
     | 
    
         
            -
                    bytes memory bundleFilter,
         
     | 
| 
       205 
     | 
    
         
            -
                    Amount collateralizationAmount
         
     | 
| 
       206 
     | 
    
         
            -
                )
         
     | 
| 
       207 
     | 
    
         
            -
                    public
         
     | 
| 
       208 
     | 
    
         
            -
                    virtual
         
     | 
| 
       209 
     | 
    
         
            -
                    restricted()
         
     | 
| 
       210 
     | 
    
         
            -
                {
         
     | 
| 
       211 
     | 
    
         
            -
                    if(!applicationMatchesBundle(
         
     | 
| 
       212 
     | 
    
         
            -
                        applicationNftId,
         
     | 
| 
       213 
     | 
    
         
            -
                        applicationData, 
         
     | 
| 
       214 
     | 
    
         
            -
                        bundleNftId, 
         
     | 
| 
       215 
     | 
    
         
            -
                        bundleFilter,
         
     | 
| 
       216 
     | 
    
         
            -
                        collateralizationAmount)
         
     | 
| 
       217 
     | 
    
         
            -
                    )
         
     | 
| 
       218 
     | 
    
         
            -
                    {
         
     | 
| 
       219 
     | 
    
         
            -
                        revert ErrorPoolApplicationBundleMismatch(applicationNftId);
         
     | 
| 
       220 
     | 
    
         
            -
                    }
         
     | 
| 
       221 
     | 
    
         
            -
             
     | 
| 
       222 
     | 
    
         
            -
                    emit LogPoolVerifiedByPool(address(this), applicationNftId, collateralizationAmount);
         
     | 
| 
       223 
     | 
    
         
            -
                }
         
     | 
| 
       224 
     | 
    
         
            -
             
     | 
| 
       225 
     | 
    
         
            -
             
     | 
| 
       226 
     | 
    
         
            -
                /// @dev see {IPoolComponent.applicationMatchesBundle}
         
     | 
| 
       227 
     | 
    
         
            -
                /// Override this function to implement any custom application verification 
         
     | 
| 
       228 
     | 
    
         
            -
                /// Default implementation always returns true
         
     | 
| 
       229 
     | 
    
         
            -
                function applicationMatchesBundle(
         
     | 
| 
       230 
     | 
    
         
            -
                    NftId applicationNftId, 
         
     | 
| 
       231 
     | 
    
         
            -
                    bytes memory applicationData,
         
     | 
| 
       232 
     | 
    
         
            -
                    NftId bundleNftId, 
         
     | 
| 
       233 
     | 
    
         
            -
                    bytes memory bundleFilter,
         
     | 
| 
       234 
     | 
    
         
            -
                    Amount collateralizationAmount
         
     | 
| 
       235 
     | 
    
         
            -
                )
         
     | 
| 
       236 
     | 
    
         
            -
                    public
         
     | 
| 
       237 
     | 
    
         
            -
                    view
         
     | 
| 
       238 
     | 
    
         
            -
                    virtual override
         
     | 
| 
       239 
     | 
    
         
            -
                    returns (bool isMatching)
         
     | 
| 
       240 
     | 
    
         
            -
                {
         
     | 
| 
       241 
     | 
    
         
            -
                    return true;
         
     | 
| 
       242 
     | 
    
         
            -
                }
         
     | 
| 
       243 
     | 
    
         
            -
             
     | 
| 
       244 
     | 
    
         
            -
             
     | 
| 
       245 
     | 
    
         
            -
                function getInitialPoolInfo()
         
     | 
| 
       246 
     | 
    
         
            -
                    public 
         
     | 
| 
       247 
     | 
    
         
            -
                    virtual 
         
     | 
| 
       248 
     | 
    
         
            -
                    view 
         
     | 
| 
       249 
     | 
    
         
            -
                    returns (IComponents.PoolInfo memory poolInfo)
         
     | 
| 
       250 
     | 
    
         
            -
                {
         
     | 
| 
       251 
     | 
    
         
            -
                    return IComponents.PoolInfo(
         
     | 
| 
       252 
     | 
    
         
            -
                        NftIdLib.zero(), // will be set when GIF registers the related product
         
     | 
| 
       253 
     | 
    
         
            -
                        PUBLIC_ROLE(), // bundleOwnerRole
         
     | 
| 
       254 
     | 
    
         
            -
                        AmountLib.max(), // maxCapitalAmount,
         
     | 
| 
       255 
     | 
    
         
            -
                        isNftInterceptor(), // isInterceptingBundleTransfers
         
     | 
| 
       256 
     | 
    
         
            -
                        false, // isExternallyManaged,
         
     | 
| 
       257 
     | 
    
         
            -
                        false, // isVerifyingApplications,
         
     | 
| 
       258 
     | 
    
         
            -
                        UFixedLib.toUFixed(1), // collateralizationLevel,
         
     | 
| 
       259 
     | 
    
         
            -
                        UFixedLib.toUFixed(1), // retentionLevel,
         
     | 
| 
       260 
     | 
    
         
            -
                        FeeLib.zero(), // initialPoolFee,
         
     | 
| 
       261 
     | 
    
         
            -
                        FeeLib.zero(), // initialStakingFee,
         
     | 
| 
       262 
     | 
    
         
            -
                        FeeLib.zero() // initialPerformanceFee,
         
     | 
| 
       263 
     | 
    
         
            -
                    );
         
     | 
| 
       264 
     | 
    
         
            -
                }
         
     | 
| 
       265 
     | 
    
         
            -
             
     | 
| 
       266 
     | 
    
         
            -
                // Internals
         
     | 
| 
       267 
     | 
    
         
            -
             
     | 
| 
      
 278 
     | 
    
         
            +
                /// @dev Creates a new bundle using the provided parameter values.
         
     | 
| 
       268 
279 
     | 
    
         
             
                function _createBundle(
         
     | 
| 
       269 
280 
     | 
    
         
             
                    address bundleOwner,
         
     | 
| 
       270 
281 
     | 
    
         
             
                    Fee memory fee,
         
     | 
| 
         @@ -285,6 +296,7 @@ abstract contract Pool is 
     | 
|
| 
       285 
296 
     | 
    
         
             
                    // TODO add logging
         
     | 
| 
       286 
297 
     | 
    
         
             
                }
         
     | 
| 
       287 
298 
     | 
    
         | 
| 
      
 299 
     | 
    
         
            +
             
     | 
| 
       288 
300 
     | 
    
         
             
                // TODO remove function once this is no longer used to produce contract locations on the fly ...
         
     | 
| 
       289 
301 
     | 
    
         
             
                function getContractLocation(bytes memory name) external pure returns (bytes32 hash) {
         
     | 
| 
       290 
302 
     | 
    
         
             
                    return keccak256(abi.encode(uint256(keccak256(name)) - 1)) & ~bytes32(uint256(0xff));
         
     | 
| 
         @@ -16,7 +16,7 @@ import {Amount, AmountLib} from "../type/Amount.sol"; 
     | 
|
| 
       16 
16 
     | 
    
         
             
            import {Fee, FeeLib} from "../type/Fee.sol";
         
     | 
| 
       17 
17 
     | 
    
         
             
            import {NftId, NftIdLib} from "../type/NftId.sol";
         
     | 
| 
       18 
18 
     | 
    
         
             
            import {ObjectType, POOL, BUNDLE, COMPONENT, INSTANCE, REGISTRY, STAKING} from "../type/ObjectType.sol";
         
     | 
| 
       19 
     | 
    
         
            -
            import { 
     | 
| 
      
 19 
     | 
    
         
            +
            import {RoleId, PUBLIC_ROLE} from "../type/RoleId.sol";
         
     | 
| 
       20 
20 
     | 
    
         
             
            import {Fee, FeeLib} from "../type/Fee.sol";
         
     | 
| 
       21 
21 
     | 
    
         
             
            import {Version, VersionLib} from "../type/Version.sol";
         
     | 
| 
       22 
22 
     | 
    
         
             
            import {KEEP_STATE, StateId} from "../type/StateId.sol";
         
     | 
| 
         @@ -84,10 +84,6 @@ contract PoolService is 
     | 
|
| 
       84 
84 
     | 
    
         
             
                    registerInterface(type(IPoolService).interfaceId);
         
     | 
| 
       85 
85 
     | 
    
         
             
                }
         
     | 
| 
       86 
86 
     | 
    
         | 
| 
       87 
     | 
    
         
            -
                function getDomain() public pure override returns(ObjectType) {
         
     | 
| 
       88 
     | 
    
         
            -
                    return POOL();
         
     | 
| 
       89 
     | 
    
         
            -
                }
         
     | 
| 
       90 
     | 
    
         
            -
             
     | 
| 
       91 
87 
     | 
    
         | 
| 
       92 
88 
     | 
    
         
             
                function setMaxCapitalAmount(Amount maxCapitalAmount)
         
     | 
| 
       93 
89 
     | 
    
         
             
                    external
         
     | 
| 
         @@ -230,7 +226,7 @@ contract PoolService is 
     | 
|
| 
       230 
226 
     | 
    
         
             
                ) 
         
     | 
| 
       231 
227 
     | 
    
         
             
                    external
         
     | 
| 
       232 
228 
     | 
    
         
             
                    virtual
         
     | 
| 
       233 
     | 
    
         
            -
                    restricted
         
     | 
| 
      
 229 
     | 
    
         
            +
                    restricted()
         
     | 
| 
       234 
230 
     | 
    
         
             
                {
         
     | 
| 
       235 
231 
     | 
    
         
             
                    IRegistry registry = getRegistry();
         
     | 
| 
       236 
232 
     | 
    
         
             
                    IRegistry.ObjectInfo memory bundleObjectInfo = registry.getObjectInfo(bundleNftId);
         
     | 
| 
         @@ -311,7 +307,7 @@ contract PoolService is 
     | 
|
| 
       311 
307 
     | 
    
         
             
                )
         
     | 
| 
       312 
308 
     | 
    
         
             
                    external
         
     | 
| 
       313 
309 
     | 
    
         
             
                    virtual
         
     | 
| 
       314 
     | 
    
         
            -
                    restricted
         
     | 
| 
      
 310 
     | 
    
         
            +
                    restricted()
         
     | 
| 
       315 
311 
     | 
    
         
             
                {
         
     | 
| 
       316 
312 
     | 
    
         
             
                    _bundleService.releaseCollateral(
         
     | 
| 
       317 
313 
     | 
    
         
             
                        instance, 
         
     | 
| 
         @@ -337,7 +333,7 @@ contract PoolService is 
     | 
|
| 
       337 
333 
     | 
    
         
             
                )
         
     | 
| 
       338 
334 
     | 
    
         
             
                    external
         
     | 
| 
       339 
335 
     | 
    
         
             
                    virtual
         
     | 
| 
       340 
     | 
    
         
            -
                    restricted
         
     | 
| 
      
 336 
     | 
    
         
            +
                    restricted()
         
     | 
| 
       341 
337 
     | 
    
         
             
                {
         
     | 
| 
       342 
338 
     | 
    
         
             
                    Amount remainingCollateralAmount = policyInfo.sumInsuredAmount - policyInfo.claimAmount;
         
     | 
| 
       343 
339 
     | 
    
         | 
| 
         @@ -450,4 +446,7 @@ contract PoolService is 
     | 
|
| 
       450 
446 
     | 
    
         
             
                    }
         
     | 
| 
       451 
447 
     | 
    
         
             
                }
         
     | 
| 
       452 
448 
     | 
    
         | 
| 
      
 449 
     | 
    
         
            +
                function _getDomain() internal pure override returns(ObjectType) {
         
     | 
| 
      
 450 
     | 
    
         
            +
                    return POOL();
         
     | 
| 
      
 451 
     | 
    
         
            +
                }
         
     | 
| 
       453 
452 
     | 
    
         
             
            }
         
     | 
| 
         @@ -80,11 +80,6 @@ contract ApplicationService is 
     | 
|
| 
       80 
80 
     | 
    
         
             
                }
         
     | 
| 
       81 
81 
     | 
    
         | 
| 
       82 
82 
     | 
    
         | 
| 
       83 
     | 
    
         
            -
                function getDomain() public pure override returns(ObjectType) {
         
     | 
| 
       84 
     | 
    
         
            -
                    return APPLICATION();
         
     | 
| 
       85 
     | 
    
         
            -
                }
         
     | 
| 
       86 
     | 
    
         
            -
             
     | 
| 
       87 
     | 
    
         
            -
             
     | 
| 
       88 
83 
     | 
    
         
             
                function _checkLinkedpplicationParameters(
         
     | 
| 
       89 
84 
     | 
    
         
             
                    InstanceReader instanceReader,
         
     | 
| 
       90 
85 
     | 
    
         
             
                    NftId productNftId,
         
     | 
| 
         @@ -251,4 +246,9 @@ contract ApplicationService is 
     | 
|
| 
       251 
246 
     | 
    
         
             
                }
         
     | 
| 
       252 
247 
     | 
    
         | 
| 
       253 
248 
     | 
    
         
             
                // internal functions
         
     | 
| 
      
 249 
     | 
    
         
            +
             
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
                function _getDomain() internal pure override returns(ObjectType) {
         
     | 
| 
      
 252 
     | 
    
         
            +
                    return APPLICATION();
         
     | 
| 
      
 253 
     | 
    
         
            +
                }
         
     | 
| 
       254 
254 
     | 
    
         
             
            }
         
     | 
| 
         @@ -0,0 +1,82 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            import {Amount, AmountLib} from "../type/Amount.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ClaimId} from "../type/ClaimId.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {InstanceLinkedComponent} from "../shared/InstanceLinkedComponent.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {Fee, FeeLib} from "../type/Fee.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {IRisk} from "../instance/module/IRisk.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {IApplicationService} from "./IApplicationService.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {IAuthorization} from "../authorization/IAuthorization.sol";
         
     | 
| 
      
 13 
     | 
    
         
            +
            import {IComponentService} from "../shared/IComponentService.sol";
         
     | 
| 
      
 14 
     | 
    
         
            +
            import {IPolicyService} from "./IPolicyService.sol";
         
     | 
| 
      
 15 
     | 
    
         
            +
            import {IProductService} from "./IProductService.sol";
         
     | 
| 
      
 16 
     | 
    
         
            +
            import {IClaimService} from "./IClaimService.sol";
         
     | 
| 
      
 17 
     | 
    
         
            +
            import {IPricingService} from "./IPricingService.sol";
         
     | 
| 
      
 18 
     | 
    
         
            +
            import {IProductComponent} from "./IProductComponent.sol";
         
     | 
| 
      
 19 
     | 
    
         
            +
            import {NftId, NftIdLib} from "../type/NftId.sol";
         
     | 
| 
      
 20 
     | 
    
         
            +
            import {Product} from "../product/Product.sol";
         
     | 
| 
      
 21 
     | 
    
         
            +
            import {PayoutId} from "../type/PayoutId.sol";
         
     | 
| 
      
 22 
     | 
    
         
            +
            import {COMPONENT, PRODUCT, APPLICATION, POLICY, CLAIM, PRICE } from "../type/ObjectType.sol";
         
     | 
| 
      
 23 
     | 
    
         
            +
            import {ReferralId} from "../type/Referral.sol";
         
     | 
| 
      
 24 
     | 
    
         
            +
            import {RiskId, RiskIdLib} from "../type/RiskId.sol";
         
     | 
| 
      
 25 
     | 
    
         
            +
            import {Seconds} from "../type/Seconds.sol";
         
     | 
| 
      
 26 
     | 
    
         
            +
            import {StateId} from "../type/StateId.sol";
         
     | 
| 
      
 27 
     | 
    
         
            +
            import {Timestamp} from "../type/Timestamp.sol";
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            import {TokenHandler} from "../shared/TokenHandler.sol";
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            import {InstanceReader} from "../instance/InstanceReader.sol";
         
     | 
| 
      
 32 
     | 
    
         
            +
            import {IPolicy} from "../instance/module/IPolicy.sol";
         
     | 
| 
      
 33 
     | 
    
         
            +
            import {IComponents} from "../instance/module/IComponents.sol";
         
     | 
| 
      
 34 
     | 
    
         
            +
            import {Pool} from "../pool/Pool.sol";
         
     | 
| 
      
 35 
     | 
    
         
            +
            import {Distribution} from "../distribution/Distribution.sol";
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            abstract contract BasicProduct is
         
     | 
| 
      
 38 
     | 
    
         
            +
                Product
         
     | 
| 
      
 39 
     | 
    
         
            +
            {
         
     | 
| 
      
 40 
     | 
    
         
            +
             
         
     | 
| 
      
 41 
     | 
    
         
            +
                function setFees(
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Fee memory productFee,
         
     | 
| 
      
 43 
     | 
    
         
            +
                    Fee memory processingFee
         
     | 
| 
      
 44 
     | 
    
         
            +
                )
         
     | 
| 
      
 45 
     | 
    
         
            +
                    external
         
     | 
| 
      
 46 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 47 
     | 
    
         
            +
                    onlyOwner()
         
     | 
| 
      
 48 
     | 
    
         
            +
                    restricted()
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                    _setFees(productFee, processingFee);
         
     | 
| 
      
 51 
     | 
    
         
            +
                }
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                function _initializeBasicProduct(
         
     | 
| 
      
 55 
     | 
    
         
            +
                    address registry,
         
     | 
| 
      
 56 
     | 
    
         
            +
                    NftId instanceNftId,
         
     | 
| 
      
 57 
     | 
    
         
            +
                    IAuthorization authorization,
         
     | 
| 
      
 58 
     | 
    
         
            +
                    address initialOwner,
         
     | 
| 
      
 59 
     | 
    
         
            +
                    string memory name,
         
     | 
| 
      
 60 
     | 
    
         
            +
                    address token,
         
     | 
| 
      
 61 
     | 
    
         
            +
                    bool isInterceptor,
         
     | 
| 
      
 62 
     | 
    
         
            +
                    address pool,
         
     | 
| 
      
 63 
     | 
    
         
            +
                    address distribution
         
     | 
| 
      
 64 
     | 
    
         
            +
                )
         
     | 
| 
      
 65 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 66 
     | 
    
         
            +
                    virtual
         
     | 
| 
      
 67 
     | 
    
         
            +
                    onlyInitializing()
         
     | 
| 
      
 68 
     | 
    
         
            +
                {
         
     | 
| 
      
 69 
     | 
    
         
            +
                    _initializeProduct(
         
     | 
| 
      
 70 
     | 
    
         
            +
                        registry, 
         
     | 
| 
      
 71 
     | 
    
         
            +
                        instanceNftId, 
         
     | 
| 
      
 72 
     | 
    
         
            +
                        authorization, 
         
     | 
| 
      
 73 
     | 
    
         
            +
                        initialOwner, 
         
     | 
| 
      
 74 
     | 
    
         
            +
                        name, 
         
     | 
| 
      
 75 
     | 
    
         
            +
                        token, 
         
     | 
| 
      
 76 
     | 
    
         
            +
                        isInterceptor, 
         
     | 
| 
      
 77 
     | 
    
         
            +
                        pool,
         
     | 
| 
      
 78 
     | 
    
         
            +
                        distribution,
         
     | 
| 
      
 79 
     | 
    
         
            +
                        "", //registryData, 
         
     | 
| 
      
 80 
     | 
    
         
            +
                        ""); // componentData
         
     | 
| 
      
 81 
     | 
    
         
            +
                }
         
     | 
| 
      
 82 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Authorization} from "../authorization/Authorization.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {BasicProduct} from "./BasicProduct.sol"; 
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {PRODUCT} from "../type/ObjectType.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {IAccess} from "../authorization/IAccess.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {PUBLIC_ROLE} from "../../contracts/type/RoleId.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {RoleId} from "../type/RoleId.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            contract BasicProductAuthorization
         
     | 
| 
      
 13 
     | 
    
         
            +
                 is Authorization
         
     | 
| 
      
 14 
     | 
    
         
            +
            {
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                 constructor(string memory componentName)
         
     | 
| 
      
 17 
     | 
    
         
            +
                      Authorization(componentName)
         
     | 
| 
      
 18 
     | 
    
         
            +
                 {}
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                 function _setupTargets()
         
     | 
| 
      
 21 
     | 
    
         
            +
                      internal
         
     | 
| 
      
 22 
     | 
    
         
            +
                      virtual override
         
     | 
| 
      
 23 
     | 
    
         
            +
                 {
         
     | 
| 
      
 24 
     | 
    
         
            +
                      // basic component target
         
     | 
| 
      
 25 
     | 
    
         
            +
                      _addComponentTargetWithRole(PRODUCT()); 
         
     | 
| 
      
 26 
     | 
    
         
            +
                 }
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
                 function _setupTargetAuthorizations()
         
     | 
| 
      
 30 
     | 
    
         
            +
                      internal
         
     | 
| 
      
 31 
     | 
    
         
            +
                      virtual override
         
     | 
| 
      
 32 
     | 
    
         
            +
                 {
         
     | 
| 
      
 33 
     | 
    
         
            +
                      IAccess.FunctionInfo[] storage functions;
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                      // authorize public role (open access to any account, only allows to lock target)
         
     | 
| 
      
 36 
     | 
    
         
            +
                      functions = _authorizeForTarget(getTargetName(), PUBLIC_ROLE());
         
     | 
| 
      
 37 
     | 
    
         
            +
                      _authorize(functions, BasicProduct.setFees.selector, "setFees");
         
     | 
| 
      
 38 
     | 
    
         
            +
                 }
         
     | 
| 
      
 39 
     | 
    
         
            +
            }
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
         @@ -73,11 +73,6 @@ contract ClaimService is 
     | 
|
| 
       73 
73 
     | 
    
         
             
                    registerInterface(type(IClaimService).interfaceId);
         
     | 
| 
       74 
74 
     | 
    
         
             
                }
         
     | 
| 
       75 
75 
     | 
    
         | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
       77 
     | 
    
         
            -
                function getDomain() public pure override returns(ObjectType) {
         
     | 
| 
       78 
     | 
    
         
            -
                    return CLAIM();
         
     | 
| 
       79 
     | 
    
         
            -
                }
         
     | 
| 
       80 
     | 
    
         
            -
             
     | 
| 
       81 
76 
     | 
    
         
             
                function submit(
         
     | 
| 
       82 
77 
     | 
    
         
             
                    NftId policyNftId, 
         
     | 
| 
       83 
78 
     | 
    
         
             
                    Amount claimAmount,
         
     | 
| 
         @@ -439,4 +434,9 @@ contract ClaimService is 
     | 
|
| 
       439 
434 
     | 
    
         
             
                    // get claim info
         
     | 
| 
       440 
435 
     | 
    
         
             
                    claimInfo = instanceReader.getClaimInfo(policyNftId, claimId);
         
     | 
| 
       441 
436 
     | 
    
         
             
                }
         
     | 
| 
      
 437 
     | 
    
         
            +
             
     | 
| 
      
 438 
     | 
    
         
            +
             
     | 
| 
      
 439 
     | 
    
         
            +
                function _getDomain() internal pure override returns(ObjectType) {
         
     | 
| 
      
 440 
     | 
    
         
            +
                    return CLAIM();
         
     | 
| 
      
 441 
     | 
    
         
            +
                }
         
     | 
| 
       442 
442 
     | 
    
         
             
            }
         
     | 
| 
         @@ -10,12 +10,9 @@ import {ReferralId} from "../type/Referral.sol"; 
     | 
|
| 
       10 
10 
     | 
    
         
             
            import {RiskId} from "../type/RiskId.sol";
         
     | 
| 
       11 
11 
     | 
    
         
             
            import {Seconds} from "../type/Seconds.sol";
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
     | 
    
         
            -
            interface IProductComponent is 
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
                    Fee memory productFee,
         
     | 
| 
       17 
     | 
    
         
            -
                    Fee memory processingFee
         
     | 
| 
       18 
     | 
    
         
            -
                ) external;
         
     | 
| 
      
 13 
     | 
    
         
            +
            interface IProductComponent is
         
     | 
| 
      
 14 
     | 
    
         
            +
                IInstanceLinkedComponent
         
     | 
| 
      
 15 
     | 
    
         
            +
            {
         
     | 
| 
       19 
16 
     | 
    
         | 
| 
       20 
17 
     | 
    
         
             
                function calculatePremium(
         
     | 
| 
       21 
18 
     | 
    
         
             
                    Amount sumInsuredAmount,
         
     | 
| 
         @@ -33,10 +30,10 @@ interface IProductComponent is IInstanceLinkedComponent { 
     | 
|
| 
       33 
30 
     | 
    
         
             
                    bytes memory applicationData
         
     | 
| 
       34 
31 
     | 
    
         
             
                ) external view returns (Amount netPremiumAmount);    
         
     | 
| 
       35 
32 
     | 
    
         | 
| 
      
 33 
     | 
    
         
            +
                function getPoolNftId() external view returns (NftId poolNftId);
         
     | 
| 
      
 34 
     | 
    
         
            +
                function getDistributionNftId() external view returns (NftId distributionNftId);
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
       36 
36 
     | 
    
         | 
| 
       37 
37 
     | 
    
         
             
                /// @dev returns initial pool specific infos for this pool
         
     | 
| 
       38 
38 
     | 
    
         
             
                function getInitialProductInfo() external view returns (IComponents.ProductInfo memory info);
         
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
     | 
    
         
            -
                function getPoolNftId() external view returns (NftId poolNftId);
         
     | 
| 
       41 
     | 
    
         
            -
                function getDistributionNftId() external view returns (NftId distributionNftId);
         
     | 
| 
       42 
39 
     | 
    
         
             
            }
         
     | 
| 
         @@ -85,11 +85,6 @@ contract PolicyService is 
     | 
|
| 
       85 
85 
     | 
    
         
             
                }
         
     | 
| 
       86 
86 
     | 
    
         | 
| 
       87 
87 
     | 
    
         | 
| 
       88 
     | 
    
         
            -
                function getDomain() public pure override returns(ObjectType) {
         
     | 
| 
       89 
     | 
    
         
            -
                    return POLICY();
         
     | 
| 
       90 
     | 
    
         
            -
                }
         
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
88 
     | 
    
         
             
                function _getAndVerifyInstanceAndProduct() internal view returns (Product product) {
         
     | 
| 
       94 
89 
     | 
    
         
             
                    IRegistry.ObjectInfo memory productInfo;
         
     | 
| 
       95 
90 
     | 
    
         
             
                    (, productInfo,) = _getAndVerifyActiveComponent(PRODUCT());
         
     | 
| 
         @@ -472,4 +467,9 @@ contract PolicyService is 
     | 
|
| 
       472 
467 
     | 
    
         
             
                    poolWallet = instanceReader.getComponentInfo(productInfo.poolNftId).wallet;
         
     | 
| 
       473 
468 
     | 
    
         
             
                    productWallet = instanceReader.getComponentInfo(productNftId).wallet;
         
     | 
| 
       474 
469 
     | 
    
         
             
                }
         
     | 
| 
      
 470 
     | 
    
         
            +
             
     | 
| 
      
 471 
     | 
    
         
            +
             
     | 
| 
      
 472 
     | 
    
         
            +
                function _getDomain() internal pure override returns(ObjectType) {
         
     | 
| 
      
 473 
     | 
    
         
            +
                    return POLICY();
         
     | 
| 
      
 474 
     | 
    
         
            +
                }
         
     | 
| 
       475 
475 
     | 
    
         
             
            }
         
     | 
| 
         @@ -56,11 +56,6 @@ contract PricingService is 
     | 
|
| 
       56 
56 
     | 
    
         
             
                    _distributionService = IDistributionService(_getServiceAddress(DISTRIBUTION()));
         
     | 
| 
       57 
57 
     | 
    
         
             
                }
         
     | 
| 
       58 
58 
     | 
    
         | 
| 
       59 
     | 
    
         
            -
             
     | 
| 
       60 
     | 
    
         
            -
                function getDomain() public pure override returns(ObjectType) {
         
     | 
| 
       61 
     | 
    
         
            -
                    return PRICE();
         
     | 
| 
       62 
     | 
    
         
            -
                }
         
     | 
| 
       63 
     | 
    
         
            -
             
     | 
| 
       64 
59 
     | 
    
         
             
                /// @dev calculates the premium amount for the specified attributes
         
     | 
| 
       65 
60 
     | 
    
         
             
                /// also returns the various fee components involved with creating a policy
         
     | 
| 
       66 
61 
     | 
    
         
             
                function calculatePremium(
         
     | 
| 
         @@ -298,4 +293,8 @@ contract PricingService is 
     | 
|
| 
       298 
293 
     | 
    
         
             
                    premiumWithTargetWalletAmounts = premium;
         
     | 
| 
       299 
294 
     | 
    
         
             
                }
         
     | 
| 
       300 
295 
     | 
    
         | 
| 
      
 296 
     | 
    
         
            +
             
     | 
| 
      
 297 
     | 
    
         
            +
                function _getDomain() internal pure override returns(ObjectType) {
         
     | 
| 
      
 298 
     | 
    
         
            +
                    return PRICE();
         
     | 
| 
      
 299 
     | 
    
         
            +
                }
         
     | 
| 
       301 
300 
     | 
    
         
             
            }
         
     |