@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-e818783-565
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 +337 -19
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.json +672 -35
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +1345 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1064 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +830 -0
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +1180 -132
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +977 -156
 - 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 +778 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1908 -776
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2403 -852
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1403 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1140 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
 - 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 +4 -0
 - package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
 - package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1060 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +681 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1266 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +725 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1040 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +685 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1774 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +793 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +627 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +686 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +602 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1090 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +937 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +844 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +450 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1511 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +741 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1237 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +840 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +595 -27
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +652 -50
 - 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 +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1158 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -66
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -132
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
 - package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
 - 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 +4 -0
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
 - package/artifacts/contracts/test/TestService.sol/TestService.json +596 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +185 -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 +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
 - 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 +4 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +288 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
 - 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/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
 - 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 +110 -4
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
 - package/contracts/components/Component.sol +227 -51
 - package/contracts/components/Distribution.sol +284 -0
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +71 -0
 - package/contracts/components/IPoolComponent.sol +113 -0
 - package/contracts/components/IProductComponent.sol +40 -0
 - package/contracts/components/Pool.sol +280 -30
 - package/contracts/components/Product.sol +331 -49
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +126 -0
 - package/contracts/instance/Cloneable.sol +51 -0
 - package/contracts/instance/IInstance.sol +99 -22
 - package/contracts/instance/IInstanceService.sol +68 -0
 - package/contracts/instance/Instance.sol +289 -51
 - package/contracts/instance/InstanceAccessManager.sol +527 -0
 - package/contracts/instance/InstanceReader.sol +317 -0
 - package/contracts/instance/InstanceService.sol +478 -0
 - package/contracts/instance/InstanceServiceManager.sol +54 -0
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/IKeyValueStore.sol +49 -0
 - package/contracts/instance/base/ILifecycle.sol +30 -0
 - package/contracts/instance/base/KeyValueStore.sol +180 -0
 - package/contracts/instance/base/Lifecycle.sol +117 -0
 - package/contracts/instance/module/IAccess.sol +54 -0
 - package/contracts/instance/module/IBundle.sol +23 -0
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +41 -0
 - package/contracts/instance/module/IPolicy.sol +77 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +33 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ApplicationService.sol +355 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +436 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +239 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +431 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +51 -0
 - package/contracts/instance/service/IApplicationService.sol +78 -0
 - package/contracts/instance/service/IBundleService.sol +96 -0
 - package/contracts/instance/service/IClaimService.sol +92 -0
 - package/contracts/instance/service/IDistributionService.sol +99 -0
 - package/contracts/instance/service/IPolicyService.sol +137 -0
 - package/contracts/instance/service/IPoolService.sol +99 -0
 - package/contracts/instance/service/IProductService.sol +40 -0
 - package/contracts/instance/service/PolicyService.sol +541 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +303 -0
 - package/contracts/instance/service/PoolServiceManager.sol +51 -0
 - package/contracts/instance/service/ProductService.sol +210 -0
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +137 -62
 - package/contracts/registry/IRegistry.sol +75 -41
 - package/contracts/registry/IRegistryService.sol +68 -0
 - package/contracts/registry/ITransferInterceptor.sol +7 -0
 - package/contracts/registry/Registry.sol +413 -128
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +282 -0
 - package/contracts/registry/RegistryServiceManager.sol +62 -0
 - package/contracts/registry/ReleaseManager.sol +324 -0
 - package/contracts/registry/TokenRegistry.sol +116 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +27 -0
 - package/contracts/shared/INftOwnable.sol +23 -0
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +15 -0
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +16 -0
 - package/contracts/shared/IVersionable.sol +53 -0
 - package/contracts/shared/NftOwnable.sol +120 -0
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +169 -0
 - package/contracts/shared/Registerable.sol +74 -0
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +72 -0
 - package/contracts/shared/TokenHandler.sol +33 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +59 -0
 - package/contracts/test/TestFee.sol +25 -0
 - package/contracts/test/TestRegisterable.sol +18 -0
 - package/contracts/test/TestRoleId.sol +14 -0
 - package/contracts/test/TestService.sol +25 -0
 - package/contracts/test/TestToken.sol +26 -0
 - package/contracts/test/TestVersion.sol +44 -0
 - package/contracts/test/TestVersionable.sol +17 -0
 - package/contracts/test/Usdc.sol +26 -0
 - package/contracts/types/AddressSet.sol +58 -0
 - package/contracts/types/Amount.sol +65 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/ClaimId.sol +75 -0
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +52 -20
 - package/contracts/types/Key32.sol +50 -0
 - package/contracts/types/NftId.sol +30 -1
 - package/contracts/types/NftIdSet.sol +62 -0
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +64 -14
 - package/contracts/types/PayoutId.sol +82 -0
 - package/contracts/types/Referral.sol +89 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +97 -0
 - package/contracts/types/Seconds.sol +54 -0
 - package/contracts/types/StateId.sol +23 -4
 - package/contracts/types/Timestamp.sol +36 -6
 - package/contracts/types/UFixed.sol +139 -23
 - package/contracts/types/Version.sol +108 -0
 - package/package.json +12 -5
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
 - 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/instance/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
 - package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
 - package/contracts/components/IPool.sol +0 -15
 - package/contracts/components/IProduct.sol +0 -16
 - 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/README.md +0 -112
 - 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
 - package/contracts/instance/access/Access.sol +0 -165
 - package/contracts/instance/access/IAccess.sol +0 -63
 - package/contracts/instance/component/ComponentModule.sol +0 -274
 - package/contracts/instance/component/IComponent.sol +0 -74
 - package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
 - package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
 - package/contracts/instance/policy/IPolicy.sol +0 -50
 - package/contracts/instance/policy/PolicyModule.sol +0 -114
 - package/contracts/instance/pool/IPoolModule.sol +0 -23
 - package/contracts/instance/pool/PoolModule.sol +0 -81
 - package/contracts/instance/product/IProductService.sol +0 -36
 - package/contracts/instance/product/ProductService.sol +0 -136
 - package/contracts/instance/treasury/ITreasury.sol +0 -91
 - package/contracts/instance/treasury/TokenHandler.sol +0 -24
 - package/contracts/instance/treasury/TreasuryModule.sol +0 -168
 - package/contracts/registry/IChainNft.sol +0 -21
 
| 
         @@ -0,0 +1,121 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.19;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {IComponent} from "../../components/IComponent.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {IRegistry} from "../../registry/IRegistry.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {IRegistryService} from "../../registry/IRegistryService.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {IInstance} from "../../instance/IInstance.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {IAccess} from "../module/IAccess.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {ObjectType, INSTANCE, REGISTRY} from "../../types/ObjectType.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {RoleId} from "../../types/RoleId.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            import {Service} from "../../shared/Service.sol";
         
     | 
