@etherisc/gif-next 0.0.2-7f05179-874 → 0.0.2-7f39e38-904
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +337 -19
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1410 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1343 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +799 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +969 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +808 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +312 -1138
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +660 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +439 -1219
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1348 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +132 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1570 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1063 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +715 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3468 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury/ITreasury.sol/ITreasury.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1091 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +723 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +684 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1148 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1044 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1559 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1411 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +719 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +820 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +699 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1264 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +787 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +493 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +753 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +701 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +530 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +989 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +381 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1132 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +731 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +969 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +755 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1391 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +673 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +675 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +737 -27
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1093 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +964 -105
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +322 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1398 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +705 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1151 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +137 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +653 -0
- 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/shared/Component.sol/Component.json +890 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1461 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +765 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +520 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +625 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +854 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +699 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +478 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/lifecycle/ILifecycle.sol/ILifecycleModule.json → shared/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +125 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +175 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +327 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1030 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +581 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +238 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +598 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +347 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +256 -220
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1435 -0
- package/artifacts/contracts/staking/IStakingManager.sol/IStakingManager.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → staking/IStakingManager.sol/IStakingManager.json} +10 -10
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +884 -0
- package/artifacts/contracts/staking/IStakingStore.sol/IStakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingStore.sol/IStakingStore.json +357 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +402 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2002 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +748 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +368 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1207 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1690 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +494 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- 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/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- 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/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- 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/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +185 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- 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/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +174 -0
- 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/type/Timestamp.sol/TimestampLib.json +280 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/distribution/Distribution.sol +263 -0
- package/contracts/distribution/DistributionService.sol +298 -0
- package/contracts/distribution/DistributionServiceManager.sol +54 -0
- package/contracts/distribution/IDistributionComponent.sol +66 -0
- package/contracts/distribution/IDistributionService.sol +81 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +74 -22
- package/contracts/instance/IInstanceService.sol +83 -0
- package/contracts/instance/Instance.sol +209 -53
- package/contracts/instance/InstanceAccessManager.sol +543 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +336 -0
- package/contracts/instance/InstanceReader.sol +366 -0
- package/contracts/instance/InstanceService.sol +367 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +260 -0
- package/contracts/instance/base/BalanceStore.sol +118 -0
- package/contracts/instance/base/Cloneable.sol +51 -0
- package/contracts/instance/base/ObjectManager.sol +82 -0
- package/contracts/instance/module/IAccess.sol +54 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/mock/Dip.sol +1 -1
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +112 -0
- package/contracts/pool/IPoolService.sol +147 -0
- package/contracts/pool/Pool.sol +299 -0
- package/contracts/pool/PoolService.sol +424 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/ClaimService.sol +437 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +93 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +42 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +473 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +301 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +377 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +143 -62
- package/contracts/registry/IRegistry.sol +97 -39
- package/contracts/registry/IRegistryService.sol +68 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +523 -127
- package/contracts/registry/RegistryAccessManager.sol +196 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +72 -0
- package/contracts/registry/ReleaseManager.sol +563 -0
- package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
- package/contracts/registry/TokenRegistry.sol +354 -0
- package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/shared/Component.sol +286 -0
- package/contracts/shared/ComponentService.sol +595 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +111 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/IComponent.sol +74 -0
- package/contracts/shared/IComponentService.sol +91 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/shared/IKeyValueStore.sol +53 -0
- package/contracts/shared/ILifecycle.sol +30 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/InstanceLinkedComponent.sol +145 -0
- package/contracts/shared/KeyValueStore.sol +130 -0
- package/contracts/shared/Lifecycle.sol +121 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +118 -0
- package/contracts/shared/PolicyHolder.sol +101 -0
- package/contracts/shared/ProxyManager.sol +195 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +77 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/staking/IStaking.sol +152 -0
- package/contracts/staking/IStakingManager.sol +15 -0
- package/contracts/staking/IStakingService.sol +162 -0
- package/contracts/staking/IStakingStore.sol +130 -0
- package/contracts/staking/StakeManagerLib.sol +156 -0
- package/contracts/staking/Staking.sol +502 -0
- package/contracts/staking/StakingManager.sol +65 -0
- package/contracts/staking/StakingReader.sol +147 -0
- package/contracts/staking/StakingService.sol +375 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +329 -0
- package/contracts/staking/TargetManagerLib.sol +179 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +114 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/{types → type}/NftId.sol +40 -13
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/{types → type}/ObjectType.sol +77 -15
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +143 -0
- package/contracts/type/Seconds.sol +71 -0
- package/contracts/{types → type}/StateId.sol +38 -6
- package/contracts/{types → type}/Timestamp.sol +36 -6
- package/contracts/type/UFixed.sol +326 -0
- package/contracts/type/Version.sol +108 -0
- package/package.json +11 -5
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -205
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -346
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -299
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
- package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.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/Timestamp.sol/TimestampLib.json +0 -174
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/components/Pool.sol +0 -52
- package/contracts/components/Product.sol +0 -89
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/mock/TestPool.sol +0 -16
- package/contracts/mock/TestProduct.sol +0 -39
- package/contracts/mock/Usdc.sol +0 -26
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -32
- package/contracts/types/UFixed.sol +0 -210
@@ -1,182 +1,578 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {Initializable} from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
|
5
|
+
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
|
6
|
+
|
7
|
+
import {NftId, NftIdLib} from "../type/NftId.sol";
|
8
|
+
import {VersionPart} from "../type/Version.sol";
|
9
|
+
import {ObjectType, PROTOCOL, REGISTRY, TOKEN, SERVICE, INSTANCE, STAKE, STAKING, PRODUCT, DISTRIBUTION, DISTRIBUTOR, ORACLE, POOL, POLICY, BUNDLE} from "../type/ObjectType.sol";
|
10
|
+
|
11
|
+
import {ChainNft} from "./ChainNft.sol";
|
12
|
+
import {IRegistry} from "./IRegistry.sol";
|
13
|
+
import {IRegisterable} from "../shared/IRegisterable.sol";
|
14
|
+
import {ReleaseManager} from "./ReleaseManager.sol";
|
15
|
+
import {TokenRegistry} from "./TokenRegistry.sol";
|
16
|
+
|
17
|
+
// IMPORTANT
|
18
|
+
// Each NFT minted by registry is accosiated with:
|
19
|
+
// 1) NFT owner
|
20
|
+
// 2) registred contract OR object stored in registered (parent) contract
|
21
|
+
// Four registration flows:
|
22
|
+
// 1) IService address by release manager (SERVICE of domain SERVICE aka registry service aka release creation)
|
23
|
+
// 2) IService address by release manager (SERVICE of domain !SERVICE aka regular service)
|
24
|
+
// 3) IRegisterable address by regular service (INSTANCE, PRODUCT, POOL, DISTRIBUTION, ORACLE)
|
25
|
+
// 4) state object by regular service (POLICY, BUNDLE, STAKE)
|
26
|
+
|
27
|
+
contract Registry is
|
28
|
+
Initializable,
|
29
|
+
IRegistry
|
30
|
+
{
|
31
|
+
address public constant NFT_LOCK_ADDRESS = address(0x1);
|
32
|
+
uint256 public constant REGISTRY_TOKEN_SEQUENCE_ID = 2;
|
33
|
+
uint256 public constant STAKING_TOKEN_SEQUENCE_ID = 3;
|
34
|
+
string public constant EMPTY_URI = "";
|
3
35
|
|
4
|
-
|
5
|
-
|
6
|
-
import {NftId, toNftId, NftIdLib} from "../types/NftId.sol";
|
7
|
-
import {ObjectType, INSTANCE, POLICY, BUNDLE} from "../types/ObjectType.sol";
|
36
|
+
mapping(NftId nftId => ObjectInfo info) private _info;
|
37
|
+
mapping(address object => NftId nftId) private _nftIdByAddress;
|
8
38
|
|
9
|
-
|
10
|
-
IRegistry internal _registry;
|
39
|
+
mapping(VersionPart version => mapping(ObjectType serviceDomain => address)) private _service;
|
11
40
|
|
12
|
-
|
13
|
-
_registry = IRegistry(registry);
|
14
|
-
}
|
41
|
+
mapping(ObjectType objectType => bool) private _coreTypes;
|
15
42
|
|
16
|
-
|
17
|
-
|
18
|
-
}
|
19
|
-
}
|
43
|
+
mapping(ObjectType objectType => mapping(
|
44
|
+
ObjectType parentType => bool)) private _coreContractCombinations;
|
20
45
|
|
21
|
-
|
22
|
-
|
46
|
+
mapping(ObjectType objectType => mapping(
|
47
|
+
ObjectType parentType => bool)) private _coreObjectCombinations;
|
23
48
|
|
24
|
-
|
49
|
+
ChainNft private _chainNft;
|
25
50
|
|
26
|
-
|
27
|
-
|
28
|
-
|
51
|
+
address private _initializeOwner;
|
52
|
+
address private _tokenRegistryAddress;
|
53
|
+
address private _stakingAddress;
|
54
|
+
ReleaseManager private _releaseManager;
|
29
55
|
|
30
|
-
|
56
|
+
NftId private _protocolNftId;
|
57
|
+
NftId private _registryNftId;
|
31
58
|
|
32
|
-
function isRegisterable() external pure override returns (bool) {
|
33
|
-
return true;
|
34
|
-
}
|
35
59
|
|
36
|
-
|
37
|
-
|
60
|
+
modifier onlyRegistryService() {
|
61
|
+
if(!_releaseManager.isActiveRegistryService(msg.sender)) {
|
62
|
+
revert ErrorRegistryCallerNotRegistryService();
|
63
|
+
}
|
64
|
+
_;
|
38
65
|
}
|
39
66
|
|
40
|
-
|
41
|
-
|
42
|
-
|
67
|
+
|
68
|
+
modifier onlyReleaseManager() {
|
69
|
+
if(msg.sender != address(_releaseManager)) {
|
70
|
+
revert ErrorRegistryCallerNotReleaseManager();
|
71
|
+
}
|
72
|
+
_;
|
43
73
|
}
|
44
74
|
|
45
|
-
|
46
|
-
|
75
|
+
|
76
|
+
constructor() {
|
77
|
+
// register deployer
|
78
|
+
_initializeOwner = msg.sender;
|
79
|
+
|
80
|
+
// deploy NFT
|
81
|
+
_chainNft = new ChainNft(address(this));
|
82
|
+
|
83
|
+
// initial registry setup
|
84
|
+
_registerProtocol();
|
85
|
+
_registerRegistry();
|
86
|
+
|
87
|
+
// set object types and object parent relations
|
88
|
+
_setupValidCoreTypesAndCombinations();
|
47
89
|
}
|
48
90
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
91
|
+
|
92
|
+
/// @dev wires release manager (as caller) and token to registry (this contract).
|
93
|
+
/// MUST be called by release manager.
|
94
|
+
function initialize(
|
95
|
+
address releaseManager,
|
96
|
+
address tokenRegistry
|
97
|
+
)
|
98
|
+
external
|
99
|
+
initializer()
|
100
|
+
{
|
101
|
+
if (msg.sender != _initializeOwner) {
|
102
|
+
revert ErrorRegistryCallerNotInitializeOwner(_initializeOwner, msg.sender);
|
103
|
+
}
|
104
|
+
|
105
|
+
_releaseManager = ReleaseManager(releaseManager);
|
106
|
+
_tokenRegistryAddress = tokenRegistry;
|
53
107
|
}
|
54
|
-
}
|
55
108
|
|
56
|
-
contract Registry is IRegistry {
|
57
|
-
using NftIdLib for NftId;
|
58
109
|
|
59
|
-
|
110
|
+
function registerStaking(
|
111
|
+
address stakingAddress
|
112
|
+
)
|
113
|
+
external
|
114
|
+
onlyReleaseManager()
|
115
|
+
{
|
116
|
+
// staking contract for same chain may only be registered once
|
117
|
+
if (_stakingAddress != address(0)) {
|
118
|
+
revert StakingAlreadyRegistered(_stakingAddress);
|
119
|
+
}
|
60
120
|
|
61
|
-
|
62
|
-
mapping(NftId nftId => address owner) private _owner;
|
63
|
-
mapping(address object => NftId nftId) private _nftIdByAddress;
|
121
|
+
_stakingAddress = stakingAddress;
|
64
122
|
|
65
|
-
|
123
|
+
address stakingOwner = IRegisterable(stakingAddress).getOwner();
|
124
|
+
uint256 stakingId = _chainNft.calculateTokenId(STAKING_TOKEN_SEQUENCE_ID);
|
125
|
+
NftId stakingNftId = NftIdLib.toNftId(stakingId);
|
66
126
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
127
|
+
_nftIdByAddress[_stakingAddress] = stakingNftId;
|
128
|
+
_info[stakingNftId] = ObjectInfo({
|
129
|
+
nftId: stakingNftId,
|
130
|
+
parentNftId: _registryNftId,
|
131
|
+
objectType: STAKING(),
|
132
|
+
isInterceptor: false,
|
133
|
+
objectAddress: _stakingAddress,
|
134
|
+
initialOwner: stakingOwner,
|
135
|
+
data: ""
|
136
|
+
});
|
137
|
+
|
138
|
+
_chainNft.mint(stakingOwner, stakingId);
|
73
139
|
}
|
74
140
|
|
75
|
-
function register(
|
76
|
-
address objectAddress
|
77
|
-
) external override returns (NftId nftId) {
|
78
|
-
require(
|
79
|
-
_nftIdByAddress[objectAddress].eqz(),
|
80
|
-
"ERROR:REG-002:ALREADY_REGISTERED"
|
81
|
-
);
|
82
141
|
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
142
|
+
function registerService(
|
143
|
+
ObjectInfo memory info,
|
144
|
+
VersionPart version,
|
145
|
+
ObjectType domain
|
146
|
+
)
|
147
|
+
external
|
148
|
+
onlyReleaseManager
|
149
|
+
returns(NftId nftId)
|
150
|
+
{
|
151
|
+
address service = info.objectAddress;
|
152
|
+
/* must be guaranteed by release manager
|
153
|
+
if(service == address(0)) {
|
154
|
+
revert();
|
155
|
+
}
|
88
156
|
|
89
|
-
|
90
|
-
|
91
|
-
RegistryInfo memory parentInfo = _info[
|
92
|
-
registerable.getParentNftId()
|
93
|
-
];
|
94
|
-
require(parentInfo.nftId.gtz(), "ERROR:REG-004:PARENT_NOT_FOUND");
|
95
|
-
// check validity of parent relation, valid relations are
|
96
|
-
// policy -> product, bundle -> pool, product -> instance, pool -> instance
|
157
|
+
if(version.eqz()) {
|
158
|
+
revert();
|
97
159
|
}
|
98
160
|
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
)
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
);
|
161
|
+
if(info.objectType != SERVICE()) {
|
162
|
+
revert();
|
163
|
+
}
|
164
|
+
if(info.parentType != REGISTRY()) {
|
165
|
+
revert();
|
166
|
+
}
|
167
|
+
info.initialOwner == NFT_LOCK_ADDRESS <- if services are access managed
|
168
|
+
*/
|
169
|
+
|
170
|
+
if(domain.eqz()) {
|
171
|
+
revert ErrorRegistryDomainZero(service);
|
172
|
+
}
|
112
173
|
|
113
|
-
|
114
|
-
|
174
|
+
if(_service[version][domain] > address(0)) {
|
175
|
+
revert ErrorRegistryDomainAlreadyRegistered(service, version, domain);
|
176
|
+
}
|
177
|
+
|
178
|
+
_service[version][domain] = service;
|
179
|
+
|
180
|
+
nftId = _register(info);
|
115
181
|
|
116
|
-
|
182
|
+
emit LogServiceRegistration(version, domain);
|
117
183
|
}
|
118
184
|
|
119
|
-
function
|
120
|
-
NftId parentNftId,
|
121
|
-
ObjectType objectType,
|
122
|
-
address initialOwner
|
123
|
-
)
|
185
|
+
function register(ObjectInfo memory info)
|
124
186
|
external
|
125
|
-
|
126
|
-
returns
|
127
|
-
// TODO add onlyRegisteredInstance
|
128
|
-
NftId nftId
|
129
|
-
)
|
187
|
+
onlyRegistryService
|
188
|
+
returns(NftId nftId)
|
130
189
|
{
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
)
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
objectType
|
144
|
-
|
145
|
-
|
146
|
-
|
190
|
+
ObjectType objectType = info.objectType;
|
191
|
+
ObjectType parentType = _info[info.parentNftId].objectType;
|
192
|
+
|
193
|
+
// only valid core types combinations
|
194
|
+
if(info.objectAddress == address(0))
|
195
|
+
{
|
196
|
+
if(_coreObjectCombinations[objectType][parentType] == false) {
|
197
|
+
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
198
|
+
}
|
199
|
+
}
|
200
|
+
else
|
201
|
+
{
|
202
|
+
if(_coreContractCombinations[objectType][parentType] == false) {
|
203
|
+
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
204
|
+
}
|
205
|
+
}
|
206
|
+
|
207
|
+
nftId = _register(info);
|
208
|
+
}
|
209
|
+
|
210
|
+
function registerWithCustomType(ObjectInfo memory info)
|
211
|
+
external
|
212
|
+
onlyRegistryService
|
213
|
+
returns(NftId nftId)
|
214
|
+
{
|
215
|
+
ObjectType objectType = info.objectType;
|
216
|
+
ObjectType parentType = _info[info.parentNftId].objectType;
|
217
|
+
|
218
|
+
if(_coreTypes[objectType]) {
|
219
|
+
revert ErrorRegistryCoreTypeRegistration();
|
220
|
+
}
|
221
|
+
|
222
|
+
if(
|
223
|
+
parentType == PROTOCOL() ||
|
224
|
+
parentType == REGISTRY() ||
|
225
|
+
parentType == SERVICE()
|
226
|
+
) {
|
227
|
+
revert ErrorRegistryTypesCombinationInvalid(objectType, parentType);
|
228
|
+
}
|
229
|
+
|
230
|
+
_register(info);
|
231
|
+
}
|
147
232
|
|
148
|
-
_info[nftId] = info;
|
149
233
|
|
150
|
-
|
234
|
+
/// @dev earliest GIF major version
|
235
|
+
function getInitialVersion() external view returns (VersionPart) {
|
236
|
+
return _releaseManager.getInitialVersion();
|
151
237
|
}
|
152
238
|
|
153
|
-
|
239
|
+
// TODO make distinction between active an not yet active version
|
240
|
+
// need to be thought trough, not yet clear if necessary
|
241
|
+
// need to answer question: what is the latest version during the upgrade process?
|
242
|
+
// likely setting up a new gif version does not fit into a single tx
|
243
|
+
// in this case we might want to have a period where the latest version is
|
244
|
+
// in the process of being set up while the latest active version is 1 major release smaller
|
245
|
+
/// @dev latest GIF major version (might not yet be active)
|
246
|
+
function getNextVersion() external view returns (VersionPart) {
|
247
|
+
return _releaseManager.getNextVersion();
|
248
|
+
}
|
249
|
+
|
250
|
+
/// @dev latest active GIF release version
|
251
|
+
function getLatestVersion() external view returns (VersionPart) {
|
252
|
+
return _releaseManager.getLatestVersion();
|
253
|
+
}
|
254
|
+
|
255
|
+
function getReleaseInfo(VersionPart version) external view returns (ReleaseInfo memory) {
|
256
|
+
return _releaseManager.getReleaseInfo(version);
|
257
|
+
}
|
258
|
+
|
259
|
+
function getObjectCount() external view returns (uint256) {
|
154
260
|
return _chainNft.totalSupply();
|
155
261
|
}
|
156
262
|
|
157
|
-
function getNftId(
|
158
|
-
|
159
|
-
|
263
|
+
function getNftId() external view returns (NftId nftId) {
|
264
|
+
return _registryNftId;
|
265
|
+
}
|
266
|
+
|
267
|
+
function getProtocolNftId() external view returns (NftId nftId) {
|
268
|
+
return _protocolNftId;
|
269
|
+
}
|
270
|
+
|
271
|
+
function getNftId(address object) external view returns (NftId id) {
|
160
272
|
return _nftIdByAddress[object];
|
161
273
|
}
|
162
274
|
|
163
|
-
function
|
164
|
-
|
165
|
-
|
166
|
-
|
275
|
+
function ownerOf(NftId nftId) public view returns (address) {
|
276
|
+
return _chainNft.ownerOf(nftId.toInt());
|
277
|
+
}
|
278
|
+
|
279
|
+
function ownerOf(address contractAddress) public view returns (address) {
|
280
|
+
return _chainNft.ownerOf(_nftIdByAddress[contractAddress].toInt());
|
167
281
|
}
|
168
282
|
|
169
|
-
function
|
170
|
-
NftId nftId
|
171
|
-
) external view override returns (RegistryInfo memory info) {
|
283
|
+
function getObjectInfo(NftId nftId) external view returns (ObjectInfo memory) {
|
172
284
|
return _info[nftId];
|
173
285
|
}
|
174
286
|
|
175
|
-
function
|
176
|
-
return
|
287
|
+
function getObjectInfo(address object) external view returns (ObjectInfo memory) {
|
288
|
+
return _info[_nftIdByAddress[object]];
|
289
|
+
}
|
290
|
+
|
291
|
+
function isRegistered(NftId nftId) public view returns (bool) {
|
292
|
+
return _info[nftId].objectType.gtz();
|
177
293
|
}
|
178
294
|
|
179
|
-
function
|
295
|
+
function isRegistered(address object) external view returns (bool) {
|
296
|
+
return _nftIdByAddress[object].gtz();
|
297
|
+
}
|
298
|
+
|
299
|
+
function isRegisteredService(address object) external view returns (bool) {
|
300
|
+
return _info[_nftIdByAddress[object]].objectType == SERVICE();
|
301
|
+
}
|
302
|
+
|
303
|
+
function isRegisteredComponent(address object) external view returns (bool) {
|
304
|
+
NftId objectParentNftId = _info[_nftIdByAddress[object]].parentNftId;
|
305
|
+
return _info[objectParentNftId].objectType == INSTANCE();
|
306
|
+
}
|
307
|
+
|
308
|
+
function isValidRelease(VersionPart version) external view returns (bool)
|
309
|
+
{
|
310
|
+
return _releaseManager.isValidRelease(version);
|
311
|
+
}
|
312
|
+
|
313
|
+
function getStakingAddress() external view returns (address staking) {
|
314
|
+
return _stakingAddress;
|
315
|
+
}
|
316
|
+
|
317
|
+
function getTokenRegistryAddress() external view returns (address tokenRegistry) {
|
318
|
+
return _tokenRegistryAddress;
|
319
|
+
}
|
320
|
+
|
321
|
+
function getServiceAddress(
|
322
|
+
ObjectType serviceDomain,
|
323
|
+
VersionPart releaseVersion
|
324
|
+
) external view returns (address service)
|
325
|
+
{
|
326
|
+
service = _service[releaseVersion][serviceDomain];
|
327
|
+
}
|
328
|
+
|
329
|
+
function getReleaseAccessManagerAddress(VersionPart version) external view returns (address) {
|
330
|
+
return address(_releaseManager.getReleaseAccessManager(version));
|
331
|
+
}
|
332
|
+
|
333
|
+
function getReleaseManagerAddress() external view returns (address) {
|
334
|
+
return address(_releaseManager);
|
335
|
+
}
|
336
|
+
|
337
|
+
function getChainNftAddress() external view override returns (address) {
|
180
338
|
return address(_chainNft);
|
181
339
|
}
|
340
|
+
|
341
|
+
function getOwner() public view returns (address owner) {
|
342
|
+
return ownerOf(address(this));
|
343
|
+
}
|
344
|
+
|
345
|
+
// IERC165
|
346
|
+
|
347
|
+
function supportsInterface(bytes4 interfaceId) external pure returns (bool) {
|
348
|
+
if(interfaceId == type(IERC165).interfaceId || interfaceId == type(IRegistry).interfaceId) {
|
349
|
+
return true;
|
350
|
+
}
|
351
|
+
|
352
|
+
return false;
|
353
|
+
}
|
354
|
+
|
355
|
+
// Internals
|
356
|
+
|
357
|
+
/// @dev registry protects only against tampering existing records, registering with invalid types pairs and 0 parent address
|
358
|
+
// TODO registration of precompile addresses
|
359
|
+
function _register(ObjectInfo memory info)
|
360
|
+
internal
|
361
|
+
returns(NftId nftId)
|
362
|
+
{
|
363
|
+
ObjectType objectType = info.objectType;
|
364
|
+
bool isInterceptor = info.isInterceptor;
|
365
|
+
address objectAddress = info.objectAddress;
|
366
|
+
address owner = info.initialOwner;
|
367
|
+
|
368
|
+
NftId parentNftId = info.parentNftId;
|
369
|
+
ObjectInfo memory parentInfo = _info[parentNftId];
|
370
|
+
ObjectType parentType = parentInfo.objectType; // see function header
|
371
|
+
address parentAddress = parentInfo.objectAddress;
|
372
|
+
|
373
|
+
// parent is contract -> need to check? -> check before minting
|
374
|
+
// special case: staking: to protocol possible as well
|
375
|
+
// special case: global registry nft as parent when not on mainnet -> global registry address is 0
|
376
|
+
// special case: when parentNftId == _chainNft.mint(), check for zero parent address before mint
|
377
|
+
// special case: when parentNftId == _chainNft.mint() && objectAddress == initialOwner
|
378
|
+
if(objectType != STAKE()) {
|
379
|
+
if(parentAddress == address(0)) {
|
380
|
+
revert ErrorRegistryParentAddressZero();
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
address interceptorAddress = _getInterceptor(
|
385
|
+
isInterceptor,
|
386
|
+
objectType,
|
387
|
+
objectAddress,
|
388
|
+
parentInfo.isInterceptor,
|
389
|
+
parentAddress);
|
390
|
+
|
391
|
+
uint256 tokenId = _chainNft.getNextTokenId();
|
392
|
+
nftId = NftIdLib.toNftId(tokenId);
|
393
|
+
info.nftId = nftId;
|
394
|
+
_info[nftId] = info;
|
395
|
+
|
396
|
+
if(objectAddress > address(0)) {
|
397
|
+
if(_nftIdByAddress[objectAddress].gtz()) {
|
398
|
+
revert ErrorRegistryContractAlreadyRegistered(objectAddress);
|
399
|
+
}
|
400
|
+
|
401
|
+
_nftIdByAddress[objectAddress] = nftId;
|
402
|
+
}
|
403
|
+
|
404
|
+
emit LogRegistration(nftId, parentNftId, objectType, isInterceptor, objectAddress, owner);
|
405
|
+
|
406
|
+
// calls nft receiver(1) and interceptor(2)
|
407
|
+
uint256 mintedTokenId = _chainNft.mint(
|
408
|
+
owner,
|
409
|
+
interceptorAddress,
|
410
|
+
EMPTY_URI);
|
411
|
+
|
412
|
+
assert(mintedTokenId == tokenId);
|
413
|
+
}
|
414
|
+
|
415
|
+
/// @dev obtain interceptor address for this nft if applicable, address(0) otherwise
|
416
|
+
/// special case: STAKES (parent may be any type) -> no intercept call
|
417
|
+
/// default case:
|
418
|
+
function _getInterceptor(
|
419
|
+
bool isInterceptor,
|
420
|
+
ObjectType objectType,
|
421
|
+
address objectAddress,
|
422
|
+
bool parentIsInterceptor,
|
423
|
+
address parentObjectAddress
|
424
|
+
)
|
425
|
+
internal
|
426
|
+
view
|
427
|
+
returns (address interceptor)
|
428
|
+
{
|
429
|
+
// no intercepting calls for stakes
|
430
|
+
if (objectType == STAKE()) {
|
431
|
+
return address(0);
|
432
|
+
}
|
433
|
+
|
434
|
+
if (objectAddress == address(0)) {
|
435
|
+
if (parentIsInterceptor) {
|
436
|
+
return parentObjectAddress;
|
437
|
+
} else {
|
438
|
+
return address(0);
|
439
|
+
}
|
440
|
+
}
|
441
|
+
|
442
|
+
if (isInterceptor) {
|
443
|
+
return objectAddress;
|
444
|
+
}
|
445
|
+
|
446
|
+
return address(0);
|
447
|
+
}
|
448
|
+
|
449
|
+
// Internals called only in constructor
|
450
|
+
|
451
|
+
/// @dev protocol registration used to anchor the dip ecosystem relations
|
452
|
+
function _registerProtocol()
|
453
|
+
private
|
454
|
+
{
|
455
|
+
uint256 protocolId = _chainNft.PROTOCOL_NFT_ID();
|
456
|
+
_protocolNftId = NftIdLib.toNftId(protocolId);
|
457
|
+
|
458
|
+
_info[_protocolNftId] = ObjectInfo({
|
459
|
+
nftId: _protocolNftId,
|
460
|
+
parentNftId: NftIdLib.zero(),
|
461
|
+
objectType: PROTOCOL(),
|
462
|
+
isInterceptor: false,
|
463
|
+
objectAddress: address(0),
|
464
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
465
|
+
data: ""
|
466
|
+
});
|
467
|
+
|
468
|
+
_chainNft.mint(NFT_LOCK_ADDRESS, protocolId);
|
469
|
+
}
|
470
|
+
|
471
|
+
/// @dev registry registration
|
472
|
+
/// might also register the global registry when not on mainnet
|
473
|
+
function _registerRegistry()
|
474
|
+
private
|
475
|
+
returns (NftId registryNftId)
|
476
|
+
{
|
477
|
+
uint256 registryId = _chainNft.calculateTokenId(REGISTRY_TOKEN_SEQUENCE_ID);
|
478
|
+
_registryNftId = NftIdLib.toNftId(registryId);
|
479
|
+
NftId parentNftId;
|
480
|
+
|
481
|
+
if(registryId != _chainNft.GLOBAL_REGISTRY_ID())
|
482
|
+
{// we're not the global registry
|
483
|
+
_registerGlobalRegistry();
|
484
|
+
parentNftId = NftIdLib.toNftId(_chainNft.GLOBAL_REGISTRY_ID());
|
485
|
+
}
|
486
|
+
else
|
487
|
+
{// we are global registry
|
488
|
+
parentNftId = _protocolNftId;
|
489
|
+
}
|
490
|
+
|
491
|
+
_info[_registryNftId] = ObjectInfo({
|
492
|
+
nftId: _registryNftId,
|
493
|
+
parentNftId: parentNftId,
|
494
|
+
objectType: REGISTRY(),
|
495
|
+
isInterceptor: false,
|
496
|
+
objectAddress: address(this),
|
497
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
498
|
+
data: ""
|
499
|
+
});
|
500
|
+
|
501
|
+
_nftIdByAddress[address(this)] = _registryNftId;
|
502
|
+
_chainNft.mint(NFT_LOCK_ADDRESS, registryId);
|
503
|
+
}
|
504
|
+
|
505
|
+
/// @dev global registry registration for non mainnet registries
|
506
|
+
function _registerGlobalRegistry()
|
507
|
+
private
|
508
|
+
{
|
509
|
+
uint256 globalRegistryId = _chainNft.GLOBAL_REGISTRY_ID();
|
510
|
+
NftId globalRegistryNftId = NftIdLib.toNftId(globalRegistryId);
|
511
|
+
|
512
|
+
_info[globalRegistryNftId] = ObjectInfo({
|
513
|
+
nftId: globalRegistryNftId,
|
514
|
+
parentNftId: NftIdLib.toNftId(_chainNft.PROTOCOL_NFT_ID()),
|
515
|
+
objectType: REGISTRY(),
|
516
|
+
isInterceptor: false,
|
517
|
+
objectAddress: address(0),
|
518
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
519
|
+
data: ""
|
520
|
+
});
|
521
|
+
|
522
|
+
_chainNft.mint(NFT_LOCK_ADDRESS, globalRegistryId);
|
523
|
+
}
|
524
|
+
|
525
|
+
/// @dev defines which object - parent types relations are allowed to register
|
526
|
+
// IMPORTANT:
|
527
|
+
// 1) EACH object type MUST have only one parent type across ALL mappings
|
528
|
+
// 2) DO NOT use object type (e.g. POLCY, BUNDLE, STAKE) as parent type
|
529
|
+
// 3) DO NOT use REGISTRY as object type
|
530
|
+
// 2) DO NOT use PROTOCOL and "zeroObjectType"
|
531
|
+
function _setupValidCoreTypesAndCombinations()
|
532
|
+
private
|
533
|
+
{
|
534
|
+
_coreTypes[REGISTRY()] = true;
|
535
|
+
_coreTypes[SERVICE()] = true;
|
536
|
+
_coreTypes[TOKEN()] = true;
|
537
|
+
_coreTypes[INSTANCE()] = true;
|
538
|
+
_coreTypes[PRODUCT()] = true;
|
539
|
+
_coreTypes[POOL()] = true;
|
540
|
+
_coreTypes[DISTRIBUTION()] = true;
|
541
|
+
_coreTypes[DISTRIBUTOR()] = true;
|
542
|
+
_coreTypes[ORACLE()] = true;
|
543
|
+
_coreTypes[POLICY()] = true;
|
544
|
+
_coreTypes[BUNDLE()] = true;
|
545
|
+
_coreTypes[STAKING()] = true;
|
546
|
+
_coreTypes[STAKE()] = true;
|
547
|
+
|
548
|
+
uint256 registryId = _chainNft.calculateTokenId(REGISTRY_TOKEN_SEQUENCE_ID);
|
549
|
+
if(registryId == _chainNft.GLOBAL_REGISTRY_ID()) {
|
550
|
+
// we are global registry
|
551
|
+
// object is registry from different chain
|
552
|
+
// parent is global registry, this contract
|
553
|
+
_coreContractCombinations[REGISTRY()][REGISTRY()] = true; // only for global regstry
|
554
|
+
//_coreObjectCombinations[REGISTRY()][REGISTRY()] = true;
|
555
|
+
} else {
|
556
|
+
// we are not global registry
|
557
|
+
// object is local registry, this contract
|
558
|
+
// parent is global registry, object with 0 address or registry from mainnet???
|
559
|
+
}
|
560
|
+
_coreContractCombinations[STAKING()][REGISTRY()] = true; // only for chain staking contract
|
561
|
+
_coreContractCombinations[TOKEN()][REGISTRY()] = true;
|
562
|
+
//_coreContractCombinations[SERVICE()][REGISTRY()] = true;// do not need it here -> registerService() registers exactly this combination
|
563
|
+
_coreContractCombinations[INSTANCE()][REGISTRY()] = true;
|
564
|
+
|
565
|
+
_coreContractCombinations[PRODUCT()][INSTANCE()] = true;
|
566
|
+
_coreContractCombinations[DISTRIBUTION()][INSTANCE()] = true;
|
567
|
+
_coreContractCombinations[ORACLE()][INSTANCE()] = true;
|
568
|
+
_coreContractCombinations[POOL()][INSTANCE()] = true;
|
569
|
+
|
570
|
+
_coreObjectCombinations[DISTRIBUTOR()][DISTRIBUTION()] = true;
|
571
|
+
_coreObjectCombinations[POLICY()][PRODUCT()] = true;
|
572
|
+
_coreObjectCombinations[BUNDLE()][POOL()] = true;
|
573
|
+
|
574
|
+
// staking
|
575
|
+
_coreObjectCombinations[STAKE()][PROTOCOL()] = true;
|
576
|
+
_coreObjectCombinations[STAKE()][INSTANCE()] = true;
|
577
|
+
}
|
182
578
|
}
|