@etherisc/gif-next 0.0.2-f619be3-760 → 0.0.2-f626d92-602
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 +324 -22
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +672 -35
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1329 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1064 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +830 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1180 -132
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +977 -156
- 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 +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1698 -810
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2413 -849
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1289 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1179 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.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 +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
- 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 +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1798 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +805 -0
- 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 +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +475 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1090 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +844 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +450 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1237 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +840 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +595 -27
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +652 -50
- 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 +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1158 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
- 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 +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -66
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -132
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
- 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 +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
- 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 +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +596 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- 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 +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +288 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- 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 +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- 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 +97 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/Component.sol +227 -51
- package/contracts/components/Distribution.sol +280 -0
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +71 -0
- package/contracts/components/IPoolComponent.sol +113 -0
- package/contracts/components/IProductComponent.sol +40 -0
- package/contracts/components/Pool.sol +281 -30
- package/contracts/components/Product.sol +252 -48
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +127 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +95 -22
- package/contracts/instance/IInstanceService.sol +72 -0
- package/contracts/instance/Instance.sol +306 -51
- package/contracts/instance/InstanceAccessManager.sol +527 -0
- package/contracts/instance/InstanceReader.sol +291 -0
- package/contracts/instance/InstanceService.sol +495 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +121 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +180 -0
- package/contracts/instance/base/Lifecycle.sol +109 -0
- package/contracts/instance/module/IAccess.sol +54 -0
- package/contracts/instance/module/IBundle.sol +23 -0
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +72 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +33 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +431 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +435 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +93 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +99 -0
- package/contracts/instance/service/IPolicyService.sol +72 -0
- package/contracts/instance/service/IPoolService.sol +99 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +362 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +303 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +210 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +137 -62
- package/contracts/registry/IRegistry.sol +75 -41
- package/contracts/registry/IRegistryService.sol +68 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +413 -128
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +282 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/NftOwnable.sol +120 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +169 -0
- package/contracts/shared/Registerable.sol +74 -0
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +72 -0
- package/contracts/shared/TokenHandler.sol +33 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +25 -0
- package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/{mock → test}/Usdc.sol +1 -1
- package/contracts/types/AddressSet.sol +58 -0
- 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 +55 -0
- package/contracts/types/Fee.sol +52 -20
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +30 -1
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +65 -15
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +97 -0
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +19 -4
- package/contracts/types/Timestamp.sol +31 -6
- package/contracts/types/UFixed.sol +139 -23
- package/contracts/types/Version.sol +108 -0
- package/package.json +11 -5
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/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/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
- package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/mock/TestPool.sol +0 -16
- package/contracts/mock/TestProduct.sol +0 -39
- package/contracts/registry/IChainNft.sol +0 -21
| @@ -0,0 +1,527 @@ | |
| 1 | 
            +
            // SPDX-License-Identifier: Apache-2.0
         | 
| 2 | 
            +
            pragma solidity ^0.8.20;
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
         | 
| 5 | 
            +
            import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
         | 
| 6 | 
            +
            import {ShortString, ShortStrings} from "@openzeppelin/contracts/utils/ShortStrings.sol";
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            import {RoleId, RoleIdLib, ADMIN_ROLE, PUBLIC_ROLE, INSTANCE_SERVICE_ROLE, INSTANCE_OWNER_ROLE, INSTANCE_ROLE} from "../types/RoleId.sol";
         | 
| 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";
         | 
| 17 | 
            +
            import {IAccess} from "./module/IAccess.sol";
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            contract InstanceAccessManager is
         | 
| 20 | 
            +
                AccessManagedUpgradeable
         | 
