@etherisc/gif-next 0.0.2-e510b92-393 → 0.0.2-e545d2c-624
Sign up to get free protection for your applications and to get access to all the features.
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +29 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +33 -102
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +29 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +33 -130
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +33 -113
- 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/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/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +45 -32
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +116 -0
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +99 -14
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +79 -665
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +244 -114
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2 -2
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +166 -173
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +26 -78
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +15 -2
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +24 -32
- 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/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- 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/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1031 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +436 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +39 -52
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +49 -72
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +13 -37
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +720 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +13 -13
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -13
- 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 +12 -241
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +17 -241
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1156 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +492 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +32 -354
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +13 -57
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +40 -410
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +13 -81
- 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 +132 -133
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +94 -65
- 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 +145 -227
- 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 +30 -128
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +38 -104
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +530 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
- package/artifacts/contracts/shared/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 +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +13 -13
- 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 +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +13 -13
- 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/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/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 +31 -31
- 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/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/BaseComponent.sol +35 -8
- package/contracts/components/Distribution.sol +2 -1
- package/contracts/components/IBaseComponent.sol +3 -0
- package/contracts/components/Pool.sol +11 -6
- package/contracts/components/Product.sol +22 -10
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
- package/contracts/instance/IInstance.sol +7 -1
- package/contracts/instance/IInstanceBase.sol +26 -0
- package/contracts/instance/IInstanceService.sol +10 -2
- package/contracts/instance/Instance.sol +32 -214
- package/contracts/instance/InstanceAccessManager.sol +93 -78
- package/contracts/instance/InstanceBase.sol +41 -0
- package/contracts/instance/InstanceService.sol +228 -115
- package/contracts/instance/InstanceServiceManager.sol +5 -8
- package/contracts/instance/ObjectManager.sol +7 -1
- package/contracts/instance/base/ComponentServiceBase.sol +29 -87
- package/contracts/instance/module/IAccess.sol +27 -17
- package/contracts/instance/service/BundleService.sol +294 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ComponentOwnerService.sol +4 -6
- package/contracts/instance/service/DistributionService.sol +53 -21
- package/contracts/instance/service/DistributionServiceManager.sol +6 -9
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +2 -33
- package/contracts/instance/service/IProductService.sol +2 -72
- package/contracts/instance/service/PolicyService.sol +539 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +65 -207
- package/contracts/instance/service/PoolServiceManager.sol +5 -8
- package/contracts/instance/service/ProductService.sol +100 -457
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +26 -16
- package/contracts/registry/IRegistryService.sol +13 -5
- package/contracts/registry/Registry.sol +149 -201
- package/contracts/registry/RegistryAccessManager.sol +210 -0
- package/contracts/registry/RegistryService.sol +50 -88
- package/contracts/registry/RegistryServiceManager.sol +18 -36
- package/contracts/registry/ReleaseManager.sol +342 -0
- package/contracts/registry/TokenRegistry.sol +5 -6
- package/contracts/shared/IService.sol +2 -1
- package/contracts/shared/ProxyManager.sol +1 -1
- package/contracts/shared/Service.sol +10 -7
- package/contracts/test/TestService.sol +3 -2
- package/contracts/types/RoleId.sol +10 -10
- package/package.json +1 -1
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +0 -101
- 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/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
@@ -3,9 +3,9 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
|
5
5
|
import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
|
6
|
+
import {Initializable} from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
|
7
|
+
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
6
8
|
|
7
|
-
import {AccessManagedSimple} from "./AccessManagedSimple.sol";
|
8
|
-
import {AccessManagerSimple} from "./AccessManagerSimple.sol";
|
9
9
|
import {IAccess} from "./module/IAccess.sol";
|
10
10
|
import {IBundle} from "./module/IBundle.sol";
|
11
11
|
import {IPolicy} from "./module/IPolicy.sol";
|
@@ -15,13 +15,15 @@ import {Key32, KeyId, Key32Lib} from "../types/Key32.sol";
|
|
15
15
|
import {KeyValueStore} from "./base/KeyValueStore.sol";
|
16
16
|
import {IInstance} from "./IInstance.sol";
|
17
17
|
import {InstanceReader} from "./InstanceReader.sol";
|
18
|
+
import {InstanceAccessManager} from "./InstanceAccessManager.sol";
|
18
19
|
import {BundleManager} from "./BundleManager.sol";
|
19
20
|
import {NftId} from "../types/NftId.sol";
|
20
21
|
import {NumberId} from "../types/NumberId.sol";
|
21
|
-
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
|
22
|
+
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET, COMPONENT} from "../types/ObjectType.sol";
|
22
23
|
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
23
24
|
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
24
25
|
import {StateId, ACTIVE} from "../types/StateId.sol";
|
26
|
+
import {TimestampLib} from "../types/Timestamp.sol";
|
25
27
|
import {ERC165} from "../shared/ERC165.sol";
|
26
28
|
import {Registerable} from "../shared/Registerable.sol";
|
27
29
|
import {ComponentOwnerService} from "./service/ComponentOwnerService.sol";
|
@@ -29,14 +31,16 @@ import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
|
|
29
31
|
import {IDistributionService} from "./service/IDistributionService.sol";
|
30
32
|
import {IPoolService} from "./service/IPoolService.sol";
|
31
33
|
import {IProductService} from "./service/IProductService.sol";
|
34
|
+
import {IPolicyService} from "./service/IPolicyService.sol";
|
35
|
+
import {IBundleService} from "./service/IBundleService.sol";
|
32
36
|
import {VersionPart} from "../types/Version.sol";
|
37
|
+
import {InstanceBase} from "./InstanceBase.sol";
|
33
38
|
|
34
39
|
contract Instance is
|
35
|
-
|
36
|
-
KeyValueStore,
|
40
|
+
AccessManagedUpgradeable,
|
37
41
|
IInstance,
|
38
|
-
|
39
|
-
|
42
|
+
// Initializable,
|
43
|
+
InstanceBase
|
40
44
|
{
|
41
45
|
|
42
46
|
uint64 public constant ADMIN_ROLE = type(uint64).min;
|
@@ -47,156 +51,26 @@ contract Instance is
|
|
47
51
|
|
48
52
|
bool private _initialized;
|
49
53
|
|
50
|
-
|
51
|
-
mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
|
52
|
-
RoleId [] internal _roles;
|
53
|
-
|
54
|
-
mapping(ShortString name => address target) internal _target;
|
55
|
-
|
56
|
-
AccessManagerSimple internal _accessManager;
|
54
|
+
InstanceAccessManager internal _accessManager;
|
57
55
|
InstanceReader internal _instanceReader;
|
58
56
|
BundleManager internal _bundleManager;
|
59
57
|
|
60
|
-
|
58
|
+
function initialize(address accessManagerAddress, address registryAddress, NftId registryNftId, address initialOwner)
|
59
|
+
public
|
60
|
+
initializer
|
61
61
|
{
|
62
|
-
initialize(accessManagerAddress, registryAddress, registryNftId, msg.sender);
|
63
|
-
}
|
64
|
-
|
65
|
-
function initialize(address accessManagerAddress, address registryAddress, NftId registryNftId, address initialOwner) public {
|
66
62
|
require(!_initialized, "Contract instance has already been initialized");
|
67
63
|
|
68
|
-
|
64
|
+
__AccessManaged_init(accessManagerAddress);
|
69
65
|
|
70
|
-
_accessManager =
|
71
|
-
|
72
|
-
_createRole(RoleIdLib.toRoleId(PUBLIC_ROLE), "PublicRole", false, false);
|
73
|
-
|
66
|
+
_accessManager = InstanceAccessManager(accessManagerAddress);
|
67
|
+
|
74
68
|
_initializeRegisterable(registryAddress, registryNftId, INSTANCE(), false, initialOwner, "");
|
75
69
|
|
76
70
|
_registerInterface(type(IInstance).interfaceId);
|
77
71
|
_initialized = true;
|
78
72
|
}
|
79
73
|
|
80
|
-
//--- Role ------------------------------------------------------//
|
81
|
-
function createStandardRole(RoleId roleId, string memory name) external restricted() {
|
82
|
-
_createRole(roleId, name, false, true);
|
83
|
-
}
|
84
|
-
|
85
|
-
function createCustomRole(RoleId roleId, string memory name) external restricted() {
|
86
|
-
_createRole(roleId, name, true, true);
|
87
|
-
}
|
88
|
-
|
89
|
-
function updateRole(RoleId roleId, string memory name, StateId newState) external restricted() {
|
90
|
-
(bool isCustom,) = _validateRoleParameters(roleId, name, false);
|
91
|
-
IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
|
92
|
-
update(toRoleKey32(roleId), abi.encode(role), newState);
|
93
|
-
}
|
94
|
-
|
95
|
-
function updateRoleState(RoleId roleId, StateId newState) external restricted() {
|
96
|
-
updateState(toRoleKey32(roleId), newState);
|
97
|
-
}
|
98
|
-
|
99
|
-
function grantRole(RoleId roleId, address member) external restricted() returns (bool granted) {
|
100
|
-
Key32 roleKey = toRoleKey32(roleId);
|
101
|
-
|
102
|
-
if (!exists(roleKey)) {
|
103
|
-
revert IAccess.ErrorGrantNonexstentRole(roleId);
|
104
|
-
}
|
105
|
-
|
106
|
-
if (getState(roleKey) != ACTIVE()) {
|
107
|
-
revert IAccess.ErrorRoleIdNotActive(roleId);
|
108
|
-
}
|
109
|
-
|
110
|
-
if (!EnumerableSet.contains(_roleMembers[roleId], member)) {
|
111
|
-
_accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
|
112
|
-
EnumerableSet.add(_roleMembers[roleId], member);
|
113
|
-
return true;
|
114
|
-
}
|
115
|
-
|
116
|
-
return false;
|
117
|
-
}
|
118
|
-
|
119
|
-
function revokeRole(RoleId roleId, address member) external restricted() returns (bool revoked) {
|
120
|
-
Key32 roleKey = toRoleKey32(roleId);
|
121
|
-
|
122
|
-
if (!exists(roleKey)) {
|
123
|
-
revert IAccess.ErrorRevokeNonexstentRole(roleId);
|
124
|
-
}
|
125
|
-
|
126
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
127
|
-
_accessManager.revokeRole(roleId.toInt(), member);
|
128
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
129
|
-
return true;
|
130
|
-
}
|
131
|
-
|
132
|
-
return false;
|
133
|
-
}
|
134
|
-
|
135
|
-
/// @dev not restricted function by intention
|
136
|
-
/// the restriction to role members is already enforced by the call to the access manger
|
137
|
-
function renounceRole(RoleId roleId) external returns (bool revoked) {
|
138
|
-
address member = msg.sender;
|
139
|
-
Key32 roleKey = toRoleKey32(roleId);
|
140
|
-
|
141
|
-
if (!exists(roleKey)) {
|
142
|
-
revert IAccess.ErrorRenounceNonexstentRole(roleId);
|
143
|
-
}
|
144
|
-
|
145
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
146
|
-
_accessManager.renounceRole(roleId.toInt(), member);
|
147
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
148
|
-
return true;
|
149
|
-
}
|
150
|
-
|
151
|
-
return false;
|
152
|
-
}
|
153
|
-
|
154
|
-
function roles() external view returns (uint256 numberOfRoles) {
|
155
|
-
return _roles.length;
|
156
|
-
}
|
157
|
-
|
158
|
-
function getRoleId(uint256 idx) external view returns (RoleId roleId) {
|
159
|
-
return _roles[idx];
|
160
|
-
}
|
161
|
-
|
162
|
-
function getRole(RoleId roleId) external view returns (IAccess.RoleInfo memory role) {
|
163
|
-
return abi.decode(getData(roleId.toKey32()), (IAccess.RoleInfo));
|
164
|
-
}
|
165
|
-
|
166
|
-
function roleMembers(RoleId roleId) external view returns (uint256 numberOfMembers) {
|
167
|
-
return EnumerableSet.length(_roleMembers[roleId]);
|
168
|
-
}
|
169
|
-
|
170
|
-
function getRoleMember(RoleId roleId, uint256 idx) external view returns (address roleMember) {
|
171
|
-
return EnumerableSet.at(_roleMembers[roleId], idx);
|
172
|
-
}
|
173
|
-
|
174
|
-
function _createRole(RoleId roleId, string memory name, bool isCustom, bool validateParameters) internal {
|
175
|
-
if (validateParameters) {
|
176
|
-
_validateRoleParameters(roleId, name, isCustom);
|
177
|
-
}
|
178
|
-
|
179
|
-
IAccess.RoleInfo memory role = _toRole(roleId, name, isCustom);
|
180
|
-
_role[role.name] = roleId;
|
181
|
-
_roles.push(roleId);
|
182
|
-
|
183
|
-
create(toRoleKey32(roleId), abi.encode(role));
|
184
|
-
}
|
185
|
-
|
186
|
-
//--- Target ------------------------------------------------------//
|
187
|
-
function createTarget(address target, IAccess.TargetInfo memory targetInfo) external restricted() {
|
188
|
-
_validateTargetParameters(target, targetInfo);
|
189
|
-
create(toTargetKey32(target), abi.encode(targetInfo));
|
190
|
-
}
|
191
|
-
|
192
|
-
function setTargetClosed(address target, bool closed) external restricted() {
|
193
|
-
if (!exists(toTargetKey32(target))) {
|
194
|
-
revert IAccess.ErrorTargetDoesNotExist(target);
|
195
|
-
}
|
196
|
-
|
197
|
-
_accessManager.setTargetClosed(target, closed);
|
198
|
-
}
|
199
|
-
|
200
74
|
//--- ProductSetup ------------------------------------------------------//
|
201
75
|
function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external restricted() {
|
202
76
|
create(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup));
|
@@ -341,71 +215,6 @@ contract Instance is
|
|
341
215
|
}
|
342
216
|
|
343
217
|
//--- internal view/pure functions --------------------------------------//
|
344
|
-
function _toRole(RoleId roleId, string memory name, bool isCustom)
|
345
|
-
internal
|
346
|
-
pure
|
347
|
-
returns (IAccess.RoleInfo memory role)
|
348
|
-
{
|
349
|
-
return IAccess.RoleInfo(
|
350
|
-
ShortStrings.toShortString(name),
|
351
|
-
isCustom);
|
352
|
-
}
|
353
|
-
|
354
|
-
function _validateRoleParameters(
|
355
|
-
RoleId roleId,
|
356
|
-
string memory name,
|
357
|
-
bool isCustom
|
358
|
-
)
|
359
|
-
internal
|
360
|
-
view
|
361
|
-
returns (
|
362
|
-
bool roleExists,
|
363
|
-
bool roleIsCustom
|
364
|
-
)
|
365
|
-
{
|
366
|
-
Key32 roleKey = toRoleKey32(roleId);
|
367
|
-
roleExists = exists(roleKey);
|
368
|
-
if (roleExists) {
|
369
|
-
roleIsCustom = abi.decode(getData(roleKey), (IAccess.RoleInfo)).isCustom;
|
370
|
-
} else {
|
371
|
-
roleIsCustom = isCustom;
|
372
|
-
}
|
373
|
-
|
374
|
-
// check role id
|
375
|
-
uint64 roleIdInt = RoleId.unwrap(roleId);
|
376
|
-
if(roleIdInt == ADMIN_ROLE || roleIdInt == PUBLIC_ROLE) {
|
377
|
-
revert IAccess.ErrorRoleIdInvalid(roleId);
|
378
|
-
}
|
379
|
-
|
380
|
-
if (roleIsCustom && roleIdInt < CUSTOM_ROLE_ID_MIN) {
|
381
|
-
revert IAccess.ErrorRoleIdTooSmall(roleId);
|
382
|
-
} else if (roleIsCustom && roleIdInt >= CUSTOM_ROLE_ID_MIN) {
|
383
|
-
revert IAccess.ErrorRoleIdTooBig(roleId);
|
384
|
-
}
|
385
|
-
|
386
|
-
// role name checks
|
387
|
-
ShortString nameShort = ShortStrings.toShortString(name);
|
388
|
-
if (ShortStrings.byteLength(nameShort) == 0) {
|
389
|
-
revert IAccess.ErrorRoleNameEmpty(roleId);
|
390
|
-
}
|
391
|
-
|
392
|
-
if (_role[nameShort] != RoleIdLib.zero() && _role[nameShort] != roleId) {
|
393
|
-
revert IAccess.ErrorRoleNameNotUnique(_role[nameShort], nameShort);
|
394
|
-
}
|
395
|
-
}
|
396
|
-
|
397
|
-
function _validateTargetParameters(address target, IAccess.TargetInfo memory targetInfo) internal view {
|
398
|
-
|
399
|
-
}
|
400
|
-
|
401
|
-
function toRoleKey32(RoleId roleId) public pure returns (Key32) {
|
402
|
-
return roleId.toKey32();
|
403
|
-
}
|
404
|
-
|
405
|
-
function toTargetKey32(address target) public pure returns (Key32) {
|
406
|
-
return Key32Lib.toKey32(TARGET(), KeyId.wrap(bytes20(target)));
|
407
|
-
}
|
408
|
-
|
409
218
|
function _toNftKey32(NftId nftId, ObjectType objectType) internal pure returns (Key32) {
|
410
219
|
return nftId.toKey32(objectType);
|
411
220
|
}
|
@@ -419,23 +228,31 @@ contract Instance is
|
|
419
228
|
}
|
420
229
|
|
421
230
|
function getComponentOwnerService() external view returns (IComponentOwnerService) {
|
422
|
-
return ComponentOwnerService(_registry.getServiceAddress(
|
231
|
+
return ComponentOwnerService(_registry.getServiceAddress(COMPONENT(), VersionPart.wrap(3)));
|
423
232
|
}
|
424
233
|
|
425
234
|
function getDistributionService() external view returns (IDistributionService) {
|
426
|
-
return IDistributionService(_registry.getServiceAddress(
|
235
|
+
return IDistributionService(_registry.getServiceAddress(DISTRIBUTION(), VersionPart.wrap(3)));
|
427
236
|
}
|
428
237
|
|
429
238
|
function getProductService() external view returns (IProductService) {
|
430
|
-
return IProductService(_registry.getServiceAddress(
|
239
|
+
return IProductService(_registry.getServiceAddress(PRODUCT(), VersionPart.wrap(3)));
|
431
240
|
}
|
432
241
|
|
433
242
|
function getPoolService() external view returns (IPoolService) {
|
434
|
-
return IPoolService(_registry.getServiceAddress(
|
243
|
+
return IPoolService(_registry.getServiceAddress(POOL(), VersionPart.wrap(3)));
|
244
|
+
}
|
245
|
+
|
246
|
+
function getPolicyService() external view returns (IPolicyService) {
|
247
|
+
return IPolicyService(_registry.getServiceAddress(POLICY(), VersionPart.wrap(3)));
|
248
|
+
}
|
249
|
+
|
250
|
+
function getBundleService() external view returns (IBundleService) {
|
251
|
+
return IBundleService(_registry.getServiceAddress(BUNDLE(), VersionPart.wrap(3)));
|
435
252
|
}
|
436
253
|
|
437
254
|
function setInstanceReader(InstanceReader instanceReader) external restricted() {
|
438
|
-
require(
|
255
|
+
require(instanceReader.getInstanceNftId() == getNftId(), "NFT ID of InstanceReader does not match");
|
439
256
|
_instanceReader = instanceReader;
|
440
257
|
}
|
441
258
|
|
@@ -445,6 +262,7 @@ contract Instance is
|
|
445
262
|
|
446
263
|
function setBundleManager(BundleManager bundleManager) external restricted() {
|
447
264
|
require(address(_bundleManager) == address(0), "BundleManager is set");
|
265
|
+
require(bundleManager.getInstanceNftId() == getNftId(), "NFT ID of BundleManager does not match");
|
448
266
|
_bundleManager = bundleManager;
|
449
267
|
}
|
450
268
|
|
@@ -3,93 +3,53 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
|
5
5
|
import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
|
6
|
+
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
6
7
|
|
7
|
-
import {
|
8
|
-
import {
|
9
|
-
import {
|
10
|
-
import {
|
11
|
-
import {IRisk} from "./module/IRisk.sol";
|
12
|
-
import {ISetup} from "./module/ISetup.sol";
|
13
|
-
import {Key32, KeyId, Key32Lib} from "../types/Key32.sol";
|
14
|
-
import {KeyValueStore} from "./base/KeyValueStore.sol";
|
15
|
-
import {NftId} from "../types/NftId.sol";
|
16
|
-
import {NumberId} from "../types/NumberId.sol";
|
17
|
-
import {ObjectType, BUNDLE, DISTRIBUTION, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
|
18
|
-
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
19
|
-
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
20
|
-
import {StateId, ACTIVE} from "../types/StateId.sol";
|
21
|
-
import {Timestamp, TimestampLib} from "../types/Timestamp.sol";
|
8
|
+
import {AccessManagerUpgradeableInitializeable} from "../../contracts/instance/AccessManagerUpgradeableInitializeable.sol";
|
9
|
+
import {RoleId, RoleIdLib } from "../types/RoleId.sol";
|
10
|
+
import {TimestampLib} from "../types/Timestamp.sol";
|
11
|
+
import {IAccess} from "./module/IAccess.sol";
|
22
12
|
|
23
13
|
contract InstanceAccessManager is
|
24
|
-
|
14
|
+
AccessManagedUpgradeable
|
25
15
|
{
|
16
|
+
using RoleIdLib for RoleId;
|
17
|
+
|
26
18
|
string public constant ADMIN_ROLE_NAME = "AdminRole";
|
27
19
|
string public constant PUBLIC_ROLE_NAME = "PublicRole";
|
28
20
|
|
29
21
|
uint64 public constant CUSTOM_ROLE_ID_MIN = 10000;
|
30
22
|
uint32 public constant EXECUTION_DELAY = 0;
|
31
23
|
|
32
|
-
struct RoleInfo {
|
33
|
-
ShortString name;
|
34
|
-
bool isCustom;
|
35
|
-
bool isLocked;
|
36
|
-
Timestamp createdAt;
|
37
|
-
Timestamp updatedAt;
|
38
|
-
}
|
39
|
-
|
40
|
-
struct TargetInfo {
|
41
|
-
ShortString name;
|
42
|
-
bool isCustom;
|
43
|
-
bool isLocked;
|
44
|
-
Timestamp createdAt;
|
45
|
-
Timestamp updatedAt;
|
46
|
-
}
|
47
|
-
|
48
|
-
error ErrorRoleIdInvalid(RoleId roleId);
|
49
|
-
error ErrorRoleIdTooBig(RoleId roleId);
|
50
|
-
error ErrorRoleIdTooSmall(RoleId roleId);
|
51
|
-
error ErrorRoleIdAlreadyExists(RoleId roleId, ShortString name);
|
52
|
-
error ErrorRoleIdNotActive(RoleId roleId);
|
53
|
-
error ErrorRoleNameEmpty(RoleId roleId);
|
54
|
-
error ErrorRoleNameNotUnique(RoleId roleId, ShortString name);
|
55
|
-
error ErrorRoleInvalidUpdate(RoleId roleId, bool isCustom);
|
56
|
-
error ErrorRoleIsCustomIsImmutable(RoleId roleId, bool isCustom, bool isCustomExisting);
|
57
|
-
error ErrorSetLockedForNonexstentRole(RoleId roleId);
|
58
|
-
error ErrorGrantNonexstentRole(RoleId roleId);
|
59
|
-
error ErrorRevokeNonexstentRole(RoleId roleId);
|
60
|
-
error ErrorRenounceNonexstentRole(RoleId roleId);
|
61
|
-
|
62
|
-
error ErrorTargetAddressZero();
|
63
|
-
error ErrorTargetAlreadyExists(address target, ShortString name);
|
64
|
-
error ErrorTargetNameEmpty(address target);
|
65
|
-
error ErrorTargetNameExists(address target, address existingTarget, ShortString name);
|
66
|
-
error ErrorSetLockedForNonexstentTarget(address target);
|
67
|
-
|
68
24
|
// role specific state
|
69
|
-
mapping(RoleId roleId => RoleInfo info) internal _role;
|
25
|
+
mapping(RoleId roleId => IAccess.RoleInfo info) internal _role;
|
70
26
|
mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
|
71
27
|
mapping(ShortString name => RoleId roleId) internal _roleForName;
|
72
28
|
RoleId [] internal _roles;
|
73
29
|
|
74
30
|
// target specific state
|
75
|
-
mapping(address target => TargetInfo info) internal _target;
|
31
|
+
mapping(address target => IAccess.TargetInfo info) internal _target;
|
76
32
|
mapping(ShortString name => address target) internal _targetForName;
|
77
33
|
address [] internal _targets;
|
78
34
|
|
79
|
-
|
35
|
+
AccessManagerUpgradeableInitializeable internal _accessManager;
|
80
36
|
|
81
|
-
|
37
|
+
function __InstanceAccessManager_initialize(address initialAdmin) external initializer
|
82
38
|
{
|
83
|
-
|
84
|
-
|
39
|
+
// if size of the contract gets too large, this can be externalized which will reduce the contract size considerably
|
40
|
+
_accessManager = new AccessManagerUpgradeableInitializeable();
|
41
|
+
// this service required adin rights to access manager to be able to grant/revoke roles
|
42
|
+
_accessManager.__AccessManagerUpgradeableInitializeable_init(address(this));
|
43
|
+
_accessManager.grantRole(_accessManager.ADMIN_ROLE(), initialAdmin, 0);
|
44
|
+
|
45
|
+
__AccessManaged_init(address(_accessManager));
|
85
46
|
|
86
47
|
_createRole(RoleIdLib.toRoleId(_accessManager.ADMIN_ROLE()), ADMIN_ROLE_NAME, false, false);
|
87
48
|
_createRole(RoleIdLib.toRoleId(_accessManager.PUBLIC_ROLE()), PUBLIC_ROLE_NAME, false, false);
|
88
49
|
}
|
89
50
|
|
90
51
|
//--- Role ------------------------------------------------------//
|
91
|
-
|
92
|
-
function createDefaultRole(RoleId roleId, string memory name) external restricted() {
|
52
|
+
function createGifRole(RoleId roleId, string memory name) external restricted() {
|
93
53
|
_createRole(roleId, name, false, true);
|
94
54
|
}
|
95
55
|
|
@@ -99,7 +59,7 @@ contract InstanceAccessManager is
|
|
99
59
|
|
100
60
|
function setRoleLocked(RoleId roleId, bool locked) external restricted() {
|
101
61
|
if (!roleExists(roleId)) {
|
102
|
-
revert
|
62
|
+
revert IAccess.ErrorIAccessSetLockedForNonexstentRole(roleId);
|
103
63
|
}
|
104
64
|
|
105
65
|
_role[roleId].isLocked = locked;
|
@@ -112,11 +72,11 @@ contract InstanceAccessManager is
|
|
112
72
|
|
113
73
|
function grantRole(RoleId roleId, address member) external restricted() returns (bool granted) {
|
114
74
|
if (!roleExists(roleId)) {
|
115
|
-
revert
|
75
|
+
revert IAccess.ErrorIAccessGrantNonexstentRole(roleId);
|
116
76
|
}
|
117
77
|
|
118
78
|
if (_role[roleId].isLocked) {
|
119
|
-
revert
|
79
|
+
revert IAccess.ErrorIAccessRoleIdNotActive(roleId);
|
120
80
|
}
|
121
81
|
|
122
82
|
if (!EnumerableSet.contains(_roleMembers[roleId], member)) {
|
@@ -130,7 +90,7 @@ contract InstanceAccessManager is
|
|
130
90
|
|
131
91
|
function revokeRole(RoleId roleId, address member) external restricted() returns (bool revoked) {
|
132
92
|
if (!roleExists(roleId)) {
|
133
|
-
revert
|
93
|
+
revert IAccess.ErrorIAccessRevokeNonexstentRole(roleId);
|
134
94
|
}
|
135
95
|
|
136
96
|
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
@@ -148,7 +108,7 @@ contract InstanceAccessManager is
|
|
148
108
|
address member = msg.sender;
|
149
109
|
|
150
110
|
if (!roleExists(roleId)) {
|
151
|
-
revert
|
111
|
+
revert IAccess.ErrorIAccessRenounceNonexstentRole(roleId);
|
152
112
|
}
|
153
113
|
|
154
114
|
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
@@ -173,7 +133,7 @@ contract InstanceAccessManager is
|
|
173
133
|
return _roleForName[ShortStrings.toShortString(name)];
|
174
134
|
}
|
175
135
|
|
176
|
-
function getRole(RoleId roleId) external view returns (RoleInfo memory role) {
|
136
|
+
function getRole(RoleId roleId) external view returns (IAccess.RoleInfo memory role) {
|
177
137
|
return _role[roleId];
|
178
138
|
}
|
179
139
|
|
@@ -190,13 +150,19 @@ contract InstanceAccessManager is
|
|
190
150
|
}
|
191
151
|
|
192
152
|
//--- Target ------------------------------------------------------//
|
153
|
+
function createGifTarget(address target, string memory name) external restricted() {
|
154
|
+
_createTarget(target, name, false, true);
|
155
|
+
}
|
156
|
+
|
193
157
|
function createTarget(address target, string memory name) external restricted() {
|
194
158
|
_createTarget(target, name, true, true);
|
195
159
|
}
|
196
160
|
|
197
|
-
function setTargetLocked(
|
198
|
-
|
199
|
-
|
161
|
+
function setTargetLocked(string memory targetName, bool locked) external restricted() {
|
162
|
+
address target = _targetForName[ShortStrings.toShortString(targetName)];
|
163
|
+
|
164
|
+
if (target == address(0)) {
|
165
|
+
revert IAccess.ErrorIAccessSetLockedForNonexstentTarget(target);
|
200
166
|
}
|
201
167
|
|
202
168
|
_target[target].isLocked = locked;
|
@@ -214,7 +180,7 @@ contract InstanceAccessManager is
|
|
214
180
|
_validateRoleParameters(roleId, name, isCustom);
|
215
181
|
}
|
216
182
|
|
217
|
-
RoleInfo memory role = RoleInfo(
|
183
|
+
IAccess.RoleInfo memory role = IAccess.RoleInfo(
|
218
184
|
ShortStrings.toShortString(name),
|
219
185
|
isCustom,
|
220
186
|
false, // role un-locked,
|
@@ -233,35 +199,35 @@ contract InstanceAccessManager is
|
|
233
199
|
)
|
234
200
|
internal
|
235
201
|
view
|
236
|
-
returns (RoleInfo memory existingRole)
|
202
|
+
returns (IAccess.RoleInfo memory existingRole)
|
237
203
|
{
|
238
204
|
// check role id
|
239
205
|
uint64 roleIdInt = RoleId.unwrap(roleId);
|
240
206
|
if(roleIdInt == _accessManager.ADMIN_ROLE() || roleIdInt == _accessManager.PUBLIC_ROLE()) {
|
241
|
-
revert
|
207
|
+
revert IAccess.ErrorIAccessRoleIdInvalid(roleId);
|
242
208
|
}
|
243
209
|
|
244
210
|
// prevent changing isCustom for existing roles
|
245
211
|
existingRole = _role[roleId];
|
246
212
|
|
247
213
|
if (existingRole.createdAt.gtz() && isCustom != existingRole.isCustom) {
|
248
|
-
revert
|
214
|
+
revert IAccess.ErrorIAccessRoleIsCustomIsImmutable(roleId, isCustom, existingRole.isCustom);
|
249
215
|
}
|
250
216
|
|
251
217
|
if (isCustom && roleIdInt < CUSTOM_ROLE_ID_MIN) {
|
252
|
-
revert
|
218
|
+
revert IAccess.ErrorIAccessRoleIdTooSmall(roleId);
|
253
219
|
} else if (!isCustom && roleIdInt >= CUSTOM_ROLE_ID_MIN) {
|
254
|
-
revert
|
220
|
+
revert IAccess.ErrorIAccessRoleIdTooBig(roleId);
|
255
221
|
}
|
256
222
|
|
257
223
|
// role name checks
|
258
224
|
ShortString nameShort = ShortStrings.toShortString(name);
|
259
225
|
if (ShortStrings.byteLength(nameShort) == 0) {
|
260
|
-
revert
|
226
|
+
revert IAccess.ErrorIAccessRoleNameEmpty(roleId);
|
261
227
|
}
|
262
228
|
|
263
229
|
if (_roleForName[nameShort] != RoleIdLib.zero() && _roleForName[nameShort] != roleId) {
|
264
|
-
revert
|
230
|
+
revert IAccess.ErrorIAccessRoleNameNotUnique(_roleForName[nameShort], nameShort);
|
265
231
|
}
|
266
232
|
}
|
267
233
|
|
@@ -270,7 +236,14 @@ contract InstanceAccessManager is
|
|
270
236
|
_validateTargetParameters(target, name, isCustom);
|
271
237
|
}
|
272
238
|
|
273
|
-
|
239
|
+
if (_target[target].createdAt.gtz()) {
|
240
|
+
revert IAccess.ErrorIAccessTargetAlreadyExists(target, _target[target].name);
|
241
|
+
}
|
242
|
+
if (_targetForName[ShortStrings.toShortString(name)] != address(0)) {
|
243
|
+
revert IAccess.ErrorIAccessTargetNameExists(target, _targetForName[ShortStrings.toShortString(name)], ShortStrings.toShortString(name));
|
244
|
+
}
|
245
|
+
|
246
|
+
IAccess.TargetInfo memory info = IAccess.TargetInfo(
|
274
247
|
ShortStrings.toShortString(name),
|
275
248
|
isCustom,
|
276
249
|
_accessManager.isTargetClosed(target), // sync with state in access manager
|
@@ -283,6 +256,48 @@ contract InstanceAccessManager is
|
|
283
256
|
}
|
284
257
|
|
285
258
|
function _validateTargetParameters(address target, string memory name, bool isCustom) internal view {
|
259
|
+
// TODO: implement
|
260
|
+
}
|
261
|
+
|
262
|
+
function setTargetFunctionRole(
|
263
|
+
address target,
|
264
|
+
bytes4[] calldata selectors,
|
265
|
+
uint64 roleId
|
266
|
+
) public virtual restricted() {
|
267
|
+
_accessManager.setTargetFunctionRole(target, selectors, roleId);
|
268
|
+
}
|
269
|
+
|
270
|
+
function setTargetFunctionRole(
|
271
|
+
string memory targetName,
|
272
|
+
bytes4[] calldata selectors,
|
273
|
+
RoleId roleId
|
274
|
+
) public virtual restricted() {
|
275
|
+
address target = _targetForName[ShortStrings.toShortString(targetName)];
|
276
|
+
uint64 roleIdInt = RoleId.unwrap(roleId);
|
277
|
+
_accessManager.setTargetFunctionRole(target, selectors, roleIdInt);
|
278
|
+
}
|
279
|
+
|
280
|
+
function getAccessManager() public restricted() returns (AccessManagerUpgradeableInitializeable) {
|
281
|
+
return _accessManager;
|
282
|
+
}
|
283
|
+
|
284
|
+
function setTargetClosed(string memory targetName, bool closed) public restricted() {
|
285
|
+
address target = _targetForName[ShortStrings.toShortString(targetName)];
|
286
|
+
if (target == address(0)) {
|
287
|
+
revert IAccess.ErrorIAccessTargetAddressZero();
|
288
|
+
}
|
289
|
+
_accessManager.setTargetClosed(target, closed);
|
290
|
+
}
|
291
|
+
|
292
|
+
function isTargetLocked(address target) public view returns (bool locked) {
|
293
|
+
return _accessManager.isTargetClosed(target);
|
294
|
+
}
|
286
295
|
|
296
|
+
function canCall(
|
297
|
+
address caller,
|
298
|
+
address target,
|
299
|
+
bytes4 selector
|
300
|
+
) public view virtual returns (bool immediate, uint32 delay) {
|
301
|
+
return _accessManager.canCall(caller, target, selector);
|
287
302
|
}
|
288
303
|
}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
|
5
|
+
import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
|
6
|
+
|
7
|
+
import {IAccess} from "./module/IAccess.sol";
|
8
|
+
import {IBundle} from "./module/IBundle.sol";
|
9
|
+
import {IPolicy} from "./module/IPolicy.sol";
|
10
|
+
import {IRisk} from "./module/IRisk.sol";
|
11
|
+
import {ISetup} from "./module/ISetup.sol";
|
12
|
+
import {Key32, KeyId, Key32Lib} from "../types/Key32.sol";
|
13
|
+
import {KeyValueStore} from "./base/KeyValueStore.sol";
|
14
|
+
import {IInstance} from "./IInstance.sol";
|
15
|
+
import {InstanceReader} from "./InstanceReader.sol";
|
16
|
+
import {BundleManager} from "./BundleManager.sol";
|
17
|
+
import {NftId} from "../types/NftId.sol";
|
18
|
+
import {NumberId} from "../types/NumberId.sol";
|
19
|
+
import {ObjectType, BUNDLE, DISTRIBUTION, INSTANCE, POLICY, POOL, ROLE, PRODUCT, TARGET} from "../types/ObjectType.sol";
|
20
|
+
import {RiskId, RiskIdLib} from "../types/RiskId.sol";
|
21
|
+
import {RoleId, RoleIdLib} from "../types/RoleId.sol";
|
22
|
+
import {StateId, ACTIVE} from "../types/StateId.sol";
|
23
|
+
import {ERC165} from "../shared/ERC165.sol";
|
24
|
+
import {Registerable} from "../shared/Registerable.sol";
|
25
|
+
import {ComponentOwnerService} from "./service/ComponentOwnerService.sol";
|
26
|
+
import {IComponentOwnerService} from "./service/IComponentOwnerService.sol";
|
27
|
+
import {IDistributionService} from "./service/IDistributionService.sol";
|
28
|
+
import {IPoolService} from "./service/IPoolService.sol";
|
29
|
+
import {IProductService} from "./service/IProductService.sol";
|
30
|
+
import {VersionPart} from "../types/Version.sol";
|
31
|
+
import {IInstanceBase} from "./IInstanceBase.sol";
|
32
|
+
|
33
|
+
contract InstanceBase is
|
34
|
+
IInstanceBase,
|
35
|
+
KeyValueStore,
|
36
|
+
ERC165,
|
37
|
+
Registerable
|
38
|
+
{
|
39
|
+
|
40
|
+
|
41
|
+
}
|