@etherisc/gif-next 0.0.2-b38343e-249 → 0.0.2-b44ae3c-205
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 +6 -83
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +115 -95
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +182 -195
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +190 -67
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +207 -150
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +389 -181
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +213 -158
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +334 -249
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +135 -183
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +306 -2137
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +193 -75
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +432 -2883
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +491 -127
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +425 -242
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +231 -287
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +38 -75
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +123 -33
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- 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 +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +56 -73
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- 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/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +186 -126
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +29 -38
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +443 -240
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -39
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +722 -81
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +147 -32
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +732 -111
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +147 -44
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +126 -95
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +300 -187
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +395 -50
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +424 -64
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +212 -133
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +787 -46
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +95 -26
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +387 -215
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +84 -61
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +958 -52
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +96 -37
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +152 -54
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +28 -37
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +19 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +5 -26
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +31 -12
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +23 -39
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +21 -34
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +10 -23
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -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/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +0 -13
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +95 -26
- 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 +6 -19
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -27
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +7 -20
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +102 -28
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -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/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +7 -20
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +117 -39
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- 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 +2 -2
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +281 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +83 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +74 -19
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- 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/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- 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 +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- 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 +38 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- 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 +2 -2
- package/contracts/components/Component.sol +115 -85
- package/contracts/components/Distribution.sol +27 -50
- package/contracts/components/IComponent.sol +52 -17
- package/contracts/components/IDistributionComponent.sol +1 -30
- package/contracts/components/IPoolComponent.sol +75 -48
- package/contracts/components/IProductComponent.sol +8 -6
- package/contracts/components/Pool.sol +178 -130
- package/contracts/components/Product.sol +164 -74
- package/contracts/instance/BundleManager.sol +10 -9
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +40 -55
- package/contracts/instance/IInstanceService.sol +28 -14
- package/contracts/instance/Instance.sol +123 -185
- package/contracts/instance/InstanceAccessManager.sol +404 -160
- package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
- package/contracts/instance/InstanceReader.sol +90 -15
- package/contracts/instance/InstanceService.sol +173 -341
- package/contracts/instance/InstanceStore.sol +212 -0
- package/contracts/instance/ObjectManager.sol +6 -8
- package/contracts/instance/base/ComponentService.sol +53 -39
- package/contracts/instance/base/KeyValueStore.sol +13 -36
- package/contracts/instance/base/Lifecycle.sol +26 -6
- package/contracts/instance/module/IAccess.sol +21 -14
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +3 -0
- package/contracts/instance/module/IPolicy.sol +39 -9
- package/contracts/instance/module/ISetup.sol +7 -21
- package/contracts/instance/service/ApplicationService.sol +68 -150
- package/contracts/instance/service/BundleService.sol +223 -139
- package/contracts/instance/service/ClaimService.sol +318 -32
- package/contracts/instance/service/DistributionService.sol +171 -100
- package/contracts/instance/service/IApplicationService.sol +11 -31
- package/contracts/instance/service/IBundleService.sol +92 -28
- package/contracts/instance/service/IClaimService.sol +52 -23
- package/contracts/instance/service/IDistributionService.sol +33 -11
- package/contracts/instance/service/IPolicyService.sol +24 -33
- package/contracts/instance/service/IPoolService.sol +97 -3
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/PolicyService.sol +168 -266
- package/contracts/instance/service/PoolService.sol +313 -19
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +37 -60
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +2 -0
- package/contracts/registry/IRegistryService.sol +2 -3
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +23 -20
- package/contracts/registry/RegistryService.sol +29 -26
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/shared/IPolicyHolder.sol +23 -9
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +6 -4
- package/contracts/shared/NftOwnable.sol +0 -2
- package/contracts/shared/PolicyHolder.sol +30 -17
- package/contracts/shared/Registerable.sol +12 -11
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +14 -6
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +17 -8
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +10 -5
- package/contracts/types/PayoutId.sol +33 -5
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +13 -6
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +7 -2
- package/contracts/types/Timestamp.sol +18 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
@@ -3,24 +3,32 @@ pragma solidity ^0.8.19;
|
|
3
3
|
|
4
4
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
5
|
|
6
|
+
import {Amount, AmountLib} from "../types/Amount.sol";
|
7
|
+
import {ClaimId} from "../types/ClaimId.sol";
|
8
|
+
import {Component} from "./Component.sol";
|
9
|
+
import {Fee} from "../types/Fee.sol";
|
6
10
|
import {IRisk} from "../instance/module/IRisk.sol";
|
7
11
|
import {IApplicationService} from "../instance/service/IApplicationService.sol";
|
8
12
|
import {IPolicyService} from "../instance/service/IPolicyService.sol";
|
13
|
+
import {IProductService} from "../instance/service/IProductService.sol";
|
9
14
|
import {IClaimService} from "../instance/service/IClaimService.sol";
|
15
|
+
import {IPricingService} from "../instance/service/IPricingService.sol";
|
10
16
|
import {IProductComponent} from "./IProductComponent.sol";
|
11
17
|
import {NftId, NftIdLib} from "../types/NftId.sol";
|
12
|
-
import {
|
18
|
+
import {PayoutId} from "../types/PayoutId.sol";
|
19
|
+
import {PRODUCT, APPLICATION, POLICY, CLAIM, PRICE } from "../types/ObjectType.sol";
|
13
20
|
import {ReferralId} from "../types/Referral.sol";
|
14
21
|
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
22
|
+
import {Seconds} from "../types/Seconds.sol";
|
15
23
|
import {StateId} from "../types/StateId.sol";
|
16
24
|
import {Timestamp} from "../types/Timestamp.sol";
|
17
|
-
import {Fee} from "../types/Fee.sol";
|
18
|
-
import {Component} from "./Component.sol";
|
19
25
|
|
20
26
|
import {TokenHandler} from "../shared/TokenHandler.sol";
|
21
27
|
|
22
28
|
import {InstanceReader} from "../instance/InstanceReader.sol";
|
29
|
+
import {IPolicy} from "../instance/module/IPolicy.sol";
|
23
30
|
import {ISetup} from "../instance/module/ISetup.sol";
|
31
|
+
import {IComponents} from "../instance/module/IComponents.sol";
|
24
32
|
import {Pool} from "../components/Pool.sol";
|
25
33
|
import {Distribution} from "../components/Distribution.sol";
|
26
34
|
|
@@ -32,9 +40,11 @@ abstract contract Product is
|
|
32
40
|
bytes32 public constant PRODUCT_STORAGE_LOCATION_V1 = 0x0bb7aafdb8e380f81267337bc5b5dfdf76e6d3a380ecadb51ec665246d9d6800;
|
33
41
|
|
34
42
|
struct ProductStorage {
|
43
|
+
IProductService _productService;
|
35
44
|
IApplicationService _applicationService;
|
36
45
|
IPolicyService _policyService;
|
37
46
|
IClaimService _claimService;
|
47
|
+
IPricingService _pricingService;
|
38
48
|
Pool _pool;
|
39
49
|
Distribution _distribution;
|
40
50
|
Fee _initialProductFee;
|
@@ -55,20 +65,22 @@ abstract contract Product is
|
|
55
65
|
Fee memory productFee,
|
56
66
|
Fee memory processingFee,
|
57
67
|
address initialOwner,
|
58
|
-
bytes memory data
|
68
|
+
bytes memory registryData // writeonly data that will saved in the object info record of the registry
|
59
69
|
)
|
60
70
|
public
|
61
71
|
virtual
|
62
72
|
onlyInitializing()
|
63
73
|
{
|
64
|
-
initializeComponent(registry, instanceNftId, name, token, PRODUCT(), isInterceptor, initialOwner,
|
74
|
+
initializeComponent(registry, instanceNftId, name, token, PRODUCT(), isInterceptor, initialOwner, registryData);
|
65
75
|
|
66
76
|
ProductStorage storage $ = _getProductStorage();
|
67
77
|
// TODO add validation
|
68
|
-
// TODO refactor to go via registry
|
69
|
-
$.
|
70
|
-
$.
|
71
|
-
$.
|
78
|
+
// TODO refactor to go via registry ?
|
79
|
+
$._productService = IProductService(_getServiceAddress(PRODUCT()));
|
80
|
+
$._applicationService = IApplicationService(_getServiceAddress(APPLICATION()));
|
81
|
+
$._policyService = IPolicyService(_getServiceAddress(POLICY()));
|
82
|
+
$._claimService = IClaimService(_getServiceAddress(CLAIM()));
|
83
|
+
$._pricingService = IPricingService(_getServiceAddress(PRICE()));
|
72
84
|
$._pool = Pool(pool);
|
73
85
|
$._distribution = Distribution(distribution);
|
74
86
|
$._initialProductFee = productFee;
|
@@ -80,55 +92,24 @@ abstract contract Product is
|
|
80
92
|
registerInterface(type(IProductComponent).interfaceId);
|
81
93
|
}
|
82
94
|
|
83
|
-
|
84
|
-
function
|
85
|
-
|
86
|
-
|
87
|
-
uint256 lifetime,
|
88
|
-
bytes memory applicationData,
|
89
|
-
NftId bundleNftId,
|
90
|
-
ReferralId referralId
|
91
|
-
)
|
92
|
-
external
|
93
|
-
view
|
94
|
-
override
|
95
|
-
returns (uint256 premiumAmount)
|
96
|
-
{
|
97
|
-
(premiumAmount,,,,) = _getProductStorage()._policyService.calculatePremium(
|
98
|
-
riskId,
|
99
|
-
sumInsuredAmount,
|
100
|
-
lifetime,
|
101
|
-
applicationData,
|
102
|
-
bundleNftId,
|
103
|
-
referralId
|
104
|
-
);
|
105
|
-
}
|
106
|
-
|
107
|
-
|
108
|
-
function calculateNetPremium(
|
109
|
-
uint256 sumInsuredAmount,
|
110
|
-
RiskId riskId,
|
111
|
-
uint256 lifetime,
|
112
|
-
bytes memory applicationData
|
95
|
+
// from product component
|
96
|
+
function setFees(
|
97
|
+
Fee memory productFee,
|
98
|
+
Fee memory processingFee
|
113
99
|
)
|
114
100
|
external
|
115
|
-
|
116
|
-
|
117
|
-
|
101
|
+
onlyOwner
|
102
|
+
restricted()
|
103
|
+
override
|
118
104
|
{
|
119
|
-
|
120
|
-
return sumInsuredAmount / 10;
|
121
|
-
}
|
122
|
-
|
123
|
-
function _toRiskId(string memory riskName) internal pure returns (RiskId riskId) {
|
124
|
-
return RiskIdLib.toRiskId(riskName);
|
105
|
+
_getProductService().setFees(productFee, processingFee);
|
125
106
|
}
|
126
107
|
|
127
108
|
function _createRisk(
|
128
109
|
RiskId id,
|
129
110
|
bytes memory data
|
130
111
|
) internal {
|
131
|
-
|
112
|
+
_getProductService().createRisk(
|
132
113
|
id,
|
133
114
|
data
|
134
115
|
);
|
@@ -138,7 +119,7 @@ abstract contract Product is
|
|
138
119
|
RiskId id,
|
139
120
|
bytes memory data
|
140
121
|
) internal {
|
141
|
-
|
122
|
+
_getProductService().updateRisk(
|
142
123
|
id,
|
143
124
|
data
|
144
125
|
);
|
@@ -148,7 +129,7 @@ abstract contract Product is
|
|
148
129
|
RiskId id,
|
149
130
|
StateId state
|
150
131
|
) internal {
|
151
|
-
|
132
|
+
_getProductService().updateRiskState(
|
152
133
|
id,
|
153
134
|
state
|
154
135
|
);
|
@@ -161,8 +142,8 @@ abstract contract Product is
|
|
161
142
|
function _createApplication(
|
162
143
|
address applicationOwner,
|
163
144
|
RiskId riskId,
|
164
|
-
|
165
|
-
|
145
|
+
Amount sumInsuredAmount,
|
146
|
+
Seconds lifetime,
|
166
147
|
NftId bundleNftId,
|
167
148
|
ReferralId referralId,
|
168
149
|
bytes memory applicationData
|
@@ -181,14 +162,14 @@ abstract contract Product is
|
|
181
162
|
);
|
182
163
|
}
|
183
164
|
|
184
|
-
function
|
165
|
+
function _collateralize(
|
185
166
|
NftId policyNftId,
|
186
167
|
bool requirePremiumPayment,
|
187
168
|
Timestamp activateAt
|
188
169
|
)
|
189
170
|
internal
|
190
171
|
{
|
191
|
-
_getProductStorage()._policyService.
|
172
|
+
_getProductStorage()._policyService.collateralize(
|
192
173
|
policyNftId,
|
193
174
|
requirePremiumPayment,
|
194
175
|
activateAt);
|
@@ -221,28 +202,137 @@ abstract contract Product is
|
|
221
202
|
)
|
222
203
|
internal
|
223
204
|
{
|
224
|
-
_getProductStorage()._policyService.close(
|
205
|
+
_getProductStorage()._policyService.close(
|
206
|
+
policyNftId);
|
225
207
|
}
|
226
208
|
|
227
|
-
function
|
228
|
-
|
209
|
+
function _submitClaim(
|
210
|
+
NftId policyNftId,
|
211
|
+
Amount claimAmount,
|
212
|
+
bytes memory claimData
|
213
|
+
)
|
214
|
+
internal
|
215
|
+
returns(ClaimId)
|
216
|
+
{
|
217
|
+
return _getProductStorage()._claimService.submit(
|
218
|
+
policyNftId,
|
219
|
+
claimAmount,
|
220
|
+
claimData);
|
229
221
|
}
|
230
222
|
|
231
|
-
function
|
232
|
-
|
223
|
+
function _confirmClaim(
|
224
|
+
NftId policyNftId,
|
225
|
+
ClaimId claimId,
|
226
|
+
Amount confirmedAmount
|
227
|
+
)
|
228
|
+
internal
|
229
|
+
{
|
230
|
+
_getProductStorage()._claimService.confirm(
|
231
|
+
policyNftId,
|
232
|
+
claimId,
|
233
|
+
confirmedAmount);
|
233
234
|
}
|
234
235
|
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
236
|
+
function _declineClaim(
|
237
|
+
NftId policyNftId,
|
238
|
+
ClaimId claimId
|
239
|
+
)
|
240
|
+
internal
|
241
|
+
{
|
242
|
+
_getProductStorage()._claimService.decline(
|
243
|
+
policyNftId,
|
244
|
+
claimId);
|
245
|
+
}
|
246
|
+
|
247
|
+
function _closeClaim(
|
248
|
+
NftId policyNftId,
|
249
|
+
ClaimId claimId
|
250
|
+
)
|
251
|
+
internal
|
252
|
+
{
|
253
|
+
_getProductStorage()._claimService.close(
|
254
|
+
policyNftId,
|
255
|
+
claimId);
|
256
|
+
}
|
257
|
+
|
258
|
+
function _createPayout(
|
259
|
+
NftId policyNftId,
|
260
|
+
ClaimId claimId,
|
261
|
+
Amount amount,
|
262
|
+
bytes memory data
|
263
|
+
)
|
264
|
+
internal
|
265
|
+
returns (PayoutId)
|
266
|
+
{
|
267
|
+
return _getProductStorage()._claimService.createPayout(
|
268
|
+
policyNftId,
|
269
|
+
claimId,
|
270
|
+
amount,
|
271
|
+
data);
|
272
|
+
}
|
273
|
+
|
274
|
+
function _processPayout(
|
275
|
+
NftId policyNftId,
|
276
|
+
PayoutId payoutId
|
277
|
+
)
|
278
|
+
internal
|
279
|
+
{
|
280
|
+
_getProductStorage()._claimService.processPayout(
|
281
|
+
policyNftId,
|
282
|
+
payoutId);
|
283
|
+
}
|
284
|
+
|
285
|
+
function calculatePremium(
|
286
|
+
Amount sumInsuredAmount,
|
287
|
+
RiskId riskId,
|
288
|
+
Seconds lifetime,
|
289
|
+
bytes memory applicationData,
|
290
|
+
NftId bundleNftId,
|
291
|
+
ReferralId referralId
|
292
|
+
)
|
293
|
+
external
|
294
|
+
view
|
295
|
+
override
|
296
|
+
returns (Amount premiumAmount)
|
297
|
+
{
|
298
|
+
IPolicy.Premium memory premium = _getProductStorage()._pricingService.calculatePremium(
|
299
|
+
getNftId(),
|
300
|
+
riskId,
|
301
|
+
sumInsuredAmount,
|
302
|
+
lifetime,
|
303
|
+
applicationData,
|
304
|
+
bundleNftId,
|
305
|
+
referralId
|
306
|
+
);
|
307
|
+
|
308
|
+
return AmountLib.toAmount(premium.premiumAmount);
|
309
|
+
}
|
310
|
+
|
311
|
+
function calculateNetPremium(
|
312
|
+
Amount sumInsuredAmount,
|
313
|
+
RiskId riskId,
|
314
|
+
Seconds lifetime,
|
315
|
+
bytes memory applicationData
|
239
316
|
)
|
240
317
|
external
|
241
|
-
|
242
|
-
|
243
|
-
|
318
|
+
view
|
319
|
+
virtual override
|
320
|
+
returns (Amount netPremiumAmount)
|
244
321
|
{
|
245
|
-
|
322
|
+
// default 10% of sum insured
|
323
|
+
return AmountLib.toAmount(sumInsuredAmount.toInt() / 10);
|
324
|
+
}
|
325
|
+
|
326
|
+
function _toRiskId(string memory riskName) internal pure returns (RiskId riskId) {
|
327
|
+
return RiskIdLib.toRiskId(riskName);
|
328
|
+
}
|
329
|
+
|
330
|
+
function getPoolNftId() external view override returns (NftId poolNftId) {
|
331
|
+
return getRegistry().getNftId(address(_getProductStorage()._pool));
|
332
|
+
}
|
333
|
+
|
334
|
+
function getDistributionNftId() external view override returns (NftId distributionNftId) {
|
335
|
+
return getRegistry().getNftId(address(_getProductStorage()._distribution));
|
246
336
|
}
|
247
337
|
|
248
338
|
function getSetupInfo() public view returns (ISetup.ProductSetupInfo memory setupInfo) {
|
@@ -259,19 +349,15 @@ abstract contract Product is
|
|
259
349
|
ProductStorage storage $ = _getProductStorage();
|
260
350
|
|
261
351
|
ISetup.DistributionSetupInfo memory distributionSetupInfo = $._distribution.getSetupInfo();
|
262
|
-
|
352
|
+
IComponents.PoolInfo memory poolInfo = $._pool.getPoolInfo();
|
263
353
|
|
264
354
|
return ISetup.ProductSetupInfo(
|
265
355
|
getToken(),
|
266
356
|
$._tokenHandler,
|
267
357
|
$._distributionNftId,
|
268
358
|
$._poolNftId,
|
269
|
-
distributionSetupInfo.distributionFee,
|
270
359
|
$._initialProductFee,
|
271
360
|
$._initialProcessingFee,
|
272
|
-
poolSetupInfo.poolFee,
|
273
|
-
poolSetupInfo.stakingFee,
|
274
|
-
poolSetupInfo.performanceFee,
|
275
361
|
false,
|
276
362
|
getWallet()
|
277
363
|
);
|
@@ -282,4 +368,8 @@ abstract contract Product is
|
|
282
368
|
$.slot := PRODUCT_STORAGE_LOCATION_V1
|
283
369
|
}
|
284
370
|
}
|
285
|
-
|
371
|
+
|
372
|
+
function _getProductService() internal view returns (IProductService) {
|
373
|
+
return _getProductStorage()._productService;
|
374
|
+
}
|
375
|
+
}
|
@@ -22,9 +22,10 @@ contract BundleManager is
|
|
22
22
|
event LogBundleManagerBundleAdded(NftId poolNftId, NftId bundleNftId);
|
23
23
|
event LogBundleManagerBundleUnlocked(NftId poolNftId, NftId bundleNftId);
|
24
24
|
event LogBundleManagerBundleLocked(NftId poolNftId, NftId bundleNftId);
|
25
|
+
event LogBundleManagerBundleClosed(NftId poolNftId, NftId bundleNftId);
|
25
26
|
|
26
|
-
error
|
27
|
-
error
|
27
|
+
error ErrorBundleManagerPolicyAlreadyActivated(NftId policyNftId);
|
28
|
+
error ErrorBundleManagerBundleLocked(NftId bundleNftId, NftId policyNftId);
|
28
29
|
error ErrorBundleManagerPolicyWithOpenClaims(NftId policyNftId, uint256 openClaimsCount);
|
29
30
|
error ErrorBundleManagerPolicyNotCloseable(NftId policyNftId);
|
30
31
|
error ErrorBundleManagerBundleUnknown(NftId bundleNftId);
|
@@ -32,9 +33,8 @@ contract BundleManager is
|
|
32
33
|
|
33
34
|
mapping(NftId bundleNftId => LibNftIdSet.Set policies) internal _activePolicies;
|
34
35
|
|
35
|
-
/// @dev links a policy
|
36
|
-
// to link a policy it MUST NOT yet have been
|
37
|
-
// the bundle MUST be unlocked (active) for linking (underwriting) and registered with this instance
|
36
|
+
/// @dev links a policy to its bundle
|
37
|
+
// to link a policy it MUST NOT yet have been linked
|
38
38
|
function linkPolicy(NftId policyNftId) external restricted() {
|
39
39
|
NftId bundleNftId = _instance.getInstanceReader().getPolicyInfo(policyNftId).bundleNftId;
|
40
40
|
// decision will likely depend on the decision what to check here and what in the service
|
@@ -42,7 +42,7 @@ contract BundleManager is
|
|
42
42
|
|
43
43
|
// ensure bundle is unlocked (in active set) and registered with this instance
|
44
44
|
if (!_isActive(poolNftId, bundleNftId)) {
|
45
|
-
revert
|
45
|
+
revert ErrorBundleManagerBundleLocked(bundleNftId, policyNftId);
|
46
46
|
}
|
47
47
|
|
48
48
|
LibNftIdSet.add(_activePolicies[bundleNftId], policyNftId);
|
@@ -71,7 +71,7 @@ contract BundleManager is
|
|
71
71
|
}
|
72
72
|
|
73
73
|
|
74
|
-
/// @dev add a new bundle to a
|
74
|
+
/// @dev add a new bundle to a pool registerd with this instance
|
75
75
|
// the corresponding pool is fetched via instance reader
|
76
76
|
function add(NftId bundleNftId) external restricted() {
|
77
77
|
NftId poolNftId = _instance.getInstanceReader().getBundleInfo(bundleNftId).poolNftId;
|
@@ -85,14 +85,15 @@ contract BundleManager is
|
|
85
85
|
emit LogBundleManagerBundleAdded(poolNftId, bundleNftId);
|
86
86
|
}
|
87
87
|
|
88
|
-
|
88
|
+
|
89
|
+
/// @dev unlocked (active) bundles are available to collateralize new policies
|
89
90
|
function unlock(NftId bundleNftId) external restricted() {
|
90
91
|
NftId poolNftId = _instance.getInstanceReader().getBundleInfo(bundleNftId).poolNftId;
|
91
92
|
_activate(poolNftId, bundleNftId);
|
92
93
|
emit LogBundleManagerBundleUnlocked(poolNftId, bundleNftId);
|
93
94
|
}
|
94
95
|
|
95
|
-
/// @dev locked (deactivated) bundles may not
|
96
|
+
/// @dev locked (deactivated) bundles may not collateralize any new policies
|
96
97
|
function lock(NftId bundleNftId) external restricted() {
|
97
98
|
NftId poolNftId = _instance.getInstanceReader().getBundleInfo(bundleNftId).poolNftId;
|
98
99
|
_deactivate(poolNftId, bundleNftId);
|
@@ -10,7 +10,8 @@ abstract contract Cloneable is
|
|
10
10
|
AccessManagedUpgradeable
|
11
11
|
{
|
12
12
|
event CloneableInitialized(address authority, address registry);
|
13
|
-
|
13
|
+
|
14
|
+
error CloneableAuthorityZero();
|
14
15
|
error CloneableRegistryInvalid(address registry);
|
15
16
|
|
16
17
|
IRegistry internal _registry;
|
@@ -25,9 +26,13 @@ abstract contract Cloneable is
|
|
25
26
|
address registry
|
26
27
|
)
|
27
28
|
public
|
28
|
-
|
29
|
+
onlyInitializing
|
29
30
|
{
|
30
31
|
// check/handle access managed
|
32
|
+
if(authority == address(0)) {
|
33
|
+
revert CloneableAuthorityZero();
|
34
|
+
}
|
35
|
+
|
31
36
|
__AccessManaged_init(authority);
|
32
37
|
|
33
38
|
// check/handle registry
|
@@ -3,40 +3,65 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
|
5
5
|
|
6
|
+
import {ClaimId} from "../types/ClaimId.sol";
|
7
|
+
import {DistributorType} from "../types/DistributorType.sol";
|
8
|
+
import {PayoutId} from "../types/PayoutId.sol";
|
6
9
|
import {NftId} from "../types/NftId.sol";
|
7
10
|
import {StateId} from "../types/StateId.sol";
|
11
|
+
import {ReferralId} from "../types/Referral.sol";
|
8
12
|
import {RiskId} from "../types/RiskId.sol";
|
13
|
+
import {VersionPart} from "../types/Version.sol";
|
14
|
+
import {Key32} from "../types/Key32.sol";
|
15
|
+
import {RoleId} from "../types/RoleId.sol";
|
9
16
|
|
10
17
|
import {IRegisterable} from "../shared/IRegisterable.sol";
|
11
18
|
|
19
|
+
import {ITransferInterceptor} from "../registry/ITransferInterceptor.sol";
|
20
|
+
|
12
21
|
import {InstanceAccessManager} from "./InstanceAccessManager.sol";
|
13
22
|
import {BundleManager} from "./BundleManager.sol";
|
14
23
|
import {InstanceReader} from "./InstanceReader.sol";
|
24
|
+
import {InstanceStore} from "./InstanceStore.sol";
|
25
|
+
|
26
|
+
import {IKeyValueStore} from "./base/IKeyValueStore.sol";
|
27
|
+
|
28
|
+
import {IAccess} from "./module/IAccess.sol";
|
15
29
|
|
16
|
-
import {IBundle} from "./module/IBundle.sol";
|
17
30
|
import {IBundleService} from "./service/IBundleService.sol";
|
18
31
|
import {IDistributionService} from "./service/IDistributionService.sol";
|
19
|
-
import {InstanceAccessManager} from "./InstanceAccessManager.sol";
|
20
|
-
import {IKeyValueStore} from "./base/IKeyValueStore.sol";
|
21
|
-
import {IPolicy} from "./module/IPolicy.sol";
|
22
|
-
import {IDistribution} from "./module/IDistribution.sol";
|
23
32
|
import {IPolicyService} from "./service/IPolicyService.sol";
|
24
33
|
import {IPoolService} from "./service/IPoolService.sol";
|
25
34
|
import {IProductService} from "./service/IProductService.sol";
|
26
35
|
import {IPolicyService} from "./service/IPolicyService.sol";
|
27
36
|
import {IBundleService} from "./service/IBundleService.sol";
|
28
|
-
import {IRisk} from "./module/IRisk.sol";
|
29
|
-
import {ISetup} from "./module/ISetup.sol";
|
30
|
-
import {NftId} from "../types/NftId.sol";
|
31
|
-
import {RiskId} from "../types/RiskId.sol";
|
32
|
-
import {StateId} from "../types/StateId.sol";
|
33
|
-
import {VersionPart} from "../types/Version.sol";
|
34
|
-
import {Key32} from "../types/Key32.sol";
|
35
37
|
|
36
38
|
|
37
39
|
|
40
|
+
interface IInstance is
|
41
|
+
IRegisterable,
|
42
|
+
ITransferInterceptor,
|
43
|
+
IAccessManaged
|
44
|
+
{
|
45
|
+
error ErrorInstanceInstanceAccessManagerZero();
|
46
|
+
error ErrorInstanceInstanceAccessManagerAlreadySet(address instanceAccessManager);
|
47
|
+
error ErrorInstanceInstanceAccessManagerAuthorityMismatch(address instanceAuthority);
|
48
|
+
|
49
|
+
error ErrorInstanceBundleManagerAlreadySet(address instanceBundleManager);
|
50
|
+
error ErrorInstanceBundleManagerInstanceMismatch(address instance);
|
51
|
+
error ErrorInstanceBundleManagerAuthorityMismatch(address instanceAuthority);
|
38
52
|
|
39
|
-
|
53
|
+
error ErrorInstanceInstanceReaderInstanceMismatch(address instanceAuthority);
|
54
|
+
|
55
|
+
error ErrorInstanceInstanceStoreAlreadySet(address instanceStore);
|
56
|
+
error ErrorInstanceInstanceStoreAuthorityMismatch(address instanceAuthority);
|
57
|
+
|
58
|
+
function createRole(string memory roleName, string memory adminName) external returns (RoleId roleId, RoleId admin);
|
59
|
+
function grantRole(RoleId roleId, address account) external;
|
60
|
+
function revokeRole(RoleId roleId, address account) external;
|
61
|
+
|
62
|
+
function createTarget(address target, string memory name) external;
|
63
|
+
function setTargetFunctionRole(string memory targetName, bytes4[] calldata selectors, RoleId roleId) external;
|
64
|
+
function setTargetLocked(address target, bool locked) external;
|
40
65
|
|
41
66
|
function getDistributionService() external view returns (IDistributionService);
|
42
67
|
function getProductService() external view returns (IProductService);
|
@@ -44,49 +69,9 @@ interface IInstance is IRegisterable, IKeyValueStore, IAccessManaged {
|
|
44
69
|
function getPolicyService() external view returns (IPolicyService);
|
45
70
|
function getBundleService() external view returns (IBundleService);
|
46
71
|
|
47
|
-
function createDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup) external;
|
48
|
-
function updateDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup, StateId newState) external;
|
49
|
-
function updateDistributionSetupState(NftId distributionNftId, StateId newState) external;
|
50
|
-
|
51
|
-
function createPoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup) external;
|
52
|
-
function updatePoolSetup(NftId poolNftId, ISetup.PoolSetupInfo memory setup, StateId newState) external;
|
53
|
-
function updatePoolSetupState(NftId poolNftId, StateId newState) external;
|
54
|
-
|
55
|
-
function createBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle) external;
|
56
|
-
function updateBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle, StateId newState) external;
|
57
|
-
function updateBundleState(NftId bundleNftId, StateId newState) external;
|
58
|
-
|
59
|
-
function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external;
|
60
|
-
function updateProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup, StateId newState) external;
|
61
|
-
function updateProductSetupState(NftId productNftId, StateId newState) external;
|
62
|
-
|
63
|
-
function createDistributorType(Key32 distributorKey, IDistribution.DistributorTypeInfo memory info) external;
|
64
|
-
function updateDistributorType(Key32 distributorKey, IDistribution.DistributorTypeInfo memory info, StateId newState) external;
|
65
|
-
function updateDistributorTypeState(Key32 distributorKey, StateId newState) external;
|
66
|
-
|
67
|
-
function createDistributor(NftId nftId, IDistribution.DistributorInfo memory info) external;
|
68
|
-
function updateDistributor(NftId nftId, IDistribution.DistributorInfo memory info, StateId newState) external;
|
69
|
-
function updateDistributorState(NftId nftId, StateId newState) external;
|
70
|
-
|
71
|
-
function createReferral(Key32 referralKey, IDistribution.ReferralInfo memory referralInfo) external;
|
72
|
-
function updateReferral(Key32 referralKey, IDistribution.ReferralInfo memory referralInfo, StateId newState) external;
|
73
|
-
function updateReferralState(Key32 referralKey, StateId newState) external;
|
74
|
-
|
75
|
-
function createRisk(RiskId riskId, IRisk.RiskInfo memory risk) external;
|
76
|
-
function updateRisk(RiskId riskId, IRisk.RiskInfo memory risk, StateId newState) external;
|
77
|
-
function updateRiskState(RiskId riskId, StateId newState) external;
|
78
|
-
|
79
|
-
function createApplication(NftId applicationNftId, IPolicy.PolicyInfo memory policy) external;
|
80
|
-
function updateApplication(NftId applicationNftId, IPolicy.PolicyInfo memory policy, StateId newState) external;
|
81
|
-
function updateApplicationState(NftId applicationNftId, StateId newState) external;
|
82
|
-
|
83
|
-
function updatePolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external;
|
84
|
-
function updatePolicyState(NftId policyNftId, StateId newState) external;
|
85
|
-
|
86
|
-
// TODO add claims/payouts function to instance
|
87
|
-
// function updateClaims(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external;
|
88
|
-
|
89
72
|
function getMajorVersion() external pure returns (VersionPart majorVersion);
|
90
73
|
function getInstanceReader() external view returns (InstanceReader);
|
91
74
|
function getBundleManager() external view returns (BundleManager);
|
75
|
+
function getInstanceAccessManager() external view returns (InstanceAccessManager);
|
76
|
+
function getInstanceStore() external view returns (InstanceStore);
|
92
77
|
}
|
@@ -5,19 +5,18 @@ import {NftId} from "../types/NftId.sol";
|
|
5
5
|
import {ObjectType} from "../types/ObjectType.sol";
|
6
6
|
import {RoleId} from "../types/RoleId.sol";
|
7
7
|
import {IService} from "../shared/IService.sol";
|
8
|
-
import {IRegistry} from "../registry/IRegistry.sol";
|
9
|
-
|
10
|
-
import {IRegisterable} from "../shared/IRegisterable.sol";
|
11
|
-
import {IComponent} from "../components/IComponent.sol";
|
12
8
|
|
9
|
+
import {AccessManagerUpgradeableInitializeable} from "../shared/AccessManagerUpgradeableInitializeable.sol";
|
13
10
|
import {InstanceAccessManager} from "./InstanceAccessManager.sol";
|
14
11
|
import {Instance} from "./Instance.sol";
|
15
12
|
import {InstanceReader} from "./InstanceReader.sol";
|
16
13
|
import {BundleManager} from "./BundleManager.sol";
|
14
|
+
import {InstanceStore} from "./InstanceStore.sol";
|
17
15
|
|
18
16
|
interface IInstanceService is IService {
|
19
17
|
|
20
18
|
error ErrorInstanceServiceMasterInstanceAlreadySet();
|
19
|
+
error ErrorInstanceServiceMasterOzAccessManagerAlreadySet();
|
21
20
|
error ErrorInstanceServiceMasterInstanceAccessManagerAlreadySet();
|
22
21
|
error ErrorInstanceServiceMasterBundleManagerAlreadySet();
|
23
22
|
error ErrorInstanceServiceInstanceAddressZero();
|
@@ -27,33 +26,48 @@ interface IInstanceService is IService {
|
|
27
26
|
error ErrorInstanceServiceInstanceReaderSameAsMasterInstanceReader();
|
28
27
|
error ErrorInstanceServiceInstanceReaderInstanceMismatch();
|
29
28
|
|
30
|
-
error
|
29
|
+
error ErrorInstanceServiceInstanceAccessManagerZero();
|
31
30
|
error ErrorInstanceServiceInstanceReaderZero();
|
32
31
|
error ErrorInstanceServiceBundleManagerZero();
|
32
|
+
error ErrorInstanceServiceInstanceStoreZero();
|
33
33
|
|
34
34
|
error ErrorInstanceServiceInstanceAuthorityMismatch();
|
35
|
+
error ErrorInstanceServiceBundleManagerAuthorityMismatch();
|
35
36
|
error ErrorInstanceServiceInstanceReaderInstanceMismatch2();
|
36
37
|
error ErrorInstanceServiceBundleMangerInstanceMismatch();
|
38
|
+
error ErrorInstanceServiceInstanceStoreAuthorityMismatch();
|
37
39
|
|
38
40
|
error ErrorInstanceServiceRequestUnauhorized(address caller);
|
39
41
|
error ErrorInstanceServiceNotInstanceOwner(address caller, NftId instanceNftId);
|
42
|
+
error ErrorInstanceServiceNotInstance(NftId nftId);
|
40
43
|
error ErrorInstanceServiceComponentNotRegistered(address componentAddress);
|
44
|
+
error ErrorInstanceServiceInstanceComponentMismatch(NftId instanceNftId, NftId componentNftId);
|
41
45
|
error ErrorInstanceServiceInvalidComponentType(address componentAddress, ObjectType expectedType, ObjectType componentType);
|
42
46
|
|
43
|
-
event LogInstanceCloned(
|
47
|
+
event LogInstanceCloned(
|
48
|
+
address clonedOzAccessManager,
|
49
|
+
address clonedInstanceAccessManager,
|
50
|
+
address clonedInstance,
|
51
|
+
address clonedInstanceStore,
|
52
|
+
address clonedBundleManager,
|
53
|
+
address clonedInstanceReader,
|
54
|
+
NftId clonedInstanceNftId
|
55
|
+
);
|
44
56
|
|
45
57
|
function createInstanceClone()
|
46
58
|
external
|
47
59
|
returns (
|
48
|
-
InstanceAccessManager clonedAccessManager,
|
49
60
|
Instance clonedInstance,
|
50
|
-
NftId instanceNftId
|
51
|
-
InstanceReader clonedInstanceReader,
|
52
|
-
BundleManager clonedBundleManager
|
61
|
+
NftId instanceNftId
|
53
62
|
);
|
54
63
|
|
55
|
-
function
|
56
|
-
|
57
|
-
|
58
|
-
|
64
|
+
function createGifTarget(
|
65
|
+
NftId instanceNftId,
|
66
|
+
address targetAddress,
|
67
|
+
string memory targetName,
|
68
|
+
bytes4[][] memory selectors,
|
69
|
+
RoleId[] memory roles
|
70
|
+
) external;
|
59
71
|
|
72
|
+
function setComponentLocked(bool locked) external;
|
73
|
+
}
|