| 21 | 
            +
            {
         | 
| 22 | 
            +
                event LogRoleCreation(RoleId roleId, ShortString name, IAccess.Type rtype);
         | 
| 23 | 
            +
                event LogTargetCreation(address target, ShortString name, IAccess.Type ttype, bool isLocked);
         | 
| 24 | 
            +
             | 
| 25 | 
            +
                using RoleIdLib for RoleId;
         | 
| 26 | 
            +
             | 
| 27 | 
            +
                string public constant ADMIN_ROLE_NAME = "AdminRole";
         | 
| 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";
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                uint64 public constant CUSTOM_ROLE_ID_MIN = 10000; // MUST be even
         | 
| 33 | 
            +
                uint32 public constant EXECUTION_DELAY = 0;
         | 
| 34 | 
            +
             | 
| 35 | 
            +
                // role specific state
         | 
| 36 | 
            +
                mapping(RoleId roleId => IAccess.RoleInfo info) internal _roleInfo;
         | 
| 37 | 
            +
                mapping(RoleId roleId => EnumerableSet.AddressSet roleMembers) internal _roleMembers; 
         | 
| 38 | 
            +
                mapping(ShortString name => RoleId roleId) internal _roleIdForName;
         | 
| 39 | 
            +
                RoleId [] internal _roleIds;
         | 
| 40 | 
            +
                uint64 _idNext;
         | 
| 41 | 
            +
             | 
| 42 | 
            +
                // target specific state
         | 
| 43 | 
            +
                mapping(address target => IAccess.TargetInfo info) internal _targetInfo;
         | 
| 44 | 
            +
                mapping(ShortString name => address target) internal _targetAddressForName;
         | 
| 45 | 
            +
                address [] internal _targets;
         | 
| 46 | 
            +
             | 
| 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 | 
            +
                }
         | 
| 59 | 
            +
             | 
| 60 | 
            +
                // instance owner is granted upon instance nft minting in callback function
         | 
| 61 | 
            +
                function initialize(address instanceAddress) external initializer 
         | 
| 62 | 
            +
                {
         | 
| 63 | 
            +
                    IInstance instance = IInstance(instanceAddress);
         | 
| 64 | 
            +
                    IRegistry registry = instance.getRegistry();
         | 
| 65 | 
            +
                    address authority = instance.authority();
         | 
| 66 | 
            +
             | 
| 67 | 
            +
                    __AccessManaged_init(authority);
         | 
| 68 | 
            +
             | 
| 69 | 
            +
                    _accessManager = AccessManagerUpgradeableInitializeable(authority);
         | 
| 70 | 
            +
                    _registry = registry;
         | 
| 71 | 
            +
                    _idNext = CUSTOM_ROLE_ID_MIN;
         | 
| 72 | 
            +
             | 
| 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);
         | 
| 77 | 
            +
             | 
| 78 | 
            +
                    // assume `this` is already a member of ADMIN_ROLE
         | 
| 79 | 
            +
                    EnumerableSet.add(_roleMembers[ADMIN_ROLE()], address(this));
         | 
| 80 | 
            +
             | 
| 81 | 
            +
                    grantRole(INSTANCE_ROLE(), instanceAddress);
         | 
| 82 | 
            +
                    setRoleAdmin(INSTANCE_OWNER_ROLE(), INSTANCE_ROLE());
         | 
| 83 | 
            +
                }
         | 
| 84 | 
            +
             | 
| 85 | 
            +
                //--- Role ------------------------------------------------------//
         | 
| 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);
         | 
| 95 | 
            +
                }
         | 
| 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);
         | 
| 105 | 
            +
                }
         | 
| 106 | 
            +
             | 
| 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();
         | 
| 114 | 
            +
             | 
| 115 | 
            +
                    _createRole(roleId, roleName, IAccess.Type.Custom);
         | 
| 116 | 
            +
                    _createRole(admin, adminName, IAccess.Type.Custom);
         | 
| 117 | 
            +
             | 
| 118 | 
            +
                    // TODO works without this -> why?
         | 
| 119 | 
            +
                    setRoleAdmin(roleId, admin);
         | 
| 120 | 
            +
                    setRoleAdmin(admin, INSTANCE_OWNER_ROLE());
         | 
| 121 | 
            +
                }
         | 
| 122 | 
            +
             | 
