@etherisc/gif-next 0.0.2-e922e07-736 → 0.0.2-e964d24-516
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -83
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +129 -14
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1556 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +780 -0
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +203 -14
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +110 -283
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +68 -54
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +309 -2078
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +183 -76
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +434 -2823
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +493 -129
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +406 -192
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +224 -291
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +45 -82
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +44 -14
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +38 -13
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +56 -73
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1288 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +696 -0
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +291 -189
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +231 -165
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1077 -0
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
 - package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +160 -204
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1622 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +708 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +918 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +648 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1376 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +748 -0
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → product/IApplicationService.sol/IApplicationService.json} +184 -100
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +743 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IPolicyService.sol/IPolicyService.json +211 -100
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +120 -166
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +210 -21
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +86 -28
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1281 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +740 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +1004 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +688 -0
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
 - package/artifacts/contracts/{components → product}/Product.sol/Product.json +121 -22
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +864 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +640 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +19 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +5 -37
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +35 -16
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +4 -4
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +26 -53
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +27 -40
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +30 -18
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
 - package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/Component.sol/Component.json +106 -7
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/ComponentService.sol/ComponentService.json +114 -35
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +196 -7
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +0 -13
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +85 -27
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +8 -21
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +20 -33
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +8 -21
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +91 -28
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +523 -0
 - package/artifacts/contracts/staking/StakeingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakeingServiceManager.sol/StakingServiceManager.json +628 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +767 -0
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +281 -0
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Blocknumber.sol/BlocknumberLib.json +3 -3
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/DistributorType.sol/DistributorTypeLib.json +5 -5
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Key32.sol/Key32Lib.json +3 -3
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +166 -0
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/NftIdSet.sol/LibNftIdSet.json +3 -3
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/ObjectType.sol/ObjectTypeLib.json +3 -3
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Referral.sol/ReferralLib.json +5 -5
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/RiskId.sol/RiskIdLib.json +5 -5
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/RoleId.sol/RoleIdLib.json +5 -5
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Seconds.sol/SecondsLib.json +3 -3
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +20 -7
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/UFixed.sol/MathLib.json +3 -3
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/UFixed.sol/UFixedLib.json +3 -3
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Version.sol/VersionLib.json +3 -3
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Version.sol/VersionPartLib.json +3 -3
 - package/contracts/{components → distribution}/Distribution.sol +21 -16
 - package/contracts/distribution/DistributionService.sol +348 -0
 - package/contracts/{instance/service → distribution}/DistributionServiceManager.sol +5 -5
 - package/contracts/{components → distribution}/IDistributionComponent.sol +7 -7
 - package/contracts/{instance/service → distribution}/IDistributionService.sol +19 -30
 - package/contracts/instance/BundleManager.sol +13 -12
 - package/contracts/instance/Cloneable.sol +7 -2
 - package/contracts/instance/IInstance.sol +48 -63
 - package/contracts/instance/IInstanceService.sol +31 -17
 - package/contracts/instance/Instance.sol +131 -193
 - package/contracts/instance/InstanceAccessManager.sol +405 -161
 - package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
 - package/contracts/instance/InstanceReader.sol +101 -26
 - package/contracts/instance/InstanceService.sol +173 -354
 - package/contracts/instance/InstanceServiceManager.sol +1 -1
 - package/contracts/instance/InstanceStore.sol +211 -0
 - package/contracts/instance/ObjectManager.sol +9 -11
 - package/contracts/instance/base/IKeyValueStore.sol +5 -5
 - package/contracts/instance/base/ILifecycle.sol +3 -3
 - package/contracts/instance/base/KeyValueStore.sol +18 -41
 - package/contracts/instance/base/Lifecycle.sol +27 -7
 - package/contracts/instance/module/IAccess.sol +23 -16
 - package/contracts/instance/module/IBundle.sol +10 -8
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +7 -6
 - package/contracts/instance/module/IPolicy.sol +19 -14
 - package/contracts/instance/module/IRisk.sol +1 -1
 - package/contracts/instance/module/ISetup.sol +5 -18
 - package/contracts/instance/module/ITreasury.sol +2 -2
 - package/contracts/pool/BundleService.sol +382 -0
 - package/contracts/{instance/service → pool}/BundleServiceManager.sol +5 -5
 - package/contracts/pool/IBundleService.sol +118 -0
 - package/contracts/{components → pool}/IPoolComponent.sol +19 -56
 - package/contracts/pool/IPoolService.sol +114 -0
 - package/contracts/{components → pool}/Pool.sol +62 -138
 - package/contracts/pool/PoolService.sol +403 -0
 - package/contracts/{instance/service → pool}/PoolServiceManager.sol +5 -5
 - package/contracts/product/ApplicationService.sol +186 -0
 - package/contracts/{instance/service → product}/ApplicationServiceManager.sol +2 -2
 - package/contracts/product/ClaimService.sol +437 -0
 - package/contracts/{instance/service → product}/ClaimServiceManager.sol +2 -2
 - package/contracts/{instance/service → product}/IApplicationService.sol +14 -34
 - package/contracts/product/IClaimService.sol +90 -0
 - package/contracts/{instance/service → product}/IPolicyService.sol +34 -26
 - package/contracts/product/IPricingService.sol +37 -0
 - package/contracts/{components → product}/IProductComponent.sol +11 -10
 - package/contracts/{instance/service → product}/IProductService.sol +10 -10
 - package/contracts/product/PolicyService.sol +376 -0
 - package/contracts/{instance/service → product}/PolicyServiceManager.sol +5 -5
 - package/contracts/product/PricingService.sol +275 -0
 - package/contracts/product/PricingServiceManager.sol +51 -0
 - package/contracts/{components → product}/Product.sol +160 -74
 - package/contracts/product/ProductService.sol +210 -0
 - package/contracts/{instance/service → product}/ProductServiceManager.sol +5 -5
 - package/contracts/registry/ChainNft.sol +8 -0
 - package/contracts/registry/IRegistry.sol +6 -4
 - package/contracts/registry/IRegistryService.sol +6 -7
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +26 -23
 - package/contracts/registry/RegistryAccessManager.sol +1 -1
 - package/contracts/registry/RegistryService.sol +33 -31
 - package/contracts/registry/RegistryServiceManager.sol +0 -2
 - package/contracts/registry/ReleaseManager.sol +24 -22
 - package/contracts/registry/TokenRegistry.sol +2 -2
 - package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/{components → shared}/Component.sol +68 -18
 - package/contracts/shared/ComponentService.sol +150 -0
 - package/contracts/{components → shared}/IComponent.sol +28 -6
 - package/contracts/shared/INftOwnable.sol +1 -1
 - package/contracts/shared/IPolicyHolder.sol +24 -10
 - package/contracts/shared/IRegistryLinked.sol +0 -1
 - package/contracts/shared/IService.sol +6 -6
 - package/contracts/shared/IVersionable.sol +1 -1
 - package/contracts/shared/NftOwnable.sol +1 -3
 - package/contracts/shared/PolicyHolder.sol +31 -18
 - package/contracts/shared/ProxyManager.sol +3 -3
 - package/contracts/shared/Registerable.sol +12 -11
 - package/contracts/shared/RegistryLinked.sol +0 -5
 - package/contracts/shared/Service.sol +23 -9
 - package/contracts/shared/TokenHandler.sol +14 -6
 - package/contracts/shared/Versionable.sol +1 -1
 - package/contracts/staking/IStakingService.sol +102 -0
 - package/contracts/staking/StakeingServiceManager.sol +37 -0
 - package/contracts/staking/StakingService.sol +166 -0
 - package/contracts/type/Amount.sol +109 -0
 - package/contracts/{types → type}/Blocknumber.sol +1 -0
 - package/contracts/{types → type}/ClaimId.sol +25 -2
 - package/contracts/{types → type}/Fee.sol +17 -8
 - package/contracts/{types → type}/NftId.sol +8 -0
 - package/contracts/{types → type}/NftIdSet.sol +1 -1
 - package/contracts/{types → type}/ObjectType.sol +10 -5
 - package/contracts/{types → type}/PayoutId.sol +33 -5
 - package/contracts/{types → type}/RoleId.sol +6 -4
 - package/contracts/{types → type}/StateId.sol +7 -2
 - package/contracts/{types → type}/Timestamp.sol +6 -0
 - package/contracts/{types → type}/UFixed.sol +1 -0
 - package/contracts/{types → type}/Version.sol +1 -0
 - package/package.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1096
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1724
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -801
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -347
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -727
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -649
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
 - package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
 - package/contracts/instance/base/ComponentService.sol +0 -134
 - package/contracts/instance/service/ApplicationService.sol +0 -349
 - package/contracts/instance/service/BundleService.sol +0 -299
 - package/contracts/instance/service/ClaimService.sol +0 -151
 - package/contracts/instance/service/DistributionService.sol +0 -450
 - package/contracts/instance/service/IBundleService.sol +0 -55
 - package/contracts/instance/service/IClaimService.sol +0 -61
 - package/contracts/instance/service/IPoolService.sol +0 -20
 - package/contracts/instance/service/PolicyService.sol +0 -394
 - package/contracts/instance/service/PoolService.sol +0 -109
 - package/contracts/instance/service/ProductService.sol +0 -233
 - package/contracts/shared/ContractDeployerLib.sol +0 -72
 - package/contracts/test/TestFee.sol +0 -25
 - package/contracts/test/TestRegisterable.sol +0 -18
 - package/contracts/test/TestRoleId.sol +0 -14
 - package/contracts/test/TestService.sol +0 -25
 - package/contracts/test/TestToken.sol +0 -26
 - package/contracts/test/TestVersion.sol +0 -44
 - package/contracts/test/TestVersionable.sol +0 -17
 - package/contracts/test/Usdc.sol +0 -26
 - package/contracts/types/ChainId.sol +0 -38
 - package/contracts/types/NumberId.sol +0 -52
 - /package/contracts/{types → type}/AddressSet.sol +0 -0
 - /package/contracts/{types → type}/DistributorType.sol +0 -0
 - /package/contracts/{types → type}/Key32.sol +0 -0
 - /package/contracts/{types → type}/Referral.sol +0 -0
 - /package/contracts/{types → type}/RiskId.sol +0 -0
 - /package/contracts/{types → type}/Seconds.sol +0 -0
 