| 
      
 14 
     | 
    
         
            +
            import {InstanceService} from "../InstanceService.sol";
         
     | 
| 
      
 15 
     | 
    
         
            +
            import {InstanceAccessManager} from "../InstanceAccessManager.sol";
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            abstract contract ComponentService is Service {
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                error ErrorComponentServiceNotComponent(address component);
         
     | 
| 
      
 20 
     | 
    
         
            +
                error ErrorComponentServiceInvalidType(address component, ObjectType requiredType, ObjectType componentType);
         
     | 
| 
      
 21 
     | 
    
         
            +
                error ErrorComponentServiceSenderNotOwner(address component, address initialOwner, address sender);
         
     | 
| 
      
 22 
     | 
    
         
            +
                error ErrorComponentServiceExpectedRoleMissing(NftId instanceNftId, RoleId requiredRole, address sender);
         
     | 
| 
      
 23 
     | 
    
         
            +
                error ErrorComponentServiceComponentLocked(address component);
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                /// @dev modifier to check if caller is a registered service
         
     | 
| 
      
 26 
     | 
    
         
            +
                modifier onlyService() {
         
     | 
| 
      
 27 
     | 
    
         
            +
                    address caller = msg.sender;
         
     | 
| 
      
 28 
     | 
    
         
            +
                    require(getRegistry().isRegisteredService(caller), "ERROR_NOT_SERVICE");
         
     | 
| 
      
 29 
     | 
    
         
            +
                    _;
         
     | 
| 
      
 30 
     | 
    
         
            +
                }
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                // view functions
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                function getRegistryService() public view virtual returns (IRegistryService) {
         
     | 
| 
      
 35 
     | 
    
         
            +
                    return IRegistryService(_getServiceAddress(REGISTRY()));
         
     | 
| 
      
 36 
     | 
    
         
            +
                }
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                function getInstanceService() public view returns (InstanceService) {
         
     | 
| 
      
 39 
     | 
    
         
            +
                    return InstanceService(_getServiceAddress(INSTANCE()));
         
     | 
| 
      
 40 
     | 
    
         
            +
                }
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                function _getServiceAddress(ObjectType domain) internal view returns (address) {
         
     | 
| 
      
 43 
     | 
    
         
            +
                    return getRegistry().getServiceAddress(domain, getVersion().toMajorPart());
         
     | 
| 
      
 44 
     | 
    
         
            +
                }
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                // internal functions
         
     | 
| 
      
 47 
     | 
    
         
            +
                function _checkComponentForRegistration(
         
     | 
| 
      
 48 
     | 
    
         
            +
                    address componentAddress,
         
     | 
| 
      
 49 
     | 
    
         
            +
                    ObjectType requiredType,
         
     | 
| 
      
 50 
     | 
    
         
            +
                    RoleId requiredRole
         
     | 
| 
      
 51 
     | 
    
         
            +
                )
         
     | 
| 
      
 52 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 53 
     | 
    
         
            +
                    view
         
     | 
| 
      
 54 
     | 
    
         
            +
                    returns (
         
     | 
| 
      
 55 
     | 
    
         
            +
                        IComponent component,
         
     | 
| 
      
 56 
     | 
    
         
            +
                        address owner,
         
     | 
| 
      
 57 
     | 
    
         
            +
                        IInstance instance,
         
     | 
| 
      
 58 
     | 
    
         
            +
                        NftId instanceNftId
         
     | 
| 
      
 59 
     | 
    
         
            +
                    )
         
     | 
| 
      
 60 
     | 
    
         
            +
                {
         
     | 
| 
      
 61 
     | 
    
         
            +
                    // component may only be registerd by initial owner of component
         
     | 
| 
      
 62 
     | 
    
         
            +
                    owner = msg.sender;
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                    // check this is a component
         
     | 
| 
      
 65 
     | 
    
         
            +
                    component = IComponent(componentAddress);
         
     | 
| 
      
 66 
     | 
    
         
            +
                    if(!component.supportsInterface(type(IComponent).interfaceId)) {
         
     | 
| 
      
 67 
     | 
    
         
            +
                        revert ErrorComponentServiceNotComponent(componentAddress);
         
     | 
| 
      
 68 
     | 
    
         
            +
                    }
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                    // check component is of required type
         
     | 
| 
      
 71 
     | 
    
         
            +
                    IRegistry.ObjectInfo memory componentInfo = component.getInitialInfo();
         
     | 
| 
      
 72 
     | 
    
         
            +
                    if(componentInfo.objectType != requiredType) {
         
     | 
| 
      
 73 
     | 
    
         
            +
                        revert ErrorComponentServiceInvalidType(componentAddress, requiredType, componentInfo.objectType);
         
     | 
| 
      
 74 
     | 
    
         
            +
                    }
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                    // check msg.sender is component owner
         
     | 
| 
      
 77 
     | 
    
         
            +
                    address initialOwner = componentInfo.initialOwner;
         
     | 
| 
      
 78 
     | 
    
         
            +
                    if(owner != initialOwner) {
         
     | 
| 
      
 79 
     | 
    
         
            +
                        revert ErrorComponentServiceSenderNotOwner(componentAddress, componentInfo.initialOwner, owner);
         
     | 
| 
      
 80 
     | 
    
         
            +
                    }
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                    // check instance has assigned required role to owner
         
     | 
| 
      
 83 
     | 
    
         
            +
                    instanceNftId = componentInfo.parentNftId;
         
     | 
| 
      
 84 
     | 
    
         
            +
                    instance = _getInstance(instanceNftId);
         
     | 
| 
      
 85 
     | 
    
         
            +
                    if(!instance.getInstanceAccessManager().hasRole(requiredRole, owner)) {
         
     | 
| 
      
 86 
     | 
    
         
            +
                        revert ErrorComponentServiceExpectedRoleMissing(instanceNftId, requiredRole, owner);
         
     | 
| 
      
 87 
     | 
    
         
            +
                    }
         
     | 
| 
      
 88 
     | 
    
         
            +
                }
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
                // internal view functions
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                function _getAndVerifyComponentInfoAndInstance(
         
     | 
| 
      
 93 
     | 
    
         
            +
                    ObjectType expectedType
         
     | 
| 
      
 94 
     | 
    
         
            +
                )
         
     | 
| 
      
 95 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 96 
     | 
    
         
            +
                    view
         
     | 
| 
      
 97 
     | 
    
         
            +
                    returns(
         
     | 
| 
      
 98 
     | 
    
         
            +
                        NftId nftId,
         
     | 
| 
      
 99 
     | 
    
         
            +
                        IRegistry.ObjectInfo memory info, 
         
     | 
| 
      
 100 
     | 
    
         
            +
                        IInstance instance
         
     | 
| 
      
 101 
     | 
    
         
            +
                    )
         
     | 
| 
      
 102 
     | 
    
         
            +
                {
         
     | 
| 
      
 103 
     | 
    
         
            +
                    IRegistry registry = getRegistry();
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                    info = registry.getObjectInfo(msg.sender);
         
     | 
| 
      
 106 
     | 
    
         
            +
                    require(info.objectType == expectedType, "OBJECT_TYPE_INVALID");
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
                    nftId = info.nftId;
         
     | 
| 
      
 109 
     | 
    
         
            +
                    instance = _getInstance(info.parentNftId);
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
                    if (instance.getInstanceAccessManager().isTargetLocked(info.objectAddress)) {
         
     | 
| 
      
 112 
     | 
    
         
            +
                        revert IAccess.ErrorIAccessTargetLocked(info.objectAddress);
         
     | 
| 
      
 113 
     | 
    
         
            +
                    }
         
     | 
| 
      
 114 
     | 
    
         
            +
                }
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
                function _getInstance(NftId instanceNftId) internal view returns (IInstance) {
         
     | 
| 
      
 117 
     | 
    
         
            +
                    return IInstance(
         
     | 
| 
      
 118 
     | 
    
         
            +
                        getRegistry().getObjectInfo(
         
     | 
| 
      
 119 
     | 
    
         
            +
                            instanceNftId).objectAddress);
         
     | 
| 
      
 120 
     | 
    
         
            +
                }
         
     | 
| 
      
 121 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,49 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Blocknumber, blockBlocknumber, zeroBlocknumber} from "../../types/Blocknumber.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {Key32, KeyId} from "../../types/Key32.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ObjectType} from "../../types/ObjectType.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {StateId} from "../../types/StateId.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            import {ILifecycle} from "./ILifecycle.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            // TODO remove - internal only?
         
     | 