| 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 | 
            +
                {
         | 
| 130 | 
            +
                    if (!roleExists(roleId)) {
         | 
| 131 | 
            +
                        revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
         | 
| 132 | 
            +
                    }
         | 
| 133 | 
            +
             | 
| 134 | 
            +
                    if(_roleInfo[roleId].rtype == IAccess.Type.Core) {
         | 
| 135 | 
            +
                        revert IAccess.ErrorIAccessRoleTypeInvalid(roleId, IAccess.Type.Core);
         | 
| 136 | 
            +
                    }
         | 
| 137 | 
            +
             | 
| 138 | 
            +
                    if (!roleExists(admin)) {
         | 
| 139 | 
            +
                        revert IAccess.ErrorIAccessRoleIdDoesNotExist(admin);
         | 
| 140 | 
            +
                    }        
         | 
| 141 | 
            +
             | 
| 142 | 
            +
                    _roleInfo[roleId].admin = admin;      
         | 
| 143 | 
            +
                }
         | 
| 144 | 
            +
             | 
| 145 | 
            +
                function grantRole(RoleId roleId, address member) 
         | 
| 146 | 
            +
                    public
         | 
| 147 | 
            +
                    restrictedToRoleAdmin(roleId) 
         | 
| 148 | 
            +
                    returns (bool granted) 
         | 
| 149 | 
            +
                {
         | 
| 150 | 
            +
                    if (!roleExists(roleId)) {
         | 
| 151 | 
            +
                        revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
         | 
| 152 | 
            +
                    }
         | 
| 153 | 
            +
             | 
| 154 | 
            +
                    granted = EnumerableSet.add(_roleMembers[roleId], member);
         | 
| 155 | 
            +
                    if(granted) {
         | 
| 156 | 
            +
                        _accessManager.grantRole(roleId.toInt(), member, EXECUTION_DELAY);
         | 
| 157 | 
            +
                    }    
         | 
| 158 | 
            +
                }
         | 
| 159 | 
            +
             | 
| 160 | 
            +
                function revokeRole(RoleId roleId, address member)
         | 
| 161 | 
            +
                    external 
         | 
| 162 | 
            +
                    restrictedToRoleAdmin(roleId) 
         | 
| 163 | 
            +
                    returns (bool) 
         | 
| 164 | 
            +
                {
         | 
| 165 | 
            +
                    return _revokeRole(roleId, member);
         | 
| 166 | 
            +
                }
         | 
| 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 | 
            +
                {
         | 
| 180 | 
            +
                    if (!roleExists(roleId)) {
         | 
| 181 | 
            +
                        revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
         | 
| 182 | 
            +
                    }
         | 
| 183 | 
            +
             | 
| 184 | 
            +
                    uint memberCount = EnumerableSet.length(_roleMembers[roleId]);
         | 
| 185 | 
            +
                    for(uint memberIdx = 0; memberIdx < memberCount; memberIdx++)
         | 
| 186 | 
            +
                    {
         | 
| 187 | 
            +
                        address member = EnumerableSet.at(_roleMembers[roleId], memberIdx);
         | 
| 188 | 
            +
                        EnumerableSet.remove(_roleMembers[roleId], member);
         | 
| 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);
         | 
| 202 | 
            +
                    }
         | 
| 203 | 
            +
             | 
| 204 | 
            +
                    address member = msg.sender;
         | 
| 205 | 
            +
                    // cannot use accessManger.renounce as it directly checks against msg.sender
         | 
| 206 | 
            +
                    return _revokeRole(roleId, member);
         | 
| 207 | 
            +
                }
         | 
| 208 | 
            +
             | 
| 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]);
         | 
| 223 | 
            +
                }
         | 
| 224 | 
            +
             | 
| 225 | 
            +
                function getRoleId(uint256 idx) external view returns (RoleId roleId) {
         | 
| 226 | 
            +
                    return _roleIds[idx];
         | 
| 227 | 
            +
                }
         | 
| 228 | 
            +
             | 