| 
         @@ -0,0 +1,210 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
      
 2 
     | 
    
         
            +
            pragma solidity ^0.8.19;
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            import {IRegistry} from "../registry/IRegistry.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {IProductComponent} from "./IProductComponent.sol";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {Product} from "./Product.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {IComponent} from "../shared/IComponent.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {IPoolComponent} from "../pool/IPoolComponent.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {IDistributionComponent} from "../distribution/IDistributionComponent.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {IInstance} from "../instance/IInstance.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {IPolicy} from "../instance/module/IPolicy.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {IRisk} from "../instance/module/IRisk.sol";
         
     | 
| 
      
 13 
     | 
    
         
            +
            import {IBundle} from "../instance/module/IBundle.sol";
         
     | 
| 
      
 14 
     | 
    
         
            +
            import {IProductService} from "./IProductService.sol";
         
     | 
| 
      
 15 
     | 
    
         
            +
            import {ITreasury} from "../instance/module/ITreasury.sol";
         
     | 
| 
      
 16 
     | 
    
         
            +
            import {ISetup} from "../instance/module/ISetup.sol";
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            import {TokenHandler} from "../shared/TokenHandler.sol";
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            import {IVersionable} from "../shared/IVersionable.sol";
         
     | 
| 
      
 21 
     | 
    
         
            +
            import {Versionable} from "../shared/Versionable.sol";
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            import {Timestamp, zeroTimestamp} from "../type/Timestamp.sol";
         
     | 
| 
      
 24 
     | 
    
         
            +
            import {UFixed, UFixedLib} from "../type/UFixed.sol";
         
     | 
| 
      
 25 
     | 
    
         
            +
            import {Blocknumber, blockNumber} from "../type/Blocknumber.sol";
         
     | 
| 
      
 26 
     | 
    
         
            +
            import {ObjectType, PRODUCT, POOL, POLICY} from "../type/ObjectType.sol";
         
     | 
| 
      
 27 
     | 
    
         
            +
            import {APPLIED, ACTIVE, KEEP_STATE} from "../type/StateId.sol";
         
     | 
| 
      
 28 
     | 
    
         
            +
            import {NftId, NftIdLib, zeroNftId} from "../type/NftId.sol";
         
     | 
| 
      
 29 
     | 
    
         
            +
            import {Fee, FeeLib} from "../type/Fee.sol";
         
     | 
| 
      
 30 
     | 
    
         
            +
            import {ReferralId} from "../type/Referral.sol";
         
     | 
| 
      
 31 
     | 
    
         
            +
            import {RiskId} from "../type/RiskId.sol";
         
     | 
| 
      
 32 
     | 
    
         
            +
            import {StateId} from "../type/StateId.sol";
         
     | 
| 
      
 33 
     | 
    
         
            +
            import {Version, VersionLib} from "../type/Version.sol";
         
     | 
| 
      
 34 
     | 
    
         
            +
            import {RoleId, PRODUCT_OWNER_ROLE} from "../type/RoleId.sol";
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            import {IService} from "../shared/IService.sol";
         
     | 
| 
      
 37 
     | 
    
         
            +
            import {Service} from "../shared/Service.sol";
         
     | 
| 
      
 38 
     | 
    
         
            +
            import {ComponentService} from "../shared/ComponentService.sol";
         
     | 
| 
      
 39 
     | 
    
         
            +
            import {IProductService} from "./IProductService.sol";
         
     | 
| 
      
 40 
     | 
    
         
            +
            import {InstanceReader} from "../instance/InstanceReader.sol";
         
     | 
| 
      
 41 
     | 
    
         
            +
            import {IPoolService} from "../pool/PoolService.sol";
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            // TODO or name this ProtectionService to have Product be something more generic (loan, savings account, ...)
         
     | 