| 
      
 13 
     | 
    
         
            +
            interface IKeyValueStore is ILifecycle {
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
                struct Value {
         
     | 
| 
      
 16 
     | 
    
         
            +
                    Metadata metadata;
         
     | 
| 
      
 17 
     | 
    
         
            +
                    bytes data;
         
     | 
| 
      
 18 
     | 
    
         
            +
                }
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                struct Metadata {
         
     | 
| 
      
 21 
     | 
    
         
            +
                    ObjectType objectType;
         
     | 
| 
      
 22 
     | 
    
         
            +
                    StateId state;
         
     | 
| 
      
 23 
     | 
    
         
            +
                    // TODO updatedBy needs concept that says what value should go here
         
     | 
| 
      
 24 
     | 
    
         
            +
                    // eg account outside gif objects that initiated the tx
         
     | 
| 
      
 25 
     | 
    
         
            +
                    // implies the caller needs to be propagated through all calls up to key values store itself
         
     | 
| 
      
 26 
     | 
    
         
            +
                    // to always have the instance address there doesn't seem to make sense
         
     | 
| 
      
 27 
     | 
    
         
            +
                    address updatedBy;
         
     | 
| 
      
 28 
     | 
    
         
            +
                    Blocknumber updatedIn;
         
     | 
| 
      
 29 
     | 
    
         
            +
                    Blocknumber createdIn;
         
     | 
| 
      
 30 
     | 
    
         
            +
                }
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                event LogInfoCreated(ObjectType objectType, KeyId keyId, StateId state, address createdBy, address txOrigin);
         
     | 
| 
      
 33 
     | 
    
         
            +
                event LogInfoUpdated(ObjectType objectType, KeyId keyId, StateId state, address updatedBy, address txOrigin, Blocknumber lastUpdatedIn);
         
     | 
| 
      
 34 
     | 
    
         
            +
                event LogStateUpdated(ObjectType objectType, KeyId keyId, StateId stateOld, StateId stateNew, address updatedBy, address txOrigin, Blocknumber lastUpdatedIn);
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                // generic state changing functions
         
     | 
| 
      
 37 
     | 
    
         
            +
                // function create(Key32 key, bytes memory data) external;
         
     | 
| 
      
 38 
     | 
    
         
            +
                // function update(Key32 key, bytes memory data, StateId state) external;
         
     | 
| 
      
 39 
     | 
    
         
            +
                // function updateData(Key32 key, bytes memory data) external;
         
     | 
| 
      
 40 
     | 
    
         
            +
                // function updateState(Key32 key, StateId state) external;
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                function exists(Key32 key) external view returns (bool);
         
     | 
| 
      
 43 
     | 
    
         
            +
                function get(Key32 key) external view returns (Value memory value);
         
     | 
| 
      
 44 
     | 
    
         
            +
                function getData(Key32 key) external view returns (bytes memory data);
         
     | 
| 
      
 45 
     | 
    
         
            +
                function getMetadata(Key32 key) external view returns (Metadata memory metadata);
         
     | 
| 
      
 46 
     | 
    
         
            +
                function getState(Key32 key) external view returns (StateId state);
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                function toKey32(ObjectType objectType, KeyId id) external pure returns(Key32);
         
     | 
| 
      
 49 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {ObjectType} from "../../types/ObjectType.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {StateId} from "../../types/StateId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            interface ILifecycle {
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
                error ErrorNoLifecycle(NftId nftId, ObjectType objectType);
         
     | 
| 
      
 11 
     | 
    
         
            +
                error ErrorInvalidStateTransition(
         
     | 
| 
      
 12 
     | 
    
         
            +
                    ObjectType objectType,
         
     | 
| 
      
 13 
     | 
    
         
            +
                    StateId fromStateId,
         
     | 
| 
      
 14 
     | 
    
         
            +
                    StateId toStateId
         
     | 
| 
      
 15 
     | 
    
         
            +
                );
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                function hasLifecycle(
         
     | 
| 
      
 18 
     | 
    
         
            +
                    ObjectType objectType
         
     | 
| 
      
 19 
     | 
    
         
            +
                ) external view returns (bool);
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                function getInitialState(
         
     | 
| 
      
 22 
     | 
    
         
            +
                    ObjectType objectType
         
     | 
| 
      
 23 
     | 
    
         
            +
                ) external view returns (StateId);
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                function isValidTransition(
         
     | 
| 
      
 26 
     | 
    
         
            +
                    ObjectType objectType,
         
     | 
| 
      
 27 
     | 
    
         
            +
                    StateId fromId,
         
     | 
| 
      
 28 
     | 
    
         
            +
                    StateId toId
         
     | 
| 
      
 29 
     | 
    
         
            +
                ) external view returns (bool);
         
     | 
| 
      
 30 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,180 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Blocknumber, blockBlocknumber, zeroBlocknumber} from "../../types/Blocknumber.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {Key32, KeyId, Key32Lib} from "../../types/Key32.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ObjectType} from "../../types/ObjectType.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {StateId, ACTIVE, KEEP_STATE} from "../../types/StateId.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {Timestamp, TimestampLib} from "../../types/Timestamp.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            import {Lifecycle} from "./Lifecycle.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {IKeyValueStore} from "./IKeyValueStore.sol";
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            contract KeyValueStore is Lifecycle, IKeyValueStore {
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                mapping(Key32 key32 => Value value) private _value;
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                function create(
         
     | 
| 
      
 19 
     | 
    
         
            +
                    Key32 key32, 
         
     | 
| 
      
 20 
     | 
    
         
            +
                    bytes memory data
         
     | 
| 
      
 21 
     | 
    
         
            +
                )
         
     | 
| 
      
 22 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 23 
     | 
    
         
            +
                {
         
     | 
| 
      
 24 
     | 
    
         
            +
                    _create(key32, data);
         
     | 
| 
      
 25 
     | 
    
         
            +
                }
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                function _create(
         
     | 
| 
      
 28 
     | 
    
         
            +
                    Key32 key32, 
         
     | 
| 
      
 29 
     | 
    
         
            +
                    bytes memory data
         
     | 
| 
      
 30 
     | 
    
         
            +
                )
         
     | 
| 
      
 31 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 32 
     | 
    
         
            +
                {
         
     | 
| 
      
 33 
     | 
    
         
            +
                    ObjectType objectType = key32.toObjectType();
         
     | 
| 
      
 34 
     | 
    
         
            +
                    require(objectType.gtz(), "ERROR:KVS-010:TYPE_UNDEFINED");
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                    Metadata storage metadata = _value[key32].metadata;
         
     | 
| 
      
 37 
     | 
    
         
            +
                    require(metadata.state.eqz(), "ERROR:KVS-012:ALREADY_CREATED");
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                    address createdBy = msg.sender;
         
     | 
| 
      
 40 
     | 
    
         
            +
                    Blocknumber blocknumber = blockBlocknumber();
         
     | 
| 
      
 41 
     | 
    
         
            +
                    StateId initialState = hasLifecycle(objectType) ? getInitialState(objectType) : ACTIVE();
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
                    // set metadata
         
     | 
| 
      
 44 
     | 
    
         
            +
                    metadata.objectType = objectType;
         
     | 
| 
      
 45 
     | 
    
         
            +
                    metadata.state = initialState;
         
     | 
| 
      
 46 
     | 
    
         
            +
                    metadata.updatedBy = createdBy;
         
     | 
| 
      
 47 
     | 
    
         
            +
                    metadata.updatedIn = blocknumber;
         
     | 
| 
      
 48 
     | 
    
         
            +
                    metadata.createdIn = blocknumber;
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
                    // set data
         
     | 
| 
      
 51 
     | 
    
         
            +
                    _value[key32].data = data;
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
                    // solhint-disable-next-line avoid-tx-origin
         
     | 
| 
      
 54 
     | 
    
         
            +
                    emit LogInfoCreated(key32.toObjectType(), key32.toKeyId(), initialState, createdBy, tx.origin);
         
     | 
| 
      
 55 
     | 
    
         
            +
                }
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
                function update(
         
     | 
| 
      
 58 
     | 
    
         
            +
                    Key32 key32, 
         
     | 
| 
      
 59 
     | 
    
         
            +
                    bytes memory data,
         
     | 
| 
      
 60 
     | 
    
         
            +
                    StateId state
         
     | 
| 
      
 61 
     | 
    
         
            +
                ) 
         
     | 
| 
      
 62 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 63 
     | 
    
         
            +
                {
         
     | 
| 
      
 64 
     | 
    
         
            +
                    _update(key32, data, state);
         
     | 
| 
      
 65 
     | 
    
         
            +
                }
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                function _update(
         
     | 
| 
      
 68 
     | 
    
         
            +
                    Key32 key32, 
         
     | 
| 
      
 69 
     | 
    
         
            +
                    bytes memory data,
         
     | 
| 
      
 70 
     | 
    
         
            +
                    StateId state
         
     | 
| 
      
 71 
     | 
    
         
            +
                ) 
         
     | 
| 
      
 72 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 73 
     | 
    
         
            +
                {
         
     | 
| 
      
 74 
     | 
    
         
            +
                    require(state.gtz(), "ERROR:KVS-020:STATE_UNDEFINED");
         
     | 
| 
      
 75 
     | 
    
         
            +
                    Metadata storage metadata = _value[key32].metadata;
         
     | 
| 
      
 76 
     | 
    
         
            +
                    StateId stateOld = metadata.state;
         
     | 
| 
      
 77 
     | 
    
         
            +
                    require(stateOld.gtz(), "ERROR:KVS-021:NOT_EXISTING");
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
                    // update data
         
     | 
| 
      
 80 
     | 
    
         
            +
                    _value[key32].data = data;
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                    // update state 
         
     | 
| 
      
 83 
     | 
    
         
            +
                    if(state != KEEP_STATE()) {
         
     | 
| 
      
 84 
     | 
    
         
            +
                        metadata.state = state;
         
     | 
| 
      
 85 
     | 
    
         
            +
                    }
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                    // update reest of metadata
         
     | 
| 
      
 88 
     | 
    
         
            +
                    address updatedBy = msg.sender;
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Blocknumber lastUpdatedIn = metadata.updatedIn;
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
                    metadata.updatedBy = updatedBy;
         
     | 
| 
      
 92 
     | 
    
         
            +
                    metadata.updatedIn = blockBlocknumber();
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
                    // create log entries
         
     | 
| 
      
 95 
     | 
    
         
            +
                    // solhint-disable avoid-tx-origin
         
     | 
| 
      
 96 
     | 
    
         
            +
                    emit LogStateUpdated(key32.toObjectType(), key32.toKeyId(), stateOld, state, updatedBy, tx.origin, lastUpdatedIn);
         
     | 
| 
      
 97 
     | 
    
         
            +
                    emit LogInfoUpdated(key32.toObjectType(), key32.toKeyId(), state, updatedBy, tx.origin, lastUpdatedIn);
         
     | 
| 
      
 98 
     | 
    
         
            +
                    // solhing-enable
         
     | 
| 
      
 99 
     | 
    
         
            +
                }
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
                function updateData(Key32 key32, bytes memory data) 
         
     | 
| 
      
 102 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 103 
     | 
    
         
            +
                {
         
     | 
| 
      
 104 
     | 
    
         
            +
                    _updateData(key32, data);
         
     | 
| 
      
 105 
     | 
    
         
            +
                }
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
                function _updateData(Key32 key32, bytes memory data) 
         
     | 
| 
      
 108 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 109 
     | 
    
         
            +
                {
         
     | 
| 
      
 110 
     | 
    
         
            +
                    Metadata storage metadata = _value[key32].metadata;
         
     | 
| 
      
 111 
     | 
    
         
            +
                    StateId state = metadata.state;
         
     | 
| 
      
 112 
     | 
    
         
            +
                    require(state.gtz(), "ERROR:KVS-030:NOT_EXISTING");
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
                    // update data
         
     | 
| 
      
 115 
     | 
    
         
            +
                    _value[key32].data = data;
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
                    // update metadata
         
     | 
| 
      
 118 
     | 
    
         
            +
                    address updatedBy = msg.sender;
         
     | 
| 
      
 119 
     | 
    
         
            +
                    Blocknumber lastUpdatedIn = metadata.updatedIn;
         
     | 
| 
      
 120 
     | 
    
         
            +
                    metadata.updatedBy = updatedBy;
         
     | 
| 
      
 121 
     | 
    
         
            +
                    metadata.updatedIn = blockBlocknumber();
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
                    // create log entry
         
     | 
| 
      
 124 
     | 
    
         
            +
                    // solhint-disable-next-line avoid-tx-origin
         
     | 
| 
      
 125 
     | 
    
         
            +
                    emit LogInfoUpdated(key32.toObjectType(), key32.toKeyId(), state, updatedBy, tx.origin, lastUpdatedIn);
         
     | 
| 
      
 126 
     | 
    
         
            +
                }
         
     | 
| 
      
 127 
     | 
    
         
            +
             
     | 
| 
      
 128 
     | 
    
         
            +
                function updateState(Key32 key32, StateId state)
         
     | 
| 
      
 129 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 130 
     | 
    
         
            +
                {
         
     | 
| 
      
 131 
     | 
    
         
            +
                    _updateState(key32, state);
         
     | 
| 
      
 132 
     | 
    
         
            +
                }
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
                function _updateState(Key32 key32, StateId state)
         
     | 
| 
      
 135 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 136 
     | 
    
         
            +
                {
         
     | 
| 
      
 137 
     | 
    
         
            +
                    require(state.gtz(), "ERROR:KVS-040:STATE_UNDEFINED");
         
     | 
| 
      
 138 
     | 
    
         
            +
                    Metadata storage metadata = _value[key32].metadata;
         
     | 
| 
      
 139 
     | 
    
         
            +
                    StateId stateOld = metadata.state;
         
     | 
| 
      
 140 
     | 
    
         
            +
                    require(stateOld.gtz(), "ERROR:KVS-041:NOT_EXISTING");
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
                    // ensure state transistion is valid
         
     | 
| 
      
 143 
     | 
    
         
            +
                    checkTransition(metadata.objectType, stateOld, state);
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
                    // update metadata (and state)
         
     | 
| 
      
 146 
     | 
    
         
            +
                    address updatedBy = msg.sender;
         
     | 
| 
      
 147 
     | 
    
         
            +
                    Blocknumber lastUpdatedIn = metadata.updatedIn;
         
     | 
| 
      
 148 
     | 
    
         
            +
                    metadata.state = state;
         
     | 
| 
      
 149 
     | 
    
         
            +
                    metadata.updatedBy = updatedBy;
         
     | 
| 
      
 150 
     | 
    
         
            +
                    metadata.updatedIn = blockBlocknumber();
         
     | 
| 
      
 151 
     | 
    
         
            +
             
     | 
| 
      
 152 
     | 
    
         
            +
                    // create log entry
         
     | 
| 
      
 153 
     | 
    
         
            +
                    // solhint-disable-next-line avoid-tx-origin
         
     | 
| 
      
 154 
     | 
    
         
            +
                    emit LogStateUpdated(key32.toObjectType(), key32.toKeyId(), stateOld, state, updatedBy, tx.origin, lastUpdatedIn);
         
     | 
| 
      
 155 
     | 
    
         
            +
                }
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
                function exists(Key32 key32) public view returns (bool) {
         
     | 
| 
      
 158 
     | 
    
         
            +
                    return _value[key32].metadata.state.gtz();
         
     | 
| 
      
 159 
     | 
    
         
            +
                }
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
                function get(Key32 key32) public view returns (Value memory value) {
         
     | 
| 
      
 162 
     | 
    
         
            +
                    return _value[key32];
         
     | 
| 
      
 163 
     | 
    
         
            +
                }
         
     | 
| 
      
 164 
     | 
    
         
            +
             
     | 
| 
      
 165 
     | 
    
         
            +
                function getMetadata(Key32 key32) public view returns (Metadata memory metadata) {
         
     | 
| 
      
 166 
     | 
    
         
            +
                    return _value[key32].metadata;
         
     | 
| 
      
 167 
     | 
    
         
            +
                }
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
                function getData(Key32 key32) public view returns (bytes memory data) {
         
     | 
| 
      
 170 
     | 
    
         
            +
                    return _value[key32].data;
         
     | 
| 
      
 171 
     | 
    
         
            +
                }
         
     | 
| 
      
 172 
     | 
    
         
            +
             
     | 
| 
      
 173 
     | 
    
         
            +
                function getState(Key32 key32) public view returns (StateId state) {
         
     | 
| 
      
 174 
     | 
    
         
            +
                    return _value[key32].metadata.state;
         
     | 
| 
      
 175 
     | 
    
         
            +
                }
         
     | 
| 
      
 176 
     | 
    
         
            +
             
     | 
| 
      
 177 
     | 
    
         
            +
                function toKey32(ObjectType objectType, KeyId id) external pure override returns(Key32) {
         
     | 
| 
      
 178 
     | 
    
         
            +
                    return Key32Lib.toKey32(objectType, id);
         
     | 
| 
      
 179 
     | 
    
         
            +
                }
         
     | 
| 
      
 180 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,117 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; 
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ObjectType, COMPONENT, BUNDLE, POLICY, RISK, CLAIM} from "../../types/ObjectType.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {StateId, ACTIVE, PAUSED, ARCHIVED, CLOSED, APPLIED, COLLATERALIZED, REVOKED, SUBMITTED, CONFIRMED, DECLINED} from "../../types/StateId.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {ILifecycle} from "./ILifecycle.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            contract Lifecycle is
         
     | 