| 229 | 
            +
                // TODO now: for non existent name returns ADMIN_ROLE id
         | 
| 230 | 
            +
                function getRoleIdForName(string memory name) external view returns (RoleId roleId) {
         | 
| 231 | 
            +
                    return _roleIdForName[ShortStrings.toShortString(name)];
         | 
| 232 | 
            +
                }
         | 
| 233 | 
            +
             | 
| 234 | 
            +
                function roleMember(RoleId roleId, uint256 idx) external view returns (address member) {
         | 
| 235 | 
            +
                    return EnumerableSet.at(_roleMembers[roleId], idx);
         | 
| 236 | 
            +
                }
         | 
| 237 | 
            +
             | 
| 238 | 
            +
                function hasRole(RoleId roleId, address account) external view returns (bool accountHasRole) {
         | 
| 239 | 
            +
                    (accountHasRole, ) = _accessManager.hasRole(roleId.toInt(), account);
         | 
| 240 | 
            +
                }
         | 
| 241 | 
            +
             | 
| 242 | 
            +
                function roles() external view returns (uint256 numberOfRoles) {
         | 
| 243 | 
            +
                    return _roleIds.length;
         | 
| 244 | 
            +
                }
         | 
| 245 | 
            +
             | 
| 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);
         | 
| 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 | 
            +
                    }
         | 
| 259 | 
            +
             | 
| 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);
         | 
| 270 | 
            +
                }
         | 
| 271 | 
            +
             | 
| 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);
         | 
| 285 | 
            +
                    }
         | 
| 286 | 
            +
             | 
| 287 | 
            +
                    // TODO isLocked is redundant but makes getTargetInfo() faster
         | 
| 288 | 
            +
                    _targetInfo[target].isLocked = locked;
         | 
| 289 | 
            +
                    _accessManager.setTargetClosed(target, locked);
         | 
| 290 | 
            +
                }
         | 
| 291 | 
            +
             | 
| 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);
         | 
| 326 | 
            +
                }
         | 
| 327 | 
            +
             | 
| 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];
         | 
| 345 | 
            +
             | 
| 346 | 
            +
                    // not core target
         | 
| 347 | 
            +
                    if(_targetInfo[target].ttype == IAccess.Type.Core) {
         | 
| 348 | 
            +
                        revert IAccess.ErrorIAccessTargetTypeInvalid(target, IAccess.Type.Core);
         | 
| 349 | 
            +
                    }
         | 
| 350 | 
            +
             | 
| 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 | 
            +
                }
         | 
| 371 | 
            +
             | 
| 372 | 
            +
                function getTargetInfo(address target) public view returns (IAccess.TargetInfo memory) {
         | 
| 373 | 
            +
                    return _targetInfo[target];
         | 
| 374 | 
            +
                }
         | 
| 375 | 
            +
             | 
| 376 | 
            +
                //--- Role internal view/pure functions --------------------------------------//
         | 
| 377 | 
            +
                function _createRole(RoleId roleId, string memory roleName, IAccess.Type rtype) 
         | 
| 378 | 
            +
                    internal
         | 
| 379 | 
            +
                {
         | 
| 380 | 
            +
                    ShortString name = ShortStrings.toShortString(roleName);
         | 
| 381 | 
            +
                    _validateRole(roleId, name, rtype);
         | 
| 382 | 
            +
             | 
| 383 | 
            +
                    if(roleExists(roleId)) {
         | 
| 384 | 
            +
                        revert IAccess.ErrorIAccessRoleIdExists(roleId);
         | 
| 385 | 
            +
                    }
         | 
| 386 | 
            +
             | 
| 387 | 
            +
                    if (_roleIdForName[name].gtz()) {
         | 
| 388 | 
            +
                        revert IAccess.ErrorIAccessRoleNameExists(roleId, _roleIdForName[name], name);
         | 
| 389 | 
            +
                    }
         | 
| 390 | 
            +
             | 
| 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);
         | 
| 411 | 
            +
                    }
         | 
