@etherisc/gif-next 0.0.2-e37834a-021 → 0.0.2-e38b7e6-931
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 +171 -2
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +282 -2
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +313 -72
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +234 -3
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -25
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +24 -57
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +5 -55
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +378 -127
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +391 -107
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +788 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +813 -1184
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/IService.sol/IService.json → IInstanceService.sol/IInstanceService.json} +244 -18
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1762 -1332
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1047 -0
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1422 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +963 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +460 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +285 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +240 -11
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -13
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +37 -245
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1121 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +436 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +304 -39
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +424 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +720 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +93 -16
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +771 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +95 -80
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +89 -227
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1246 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +492 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +287 -111
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +424 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +258 -347
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +424 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +47 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +157 -71
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +339 -31
- 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 +131 -212
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +382 -72
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +68 -77
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +530 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +397 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- 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/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/component/ComponentModule.sol/ComponentModule.json → shared/INftOwnable.sol/INftOwnable.json} +67 -57
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +80 -3
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +90 -58
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +32 -6
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +21 -16
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +120 -6
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/RegisterableUpgradable.sol/RegisterableUpgradable.json} +92 -30
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/Service.sol/Service.json} +100 -88
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- 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/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +120 -6
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +155 -27
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +18 -2
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +4 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +15 -2
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/BaseComponent.sol +107 -18
- package/contracts/components/Distribution.sol +24 -25
- package/contracts/components/IBaseComponent.sol +20 -4
- package/contracts/components/IDistributionComponent.sol +2 -4
- package/contracts/components/IPoolComponent.sol +5 -3
- package/contracts/components/IProductComponent.sol +4 -6
- package/contracts/components/Pool.sol +58 -46
- package/contracts/components/Product.sol +71 -75
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
- package/contracts/instance/BundleManager.sol +129 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +54 -48
- package/contracts/instance/IInstanceBase.sol +25 -0
- package/contracts/instance/IInstanceService.sol +40 -0
- package/contracts/instance/Instance.sol +245 -68
- package/contracts/instance/InstanceAccessManager.sol +303 -0
- package/contracts/instance/InstanceBase.sol +39 -0
- package/contracts/instance/InstanceReader.sol +315 -0
- package/contracts/instance/InstanceService.sol +345 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +101 -0
- package/contracts/instance/base/ComponentServiceBase.sol +109 -20
- package/contracts/instance/base/IInstanceBase.sol +0 -2
- package/contracts/instance/base/IKeyValueStore.sol +13 -14
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +49 -38
- package/contracts/instance/base/Lifecycle.sol +1 -1
- package/contracts/instance/module/IAccess.sol +48 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +46 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/BundleService.sol +294 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +79 -18
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IDistributionService.sol +1 -1
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +7 -24
- package/contracts/instance/service/IProductService.sol +9 -76
- package/contracts/instance/service/PolicyService.sol +539 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +101 -108
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +130 -431
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +41 -26
- package/contracts/registry/IRegistry.sol +48 -30
- package/contracts/registry/IRegistryService.sol +53 -24
- package/contracts/registry/Registry.sol +212 -306
- package/contracts/registry/RegistryAccessManager.sol +210 -0
- package/contracts/registry/RegistryService.sol +151 -206
- package/contracts/registry/RegistryServiceManager.sol +26 -16
- package/contracts/registry/ReleaseManager.sol +342 -0
- package/contracts/registry/TokenRegistry.sol +110 -0
- package/contracts/shared/ERC165.sol +7 -3
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +3 -10
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/NftOwnable.sol +85 -38
- package/contracts/shared/ProxyManager.sol +4 -13
- package/contracts/shared/Registerable.sol +15 -42
- package/contracts/shared/RegisterableUpgradable.sol +16 -0
- package/contracts/shared/Service.sol +58 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +2 -2
- package/contracts/shared/Versionable.sol +3 -3
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +6 -7
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +3 -3
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +35 -14
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RoleId.sol +61 -9
- package/contracts/types/StateId.sol +5 -1
- package/contracts/types/Timestamp.sol +7 -3
- package/contracts/types/UFixed.sol +128 -12
- package/contracts/types/Version.sol +4 -1
- package/package.json +4 -3
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.json +0 -10
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -164
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -164
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -638
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -638
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -690
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -457
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -445
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -602
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -632
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -89
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -43
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -71
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -95
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -84
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -131
- package/contracts/instance/service/ComponentOwnerService.sol +0 -272
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/registry/IChainNft.sol +0 -22
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestDistribution.sol +0 -22
- package/contracts/test/TestPool.sol +0 -27
- package/contracts/test/TestProduct.sol +0 -74
- package/contracts/types/ReferralId.sol +0 -48
@@ -3,35 +3,18 @@ pragma solidity ^0.8.19;
|
|
3
3
|
|
4
4
|
import {NftId} from "../../types/NftId.sol";
|
5
5
|
import {Fee} from "../../types/Fee.sol";
|
6
|
-
import {
|
6
|
+
import {StateId} from "../../types/StateId.sol";
|
7
|
+
import {IService} from "../../shared/IService.sol";
|
8
|
+
import {IBundle} from "../module/IBundle.sol";
|
9
|
+
import {IInstance} from "../../instance/IInstance.sol";
|
7
10
|
|
8
11
|
interface IPoolService is IService {
|
12
|
+
|
13
|
+
function register(address poolAddress) external returns(NftId);
|
14
|
+
|
9
15
|
function setFees(
|
10
16
|
Fee memory poolFee,
|
11
17
|
Fee memory stakingFee,
|
12
18
|
Fee memory performanceFee
|
13
19
|
) external;
|
14
|
-
|
15
|
-
function createBundle(
|
16
|
-
address owner,
|
17
|
-
Fee memory fee,
|
18
|
-
uint256 amount,
|
19
|
-
uint256 lifetime,
|
20
|
-
bytes calldata filter
|
21
|
-
) external returns(NftId bundleNftId);
|
22
|
-
|
23
|
-
function setBundleFee(
|
24
|
-
NftId bundleNftId,
|
25
|
-
Fee memory fee
|
26
|
-
) external;
|
27
|
-
|
28
|
-
// function fundBundle(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
|
29
|
-
|
30
|
-
// function defundBundle(NftId bundleNftId, uint256 amount) external returns(uint256 netAmount);
|
31
|
-
|
32
|
-
// function lockBundle(NftId bundleNftId) external;
|
33
|
-
|
34
|
-
// function unlockBundle(NftId bundleNftId) external;
|
35
|
-
|
36
|
-
// function closeBundle(NftId bundleNftId) external;
|
37
20
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
2
|
pragma solidity ^0.8.19;
|
3
3
|
|
4
|
-
import {IRisk} from "../module/
|
5
|
-
import {IService} from "
|
4
|
+
import {IRisk} from "../module/IRisk.sol";
|
5
|
+
import {IService} from "../../shared/IService.sol";
|
6
6
|
|
7
7
|
import {NftId} from "../../types/NftId.sol";
|
8
|
-
import {ReferralId} from "../../types/
|
8
|
+
import {ReferralId} from "../../types/Referral.sol";
|
9
9
|
import {RiskId} from "../../types/RiskId.sol";
|
10
10
|
import {StateId} from "../../types/StateId.sol";
|
11
11
|
import {Timestamp} from "../../types/Timestamp.sol";
|
@@ -13,6 +13,9 @@ import {UFixed} from "../../types/UFixed.sol";
|
|
13
13
|
import {Fee} from "../../types/Fee.sol";
|
14
14
|
|
15
15
|
interface IProductService is IService {
|
16
|
+
|
17
|
+
function register(address productAddress) external returns(NftId);
|
18
|
+
|
16
19
|
function setFees(
|
17
20
|
Fee memory productFee,
|
18
21
|
Fee memory processingFee
|
@@ -24,84 +27,14 @@ interface IProductService is IService {
|
|
24
27
|
) external;
|
25
28
|
|
26
29
|
|
27
|
-
function
|
30
|
+
function updateRisk(
|
28
31
|
RiskId riskId,
|
29
|
-
|
32
|
+
bytes memory data
|
30
33
|
) external;
|
31
34
|
|
32
35
|
|
33
36
|
function updateRiskState(
|
34
37
|
RiskId riskId,
|
35
|
-
StateId
|
38
|
+
StateId newState
|
36
39
|
) external;
|
37
|
-
|
38
|
-
|
39
|
-
function calculatePremium(
|
40
|
-
RiskId riskId,
|
41
|
-
uint256 sumInsuredAmount,
|
42
|
-
uint256 lifetime,
|
43
|
-
bytes memory applicationData,
|
44
|
-
NftId bundleNftId,
|
45
|
-
ReferralId referralId
|
46
|
-
)
|
47
|
-
external
|
48
|
-
view
|
49
|
-
returns (
|
50
|
-
uint256 premiumAmount,
|
51
|
-
uint256 productFeeAmount,
|
52
|
-
uint256 poolFeeAmount,
|
53
|
-
uint256 bundleFeeAmount,
|
54
|
-
uint256 distributionFeeAmount
|
55
|
-
);
|
56
|
-
|
57
|
-
|
58
|
-
function createApplication(
|
59
|
-
address applicationOwner,
|
60
|
-
RiskId riskId,
|
61
|
-
uint256 sumInsuredAmount,
|
62
|
-
uint256 lifetime,
|
63
|
-
bytes memory applicationData,
|
64
|
-
NftId bundleNftId,
|
65
|
-
ReferralId referralId
|
66
|
-
) external returns (NftId nftId);
|
67
|
-
|
68
|
-
/**
|
69
|
-
* @dev revokes the application represented by {policyNftId}.
|
70
|
-
* an application can only be revoked in applied state.
|
71
|
-
* only the application holder may revoke an application.
|
72
|
-
*/
|
73
|
-
function revoke(NftId policyNftId) external;
|
74
|
-
|
75
|
-
/**
|
76
|
-
* @dev underwrites the policy represented by {policyNftId}.
|
77
|
-
* optionally collects premiums and activates the policy.
|
78
|
-
* - premium payment is only attempted if requirePremiumPayment is set to true
|
79
|
-
* - activation is only done if activateAt is a non-zero timestamp
|
80
|
-
*/
|
81
|
-
function underwrite(
|
82
|
-
NftId policyNftId,
|
83
|
-
bool requirePremiumPayment,
|
84
|
-
Timestamp activateAt
|
85
|
-
) external;
|
86
|
-
|
87
|
-
// function decline(uint256 nftId) external;
|
88
|
-
// function expire(uint256 nftId) external;
|
89
|
-
|
90
|
-
function collectPremium(NftId policyNftId, Timestamp activateAt) external;
|
91
|
-
|
92
|
-
function activate(NftId policyNftId, Timestamp activateAt) external;
|
93
|
-
|
94
|
-
|
95
|
-
function close(NftId nftId) external;
|
96
|
-
|
97
|
-
// function createClaim(uint256 nftId, uint256 claimAmount) external;
|
98
|
-
// function confirmClaim(uint256 nftId, uint256 claimId, uint256 claimAmount) external;
|
99
|
-
// function declineClaim(uint256 nftId, uint256 claimId) external;
|
100
|
-
// function closeClaim(uint256 nftId, uint256 claimId) external;
|
101
|
-
|
102
|
-
function calculateRequiredCollateral(
|
103
|
-
UFixed collateralizationLevel,
|
104
|
-
uint256 sumInsuredAmount
|
105
|
-
) external pure returns(uint256 collateralAmount);
|
106
|
-
|
107
40
|
}
|
@@ -0,0 +1,539 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {IRegistry} from "../../registry/IRegistry.sol";
|
5
|
+
import {IProductComponent} from "../../components/IProductComponent.sol";
|
6
|
+
import {Product} from "../../components/Product.sol";
|
7
|
+
import {IBaseComponent} from "../../components/IBaseComponent.sol";
|
8
|
+
import {IPoolComponent} from "../../components/IPoolComponent.sol";
|
9
|
+
import {IDistributionComponent} from "../../components/IDistributionComponent.sol";
|
10
|
+
import {IInstance} from "../IInstance.sol";
|
11
|
+
import {IPolicy} from "../module/IPolicy.sol";
|
12
|
+
import {IRisk} from "../module/IRisk.sol";
|
13
|
+
import {IBundle} from "../module/IBundle.sol";
|
14
|
+
import {IProductService} from "./IProductService.sol";
|
15
|
+
import {ITreasury} from "../module/ITreasury.sol";
|
16
|
+
import {ISetup} from "../module/ISetup.sol";
|
17
|
+
|
18
|
+
import {TokenHandler} from "../../shared/TokenHandler.sol";
|
19
|
+
|
20
|
+
import {IVersionable} from "../../shared/IVersionable.sol";
|
21
|
+
import {Versionable} from "../../shared/Versionable.sol";
|
22
|
+
|
23
|
+
import {Timestamp, TimestampLib, zeroTimestamp} from "../../types/Timestamp.sol";
|
24
|
+
import {UFixed, UFixedLib} from "../../types/UFixed.sol";
|
25
|
+
import {Blocknumber, blockNumber} from "../../types/Blocknumber.sol";
|
26
|
+
import {ObjectType, INSTANCE, PRODUCT, POOL, POLICY, BUNDLE} from "../../types/ObjectType.sol";
|
27
|
+
import {APPLIED, UNDERWRITTEN, ACTIVE, KEEP_STATE, CLOSED} from "../../types/StateId.sol";
|
28
|
+
import {NftId, NftIdLib, zeroNftId} from "../../types/NftId.sol";
|
29
|
+
import {Fee, FeeLib} from "../../types/Fee.sol";
|
30
|
+
import {ReferralId} from "../../types/Referral.sol";
|
31
|
+
import {RiskId} from "../../types/RiskId.sol";
|
32
|
+
import {StateId} from "../../types/StateId.sol";
|
33
|
+
import {Version, VersionLib} from "../../types/Version.sol";
|
34
|
+
//import {RoleId, PRODUCT_OWNER_ROLE} from "../../types/RoleId.sol";
|
35
|
+
|
36
|
+
import {IService} from "../../shared/IService.sol";
|
37
|
+
import {Service} from "../../shared/Service.sol";
|
38
|
+
import {ComponentServiceBase} from "../base/ComponentServiceBase.sol";
|
39
|
+
import {IPolicyService} from "./IPolicyService.sol";
|
40
|
+
import {InstanceReader} from "../InstanceReader.sol";
|
41
|
+
import {IPoolService} from "./IPoolService.sol";
|
42
|
+
import {IBundleService} from "./IBundleService.sol";
|
43
|
+
|
44
|
+
|
45
|
+
contract PolicyService is ComponentServiceBase, IPolicyService {
|
46
|
+
using NftIdLib for NftId;
|
47
|
+
using TimestampLib for Timestamp;
|
48
|
+
|
49
|
+
IPoolService internal _poolService;
|
50
|
+
IBundleService internal _bundleService;
|
51
|
+
|
52
|
+
event LogProductServiceSender(address sender);
|
53
|
+
|
54
|
+
function _initialize(
|
55
|
+
address owner,
|
56
|
+
bytes memory data
|
57
|
+
)
|
58
|
+
internal
|
59
|
+
initializer
|
60
|
+
virtual override
|
61
|
+
{
|
62
|
+
address registryAddress;
|
63
|
+
address initialOwner;
|
64
|
+
(registryAddress, initialOwner) = abi.decode(data, (address, address));
|
65
|
+
|
66
|
+
_initializeService(registryAddress, owner);
|
67
|
+
|
68
|
+
_poolService = IPoolService(_registry.getServiceAddress(POOL(), getMajorVersion()));
|
69
|
+
_bundleService = IBundleService(_registry.getServiceAddress(BUNDLE(), getMajorVersion()));
|
70
|
+
|
71
|
+
_registerInterface(type(IPolicyService).interfaceId);
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
function getDomain() public pure override(IService, Service) returns(ObjectType) {
|
76
|
+
return POLICY();
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
function _getAndVerifyInstanceAndProduct() internal view returns (Product product) {
|
81
|
+
IRegistry.ObjectInfo memory productInfo;
|
82
|
+
(productInfo,) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
83
|
+
product = Product(productInfo.objectAddress);
|
84
|
+
}
|
85
|
+
// TODO: no access restrictions
|
86
|
+
function calculatePremium(
|
87
|
+
RiskId riskId,
|
88
|
+
uint256 sumInsuredAmount,
|
89
|
+
uint256 lifetime,
|
90
|
+
bytes memory applicationData,
|
91
|
+
NftId bundleNftId,
|
92
|
+
ReferralId referralId
|
93
|
+
)
|
94
|
+
public
|
95
|
+
view
|
96
|
+
override
|
97
|
+
returns (
|
98
|
+
uint256 premiumAmount,
|
99
|
+
uint256 productFeeAmount,
|
100
|
+
uint256 poolFeeAmount,
|
101
|
+
uint256 bundleFeeAmount,
|
102
|
+
uint256 distributionFeeAmount
|
103
|
+
)
|
104
|
+
{
|
105
|
+
Product product = _getAndVerifyInstanceAndProduct();
|
106
|
+
uint256 netPremiumAmount = product.calculateNetPremium(
|
107
|
+
sumInsuredAmount,
|
108
|
+
riskId,
|
109
|
+
lifetime,
|
110
|
+
applicationData
|
111
|
+
);
|
112
|
+
|
113
|
+
(
|
114
|
+
productFeeAmount,
|
115
|
+
poolFeeAmount,
|
116
|
+
bundleFeeAmount,
|
117
|
+
distributionFeeAmount
|
118
|
+
) = _calculateFeeAmounts(
|
119
|
+
netPremiumAmount,
|
120
|
+
product,
|
121
|
+
bundleNftId,
|
122
|
+
referralId
|
123
|
+
);
|
124
|
+
|
125
|
+
premiumAmount = netPremiumAmount + productFeeAmount;
|
126
|
+
premiumAmount += poolFeeAmount + bundleFeeAmount;
|
127
|
+
premiumAmount += distributionFeeAmount;
|
128
|
+
}
|
129
|
+
|
130
|
+
function _calculateFeeAmounts(
|
131
|
+
uint256 netPremiumAmount,
|
132
|
+
Product product,
|
133
|
+
NftId bundleNftId,
|
134
|
+
ReferralId referralId
|
135
|
+
)
|
136
|
+
internal
|
137
|
+
view
|
138
|
+
returns (
|
139
|
+
uint256 productFeeAmount,
|
140
|
+
uint256 poolFeeAmount,
|
141
|
+
uint256 bundleFeeAmount,
|
142
|
+
uint256 distributionFeeAmount
|
143
|
+
)
|
144
|
+
{
|
145
|
+
InstanceReader instanceReader;
|
146
|
+
{
|
147
|
+
IInstance instance = product.getInstance();
|
148
|
+
instanceReader = instance.getInstanceReader();
|
149
|
+
}
|
150
|
+
|
151
|
+
NftId poolNftId = product.getPoolNftId();
|
152
|
+
IBundle.BundleInfo memory bundleInfo = instanceReader.getBundleInfo(bundleNftId);
|
153
|
+
require(bundleInfo.poolNftId == poolNftId,"ERROR:PRS-035:BUNDLE_POOL_MISMATCH");
|
154
|
+
|
155
|
+
{
|
156
|
+
ISetup.ProductSetupInfo memory productSetupInfo = instanceReader.getProductSetupInfo(product.getProductNftId());
|
157
|
+
(productFeeAmount,) = FeeLib.calculateFee(productSetupInfo.productFee, netPremiumAmount);
|
158
|
+
}
|
159
|
+
{
|
160
|
+
ISetup.PoolSetupInfo memory poolSetupInfo = instanceReader.getPoolSetupInfo(poolNftId);
|
161
|
+
(poolFeeAmount,) = FeeLib.calculateFee(poolSetupInfo.poolFee, netPremiumAmount);
|
162
|
+
}
|
163
|
+
{
|
164
|
+
NftId distributionNftId = product.getDistributionNftId();
|
165
|
+
ISetup.DistributionSetupInfo memory distributionSetupInfo = instanceReader.getDistributionSetupInfo(distributionNftId);
|
166
|
+
(distributionFeeAmount,) = FeeLib.calculateFee(distributionSetupInfo.distributionFee, netPremiumAmount);
|
167
|
+
}
|
168
|
+
|
169
|
+
(bundleFeeAmount,) = FeeLib.calculateFee(bundleInfo.fee, netPremiumAmount);
|
170
|
+
}
|
171
|
+
|
172
|
+
|
173
|
+
function createApplication(
|
174
|
+
address applicationOwner,
|
175
|
+
RiskId riskId,
|
176
|
+
uint256 sumInsuredAmount,
|
177
|
+
uint256 lifetime,
|
178
|
+
bytes memory applicationData,
|
179
|
+
NftId bundleNftId,
|
180
|
+
ReferralId referralId
|
181
|
+
) external override returns (NftId policyNftId) {
|
182
|
+
(IRegistry.ObjectInfo memory productInfo, IInstance instance) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
183
|
+
// TODO: add validations (see create bundle in pool service)
|
184
|
+
|
185
|
+
policyNftId = getRegistryService().registerPolicy(
|
186
|
+
IRegistry.ObjectInfo(
|
187
|
+
zeroNftId(),
|
188
|
+
productInfo.nftId,
|
189
|
+
POLICY(),
|
190
|
+
false, // intercepting property for policies is defined on product
|
191
|
+
address(0),
|
192
|
+
applicationOwner,
|
193
|
+
""
|
194
|
+
)
|
195
|
+
);
|
196
|
+
|
197
|
+
(uint256 premiumAmount,,,,) = calculatePremium(
|
198
|
+
riskId,
|
199
|
+
sumInsuredAmount,
|
200
|
+
lifetime,
|
201
|
+
applicationData,
|
202
|
+
bundleNftId,
|
203
|
+
referralId
|
204
|
+
);
|
205
|
+
|
206
|
+
IPolicy.PolicyInfo memory policyInfo = IPolicy.PolicyInfo(
|
207
|
+
productInfo.nftId,
|
208
|
+
bundleNftId,
|
209
|
+
referralId,
|
210
|
+
riskId,
|
211
|
+
sumInsuredAmount,
|
212
|
+
premiumAmount,
|
213
|
+
0,
|
214
|
+
lifetime,
|
215
|
+
applicationData,
|
216
|
+
"",
|
217
|
+
0,
|
218
|
+
0,
|
219
|
+
0,
|
220
|
+
zeroTimestamp(),
|
221
|
+
zeroTimestamp(),
|
222
|
+
zeroTimestamp()
|
223
|
+
);
|
224
|
+
|
225
|
+
instance.createPolicy(policyNftId, policyInfo);
|
226
|
+
instance.updatePolicyState(policyNftId, APPLIED());
|
227
|
+
|
228
|
+
// TODO: add logging
|
229
|
+
}
|
230
|
+
|
231
|
+
function _getAndVerifyUnderwritingSetup(
|
232
|
+
IInstance instance,
|
233
|
+
InstanceReader instanceReader,
|
234
|
+
IPolicy.PolicyInfo memory policyInfo,
|
235
|
+
ISetup.ProductSetupInfo memory productSetupInfo
|
236
|
+
)
|
237
|
+
internal
|
238
|
+
view
|
239
|
+
returns (
|
240
|
+
NftId bundleNftId,
|
241
|
+
IBundle.BundleInfo memory bundleInfo,
|
242
|
+
uint256 collateralAmount
|
243
|
+
)
|
244
|
+
{
|
245
|
+
// check match between policy and bundle (via pool)
|
246
|
+
bundleNftId = policyInfo.bundleNftId;
|
247
|
+
bundleInfo = instanceReader.getBundleInfo(bundleNftId);
|
248
|
+
require(bundleInfo.poolNftId == productSetupInfo.poolNftId, "POLICY_BUNDLE_MISMATCH");
|
249
|
+
|
250
|
+
// calculate required collateral
|
251
|
+
NftId poolNftId = productSetupInfo.poolNftId;
|
252
|
+
ISetup.PoolSetupInfo memory poolInfo = instanceReader.getPoolSetupInfo(poolNftId);
|
253
|
+
|
254
|
+
// obtain remaining return values
|
255
|
+
collateralAmount = calculateRequiredCollateral(poolInfo.collateralizationLevel, policyInfo.sumInsuredAmount);
|
256
|
+
}
|
257
|
+
|
258
|
+
function _lockCollateralInBundle(
|
259
|
+
IInstance instance,
|
260
|
+
NftId bundleNftId,
|
261
|
+
IBundle.BundleInfo memory bundleInfo,
|
262
|
+
NftId policyNftId,
|
263
|
+
uint256 collateralAmount
|
264
|
+
)
|
265
|
+
internal
|
266
|
+
returns (IBundle.BundleInfo memory)
|
267
|
+
{
|
268
|
+
bundleInfo.lockedAmount += collateralAmount;
|
269
|
+
// TODO: track policy associated to bundle in bundlemanager (tbd) and how much is locked for it
|
270
|
+
return bundleInfo;
|
271
|
+
}
|
272
|
+
|
273
|
+
function _underwriteByPool(
|
274
|
+
NftId poolNftId,
|
275
|
+
NftId policyNftId,
|
276
|
+
IPolicy.PolicyInfo memory policyInfo,
|
277
|
+
bytes memory bundleFilter,
|
278
|
+
uint256 collateralAmount
|
279
|
+
)
|
280
|
+
internal
|
281
|
+
{
|
282
|
+
address poolAddress = getRegistry().getObjectInfo(poolNftId).objectAddress;
|
283
|
+
IPoolComponent pool = IPoolComponent(poolAddress);
|
284
|
+
pool.underwrite(
|
285
|
+
policyNftId,
|
286
|
+
policyInfo.applicationData,
|
287
|
+
bundleFilter,
|
288
|
+
collateralAmount);
|
289
|
+
}
|
290
|
+
|
291
|
+
|
292
|
+
function revoke(
|
293
|
+
NftId policyNftId
|
294
|
+
)
|
295
|
+
external
|
296
|
+
override
|
297
|
+
{
|
298
|
+
require(false, "ERROR:PRS-234:NOT_YET_IMPLEMENTED");
|
299
|
+
}
|
300
|
+
|
301
|
+
|
302
|
+
function underwrite(
|
303
|
+
NftId policyNftId,
|
304
|
+
bool requirePremiumPayment,
|
305
|
+
Timestamp activateAt
|
306
|
+
)
|
307
|
+
external
|
308
|
+
override
|
309
|
+
{
|
310
|
+
// check caller is registered product
|
311
|
+
(
|
312
|
+
IRegistry.ObjectInfo memory productInfo,
|
313
|
+
IInstance instance
|
314
|
+
) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
315
|
+
InstanceReader instanceReader = instance.getInstanceReader();
|
316
|
+
|
317
|
+
// check match between policy and calling product
|
318
|
+
NftId productNftId = productInfo.nftId;
|
319
|
+
IPolicy.PolicyInfo memory policyInfo = instanceReader.getPolicyInfo(policyNftId);
|
320
|
+
require(policyInfo.productNftId == productNftId, "POLICY_PRODUCT_MISMATCH");
|
321
|
+
require(instanceReader.getPolicyState(policyNftId) == APPLIED(), "ERROR:PRS-021:STATE_NOT_APPLIED");
|
322
|
+
|
323
|
+
NftId bundleNftId;
|
324
|
+
IBundle.BundleInfo memory bundleInfo;
|
325
|
+
uint256 collateralAmount;
|
326
|
+
uint256 netPremiumAmount = 0; // > 0 if immediate premium payment
|
327
|
+
{
|
328
|
+
ISetup.ProductSetupInfo memory productSetupInfo = instanceReader.getProductSetupInfo(productNftId);
|
329
|
+
IBundle.BundleInfo memory bundleInfo;
|
330
|
+
|
331
|
+
(
|
332
|
+
bundleNftId,
|
333
|
+
bundleInfo,
|
334
|
+
collateralAmount
|
335
|
+
) = _getAndVerifyUnderwritingSetup(
|
336
|
+
instance,
|
337
|
+
instanceReader,
|
338
|
+
policyInfo,
|
339
|
+
productSetupInfo
|
340
|
+
);
|
341
|
+
}
|
342
|
+
|
343
|
+
// lock bundle collateral
|
344
|
+
bundleInfo = _lockCollateralInBundle(
|
345
|
+
instance,
|
346
|
+
bundleNftId,
|
347
|
+
bundleInfo,
|
348
|
+
policyNftId,
|
349
|
+
collateralAmount);
|
350
|
+
StateId newPolicyState = UNDERWRITTEN();
|
351
|
+
|
352
|
+
// optional activation of policy
|
353
|
+
if(activateAt > zeroTimestamp()) {
|
354
|
+
newPolicyState = ACTIVE();
|
355
|
+
policyInfo.activatedAt = activateAt;
|
356
|
+
policyInfo.expiredAt = activateAt.addSeconds(policyInfo.lifetime);
|
357
|
+
}
|
358
|
+
|
359
|
+
// optional collection of premium
|
360
|
+
if(requirePremiumPayment) {
|
361
|
+
netPremiumAmount = _processPremiumByTreasury(
|
362
|
+
instance,
|
363
|
+
productInfo.nftId,
|
364
|
+
policyNftId,
|
365
|
+
policyInfo.premiumAmount);
|
366
|
+
|
367
|
+
policyInfo.premiumPaidAmount += policyInfo.premiumAmount;
|
368
|
+
}
|
369
|
+
|
370
|
+
_bundleService.underwritePolicy(instance, policyNftId, bundleNftId, collateralAmount, netPremiumAmount);
|
371
|
+
instance.updatePolicy(policyNftId, policyInfo, newPolicyState);
|
372
|
+
|
373
|
+
// involve pool if necessary
|
374
|
+
{
|
375
|
+
ISetup.PoolSetupInfo memory poolInfo = instanceReader.getPoolSetupInfo(bundleInfo.poolNftId);
|
376
|
+
|
377
|
+
if(poolInfo.isConfirmingApplication) {
|
378
|
+
_underwriteByPool(
|
379
|
+
bundleInfo.poolNftId,
|
380
|
+
policyNftId,
|
381
|
+
policyInfo,
|
382
|
+
bundleInfo.filter,
|
383
|
+
collateralAmount
|
384
|
+
);
|
385
|
+
}
|
386
|
+
}
|
387
|
+
|
388
|
+
// TODO: add logging
|
389
|
+
}
|
390
|
+
|
391
|
+
function calculateRequiredCollateral(UFixed collateralizationLevel, uint256 sumInsuredAmount) public pure override returns(uint256 collateralAmount) {
|
392
|
+
UFixed sumInsuredUFixed = UFixedLib.toUFixed(sumInsuredAmount);
|
393
|
+
UFixed collateralUFixed = collateralizationLevel * sumInsuredUFixed;
|
394
|
+
return collateralUFixed.toInt();
|
395
|
+
}
|
396
|
+
|
397
|
+
function collectPremium(NftId policyNftId, Timestamp activateAt) external override {
|
398
|
+
// check caller is registered product
|
399
|
+
(IRegistry.ObjectInfo memory productInfo, IInstance instance) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
400
|
+
InstanceReader instanceReader = instance.getInstanceReader();
|
401
|
+
IPolicy.PolicyInfo memory policyInfo = instanceReader.getPolicyInfo(policyNftId);
|
402
|
+
|
403
|
+
if (policyInfo.premiumPaidAmount == policyInfo.premiumAmount) {
|
404
|
+
revert ErrorIPolicyServicePremiumAlreadyPaid(policyNftId, policyInfo.premiumPaidAmount);
|
405
|
+
}
|
406
|
+
|
407
|
+
uint256 unpaidPremiumAmount = policyInfo.premiumAmount - policyInfo.premiumPaidAmount;
|
408
|
+
|
409
|
+
uint256 netPremiumAmount = _processPremiumByTreasury(
|
410
|
+
instance,
|
411
|
+
productInfo.nftId,
|
412
|
+
policyNftId,
|
413
|
+
unpaidPremiumAmount);
|
414
|
+
|
415
|
+
policyInfo.premiumPaidAmount += unpaidPremiumAmount;
|
416
|
+
|
417
|
+
_bundleService.increaseBalance(instance, policyInfo.bundleNftId, netPremiumAmount);
|
418
|
+
instance.updatePolicy(policyNftId, policyInfo, KEEP_STATE());
|
419
|
+
|
420
|
+
if(activateAt.gtz() && policyInfo.activatedAt.eqz()) {
|
421
|
+
activate(policyNftId, activateAt);
|
422
|
+
}
|
423
|
+
|
424
|
+
// TODO: add logging
|
425
|
+
}
|
426
|
+
|
427
|
+
function activate(NftId policyNftId, Timestamp activateAt) public override {
|
428
|
+
// check caller is registered product
|
429
|
+
(, IInstance instance) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
430
|
+
InstanceReader instanceReader = instance.getInstanceReader();
|
431
|
+
|
432
|
+
IPolicy.PolicyInfo memory policyInfo = instanceReader.getPolicyInfo(policyNftId);
|
433
|
+
|
434
|
+
require(
|
435
|
+
policyInfo.activatedAt.eqz(),
|
436
|
+
"ERROR:PRS-020:ALREADY_ACTIVATED");
|
437
|
+
|
438
|
+
policyInfo.activatedAt = activateAt;
|
439
|
+
policyInfo.expiredAt = activateAt.addSeconds(policyInfo.lifetime);
|
440
|
+
|
441
|
+
instance.updatePolicy(policyNftId, policyInfo, ACTIVE());
|
442
|
+
|
443
|
+
// TODO: add logging
|
444
|
+
}
|
445
|
+
|
446
|
+
function close(
|
447
|
+
NftId policyNftId
|
448
|
+
) external override // solhint-disable-next-line no-empty-blocks
|
449
|
+
{
|
450
|
+
(, IInstance instance) = _getAndVerifyComponentInfoAndInstance(PRODUCT());
|
451
|
+
InstanceReader instanceReader = instance.getInstanceReader();
|
452
|
+
|
453
|
+
IPolicy.PolicyInfo memory policyInfo = instanceReader.getPolicyInfo(policyNftId);
|
454
|
+
|
455
|
+
if (policyInfo.activatedAt.eqz()) {
|
456
|
+
revert ErrorIPolicyServicePolicyNotActivated(policyNftId);
|
457
|
+
}
|
458
|
+
|
459
|
+
StateId state = instanceReader.getPolicyState(policyNftId);
|
460
|
+
if (state != ACTIVE()) {
|
461
|
+
revert ErrorIPolicyServicePolicyNotActive(policyNftId, state);
|
462
|
+
}
|
463
|
+
|
464
|
+
if (policyInfo.closedAt.gtz()) {
|
465
|
+
revert ErrorIPolicyServicePolicyAlreadyClosed(policyNftId);
|
466
|
+
}
|
467
|
+
|
468
|
+
if (policyInfo.premiumAmount != policyInfo.premiumPaidAmount) {
|
469
|
+
revert ErrorIPolicyServicePremiumNotFullyPaid(policyNftId, policyInfo.premiumAmount, policyInfo.premiumPaidAmount);
|
470
|
+
}
|
471
|
+
|
472
|
+
if (policyInfo.openClaimsCount > 0) {
|
473
|
+
revert ErrorIPolicyServiceOpenClaims(policyNftId, policyInfo.openClaimsCount);
|
474
|
+
}
|
475
|
+
|
476
|
+
if (TimestampLib.blockTimestamp().lte(policyInfo.expiredAt) && (policyInfo.payoutAmount < policyInfo.sumInsuredAmount)) {
|
477
|
+
revert ErrorIPolicyServicePolicyHasNotExpired(policyNftId, policyInfo.expiredAt);
|
478
|
+
}
|
479
|
+
|
480
|
+
policyInfo.closedAt = TimestampLib.blockTimestamp();
|
481
|
+
|
482
|
+
_bundleService.closePolicy(instance, policyNftId, policyInfo.bundleNftId, policyInfo.sumInsuredAmount);
|
483
|
+
instance.updatePolicy(policyNftId, policyInfo, CLOSED());
|
484
|
+
}
|
485
|
+
|
486
|
+
function _getPoolNftId(
|
487
|
+
IInstance instance,
|
488
|
+
NftId productNftId
|
489
|
+
)
|
490
|
+
internal
|
491
|
+
view
|
492
|
+
returns (NftId poolNftid)
|
493
|
+
{
|
494
|
+
InstanceReader instanceReader = instance.getInstanceReader();
|
495
|
+
ISetup.ProductSetupInfo memory productSetupInfo = instanceReader.getProductSetupInfo(productNftId);
|
496
|
+
return productSetupInfo.poolNftId;
|
497
|
+
}
|
498
|
+
|
499
|
+
|
500
|
+
function _processPremiumByTreasury(
|
501
|
+
IInstance instance,
|
502
|
+
NftId productNftId,
|
503
|
+
NftId policyNftId,
|
504
|
+
uint256 premiumAmount
|
505
|
+
)
|
506
|
+
internal
|
507
|
+
returns (uint256 netPremiumAmount)
|
508
|
+
{
|
509
|
+
// process token transfer(s)
|
510
|
+
if(premiumAmount > 0) {
|
511
|
+
ISetup.ProductSetupInfo memory productSetupInfo = instance.getInstanceReader().getProductSetupInfo(productNftId);
|
512
|
+
TokenHandler tokenHandler = productSetupInfo.tokenHandler;
|
513
|
+
address policyOwner = getRegistry().ownerOf(policyNftId);
|
514
|
+
ISetup.PoolSetupInfo memory poolSetupInfo = instance.getInstanceReader().getPoolSetupInfo(productSetupInfo.poolNftId);
|
515
|
+
address poolWallet = poolSetupInfo.wallet;
|
516
|
+
netPremiumAmount = premiumAmount;
|
517
|
+
Fee memory productFee = productSetupInfo.productFee;
|
518
|
+
|
519
|
+
if (FeeLib.feeIsZero(productFee)) {
|
520
|
+
tokenHandler.transfer(
|
521
|
+
policyOwner,
|
522
|
+
poolWallet,
|
523
|
+
premiumAmount
|
524
|
+
);
|
525
|
+
} else {
|
526
|
+
(uint256 productFeeAmount, uint256 netAmount) = FeeLib.calculateFee(productSetupInfo.productFee, netPremiumAmount);
|
527
|
+
address productWallet = productSetupInfo.wallet;
|
528
|
+
if (tokenHandler.getToken().allowance(policyOwner, address(tokenHandler)) < premiumAmount) {
|
529
|
+
revert ErrorIPolicyServiceInsufficientAllowance(policyOwner, address(tokenHandler), premiumAmount);
|
530
|
+
}
|
531
|
+
tokenHandler.transfer(policyOwner, productWallet, productFeeAmount);
|
532
|
+
tokenHandler.transfer(policyOwner, poolWallet, netAmount);
|
533
|
+
netPremiumAmount = netAmount;
|
534
|
+
}
|
535
|
+
}
|
536
|
+
|
537
|
+
// TODO: add logging
|
538
|
+
}
|
539
|
+
}
|