| 
      
 12 
     | 
    
         
            +
                Initializable,
         
     | 
| 
      
 13 
     | 
    
         
            +
                ILifecycle
         
     | 
| 
      
 14 
     | 
    
         
            +
            {
         
     | 
| 
      
 15 
     | 
    
         
            +
                mapping(ObjectType objectType => StateId initialState)
         
     | 
| 
      
 16 
     | 
    
         
            +
                    private _initialState;
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                mapping(ObjectType objectType => mapping(StateId stateFrom => mapping(StateId stateTo => bool isValid)))
         
     | 
| 
      
 19 
     | 
    
         
            +
                    private _isValidTransition;
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                function initializeLifecycle()
         
     | 
| 
      
 22 
     | 
    
         
            +
                    public
         
     | 
| 
      
 23 
     | 
    
         
            +
                    onlyInitializing
         
     | 
| 
      
 24 
     | 
    
         
            +
                {
         
     | 
| 
      
 25 
     | 
    
         
            +
                    _setupBundleLifecycle();
         
     | 
| 
      
 26 
     | 
    
         
            +
                    _setupComponentLifecycle();
         
     | 
| 
      
 27 
     | 
    
         
            +
                    _setupPolicyLifecycle();
         
     | 
| 
      
 28 
     | 
    
         
            +
                    _setupClaimLifecycle();
         
     | 
| 
      
 29 
     | 
    
         
            +
                    _setupRiskLifecycle();
         
     | 
| 
      
 30 
     | 
    
         
            +
                }
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                function hasLifecycle(
         
     | 
| 
      
 33 
     | 
    
         
            +
                    ObjectType objectType
         
     | 
| 
      
 34 
     | 
    
         
            +
                )
         
     | 
| 
      
 35 
     | 
    
         
            +
                    public
         
     | 
| 
      
 36 
     | 
    
         
            +
                    view
         
     | 
| 
      
 37 
     | 
    
         
            +
                    override
         
     | 
| 
      
 38 
     | 
    
         
            +
                    returns (bool)
         
     | 
| 
      
 39 
     | 
    
         
            +
                {
         
     | 
| 
      
 40 
     | 
    
         
            +
                    return _initialState[objectType].gtz();
         
     | 
| 
      
 41 
     | 
    
         
            +
                }
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
                function getInitialState(
         
     | 
| 
      
 44 
     | 
    
         
            +
                    ObjectType objectType
         
     | 
| 
      
 45 
     | 
    
         
            +
                )
         
     | 
| 
      
 46 
     | 
    
         
            +
                    public
         
     | 
| 
      
 47 
     | 
    
         
            +
                    view
         
     | 
| 
      
 48 
     | 
    
         
            +
                    returns (StateId)
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                    return _initialState[objectType];
         
     | 
| 
      
 51 
     | 
    
         
            +
                }
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
                function checkTransition(
         
     | 
| 
      
 54 
     | 
    
         
            +
                    ObjectType objectType,
         
     | 
| 
      
 55 
     | 
    
         
            +
                    StateId fromId,
         
     | 
| 
      
 56 
     | 
    
         
            +
                    StateId toId
         
     | 
| 
      
 57 
     | 
    
         
            +
                )
         
     | 