| 412 | 
            +
             | 
| 413 | 
            +
                    if(
         | 
| 414 | 
            +
                        rtype != IAccess.Type.Custom && 
         | 
| 415 | 
            +
                        roleIdInt >= CUSTOM_ROLE_ID_MIN && 
         | 
| 416 | 
            +
                        roleIdInt != PUBLIC_ROLE().toInt()) 
         | 
| 417 | 
            +
                    {
         | 
| 418 | 
            +
                        revert IAccess.ErrorIAccessRoleIdTooBig(roleId);
         | 
| 419 | 
            +
                    }
         | 
| 420 | 
            +
             | 
| 421 | 
            +
                    // role name checks
         | 
| 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);
         | 
| 433 | 
            +
                    }
         | 
| 434 | 
            +
             | 
| 435 | 
            +
                    revoked = EnumerableSet.remove(_roleMembers[roleId], member);
         | 
| 436 | 
            +
                    if(revoked) {
         | 
| 437 | 
            +
                        _accessManager.revokeRole(roleId.toInt(), member);
         | 
| 438 | 
            +
                    }
         | 
| 439 | 
            +
                }
         | 
| 440 | 
            +
             | 
| 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);
         | 
| 463 | 
            +
                    }
         | 
| 464 | 
            +
             | 
| 465 | 
            +
                    if (_targetAddressForName[name] != address(0)) {
         | 
| 466 | 
            +
                        revert IAccess.ErrorIAccessTargetNameExists(
         | 
| 467 | 
            +
                            target, 
         | 
| 468 | 
            +
                            _targetAddressForName[name], 
         | 
| 469 | 
            +
                            name);
         | 
| 470 | 
            +
                    }
         | 
| 471 | 
            +
             | 
| 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;
         | 
| 481 | 
            +
                    _targets.push(target);
         | 
| 482 | 
            +
             | 
| 483 | 
            +
                    emit LogTargetCreation(target, name, ttype, isLocked); 
         | 
| 484 | 
            +
                }
         | 
| 485 | 
            +
             | 
| 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 | 
            +
                    }
         | 
| 498 | 
            +
                }
         | 
| 499 | 
            +
             | 
| 500 | 
            +
                function _setTargetFunctionRole(
         | 
| 501 | 
            +
                    address target,
         | 
| 502 | 
            +
                    ShortString name,
         | 
| 503 | 
            +
                    bytes4[] calldata selectors,
         | 
| 504 | 
            +
                    RoleId roleId
         | 
| 505 | 
            +
                ) 
         | 
| 506 | 
            +
                    internal
         | 
| 507 | 
            +
                {
         | 
| 508 | 
            +
                    if (target == address(0)) {
         | 
| 509 | 
            +
                        revert IAccess.ErrorIAccessTargetDoesNotExist(target);
         | 
| 510 | 
            +
                    }
         | 
| 511 | 
            +
             | 
| 512 | 
            +
                    if (!roleExists(roleId)) {
         | 
| 513 | 
            +
                        revert IAccess.ErrorIAccessRoleIdDoesNotExist(roleId);
         | 
| 514 | 
            +
                    }
         | 
| 515 | 
            +
             | 
| 516 | 
            +
                    uint64 roleIdInt = RoleId.unwrap(roleId);
         | 
| 517 | 
            +
                    _accessManager.setTargetFunctionRole(target, selectors, roleIdInt);
         | 
| 518 | 
            +
                }
         | 
| 519 | 
            +
             | 
| 520 | 
            +
                function canCall(
         | 
| 521 | 
            +
                    address caller,
         | 
| 522 | 
            +
                    address target,
         | 
| 523 | 
            +
                    bytes4 selector
         | 
| 524 | 
            +
                ) public view virtual returns (bool immediate, uint32 delay) {
         | 
| 525 | 
            +
                    return _accessManager.canCall(caller, target, selector);
         | 
| 526 | 
            +
                }
         | 
| 527 | 
            +
            }
         |