| 
      
 44 
     | 
    
         
            +
            contract ProductService is ComponentService, IProductService {
         
     | 
| 
      
 45 
     | 
    
         
            +
                using NftIdLib for NftId;
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
                IPoolService internal _poolService;
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                event LogProductServiceSender(address sender);
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                function _initialize(
         
     | 
| 
      
 52 
     | 
    
         
            +
                    address owner, 
         
     | 
| 
      
 53 
     | 
    
         
            +
                    bytes memory data
         
     | 
| 
      
 54 
     | 
    
         
            +
                )
         
     | 
| 
      
 55 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 56 
     | 
    
         
            +
                    initializer
         
     | 
| 
      
 57 
     | 
    
         
            +
                    virtual override
         
     | 
| 
      
 58 
     | 
    
         
            +
                {
         
     | 
| 
      
 59 
     | 
    
         
            +
                    address registryAddress;
         
     | 
| 
      
 60 
     | 
    
         
            +
                    address initialOwner;
         
     | 
| 
      
 61 
     | 
    
         
            +
                    (registryAddress, initialOwner) = abi.decode(data, (address, address));
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
                    initializeService(registryAddress, address(0), owner);
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
                    _poolService = IPoolService(getRegistry().getServiceAddress(POOL(), getVersion().toMajorPart()));
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                    registerInterface(type(IProductService).interfaceId);
         
     | 
| 
      
 68 
     | 
    
         
            +
                }
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                function register(address productAddress) 
         
     | 
| 
      
 72 
     | 
    
         
            +
                    external
         
     | 
| 
      
 73 
     | 
    
         
            +
                    returns(NftId productNftId)
         
     | 
| 
      
 74 
     | 
    
         
            +
                {
         
     | 
| 
      
 75 
     | 
    
         
            +
                    (
         
     | 
| 
      
 76 
     | 
    
         
            +
                        IComponent component,
         
     | 
| 
      
 77 
     | 
    
         
            +
                        address owner,
         
     | 
| 
      
 78 
     | 
    
         
            +
                        IInstance instance,
         
     | 
| 
      
 79 
     | 
    
         
            +
                        NftId instanceNftId
         
     | 
| 
      
 80 
     | 
    
         
            +
                    ) = _checkComponentForRegistration(
         
     | 
| 
      
 81 
     | 
    
         
            +
                        productAddress,
         
     | 
| 
      
 82 
     | 
    
         
            +
                        PRODUCT(),
         
     | 
| 
      
 83 
     | 
    
         
            +
                        PRODUCT_OWNER_ROLE());
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
                    IProductComponent product = IProductComponent(productAddress);
         
     | 
| 
      
 86 
     | 
    
         
            +
                    IRegistry.ObjectInfo memory productInfo = getRegistryService().registerProduct(product, owner);
         
     | 
| 
      
 87 
     | 
    
         
            +
                    productNftId = productInfo.nftId;
         
     | 
| 
      
 88 
     | 
    
         
            +
                    _createProductSetup(
         
     | 
| 
      
 89 
     | 
    
         
            +
                        instance, 
         
     | 
| 
      
 90 
     | 
    
         
            +
                        product, 
         
     | 
| 
      
 91 
     | 
    
         
            +
                        productNftId);
         
     | 
| 
      
 92 
     | 
    
         
            +
                }
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
                function _createProductSetup(
         
     | 
| 
      
 96 
     | 
    
         
            +
                    IInstance instance, 
         
     | 
| 
      
 97 
     | 
    
         
            +
                    IProductComponent product, 
         
     | 
| 
      
 98 
     | 
    
         
            +
                    NftId productNftId 
         
     | 
| 
      
 99 
     | 
    
         
            +
                )
         
     | 
| 
      
 100 
     | 
    
         
            +
                    internal
         
     | 
| 
      
 101 
     | 
    
         
            +
                    returns (string memory name)
         
     | 
| 
      
 102 
     | 
    
         
            +
                {
         
     | 
| 
      
 103 
     | 
    
         
            +
                    // wire distribution and pool components to product component
         
     | 
| 
      
 104 
     | 
    
         
            +
                    ISetup.ProductSetupInfo memory setup = product.getSetupInfo();
         
     | 
| 
      
 105 
     | 
    
         
            +
                    IComponent distribution = IComponent(getRegistry().getObjectInfo(setup.distributionNftId).objectAddress);
         
     | 
| 
      
 106 
     | 
    
         
            +
                    IComponent pool = IComponent(getRegistry().getObjectInfo(setup.poolNftId).objectAddress);
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
                    distribution.setProductNftId(productNftId);
         
     | 
| 
      
 109 
     | 
    
         
            +
                    pool.setProductNftId(productNftId);
         
     | 
| 
      
 110 
     | 
    
         
            +
                    product.setProductNftId(productNftId);
         
     | 
| 
      
 111 
     | 
    
         
            +
                    product.linkToRegisteredNftId();
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
                    // create product setup in instance
         
     | 
| 
      
 114 
     | 
    
         
            +
                    instance.getInstanceStore().createProductSetup(productNftId, product.getSetupInfo());
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
                    bytes4[][] memory selectors = new bytes4[][](1);
         
     | 
| 
      
 117 
     | 
    
         
            +
                    selectors[0] = new bytes4[](1);
         
     | 
| 
      
 118 
     | 
    
         
            +
                    selectors[0][0] = IProductComponent.setFees.selector;
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
                    RoleId[] memory roles = new RoleId[](1);
         
     | 
| 
      
 121 
     | 
    
         
            +
                    roles[0] = PRODUCT_OWNER_ROLE();
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
                    // create target for instane access manager
         
     | 
| 
      
 124 
     | 
    
         
            +
                    getInstanceService().createGifTarget(
         
     | 
| 
      
 125 
     | 
    
         
            +
                        getRegistry().getNftId(address(instance)), 
         
     | 
| 
      
 126 
     | 
    
         
            +
                        address(product), 
         
     | 
| 
      
 127 
     | 
    
         
            +
                        product.getName(),
         
     | 
| 
      
 128 
     | 
    
         
            +
                        selectors,
         
     | 
| 
      
 129 
     | 
    
         
            +
                        roles);
         
     | 
| 
      
 130 
     | 
    
         
            +
                }
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
                function getDomain() public pure override returns(ObjectType) {
         
     | 
| 
      
 133 
     | 
    
         
            +
                    return PRODUCT();
         
     | 
| 
      
 134 
     | 
    
         
            +
                }
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
             
     | 
| 
      
 137 
     | 
    
         
            +
                function _decodeAndVerifyProductData(bytes memory data) 
         
     | 
| 
      
 138 
     | 
    
         
            +
                    internal 
         
     | 
| 
      
 139 
     | 
    
         
            +
                    returns(string memory name, ISetup.ProductSetupInfo memory setup)
         
     | 
| 
      
 140 
     | 
    
         
            +
                {
         
     | 
| 
      
 141 
     | 
    
         
            +
                    (name, setup) = abi.decode(
         
     | 
| 
      
 142 
     | 
    
         
            +
                        data,
         
     | 
| 
      
 143 
     | 
    
         
            +
                        (string, ISetup.ProductSetupInfo)
         
     | 
| 
      
 144 
     | 
    
         
            +
                    );
         
     | 
| 
      
 145 
     | 
    
         
            +
             
     | 
| 
      
 146 
     | 
    
         
            +
                    // TODO add checks
         
     | 
| 
      
 147 
     | 
    
         
            +
                    // if(wallet == address(0)) {
         
     | 
| 
      
 148 
     | 
    
         
            +
                    //     revert WalletIsZero();
         
     | 
| 
      
 149 
     | 
    
         
            +
                    // }
         
     | 
| 
      
 150 
     | 
    
         
            +
                }
         
     | 
| 
      
 151 
     | 
    
         
            +
             
     | 
| 
      
 152 
     | 
    
         
            +
                function setFees(
         
     | 
| 
      
 153 
     | 
    
         
            +
                    Fee memory productFee,
         
     | 
| 
      
 154 
     | 
    
         
            +
                    Fee memory processingFee
         
     | 
| 
      
 155 
     | 
    
         
            +
                )
         
     | 
| 
      
 156 
     | 
    
         
            +
                    external
         
     | 
| 
      
 157 
     | 
    
         
            +
                {
         
     | 
| 
      
 158 
     | 
    
         
            +
                    // TODO check args 
         
     | 
| 
      
 159 
     | 
    
         
            +
             
     | 
| 
      
 160 
     | 
    
         
            +
                    (NftId productNftId,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(PRODUCT());
         
     | 
| 
      
 161 
     | 
    
         
            +
                    InstanceReader instanceReader = instance.getInstanceReader();
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
                    ISetup.ProductSetupInfo memory productSetupInfo = instanceReader.getProductSetupInfo(productNftId);
         
     | 
| 
      
 164 
     | 
    
         
            +
             
     | 
| 
      
 165 
     | 
    
         
            +
                    productSetupInfo.productFee = productFee;
         
     | 
| 
      
 166 
     | 
    
         
            +
                    productSetupInfo.processingFee = processingFee;
         
     | 
| 
      
 167 
     | 
    
         
            +
                    
         
     | 
| 
      
 168 
     | 
    
         
            +
                    instance.getInstanceStore().updateProductSetup(productNftId, productSetupInfo, KEEP_STATE());
         
     | 
| 
      
 169 
     | 
    
         
            +
                }
         
     | 
| 
      
 170 
     | 
    
         
            +
             
     | 
| 
      
 171 
     | 
    
         
            +
                function createRisk(
         
     | 
| 
      
 172 
     | 
    
         
            +
                    RiskId riskId,
         
     | 
| 
      
 173 
     | 
    
         
            +
                    bytes memory data
         
     | 
| 
      
 174 
     | 
    
         
            +
                )
         
     | 
| 
      
 175 
     | 
    
         
            +
                    external 
         
     | 
| 
      
 176 
     | 
    
         
            +
                    override
         
     | 
| 
      
 177 
     | 
    
         
            +
                {
         
     | 
| 
      
 178 
     | 
    
         
            +
                    (NftId productNftId,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(PRODUCT());
         
     | 
| 
      
 179 
     | 
    
         
            +
                    IRisk.RiskInfo memory riskInfo = IRisk.RiskInfo(productNftId, data);
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
      
 181 
     | 
    
         
            +
                    instance.getInstanceStore().createRisk(
         
     | 
| 
      
 182 
     | 
    
         
            +
                        riskId,
         
     | 
| 
      
 183 
     | 
    
         
            +
                        riskInfo
         
     | 
| 
      
 184 
     | 
    
         
            +
                    );
         
     | 
| 
      
 185 
     | 
    
         
            +
                }
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
                function updateRisk(
         
     | 
| 
      
 188 
     | 
    
         
            +
                    RiskId riskId,
         
     | 
| 
      
 189 
     | 
    
         
            +
                    bytes memory data
         
     | 
| 
      
 190 
     | 
    
         
            +
                )
         
     | 
| 
      
 191 
     | 
    
         
            +
                    external
         
     | 
| 
      
 192 
     | 
    
         
            +
                {
         
     | 
| 
      
 193 
     | 
    
         
            +
                    (,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(PRODUCT());
         
     | 
| 
      
 194 
     | 
    
         
            +
                    InstanceReader instanceReader = instance.getInstanceReader();
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
                    IRisk.RiskInfo memory riskInfo = instanceReader.getRiskInfo(riskId);
         
     | 
| 
      
 197 
     | 
    
         
            +
                    riskInfo.data = data;
         
     | 
| 
      
 198 
     | 
    
         
            +
                    instance.getInstanceStore().updateRisk(riskId, riskInfo, KEEP_STATE());
         
     | 
| 
      
 199 
     | 
    
         
            +
                }
         
     | 
| 
      
 200 
     | 
    
         
            +
             
     | 
| 
      
 201 
     | 
    
         
            +
                function updateRiskState(
         
     | 
| 
      
 202 
     | 
    
         
            +
                    RiskId riskId,
         
     | 
| 
      
 203 
     | 
    
         
            +
                    StateId state
         
     | 
| 
      
 204 
     | 
    
         
            +
                )
         
     | 
| 
      
 205 
     | 
    
         
            +
                    external
         
     | 
| 
      
 206 
     | 
    
         
            +
                {
         
     | 
| 
      
 207 
     | 
    
         
            +
                    (,, IInstance instance) = _getAndVerifyCallingComponentAndInstance(PRODUCT());
         
     | 
| 
      
 208 
     | 
    
         
            +
                    instance.getInstanceStore().updateRiskState(riskId, state);
         
     | 
| 
      
 209 
     | 
    
         
            +
                }
         
     | 
| 
      
 210 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -1,12 +1,12 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
       2 
2 
     | 
    
         
             
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            import {IVersionable} from " 
     | 
| 
       5 
     | 
    
         
            -
            import {ProxyManager} from " 
     | 
| 
      
 4 
     | 
    
         
            +
            import {IVersionable} from "../shared/IVersionable.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {ProxyManager} from "../shared/ProxyManager.sol";
         
     | 
| 
       6 
6 
     | 
    
         
             
            import {ProductService} from "./ProductService.sol";
         
     | 
| 
       7 
     | 
    
         
            -
            import {Registry} from " 
     | 
| 
       8 
     | 
    
         
            -
            import {RegistryService} from " 
     | 
| 
       9 
     | 
    
         
            -
            import {VersionLib} from " 
     | 
| 
      
 7 
     | 
    
         
            +
            import {Registry} from "../registry/Registry.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {RegistryService} from "../registry/RegistryService.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {VersionLib} from "../type/Version.sol";
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
            contract ProductServiceManager is ProxyManager {
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
         @@ -95,6 +95,10 @@ contract ChainNft is ERC721Enumerable { 
     | 
|
| 
       95 
95 
     | 
    
         | 
| 
       96 
96 
     | 
    
         
             
                    _totalMinted++;
         
     | 
| 
       97 
97 
     | 
    
         
             
                    _safeMint(to, tokenId);
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
                    if(interceptor != address(0)) {
         
     | 
| 
      
 100 
     | 
    
         
            +
                        ITransferInterceptor(interceptor).nftMint(to, tokenId);
         
     | 
| 
      
 101 
     | 
    
         
            +
                    }
         
     | 
| 
       98 
102 
     | 
    
         
             
                }
         
     | 
| 
       99 
103 
     | 
    
         | 
| 
       100 
104 
     | 
    
         | 
| 
         @@ -195,6 +199,10 @@ contract ChainNft is ERC721Enumerable { 
     | 
|
| 
       195 
199 
     | 
    
         
             
                        _chainIdDigits;
         
     | 
| 
       196 
200 
     | 
    
         
             
                }
         
     | 
| 
       197 
201 
     | 
    
         | 
| 
      
 202 
     | 
    
         
            +
                function getNextTokenId() external view returns (uint256) {
         
     | 
| 
      
 203 
     | 
    
         
            +
                    return calculateTokenId(_idNext);
         
     | 
| 
      
 204 
     | 
    
         
            +
                }
         
     | 
| 
      
 205 
     | 
    
         
            +
             
     | 
| 
       198 
206 
     | 
    
         
             
                function _getNextTokenId() private returns (uint256 id) {
         
     | 
| 
       199 
207 
     | 
    
         
             
                    id = calculateTokenId(_idNext);
         
     | 
| 
       200 
208 
     | 
    
         
             
                    _idNext++;
         
     | 
| 
         @@ -3,10 +3,10 @@ pragma solidity ^0.8.20; 
     | 
|
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
            import {NftId} from "../ 
     | 
| 
       7 
     | 
    
         
            -
            import {ObjectType} from "../ 
     | 
| 
       8 
     | 
    
         
            -
            import {VersionPart} from "../ 
     | 
| 
       9 
     | 
    
         
            -
            import {Timestamp} from "../ 
     | 
| 
      
 6 
     | 
    
         
            +
            import {NftId} from "../type/NftId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ObjectType} from "../type/ObjectType.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {VersionPart} from "../type/Version.sol";
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {Timestamp} from "../type/Timestamp.sol";
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
            interface IRegistry is IERC165 {
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
         @@ -84,6 +84,8 @@ interface IRegistry is IERC165 { 
     | 
|
| 
       84 
84 
     | 
    
         | 
| 
       85 
85 
     | 
    
         
             
                function isRegisteredService(address contractAddress) external view returns (bool);
         
     | 
| 
       86 
86 
     | 
    
         | 
| 
      
 87 
     | 
    
         
            +
                function isRegisteredComponent(address object) external view returns (bool);
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
       87 
89 
     | 
    
         
             
                function isValidRelease(VersionPart version) external view returns (bool);
         
     | 
| 
       88 
90 
     | 
    
         | 
| 
       89 
91 
     | 
    
         
             
                function getServiceAddress(
         
     | 
| 
         @@ -1,20 +1,19 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            // SPDX-License-Identifier: Apache-2.0
         
     | 
| 
       2 
2 
     | 
    
         
             
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
         
     | 
| 
      
 4 
     | 
    
         
            +
            // import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
            import {NftId} from "../ 
     | 
| 
       7 
     | 
    
         
            -
            import {ObjectType} from "../ 
     | 
| 
       8 
     | 
    
         
            -
            import {RoleId} from "../ 
     | 
| 
      
 6 
     | 
    
         
            +
            import {NftId} from "../type/NftId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {ObjectType} from "../type/ObjectType.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {RoleId} from "../type/RoleId.sol";
         
     | 
| 
       9 
9 
     | 
    
         
             
            import {IService} from "../shared/IService.sol";
         
     | 
| 
       10 
10 
     | 
    
         
             
            import {IRegistry} from "./IRegistry.sol";
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
            import {IRegisterable} from "../shared/IRegisterable.sol";
         
     | 
| 
       13 
     | 
    
         
            -
            import {IComponent} from "../ 
     | 
| 
      
 13 
     | 
    
         
            +
            import {IComponent} from "../shared/IComponent.sol";
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
            interface IRegistryService is 
         
     | 
| 
       16 
     | 
    
         
            -
                 IService 
     | 
| 
       17 
     | 
    
         
            -
                 IAccessManaged 
         
     | 
| 
      
 16 
     | 
    
         
            +
                 IService
         
     | 
| 
       18 
17 
     | 
    
         
             
            {
         
     | 
| 
       19 
18 
     | 
    
         
             
                 error SelfRegistration();
         
     | 
| 
       20 
19 
     | 
    
         
             
                 error NotRegistryOwner();
         
     | 
| 
         @@ -3,9 +3,9 @@ pragma solidity ^0.8.20; 
     | 
|
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
            import {NftId, toNftId, zeroNftId} from "../ 
     | 
| 
       7 
     | 
    
         
            -
            import {VersionPart} from "../ 
     | 
| 
       8 
     | 
    
         
            -
            import {ObjectType, PROTOCOL, REGISTRY, TOKEN, SERVICE, INSTANCE, STAKE, PRODUCT, DISTRIBUTION, DISTRIBUTOR, ORACLE, POOL, POLICY, BUNDLE} from "../ 
     | 
| 
      
 6 
     | 
    
         
            +
            import {NftId, toNftId, zeroNftId} from "../type/NftId.sol";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {VersionPart} from "../type/Version.sol";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {ObjectType, PROTOCOL, REGISTRY, TOKEN, SERVICE, INSTANCE, STAKE, PRODUCT, DISTRIBUTION, DISTRIBUTOR, ORACLE, POOL, POLICY, BUNDLE} from "../type/ObjectType.sol";
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
            import {ChainNft} from "./ChainNft.sol";
         
     | 
| 
       11 
11 
     | 
    
         
             
            import {IRegistry} from "./IRegistry.sol";
         
     | 
| 
         @@ -149,7 +149,6 @@ contract Registry is 
     | 
|
| 
       149 
149 
     | 
    
         
             
                    }
         
     | 
| 
       150 
150 
     | 
    
         | 
| 
       151 
151 
     | 
    
         
             
                    if(
         
     | 
| 
       152 
     | 
    
         
            -
             
     | 
| 
       153 
152 
     | 
    
         
             
                        parentType == PROTOCOL() ||
         
     | 
| 
       154 
153 
     | 
    
         
             
                        parentType == REGISTRY() ||
         
     | 
| 
       155 
154 
     | 
    
         
             
                        parentType == SERVICE()
         
     | 
| 
         @@ -186,7 +185,7 @@ contract Registry is 
     | 
|
| 
       186 
185 
     | 
    
         
             
                    return _releaseManager.getReleaseInfo(version);
         
     | 
| 
       187 
186 
     | 
    
         
             
                }
         
     | 
| 
       188 
187 
     | 
    
         | 
| 
       189 
     | 
    
         
            -
                function getObjectCount() external view  
     | 
| 
      
 188 
     | 
    
         
            +
                function getObjectCount() external view returns (uint256) {
         
     | 
| 
       190 
189 
     | 
    
         
             
                    return _chainNft.totalSupply();
         
     | 
| 
       191 
190 
     | 
    
         
             
                }
         
     | 
| 
       192 
191 
     | 
    
         | 
| 
         @@ -198,11 +197,11 @@ contract Registry is 
     | 
|
| 
       198 
197 
     | 
    
         
             
                    return _registryNftId;
         
     | 
| 
       199 
198 
     | 
    
         
             
                }
         
     | 
| 
       200 
199 
     | 
    
         | 
| 
       201 
     | 
    
         
            -
                function getNftId(address object) external view  
     | 
| 
      
 200 
     | 
    
         
            +
                function getNftId(address object) external view returns (NftId id) {
         
     | 
| 
       202 
201 
     | 
    
         
             
                    return _nftIdByAddress[object];
         
     | 
| 
       203 
202 
     | 
    
         
             
                }
         
     | 
| 
       204 
203 
     | 
    
         | 
| 
       205 
     | 
    
         
            -
                function ownerOf(NftId nftId) public view  
     | 
| 
      
 204 
     | 
    
         
            +
                function ownerOf(NftId nftId) public view returns (address) {
         
     | 
| 
       206 
205 
     | 
    
         
             
                    return _chainNft.ownerOf(nftId.toInt());
         
     | 
| 
       207 
206 
     | 
    
         
             
                }
         
     | 
| 
       208 
207 
     | 
    
         | 
| 
         @@ -210,26 +209,31 @@ contract Registry is 
     | 
|
| 
       210 
209 
     | 
    
         
             
                    return _chainNft.ownerOf(_nftIdByAddress[contractAddress].toInt());
         
     | 
| 
       211 
210 
     | 
    
         
             
                }
         
     | 
| 
       212 
211 
     | 
    
         | 
| 
       213 
     | 
    
         
            -
                function getObjectInfo(NftId nftId) external view  
     | 
| 
      
 212 
     | 
    
         
            +
                function getObjectInfo(NftId nftId) external view returns (ObjectInfo memory) {
         
     | 
| 
       214 
213 
     | 
    
         
             
                    return _info[nftId];
         
     | 
| 
       215 
214 
     | 
    
         
             
                }
         
     | 
| 
       216 
215 
     | 
    
         | 
| 
       217 
     | 
    
         
            -
                function getObjectInfo(address object) external view  
     | 
| 
      
 216 
     | 
    
         
            +
                function getObjectInfo(address object) external view returns (ObjectInfo memory) {
         
     | 
| 
       218 
217 
     | 
    
         
             
                    return _info[_nftIdByAddress[object]];
         
     | 
| 
       219 
218 
     | 
    
         
             
                }
         
     | 
| 
       220 
219 
     | 
    
         | 
| 
       221 
     | 
    
         
            -
                function isRegistered(NftId nftId) public view  
     | 
| 
      
 220 
     | 
    
         
            +
                function isRegistered(NftId nftId) public view returns (bool) {
         
     | 
| 
       222 
221 
     | 
    
         
             
                    return _info[nftId].objectType.gtz();
         
     | 
| 
       223 
222 
     | 
    
         
             
                }
         
     | 
| 
       224 
223 
     | 
    
         | 
| 
       225 
     | 
    
         
            -
                function isRegistered(address object) external view  
     | 
| 
      
 224 
     | 
    
         
            +
                function isRegistered(address object) external view returns (bool) {
         
     | 
| 
       226 
225 
     | 
    
         
             
                    return _nftIdByAddress[object].gtz();
         
     | 
| 
       227 
226 
     | 
    
         
             
                }
         
     | 
| 
       228 
227 
     | 
    
         | 
| 
       229 
     | 
    
         
            -
                function isRegisteredService(address object) external view  
     | 
| 
      
 228 
     | 
    
         
            +
                function isRegisteredService(address object) external view returns (bool) {
         
     | 
| 
       230 
229 
     | 
    
         
             
                    return _info[_nftIdByAddress[object]].objectType == SERVICE();
         
     | 
| 
       231 
230 
     | 
    
         
             
                }
         
     | 
| 
       232 
231 
     | 
    
         | 
| 
      
 232 
     | 
    
         
            +
                function isRegisteredComponent(address object) external view returns (bool) {
         
     | 
| 
      
 233 
     | 
    
         
            +
                    NftId objectParentNftId = _info[_nftIdByAddress[object]].parentNftId;
         
     | 
| 
      
 234 
     | 
    
         
            +
                    return _info[objectParentNftId].objectType == INSTANCE();
         
     | 
| 
      
 235 
     | 
    
         
            +
                }
         
     | 
| 
      
 236 
     | 
    
         
            +
             
     | 
| 
       233 
237 
     | 
    
         
             
                function isValidRelease(VersionPart version) external view returns (bool)
         
     | 
| 
       234 
238 
     | 
    
         
             
                {
         
     | 
| 
       235 
239 
     | 
    
         
             
                    return _releaseManager.isValidRelease(version);
         
     | 
| 
         @@ -287,18 +291,9 @@ contract Registry is 
     | 
|
| 
       287 
291 
     | 
    
         
             
                    }
         
     | 
| 
       288 
292 
     | 
    
         | 
| 
       289 
293 
     | 
    
         
             
                    address interceptor = _getInterceptor(info.isInterceptor, info.objectAddress, parentInfo.isInterceptor, parentAddress);
         
     | 
| 
      
 294 
     | 
    
         
            +
                    uint256 tokenId = _chainNft.getNextTokenId();
         
     | 
| 
      
 295 
     | 
    
         
            +
                    nftId = toNftId(tokenId);
         
     | 
| 
       290 
296 
     | 
    
         | 
| 
       291 
     | 
    
         
            -
                    // TODO does external call
         
     | 
| 
       292 
     | 
    
         
            -
                    // compute next nftId, do all checks and stores, mint() at most end...
         
     | 
| 
       293 
     | 
    
         
            -
                    uint256 mintedTokenId = _chainNft.mint(
         
     | 
| 
       294 
     | 
    
         
            -
                        info.initialOwner,
         
     | 
| 
       295 
     | 
    
         
            -
                        interceptor,
         
     | 
| 
       296 
     | 
    
         
            -
                        EMPTY_URI);
         
     | 
| 
       297 
     | 
    
         
            -
                    nftId = toNftId(mintedTokenId);
         
     | 
| 
       298 
     | 
    
         
            -
             
     | 
| 
       299 
     | 
    
         
            -
                    // TODO move nftId out of info struct
         
     | 
| 
       300 
     | 
    
         
            -
                    // getters by nftId -> return struct without nftId
         
     | 
| 
       301 
     | 
    
         
            -
                    // getters by address -> return nftId AND struct
         
     | 
| 
       302 
297 
     | 
    
         
             
                    info.nftId = nftId;
         
     | 
| 
       303 
298 
     | 
    
         
             
                    _info[nftId] = info;
         
     | 
| 
       304 
299 
     | 
    
         | 
| 
         @@ -314,6 +309,14 @@ contract Registry is 
     | 
|
| 
       314 
309 
     | 
    
         
             
                    }
         
     | 
| 
       315 
310 
     | 
    
         | 
| 
       316 
311 
     | 
    
         
             
                    emit LogRegistration(nftId, parentNftId, objectType, info.isInterceptor, info.objectAddress, info.initialOwner);
         
     | 
| 
      
 312 
     | 
    
         
            +
             
     | 
| 
      
 313 
     | 
    
         
            +
                    // calls nft receiver(1) and interceptor(2)
         
     | 
| 
      
 314 
     | 
    
         
            +
                    uint256 mintedTokenId = _chainNft.mint(
         
     | 
| 
      
 315 
     | 
    
         
            +
                        info.initialOwner,
         
     | 
| 
      
 316 
     | 
    
         
            +
                        interceptor,
         
     | 
| 
      
 317 
     | 
    
         
            +
                        EMPTY_URI);
         
     | 
| 
      
 318 
     | 
    
         
            +
                    assert(mintedTokenId == tokenId);
         
     | 
| 
      
 319 
     | 
    
         
            +
                    
         
     | 
| 
       317 
320 
     | 
    
         
             
                }
         
     | 
| 
       318 
321 
     | 
    
         | 
| 
       319 
322 
     | 
    
         
             
                /// @dev obtain interceptor address for this nft if applicable, address(0) otherwise
         
     | 
| 
         @@ -7,7 +7,7 @@ import {AccessManaged} from "@openzeppelin/contracts/access/manager/AccessManage 
     | 
|
| 
       7 
7 
     | 
    
         
             
            import {RoleId, RoleIdLib,
         
     | 
| 
       8 
8 
     | 
    
         
             
                    GIF_MANAGER_ROLE,
         
     | 
| 
       9 
9 
     | 
    
         
             
                    GIF_ADMIN_ROLE,
         
     | 
| 
       10 
     | 
    
         
            -
                    RELEASE_MANAGER_ROLE} from "../ 
     | 
| 
      
 10 
     | 
    
         
            +
                    RELEASE_MANAGER_ROLE} from "../type/RoleId.sol";
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
            import {TokenRegistry} from "./TokenRegistry.sol";
         
     | 
| 
       13 
13 
     | 
    
         
             
            import {ReleaseManager} from "./ReleaseManager.sol";
         
     | 
| 
         @@ -2,28 +2,27 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            pragma solidity ^0.8.20;
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {ERC165Checker} from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
         
     | 
| 
       5 
     | 
    
         
            -
            import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
         
     | 
| 
      
 5 
     | 
    
         
            +
            // import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
         
     | 
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
            import {IRegistry} from "./IRegistry.sol";
         
     | 
| 
       8 
8 
     | 
    
         
             
            import {IInstance} from "../instance/IInstance.sol";
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
            import { 
     | 
| 
       11 
     | 
    
         
            -
            import { 
     | 
| 
       12 
     | 
    
         
            -
            import { 
     | 
| 
       13 
     | 
    
         
            -
            import { 
     | 
| 
       14 
     | 
    
         
            -
            import {IDistributionComponent} from "../../contracts/components/IDistributionComponent.sol";
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {IComponent} from "../../contracts/shared/IComponent.sol";
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {IPoolComponent} from "../../contracts/pool/IPoolComponent.sol";
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {IProductComponent} from "../../contracts/product/IProductComponent.sol";
         
     | 
| 
      
 13 
     | 
    
         
            +
            import {IDistributionComponent} from "../../contracts/distribution/IDistributionComponent.sol";
         
     | 
| 
       15 
14 
     | 
    
         | 
| 
       16 
15 
     | 
    
         
             
            import {IVersionable} from "../../contracts/shared/IVersionable.sol";
         
     | 
| 
       17 
16 
     | 
    
         
             
            import {Versionable} from "../../contracts/shared/Versionable.sol";
         
     | 
| 
       18 
17 
     | 
    
         
             
            import {IRegisterable} from "../../contracts/shared/IRegisterable.sol";
         
     | 
| 
       19 
18 
     | 
    
         
             
            import {Registerable} from "../../contracts/shared/Registerable.sol";
         
     | 
| 
       20 
19 
     | 
    
         | 
| 
       21 
     | 
    
         
            -
            import {RoleId, PRODUCT_OWNER_ROLE, POOL_OWNER_ROLE, ORACLE_OWNER_ROLE} from "../../contracts/ 
     | 
| 
       22 
     | 
    
         
            -
            import {ObjectType, REGISTRY, SERVICE, PRODUCT, ORACLE, POOL, INSTANCE, DISTRIBUTION, DISTRIBUTOR, APPLICATION, POLICY, CLAIM, BUNDLE, STAKE} from "../../contracts/ 
     | 
| 
       23 
     | 
    
         
            -
            import {StateId, ACTIVE, PAUSED} from "../../contracts/ 
     | 
| 
       24 
     | 
    
         
            -
            import {NftId, NftIdLib, zeroNftId} from "../../contracts/ 
     | 
| 
       25 
     | 
    
         
            -
            import {Fee, FeeLib} from "../../contracts/ 
     | 
| 
       26 
     | 
    
         
            -
            import {Version, VersionPart, VersionLib} from "../../contracts/ 
     | 
| 
      
 20 
     | 
    
         
            +
            import {RoleId, PRODUCT_OWNER_ROLE, POOL_OWNER_ROLE, ORACLE_OWNER_ROLE} from "../../contracts/type/RoleId.sol";
         
     | 
| 
      
 21 
     | 
    
         
            +
            import {ObjectType, REGISTRY, SERVICE, PRODUCT, ORACLE, POOL, INSTANCE, DISTRIBUTION, DISTRIBUTOR, APPLICATION, POLICY, CLAIM, BUNDLE, STAKE, PRICE} from "../../contracts/type/ObjectType.sol";
         
     | 
| 
      
 22 
     | 
    
         
            +
            import {StateId, ACTIVE, PAUSED} from "../../contracts/type/StateId.sol";
         
     | 
| 
      
 23 
     | 
    
         
            +
            import {NftId, NftIdLib, zeroNftId} from "../../contracts/type/NftId.sol";
         
     | 
| 
      
 24 
     | 
    
         
            +
            import {Fee, FeeLib} from "../../contracts/type/Fee.sol";
         
     | 
| 
      
 25 
     | 
    
         
            +
            import {Version, VersionPart, VersionLib} from "../../contracts/type/Version.sol";
         
     | 
| 
       27 
26 
     | 
    
         | 
| 
       28 
27 
     | 
    
         
             
            import {Service} from "../shared/Service.sol";
         
     | 
| 
       29 
28 
     | 
    
         
             
            import {IService} from "../shared/IService.sol";
         
     | 
| 
         @@ -31,7 +30,6 @@ import {IRegistryService} from "./IRegistryService.sol"; 
     | 
|
| 
       31 
30 
     | 
    
         
             
            import {Registry} from "./Registry.sol";
         
     | 
| 
       32 
31 
     | 
    
         | 
| 
       33 
32 
     | 
    
         
             
            contract RegistryService is
         
     | 
| 
       34 
     | 
    
         
            -
                AccessManagedUpgradeable,
         
     | 
| 
       35 
33 
     | 
    
         
             
                Service,
         
     | 
| 
       36 
34 
     | 
    
         
             
                IRegistryService
         
     | 
| 
       37 
35 
     | 
    
         
             
            {
         
     | 
| 
         @@ -41,7 +39,7 @@ contract RegistryService is 
     | 
|
| 
       41 
39 
     | 
    
         
             
                bytes32 public constant REGISTRY_CREATION_CODE_HASH = bytes32(0);
         
     | 
| 
       42 
40 
     | 
    
         | 
| 
       43 
41 
     | 
    
         
             
                // From IService
         
     | 
| 
       44 
     | 
    
         
            -
                function getDomain() public pure override 
     | 
| 
      
 42 
     | 
    
         
            +
                function getDomain() public pure override returns(ObjectType serviceDomain) {
         
     | 
| 
       45 
43 
     | 
    
         
             
                    return REGISTRY(); 
         
     | 
| 
       46 
44 
     | 
    
         
             
                }
         
     | 
| 
       47 
45 
     | 
    
         | 
| 
         @@ -61,9 +59,8 @@ contract RegistryService is 
     | 
|
| 
       61 
59 
     | 
    
         
             
                        address initialAuthority
         
     | 
| 
       62 
60 
     | 
    
         
             
                    ) = abi.decode(data, (address, address));
         
     | 
| 
       63 
61 
     | 
    
         | 
| 
       64 
     | 
    
         
            -
                     
     | 
| 
      
 62 
     | 
    
         
            +
                    initializeService(registryAddress, initialAuthority, owner);
         
     | 
| 
       65 
63 
     | 
    
         | 
| 
       66 
     | 
    
         
            -
                    initializeService(registryAddress, owner);
         
     | 
| 
       67 
64 
     | 
    
         
             
                    registerInterface(type(IRegistryService).interfaceId);
         
     | 
| 
       68 
65 
     | 
    
         
             
                }
         
     | 
| 
       69 
66 
     | 
    
         | 
| 
         @@ -178,7 +175,7 @@ contract RegistryService is 
     | 
|
| 
       178 
175 
     | 
    
         
             
                        FunctionConfig[] memory config
         
     | 
| 
       179 
176 
     | 
    
         
             
                    )
         
     | 
| 
       180 
177 
     | 
    
         
             
                {
         
     | 
| 
       181 
     | 
    
         
            -
                    config = new FunctionConfig[]( 
     | 
| 
      
 178 
     | 
    
         
            +
                    config = new FunctionConfig[](9);
         
     | 
| 
       182 
179 
     | 
    
         | 
| 
       183 
180 
     | 
    
         
             
                    // order of service registrations MUST be reverse to this array 
         
     | 
| 
       184 
181 
     | 
    
         
             
                    /*config[-1].serviceDomain = STAKE();
         
     | 
| 
         @@ -194,27 +191,32 @@ contract RegistryService is 
     | 
|
| 
       194 
191 
     | 
    
         
             
                    config[2].serviceDomain = CLAIM();
         
     | 
| 
       195 
192 
     | 
    
         
             
                    config[2].selectors = new bytes4[](0);
         
     | 
| 
       196 
193 
     | 
    
         | 
| 
       197 
     | 
    
         
            -
                    config[3].serviceDomain =  
     | 
| 
      
 194 
     | 
    
         
            +
                    config[3].serviceDomain = PRODUCT();
         
     | 
| 
       198 
195 
     | 
    
         
             
                    config[3].selectors = new bytes4[](1);
         
     | 
| 
       199 
     | 
    
         
            -
                    config[3].selectors[0] = RegistryService. 
     | 
| 
      
 196 
     | 
    
         
            +
                    config[3].selectors[0] = RegistryService.registerProduct.selector;
         
     | 
| 
       200 
197 
     | 
    
         | 
| 
       201 
     | 
    
         
            -
                    config[4].serviceDomain =  
     | 
| 
      
 198 
     | 
    
         
            +
                    config[4].serviceDomain = POOL();
         
     | 
| 
       202 
199 
     | 
    
         
             
                    config[4].selectors = new bytes4[](1);
         
     | 
| 
       203 
     | 
    
         
            -
                    config[4].selectors[0] = RegistryService. 
     | 
| 
      
 200 
     | 
    
         
            +
                    config[4].selectors[0] = RegistryService.registerPool.selector;
         
     | 
| 
       204 
201 
     | 
    
         | 
| 
       205 
     | 
    
         
            -
                     
     | 
| 
      
 202 
     | 
    
         
            +
                    // registration of bundle service must preceed registration of pool service
         
     | 
| 
      
 203 
     | 
    
         
            +
                    config[5].serviceDomain = BUNDLE();
         
     | 
| 
       206 
204 
     | 
    
         
             
                    config[5].selectors = new bytes4[](1);
         
     | 
| 
       207 
     | 
    
         
            -
                    config[5].selectors[0] = RegistryService. 
     | 
| 
      
 205 
     | 
    
         
            +
                    config[5].selectors[0] = RegistryService.registerBundle.selector;
         
     | 
| 
       208 
206 
     | 
    
         | 
| 
       209 
     | 
    
         
            -
                     
     | 
| 
       210 
     | 
    
         
            -
                    config[6]. 
     | 
| 
       211 
     | 
    
         
            -
                    config[6].selectors 
     | 
| 
       212 
     | 
    
         
            -
                    config[6].selectors[1] = RegistryService.registerDistributor.selector;
         
     | 
| 
      
 207 
     | 
    
         
            +
                    // registration of pricing service must preceed registration of application service
         
     | 
| 
      
 208 
     | 
    
         
            +
                    config[6].serviceDomain = PRICE();
         
     | 
| 
      
 209 
     | 
    
         
            +
                    config[6].selectors = new bytes4[](0);
         
     | 
| 
       213 
210 
     | 
    
         | 
| 
       214 
     | 
    
         
            -
                    //  
     | 
| 
       215 
     | 
    
         
            -
                    config[7].serviceDomain =  
     | 
| 
       216 
     | 
    
         
            -
                    config[7].selectors = new bytes4[]( 
     | 
| 
       217 
     | 
    
         
            -
                    config[7].selectors[0] = RegistryService. 
     | 
| 
      
 211 
     | 
    
         
            +
                    // registration of distribution service must preceed registration of pricing service
         
     | 
| 
      
 212 
     | 
    
         
            +
                    config[7].serviceDomain = DISTRIBUTION();
         
     | 
| 
      
 213 
     | 
    
         
            +
                    config[7].selectors = new bytes4[](2);
         
     | 
| 
      
 214 
     | 
    
         
            +
                    config[7].selectors[0] = RegistryService.registerDistribution.selector;
         
     | 
| 
      
 215 
     | 
    
         
            +
                    config[7].selectors[1] = RegistryService.registerDistributor.selector;
         
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
                    config[8].serviceDomain = INSTANCE();
         
     | 
| 
      
 218 
     | 
    
         
            +
                    config[8].selectors = new bytes4[](1);
         
     | 
| 
      
 219 
     | 
    
         
            +
                    config[8].selectors[0] = RegistryService.registerInstance.selector;
         
     | 
| 
       218 
220 
     | 
    
         
             
                }
         
     | 
| 
       219 
221 
     | 
    
         | 
| 
       220 
222 
     | 
    
         
             
                // Internal
         
     | 
| 
         @@ -3,8 +3,6 @@ pragma solidity ^0.8.20; 
     | 
|
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            import {AccessManager} from "@openzeppelin/contracts/access/manager/AccessManager.sol";
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
            import {ContractDeployerLib} from "../shared/ContractDeployerLib.sol";
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
6 
     | 
    
         
             
            import {Registry} from "./Registry.sol";
         
     | 
| 
       9 
7 
     | 
    
         
             
            import {IVersionable} from "../shared/IVersionable.sol";
         
     | 
| 
       10 
8 
     | 
    
         
             
            import {ProxyManager} from "../shared/ProxyManager.sol";
         
     |