| 
      
 58 
     | 
    
         
            +
                    public
         
     | 
| 
      
 59 
     | 
    
         
            +
                    view
         
     | 
| 
      
 60 
     | 
    
         
            +
                {
         
     | 
| 
      
 61 
     | 
    
         
            +
                    // return if no life cycle support
         
     | 
| 
      
 62 
     | 
    
         
            +
                    if (_initialState[objectType].eqz()) {
         
     | 
| 
      
 63 
     | 
    
         
            +
                        return;
         
     | 
| 
      
 64 
     | 
    
         
            +
                    }
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
                    // enforce valid state transition
         
     | 
| 
      
 67 
     | 
    
         
            +
                    if (!_isValidTransition[objectType][fromId][toId]) {
         
     | 
| 
      
 68 
     | 
    
         
            +
                        revert ErrorInvalidStateTransition(objectType, fromId, toId);
         
     | 
| 
      
 69 
     | 
    
         
            +
                    }
         
     | 
| 
      
 70 
     | 
    
         
            +
                }
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                function isValidTransition(
         
     | 
| 
      
 73 
     | 
    
         
            +
                    ObjectType objectType,
         
     | 
| 
      
 74 
     | 
    
         
            +
                    StateId fromId,
         
     | 
| 
      
 75 
     | 
    
         
            +
                    StateId toId
         
     | 
| 
      
 76 
     | 
    
         
            +
                ) public view returns (bool) {
         
     | 
| 
      
 77 
     | 
    
         
            +
                    return _isValidTransition[objectType][fromId][toId];
         
     | 
| 
      
 78 
     | 
    
         
            +
                }
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
                function _setupComponentLifecycle() internal {
         
     | 
| 
      
 81 
     | 
    
         
            +
                    _initialState[COMPONENT()] = ACTIVE();
         
     | 
| 
      
 82 
     | 
    
         
            +
                    _isValidTransition[COMPONENT()][ACTIVE()][PAUSED()] = true;
         
     | 
| 
      
 83 
     | 
    
         
            +
                    _isValidTransition[COMPONENT()][PAUSED()][ACTIVE()] = true;
         
     | 
| 
      
 84 
     | 
    
         
            +
                    _isValidTransition[COMPONENT()][PAUSED()][ARCHIVED()] = true;
         
     | 
| 
      
 85 
     | 
    
         
            +
                }
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                function _setupBundleLifecycle() internal {
         
     | 
| 
      
 88 
     | 
    
         
            +
                    _initialState[BUNDLE()] = ACTIVE();
         
     | 
| 
      
 89 
     | 
    
         
            +
                    _isValidTransition[BUNDLE()][ACTIVE()][PAUSED()] = true;
         
     | 
| 
      
 90 
     | 
    
         
            +
                    _isValidTransition[BUNDLE()][ACTIVE()][CLOSED()] = true;
         
     | 
| 
      
 91 
     | 
    
         
            +
                    _isValidTransition[BUNDLE()][PAUSED()][ACTIVE()] = true;
         
     | 
| 
      
 92 
     | 
    
         
            +
                    _isValidTransition[BUNDLE()][PAUSED()][CLOSED()] = true;
         
     | 
| 
      
 93 
     | 
    
         
            +
                }
         
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
                function _setupPolicyLifecycle() internal {
         
     | 
| 
      
 96 
     | 
    
         
            +
                    _initialState[POLICY()] = APPLIED();
         
     | 
| 
      
 97 
     | 
    
         
            +
                    _isValidTransition[POLICY()][APPLIED()][REVOKED()] = true;
         
     | 
| 
      
 98 
     | 
    
         
            +
                    _isValidTransition[POLICY()][APPLIED()][DECLINED()] = true;
         
     | 
| 
      
 99 
     | 
    
         
            +
                    _isValidTransition[POLICY()][APPLIED()][COLLATERALIZED()] = true;
         
     | 
| 
      
 100 
     | 
    
         
            +
                    _isValidTransition[POLICY()][COLLATERALIZED()][ACTIVE()] = true;
         
     | 
| 
      
 101 
     | 
    
         
            +
                    _isValidTransition[POLICY()][ACTIVE()][CLOSED()] = true;
         
     | 
| 
      
 102 
     | 
    
         
            +
                }
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
                function _setupClaimLifecycle() internal {
         
     | 
| 
      
 105 
     | 
    
         
            +
                    _initialState[CLAIM()] = SUBMITTED();
         
     | 
| 
      
 106 
     | 
    
         
            +
                    _isValidTransition[CLAIM()][SUBMITTED()][CONFIRMED()] = true;
         
     | 
| 
      
 107 
     | 
    
         
            +
                    _isValidTransition[CLAIM()][SUBMITTED()][DECLINED()] = true;
         
     | 
| 
      
 108 
     | 
    
         
            +
                    _isValidTransition[CLAIM()][CONFIRMED()][CLOSED()] = true;
         
     | 
| 
      
 109 
     | 
    
         
            +
                }
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
                function _setupRiskLifecycle() internal {
         
     | 
| 
      
 112 
     | 
    
         
            +
                    _initialState[RISK()] = ACTIVE();
         
     | 
| 
      
 113 
     | 
    
         
            +
                    _isValidTransition[RISK()][ACTIVE()][PAUSED()] = true;
         
     | 
| 
      
 114 
     | 
    
         
            +
                    _isValidTransition[RISK()][PAUSED()][ACTIVE()] = true;
         
     | 
| 
      
 115 
     | 
    
         
            +
                    _isValidTransition[RISK()][PAUSED()][ARCHIVED()] = true;
         
     | 
| 
      
 116 
     | 
    
         
            +
                }
         
     | 
