@etherisc/gif-next 0.0.2-4e4966e-474 → 0.0.2-4e99ed1-062
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -13
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +842 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +753 -168
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{BaseComponent.sol/BaseComponent.json → IComponent.sol/IComponent.json} +233 -81
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +848 -31
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +846 -57
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +695 -258
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +529 -217
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +1 -1
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +15 -15
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +69 -79
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1038 -395
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +306 -169
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +886 -1171
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +428 -222
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +137 -270
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +498 -326
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +320 -103
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +11 -40
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +258 -172
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +74 -48
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1039 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +607 -299
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +360 -79
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1364 -250
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +450 -73
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +269 -279
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +217 -208
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +804 -160
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +205 -263
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +489 -144
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +86 -172
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +455 -347
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +329 -96
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +827 -308
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +311 -78
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +292 -220
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +309 -76
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +244 -133
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +149 -230
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +257 -235
- 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 +200 -335
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -145
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +86 -172
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +191 -163
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +210 -214
- 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/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
- 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/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- 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/Timestamp.sol/TimestampLib.json +25 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/Component.sol +253 -0
- package/contracts/components/Distribution.sol +200 -83
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +44 -17
- package/contracts/components/IPoolComponent.sol +88 -41
- package/contracts/components/IProductComponent.sol +10 -5
- package/contracts/components/Pool.sol +217 -185
- package/contracts/components/Product.sol +125 -124
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +2 -12
- package/contracts/instance/BundleManager.sol +14 -16
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +52 -14
- package/contracts/instance/IInstanceService.sol +42 -4
- package/contracts/instance/Instance.sol +123 -261
- package/contracts/instance/InstanceAccessManager.sol +391 -186
- package/contracts/instance/InstanceReader.sol +10 -34
- package/contracts/instance/InstanceService.sol +322 -111
- package/contracts/instance/InstanceServiceManager.sol +6 -9
- package/contracts/instance/ObjectManager.sol +10 -29
- package/contracts/instance/base/ComponentService.sol +121 -0
- package/contracts/instance/base/KeyValueStore.sol +13 -5
- package/contracts/instance/base/Lifecycle.sol +11 -2
- package/contracts/instance/module/IAccess.sol +30 -22
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +30 -3
- package/contracts/instance/module/ISetup.sol +7 -20
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +239 -68
- package/contracts/instance/service/BundleServiceManager.sol +6 -9
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +367 -50
- package/contracts/instance/service/DistributionServiceManager.sol +7 -10
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +67 -19
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +87 -0
- package/contracts/instance/service/IPolicyService.sol +34 -49
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/PolicyService.sol +201 -347
- package/contracts/instance/service/PolicyServiceManager.sol +2 -2
- package/contracts/instance/service/PoolService.sol +224 -45
- package/contracts/instance/service/PoolServiceManager.sol +6 -9
- package/contracts/instance/service/ProductService.sol +93 -56
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/ChainNft.sol +9 -1
- package/contracts/registry/IRegistry.sol +39 -19
- package/contracts/registry/IRegistryService.sol +31 -13
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +243 -224
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +97 -173
- package/contracts/registry/RegistryServiceManager.sol +21 -39
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +22 -17
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +5 -4
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +66 -80
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +16 -32
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +41 -24
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +4 -3
- package/contracts/types/Amount.sol +60 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +13 -5
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +10 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +19 -14
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +1 -0
- package/contracts/types/Timestamp.sol +13 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -368
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +0 -448
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +0 -763
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
- package/contracts/components/BaseComponent.sol +0 -132
- package/contracts/components/IBaseComponent.sol +0 -31
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/IInstanceBase.sol +0 -26
- package/contracts/instance/InstanceBase.sol +0 -41
- package/contracts/instance/base/ComponentServiceBase.sol +0 -72
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
|
@@ -1,315 +1,520 @@
|
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
|
2
2
|
pragma solidity ^0.8.20;
|
|
3
3
|
|
|
4
|
+
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
|
4
5
|
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
|
|
5
6
|
import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
|
|
6
|
-
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
|
7
7
|
|
|
8
|
-
import {
|
|
9
|
-
import {RoleId, RoleIdLib, DISTRIBUTION_OWNER_ROLE, POOL_OWNER_ROLE, PRODUCT_OWNER_ROLE, DISTRIBUTION_SERVICE_ROLE, POOL_SERVICE_ROLE, PRODUCT_SERVICE_ROLE, POLICY_SERVICE_ROLE, BUNDLE_SERVICE_ROLE, INSTANCE_SERVICE_ROLE } from "../types/RoleId.sol";
|
|
8
|
+
import {RoleId, RoleIdLib, ADMIN_ROLE, PUBLIC_ROLE, INSTANCE_SERVICE_ROLE, INSTANCE_OWNER_ROLE, INSTANCE_ROLE} from "../types/RoleId.sol";
|
|
10
9
|
import {TimestampLib} from "../types/Timestamp.sol";
|
|
10
|
+
import {NftId} from "../types/NftId.sol";
|
|
11
|
+
|
|
12
|
+
import {AccessManagerUpgradeableInitializeable} from "./AccessManagerUpgradeableInitializeable.sol";
|
|
13
|
+
|
|
14
|
+
import {IRegistry} from "../registry/IRegistry.sol";
|
|
15
|
+
|
|
16
|
+
import {IInstance} from "./IInstance.sol";
|
|
11
17
|
import {IAccess} from "./module/IAccess.sol";
|
|
12
18
|
|
|
13
19
|
contract InstanceAccessManager is
|
|
14
20
|
AccessManagedUpgradeable
|
|
15
21
|
{
|
|
22
|
+
event LogRoleCreation(RoleId roleId, ShortString name, IAccess.Type rtype);
|
|
23
|
+
event LogTargetCreation(address target, ShortString name, IAccess.Type ttype, bool isLocked);
|
|
24
|
+
|
|
16
25
|
using RoleIdLib for RoleId;
|
|
17
26
|
|
|
18
27
|
string public constant ADMIN_ROLE_NAME = "AdminRole";
|
|
19
28
|
string public constant PUBLIC_ROLE_NAME = "PublicRole";
|
|
29
|
+
string public constant INSTANCE_ROLE_NAME = "InstanceRole";
|
|
30
|
+
string public constant INSTANCE_OWNER_ROLE_NAME = "InstanceOwnerRole";
|
|
20
31
|
|
|
21
|
-
uint64 public constant CUSTOM_ROLE_ID_MIN = 10000;
|
|
32
|
+
uint64 public constant CUSTOM_ROLE_ID_MIN = 10000; // MUST be even
|
|
22
33
|
uint32 public constant EXECUTION_DELAY = 0;
|
|
23
34
|
|
|
24
|
-
error ErrorRoleIdInvalid(RoleId roleId);
|
|
25
|
-
error ErrorRoleIdTooBig(RoleId roleId);
|
|
26
|
-
error ErrorRoleIdTooSmall(RoleId roleId);
|
|
27
|
-
error ErrorRoleIdAlreadyExists(RoleId roleId, ShortString name);
|
|
28
|
-
error ErrorRoleIdNotActive(RoleId roleId);
|
|
29
|
-
error ErrorRoleNameEmpty(RoleId roleId);
|
|
30
|
-
error ErrorRoleNameNotUnique(RoleId roleId, ShortString name);
|
|
31
|
-
error ErrorRoleInvalidUpdate(RoleId roleId, bool isCustom);
|
|
32
|
-
error ErrorRoleIsCustomIsImmutable(RoleId roleId, bool isCustom, bool isCustomExisting);
|
|
33
|
-
error ErrorSetLockedForNonexstentRole(RoleId roleId);
|
|
34
|
-
error ErrorGrantNonexstentRole(RoleId roleId);
|
|
35
|
-
error ErrorRevokeNonexstentRole(RoleId roleId);
|
|
36
|
-
error ErrorRenounceNonexstentRole(RoleId roleId);
|
|
37
|
-
|
|
38
|
-
error ErrorTargetAddressZero();
|
|
39
|
-
error ErrorTargetAlreadyExists(address target, ShortString name);
|
|
40
|
-
error ErrorTargetNameEmpty(address target);
|
|
41
|
-
error ErrorTargetNameExists(address target, address existingTarget, ShortString name);
|
|
42
|
-
error ErrorSetLockedForNonexstentTarget(address target);
|
|
43
|
-
|
|
44
35
|
// role specific state
|
|
45
|
-
mapping(RoleId roleId => IAccess.RoleInfo info) internal
|
|
36
|
+
mapping(RoleId roleId => IAccess.RoleInfo info) internal _roleInfo;
|
|
46
37
|
mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers;
|
|
47
|
-
mapping(ShortString name => RoleId roleId) internal
|
|
48
|
-
RoleId [] internal
|
|
38
|
+
mapping(ShortString name => RoleId roleId) internal _roleIdForName;
|
|
39
|
+
RoleId [] internal _roleIds;
|
|
40
|
+
uint64 _idNext;
|
|
49
41
|
|
|
50
42
|
// target specific state
|
|
51
|
-
mapping(address target => IAccess.TargetInfo info) internal
|
|
52
|
-
mapping(ShortString name => address target) internal
|
|
43
|
+
mapping(address target => IAccess.TargetInfo info) internal _targetInfo;
|
|
44
|
+
mapping(ShortString name => address target) internal _targetAddressForName;
|
|
53
45
|
address [] internal _targets;
|
|
54
46
|
|
|
55
47
|
AccessManagerUpgradeableInitializeable internal _accessManager;
|
|
48
|
+
IRegistry internal _registry;
|
|
49
|
+
|
|
50
|
+
modifier restrictedToRoleAdmin(RoleId roleId) {
|
|
51
|
+
RoleId admin = getRoleAdmin(roleId);
|
|
52
|
+
(bool inRole, uint32 executionDelay) = _accessManager.hasRole(admin.toInt(), _msgSender());
|
|
53
|
+
assert(executionDelay == 0); // to be sure no delayed execution functionality is used
|
|
54
|
+
if (!inRole) {
|
|
55
|
+
revert IAccess.ErrorIAccessCallerIsNotRoleAdmin(_msgSender(), roleId);
|
|
56
|
+
}
|
|
57
|
+
_;
|
|
58
|
+
}
|
|
56
59
|
|
|
57
|
-
|
|
60
|
+
// instance owner is granted upon instance nft minting in callback function
|
|
61
|
+
function initialize(address instanceAddress) external initializer
|
|
58
62
|
{
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
_accessManager.__AccessManagerUpgradeableInitializeable_init(address(this));
|
|
63
|
-
_accessManager.grantRole(_accessManager.ADMIN_ROLE(), initialAdmin, 0);
|
|
63
|
+
IInstance instance = IInstance(instanceAddress);
|
|
64
|
+
IRegistry registry = instance.getRegistry();
|
|
65
|
+
address authority = instance.authority();
|
|
64
66
|
|
|
65
|
-
__AccessManaged_init(
|
|
67
|
+
__AccessManaged_init(authority);
|
|
66
68
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
+
_accessManager = AccessManagerUpgradeableInitializeable(authority);
|
|
70
|
+
_registry = registry;
|
|
71
|
+
_idNext = CUSTOM_ROLE_ID_MIN;
|
|
69
72
|
|
|
70
|
-
|
|
71
|
-
|
|
73
|
+
_createRole(ADMIN_ROLE(), ADMIN_ROLE_NAME, IAccess.Type.Core);
|
|
74
|
+
_createRole(PUBLIC_ROLE(), PUBLIC_ROLE_NAME, IAccess.Type.Core);
|
|
75
|
+
_createRole(INSTANCE_ROLE(), INSTANCE_ROLE_NAME, IAccess.Type.Core);
|
|
76
|
+
_createRole(INSTANCE_OWNER_ROLE(), INSTANCE_OWNER_ROLE_NAME, IAccess.Type.Gif);
|
|
72
77
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
_createRole(DISTRIBUTION_OWNER_ROLE(), "DistributionOwnerRole", false, true);
|
|
76
|
-
_createRole(POOL_OWNER_ROLE(), "PoolOwnerRole", false, true);
|
|
77
|
-
_createRole(PRODUCT_OWNER_ROLE(), "ProductOwnerRole", false, true);
|
|
78
|
+
// assume `this` is already a member of ADMIN_ROLE
|
|
79
|
+
EnumerableSet.add(_roleMembers[ADMIN_ROLE()], address(this));
|
|
78
80
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
_createRole(PRODUCT_SERVICE_ROLE(), "ProductServiceRole", false, true);
|
|
82
|
-
_createRole(POLICY_SERVICE_ROLE(), "PolicyServiceRole", false, true);
|
|
83
|
-
_createRole(BUNDLE_SERVICE_ROLE(), "BundleServiceRole", false, true);
|
|
84
|
-
_createRole(INSTANCE_SERVICE_ROLE(), "InstanceServiceRole", false, true);
|
|
81
|
+
grantRole(INSTANCE_ROLE(), instanceAddress);
|
|
82
|
+
setRoleAdmin(INSTANCE_OWNER_ROLE(), INSTANCE_ROLE());
|
|
85
83
|
}
|
|
86
84
|
|
|
87
85
|
//--- Role ------------------------------------------------------//
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
86
|
+
// ADMIN_ROLE
|
|
87
|
+
// assume all core roles are know at deployment time
|
|
88
|
+
// assume core roles are set and granted only during instance cloning
|
|
89
|
+
// assume core roles are never revoked -> core roles admin is never active after intialization
|
|
90
|
+
function createCoreRole(RoleId roleId, string memory name)
|
|
91
|
+
external
|
|
92
|
+
restricted()
|
|
93
|
+
{
|
|
94
|
+
_createRole(roleId, name, IAccess.Type.Core);
|
|
91
95
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
96
|
+
// ADMIN_ROLE
|
|
97
|
+
// assume gif roles can be revoked
|
|
98
|
+
// assume admin is INSTANCE_OWNER_ROLE or INSTANCE_ROLE
|
|
99
|
+
function createGifRole(RoleId roleId, string memory name, RoleId admin)
|
|
100
|
+
external
|
|
101
|
+
restricted()
|
|
102
|
+
{
|
|
103
|
+
_createRole(roleId, name, IAccess.Type.Gif);
|
|
104
|
+
setRoleAdmin(roleId, admin);
|
|
95
105
|
}
|
|
96
106
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
107
|
+
// INSTANCE_OWNER_ROLE
|
|
108
|
+
function createRole(string memory roleName, string memory adminName)
|
|
109
|
+
external
|
|
110
|
+
restricted()
|
|
111
|
+
returns(RoleId roleId, RoleId admin)
|
|
112
|
+
{
|
|
113
|
+
(roleId, admin) = _getNextCustomRoleId();
|
|
101
114
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
115
|
+
_createRole(roleId, roleName, IAccess.Type.Custom);
|
|
116
|
+
_createRole(admin, adminName, IAccess.Type.Custom);
|
|
105
117
|
|
|
106
|
-
|
|
107
|
-
|
|
118
|
+
// TODO works without this -> why?
|
|
119
|
+
setRoleAdmin(roleId, admin);
|
|
120
|
+
setRoleAdmin(admin, INSTANCE_OWNER_ROLE());
|
|
108
121
|
}
|
|
109
122
|
|
|
110
|
-
|
|
123
|
+
// ADMIN_ROLE
|
|
124
|
+
// assume used by instance service only during instance cloning
|
|
125
|
+
// assume used only by this.createRole(), this.createGifRole() afterwards
|
|
126
|
+
function setRoleAdmin(RoleId roleId, RoleId admin)
|
|
127
|
+
public
|
|
128
|
+
restricted()
|
|
129
|
+
{
|
|
111
130
|
if (!roleExists(roleId)) {
|
|
112
|
-
revert
|
|
131
|
+
revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
|
|
113
132
|
}
|
|
114
133
|
|
|
115
|
-
if
|
|
116
|
-
revert
|
|
134
|
+
if(_roleInfo[roleId].rtype == IAccess.Type.Core) {
|
|
135
|
+
revert IAccess.ErrorIAccessRoleTypeInvalid(roleId, IAccess.Type.Core);
|
|
117
136
|
}
|
|
118
137
|
|
|
119
|
-
if (!
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
return true;
|
|
123
|
-
}
|
|
138
|
+
if (!roleExists(admin)) {
|
|
139
|
+
revert IAccess.ErrorIAccessRoleIdDoesNotExist(admin);
|
|
140
|
+
}
|
|
124
141
|
|
|
125
|
-
|
|
142
|
+
_roleInfo[roleId].admin = admin;
|
|
126
143
|
}
|
|
127
144
|
|
|
128
|
-
function
|
|
145
|
+
function grantRole(RoleId roleId, address member)
|
|
146
|
+
public
|
|
147
|
+
restrictedToRoleAdmin(roleId)
|
|
148
|
+
returns (bool granted)
|
|
149
|
+
{
|
|
129
150
|
if (!roleExists(roleId)) {
|
|
130
|
-
revert
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
if (EnumerableSet.contains(_roleMembers[roleId], member)) {
|
|
134
|
-
_accessManager.revokeRole(roleId.toInt(), member);
|
|
135
|
-
EnumerableSet.remove(_roleMembers[roleId], member);
|
|
136
|
-
return true;
|
|
151
|
+
revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
|
|
137
152
|
}
|
|
138
153
|
|
|
139
|
-
|
|
154
|
+
granted = EnumerableSet.add(_roleMembers[roleId], member);
|
|
155
|
+
if(granted) {
|
|
156
|
+
_accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
|
|
157
|
+
}
|
|
140
158
|
}
|
|
141
159
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
160
|
+
function revokeRole(RoleId roleId, address member)
|
|
161
|
+
external
|
|
162
|
+
restrictedToRoleAdmin(roleId)
|
|
163
|
+
returns (bool)
|
|
164
|
+
{
|
|
165
|
+
return _revokeRole(roleId, member);
|
|
166
|
+
}
|
|
146
167
|
|
|
168
|
+
// INSTANCE_OWNER_ROLE
|
|
169
|
+
// IMPORTANT: unbounded function, revoke all or revert
|
|
170
|
+
// Instance owner role decides what to do in case of custom role admin bening revoked, e.g.:
|
|
171
|
+
// 1) revoke custom role from ALL members
|
|
172
|
+
// 2) revoke custom role admin from ALL members
|
|
173
|
+
// 3) 1) + 2)
|
|
174
|
+
// 4) revoke only 1 member of custom role admin
|
|
175
|
+
function revokeRoleAllMembers(RoleId roleId)
|
|
176
|
+
external
|
|
177
|
+
restrictedToRoleAdmin(roleId)
|
|
178
|
+
returns (bool revoked)
|
|
179
|
+
{
|
|
147
180
|
if (!roleExists(roleId)) {
|
|
148
|
-
revert
|
|
181
|
+
revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
|
|
149
182
|
}
|
|
150
183
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
184
|
+
uint memberCount = EnumerableSet.length(_roleMembers[roleId]);
|
|
185
|
+
for(uint memberIdx = 0; memberIdx < memberCount; memberIdx++)
|
|
186
|
+
{
|
|
187
|
+
address member = EnumerableSet.at(_roleMembers[roleId], memberIdx);
|
|
154
188
|
EnumerableSet.remove(_roleMembers[roleId], member);
|
|
155
|
-
|
|
189
|
+
_accessManager.revokeRole(roleId.toInt(), member);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/// @dev not restricted function by intention
|
|
194
|
+
/// the restriction to role members is already enforced by the call to the access manager
|
|
195
|
+
function renounceRole(RoleId roleId)
|
|
196
|
+
external
|
|
197
|
+
returns (bool)
|
|
198
|
+
{
|
|
199
|
+
IAccess.Type rtype = _roleInfo[roleId].rtype;
|
|
200
|
+
if(rtype == IAccess.Type.Core || rtype == IAccess.Type.Gif) {
|
|
201
|
+
revert IAccess.ErrorIAccessRoleTypeInvalid(roleId, rtype);
|
|
156
202
|
}
|
|
157
203
|
|
|
158
|
-
|
|
204
|
+
address member = msg.sender;
|
|
205
|
+
// cannot use accessManger.renounce as it directly checks against msg.sender
|
|
206
|
+
return _revokeRole(roleId, member);
|
|
159
207
|
}
|
|
160
208
|
|
|
161
|
-
function
|
|
162
|
-
return
|
|
209
|
+
function roleExists(RoleId roleId) public view returns (bool exists) {
|
|
210
|
+
return _roleInfo[roleId].createdAt.gtz();
|
|
211
|
+
}
|
|
212
|
+
// TODO returns ADMIN_ROLE id for non existent roleId
|
|
213
|
+
function getRoleAdmin(RoleId roleId) public view returns(RoleId admin) {
|
|
214
|
+
return _roleInfo[roleId].admin;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
function getRoleInfo(RoleId roleId) external view returns (IAccess.RoleInfo memory info) {
|
|
218
|
+
return _roleInfo[roleId];
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
function roleMembers(RoleId roleId) public view returns (uint256 numberOfMembers) {
|
|
222
|
+
return EnumerableSet.length(_roleMembers[roleId]);
|
|
163
223
|
}
|
|
164
224
|
|
|
165
225
|
function getRoleId(uint256 idx) external view returns (RoleId roleId) {
|
|
166
|
-
return
|
|
226
|
+
return _roleIds[idx];
|
|
167
227
|
}
|
|
168
228
|
|
|
229
|
+
// TODO now: for non existent name returns ADMIN_ROLE id
|
|
169
230
|
function getRoleIdForName(string memory name) external view returns (RoleId roleId) {
|
|
170
|
-
return
|
|
231
|
+
return _roleIdForName[ShortStrings.toShortString(name)];
|
|
171
232
|
}
|
|
172
233
|
|
|
173
|
-
function
|
|
174
|
-
return
|
|
234
|
+
function roleMember(RoleId roleId, uint256 idx) external view returns (address member) {
|
|
235
|
+
return EnumerableSet.at(_roleMembers[roleId], idx);
|
|
175
236
|
}
|
|
176
237
|
|
|
177
238
|
function hasRole(RoleId roleId, address account) external view returns (bool accountHasRole) {
|
|
178
239
|
(accountHasRole, ) = _accessManager.hasRole(roleId.toInt(), account);
|
|
179
240
|
}
|
|
180
241
|
|
|
181
|
-
function
|
|
182
|
-
return
|
|
242
|
+
function roles() external view returns (uint256 numberOfRoles) {
|
|
243
|
+
return _roleIds.length;
|
|
183
244
|
}
|
|
184
245
|
|
|
185
|
-
|
|
186
|
-
|
|
246
|
+
//--- Target ------------------------------------------------------//
|
|
247
|
+
// ADMIN_ROLE
|
|
248
|
+
// assume some core targets are registred (instance) while others are not (instance accesss manager, instance reader, bundle manager)
|
|
249
|
+
function createCoreTarget(address target, string memory name) external restricted() {
|
|
250
|
+
_createTarget(target, name, IAccess.Type.Core);
|
|
187
251
|
}
|
|
252
|
+
// INSTANCE_SERVICE_ROLE
|
|
253
|
+
// assume gif target is registered and belongs to the same instance as instance access manager
|
|
254
|
+
function createGifTarget(address target, string memory name) external restricted()
|
|
255
|
+
{
|
|
256
|
+
if(!_registry.isRegistered(target)) {
|
|
257
|
+
revert IAccess.ErrorIAccessTargetNotRegistered(target);
|
|
258
|
+
}
|
|
188
259
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
260
|
+
_createTarget(target, name, IAccess.Type.Gif);
|
|
261
|
+
}
|
|
262
|
+
// INSTANCE_OWNER_ROLE
|
|
263
|
+
// assume custom target.authority() is constant -> target MUST not be used with different instance access manager
|
|
264
|
+
// assume custom target can not be registered as component -> each service which is doing component registration MUST register a gif target
|
|
265
|
+
// assume custom target can not be registered as instance or service -> why?
|
|
266
|
+
// TODO check target associated with instance owner or instance or instance components or components helpers
|
|
267
|
+
function createTarget(address target, string memory name) external restricted()
|
|
268
|
+
{
|
|
269
|
+
_createTarget(target, name, IAccess.Type.Custom);
|
|
192
270
|
}
|
|
193
271
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
272
|
+
// INSTANCE_SERVICE_ROLE
|
|
273
|
+
// IMPORTANT: instance access manager MUST be of Core type -> otherwise will be locked forever
|
|
274
|
+
function setTargetLocked(address target, bool locked)
|
|
275
|
+
external
|
|
276
|
+
restricted()
|
|
277
|
+
{
|
|
278
|
+
IAccess.Type targetType = _targetInfo[target].ttype;
|
|
279
|
+
if(target == address(0) || targetType == IAccess.Type.NotInitialized) {
|
|
280
|
+
revert IAccess.ErrorIAccessTargetDoesNotExist(target);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
if(targetType == IAccess.Type.Core) {
|
|
284
|
+
revert IAccess.ErrorIAccessTargetTypeInvalid(target, targetType);
|
|
199
285
|
}
|
|
200
286
|
|
|
201
|
-
|
|
287
|
+
// TODO isLocked is redundant but makes getTargetInfo() faster
|
|
288
|
+
_targetInfo[target].isLocked = locked;
|
|
202
289
|
_accessManager.setTargetClosed(target, locked);
|
|
203
290
|
}
|
|
204
291
|
|
|
205
|
-
|
|
206
|
-
|
|
292
|
+
// allowed combinations of roles and targets:
|
|
293
|
+
//1) set core role for core target
|
|
294
|
+
//2) set gif role for gif target
|
|
295
|
+
//3) set custom role for gif target
|
|
296
|
+
//4) set custom role for custom target
|
|
297
|
+
|
|
298
|
+
// ADMIN_ROLE if used only during initialization, works with:
|
|
299
|
+
// any roles for any targets
|
|
300
|
+
// INSTANCE_SERVICE_ROLE if used not only during initilization, works with:
|
|
301
|
+
// core roles for core targets
|
|
302
|
+
// gif roles for gif targets
|
|
303
|
+
function setCoreTargetFunctionRole(
|
|
304
|
+
string memory targetName,
|
|
305
|
+
bytes4[] calldata selectors,
|
|
306
|
+
RoleId roleId
|
|
307
|
+
)
|
|
308
|
+
public
|
|
309
|
+
virtual
|
|
310
|
+
restricted()
|
|
311
|
+
{
|
|
312
|
+
ShortString nameShort = ShortStrings.toShortString(targetName);
|
|
313
|
+
address target = _targetAddressForName[nameShort];
|
|
314
|
+
|
|
315
|
+
// not custom target
|
|
316
|
+
if(_targetInfo[target].ttype == IAccess.Type.Custom) {
|
|
317
|
+
revert IAccess.ErrorIAccessTargetTypeInvalid(target, IAccess.Type.Custom);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
// not custom role
|
|
321
|
+
if(_roleInfo[roleId].rtype == IAccess.Type.Custom) {
|
|
322
|
+
revert IAccess.ErrorIAccessRoleTypeInvalid(roleId, IAccess.Type.Custom);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
_setTargetFunctionRole(target, nameShort, selectors, roleId);
|
|
207
326
|
}
|
|
208
327
|
|
|
209
|
-
|
|
328
|
+
// INSTANCE_OWNER_ROLE
|
|
329
|
+
// gif role for gif target
|
|
330
|
+
// gif role for custom target
|
|
331
|
+
// custom role for gif target
|
|
332
|
+
// custom role for custom target
|
|
333
|
+
// TODO instance owner can mess with gif target (component) -> e.g. set custom role for function intendent to work with gif role
|
|
334
|
+
function setTargetFunctionRole(
|
|
335
|
+
string memory targetName,
|
|
336
|
+
bytes4[] calldata selectors,
|
|
337
|
+
RoleId roleId
|
|
338
|
+
)
|
|
339
|
+
public
|
|
340
|
+
virtual
|
|
341
|
+
restricted()
|
|
342
|
+
{
|
|
343
|
+
ShortString nameShort = ShortStrings.toShortString(targetName);
|
|
344
|
+
address target = _targetAddressForName[nameShort];
|
|
210
345
|
|
|
211
|
-
|
|
212
|
-
if
|
|
213
|
-
|
|
346
|
+
// not core target
|
|
347
|
+
if(_targetInfo[target].ttype == IAccess.Type.Core) {
|
|
348
|
+
revert IAccess.ErrorIAccessTargetTypeInvalid(target, IAccess.Type.Core);
|
|
214
349
|
}
|
|
215
350
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
351
|
+
// not core role
|
|
352
|
+
if(_roleInfo[roleId].rtype == IAccess.Type.Core) {
|
|
353
|
+
revert IAccess.ErrorIAccessRoleTypeInvalid(roleId, IAccess.Type.Core);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
_setTargetFunctionRole(target, nameShort, selectors, roleId);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
function getTargetAddress(string memory targetName) public view returns(address targetAddress) {
|
|
360
|
+
ShortString nameShort = ShortStrings.toShortString(targetName);
|
|
361
|
+
return _targetAddressForName[nameShort];
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
function isTargetLocked(address target) public view returns (bool locked) {
|
|
365
|
+
return _accessManager.isTargetClosed(target);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
function targetExists(address target) public view returns (bool exists) {
|
|
369
|
+
return _targetInfo[target].createdAt.gtz();
|
|
370
|
+
}
|
|
222
371
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
_roles.push(roleId);
|
|
372
|
+
function getTargetInfo(address target) public view returns (IAccess.TargetInfo memory) {
|
|
373
|
+
return _targetInfo[target];
|
|
226
374
|
}
|
|
227
375
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
string memory name,
|
|
231
|
-
bool isCustom
|
|
232
|
-
)
|
|
376
|
+
//--- Role internal view/pure functions --------------------------------------//
|
|
377
|
+
function _createRole(RoleId roleId, string memory roleName, IAccess.Type rtype)
|
|
233
378
|
internal
|
|
234
|
-
view
|
|
235
|
-
returns (IAccess.RoleInfo memory existingRole)
|
|
236
379
|
{
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
380
|
+
ShortString name = ShortStrings.toShortString(roleName);
|
|
381
|
+
_validateRole(roleId, name, rtype);
|
|
382
|
+
|
|
383
|
+
if(roleExists(roleId)) {
|
|
384
|
+
revert IAccess.ErrorIAccessRoleIdExists(roleId);
|
|
241
385
|
}
|
|
242
386
|
|
|
243
|
-
|
|
244
|
-
|
|
387
|
+
if (_roleIdForName[name].gtz()) {
|
|
388
|
+
revert IAccess.ErrorIAccessRoleNameExists(roleId, _roleIdForName[name], name);
|
|
389
|
+
}
|
|
245
390
|
|
|
246
|
-
|
|
247
|
-
|
|
391
|
+
_roleInfo[roleId] = IAccess.RoleInfo(
|
|
392
|
+
name,
|
|
393
|
+
rtype,
|
|
394
|
+
ADMIN_ROLE(),
|
|
395
|
+
TimestampLib.blockTimestamp(),
|
|
396
|
+
TimestampLib.blockTimestamp()
|
|
397
|
+
);
|
|
398
|
+
_roleIdForName[name] = roleId;
|
|
399
|
+
_roleIds.push(roleId);
|
|
400
|
+
|
|
401
|
+
emit LogRoleCreation(roleId, name, rtype);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
function _validateRole(RoleId roleId, ShortString name, IAccess.Type rtype)
|
|
405
|
+
internal
|
|
406
|
+
view
|
|
407
|
+
{
|
|
408
|
+
uint roleIdInt = roleId.toInt();
|
|
409
|
+
if(rtype == IAccess.Type.Custom && roleIdInt < CUSTOM_ROLE_ID_MIN) {
|
|
410
|
+
revert IAccess.ErrorIAccessRoleIdTooSmall(roleId);
|
|
248
411
|
}
|
|
249
412
|
|
|
250
|
-
if
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
413
|
+
if(
|
|
414
|
+
rtype != IAccess.Type.Custom &&
|
|
415
|
+
roleIdInt >= CUSTOM_ROLE_ID_MIN &&
|
|
416
|
+
roleIdInt != PUBLIC_ROLE().toInt())
|
|
417
|
+
{
|
|
418
|
+
revert IAccess.ErrorIAccessRoleIdTooBig(roleId);
|
|
254
419
|
}
|
|
255
420
|
|
|
256
421
|
// role name checks
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
422
|
+
if (ShortStrings.byteLength(name) == 0) {
|
|
423
|
+
revert IAccess.ErrorIAccessRoleNameEmpty(roleId);
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
function _revokeRole(RoleId roleId, address member)
|
|
428
|
+
internal
|
|
429
|
+
returns(bool revoked)
|
|
430
|
+
{
|
|
431
|
+
if (!roleExists(roleId)) {
|
|
432
|
+
revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
|
|
260
433
|
}
|
|
261
434
|
|
|
262
|
-
|
|
263
|
-
|
|
435
|
+
revoked = EnumerableSet.remove(_roleMembers[roleId], member);
|
|
436
|
+
if(revoked) {
|
|
437
|
+
_accessManager.revokeRole(roleId.toInt(), member);
|
|
264
438
|
}
|
|
265
439
|
}
|
|
266
440
|
|
|
267
|
-
function
|
|
268
|
-
|
|
269
|
-
|
|
441
|
+
function _getNextCustomRoleId()
|
|
442
|
+
internal
|
|
443
|
+
returns(RoleId roleId, RoleId admin)
|
|
444
|
+
{
|
|
445
|
+
uint64 roleIdInt = _idNext;
|
|
446
|
+
uint64 adminInt = roleIdInt + 1;
|
|
447
|
+
|
|
448
|
+
_idNext = roleIdInt + 2;
|
|
449
|
+
|
|
450
|
+
roleId = RoleIdLib.toRoleId(roleIdInt);
|
|
451
|
+
admin = RoleIdLib.toRoleId(adminInt);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
//--- Target internal view/pure functions --------------------------------------//
|
|
455
|
+
function _createTarget(address target, string memory targetName, IAccess.Type ttype)
|
|
456
|
+
internal
|
|
457
|
+
{
|
|
458
|
+
ShortString name = ShortStrings.toShortString(targetName);
|
|
459
|
+
_validateTarget(target, name, ttype);
|
|
460
|
+
|
|
461
|
+
if (_targetInfo[target].createdAt.gtz()) {
|
|
462
|
+
revert IAccess.ErrorIAccessTargetExists(target, _targetInfo[target].name);
|
|
270
463
|
}
|
|
271
464
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
465
|
+
if (_targetAddressForName[name] != address(0)) {
|
|
466
|
+
revert IAccess.ErrorIAccessTargetNameExists(
|
|
467
|
+
target,
|
|
468
|
+
_targetAddressForName[name],
|
|
469
|
+
name);
|
|
470
|
+
}
|
|
278
471
|
|
|
279
|
-
|
|
280
|
-
|
|
472
|
+
bool isLocked = _accessManager.isTargetClosed(target);// sync with state in access manager
|
|
473
|
+
_targetInfo[target] = IAccess.TargetInfo(
|
|
474
|
+
name,
|
|
475
|
+
ttype,
|
|
476
|
+
isLocked,
|
|
477
|
+
TimestampLib.blockTimestamp(),
|
|
478
|
+
TimestampLib.blockTimestamp()
|
|
479
|
+
);
|
|
480
|
+
_targetAddressForName[name] = target;
|
|
281
481
|
_targets.push(target);
|
|
282
|
-
}
|
|
283
482
|
|
|
284
|
-
|
|
285
|
-
// TODO: implement
|
|
483
|
+
emit LogTargetCreation(target, name, ttype, isLocked);
|
|
286
484
|
}
|
|
287
485
|
|
|
288
|
-
function
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
486
|
+
function _validateTarget(address target, ShortString name, IAccess.Type ttype)
|
|
487
|
+
internal
|
|
488
|
+
view
|
|
489
|
+
{
|
|
490
|
+
address targetAuthority = AccessManagedUpgradeable(target).authority();
|
|
491
|
+
if(targetAuthority != authority()) {
|
|
492
|
+
revert IAccess.ErrorIAccessTargetAuthorityInvalid(target, targetAuthority);
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
if (ShortStrings.byteLength(name) == 0) {
|
|
496
|
+
revert IAccess.ErrorIAccessTargetNameEmpty(target);
|
|
497
|
+
}
|
|
294
498
|
}
|
|
295
499
|
|
|
296
|
-
function
|
|
297
|
-
|
|
500
|
+
function _setTargetFunctionRole(
|
|
501
|
+
address target,
|
|
502
|
+
ShortString name,
|
|
298
503
|
bytes4[] calldata selectors,
|
|
299
504
|
RoleId roleId
|
|
300
|
-
)
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
505
|
+
)
|
|
506
|
+
internal
|
|
507
|
+
{
|
|
508
|
+
if (target == address(0)) {
|
|
509
|
+
revert IAccess.ErrorIAccessTargetDoesNotExist(target);
|
|
510
|
+
}
|
|
305
511
|
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
512
|
+
if (!roleExists(roleId)) {
|
|
513
|
+
revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
|
|
514
|
+
}
|
|
309
515
|
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
_accessManager.setTargetClosed(target, closed);
|
|
516
|
+
uint64 roleIdInt = RoleId.unwrap(roleId);
|
|
517
|
+
_accessManager.setTargetFunctionRole(target, selectors, roleIdInt);
|
|
313
518
|
}
|
|
314
519
|
|
|
315
520
|
function canCall(
|