@etherisc/gif-next 0.0.2-fb8d07b-779 → 0.0.2-fbe22f0-239
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +136 -2
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +858 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +588 -92
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +208 -143
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +543 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +663 -31
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +648 -5
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +818 -273
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +657 -181
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1371 -129
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +132 -21
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +293 -656
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +211 -144
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +89 -91
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +395 -122
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +149 -57
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +243 -55
- 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 +2 -2
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1091 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1292 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +560 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +272 -91
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +140 -40
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IApplicationService.sol/IApplicationService.json} +217 -58
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +785 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +20 -20
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +771 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +22 -84
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +32 -247
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1352 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +616 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +256 -180
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +140 -52
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +981 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +548 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +208 -224
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +228 -95
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +222 -330
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +197 -109
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +162 -112
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +124 -29
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +24 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +5 -5
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +20 -20
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +130 -11
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +172 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +130 -6
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -11
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +153 -20
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- 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/shared/Versionable.sol/Versionable.json +2 -2
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +126 -11
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +171 -38
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -8
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +230 -0
- package/contracts/components/Distribution.sol +53 -57
- package/contracts/components/IComponent.sol +50 -0
- package/contracts/components/IDistributionComponent.sol +5 -2
- package/contracts/components/IPoolComponent.sol +54 -29
- package/contracts/components/IProductComponent.sol +7 -3
- package/contracts/components/Pool.sol +153 -142
- package/contracts/components/Product.sol +109 -128
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +41 -8
- package/contracts/instance/IInstanceService.sol +15 -4
- package/contracts/instance/Instance.sol +65 -240
- package/contracts/instance/InstanceAccessManager.sol +87 -78
- package/contracts/instance/InstanceReader.sol +12 -25
- package/contracts/instance/InstanceService.sol +347 -95
- package/contracts/instance/InstanceServiceManager.sol +10 -12
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/module/IAccess.sol +27 -18
- package/contracts/instance/module/ISetup.sol +7 -4
- package/contracts/instance/service/ApplicationService.sol +268 -0
- package/contracts/instance/service/BundleService.sol +298 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +45 -27
- package/contracts/instance/service/DistributionServiceManager.sol +10 -12
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +54 -0
- package/contracts/instance/service/IPolicyService.sol +88 -0
- package/contracts/instance/service/IPoolService.sol +6 -23
- package/contracts/instance/service/IProductService.sol +6 -73
- package/contracts/instance/service/PolicyService.sol +524 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +40 -124
- package/contracts/instance/service/PoolServiceManager.sol +10 -12
- package/contracts/instance/service/ProductService.sol +233 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +38 -33
- package/contracts/registry/IRegistryService.sol +45 -13
- package/contracts/registry/Registry.sol +223 -250
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +86 -224
- package/contracts/registry/RegistryServiceManager.sol +18 -36
- package/contracts/registry/ReleaseManager.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +11 -9
- package/contracts/shared/ERC165.sol +12 -11
- package/contracts/shared/INftOwnable.sol +6 -1
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IService.sol +2 -1
- package/contracts/shared/IVersionable.sol +2 -2
- package/contracts/shared/NftOwnable.sol +93 -42
- package/contracts/shared/PolicyHolder.sol +52 -0
- package/contracts/shared/ProxyManager.sol +6 -5
- package/contracts/shared/Registerable.sol +15 -24
- package/contracts/shared/Service.sol +18 -13
- package/contracts/shared/Versionable.sol +3 -2
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +4 -3
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/ObjectType.sol +5 -1
- package/contracts/types/RoleId.sol +10 -9
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -91
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -125
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
@@ -1,221 +1,169 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
2
|
pragma solidity ^0.8.20;
|
3
3
|
|
4
|
-
import {
|
5
|
-
import {IService} from "../shared/IService.sol";
|
4
|
+
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
|
6
5
|
|
7
|
-
import {
|
8
|
-
import {
|
9
|
-
import {NftId, toNftId, zeroNftId, NftIdLib} from "../types/NftId.sol";
|
10
|
-
import {Version, VersionPart, VersionLib, VersionPartLib} from "../types/Version.sol";
|
6
|
+
import {NftId, toNftId, zeroNftId} from "../types/NftId.sol";
|
7
|
+
import {VersionPart} from "../types/Version.sol";
|
11
8
|
import {ObjectType, PROTOCOL, REGISTRY, TOKEN, SERVICE, INSTANCE, STAKE, PRODUCT, DISTRIBUTION, ORACLE, POOL, POLICY, BUNDLE} from "../types/ObjectType.sol";
|
12
|
-
import {ITransferInterceptor} from "./ITransferInterceptor.sol";
|
13
|
-
|
14
|
-
import {ERC165} from "../shared/ERC165.sol";
|
15
9
|
|
10
|
+
import {ChainNft} from "./ChainNft.sol";
|
11
|
+
import {IRegistry} from "./IRegistry.sol";
|
12
|
+
import {ReleaseManager} from "./ReleaseManager.sol";
|
16
13
|
|
17
14
|
// IMPORTANT
|
18
15
|
// Each NFT minted by registry is accosiated with:
|
19
16
|
// 1) NFT owner
|
20
17
|
// 2) registred contract OR object stored in registered (parent) contract
|
21
18
|
// Four registration flows:
|
22
|
-
// 1)
|
23
|
-
// 2)
|
24
|
-
// 3) IRegisterable address by
|
25
|
-
// 4) state object by
|
19
|
+
// 1) IService address by release manager (SERVICE of domain SERVICE aka registry service aka release creation)
|
20
|
+
// 2) IService address by release manager (SERVICE of domain !SERVICE aka regular service)
|
21
|
+
// 3) IRegisterable address by regular service (INSTANCE, PRODUCT, POOL, DISTRIBUTION, ORACLE)
|
22
|
+
// 4) state object by regular service (POLICY, BUNDLE, STAKE)
|
26
23
|
|
27
24
|
contract Registry is
|
28
|
-
ERC165,
|
29
25
|
IRegistry
|
30
26
|
{
|
31
|
-
uint256 public constant GIF_MAJOR_VERSION_AT_DEPLOYMENT = 3;
|
32
27
|
address public constant NFT_LOCK_ADDRESS = address(0x1);
|
33
|
-
uint256 public constant
|
28
|
+
uint256 public constant REGISTRY_TOKEN_SEQUENCE_ID = 2;
|
34
29
|
string public constant EMPTY_URI = "";
|
35
30
|
|
36
|
-
|
31
|
+
mapping(NftId nftId => ObjectInfo info) private _info;
|
32
|
+
mapping(address object => NftId nftId) private _nftIdByAddress;
|
37
33
|
|
38
|
-
mapping(
|
39
|
-
mapping(address object => NftId nftId) internal _nftIdByAddress;
|
34
|
+
mapping(VersionPart version => mapping(ObjectType serviceDomain => address)) private _service;
|
40
35
|
|
41
|
-
mapping(
|
42
|
-
ObjectType objectType => bool)) internal _isApproved;
|
36
|
+
mapping(ObjectType objectType => bool) private _coreTypes;
|
43
37
|
|
44
38
|
mapping(ObjectType objectType => mapping(
|
45
|
-
ObjectType parentType => bool))
|
39
|
+
ObjectType parentType => bool)) private _coreContractCombinations;
|
46
40
|
|
47
41
|
mapping(ObjectType objectType => mapping(
|
48
|
-
ObjectType parentType => bool))
|
42
|
+
ObjectType parentType => bool)) private _coreObjectCombinations;
|
49
43
|
|
50
|
-
|
51
|
-
|
44
|
+
NftId private _registryNftId;
|
45
|
+
ChainNft private _chainNft;
|
52
46
|
|
53
|
-
|
54
|
-
mapping(bytes32 serviceNameHash => mapping(
|
55
|
-
VersionPart majorVersion => address service)) internal _service;
|
47
|
+
ReleaseManager private _releaseManager;
|
56
48
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
modifier onlyOwner() {
|
63
|
-
if(msg.sender != getOwner()) {
|
64
|
-
revert NotOwner(msg.sender);
|
49
|
+
modifier onlyRegistryService() {
|
50
|
+
if(!_releaseManager.isActiveRegistryService(msg.sender)) {
|
51
|
+
revert CallerNotRegistryService();
|
65
52
|
}
|
66
53
|
_;
|
67
54
|
}
|
68
55
|
|
69
|
-
modifier
|
70
|
-
|
71
|
-
|
72
|
-
revert NotRegistryService();
|
56
|
+
modifier onlyReleaseManager() {
|
57
|
+
if(msg.sender != address(_releaseManager)) {
|
58
|
+
revert CallerNotReleaseManager();
|
73
59
|
}
|
74
60
|
_;
|
75
61
|
}
|
76
62
|
|
77
|
-
constructor(
|
63
|
+
constructor()
|
78
64
|
{
|
79
|
-
|
80
|
-
|
81
|
-
// major version at constructor time
|
82
|
-
_majorVersion = VersionLib.toVersionPart(GIF_MAJOR_VERSION_AT_DEPLOYMENT);
|
83
|
-
emit LogInitialMajorVersionSet(_majorVersion);
|
65
|
+
_releaseManager = ReleaseManager(msg.sender);
|
84
66
|
|
85
67
|
// deploy NFT
|
86
|
-
_chainNft = new ChainNft(address(this))
|
68
|
+
_chainNft = new ChainNft(address(this));
|
87
69
|
|
88
70
|
// initial registry setup
|
89
71
|
_registerProtocol();
|
90
|
-
_registerRegistry(
|
91
|
-
_registerRegistryService(registryOwner);
|
92
|
-
|
93
|
-
// set object parent relations
|
94
|
-
_setupValidObjectParentCombinations();
|
72
|
+
_registerRegistry();
|
95
73
|
|
96
|
-
|
74
|
+
// set object types and object parent relations
|
75
|
+
_setupValidCoreTypesAndCombinations();
|
97
76
|
}
|
98
77
|
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
78
|
+
function registerService(
|
79
|
+
ObjectInfo memory info,
|
80
|
+
VersionPart version,
|
81
|
+
ObjectType domain
|
82
|
+
)
|
103
83
|
external
|
104
|
-
|
84
|
+
onlyReleaseManager
|
85
|
+
returns(NftId nftId)
|
105
86
|
{
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
87
|
+
/* must be guaranteed by release manager
|
88
|
+
if(info.objectType != SERVICE()) {
|
89
|
+
revert();
|
90
|
+
}
|
91
|
+
if(info.parentType != REGISTRY()) {
|
92
|
+
revert();
|
93
|
+
}
|
94
|
+
info.initialOwner == NFT_LOCK_ADDRESS <- if services are access managed
|
95
|
+
*/
|
96
|
+
|
97
|
+
if(_service[version][domain] > address(0)) {
|
98
|
+
revert ServiceAlreadyRegistered(info.objectAddress);
|
111
99
|
}
|
112
100
|
|
113
|
-
|
114
|
-
|
101
|
+
_service[version][domain] = info.objectAddress; // nftId;
|
102
|
+
|
103
|
+
nftId = _register(info);
|
104
|
+
|
105
|
+
emit LogServiceRegistration(version, domain);
|
115
106
|
}
|
116
107
|
|
117
|
-
/// @dev registry protects only against tampering existing records, registering with invalid types pairs and 0 parent address
|
118
|
-
// TODO service registration means its approval for some type?
|
119
|
-
// TODO registration of precompile addresses
|
120
108
|
function register(ObjectInfo memory info)
|
121
109
|
external
|
122
110
|
onlyRegistryService
|
123
111
|
returns(NftId nftId)
|
124
112
|
{
|
125
113
|
ObjectType objectType = info.objectType;
|
126
|
-
|
127
|
-
ObjectInfo memory parentInfo = _info[parentNftId];
|
128
|
-
ObjectType parentType = parentInfo.objectType; // see function header
|
129
|
-
address parentAddress = parentInfo.objectAddress;
|
114
|
+
ObjectType parentType = _info[info.parentNftId].objectType;
|
130
115
|
|
131
|
-
//
|
132
|
-
//
|
133
|
-
|
134
|
-
|
135
|
-
if(parentAddress == address(0)) {
|
136
|
-
revert ZeroParentAddress();
|
116
|
+
// TODO do not need it here -> SERVICE is no longer part of _coreContractCombinations
|
117
|
+
// no service registrations
|
118
|
+
if(objectType == SERVICE()) {
|
119
|
+
revert ServiceRegistration();
|
137
120
|
}
|
138
121
|
|
139
|
-
|
140
|
-
|
141
|
-
// TODO does external call
|
142
|
-
uint256 mintedTokenId = _chainNft.mint(
|
143
|
-
info.initialOwner,
|
144
|
-
interceptor,
|
145
|
-
EMPTY_URI);
|
146
|
-
nftId = toNftId(mintedTokenId);
|
147
|
-
|
148
|
-
// TODO move nftId out of info struct
|
149
|
-
// getters by nftId -> return struct without nftId
|
150
|
-
// getters by address -> return nftId AND struct
|
151
|
-
info.nftId = nftId;
|
152
|
-
_info[nftId] = info;
|
153
|
-
|
154
|
-
if(info.objectAddress > address(0))
|
122
|
+
// only valid core types combinations
|
123
|
+
if(info.objectAddress == address(0))
|
155
124
|
{
|
156
|
-
|
157
|
-
// parent is registered + object-parent types are valid
|
158
|
-
if(_isValidContractCombination[objectType][parentType] == false) {
|
125
|
+
if(_coreObjectCombinations[objectType][parentType] == false) {
|
159
126
|
revert InvalidTypesCombination(objectType, parentType);
|
160
127
|
}
|
161
|
-
|
162
|
-
address contractAddress = info.objectAddress;
|
163
|
-
|
164
|
-
if(_nftIdByAddress[contractAddress].gtz()) {
|
165
|
-
revert ContractAlreadyRegistered(contractAddress);
|
166
|
-
}
|
167
|
-
|
168
|
-
_nftIdByAddress[contractAddress] = nftId;
|
169
|
-
|
170
|
-
// special case
|
171
|
-
if(objectType == SERVICE()) {
|
172
|
-
_registerService(info);
|
173
|
-
}
|
174
128
|
}
|
175
129
|
else
|
176
130
|
{
|
177
|
-
if(
|
131
|
+
if(_coreContractCombinations[objectType][parentType] == false) {
|
178
132
|
revert InvalidTypesCombination(objectType, parentType);
|
179
133
|
}
|
180
134
|
}
|
181
135
|
|
182
|
-
|
136
|
+
nftId = _register(info);
|
183
137
|
}
|
184
138
|
|
185
|
-
|
186
|
-
// component owner is responsible for token selection and operations
|
187
|
-
// service MUST deny registration of component with inactive token
|
188
|
-
function setTokenActive(address token, VersionPart majorVersion, bool active)
|
139
|
+
function registerWithCustomType(ObjectInfo memory info)
|
189
140
|
external
|
190
|
-
|
141
|
+
onlyRegistryService
|
142
|
+
returns(NftId nftId)
|
191
143
|
{
|
192
|
-
|
193
|
-
|
194
|
-
if (info.nftId.eqz()) {
|
195
|
-
revert TokenNotRegistered(token);
|
196
|
-
}
|
144
|
+
ObjectType objectType = info.objectType;
|
145
|
+
ObjectType parentType = _info[info.parentNftId].objectType;
|
197
146
|
|
198
|
-
|
199
|
-
|
200
|
-
revert NotToken(token);
|
147
|
+
if(_coreTypes[objectType]) {
|
148
|
+
revert CoreTypeRegistration();
|
201
149
|
}
|
202
150
|
|
203
|
-
|
204
|
-
// ensure major version increments is one
|
205
|
-
uint256 version = majorVersion.toInt();
|
206
|
-
uint256 versionNow = _majorVersion.toInt();
|
207
|
-
if (version < GIF_MAJOR_VERSION_AT_DEPLOYMENT || version > versionNow) {
|
208
|
-
revert TokenMajorVersionInvalid(majorVersion);
|
209
|
-
}
|
151
|
+
if(
|
210
152
|
|
211
|
-
|
153
|
+
parentType == PROTOCOL() ||
|
154
|
+
parentType == REGISTRY() ||
|
155
|
+
parentType == SERVICE()
|
156
|
+
) {
|
157
|
+
revert InvalidTypesCombination(objectType, parentType);
|
158
|
+
}
|
212
159
|
|
213
|
-
|
160
|
+
_register(info);
|
214
161
|
}
|
215
162
|
|
163
|
+
|
216
164
|
/// @dev earliest GIF major version
|
217
|
-
function
|
218
|
-
return
|
165
|
+
function getInitialVersion() external view returns (VersionPart) {
|
166
|
+
return _releaseManager.getInitialVersion();
|
219
167
|
}
|
220
168
|
|
221
169
|
// TODO make distinction between active an not yet active version
|
@@ -225,20 +173,27 @@ contract Registry is
|
|
225
173
|
// in this case we might want to have a period where the latest version is
|
226
174
|
// in the process of being set up while the latest active version is 1 major release smaller
|
227
175
|
/// @dev latest GIF major version (might not yet be active)
|
228
|
-
function
|
229
|
-
return
|
176
|
+
function getNextVersion() external view returns (VersionPart) {
|
177
|
+
return _releaseManager.getNextVersion();
|
230
178
|
}
|
231
179
|
|
232
180
|
/// @dev latest active GIF release version
|
233
|
-
function
|
234
|
-
return
|
181
|
+
function getLatestVersion() external view returns (VersionPart) {
|
182
|
+
return _releaseManager.getLatestVersion();
|
183
|
+
}
|
184
|
+
|
185
|
+
function getReleaseInfo(VersionPart version) external view returns (ReleaseInfo memory) {
|
186
|
+
return _releaseManager.getReleaseInfo(version);
|
235
187
|
}
|
236
|
-
|
237
188
|
|
238
189
|
function getObjectCount() external view override returns (uint256) {
|
239
190
|
return _chainNft.totalSupply();
|
240
191
|
}
|
241
192
|
|
193
|
+
function getReleaseManagerAddress() external view returns (address) {
|
194
|
+
return address(_releaseManager);
|
195
|
+
}
|
196
|
+
|
242
197
|
function getNftId() external view returns (NftId nftId) {
|
243
198
|
return _registryNftId;
|
244
199
|
}
|
@@ -252,7 +207,6 @@ contract Registry is
|
|
252
207
|
}
|
253
208
|
|
254
209
|
function ownerOf(address contractAddress) public view returns (address) {
|
255
|
-
|
256
210
|
return _chainNft.ownerOf(_nftIdByAddress[contractAddress].toInt());
|
257
211
|
}
|
258
212
|
|
@@ -261,7 +215,6 @@ contract Registry is
|
|
261
215
|
}
|
262
216
|
|
263
217
|
function getObjectInfo(address object) external view override returns (ObjectInfo memory) {
|
264
|
-
|
265
218
|
return _info[_nftIdByAddress[object]];
|
266
219
|
}
|
267
220
|
|
@@ -273,56 +226,94 @@ contract Registry is
|
|
273
226
|
return _nftIdByAddress[object].gtz();
|
274
227
|
}
|
275
228
|
|
276
|
-
function
|
277
|
-
return
|
229
|
+
function isRegisteredService(address object) external view override returns (bool) {
|
230
|
+
return _info[_nftIdByAddress[object]].objectType == SERVICE();
|
278
231
|
}
|
279
232
|
|
280
|
-
function
|
281
|
-
|
233
|
+
function isValidRelease(VersionPart version) external view returns (bool)
|
234
|
+
{
|
235
|
+
return _releaseManager.isValidRelease(version);
|
282
236
|
}
|
283
237
|
|
284
|
-
// special case to retrive a gif service
|
285
238
|
function getServiceAddress(
|
286
|
-
|
287
|
-
VersionPart
|
288
|
-
) external view returns (address)
|
239
|
+
ObjectType serviceDomain,
|
240
|
+
VersionPart releaseVersion
|
241
|
+
) external view returns (address service)
|
289
242
|
{
|
290
|
-
|
291
|
-
|
243
|
+
// TODO how can I get service address while release is not validated/activated ?!! -> user will check validity of release on its own
|
244
|
+
//if(_releaseManager.isValidRelease(releaseVersion)) {
|
245
|
+
service = _service[releaseVersion][serviceDomain];
|
246
|
+
//}
|
292
247
|
}
|
293
248
|
|
294
|
-
function
|
295
|
-
return _chainNft;
|
249
|
+
function getChainNftAddress() external view override returns (address) {
|
250
|
+
return address(_chainNft);
|
296
251
|
}
|
297
252
|
|
298
253
|
function getOwner() public view returns (address owner) {
|
299
254
|
return ownerOf(address(this));
|
300
255
|
}
|
301
256
|
|
257
|
+
// IERC165
|
258
|
+
|
259
|
+
function supportsInterface(bytes4 interfaceId) external pure returns (bool) {
|
260
|
+
if(interfaceId == type(IERC165).interfaceId || interfaceId == type(IRegistry).interfaceId) {
|
261
|
+
return true;
|
262
|
+
}
|
263
|
+
|
264
|
+
return false;
|
265
|
+
}
|
266
|
+
|
302
267
|
// Internals
|
303
268
|
|
304
|
-
|
269
|
+
/// @dev registry protects only against tampering existing records, registering with invalid types pairs and 0 parent address
|
270
|
+
// TODO registration of precompile addresses
|
271
|
+
function _register(ObjectInfo memory info)
|
305
272
|
internal
|
273
|
+
returns(NftId nftId)
|
306
274
|
{
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
//
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
revert ServiceNameAlreadyRegistered(serviceName, majorVersion);
|
275
|
+
ObjectType objectType = info.objectType;
|
276
|
+
NftId parentNftId = info.parentNftId;
|
277
|
+
ObjectInfo memory parentInfo = _info[parentNftId];
|
278
|
+
ObjectType parentType = parentInfo.objectType; // see function header
|
279
|
+
address parentAddress = parentInfo.objectAddress;
|
280
|
+
|
281
|
+
// parent is contract -> need to check? -> check before minting
|
282
|
+
// special case: global registry nft as parent when not on mainnet -> global registry address is 0
|
283
|
+
// special case: when parentNftId == _chainNft.mint(), check for zero parent address before mint
|
284
|
+
// special case: when parentNftId == _chainNft.mint() && objectAddress == initialOwner
|
285
|
+
if(parentAddress == address(0)) {
|
286
|
+
revert ZeroParentAddress();
|
320
287
|
}
|
321
288
|
|
322
|
-
|
323
|
-
_service[serviceNameHash][majorVersion] = info.objectAddress;
|
289
|
+
address interceptor = _getInterceptor(info.isInterceptor, info.objectAddress, parentInfo.isInterceptor, parentAddress);
|
324
290
|
|
325
|
-
|
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
|
+
info.nftId = nftId;
|
303
|
+
_info[nftId] = info;
|
304
|
+
|
305
|
+
if(info.objectAddress > address(0))
|
306
|
+
{
|
307
|
+
address contractAddress = info.objectAddress;
|
308
|
+
|
309
|
+
if(_nftIdByAddress[contractAddress].gtz()) {
|
310
|
+
revert ContractAlreadyRegistered(contractAddress);
|
311
|
+
}
|
312
|
+
|
313
|
+
_nftIdByAddress[contractAddress] = nftId;
|
314
|
+
}
|
315
|
+
|
316
|
+
emit LogRegistration(nftId, parentNftId, objectType, info.isInterceptor, info.objectAddress, info.initialOwner);
|
326
317
|
}
|
327
318
|
|
328
319
|
/// @dev obtain interceptor address for this nft if applicable, address(0) otherwise
|
@@ -355,32 +346,31 @@ contract Registry is
|
|
355
346
|
|
356
347
|
/// @dev protocol registration used to anchor the dip ecosystem relations
|
357
348
|
function _registerProtocol()
|
358
|
-
|
349
|
+
private
|
359
350
|
{
|
360
351
|
uint256 protocolId = _chainNft.PROTOCOL_NFT_ID();
|
361
352
|
NftId protocolNftId = toNftId(protocolId);
|
362
353
|
|
363
|
-
|
354
|
+
_info[protocolNftId] = ObjectInfo({
|
355
|
+
nftId: protocolNftId,
|
356
|
+
parentNftId: zeroNftId(),
|
357
|
+
objectType: PROTOCOL(),
|
358
|
+
isInterceptor: false,
|
359
|
+
objectAddress: address(0),
|
360
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
361
|
+
data: ""
|
362
|
+
});
|
364
363
|
|
365
|
-
|
366
|
-
protocolNftId,
|
367
|
-
zeroNftId(), // parent
|
368
|
-
PROTOCOL(),
|
369
|
-
false, // isInterceptor
|
370
|
-
address(0), // objectAddress
|
371
|
-
NFT_LOCK_ADDRESS,// initialOwner
|
372
|
-
""
|
373
|
-
);
|
364
|
+
_chainNft.mint(NFT_LOCK_ADDRESS, protocolId);
|
374
365
|
}
|
375
366
|
|
376
367
|
/// @dev registry registration
|
377
368
|
/// might also register the global registry when not on mainnet
|
378
|
-
function _registerRegistry(
|
379
|
-
|
369
|
+
function _registerRegistry()
|
370
|
+
private
|
380
371
|
{
|
381
|
-
uint256 registryId = _chainNft.calculateTokenId(
|
372
|
+
uint256 registryId = _chainNft.calculateTokenId(REGISTRY_TOKEN_SEQUENCE_ID);
|
382
373
|
NftId registryNftId = toNftId(registryId);
|
383
|
-
|
384
374
|
NftId parentNftId;
|
385
375
|
|
386
376
|
if(registryId != _chainNft.GLOBAL_REGISTRY_ID())
|
@@ -393,68 +383,39 @@ contract Registry is
|
|
393
383
|
parentNftId = toNftId(_chainNft.PROTOCOL_NFT_ID());
|
394
384
|
}
|
395
385
|
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
""
|
406
|
-
);
|
386
|
+
_info[registryNftId] = ObjectInfo({
|
387
|
+
nftId: registryNftId,
|
388
|
+
parentNftId: parentNftId,
|
389
|
+
objectType: REGISTRY(),
|
390
|
+
isInterceptor: false,
|
391
|
+
objectAddress: address(this),
|
392
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
393
|
+
data: ""
|
394
|
+
});
|
407
395
|
_nftIdByAddress[address(this)] = registryNftId;
|
408
396
|
_registryNftId = registryNftId;
|
409
|
-
}
|
410
397
|
|
398
|
+
_chainNft.mint(NFT_LOCK_ADDRESS, registryId);
|
399
|
+
}
|
411
400
|
|
412
401
|
/// @dev global registry registration for non mainnet registries
|
413
402
|
function _registerGlobalRegistry()
|
414
|
-
|
403
|
+
private
|
415
404
|
{
|
416
405
|
uint256 globalRegistryId = _chainNft.GLOBAL_REGISTRY_ID();
|
417
|
-
|
418
|
-
_chainNft.mint(NFT_LOCK_ADDRESS, globalRegistryId);
|
419
|
-
|
420
406
|
NftId globalRegistryNftId = toNftId(globalRegistryId);
|
421
407
|
|
422
|
-
_info[globalRegistryNftId] = ObjectInfo(
|
423
|
-
globalRegistryNftId,
|
424
|
-
toNftId(_chainNft.PROTOCOL_NFT_ID()),
|
425
|
-
REGISTRY(),
|
426
|
-
false,
|
427
|
-
address(0),
|
428
|
-
NFT_LOCK_ADDRESS,
|
429
|
-
""
|
430
|
-
);
|
431
|
-
}
|
408
|
+
_info[globalRegistryNftId] = ObjectInfo({
|
409
|
+
nftId: globalRegistryNftId,
|
410
|
+
parentNftId: toNftId(_chainNft.PROTOCOL_NFT_ID()),
|
411
|
+
objectType: REGISTRY(),
|
412
|
+
isInterceptor: false,
|
413
|
+
objectAddress: address(0),
|
414
|
+
initialOwner: NFT_LOCK_ADDRESS,
|
415
|
+
data: ""
|
416
|
+
});
|
432
417
|
|
433
|
-
|
434
|
-
internal
|
435
|
-
{
|
436
|
-
uint256 serviceId = _chainNft.calculateTokenId(REGISTRY_SERVICE_TOKEN_SEQUENCE_ID);
|
437
|
-
NftId serviceNftId = toNftId(serviceId);
|
438
|
-
|
439
|
-
_chainNft.mint(registryOwner, serviceId);
|
440
|
-
|
441
|
-
_info[serviceNftId] = ObjectInfo(
|
442
|
-
serviceNftId,
|
443
|
-
_registryNftId,
|
444
|
-
SERVICE(),
|
445
|
-
false, // isInterceptor
|
446
|
-
msg.sender, // service deploys registry
|
447
|
-
registryOwner, // initialOwner,
|
448
|
-
""
|
449
|
-
);
|
450
|
-
|
451
|
-
_nftIdByAddress[msg.sender] = serviceNftId;
|
452
|
-
|
453
|
-
string memory serviceName = "RegistryService";
|
454
|
-
bytes32 serviceNameHash = keccak256(abi.encode(serviceName));
|
455
|
-
_service[serviceNameHash][VersionLib.toVersionPart(GIF_MAJOR_VERSION_AT_DEPLOYMENT)] = msg.sender;
|
456
|
-
_string[serviceNftId] = serviceName;
|
457
|
-
_serviceNftId = serviceNftId;
|
418
|
+
_chainNft.mint(NFT_LOCK_ADDRESS, globalRegistryId);
|
458
419
|
}
|
459
420
|
|
460
421
|
/// @dev defines which object - parent types relations are allowed to register
|
@@ -463,27 +424,39 @@ contract Registry is
|
|
463
424
|
// 2) DO NOT use object type (e.g. POLCY, BUNDLE, STAKE) as parent type
|
464
425
|
// 3) DO NOT use REGISTRY as object type
|
465
426
|
// 2) DO NOT use PROTOCOL and "zeroObjectType"
|
466
|
-
function
|
467
|
-
|
427
|
+
function _setupValidCoreTypesAndCombinations()
|
428
|
+
private
|
468
429
|
{
|
430
|
+
_coreTypes[REGISTRY()] = true;
|
431
|
+
_coreTypes[SERVICE()] = true;
|
432
|
+
_coreTypes[TOKEN()] = true;
|
433
|
+
_coreTypes[INSTANCE()] = true;
|
434
|
+
_coreTypes[PRODUCT()] = true;
|
435
|
+
_coreTypes[POOL()] = true;
|
436
|
+
_coreTypes[DISTRIBUTION()] = true;
|
437
|
+
_coreTypes[POLICY()] = true;
|
438
|
+
_coreTypes[BUNDLE()] = true;
|
439
|
+
_coreTypes[STAKE()] = true;
|
440
|
+
|
469
441
|
// registry as parent, ONLY registry owner
|
470
|
-
|
471
|
-
|
442
|
+
//_coreContractCombinations[REGISTRY()][REGISTRY()] = true; // only for global regstry
|
443
|
+
_coreContractCombinations[TOKEN()][REGISTRY()] = true;
|
444
|
+
//_coreContractCombinations[SERVICE()][REGISTRY()] = true;// do not need it here -> registerService() registers exactly this combination
|
472
445
|
|
473
446
|
// registry as parent, ONLY approved
|
474
|
-
|
447
|
+
_coreContractCombinations[INSTANCE()][REGISTRY()] = true;
|
475
448
|
|
476
449
|
// instance as parent, ONLY approved
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
450
|
+
_coreContractCombinations[PRODUCT()][INSTANCE()] = true;
|
451
|
+
_coreContractCombinations[DISTRIBUTION()][INSTANCE()] = true;
|
452
|
+
_coreContractCombinations[ORACLE()][INSTANCE()] = true;
|
453
|
+
_coreContractCombinations[POOL()][INSTANCE()] = true;
|
481
454
|
|
482
455
|
// product as parent, ONLY approved
|
483
|
-
|
456
|
+
_coreObjectCombinations[POLICY()][PRODUCT()] = true;
|
484
457
|
|
485
458
|
// pool as parent, ONLY approved
|
486
|
-
|
487
|
-
|
459
|
+
_coreObjectCombinations[BUNDLE()][POOL()] = true;
|
460
|
+
_coreObjectCombinations[STAKE()][POOL()] = true;
|
488
461
|
}
|
489
462
|
}
|