| 
      
 117 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,54 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            import {RoleId} from "../../types/RoleId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {Timestamp} from "../../types/Timestamp.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            interface IAccess {
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                enum Type {
         
     | 
| 
      
 12 
     | 
    
         
            +
                    NotInitialized,
         
     | 
| 
      
 13 
     | 
    
         
            +
                    Core,
         
     | 
| 
      
 14 
     | 
    
         
            +
                    Gif,
         
     | 
| 
      
 15 
     | 
    
         
            +
                    Custom        
         
     | 
| 
      
 16 
     | 
    
         
            +
                }
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                struct RoleInfo {
         
     | 
| 
      
 19 
     | 
    
         
            +
                    ShortString name;
         
     | 
| 
      
 20 
     | 
    
         
            +
                    Type rtype;
         
     | 
| 
      
 21 
     | 
    
         
            +
                    //bool isLocked;
         
     | 
| 
      
 22 
     | 
    
         
            +
                    RoleId admin;
         
     | 
| 
      
 23 
     | 
    
         
            +
                    Timestamp createdAt;
         
     | 
| 
      
 24 
     | 
    
         
            +
                    Timestamp updatedAt;
         
     | 
| 
      
 25 
     | 
    
         
            +
                }
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                struct TargetInfo {
         
     | 
| 
      
 28 
     | 
    
         
            +
                    ShortString name;
         
     | 
| 
      
 29 
     | 
    
         
            +
                    Type ttype;
         
     | 
| 
      
 30 
     | 
    
         
            +
                    bool isLocked;
         
     | 
| 
      
 31 
     | 
    
         
            +
                    Timestamp createdAt;
         
     | 
| 
      
 32 
     | 
    
         
            +
                    Timestamp updatedAt;
         
     | 
| 
      
 33 
     | 
    
         
            +
                }
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                error ErrorIAccessCallerIsNotRoleAdmin(address caller, RoleId roleId);
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
                error ErrorIAccessRoleIdDoesNotExist(RoleId roleId);
         
     | 
| 
      
 38 
     | 
    
         
            +
                error ErrorIAccessRoleIdTooBig(RoleId roleId);
         
     | 
| 
      
 39 
     | 
    
         
            +
                error ErrorIAccessRoleIdTooSmall(RoleId roleId);
         
     | 
| 
      
 40 
     | 
    
         
            +
                error ErrorIAccessRoleIdExists(RoleId roleId);
         
     | 
| 
      
 41 
     | 
    
         
            +
                error ErrorIAccessRoleNameEmpty(RoleId roleId);
         
     | 
| 
      
 42 
     | 
    
         
            +
                error ErrorIAccessRoleNameExists(RoleId roleId, RoleId existingRoleId, ShortString name);
         
     | 
| 
      
 43 
     | 
    
         
            +
                error ErrorIAccessRoleTypeInvalid(RoleId roleId, Type rtype);
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
                error ErrorIAccessTargetAddressZero();
         
     | 
| 
      
 46 
     | 
    
         
            +
                error ErrorIAccessTargetDoesNotExist(address target);
         
     | 
| 
      
 47 
     | 
    
         
            +
                error ErrorIAccessTargetExists(address target, ShortString name);
         
     | 
| 
      
 48 
     | 
    
         
            +
                error ErrorIAccessTargetTypeInvalid(address target, Type ttype);
         
     | 
| 
      
 49 
     | 
    
         
            +
                error ErrorIAccessTargetNameEmpty(address target);
         
     | 
| 
      
 50 
     | 
    
         
            +
                error ErrorIAccessTargetNameExists(address target, address existingTarget, ShortString name);
         
     | 
| 
      
 51 
     | 
    
         
            +
                error ErrorIAccessTargetLocked(address target);
         
     | 
| 
      
 52 
     | 
    
         
            +
                error ErrorIAccessTargetNotRegistered(address target);
         
     | 
| 
      
 53 
     | 
    
         
            +
                error ErrorIAccessTargetAuthorityInvalid(address target, address targetAuthority);
         
     | 
| 
      
 54 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,23 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {Amount} from "../../types/Amount.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {Fee} from "../../types/Fee.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {Seconds} from "../../types/Seconds.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {Timestamp} from "../../types/Timestamp.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            interface IBundle {
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
                struct BundleInfo {
         
     | 
| 
      
 13 
     | 
    
         
            +
                    NftId poolNftId;
         
     | 
| 
      
 14 
     | 
    
         
            +
                    Fee fee; // bundle fee on net premium amounts
         
     | 
| 
      
 15 
     | 
    
         
            +
                    bytes filter; // required conditions for applications to be considered for collateralization by this bundle
         
     | 
| 
      
 16 
     | 
    
         
            +
                    Amount capitalAmount; // net stakings + net premiums - payouts
         
     | 
| 
      
 17 
     | 
    
         
            +
                    Amount lockedAmount; // capital amount linked to collateralizaion of non-closed policies (<= capital amount)
         
     | 
| 
      
 18 
     | 
    
         
            +
                    Amount feeAmount; // accumulated fee amount
         
     | 
| 
      
 19 
     | 
    
         
            +
                    Seconds lifetime;
         
     | 
| 
      
 20 
     | 
    
         
            +
                    Timestamp expiredAt; // no new policies starting with this timestamp
         
     | 
| 
      
 21 
     | 
    
         
            +
                    Timestamp closedAt; // no open policies, locked amount = 0
         
     | 
| 
      
 22 
     | 
    
         
            +
                }
         
     | 
| 
      
 23 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,41 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            import {Amount} from "../../types/Amount.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {Fee} from "../../types/Fee.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {RoleId} from "../../types/RoleId.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {TokenHandler} from "../../shared/TokenHandler.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {UFixed} from "../../types/UFixed.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            interface IComponents {
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
                struct ComponentInfo {
         
     | 
| 
      
 16 
     | 
    
         
            +
                    string name; // component name (needs to be unique per instance)
         
     | 
| 
      
 17 
     | 
    
         
            +
                    IERC20Metadata token;
         
     | 
| 
      
 18 
     | 
    
         
            +
                    TokenHandler tokenHandler;
         
     | 
| 
      
 19 
     | 
    
         
            +
                    address wallet;
         
     | 
| 
      
 20 
     | 
    
         
            +
                    Amount balanceAmount; // calculated balance (may not necessarily match withg wallet balance)
         
     | 
| 
      
 21 
     | 
    
         
            +
                    Amount feeAmount; // accumulated fees belonging to component owner
         
     | 
| 
      
 22 
     | 
    
         
            +
                    bytes data; // will hold component type specific additional info (eg encoded pool info)
         
     | 
| 
      
 23 
     | 
    
         
            +
                }
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                struct PoolInfo {
         
     | 
| 
      
 26 
     | 
    
         
            +
                    NftId productNftId; // the nft of the product this pool is linked to
         
     | 
| 
      
 27 
     | 
    
         
            +
                    RoleId bundleOwnerRole; // the required role for bundle owners
         
     | 
| 
      
 28 
     | 
    
         
            +
                    // TODO maxCapitalAmount -> maxBalanceAmount
         
     | 
| 
      
 29 
     | 
    
         
            +
                    uint256 maxCapitalAmount; // max capital amount allowed for pool
         
     | 
| 
      
 30 
     | 
    
         
            +
                    uint256 balanceAmount; // current pool balance (accounting view)
         
     | 
| 
      
 31 
     | 
    
         
            +
                    uint256 feeAmount; // accumulated fee amount
         
     | 
| 
      
 32 
     | 
    
         
            +
                    bool isInterceptingBundleTransfers; // intercepts nft transfers for bundles
         
     | 
| 
      
 33 
     | 
    
         
            +
                    bool isExternallyManaged; // funding bundles is restricted to book keeping, actual funds may be provided as needed to support payouts
         
     | 
| 
      
 34 
     | 
    
         
            +
                    bool isVerifyingApplications; // underwriting requires the pool component checks/confirms the applications 
         
     | 
| 
      
 35 
     | 
    
         
            +
                    UFixed collateralizationLevel; // factor to calculate collateral for sum insurance (default 100%)
         
     | 
| 
      
 36 
     | 
    
         
            +
                    UFixed retentionLevel; // amount of collateral held in pool (default 100%)
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Fee poolFee; // pool fee on net premium
         
     | 
| 
      
 38 
     | 
    
         
            +
                    Fee stakingFee; // pool fee on staked capital from investor
         
     | 
| 
      
 39 
     | 
    
         
            +
                    Fee performanceFee; // pool fee on profits from capital investors
         
     | 
| 
      
 40 
     | 
    
         
            +
                }
         
     | 
| 
      
 41 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,41 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.20;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {DistributorType} from "../../types/DistributorType.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {NftId} from "../../types/NftId.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {Timestamp} from "../../types/Timestamp.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {UFixed} from "../../types/UFixed.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            interface IDistribution {
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                struct DistributorTypeInfo {
         
     | 
| 
      
 12 
     | 
    
         
            +
                    string name;
         
     | 
| 
      
 13 
     | 
    
         
            +
                    UFixed minDiscountPercentage;
         
     | 
| 
      
 14 
     | 
    
         
            +
                    UFixed maxDiscountPercentage;
         
     | 
| 
      
 15 
     | 
    
         
            +
                    UFixed commissionPercentage;
         
     | 
| 
      
 16 
     | 
    
         
            +
                    uint32 maxReferralCount;
         
     | 
| 
      
 17 
     | 
    
         
            +
                    uint32 maxReferralLifetime;
         
     | 
| 
      
 18 
     | 
    
         
            +
                    bool allowSelfReferrals;
         
     | 
| 
      
 19 
     | 
    
         
            +
                    bool allowRenewals;
         
     | 
| 
      
 20 
     | 
    
         
            +
                    bytes data;
         
     | 
| 
      
 21 
     | 
    
         
            +
                }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
                struct DistributorInfo {
         
     | 
| 
      
 24 
     | 
    
         
            +
                    DistributorType distributorType;
         
     | 
| 
      
 25 
     | 
    
         
            +
                    bool active;
         
     | 
| 
      
 26 
     | 
    
         
            +
                    bytes data;
         
     | 
| 
      
 27 
     | 
    
         
            +
                    uint256 sumCommisions;
         
     | 
| 
      
 28 
     | 
    
         
            +
                    uint256 numPoliciesSold;
         
     | 
| 
      
 29 
     | 
    
         
            +
                }
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
                struct ReferralInfo {   
         
     | 
| 
      
 32 
     | 
    
         
            +
                    NftId distributorNftId;
         
     | 
| 
      
 33 
     | 
    
         
            +
                    string referralCode;
         
     | 
| 
      
 34 
     | 
    
         
            +
                    UFixed discountPercentage;
         
     | 
| 
      
 35 
     | 
    
         
            +
                    uint32 maxReferrals;
         
     | 
| 
      
 36 
     | 
    
         
            +
                    uint32 usedReferrals;
         
     | 
| 
      
 37 
     | 
    
         
            +
                    Timestamp expiryAt;
         
     | 
| 
      
 38 
     | 
    
         
            +
                    bytes data;
         
     | 
| 
      
 39 
     | 
    
         
            +
                }
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            }
         
     |