@etherisc/gif-next 0.0.2-e46206a-486 → 0.0.2-e4b632c-016
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/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +13 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +86 -33
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +13 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -25
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -59
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -50
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +123 -65
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +184 -44
- 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/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- 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/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +114 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +181 -1677
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2198 -1023
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +930 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1283 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +755 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +432 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
- 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 +37 -253
- 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 +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +32 -48
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +18 -60
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +428 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- 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 +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +8 -8
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +5 -5
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +2 -2
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/RegisterableUpgradable.sol/RegisterableUpgradable.json} +2 -104
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/Service.sol/Service.json} +2 -2
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +11 -11
- 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/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/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- 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/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/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/BaseComponent.sol +9 -2
- package/contracts/components/Distribution.sol +25 -14
- package/contracts/components/IBaseComponent.sol +7 -2
- package/contracts/components/IDistributionComponent.sol +0 -3
- package/contracts/components/IPoolComponent.sol +0 -2
- package/contracts/components/IProductComponent.sol +1 -3
- package/contracts/components/Pool.sol +41 -28
- package/contracts/components/Product.sol +40 -42
- package/contracts/instance/AccessManagedSimple.sol +122 -0
- package/contracts/instance/AccessManagerSimple.sol +692 -0
- package/contracts/instance/IAccessManagerSimple.sol +391 -0
- package/contracts/instance/IInstance.sol +25 -44
- package/contracts/instance/IInstanceService.sol +30 -0
- package/contracts/instance/Instance.sol +423 -64
- package/contracts/instance/InstanceAccessManager.sol +288 -0
- package/contracts/instance/InstanceReader.sol +290 -0
- package/contracts/instance/InstanceService.sol +138 -0
- package/contracts/instance/InstanceServiceManager.sol +56 -0
- package/contracts/instance/base/ComponentServiceBase.sol +3 -13
- package/contracts/instance/base/IKeyValueStore.sol +13 -14
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +49 -39
- package/contracts/instance/base/Lifecycle.sol +1 -1
- package/contracts/instance/module/IAccess.sol +38 -0
- package/contracts/instance/module/IBundle.sol +19 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +43 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ComponentOwnerService.sol +62 -60
- package/contracts/instance/service/DistributionService.sol +33 -17
- package/contracts/instance/service/DistributionServiceManager.sol +53 -0
- package/contracts/instance/service/IComponentOwnerService.sol +1 -1
- package/contracts/instance/service/IDistributionService.sol +1 -1
- package/contracts/instance/service/IPoolService.sol +1 -1
- package/contracts/instance/service/IProductService.sol +2 -2
- package/contracts/registry/IRegistry.sol +1 -0
- package/contracts/registry/IRegistryService.sol +8 -8
- package/contracts/registry/Registry.sol +1 -1
- package/contracts/registry/RegistryService.sol +17 -14
- package/contracts/{instance/base → shared}/IService.sol +3 -3
- package/contracts/shared/RegisterableUpgradable.sol +16 -0
- package/contracts/shared/Service.sol +54 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/test/TestService.sol +3 -5
- package/contracts/types/StateId.sol +4 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -271
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -271
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -164
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -164
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -638
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -638
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -769
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -1076
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -557
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -716
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -744
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/InstanceBase.sol +0 -89
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -44
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -71
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -95
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -84
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -131
- package/contracts/instance/service/PoolService.sol +0 -149
- package/contracts/instance/service/ProductService.sol +0 -510
- package/contracts/test/TestDistribution.sol +0 -22
- package/contracts/test/TestPool.sol +0 -27
- package/contracts/test/TestProduct.sol +0 -74
@@ -1,83 +1,442 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.
|
2
|
+
pragma solidity ^0.8.20;
|
3
3
|
|
4
|
+
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
|
5
|
+
import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
|
6
|
+
|
7
|
+
import {AccessManagedSimple} from "./AccessManagedSimple.sol";
|
8
|
+
import {AccessManagerSimple} from "./AccessManagerSimple.sol";
|
9
|
+
import {IAccess} from "./module/IAccess.sol";
|
10
|
+
import {IBundle} from "./module/IBundle.sol";
|
11
|
+
import {IPolicy} from "./module/IPolicy.sol";
|
12
|
+
import {IRisk} from "./module/IRisk.sol";
|
13
|
+
import {ISetup} from "./module/ISetup.sol";
|
14
|
+
import {Key32, KeyId, Key32Lib} from "../types/Key32.sol";
|
15
|
+
import {KeyValueStore} from "./base/KeyValueStore.sol";
|
16
|
+
import {IInstance} from "./IInstance.sol";
|
17
|
+
import {InstanceReader} from "./InstanceReader.sol";
|
4
18
|
import {NftId} from "../types/NftId.sol";
|
5
|
-
import {
|
6
|
-
import {
|
7
|
-
import {
|
8
|
-
|
9
|
-
import {
|
10
|
-
import {
|
11
|
-
import {DistributionModule} from "./module/distribution/DistributionModule.sol";
|
12
|
-
import {PolicyModule} from "./module/policy/PolicyModule.sol";
|
13
|
-
import {PoolModule} from "./module/pool/PoolModule.sol";
|
14
|
-
import {RiskModule} from "./module/risk/RiskModule.sol";
|
15
|
-
import {BundleModule} from "./module/bundle/BundleModule.sol";
|
16
|
-
import {TreasuryModule} from "./module/treasury/TreasuryModule.sol";
|
17
|
-
|
18
|
-
import {IRegistry} from "../registry/IRegistry.sol";
|
19
|
+
import {NumberId} from "../types/NumberId.sol";
|
20
|
+
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
|
21
|
+
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
22
|
+
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
23
|
+
import {StateId, ACTIVE} from "../types/StateId.sol";
|
24
|
+
import {ERC165} from "../shared/ERC165.sol";
|
19
25
|
import {Registerable} from "../shared/Registerable.sol";
|
20
|
-
import {
|
21
|
-
import {IComponentModule} from "./module/component/IComponent.sol";
|
22
|
-
import {IPoolModule} from "./module/pool/IPoolModule.sol";
|
23
|
-
import {IPolicyModule} from "./module/policy/IPolicy.sol";
|
24
|
-
import {IInstanceBase} from "./base/IInstanceBase.sol";
|
25
|
-
import {ITreasuryModule} from "./module/treasury/ITreasury.sol";
|
26
|
-
|
26
|
+
import {ComponentOwnerService} from "./service/ComponentOwnerService.sol";
|
27
27
|
import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
|
28
28
|
import {IDistributionService} from "./service/IDistributionService.sol";
|
29
|
-
import {
|
30
|
-
import {IPoolService} from "./service/IPoolService.sol";
|
31
|
-
|
32
|
-
import {IKeyValueStore} from "./base/IKeyValueStore.sol";
|
29
|
+
import {VersionPart} from "../types/Version.sol";
|
33
30
|
|
34
31
|
contract Instance is
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
PoolModule,
|
41
|
-
RiskModule,
|
42
|
-
TreasuryModule
|
32
|
+
AccessManagedSimple,
|
33
|
+
KeyValueStore,
|
34
|
+
IInstance,
|
35
|
+
ERC165,
|
36
|
+
Registerable
|
43
37
|
{
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
38
|
+
|
39
|
+
uint64 public constant ADMIN_ROLE = type(uint64).min;
|
40
|
+
uint64 public constant PUBLIC_ROLE = type(uint64).max;
|
41
|
+
uint64 public constant CUSTOM_ROLE_ID_MIN = 10000;
|
42
|
+
|
43
|
+
uint32 public constant EXECUTION_DELAY = 0;
|
44
|
+
|
45
|
+
bool private _initialized;
|
46
|
+
|
47
|
+
mapping(ShortString name => RoleId roleId) internal _role;
|
48
|
+
mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
|
49
|
+
RoleId [] internal _roles;
|
50
|
+
|
51
|
+
mapping(ShortString name => address target) internal _target;
|
52
|
+
|
53
|
+
AccessManagerSimple internal _accessManager;
|
54
|
+
InstanceReader internal _instanceReader;
|
55
|
+
|
56
|
+
constructor(address accessManagerAddress, address registryAddress, NftId registryNftId)
|
57
|
+
AccessManagedSimple(accessManagerAddress)
|
58
|
+
{
|
59
|
+
initialize(accessManagerAddress, registryAddress, registryNftId, msg.sender);
|
60
|
+
}
|
61
|
+
|
62
|
+
function initialize(address accessManagerAddress, address registryAddress, NftId registryNftId, address initialOwner) public {
|
63
|
+
require(!_initialized, "Contract instance has already been initialized");
|
64
|
+
|
65
|
+
_accessManager = AccessManagerSimple(accessManagerAddress);
|
66
|
+
_createRole(RoleIdLib.toRoleId(ADMIN_ROLE), "AdminRole", false, false);
|
67
|
+
_createRole(RoleIdLib.toRoleId(PUBLIC_ROLE), "PublicRole", false, false);
|
68
|
+
|
69
|
+
_initializeRegisterable(registryAddress, registryNftId, INSTANCE(), false, initialOwner, "");
|
70
|
+
|
71
|
+
_registerInterface(type(IInstance).interfaceId);
|
72
|
+
_initialized = true;
|
73
|
+
}
|
74
|
+
|
75
|
+
//--- Role ------------------------------------------------------//
|
76
|
+
function createStandardRole(RoleId roleId, string memory name) external restricted() {
|
77
|
+
_createRole(roleId, name, false, true);
|
78
|
+
}
|
79
|
+
|
80
|
+
function createCustomRole(RoleId roleId, string memory name) external restricted() {
|
81
|
+
_createRole(roleId, name, true, true);
|
82
|
+
}
|
83
|
+
|
84
|
+
function updateRole(RoleId roleId, string memory name, StateId newState) external restricted() {
|
85
|
+
(bool isCustom,) = _validateRoleParameters(roleId, name, false);
|
86
|
+
IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
|
87
|
+
update(toRoleKey32(roleId), abi.encode(role), newState);
|
88
|
+
}
|
89
|
+
|
90
|
+
function updateRoleState(RoleId roleId, StateId newState) external restricted() {
|
91
|
+
updateState(toRoleKey32(roleId), newState);
|
92
|
+
}
|
93
|
+
|
94
|
+
function grantRole(RoleId roleId, address member) external restricted() returns (bool granted) {
|
95
|
+
Key32 roleKey = toRoleKey32(roleId);
|
96
|
+
|
97
|
+
if (!exists(roleKey)) {
|
98
|
+
revert IAccess.ErrorGrantNonexstentRole(roleId);
|
99
|
+
}
|
100
|
+
|
101
|
+
if (getState(roleKey) != ACTIVE()) {
|
102
|
+
revert IAccess.ErrorRoleIdNotActive(roleId);
|
103
|
+
}
|
104
|
+
|
105
|
+
if (!EnumerableSet.contains(_roleMembers[roleId], member)) {
|
106
|
+
_accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
|
107
|
+
EnumerableSet.add(_roleMembers[roleId], member);
|
108
|
+
return true;
|
109
|
+
}
|
110
|
+
|
111
|
+
return false;
|
112
|
+
}
|
113
|
+
|
114
|
+
function revokeRole(RoleId roleId, address member) external restricted() returns (bool revoked) {
|
115
|
+
Key32 roleKey = toRoleKey32(roleId);
|
116
|
+
|
117
|
+
if (!exists(roleKey)) {
|
118
|
+
revert IAccess.ErrorRevokeNonexstentRole(roleId);
|
119
|
+
}
|
120
|
+
|
121
|
+
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
122
|
+
_accessManager.revokeRole(roleId.toInt(), member);
|
123
|
+
EnumerableSet.remove(_roleMembers[roleId], member);
|
124
|
+
return true;
|
125
|
+
}
|
126
|
+
|
127
|
+
return false;
|
128
|
+
}
|
129
|
+
|
130
|
+
/// @dev not restricted function by intention
|
131
|
+
/// the restriction to role members is already enforced by the call to the access manger
|
132
|
+
function renounceRole(RoleId roleId) external returns (bool revoked) {
|
133
|
+
address member = msg.sender;
|
134
|
+
Key32 roleKey = toRoleKey32(roleId);
|
135
|
+
|
136
|
+
if (!exists(roleKey)) {
|
137
|
+
revert IAccess.ErrorRenounceNonexstentRole(roleId);
|
138
|
+
}
|
139
|
+
|
140
|
+
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
141
|
+
_accessManager.renounceRole(roleId.toInt(), member);
|
142
|
+
EnumerableSet.remove(_roleMembers[roleId], member);
|
143
|
+
return true;
|
144
|
+
}
|
145
|
+
|
146
|
+
return false;
|
147
|
+
}
|
148
|
+
|
149
|
+
function roles() external view returns (uint256 numberOfRoles) {
|
150
|
+
return _roles.length;
|
151
|
+
}
|
152
|
+
|
153
|
+
function getRoleId(uint256 idx) external view returns (RoleId roleId) {
|
154
|
+
return _roles[idx];
|
155
|
+
}
|
156
|
+
|
157
|
+
function getRole(RoleId roleId) external view returns (IAccess.RoleInfo memory role) {
|
158
|
+
return abi.decode(getData(roleId.toKey32()), (IAccess.RoleInfo));
|
159
|
+
}
|
160
|
+
|
161
|
+
function roleMembers(RoleId roleId) external view returns (uint256 numberOfMembers) {
|
162
|
+
return EnumerableSet.length(_roleMembers[roleId]);
|
163
|
+
}
|
164
|
+
|
165
|
+
function getRoleMember(RoleId roleId, uint256 idx) external view returns (address roleMember) {
|
166
|
+
return EnumerableSet.at(_roleMembers[roleId], idx);
|
167
|
+
}
|
168
|
+
|
169
|
+
function _createRole(RoleId roleId, string memory name, bool isCustom, bool validateParameters) internal {
|
170
|
+
if (validateParameters) {
|
171
|
+
_validateRoleParameters(roleId, name, isCustom);
|
172
|
+
}
|
173
|
+
|
174
|
+
IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
|
175
|
+
_role[role.name] = roleId;
|
176
|
+
_roles.push(roleId);
|
177
|
+
|
178
|
+
create(toRoleKey32(roleId), abi.encode(role));
|
179
|
+
}
|
180
|
+
|
181
|
+
//--- Target ------------------------------------------------------//
|
182
|
+
function createTarget(address target, IAccess.TargetInfo memory targetInfo) external restricted() {
|
183
|
+
_validateTargetParameters(target, targetInfo);
|
184
|
+
create(toTargetKey32(target), abi.encode(targetInfo));
|
185
|
+
}
|
186
|
+
|
187
|
+
function setTargetClosed(address target, bool closed) external restricted() {
|
188
|
+
if (!exists(toTargetKey32(target))) {
|
189
|
+
revert IAccess.ErrorTargetDoesNotExist(target);
|
190
|
+
}
|
191
|
+
|
192
|
+
_accessManager.setTargetClosed(target, closed);
|
193
|
+
}
|
194
|
+
|
195
|
+
//--- ProductSetup ------------------------------------------------------//
|
196
|
+
function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external restricted() {
|
197
|
+
create(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup));
|
198
|
+
}
|
199
|
+
|
200
|
+
function updateProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup, StateId newState) external restricted() {
|
201
|
+
update(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup), newState);
|
202
|
+
}
|
203
|
+
|
204
|
+
function updateProductSetupState(NftId productNftId, StateId newState) external restricted() {
|
205
|
+
updateState(_toNftKey32(productNftId, PRODUCT()), newState);
|
206
|
+
}
|
207
|
+
|
208
|
+
//--- DistributionSetup ------------------------------------------------------//
|
209
|
+
function createDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup) external restricted() {
|
210
|
+
create(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup));
|
211
|
+
}
|
212
|
+
|
213
|
+
function updateDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup, StateId newState) external restricted() {
|
214
|
+
update(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup), newState);
|
215
|
+
}
|
216
|
+
|
217
|
+
function updateDistributionSetupState(NftId distributionNftId, StateId newState) external restricted() {
|
218
|
+
updateState(_toNftKey32(distributionNftId, DISTRIBUTION()), newState);
|
219
|
+
}
|
220
|
+
|
221
|
+
//--- PoolSetup ------------------------------------------------------//
|
222
|
+
function createPoolSetup(NftId distributionNftId, ISetup.PoolSetupInfo memory setup) external restricted() {
|
223
|
+
create(_toNftKey32(distributionNftId, POOL()), abi.encode(setup));
|
224
|
+
}
|
225
|
+
|
226
|
+
function updatePoolSetup(NftId distributionNftId, ISetup.PoolSetupInfo memory setup, StateId newState) external restricted() {
|
227
|
+
update(_toNftKey32(distributionNftId, POOL()), abi.encode(setup), newState);
|
228
|
+
}
|
229
|
+
|
230
|
+
function updatePoolSetupState(NftId distributionNftId, StateId newState) external restricted() {
|
231
|
+
updateState(_toNftKey32(distributionNftId, POOL()), newState);
|
232
|
+
}
|
233
|
+
|
234
|
+
//--- DistributorType ---------------------------------------------------//
|
235
|
+
function createDistributorType(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
236
|
+
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
237
|
+
}
|
238
|
+
|
239
|
+
function updateDistributorType(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
240
|
+
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
241
|
+
}
|
242
|
+
|
243
|
+
function updateDistributorTypeState(NftId policyNftId, StateId newState) external restricted() {
|
244
|
+
updateState(toPolicyKey32(policyNftId), newState);
|
245
|
+
}
|
246
|
+
|
247
|
+
//--- Distributor -------------------------------------------------------//
|
248
|
+
function createDistributor(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
249
|
+
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
250
|
+
}
|
251
|
+
|
252
|
+
function updateDistributor(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
253
|
+
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
254
|
+
}
|
255
|
+
|
256
|
+
function updateDistributorState(NftId policyNftId, StateId newState) external restricted() {
|
257
|
+
updateState(toPolicyKey32(policyNftId), newState);
|
258
|
+
}
|
259
|
+
|
260
|
+
//--- Referral ----------------------------------------------------------//
|
261
|
+
function createReferral(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
262
|
+
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
263
|
+
}
|
264
|
+
|
265
|
+
function updateReferral(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
266
|
+
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
267
|
+
}
|
268
|
+
|
269
|
+
function updateReferralState(NftId policyNftId, StateId newState) external restricted() {
|
270
|
+
updateState(toPolicyKey32(policyNftId), newState);
|
271
|
+
}
|
272
|
+
|
273
|
+
//--- Bundle ------------------------------------------------------------//
|
274
|
+
function createBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle) external restricted() {
|
275
|
+
create(toBundleKey32(bundleNftId), abi.encode(bundle));
|
276
|
+
}
|
277
|
+
|
278
|
+
function updateBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle, StateId newState) external restricted() {
|
279
|
+
update(toBundleKey32(bundleNftId), abi.encode(bundle), newState);
|
280
|
+
}
|
281
|
+
|
282
|
+
function updateBundleState(NftId bundleNftId, StateId newState) external restricted() {
|
283
|
+
updateState(toBundleKey32(bundleNftId), newState);
|
284
|
+
}
|
285
|
+
|
286
|
+
//--- Risk --------------------------------------------------------------//
|
287
|
+
function createRisk(RiskId riskId, IRisk.RiskInfo memory risk) external restricted() {
|
288
|
+
create(riskId.toKey32(), abi.encode(risk));
|
289
|
+
}
|
290
|
+
|
291
|
+
function updateRisk(RiskId riskId, IRisk.RiskInfo memory risk, StateId newState) external restricted() {
|
292
|
+
update(riskId.toKey32(), abi.encode(risk), newState);
|
293
|
+
}
|
294
|
+
|
295
|
+
function updateRiskState(RiskId riskId, StateId newState) external restricted() {
|
296
|
+
updateState(riskId.toKey32(), newState);
|
297
|
+
}
|
298
|
+
|
299
|
+
//--- Policy ------------------------------------------------------------//
|
300
|
+
function createPolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy) external restricted() {
|
301
|
+
create(toPolicyKey32(policyNftId), abi.encode(policy));
|
302
|
+
}
|
303
|
+
|
304
|
+
function updatePolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
305
|
+
update(toPolicyKey32(policyNftId), abi.encode(policy), newState);
|
306
|
+
}
|
307
|
+
|
308
|
+
function updatePolicyState(NftId policyNftId, StateId newState) external restricted() {
|
309
|
+
updateState(toPolicyKey32(policyNftId), newState);
|
310
|
+
}
|
311
|
+
|
312
|
+
//--- Claim -------------------------------------------------------------//
|
313
|
+
function createClaim(NftId policyNftId, NumberId claimId, IPolicy.ClaimInfo memory claim) external restricted() {
|
314
|
+
create(toPolicyKey32(policyNftId), abi.encode(claim));
|
315
|
+
}
|
316
|
+
|
317
|
+
function updateClaim(NftId policyNftId, NumberId claimId, IPolicy.ClaimInfo memory claim, StateId newState) external restricted() {
|
318
|
+
update(toPolicyKey32(policyNftId), abi.encode(claim), newState);
|
319
|
+
}
|
320
|
+
|
321
|
+
function updateClaimState(NftId policyNftId, StateId newState) external restricted() {
|
322
|
+
updateState(toPolicyKey32(policyNftId), newState);
|
323
|
+
}
|
324
|
+
|
325
|
+
//--- Payout ------------------------------------------------------------//
|
326
|
+
function createPayout(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
327
|
+
create(toPolicyKey32(policyNftId), abi.encode(payout));
|
328
|
+
}
|
329
|
+
|
330
|
+
function updateClaim(NftId policyNftId, NumberId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
331
|
+
update(toPolicyKey32(policyNftId), abi.encode(payout), newState);
|
332
|
+
}
|
333
|
+
|
334
|
+
function updatePayoutState(NftId policyNftId, StateId newState) external restricted() {
|
335
|
+
updateState(toPolicyKey32(policyNftId), newState);
|
336
|
+
}
|
337
|
+
|
338
|
+
//--- internal view/pure functions --------------------------------------//
|
339
|
+
function _toRole(RoleId roleId, string memory name, bool isCustom)
|
340
|
+
internal
|
341
|
+
pure
|
342
|
+
returns (IAccess.RoleInfo memory role)
|
343
|
+
{
|
344
|
+
return IAccess.RoleInfo(
|
345
|
+
ShortStrings.toShortString(name),
|
346
|
+
isCustom);
|
347
|
+
}
|
348
|
+
|
349
|
+
function _validateRoleParameters(
|
350
|
+
RoleId roleId,
|
351
|
+
string memory name,
|
352
|
+
bool isCustom
|
48
353
|
)
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
TreasuryModule()
|
354
|
+
internal
|
355
|
+
view
|
356
|
+
returns (
|
357
|
+
bool roleExists,
|
358
|
+
bool roleIsCustom
|
359
|
+
)
|
56
360
|
{
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
361
|
+
Key32 roleKey = toRoleKey32(roleId);
|
362
|
+
roleExists = exists(roleKey);
|
363
|
+
if (roleExists) {
|
364
|
+
roleIsCustom = abi.decode(getData(roleKey), (IAccess.RoleInfo)).isCustom;
|
365
|
+
} else {
|
366
|
+
roleIsCustom = isCustom;
|
367
|
+
}
|
368
|
+
|
369
|
+
// check role id
|
370
|
+
uint64 roleIdInt = RoleId.unwrap(roleId);
|
371
|
+
if(roleIdInt == ADMIN_ROLE || roleIdInt == PUBLIC_ROLE) {
|
372
|
+
revert IAccess.ErrorRoleIdInvalid(roleId);
|
373
|
+
}
|
374
|
+
|
375
|
+
if (roleIsCustom && roleIdInt < CUSTOM_ROLE_ID_MIN) {
|
376
|
+
revert IAccess.ErrorRoleIdTooSmall(roleId);
|
377
|
+
} else if (roleIsCustom && roleIdInt >= CUSTOM_ROLE_ID_MIN) {
|
378
|
+
revert IAccess.ErrorRoleIdTooBig(roleId);
|
379
|
+
}
|
380
|
+
|
381
|
+
// role name checks
|
382
|
+
ShortString nameShort = ShortStrings.toShortString(name);
|
383
|
+
if (ShortStrings.byteLength(nameShort) == 0) {
|
384
|
+
revert IAccess.ErrorRoleNameEmpty(roleId);
|
385
|
+
}
|
386
|
+
|
387
|
+
if (_role[nameShort] != RoleIdLib.zero() && _role[nameShort] != roleId) {
|
388
|
+
revert IAccess.ErrorRoleNameNotUnique(_role[nameShort], nameShort);
|
389
|
+
}
|
390
|
+
}
|
391
|
+
|
392
|
+
function _validateTargetParameters(address target, IAccess.TargetInfo memory targetInfo) internal view {
|
393
|
+
|
394
|
+
}
|
395
|
+
|
396
|
+
function toRoleKey32(RoleId roleId) public pure returns (Key32) {
|
397
|
+
return roleId.toKey32();
|
398
|
+
}
|
399
|
+
|
400
|
+
function toTargetKey32(address target) public pure returns (Key32) {
|
401
|
+
return Key32Lib.toKey32(TARGET(), KeyId.wrap(bytes20(target)));
|
402
|
+
}
|
403
|
+
|
404
|
+
function _toNftKey32(NftId nftId, ObjectType objectType) internal pure returns (Key32) {
|
405
|
+
return nftId.toKey32(objectType);
|
63
406
|
}
|
64
407
|
|
65
|
-
|
66
|
-
|
67
|
-
msg.sender == address(this.getComponentOwnerService()),
|
68
|
-
"ERROR:CMP-001:NOT_REGISTRY_SERVICE"
|
69
|
-
);
|
70
|
-
_;
|
408
|
+
function toBundleKey32(NftId bundleNftId) public pure returns (Key32) {
|
409
|
+
return bundleNftId.toKey32(BUNDLE());
|
71
410
|
}
|
72
411
|
|
73
|
-
function
|
412
|
+
function toPolicyKey32(NftId policyNftId) public pure returns (Key32) {
|
413
|
+
return policyNftId.toKey32(POLICY());
|
414
|
+
}
|
74
415
|
|
75
|
-
function
|
416
|
+
function getComponentOwnerService() external view returns (IComponentOwnerService) {
|
417
|
+
return ComponentOwnerService(_registry.getServiceAddress("ComponentOwnerService", VersionPart.wrap(3)));
|
418
|
+
}
|
419
|
+
|
420
|
+
function getDistributionService() external view returns (IDistributionService) {
|
421
|
+
return IDistributionService(_registry.getServiceAddress("DistributionService", VersionPart.wrap(3)));
|
422
|
+
}
|
76
423
|
|
77
|
-
|
78
|
-
function
|
79
|
-
|
80
|
-
|
424
|
+
// TODO reactivate when services are available
|
425
|
+
// function getProductService() external view returns (IProductService) {
|
426
|
+
// return ProductService(_registry.getServiceAddress("ProductService", VersionPart.wrap(3)));
|
427
|
+
// }
|
81
428
|
|
82
|
-
|
429
|
+
// TODO reactivate when services are available
|
430
|
+
// function getPoolService() external view returns (IPoolService) {
|
431
|
+
// return PoolService(_registry.getServiceAddress("PoolService", VersionPart.wrap(3)));
|
432
|
+
// }
|
433
|
+
|
434
|
+
function setInstanceReader(InstanceReader instanceReader) external restricted() {
|
435
|
+
require(address(_instanceReader) == address(0), "InstanceReader is set");
|
436
|
+
_instanceReader = instanceReader;
|
437
|
+
}
|
438
|
+
|
439
|
+
function getInstanceReader() external view returns (InstanceReader) {
|
440
|
+
return _instanceReader;
|
441
|
+
}
|
83
442
|
}
|