@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-e802d97-713
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +338 -19
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1349 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -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/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +331 -1138
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +463 -1216
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1701 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1053 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3642 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -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/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/{instance/treasury/ITreasury.sol/ITreasury.json → oracle/IOracle.sol/IOracle.json} +2 -2
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +718 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1105 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +746 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1432 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +738 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +834 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1278 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +810 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +499 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +387 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1146 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +754 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +983 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +778 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +679 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +694 -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 +744 -26
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -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 +1026 -52
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +407 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1415 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +709 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1292 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +137 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1715 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1728 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1806 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1824 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1490 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +792 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -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/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +468 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/lifecycle/ILifecycle.sol/ILifecycleModule.json → shared/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +42 -77
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- 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 -134
- 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/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +571 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -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} +260 -218
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -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/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2045 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +777 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1324 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +726 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2189 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +105 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/distribution/Distribution.sol +261 -0
- package/contracts/distribution/DistributionService.sol +298 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +66 -0
- package/contracts/distribution/IDistributionService.sol +81 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +79 -22
- package/contracts/instance/IInstanceService.sol +81 -0
- package/contracts/instance/Instance.sol +217 -53
- package/contracts/instance/InstanceAdmin.sol +331 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
- package/contracts/instance/InstanceReader.sol +390 -0
- package/contracts/instance/InstanceService.sol +362 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +281 -0
- package/contracts/instance/base/BalanceStore.sol +118 -0
- package/contracts/instance/base/Cloneable.sol +51 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectManager.sol +82 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/mock/Dip.sol +26 -0
- package/contracts/oracle/IOracle.sol +20 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +145 -0
- package/contracts/oracle/OracleService.sol +277 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +112 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +299 -0
- package/contracts/pool/PoolService.sol +453 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +42 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +301 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +377 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +144 -62
- package/contracts/registry/IRegistry.sol +99 -42
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +521 -127
- package/contracts/registry/RegistryAdmin.sol +237 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +58 -0
- package/contracts/registry/ReleaseManager.sol +600 -0
- package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/AccessManagerCustom.sol +736 -0
- package/contracts/shared/AccessManagerExtended.sol +470 -0
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +618 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/IAccessManagerExtended.sol +74 -0
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/shared/IKeyValueStore.sol +53 -0
- package/contracts/shared/ILifecycle.sol +30 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +144 -0
- package/contracts/shared/KeyValueStore.sol +127 -0
- package/contracts/shared/Lifecycle.sol +130 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +199 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +77 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +149 -0
- package/contracts/staking/StakeManagerLib.sol +179 -0
- package/contracts/staking/Staking.sol +551 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +406 -0
- package/contracts/staking/StakingServiceManager.sol +45 -0
- package/contracts/staking/StakingStore.sol +572 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/NftId.sol +78 -0
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/{types → type}/ObjectType.sol +81 -20
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +146 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/{types → type}/StateId.sol +50 -6
- package/contracts/{types → type}/Timestamp.sol +41 -7
- package/contracts/type/UFixed.sol +326 -0
- package/contracts/type/Version.sol +108 -0
- package/package.json +14 -7
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -205
- 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/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -346
- 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/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- 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/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/IProductService.sol/IProductService.json +0 -127
- 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/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/IRegistry.sol/IRegistryLinked.json +0 -49
- 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/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/components/Pool.sol +0 -52
- package/contracts/components/Product.sol +0 -89
- 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/registry/IChainNft.sol +0 -21
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -32
- package/contracts/types/NftId.sol +0 -51
- package/contracts/types/UFixed.sol +0 -210
@@ -0,0 +1,736 @@
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {IAccessManager} from "@openzeppelin/contracts/access/manager/IAccessManager.sol";
|
5
|
+
import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
|
6
|
+
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
|
7
|
+
import {ContextUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
|
8
|
+
import {MulticallUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol";
|
9
|
+
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
|
10
|
+
import {Time} from "@openzeppelin/contracts/utils/types/Time.sol";
|
11
|
+
import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
|
12
|
+
|
13
|
+
/*
|
14
|
+
* copy of @openzeppelin/contract-upgradeable/access/manager/AccessManagerUpgradeable.sol" except:
|
15
|
+
1. abstract
|
16
|
+
2. renamed to AccessManagerCustom
|
17
|
+
2. _getAdminRestrictions() private view -> internal virtual view
|
18
|
+
3. _checkSelector() private pure -> internal pure
|
19
|
+
*/
|
20
|
+
abstract contract AccessManagerCustom is Initializable, ContextUpgradeable, MulticallUpgradeable, IAccessManager {
|
21
|
+
using Time for *;
|
22
|
+
|
23
|
+
// Structure that stores the details for a target contract.
|
24
|
+
struct TargetConfig {
|
25
|
+
mapping(bytes4 selector => uint64 roleId) allowedRoles;
|
26
|
+
Time.Delay adminDelay;
|
27
|
+
bool closed;
|
28
|
+
}
|
29
|
+
|
30
|
+
// Structure that stores the details for a role/account pair. This structures fit into a single slot.
|
31
|
+
struct Access {
|
32
|
+
// Timepoint at which the user gets the permission.
|
33
|
+
// If this is either 0 or in the future, then the role permission is not available.
|
34
|
+
uint48 since;
|
35
|
+
// Delay for execution. Only applies to restricted() / execute() calls.
|
36
|
+
Time.Delay delay;
|
37
|
+
}
|
38
|
+
|
39
|
+
// Structure that stores the details of a role.
|
40
|
+
struct Role {
|
41
|
+
// Members of the role.
|
42
|
+
mapping(address user => Access access) members;
|
43
|
+
// Admin who can grant or revoke permissions.
|
44
|
+
uint64 admin;
|
45
|
+
// Guardian who can cancel operations targeting functions that need this role.
|
46
|
+
uint64 guardian;
|
47
|
+
// Delay in which the role takes effect after being granted.
|
48
|
+
Time.Delay grantDelay;
|
49
|
+
}
|
50
|
+
|
51
|
+
// Structure that stores the details for a scheduled operation. This structure fits into a single slot.
|
52
|
+
struct Schedule {
|
53
|
+
// Moment at which the operation can be executed.
|
54
|
+
uint48 timepoint;
|
55
|
+
// Operation nonce to allow third-party contracts to identify the operation.
|
56
|
+
uint32 nonce;
|
57
|
+
}
|
58
|
+
|
59
|
+
uint64 public constant ADMIN_ROLE = type(uint64).min; // 0
|
60
|
+
uint64 public constant PUBLIC_ROLE = type(uint64).max; // 2**64-1
|
61
|
+
|
62
|
+
/// @custom:storage-location erc7201:openzeppelin.storage.AccessManagerCustom
|
63
|
+
struct AccessManagerStorage {
|
64
|
+
mapping(address target => TargetConfig mode) _targets;
|
65
|
+
mapping(uint64 roleId => Role) _roles;
|
66
|
+
mapping(bytes32 operationId => Schedule) _schedules;
|
67
|
+
|
68
|
+
// Used to identify operations that are currently being executed via {execute}.
|
69
|
+
// This should be transient storage when supported by the EVM.
|
70
|
+
bytes32 _executionId;
|
71
|
+
}
|
72
|
+
|
73
|
+
// TODO compute address
|
74
|
+
// keccak256(abi.encode(uint256(keccak256("etherisc.storage.AccessManagerCustom")) - 1)) & ~bytes32(uint256(0xff))
|
75
|
+
bytes32 private constant AccessManagerCustomStorageLocation = 0x77301bc69e8248c80abb894217605b71fa89ea6a9e8bdf359d9e8aa1dd62bf00;
|
76
|
+
|
77
|
+
function _getAccessManagerCustomStorage() private pure returns (AccessManagerStorage storage $) {
|
78
|
+
assembly {
|
79
|
+
$.slot := AccessManagerCustomStorageLocation
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
/**
|
84
|
+
* @dev Check that the caller is authorized to perform the operation, following the restrictions encoded in
|
85
|
+
* {_getAdminRestrictions}.
|
86
|
+
*/
|
87
|
+
modifier onlyAuthorized() {
|
88
|
+
_checkAuthorized();
|
89
|
+
_;
|
90
|
+
}
|
91
|
+
|
92
|
+
function __AccessManagerCustom_init(address initialAdmin) internal onlyInitializing {
|
93
|
+
__AccessManagerCustom_init_unchained(initialAdmin);
|
94
|
+
}
|
95
|
+
|
96
|
+
function __AccessManagerCustom_init_unchained(address initialAdmin) internal onlyInitializing {
|
97
|
+
if (initialAdmin == address(0)) {
|
98
|
+
revert AccessManagerInvalidInitialAdmin(address(0));
|
99
|
+
}
|
100
|
+
|
101
|
+
// admin is active immediately and without any execution delay.
|
102
|
+
_grantRole(ADMIN_ROLE, initialAdmin, 0, 0);
|
103
|
+
}
|
104
|
+
|
105
|
+
// =================================================== GETTERS ====================================================
|
106
|
+
/// @inheritdoc IAccessManager
|
107
|
+
function canCall(
|
108
|
+
address caller,
|
109
|
+
address target,
|
110
|
+
bytes4 selector
|
111
|
+
) public view virtual returns (bool immediate, uint32 delay) {
|
112
|
+
if (isTargetClosed(target)) {
|
113
|
+
return (false, 0);
|
114
|
+
} else if (caller == address(this)) {
|
115
|
+
// Caller is AccessManager, this means the call was sent through {execute} and it already checked
|
116
|
+
// permissions. We verify that the call "identifier", which is set during {execute}, is correct.
|
117
|
+
return (_isExecuting(target, selector), 0);
|
118
|
+
} else {
|
119
|
+
uint64 roleId = getTargetFunctionRole(target, selector);
|
120
|
+
(bool isMember, uint32 currentDelay) = hasRole(roleId, caller);
|
121
|
+
return isMember ? (currentDelay == 0, currentDelay) : (false, 0);
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
/// @inheritdoc IAccessManager
|
126
|
+
function expiration() public view virtual returns (uint32) {
|
127
|
+
return 1 weeks;
|
128
|
+
}
|
129
|
+
|
130
|
+
/// @inheritdoc IAccessManager
|
131
|
+
function minSetback() public view virtual returns (uint32) {
|
132
|
+
return 5 days;
|
133
|
+
}
|
134
|
+
|
135
|
+
/// @inheritdoc IAccessManager
|
136
|
+
function isTargetClosed(address target) public view virtual returns (bool) {
|
137
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
138
|
+
return $._targets[target].closed;
|
139
|
+
}
|
140
|
+
|
141
|
+
/// @inheritdoc IAccessManager
|
142
|
+
function getTargetFunctionRole(address target, bytes4 selector) public view virtual returns (uint64) {
|
143
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
144
|
+
return $._targets[target].allowedRoles[selector];
|
145
|
+
}
|
146
|
+
|
147
|
+
/// @inheritdoc IAccessManager
|
148
|
+
function getTargetAdminDelay(address target) public view virtual returns (uint32) {
|
149
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
150
|
+
return $._targets[target].adminDelay.get();
|
151
|
+
}
|
152
|
+
|
153
|
+
/// @inheritdoc IAccessManager
|
154
|
+
function getRoleAdmin(uint64 roleId) public view virtual returns (uint64) {
|
155
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
156
|
+
return $._roles[roleId].admin;
|
157
|
+
}
|
158
|
+
|
159
|
+
/// @inheritdoc IAccessManager
|
160
|
+
function getRoleGuardian(uint64 roleId) public view virtual returns (uint64) {
|
161
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
162
|
+
return $._roles[roleId].guardian;
|
163
|
+
}
|
164
|
+
|
165
|
+
/// @inheritdoc IAccessManager
|
166
|
+
function getRoleGrantDelay(uint64 roleId) public view virtual returns (uint32) {
|
167
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
168
|
+
return $._roles[roleId].grantDelay.get();
|
169
|
+
}
|
170
|
+
|
171
|
+
/// @inheritdoc IAccessManager
|
172
|
+
function getAccess(
|
173
|
+
uint64 roleId,
|
174
|
+
address account
|
175
|
+
) public view virtual returns (uint48 since, uint32 currentDelay, uint32 pendingDelay, uint48 effect) {
|
176
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
177
|
+
Access storage access = $._roles[roleId].members[account];
|
178
|
+
|
179
|
+
since = access.since;
|
180
|
+
(currentDelay, pendingDelay, effect) = access.delay.getFull();
|
181
|
+
|
182
|
+
return (since, currentDelay, pendingDelay, effect);
|
183
|
+
}
|
184
|
+
|
185
|
+
/// @inheritdoc IAccessManager
|
186
|
+
function hasRole(
|
187
|
+
uint64 roleId,
|
188
|
+
address account
|
189
|
+
) public view virtual returns (bool isMember, uint32 executionDelay) {
|
190
|
+
if (roleId == PUBLIC_ROLE) {
|
191
|
+
return (true, 0);
|
192
|
+
} else {
|
193
|
+
(uint48 hasRoleSince, uint32 currentDelay, , ) = getAccess(roleId, account);
|
194
|
+
return (hasRoleSince != 0 && hasRoleSince <= Time.timestamp(), currentDelay);
|
195
|
+
}
|
196
|
+
}
|
197
|
+
|
198
|
+
// =============================================== ROLE MANAGEMENT ===============================================
|
199
|
+
/// @inheritdoc IAccessManager
|
200
|
+
function labelRole(uint64 roleId, string calldata label) public virtual onlyAuthorized {
|
201
|
+
if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {
|
202
|
+
revert AccessManagerLockedRole(roleId);
|
203
|
+
}
|
204
|
+
emit RoleLabel(roleId, label);
|
205
|
+
}
|
206
|
+
|
207
|
+
/// @inheritdoc IAccessManager
|
208
|
+
function grantRole(uint64 roleId, address account, uint32 executionDelay) public virtual onlyAuthorized {
|
209
|
+
_grantRole(roleId, account, getRoleGrantDelay(roleId), executionDelay);
|
210
|
+
}
|
211
|
+
|
212
|
+
/// @inheritdoc IAccessManager
|
213
|
+
function revokeRole(uint64 roleId, address account) public virtual onlyAuthorized {
|
214
|
+
_revokeRole(roleId, account);
|
215
|
+
}
|
216
|
+
|
217
|
+
/// @inheritdoc IAccessManager
|
218
|
+
function renounceRole(uint64 roleId, address callerConfirmation) public virtual {
|
219
|
+
if (callerConfirmation != _msgSender()) {
|
220
|
+
revert AccessManagerBadConfirmation();
|
221
|
+
}
|
222
|
+
_revokeRole(roleId, callerConfirmation);
|
223
|
+
}
|
224
|
+
|
225
|
+
/// @inheritdoc IAccessManager
|
226
|
+
function setRoleAdmin(uint64 roleId, uint64 admin) public virtual onlyAuthorized {
|
227
|
+
_setRoleAdmin(roleId, admin);
|
228
|
+
}
|
229
|
+
|
230
|
+
/// @inheritdoc IAccessManager
|
231
|
+
function setRoleGuardian(uint64 roleId, uint64 guardian) public virtual onlyAuthorized {
|
232
|
+
_setRoleGuardian(roleId, guardian);
|
233
|
+
}
|
234
|
+
|
235
|
+
/// @inheritdoc IAccessManager
|
236
|
+
function setGrantDelay(uint64 roleId, uint32 newDelay) public virtual onlyAuthorized {
|
237
|
+
_setGrantDelay(roleId, newDelay);
|
238
|
+
}
|
239
|
+
|
240
|
+
/**
|
241
|
+
* @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.
|
242
|
+
*
|
243
|
+
* Emits a {RoleGranted} event.
|
244
|
+
*/
|
245
|
+
function _grantRole(
|
246
|
+
uint64 roleId,
|
247
|
+
address account,
|
248
|
+
uint32 grantDelay,
|
249
|
+
uint32 executionDelay
|
250
|
+
) internal virtual returns (bool) {
|
251
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
252
|
+
if (roleId == PUBLIC_ROLE) {
|
253
|
+
revert AccessManagerLockedRole(roleId);
|
254
|
+
}
|
255
|
+
|
256
|
+
bool newMember = $._roles[roleId].members[account].since == 0;
|
257
|
+
uint48 since;
|
258
|
+
|
259
|
+
if (newMember) {
|
260
|
+
since = Time.timestamp() + grantDelay;
|
261
|
+
$._roles[roleId].members[account] = Access({since: since, delay: executionDelay.toDelay()});
|
262
|
+
} else {
|
263
|
+
// No setback here. Value can be reset by doing revoke + grant, effectively allowing the admin to perform
|
264
|
+
// any change to the execution delay within the duration of the role admin delay.
|
265
|
+
($._roles[roleId].members[account].delay, since) = $._roles[roleId].members[account].delay.withUpdate(
|
266
|
+
executionDelay,
|
267
|
+
0
|
268
|
+
);
|
269
|
+
}
|
270
|
+
|
271
|
+
emit RoleGranted(roleId, account, executionDelay, since, newMember);
|
272
|
+
return newMember;
|
273
|
+
}
|
274
|
+
|
275
|
+
/**
|
276
|
+
* @dev Internal version of {revokeRole} without access control. This logic is also used by {renounceRole}.
|
277
|
+
* Returns true if the role was previously granted.
|
278
|
+
*
|
279
|
+
* Emits a {RoleRevoked} event if the account had the role.
|
280
|
+
*/
|
281
|
+
function _revokeRole(uint64 roleId, address account) internal virtual returns (bool) {
|
282
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
283
|
+
if (roleId == PUBLIC_ROLE) {
|
284
|
+
revert AccessManagerLockedRole(roleId);
|
285
|
+
}
|
286
|
+
|
287
|
+
if ($._roles[roleId].members[account].since == 0) {
|
288
|
+
return false;
|
289
|
+
}
|
290
|
+
|
291
|
+
delete $._roles[roleId].members[account];
|
292
|
+
|
293
|
+
emit RoleRevoked(roleId, account);
|
294
|
+
return true;
|
295
|
+
}
|
296
|
+
|
297
|
+
/**
|
298
|
+
* @dev Internal version of {setRoleAdmin} without access control.
|
299
|
+
*
|
300
|
+
* Emits a {RoleAdminChanged} event.
|
301
|
+
*
|
302
|
+
* NOTE: Setting the admin role as the `PUBLIC_ROLE` is allowed, but it will effectively allow
|
303
|
+
* anyone to set grant or revoke such role.
|
304
|
+
*/
|
305
|
+
function _setRoleAdmin(uint64 roleId, uint64 admin) internal virtual {
|
306
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
307
|
+
if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {
|
308
|
+
revert AccessManagerLockedRole(roleId);
|
309
|
+
}
|
310
|
+
|
311
|
+
$._roles[roleId].admin = admin;
|
312
|
+
|
313
|
+
emit RoleAdminChanged(roleId, admin);
|
314
|
+
}
|
315
|
+
|
316
|
+
/**
|
317
|
+
* @dev Internal version of {setRoleGuardian} without access control.
|
318
|
+
*
|
319
|
+
* Emits a {RoleGuardianChanged} event.
|
320
|
+
*
|
321
|
+
* NOTE: Setting the guardian role as the `PUBLIC_ROLE` is allowed, but it will effectively allow
|
322
|
+
* anyone to cancel any scheduled operation for such role.
|
323
|
+
*/
|
324
|
+
function _setRoleGuardian(uint64 roleId, uint64 guardian) internal virtual {
|
325
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
326
|
+
if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {
|
327
|
+
revert AccessManagerLockedRole(roleId);
|
328
|
+
}
|
329
|
+
|
330
|
+
$._roles[roleId].guardian = guardian;
|
331
|
+
|
332
|
+
emit RoleGuardianChanged(roleId, guardian);
|
333
|
+
}
|
334
|
+
|
335
|
+
/**
|
336
|
+
* @dev Internal version of {setGrantDelay} without access control.
|
337
|
+
*
|
338
|
+
* Emits a {RoleGrantDelayChanged} event.
|
339
|
+
*/
|
340
|
+
function _setGrantDelay(uint64 roleId, uint32 newDelay) internal virtual {
|
341
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
342
|
+
if (roleId == PUBLIC_ROLE) {
|
343
|
+
revert AccessManagerLockedRole(roleId);
|
344
|
+
}
|
345
|
+
|
346
|
+
uint48 effect;
|
347
|
+
($._roles[roleId].grantDelay, effect) = $._roles[roleId].grantDelay.withUpdate(newDelay, minSetback());
|
348
|
+
|
349
|
+
emit RoleGrantDelayChanged(roleId, newDelay, effect);
|
350
|
+
}
|
351
|
+
|
352
|
+
// ============================================= FUNCTION MANAGEMENT ==============================================
|
353
|
+
/// @inheritdoc IAccessManager
|
354
|
+
function setTargetFunctionRole(
|
355
|
+
address target,
|
356
|
+
bytes4[] calldata selectors,
|
357
|
+
uint64 roleId
|
358
|
+
) public virtual onlyAuthorized {
|
359
|
+
for (uint256 i = 0; i < selectors.length; ++i) {
|
360
|
+
_setTargetFunctionRole(target, selectors[i], roleId);
|
361
|
+
}
|
362
|
+
}
|
363
|
+
|
364
|
+
/**
|
365
|
+
* @dev Internal version of {setTargetFunctionRole} without access control.
|
366
|
+
*
|
367
|
+
* Emits a {TargetFunctionRoleUpdated} event.
|
368
|
+
*/
|
369
|
+
function _setTargetFunctionRole(address target, bytes4 selector, uint64 roleId) internal virtual {
|
370
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
371
|
+
$._targets[target].allowedRoles[selector] = roleId;
|
372
|
+
emit TargetFunctionRoleUpdated(target, selector, roleId);
|
373
|
+
}
|
374
|
+
|
375
|
+
/// @inheritdoc IAccessManager
|
376
|
+
function setTargetAdminDelay(address target, uint32 newDelay) public virtual onlyAuthorized {
|
377
|
+
_setTargetAdminDelay(target, newDelay);
|
378
|
+
}
|
379
|
+
|
380
|
+
/**
|
381
|
+
* @dev Internal version of {setTargetAdminDelay} without access control.
|
382
|
+
*
|
383
|
+
* Emits a {TargetAdminDelayUpdated} event.
|
384
|
+
*/
|
385
|
+
function _setTargetAdminDelay(address target, uint32 newDelay) internal virtual {
|
386
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
387
|
+
uint48 effect;
|
388
|
+
($._targets[target].adminDelay, effect) = $._targets[target].adminDelay.withUpdate(newDelay, minSetback());
|
389
|
+
emit TargetAdminDelayUpdated(target, newDelay, effect);
|
390
|
+
}
|
391
|
+
|
392
|
+
// =============================================== MODE MANAGEMENT ================================================
|
393
|
+
/// @inheritdoc IAccessManager
|
394
|
+
function setTargetClosed(address target, bool closed) public virtual onlyAuthorized {
|
395
|
+
_setTargetClosed(target, closed);
|
396
|
+
}
|
397
|
+
|
398
|
+
/**
|
399
|
+
* @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.
|
400
|
+
*
|
401
|
+
* Emits a {TargetClosed} event.
|
402
|
+
*/
|
403
|
+
function _setTargetClosed(address target, bool closed) internal virtual {
|
404
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
405
|
+
if (target == address(this)) {
|
406
|
+
revert AccessManagerLockedAccount(target);
|
407
|
+
}
|
408
|
+
$._targets[target].closed = closed;
|
409
|
+
emit TargetClosed(target, closed);
|
410
|
+
}
|
411
|
+
|
412
|
+
// ============================================== DELAYED OPERATIONS ==============================================
|
413
|
+
/// @inheritdoc IAccessManager
|
414
|
+
function getSchedule(bytes32 id) public view virtual returns (uint48) {
|
415
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
416
|
+
uint48 timepoint = $._schedules[id].timepoint;
|
417
|
+
return _isExpired(timepoint) ? 0 : timepoint;
|
418
|
+
}
|
419
|
+
|
420
|
+
/// @inheritdoc IAccessManager
|
421
|
+
function getNonce(bytes32 id) public view virtual returns (uint32) {
|
422
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
423
|
+
return $._schedules[id].nonce;
|
424
|
+
}
|
425
|
+
|
426
|
+
/// @inheritdoc IAccessManager
|
427
|
+
function schedule(
|
428
|
+
address target,
|
429
|
+
bytes calldata data,
|
430
|
+
uint48 when
|
431
|
+
) public virtual returns (bytes32 operationId, uint32 nonce) {
|
432
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
433
|
+
address caller = _msgSender();
|
434
|
+
|
435
|
+
// Fetch restrictions that apply to the caller on the targeted function
|
436
|
+
(, uint32 setback) = _canCallExtended(caller, target, data);
|
437
|
+
|
438
|
+
uint48 minWhen = Time.timestamp() + setback;
|
439
|
+
|
440
|
+
// if call with delay is not authorized, or if requested timing is too soon
|
441
|
+
if (setback == 0 || (when > 0 && when < minWhen)) {
|
442
|
+
revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));
|
443
|
+
}
|
444
|
+
|
445
|
+
// Reuse variable due to stack too deep
|
446
|
+
when = uint48(Math.max(when, minWhen)); // cast is safe: both inputs are uint48
|
447
|
+
|
448
|
+
// If caller is authorised, schedule operation
|
449
|
+
operationId = hashOperation(caller, target, data);
|
450
|
+
|
451
|
+
_checkNotScheduled(operationId);
|
452
|
+
|
453
|
+
unchecked {
|
454
|
+
// It's not feasible to overflow the nonce in less than 1000 years
|
455
|
+
nonce = $._schedules[operationId].nonce + 1;
|
456
|
+
}
|
457
|
+
$._schedules[operationId].timepoint = when;
|
458
|
+
$._schedules[operationId].nonce = nonce;
|
459
|
+
emit OperationScheduled(operationId, nonce, when, caller, target, data);
|
460
|
+
|
461
|
+
// Using named return values because otherwise we get stack too deep
|
462
|
+
}
|
463
|
+
|
464
|
+
/**
|
465
|
+
* @dev Reverts if the operation is currently scheduled and has not expired.
|
466
|
+
* (Note: This function was introduced due to stack too deep errors in schedule.)
|
467
|
+
*/
|
468
|
+
function _checkNotScheduled(bytes32 operationId) private view {
|
469
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
470
|
+
uint48 prevTimepoint = $._schedules[operationId].timepoint;
|
471
|
+
if (prevTimepoint != 0 && !_isExpired(prevTimepoint)) {
|
472
|
+
revert AccessManagerAlreadyScheduled(operationId);
|
473
|
+
}
|
474
|
+
}
|
475
|
+
|
476
|
+
/// @inheritdoc IAccessManager
|
477
|
+
// Reentrancy is not an issue because permissions are checked on msg.sender. Additionally,
|
478
|
+
// _consumeScheduledOp guarantees a scheduled operation is only executed once.
|
479
|
+
// slither-disable-next-line reentrancy-no-eth
|
480
|
+
function execute(address target, bytes calldata data) public payable virtual returns (uint32) {
|
481
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
482
|
+
address caller = _msgSender();
|
483
|
+
|
484
|
+
// Fetch restrictions that apply to the caller on the targeted function
|
485
|
+
(bool immediate, uint32 setback) = _canCallExtended(caller, target, data);
|
486
|
+
|
487
|
+
// If caller is not authorised, revert
|
488
|
+
if (!immediate && setback == 0) {
|
489
|
+
revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));
|
490
|
+
}
|
491
|
+
|
492
|
+
bytes32 operationId = hashOperation(caller, target, data);
|
493
|
+
uint32 nonce;
|
494
|
+
|
495
|
+
// If caller is authorised, check operation was scheduled early enough
|
496
|
+
// Consume an available schedule even if there is no currently enforced delay
|
497
|
+
if (setback != 0 || getSchedule(operationId) != 0) {
|
498
|
+
nonce = _consumeScheduledOp(operationId);
|
499
|
+
}
|
500
|
+
|
501
|
+
// Mark the target and selector as authorised
|
502
|
+
bytes32 executionIdBefore = $._executionId;
|
503
|
+
$._executionId = _hashExecutionId(target, _checkSelector(data));
|
504
|
+
|
505
|
+
// Perform call
|
506
|
+
Address.functionCallWithValue(target, data, msg.value);
|
507
|
+
|
508
|
+
// Reset execute identifier
|
509
|
+
$._executionId = executionIdBefore;
|
510
|
+
|
511
|
+
return nonce;
|
512
|
+
}
|
513
|
+
|
514
|
+
/// @inheritdoc IAccessManager
|
515
|
+
function cancel(address caller, address target, bytes calldata data) public virtual returns (uint32) {
|
516
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
517
|
+
address msgsender = _msgSender();
|
518
|
+
bytes4 selector = _checkSelector(data);
|
519
|
+
|
520
|
+
bytes32 operationId = hashOperation(caller, target, data);
|
521
|
+
if ($._schedules[operationId].timepoint == 0) {
|
522
|
+
revert AccessManagerNotScheduled(operationId);
|
523
|
+
} else if (caller != msgsender) {
|
524
|
+
// calls can only be canceled by the account that scheduled them, a global admin, or by a guardian of the required role.
|
525
|
+
(bool isAdmin, ) = hasRole(ADMIN_ROLE, msgsender);
|
526
|
+
(bool isGuardian, ) = hasRole(getRoleGuardian(getTargetFunctionRole(target, selector)), msgsender);
|
527
|
+
if (!isAdmin && !isGuardian) {
|
528
|
+
revert AccessManagerUnauthorizedCancel(msgsender, caller, target, selector);
|
529
|
+
}
|
530
|
+
}
|
531
|
+
|
532
|
+
delete $._schedules[operationId].timepoint; // reset the timepoint, keep the nonce
|
533
|
+
uint32 nonce = $._schedules[operationId].nonce;
|
534
|
+
emit OperationCanceled(operationId, nonce);
|
535
|
+
|
536
|
+
return nonce;
|
537
|
+
}
|
538
|
+
|
539
|
+
/// @inheritdoc IAccessManager
|
540
|
+
function consumeScheduledOp(address caller, bytes calldata data) public virtual {
|
541
|
+
address target = _msgSender();
|
542
|
+
if (IAccessManaged(target).isConsumingScheduledOp() != IAccessManaged.isConsumingScheduledOp.selector) {
|
543
|
+
revert AccessManagerUnauthorizedConsume(target);
|
544
|
+
}
|
545
|
+
_consumeScheduledOp(hashOperation(caller, target, data));
|
546
|
+
}
|
547
|
+
|
548
|
+
/**
|
549
|
+
* @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.
|
550
|
+
*
|
551
|
+
* Returns the nonce of the scheduled operation that is consumed.
|
552
|
+
*/
|
553
|
+
function _consumeScheduledOp(bytes32 operationId) internal virtual returns (uint32) {
|
554
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
555
|
+
uint48 timepoint = $._schedules[operationId].timepoint;
|
556
|
+
uint32 nonce = $._schedules[operationId].nonce;
|
557
|
+
|
558
|
+
if (timepoint == 0) {
|
559
|
+
revert AccessManagerNotScheduled(operationId);
|
560
|
+
} else if (timepoint > Time.timestamp()) {
|
561
|
+
revert AccessManagerNotReady(operationId);
|
562
|
+
} else if (_isExpired(timepoint)) {
|
563
|
+
revert AccessManagerExpired(operationId);
|
564
|
+
}
|
565
|
+
|
566
|
+
delete $._schedules[operationId].timepoint; // reset the timepoint, keep the nonce
|
567
|
+
emit OperationExecuted(operationId, nonce);
|
568
|
+
|
569
|
+
return nonce;
|
570
|
+
}
|
571
|
+
|
572
|
+
/// @inheritdoc IAccessManager
|
573
|
+
function hashOperation(address caller, address target, bytes calldata data) public view virtual returns (bytes32) {
|
574
|
+
return keccak256(abi.encode(caller, target, data));
|
575
|
+
}
|
576
|
+
|
577
|
+
// ==================================================== OTHERS ====================================================
|
578
|
+
/// @inheritdoc IAccessManager
|
579
|
+
function updateAuthority(address target, address newAuthority) public virtual onlyAuthorized {
|
580
|
+
IAccessManaged(target).setAuthority(newAuthority);
|
581
|
+
}
|
582
|
+
|
583
|
+
// ================================================= ADMIN LOGIC ==================================================
|
584
|
+
/**
|
585
|
+
* @dev Check if the current call is authorized according to admin logic.
|
586
|
+
*/
|
587
|
+
function _checkAuthorized() private {
|
588
|
+
address caller = msg.sender;//_msgSender();
|
589
|
+
(bool immediate, uint32 delay) = _canCallSelf(caller, _msgData());
|
590
|
+
if (!immediate) {
|
591
|
+
if (delay == 0) {
|
592
|
+
(, uint64 requiredRole, ) = _getAdminRestrictions(_msgData());
|
593
|
+
revert AccessManagerUnauthorizedAccount(caller, requiredRole);
|
594
|
+
} else {
|
595
|
+
_consumeScheduledOp(hashOperation(caller, address(this), _msgData()));
|
596
|
+
}
|
597
|
+
}
|
598
|
+
}
|
599
|
+
|
600
|
+
/**
|
601
|
+
* @dev Get the admin restrictions of a given function call based on the function and arguments involved.
|
602
|
+
*
|
603
|
+
* Returns:
|
604
|
+
* - bool restricted: does this data match a restricted operation
|
605
|
+
* - uint64: which role is this operation restricted to
|
606
|
+
* - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)
|
607
|
+
*/
|
608
|
+
/**
|
609
|
+
* @dev Get the admin restrictions of a given function call based on the function and arguments involved.
|
610
|
+
*
|
611
|
+
* Returns:
|
612
|
+
* - bool restricted: does this data match a restricted operation
|
613
|
+
* - uint64: which role is this operation restricted to
|
614
|
+
* - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)
|
615
|
+
*/
|
616
|
+
function _getAdminRestrictions(
|
617
|
+
bytes calldata data
|
618
|
+
) internal virtual view returns (bool restricted, uint64 roleAdminId, uint32 executionDelay) {
|
619
|
+
if (data.length < 4) {
|
620
|
+
return (false, 0, 0);
|
621
|
+
}
|
622
|
+
|
623
|
+
bytes4 selector = _checkSelector(data);
|
624
|
+
|
625
|
+
// Restricted to ADMIN with no delay beside any execution delay the caller may have
|
626
|
+
if (
|
627
|
+
selector == this.labelRole.selector ||
|
628
|
+
selector == this.setRoleAdmin.selector ||
|
629
|
+
selector == this.setRoleGuardian.selector ||
|
630
|
+
selector == this.setGrantDelay.selector ||
|
631
|
+
selector == this.setTargetAdminDelay.selector
|
632
|
+
) {
|
633
|
+
return (true, ADMIN_ROLE, 0);
|
634
|
+
}
|
635
|
+
|
636
|
+
// Restricted to ADMIN with the admin delay corresponding to the target
|
637
|
+
if (
|
638
|
+
selector == this.updateAuthority.selector ||
|
639
|
+
selector == this.setTargetClosed.selector ||
|
640
|
+
selector == this.setTargetFunctionRole.selector
|
641
|
+
) {
|
642
|
+
// First argument is a target.
|
643
|
+
address target = abi.decode(data[0x04:0x24], (address));// who is target???
|
644
|
+
uint32 delay = getTargetAdminDelay(target);
|
645
|
+
return (true, ADMIN_ROLE, delay);
|
646
|
+
}
|
647
|
+
|
648
|
+
// Restricted to that role's admin with no delay beside any execution delay the caller may have.
|
649
|
+
if (selector == this.grantRole.selector || selector == this.revokeRole.selector) {
|
650
|
+
// First argument is a roleId.
|
651
|
+
uint64 roleId = abi.decode(data[0x04:0x24], (uint64));
|
652
|
+
return (true, getRoleAdmin(roleId), 0);
|
653
|
+
}
|
654
|
+
|
655
|
+
return (false, 0, 0);
|
656
|
+
}
|
657
|
+
|
658
|
+
// =================================================== HELPERS ====================================================
|
659
|
+
/**
|
660
|
+
* @dev An extended version of {canCall} for internal usage that checks {_canCallSelf}
|
661
|
+
* when the target is this contract.
|
662
|
+
*
|
663
|
+
* Returns:
|
664
|
+
* - bool immediate: whether the operation can be executed immediately (with no delay)
|
665
|
+
* - uint32 delay: the execution delay
|
666
|
+
*/
|
667
|
+
function _canCallExtended(
|
668
|
+
address caller,
|
669
|
+
address target,
|
670
|
+
bytes calldata data
|
671
|
+
) private view returns (bool immediate, uint32 delay) {
|
672
|
+
if (target == address(this)) {
|
673
|
+
return _canCallSelf(caller, data);
|
674
|
+
} else {
|
675
|
+
return data.length < 4 ? (false, 0) : canCall(caller, target, _checkSelector(data));
|
676
|
+
}
|
677
|
+
}
|
678
|
+
|
679
|
+
/**
|
680
|
+
* @dev A version of {canCall} that checks for admin restrictions in this contract.
|
681
|
+
*/
|
682
|
+
function _canCallSelf(address caller, bytes calldata data) private view returns (bool immediate, uint32 delay) {
|
683
|
+
if (data.length < 4) {
|
684
|
+
return (false, 0);
|
685
|
+
}
|
686
|
+
|
687
|
+
if (caller == address(this)) {
|
688
|
+
// Caller is AccessManager, this means the call was sent through {execute} and it already checked
|
689
|
+
// permissions. We verify that the call "identifier", which is set during {execute}, is correct.
|
690
|
+
return (_isExecuting(address(this), _checkSelector(data)), 0);
|
691
|
+
}
|
692
|
+
|
693
|
+
(bool enabled, uint64 roleId, uint32 operationDelay) = _getAdminRestrictions(data);
|
694
|
+
if (!enabled) {
|
695
|
+
return (false, 0);
|
696
|
+
}
|
697
|
+
|
698
|
+
(bool inRole, uint32 executionDelay) = hasRole(roleId, caller);
|
699
|
+
if (!inRole) {
|
700
|
+
return (false, 0);
|
701
|
+
}
|
702
|
+
|
703
|
+
// downcast is safe because both options are uint32
|
704
|
+
delay = uint32(Math.max(operationDelay, executionDelay));
|
705
|
+
return (delay == 0, delay);
|
706
|
+
}
|
707
|
+
|
708
|
+
/**
|
709
|
+
* @dev Returns true if a call with `target` and `selector` is being executed via {executed}.
|
710
|
+
*/
|
711
|
+
function _isExecuting(address target, bytes4 selector) private view returns (bool) {
|
712
|
+
AccessManagerStorage storage $ = _getAccessManagerCustomStorage();
|
713
|
+
return $._executionId == _hashExecutionId(target, selector);
|
714
|
+
}
|
715
|
+
|
716
|
+
/**
|
717
|
+
* @dev Returns true if a schedule timepoint is past its expiration deadline.
|
718
|
+
*/
|
719
|
+
function _isExpired(uint48 timepoint) private view returns (bool) {
|
720
|
+
return timepoint + expiration() <= Time.timestamp();
|
721
|
+
}
|
722
|
+
|
723
|
+
/**
|
724
|
+
* @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes
|
725
|
+
*/
|
726
|
+
function _checkSelector(bytes calldata data) internal pure returns (bytes4) {
|
727
|
+
return bytes4(data[0:4]);
|
728
|
+
}
|
729
|
+
|
730
|
+
/**
|
731
|
+
* @dev Hashing function for execute protection
|
732
|
+
*/
|
733
|
+
function _hashExecutionId(address target, bytes4 selector) private pure returns (bytes32) {
|
734
|
+
return keccak256(abi.encode(target, selector));
|
735
|
+
}
|
736
|
+
}
|