@etherisc/gif-next 0.0.2-bc4f70f-636 → 0.0.2-bc7a257-709
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +128 -9
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1023 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +752 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1494 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +673 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +615 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.json +10 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/{shared/IAccessManagerExtended.sol/IAccessManagerExtended.json → authorization/IAccessAdmin.sol/IAccessAdmin.json} +507 -845
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +382 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1225 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +644 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +119 -605
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +510 -263
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +176 -118
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +133 -279
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +323 -66
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1461 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2018 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1404 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1628 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2405 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +265 -88
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +269 -111
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +278 -213
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1581 -253
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +716 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1153 -396
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +275 -274
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +104 -104
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +916 -774
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +0 -53
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.json +2 -2
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +938 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +632 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +43 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +130 -136
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +81 -10
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +121 -413
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +193 -177
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +147 -93
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1231 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +644 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +372 -200
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +166 -104
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +224 -34
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +128 -396
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +472 -307
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +125 -684
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +472 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +715 -541
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +189 -103
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +227 -166
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +125 -99
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1140 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +644 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +454 -220
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +166 -120
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +148 -8
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +320 -15
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +377 -103
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +169 -82
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +270 -268
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/product/{IProductService.sol/IProductService.json → IRiskService.sol/IRiskService.json} +100 -7
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +487 -292
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +727 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +162 -104
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +252 -308
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +126 -132
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +268 -567
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +367 -63
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +84 -151
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +599 -126
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1777 -166
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +132 -278
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +111 -85
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1337 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +15 -15
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +67 -277
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +529 -532
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +152 -128
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +63 -104
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +661 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +80 -100
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +509 -249
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +116 -133
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +45 -3
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +34 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +16 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +15 -47
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +148 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +67 -1
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +106 -366
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +55 -88
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +42 -62
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +22 -57
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +19 -141
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +122 -97
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +63 -104
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +585 -12
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +196 -143
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +203 -29
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +280 -421
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +140 -117
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +41 -73
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +259 -187
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +117 -99
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +273 -165
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +94 -48
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +2 -2
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +63 -10
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +28 -4
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +4 -4
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +98 -37
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +140 -4
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +19 -19
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +4 -4
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +4 -4
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +125 -7
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +283 -6
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +50 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +15 -2
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +23 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +126 -33
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +120 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- package/contracts/accounting/AccountingService.sol +261 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +45 -0
- package/contracts/authorization/AccessAdmin.sol +704 -0
- package/contracts/authorization/AccessAdminLib.sol +183 -0
- package/contracts/authorization/AccessManagerCloneable.sol +158 -0
- package/contracts/authorization/Authorization.sol +365 -0
- package/contracts/authorization/IAccess.sol +57 -0
- package/contracts/authorization/IAccessAdmin.sol +170 -0
- package/contracts/authorization/IAuthorization.sol +80 -0
- package/contracts/authorization/IServiceAuthorization.sol +40 -0
- package/contracts/authorization/ServiceAuthorization.sol +106 -0
- package/contracts/distribution/BasicDistribution.sol +141 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
- package/contracts/distribution/Distribution.sol +122 -139
- package/contracts/distribution/DistributionService.sol +221 -130
- package/contracts/distribution/DistributionServiceManager.sol +8 -11
- package/contracts/distribution/IDistributionComponent.sol +19 -42
- package/contracts/distribution/IDistributionService.sol +44 -22
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +86 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +433 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +71 -47
- package/contracts/instance/IInstanceService.sol +47 -40
- package/contracts/instance/Instance.sol +197 -129
- package/contracts/instance/InstanceAdmin.sol +363 -244
- package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
- package/contracts/instance/InstanceReader.sol +308 -48
- package/contracts/instance/InstanceService.sol +272 -175
- package/contracts/instance/InstanceServiceManager.sol +8 -13
- package/contracts/instance/InstanceStore.sol +35 -18
- package/contracts/instance/RiskSet.sol +118 -0
- package/contracts/instance/base/BalanceStore.sol +14 -11
- package/contracts/instance/base/Cloneable.sol +2 -25
- package/contracts/instance/base/ObjectCounter.sol +1 -2
- package/contracts/instance/base/ObjectLifecycle.sol +113 -0
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +30 -20
- package/contracts/instance/module/IDistribution.sol +21 -9
- package/contracts/instance/module/IPolicy.sol +50 -29
- package/contracts/instance/module/IRisk.sol +5 -0
- package/contracts/mock/Dip.sol +1 -1
- package/contracts/oracle/BasicOracle.sol +45 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
- package/contracts/oracle/IOracle.sol +25 -4
- package/contracts/oracle/IOracleComponent.sol +2 -1
- package/contracts/oracle/IOracleService.sol +2 -1
- package/contracts/oracle/Oracle.sol +62 -53
- package/contracts/oracle/OracleService.sol +118 -85
- package/contracts/oracle/OracleServiceManager.sol +8 -11
- package/contracts/pool/BasicPool.sol +173 -0
- package/contracts/pool/BasicPoolAuthorization.sol +76 -0
- package/contracts/pool/BundleService.sol +207 -108
- package/contracts/pool/BundleServiceManager.sol +8 -11
- package/contracts/pool/IBundleService.sol +31 -22
- package/contracts/pool/IPoolComponent.sol +20 -70
- package/contracts/pool/IPoolService.sol +90 -75
- package/contracts/pool/Pool.sol +207 -163
- package/contracts/pool/PoolLib.sol +309 -0
- package/contracts/pool/PoolService.sol +396 -262
- package/contracts/pool/PoolServiceManager.sol +6 -9
- package/contracts/product/ApplicationService.sol +107 -83
- package/contracts/product/ApplicationServiceManager.sol +6 -6
- package/contracts/product/BasicProduct.sol +49 -0
- package/contracts/product/BasicProductAuthorization.sol +56 -0
- package/contracts/product/ClaimService.sol +378 -180
- package/contracts/product/ClaimServiceManager.sol +6 -6
- package/contracts/product/IApplicationService.sol +9 -2
- package/contracts/product/IClaimService.sol +44 -8
- package/contracts/product/IPolicyService.sol +53 -36
- package/contracts/product/IPricingService.sol +11 -10
- package/contracts/product/IProductComponent.sol +29 -9
- package/contracts/product/{IProductService.sol → IRiskService.sol} +8 -8
- package/contracts/product/PolicyService.sol +441 -276
- package/contracts/product/PolicyServiceLib.sol +119 -0
- package/contracts/product/PolicyServiceManager.sol +6 -9
- package/contracts/product/PricingService.sol +72 -64
- package/contracts/product/PricingServiceManager.sol +6 -9
- package/contracts/product/Product.sol +230 -140
- package/contracts/product/RiskService.sol +154 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +72 -40
- package/contracts/registry/IRegistry.sol +78 -32
- package/contracts/registry/IRegistryService.sol +3 -10
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +368 -214
- package/contracts/registry/RegistryAdmin.sol +188 -167
- package/contracts/registry/RegistryAuthorization.sol +267 -0
- package/contracts/registry/RegistryService.sol +46 -71
- package/contracts/registry/RegistryServiceManager.sol +5 -10
- package/contracts/registry/ReleaseAdmin.sol +253 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +517 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +12 -11
- package/contracts/shared/Component.sol +65 -136
- package/contracts/shared/ComponentService.sol +428 -385
- package/contracts/shared/ComponentServiceManager.sol +10 -7
- package/contracts/shared/ComponentVerifyingService.sol +29 -18
- package/contracts/shared/ContractLib.sol +347 -0
- package/contracts/shared/IComponent.sol +5 -17
- package/contracts/shared/IComponentService.sol +49 -41
- package/contracts/shared/IInstanceLinkedComponent.sol +10 -26
- package/contracts/shared/IKeyValueStore.sol +1 -0
- package/contracts/shared/ILifecycle.sol +3 -2
- package/contracts/shared/INftOwnable.sol +2 -0
- package/contracts/shared/IPolicyHolder.sol +12 -22
- package/contracts/shared/IRegisterable.sol +23 -1
- package/contracts/shared/IService.sol +10 -5
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +11 -3
- package/contracts/shared/InstanceLinkedComponent.sol +95 -45
- package/contracts/shared/KeyValueStore.sol +7 -3
- package/contracts/shared/Lifecycle.sol +30 -72
- package/contracts/shared/{NftIdSetManager.sol → NftIdSet.sol} +1 -1
- package/contracts/shared/NftOwnable.sol +31 -11
- package/contracts/shared/PolicyHolder.sol +17 -57
- package/contracts/shared/Registerable.sol +52 -21
- package/contracts/shared/RegistryLinked.sol +9 -14
- package/contracts/shared/Service.sol +28 -40
- package/contracts/shared/TokenHandler.sol +310 -26
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +26 -15
- package/contracts/staking/IStakingService.sol +41 -15
- package/contracts/staking/Staking.sol +153 -158
- package/contracts/staking/StakingLib.sol +281 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +10 -12
- package/contracts/staking/StakingReader.sol +26 -33
- package/contracts/staking/StakingService.sol +143 -82
- package/contracts/staking/StakingServiceManager.sol +8 -8
- package/contracts/staking/StakingStore.sol +94 -60
- package/contracts/staking/TargetManagerLib.sol +7 -3
- package/contracts/type/Amount.sol +27 -5
- package/contracts/type/Blocknumber.sol +7 -1
- package/contracts/type/ClaimId.sol +6 -1
- package/contracts/type/Fee.sol +8 -8
- package/contracts/type/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/type/NftId.sol +7 -0
- package/contracts/type/ObjectType.sol +187 -61
- package/contracts/type/PayoutId.sol +10 -10
- package/contracts/type/Referral.sol +1 -0
- package/contracts/type/RiskId.sol +38 -6
- package/contracts/type/RoleId.sol +117 -81
- package/contracts/type/Seconds.sol +21 -1
- package/contracts/type/Selector.sol +107 -0
- package/contracts/type/StateId.sol +15 -1
- package/contracts/type/String.sol +53 -0
- package/contracts/type/Timestamp.sol +10 -5
- package/contracts/type/UFixed.sol +61 -125
- package/contracts/type/Version.sol +57 -6
- package/contracts/{shared → upgradeability}/ProxyManager.sol +82 -47
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +8 -4
- package/contracts/{shared → upgradeability}/Versionable.sol +2 -2
- package/package.json +10 -6
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +0 -228
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +0 -256
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +0 -679
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +0 -694
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -1292
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +0 -4
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +0 -137
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +0 -1193
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +0 -1715
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +0 -1728
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +0 -1806
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +0 -1824
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +0 -4
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +0 -4
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +0 -1600
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +0 -4
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +0 -306
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -617
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -444
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -10
- package/contracts/instance/BundleManager.sol +0 -126
- package/contracts/instance/InstanceAuthorizationsLib.sol +0 -377
- package/contracts/instance/base/ObjectManager.sol +0 -82
- package/contracts/instance/module/IAccess.sol +0 -46
- package/contracts/product/ProductService.sol +0 -124
- package/contracts/product/ProductServiceManager.sol +0 -42
- package/contracts/registry/ReleaseManager.sol +0 -600
- package/contracts/registry/ServiceAuthorizationsLib.sol +0 -173
- package/contracts/shared/AccessManagerCustom.sol +0 -736
- package/contracts/shared/AccessManagerExtended.sol +0 -470
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +0 -13
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +0 -137
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +0 -14
- package/contracts/shared/IAccessManagerExtended.sol +0 -74
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +0 -18
- package/contracts/shared/InitializableCustom.sol +0 -177
- package/contracts/staking/StakeManagerLib.sol +0 -179
- /package/contracts/{shared → upgradeability}/IVersionable.sol +0 -0
@@ -1,163 +1,355 @@
|
|
1
1
|
{
|
2
2
|
"_format": "hh-sol-artifact-1",
|
3
|
-
"contractName": "
|
4
|
-
"sourceName": "contracts/
|
3
|
+
"contractName": "IAccessAdmin",
|
4
|
+
"sourceName": "contracts/authorization/IAccessAdmin.sol",
|
5
5
|
"abi": [
|
6
6
|
{
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
|
-
"internalType": "
|
10
|
-
"name": "
|
11
|
-
"type": "
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
12
39
|
}
|
13
40
|
],
|
14
|
-
"name": "
|
41
|
+
"name": "AccessManagedUnauthorized",
|
15
42
|
"type": "error"
|
16
43
|
},
|
17
44
|
{
|
18
45
|
"inputs": [],
|
19
|
-
"name": "
|
46
|
+
"name": "ErrorAccessAdminAccessManagerEmptyName",
|
20
47
|
"type": "error"
|
21
48
|
},
|
22
49
|
{
|
23
50
|
"inputs": [
|
24
51
|
{
|
25
|
-
"internalType": "
|
26
|
-
"name": "
|
27
|
-
"type": "
|
52
|
+
"internalType": "address",
|
53
|
+
"name": "authority",
|
54
|
+
"type": "address"
|
55
|
+
}
|
56
|
+
],
|
57
|
+
"name": "ErrorAccessAdminAccessManagerNotAccessManager",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [],
|
62
|
+
"name": "ErrorAccessAdminAdminRoleMissing",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "address",
|
69
|
+
"name": "authorization",
|
70
|
+
"type": "address"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"name": "ErrorAccessAdminAlreadyInitialized",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "address",
|
80
|
+
"name": "authority",
|
81
|
+
"type": "address"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"name": "ErrorAccessAdminAuthorityNotContract",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [
|
89
|
+
{
|
90
|
+
"internalType": "address",
|
91
|
+
"name": "target",
|
92
|
+
"type": "address"
|
28
93
|
}
|
29
94
|
],
|
30
|
-
"name": "
|
95
|
+
"name": "ErrorAccessAdminAuthorizeForAdminRoleInvalid",
|
31
96
|
"type": "error"
|
32
97
|
},
|
33
98
|
{
|
34
99
|
"inputs": [
|
35
100
|
{
|
36
101
|
"internalType": "address",
|
37
|
-
"name": "
|
102
|
+
"name": "authorization",
|
38
103
|
"type": "address"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"internalType": "ObjectType",
|
107
|
+
"name": "expectedDomain",
|
108
|
+
"type": "uint8"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"internalType": "ObjectType",
|
112
|
+
"name": "actualDomain",
|
113
|
+
"type": "uint8"
|
39
114
|
}
|
40
115
|
],
|
41
|
-
"name": "
|
116
|
+
"name": "ErrorAccessAdminDomainMismatch",
|
42
117
|
"type": "error"
|
43
118
|
},
|
44
119
|
{
|
45
120
|
"inputs": [
|
121
|
+
{
|
122
|
+
"internalType": "RoleId",
|
123
|
+
"name": "adminRoleId",
|
124
|
+
"type": "uint64"
|
125
|
+
},
|
46
126
|
{
|
47
127
|
"internalType": "address",
|
48
128
|
"name": "account",
|
49
129
|
"type": "address"
|
50
130
|
}
|
51
131
|
],
|
52
|
-
"name": "
|
132
|
+
"name": "ErrorAccessAdminNotAdminOfRole",
|
133
|
+
"type": "error"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"inputs": [
|
137
|
+
{
|
138
|
+
"internalType": "address",
|
139
|
+
"name": "authorization",
|
140
|
+
"type": "address"
|
141
|
+
}
|
142
|
+
],
|
143
|
+
"name": "ErrorAccessAdminNotAuthorization",
|
144
|
+
"type": "error"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"inputs": [],
|
148
|
+
"name": "ErrorAccessAdminNotDeployer",
|
149
|
+
"type": "error"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"inputs": [
|
153
|
+
{
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "registerable",
|
156
|
+
"type": "address"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
"name": "ErrorAccessAdminNotRegistered",
|
160
|
+
"type": "error"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"inputs": [
|
164
|
+
{
|
165
|
+
"internalType": "address",
|
166
|
+
"name": "registry",
|
167
|
+
"type": "address"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"name": "ErrorAccessAdminNotRegistry",
|
53
171
|
"type": "error"
|
54
172
|
},
|
55
173
|
{
|
56
174
|
"inputs": [
|
57
175
|
{
|
58
|
-
"internalType": "
|
176
|
+
"internalType": "RoleId",
|
59
177
|
"name": "roleId",
|
60
178
|
"type": "uint64"
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"internalType": "address",
|
182
|
+
"name": "account",
|
183
|
+
"type": "address"
|
61
184
|
}
|
62
185
|
],
|
63
|
-
"name": "
|
186
|
+
"name": "ErrorAccessAdminNotRoleOwner",
|
64
187
|
"type": "error"
|
65
188
|
},
|
66
189
|
{
|
67
190
|
"inputs": [
|
68
191
|
{
|
69
|
-
"internalType": "
|
70
|
-
"name": "
|
71
|
-
"type": "
|
192
|
+
"internalType": "address",
|
193
|
+
"name": "authorization",
|
194
|
+
"type": "address"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"internalType": "VersionPart",
|
198
|
+
"name": "expectedRelease",
|
199
|
+
"type": "uint8"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"internalType": "VersionPart",
|
203
|
+
"name": "actualRelease",
|
204
|
+
"type": "uint8"
|
72
205
|
}
|
73
206
|
],
|
74
|
-
"name": "
|
207
|
+
"name": "ErrorAccessAdminReleaseMismatch",
|
75
208
|
"type": "error"
|
76
209
|
},
|
77
210
|
{
|
78
211
|
"inputs": [
|
79
212
|
{
|
80
|
-
"internalType": "
|
81
|
-
"name": "
|
82
|
-
"type": "
|
213
|
+
"internalType": "RoleId",
|
214
|
+
"name": "adminRoleId",
|
215
|
+
"type": "uint64"
|
83
216
|
}
|
84
217
|
],
|
85
|
-
"name": "
|
218
|
+
"name": "ErrorAccessAdminRoleAdminNotExisting",
|
86
219
|
"type": "error"
|
87
220
|
},
|
88
221
|
{
|
89
222
|
"inputs": [
|
90
223
|
{
|
91
|
-
"internalType": "
|
224
|
+
"internalType": "RoleId",
|
92
225
|
"name": "roleId",
|
93
226
|
"type": "uint64"
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"internalType": "string",
|
230
|
+
"name": "name",
|
231
|
+
"type": "string"
|
94
232
|
}
|
95
233
|
],
|
96
|
-
"name": "
|
234
|
+
"name": "ErrorAccessAdminRoleAlreadyCreated",
|
97
235
|
"type": "error"
|
98
236
|
},
|
99
237
|
{
|
100
238
|
"inputs": [
|
101
239
|
{
|
102
|
-
"internalType": "
|
240
|
+
"internalType": "RoleId",
|
103
241
|
"name": "roleId",
|
104
242
|
"type": "uint64"
|
105
243
|
}
|
106
244
|
],
|
107
|
-
"name": "
|
245
|
+
"name": "ErrorAccessAdminRoleIsLocked",
|
108
246
|
"type": "error"
|
109
247
|
},
|
110
248
|
{
|
111
249
|
"inputs": [
|
112
250
|
{
|
113
|
-
"internalType": "
|
251
|
+
"internalType": "RoleId",
|
114
252
|
"name": "roleId",
|
115
253
|
"type": "uint64"
|
116
254
|
}
|
117
255
|
],
|
118
|
-
"name": "
|
256
|
+
"name": "ErrorAccessAdminRoleIsPaused",
|
119
257
|
"type": "error"
|
120
258
|
},
|
121
259
|
{
|
122
|
-
"inputs": [
|
123
|
-
|
260
|
+
"inputs": [
|
261
|
+
{
|
262
|
+
"internalType": "RoleId",
|
263
|
+
"name": "roleId",
|
264
|
+
"type": "uint64"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"internalType": "address",
|
268
|
+
"name": "notContract",
|
269
|
+
"type": "address"
|
270
|
+
}
|
271
|
+
],
|
272
|
+
"name": "ErrorAccessAdminRoleMemberNotContract",
|
124
273
|
"type": "error"
|
125
274
|
},
|
126
275
|
{
|
127
276
|
"inputs": [
|
128
277
|
{
|
129
|
-
"internalType": "
|
130
|
-
"name": "
|
278
|
+
"internalType": "RoleId",
|
279
|
+
"name": "roleId",
|
131
280
|
"type": "uint64"
|
132
281
|
},
|
133
282
|
{
|
134
|
-
"internalType": "
|
135
|
-
"name": "
|
283
|
+
"internalType": "address",
|
284
|
+
"name": "expectedMember",
|
285
|
+
"type": "address"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
"name": "ErrorAccessAdminRoleMemberRemovalDisabled",
|
289
|
+
"type": "error"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"inputs": [
|
293
|
+
{
|
294
|
+
"internalType": "RoleId",
|
295
|
+
"name": "roleId",
|
296
|
+
"type": "uint64"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"internalType": "uint256",
|
300
|
+
"name": "memberCountLimit",
|
301
|
+
"type": "uint256"
|
302
|
+
}
|
303
|
+
],
|
304
|
+
"name": "ErrorAccessAdminRoleMembersLimitReached",
|
305
|
+
"type": "error"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"inputs": [
|
309
|
+
{
|
310
|
+
"internalType": "RoleId",
|
311
|
+
"name": "roleId",
|
136
312
|
"type": "uint64"
|
137
313
|
},
|
138
314
|
{
|
139
315
|
"internalType": "string",
|
140
|
-
"name": "
|
316
|
+
"name": "name",
|
141
317
|
"type": "string"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"internalType": "RoleId",
|
321
|
+
"name": "existingRoleId",
|
322
|
+
"type": "uint64"
|
323
|
+
}
|
324
|
+
],
|
325
|
+
"name": "ErrorAccessAdminRoleNameAlreadyExists",
|
326
|
+
"type": "error"
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"inputs": [
|
330
|
+
{
|
331
|
+
"internalType": "RoleId",
|
332
|
+
"name": "roleId",
|
333
|
+
"type": "uint64"
|
142
334
|
}
|
143
335
|
],
|
144
|
-
"name": "
|
336
|
+
"name": "ErrorAccessAdminRoleNameEmpty",
|
145
337
|
"type": "error"
|
146
338
|
},
|
147
339
|
{
|
148
340
|
"inputs": [
|
149
341
|
{
|
150
|
-
"internalType": "
|
342
|
+
"internalType": "RoleId",
|
151
343
|
"name": "roleId",
|
152
344
|
"type": "uint64"
|
153
345
|
}
|
154
346
|
],
|
155
|
-
"name": "
|
347
|
+
"name": "ErrorAccessAdminRoleUnknown",
|
156
348
|
"type": "error"
|
157
349
|
},
|
158
350
|
{
|
159
351
|
"inputs": [],
|
160
|
-
"name": "
|
352
|
+
"name": "ErrorAccessAdminTagetNotLockable",
|
161
353
|
"type": "error"
|
162
354
|
},
|
163
355
|
{
|
@@ -166,9 +358,14 @@
|
|
166
358
|
"internalType": "address",
|
167
359
|
"name": "target",
|
168
360
|
"type": "address"
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"internalType": "string",
|
364
|
+
"name": "name",
|
365
|
+
"type": "string"
|
169
366
|
}
|
170
367
|
],
|
171
|
-
"name": "
|
368
|
+
"name": "ErrorAccessAdminTargetAlreadyCreated",
|
172
369
|
"type": "error"
|
173
370
|
},
|
174
371
|
{
|
@@ -179,33 +376,49 @@
|
|
179
376
|
"type": "address"
|
180
377
|
},
|
181
378
|
{
|
182
|
-
"internalType": "
|
183
|
-
"name": "
|
184
|
-
"type": "
|
379
|
+
"internalType": "bool",
|
380
|
+
"name": "isLocked",
|
381
|
+
"type": "bool"
|
185
382
|
}
|
186
383
|
],
|
187
|
-
"name": "
|
384
|
+
"name": "ErrorAccessAdminTargetAlreadyLocked",
|
188
385
|
"type": "error"
|
189
386
|
},
|
190
387
|
{
|
191
388
|
"inputs": [
|
192
389
|
{
|
193
390
|
"internalType": "address",
|
194
|
-
"name": "
|
391
|
+
"name": "expectedAuthority",
|
195
392
|
"type": "address"
|
196
393
|
},
|
197
394
|
{
|
198
395
|
"internalType": "address",
|
199
|
-
"name": "
|
396
|
+
"name": "actualAuthority",
|
397
|
+
"type": "address"
|
398
|
+
}
|
399
|
+
],
|
400
|
+
"name": "ErrorAccessAdminTargetAuthorityMismatch",
|
401
|
+
"type": "error"
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"inputs": [
|
405
|
+
{
|
406
|
+
"internalType": "address",
|
407
|
+
"name": "target",
|
200
408
|
"type": "address"
|
201
409
|
},
|
202
410
|
{
|
203
411
|
"internalType": "string",
|
204
|
-
"name": "
|
412
|
+
"name": "name",
|
205
413
|
"type": "string"
|
414
|
+
},
|
415
|
+
{
|
416
|
+
"internalType": "address",
|
417
|
+
"name": "existingTarget",
|
418
|
+
"type": "address"
|
206
419
|
}
|
207
420
|
],
|
208
|
-
"name": "
|
421
|
+
"name": "ErrorAccessAdminTargetNameAlreadyExists",
|
209
422
|
"type": "error"
|
210
423
|
},
|
211
424
|
{
|
@@ -216,7 +429,7 @@
|
|
216
429
|
"type": "address"
|
217
430
|
}
|
218
431
|
],
|
219
|
-
"name": "
|
432
|
+
"name": "ErrorAccessAdminTargetNameEmpty",
|
220
433
|
"type": "error"
|
221
434
|
},
|
222
435
|
{
|
@@ -227,81 +440,72 @@
|
|
227
440
|
"type": "address"
|
228
441
|
}
|
229
442
|
],
|
230
|
-
"name": "
|
443
|
+
"name": "ErrorAccessAdminTargetNotAccessManaged",
|
231
444
|
"type": "error"
|
232
445
|
},
|
233
446
|
{
|
234
447
|
"inputs": [
|
235
448
|
{
|
236
449
|
"internalType": "address",
|
237
|
-
"name": "
|
450
|
+
"name": "target",
|
238
451
|
"type": "address"
|
239
|
-
},
|
240
|
-
{
|
241
|
-
"internalType": "uint64",
|
242
|
-
"name": "roleId",
|
243
|
-
"type": "uint64"
|
244
452
|
}
|
245
453
|
],
|
246
|
-
"name": "
|
454
|
+
"name": "ErrorAccessAdminTargetNotCreated",
|
247
455
|
"type": "error"
|
248
456
|
},
|
249
457
|
{
|
250
458
|
"inputs": [
|
251
|
-
{
|
252
|
-
"internalType": "address",
|
253
|
-
"name": "caller",
|
254
|
-
"type": "address"
|
255
|
-
},
|
256
459
|
{
|
257
460
|
"internalType": "address",
|
258
461
|
"name": "target",
|
259
462
|
"type": "address"
|
260
|
-
},
|
261
|
-
{
|
262
|
-
"internalType": "bytes4",
|
263
|
-
"name": "selector",
|
264
|
-
"type": "bytes4"
|
265
463
|
}
|
266
464
|
],
|
267
|
-
"name": "
|
465
|
+
"name": "ErrorAccessAdminTargetNotRegistered",
|
268
466
|
"type": "error"
|
269
467
|
},
|
270
468
|
{
|
271
469
|
"inputs": [
|
272
470
|
{
|
273
471
|
"internalType": "address",
|
274
|
-
"name": "
|
472
|
+
"name": "target",
|
275
473
|
"type": "address"
|
276
474
|
},
|
277
475
|
{
|
278
|
-
"internalType": "
|
279
|
-
"name": "
|
280
|
-
"type": "
|
476
|
+
"internalType": "ObjectType",
|
477
|
+
"name": "expectedType",
|
478
|
+
"type": "uint8"
|
281
479
|
},
|
480
|
+
{
|
481
|
+
"internalType": "ObjectType",
|
482
|
+
"name": "actualType",
|
483
|
+
"type": "uint8"
|
484
|
+
}
|
485
|
+
],
|
486
|
+
"name": "ErrorAccessAdminTargetTypeMismatch",
|
487
|
+
"type": "error"
|
488
|
+
},
|
489
|
+
{
|
490
|
+
"inputs": [
|
282
491
|
{
|
283
492
|
"internalType": "address",
|
284
493
|
"name": "target",
|
285
494
|
"type": "address"
|
286
|
-
},
|
287
|
-
{
|
288
|
-
"internalType": "bytes4",
|
289
|
-
"name": "selector",
|
290
|
-
"type": "bytes4"
|
291
495
|
}
|
292
496
|
],
|
293
|
-
"name": "
|
497
|
+
"name": "ErrorAccessAdminTargetUnknown",
|
294
498
|
"type": "error"
|
295
499
|
},
|
296
500
|
{
|
297
501
|
"inputs": [
|
298
502
|
{
|
299
503
|
"internalType": "address",
|
300
|
-
"name": "
|
504
|
+
"name": "registryAddress",
|
301
505
|
"type": "address"
|
302
506
|
}
|
303
507
|
],
|
304
|
-
"name": "
|
508
|
+
"name": "ErrorNotRegistry",
|
305
509
|
"type": "error"
|
306
510
|
},
|
307
511
|
{
|
@@ -309,23 +513,23 @@
|
|
309
513
|
"inputs": [
|
310
514
|
{
|
311
515
|
"indexed": false,
|
312
|
-
"internalType": "
|
313
|
-
"name": "
|
314
|
-
"type": "
|
315
|
-
},
|
316
|
-
{
|
317
|
-
"indexed": false,
|
318
|
-
"internalType": "string",
|
319
|
-
"name": "name",
|
320
|
-
"type": "string"
|
516
|
+
"internalType": "address",
|
517
|
+
"name": "authority",
|
518
|
+
"type": "address"
|
321
519
|
}
|
322
520
|
],
|
323
|
-
"name": "
|
521
|
+
"name": "AuthorityUpdated",
|
324
522
|
"type": "event"
|
325
523
|
},
|
326
524
|
{
|
327
525
|
"anonymous": false,
|
328
526
|
"inputs": [
|
527
|
+
{
|
528
|
+
"indexed": false,
|
529
|
+
"internalType": "string",
|
530
|
+
"name": "admin",
|
531
|
+
"type": "string"
|
532
|
+
},
|
329
533
|
{
|
330
534
|
"indexed": false,
|
331
535
|
"internalType": "address",
|
@@ -335,330 +539,133 @@
|
|
335
539
|
{
|
336
540
|
"indexed": false,
|
337
541
|
"internalType": "string",
|
338
|
-
"name": "
|
542
|
+
"name": "func",
|
339
543
|
"type": "string"
|
340
544
|
}
|
341
545
|
],
|
342
|
-
"name": "
|
546
|
+
"name": "LogAccessAdminFunctionGranted",
|
343
547
|
"type": "event"
|
344
548
|
},
|
345
549
|
{
|
346
550
|
"anonymous": false,
|
347
551
|
"inputs": [
|
348
552
|
{
|
349
|
-
"indexed":
|
350
|
-
"internalType": "
|
351
|
-
"name": "
|
352
|
-
"type": "
|
353
|
-
},
|
354
|
-
{
|
355
|
-
"indexed": true,
|
356
|
-
"internalType": "uint32",
|
357
|
-
"name": "nonce",
|
358
|
-
"type": "uint32"
|
359
|
-
}
|
360
|
-
],
|
361
|
-
"name": "OperationCanceled",
|
362
|
-
"type": "event"
|
363
|
-
},
|
364
|
-
{
|
365
|
-
"anonymous": false,
|
366
|
-
"inputs": [
|
367
|
-
{
|
368
|
-
"indexed": true,
|
369
|
-
"internalType": "bytes32",
|
370
|
-
"name": "operationId",
|
371
|
-
"type": "bytes32"
|
372
|
-
},
|
373
|
-
{
|
374
|
-
"indexed": true,
|
375
|
-
"internalType": "uint32",
|
376
|
-
"name": "nonce",
|
377
|
-
"type": "uint32"
|
378
|
-
}
|
379
|
-
],
|
380
|
-
"name": "OperationExecuted",
|
381
|
-
"type": "event"
|
382
|
-
},
|
383
|
-
{
|
384
|
-
"anonymous": false,
|
385
|
-
"inputs": [
|
386
|
-
{
|
387
|
-
"indexed": true,
|
388
|
-
"internalType": "bytes32",
|
389
|
-
"name": "operationId",
|
390
|
-
"type": "bytes32"
|
391
|
-
},
|
392
|
-
{
|
393
|
-
"indexed": true,
|
394
|
-
"internalType": "uint32",
|
395
|
-
"name": "nonce",
|
396
|
-
"type": "uint32"
|
397
|
-
},
|
398
|
-
{
|
399
|
-
"indexed": false,
|
400
|
-
"internalType": "uint48",
|
401
|
-
"name": "schedule",
|
402
|
-
"type": "uint48"
|
553
|
+
"indexed": false,
|
554
|
+
"internalType": "string",
|
555
|
+
"name": "admin",
|
556
|
+
"type": "string"
|
403
557
|
},
|
404
558
|
{
|
405
559
|
"indexed": false,
|
406
|
-
"internalType": "
|
407
|
-
"name": "
|
408
|
-
"type": "
|
560
|
+
"internalType": "RoleId",
|
561
|
+
"name": "roleId",
|
562
|
+
"type": "uint64"
|
409
563
|
},
|
410
564
|
{
|
411
565
|
"indexed": false,
|
412
|
-
"internalType": "
|
413
|
-
"name": "
|
414
|
-
"type": "
|
566
|
+
"internalType": "enum IAccess.RoleType",
|
567
|
+
"name": "roleType",
|
568
|
+
"type": "uint8"
|
415
569
|
},
|
416
570
|
{
|
417
571
|
"indexed": false,
|
418
|
-
"internalType": "
|
419
|
-
"name": "
|
420
|
-
"type": "bytes"
|
421
|
-
}
|
422
|
-
],
|
423
|
-
"name": "OperationScheduled",
|
424
|
-
"type": "event"
|
425
|
-
},
|
426
|
-
{
|
427
|
-
"anonymous": false,
|
428
|
-
"inputs": [
|
429
|
-
{
|
430
|
-
"indexed": true,
|
431
|
-
"internalType": "uint64",
|
432
|
-
"name": "roleId",
|
572
|
+
"internalType": "RoleId",
|
573
|
+
"name": "roleAdminId",
|
433
574
|
"type": "uint64"
|
434
575
|
},
|
435
576
|
{
|
436
|
-
"indexed":
|
437
|
-
"internalType": "
|
438
|
-
"name": "
|
439
|
-
"type": "
|
577
|
+
"indexed": false,
|
578
|
+
"internalType": "string",
|
579
|
+
"name": "name",
|
580
|
+
"type": "string"
|
440
581
|
}
|
441
582
|
],
|
442
|
-
"name": "
|
583
|
+
"name": "LogAccessAdminRoleCreated",
|
443
584
|
"type": "event"
|
444
585
|
},
|
445
586
|
{
|
446
587
|
"anonymous": false,
|
447
588
|
"inputs": [
|
448
|
-
{
|
449
|
-
"indexed": true,
|
450
|
-
"internalType": "uint64",
|
451
|
-
"name": "roleId",
|
452
|
-
"type": "uint64"
|
453
|
-
},
|
454
589
|
{
|
455
590
|
"indexed": false,
|
456
|
-
"internalType": "
|
457
|
-
"name": "
|
458
|
-
"type": "
|
591
|
+
"internalType": "string",
|
592
|
+
"name": "admin",
|
593
|
+
"type": "string"
|
459
594
|
},
|
460
595
|
{
|
461
596
|
"indexed": false,
|
462
|
-
"internalType": "uint48",
|
463
|
-
"name": "since",
|
464
|
-
"type": "uint48"
|
465
|
-
}
|
466
|
-
],
|
467
|
-
"name": "RoleGrantDelayChanged",
|
468
|
-
"type": "event"
|
469
|
-
},
|
470
|
-
{
|
471
|
-
"anonymous": false,
|
472
|
-
"inputs": [
|
473
|
-
{
|
474
|
-
"indexed": true,
|
475
|
-
"internalType": "uint64",
|
476
|
-
"name": "roleId",
|
477
|
-
"type": "uint64"
|
478
|
-
},
|
479
|
-
{
|
480
|
-
"indexed": true,
|
481
597
|
"internalType": "address",
|
482
598
|
"name": "account",
|
483
599
|
"type": "address"
|
484
600
|
},
|
485
601
|
{
|
486
602
|
"indexed": false,
|
487
|
-
"internalType": "
|
488
|
-
"name": "
|
489
|
-
"type": "
|
490
|
-
},
|
491
|
-
{
|
492
|
-
"indexed": false,
|
493
|
-
"internalType": "uint48",
|
494
|
-
"name": "since",
|
495
|
-
"type": "uint48"
|
496
|
-
},
|
497
|
-
{
|
498
|
-
"indexed": false,
|
499
|
-
"internalType": "bool",
|
500
|
-
"name": "newMember",
|
501
|
-
"type": "bool"
|
502
|
-
}
|
503
|
-
],
|
504
|
-
"name": "RoleGranted",
|
505
|
-
"type": "event"
|
506
|
-
},
|
507
|
-
{
|
508
|
-
"anonymous": false,
|
509
|
-
"inputs": [
|
510
|
-
{
|
511
|
-
"indexed": true,
|
512
|
-
"internalType": "uint64",
|
513
|
-
"name": "roleId",
|
514
|
-
"type": "uint64"
|
515
|
-
},
|
516
|
-
{
|
517
|
-
"indexed": true,
|
518
|
-
"internalType": "uint64",
|
519
|
-
"name": "guardian",
|
520
|
-
"type": "uint64"
|
603
|
+
"internalType": "string",
|
604
|
+
"name": "roleName",
|
605
|
+
"type": "string"
|
521
606
|
}
|
522
607
|
],
|
523
|
-
"name": "
|
608
|
+
"name": "LogAccessAdminRoleGranted",
|
524
609
|
"type": "event"
|
525
610
|
},
|
526
611
|
{
|
527
612
|
"anonymous": false,
|
528
613
|
"inputs": [
|
529
|
-
{
|
530
|
-
"indexed": true,
|
531
|
-
"internalType": "uint64",
|
532
|
-
"name": "roleId",
|
533
|
-
"type": "uint64"
|
534
|
-
},
|
535
614
|
{
|
536
615
|
"indexed": false,
|
537
616
|
"internalType": "string",
|
538
|
-
"name": "
|
617
|
+
"name": "admin",
|
539
618
|
"type": "string"
|
540
|
-
}
|
541
|
-
],
|
542
|
-
"name": "RoleLabel",
|
543
|
-
"type": "event"
|
544
|
-
},
|
545
|
-
{
|
546
|
-
"anonymous": false,
|
547
|
-
"inputs": [
|
548
|
-
{
|
549
|
-
"indexed": true,
|
550
|
-
"internalType": "uint64",
|
551
|
-
"name": "roleId",
|
552
|
-
"type": "uint64"
|
553
619
|
},
|
554
620
|
{
|
555
|
-
"indexed":
|
621
|
+
"indexed": false,
|
556
622
|
"internalType": "address",
|
557
623
|
"name": "account",
|
558
624
|
"type": "address"
|
559
|
-
}
|
560
|
-
],
|
561
|
-
"name": "RoleRevoked",
|
562
|
-
"type": "event"
|
563
|
-
},
|
564
|
-
{
|
565
|
-
"anonymous": false,
|
566
|
-
"inputs": [
|
567
|
-
{
|
568
|
-
"indexed": true,
|
569
|
-
"internalType": "address",
|
570
|
-
"name": "target",
|
571
|
-
"type": "address"
|
572
|
-
},
|
573
|
-
{
|
574
|
-
"indexed": false,
|
575
|
-
"internalType": "uint32",
|
576
|
-
"name": "delay",
|
577
|
-
"type": "uint32"
|
578
625
|
},
|
579
626
|
{
|
580
627
|
"indexed": false,
|
581
|
-
"internalType": "
|
582
|
-
"name": "
|
583
|
-
"type": "
|
628
|
+
"internalType": "string",
|
629
|
+
"name": "roleName",
|
630
|
+
"type": "string"
|
584
631
|
}
|
585
632
|
],
|
586
|
-
"name": "
|
633
|
+
"name": "LogAccessAdminRoleRevoked",
|
587
634
|
"type": "event"
|
588
635
|
},
|
589
636
|
{
|
590
637
|
"anonymous": false,
|
591
638
|
"inputs": [
|
592
639
|
{
|
593
|
-
"indexed":
|
594
|
-
"internalType": "
|
595
|
-
"name": "
|
596
|
-
"type": "
|
640
|
+
"indexed": false,
|
641
|
+
"internalType": "string",
|
642
|
+
"name": "admin",
|
643
|
+
"type": "string"
|
597
644
|
},
|
598
645
|
{
|
599
646
|
"indexed": false,
|
600
|
-
"internalType": "bool",
|
601
|
-
"name": "closed",
|
602
|
-
"type": "bool"
|
603
|
-
}
|
604
|
-
],
|
605
|
-
"name": "TargetClosed",
|
606
|
-
"type": "event"
|
607
|
-
},
|
608
|
-
{
|
609
|
-
"anonymous": false,
|
610
|
-
"inputs": [
|
611
|
-
{
|
612
|
-
"indexed": true,
|
613
647
|
"internalType": "address",
|
614
648
|
"name": "target",
|
615
649
|
"type": "address"
|
616
650
|
},
|
617
651
|
{
|
618
652
|
"indexed": false,
|
619
|
-
"internalType": "
|
620
|
-
"name": "
|
621
|
-
"type": "
|
622
|
-
},
|
623
|
-
{
|
624
|
-
"indexed": true,
|
625
|
-
"internalType": "uint64",
|
626
|
-
"name": "roleId",
|
627
|
-
"type": "uint64"
|
653
|
+
"internalType": "string",
|
654
|
+
"name": "name",
|
655
|
+
"type": "string"
|
628
656
|
}
|
629
657
|
],
|
630
|
-
"name": "
|
658
|
+
"name": "LogAccessAdminTargetCreated",
|
631
659
|
"type": "event"
|
632
660
|
},
|
633
661
|
{
|
634
|
-
"inputs": [
|
635
|
-
|
636
|
-
|
637
|
-
"name": "caller",
|
638
|
-
"type": "address"
|
639
|
-
},
|
662
|
+
"inputs": [],
|
663
|
+
"name": "authority",
|
664
|
+
"outputs": [
|
640
665
|
{
|
641
666
|
"internalType": "address",
|
642
|
-
"name": "
|
667
|
+
"name": "",
|
643
668
|
"type": "address"
|
644
|
-
},
|
645
|
-
{
|
646
|
-
"internalType": "bytes4",
|
647
|
-
"name": "selector",
|
648
|
-
"type": "bytes4"
|
649
|
-
}
|
650
|
-
],
|
651
|
-
"name": "canCall",
|
652
|
-
"outputs": [
|
653
|
-
{
|
654
|
-
"internalType": "bool",
|
655
|
-
"name": "allowed",
|
656
|
-
"type": "bool"
|
657
|
-
},
|
658
|
-
{
|
659
|
-
"internalType": "uint32",
|
660
|
-
"name": "delay",
|
661
|
-
"type": "uint32"
|
662
669
|
}
|
663
670
|
],
|
664
671
|
"stateMutability": "view",
|
@@ -666,85 +673,60 @@
|
|
666
673
|
},
|
667
674
|
{
|
668
675
|
"inputs": [
|
669
|
-
{
|
670
|
-
"internalType": "address",
|
671
|
-
"name": "caller",
|
672
|
-
"type": "address"
|
673
|
-
},
|
674
676
|
{
|
675
677
|
"internalType": "address",
|
676
678
|
"name": "target",
|
677
679
|
"type": "address"
|
678
|
-
},
|
679
|
-
{
|
680
|
-
"internalType": "bytes",
|
681
|
-
"name": "data",
|
682
|
-
"type": "bytes"
|
683
680
|
}
|
684
681
|
],
|
685
|
-
"name": "
|
682
|
+
"name": "authorizedFunctions",
|
686
683
|
"outputs": [
|
687
684
|
{
|
688
|
-
"internalType": "
|
689
|
-
"name": "",
|
690
|
-
"type": "
|
685
|
+
"internalType": "uint256",
|
686
|
+
"name": "numberOfFunctions",
|
687
|
+
"type": "uint256"
|
691
688
|
}
|
692
689
|
],
|
693
|
-
"stateMutability": "
|
690
|
+
"stateMutability": "view",
|
694
691
|
"type": "function"
|
695
692
|
},
|
696
693
|
{
|
697
|
-
"inputs": [
|
694
|
+
"inputs": [],
|
695
|
+
"name": "deployer",
|
696
|
+
"outputs": [
|
698
697
|
{
|
699
698
|
"internalType": "address",
|
700
|
-
"name": "
|
699
|
+
"name": "",
|
701
700
|
"type": "address"
|
702
|
-
},
|
703
|
-
{
|
704
|
-
"internalType": "bytes",
|
705
|
-
"name": "data",
|
706
|
-
"type": "bytes"
|
707
701
|
}
|
708
702
|
],
|
709
|
-
"
|
710
|
-
"outputs": [],
|
711
|
-
"stateMutability": "nonpayable",
|
703
|
+
"stateMutability": "view",
|
712
704
|
"type": "function"
|
713
705
|
},
|
714
706
|
{
|
715
|
-
"inputs": [
|
707
|
+
"inputs": [],
|
708
|
+
"name": "getAdminRole",
|
709
|
+
"outputs": [
|
716
710
|
{
|
717
|
-
"internalType": "
|
711
|
+
"internalType": "RoleId",
|
718
712
|
"name": "roleId",
|
719
713
|
"type": "uint64"
|
720
|
-
},
|
721
|
-
{
|
722
|
-
"internalType": "string",
|
723
|
-
"name": "roleName",
|
724
|
-
"type": "string"
|
725
714
|
}
|
726
715
|
],
|
727
|
-
"
|
728
|
-
"outputs": [],
|
729
|
-
"stateMutability": "nonpayable",
|
716
|
+
"stateMutability": "view",
|
730
717
|
"type": "function"
|
731
718
|
},
|
732
719
|
{
|
733
|
-
"inputs": [
|
720
|
+
"inputs": [],
|
721
|
+
"name": "getAuthorization",
|
722
|
+
"outputs": [
|
734
723
|
{
|
735
|
-
"internalType": "
|
736
|
-
"name": "
|
724
|
+
"internalType": "contract IAuthorization",
|
725
|
+
"name": "authorization",
|
737
726
|
"type": "address"
|
738
|
-
},
|
739
|
-
{
|
740
|
-
"internalType": "string",
|
741
|
-
"name": "name",
|
742
|
-
"type": "string"
|
743
727
|
}
|
744
728
|
],
|
745
|
-
"
|
746
|
-
"outputs": [],
|
747
|
-
"stateMutability": "nonpayable",
|
729
|
+
"stateMutability": "view",
|
748
730
|
"type": "function"
|
749
731
|
},
|
750
732
|
{
|
@@ -755,145 +737,104 @@
|
|
755
737
|
"type": "address"
|
756
738
|
},
|
757
739
|
{
|
758
|
-
"internalType": "
|
759
|
-
"name": "
|
760
|
-
"type": "
|
740
|
+
"internalType": "uint256",
|
741
|
+
"name": "idx",
|
742
|
+
"type": "uint256"
|
761
743
|
}
|
762
744
|
],
|
763
|
-
"name": "
|
745
|
+
"name": "getAuthorizedFunction",
|
764
746
|
"outputs": [
|
765
747
|
{
|
766
|
-
"
|
767
|
-
|
768
|
-
|
748
|
+
"components": [
|
749
|
+
{
|
750
|
+
"internalType": "Str",
|
751
|
+
"name": "name",
|
752
|
+
"type": "bytes32"
|
753
|
+
},
|
754
|
+
{
|
755
|
+
"internalType": "Selector",
|
756
|
+
"name": "selector",
|
757
|
+
"type": "bytes4"
|
758
|
+
},
|
759
|
+
{
|
760
|
+
"internalType": "Timestamp",
|
761
|
+
"name": "createdAt",
|
762
|
+
"type": "uint40"
|
763
|
+
}
|
764
|
+
],
|
765
|
+
"internalType": "struct IAccess.FunctionInfo",
|
766
|
+
"name": "func",
|
767
|
+
"type": "tuple"
|
768
|
+
},
|
769
|
+
{
|
770
|
+
"internalType": "RoleId",
|
771
|
+
"name": "roleId",
|
772
|
+
"type": "uint64"
|
769
773
|
}
|
770
774
|
],
|
771
|
-
"stateMutability": "
|
775
|
+
"stateMutability": "view",
|
772
776
|
"type": "function"
|
773
777
|
},
|
774
778
|
{
|
775
779
|
"inputs": [],
|
776
|
-
"name": "
|
780
|
+
"name": "getLinkedNftId",
|
777
781
|
"outputs": [
|
778
782
|
{
|
779
|
-
"internalType": "
|
780
|
-
"name": "",
|
781
|
-
"type": "
|
783
|
+
"internalType": "NftId",
|
784
|
+
"name": "linkedNftId",
|
785
|
+
"type": "uint96"
|
782
786
|
}
|
783
787
|
],
|
784
788
|
"stateMutability": "view",
|
785
789
|
"type": "function"
|
786
790
|
},
|
787
791
|
{
|
788
|
-
"inputs": [
|
789
|
-
|
790
|
-
|
791
|
-
"name": "roleId",
|
792
|
-
"type": "uint64"
|
793
|
-
},
|
792
|
+
"inputs": [],
|
793
|
+
"name": "getLinkedOwner",
|
794
|
+
"outputs": [
|
794
795
|
{
|
795
796
|
"internalType": "address",
|
796
|
-
"name": "
|
797
|
+
"name": "linkedOwner",
|
797
798
|
"type": "address"
|
798
799
|
}
|
799
800
|
],
|
800
|
-
"name": "getAccess",
|
801
|
-
"outputs": [
|
802
|
-
{
|
803
|
-
"internalType": "uint48",
|
804
|
-
"name": "",
|
805
|
-
"type": "uint48"
|
806
|
-
},
|
807
|
-
{
|
808
|
-
"internalType": "uint32",
|
809
|
-
"name": "",
|
810
|
-
"type": "uint32"
|
811
|
-
},
|
812
|
-
{
|
813
|
-
"internalType": "uint32",
|
814
|
-
"name": "",
|
815
|
-
"type": "uint32"
|
816
|
-
},
|
817
|
-
{
|
818
|
-
"internalType": "uint48",
|
819
|
-
"name": "",
|
820
|
-
"type": "uint48"
|
821
|
-
}
|
822
|
-
],
|
823
801
|
"stateMutability": "view",
|
824
802
|
"type": "function"
|
825
803
|
},
|
826
804
|
{
|
827
|
-
"inputs": [
|
828
|
-
|
829
|
-
"internalType": "bytes32",
|
830
|
-
"name": "id",
|
831
|
-
"type": "bytes32"
|
832
|
-
}
|
833
|
-
],
|
834
|
-
"name": "getNonce",
|
805
|
+
"inputs": [],
|
806
|
+
"name": "getPublicRole",
|
835
807
|
"outputs": [
|
836
808
|
{
|
837
|
-
"internalType": "
|
838
|
-
"name": "",
|
839
|
-
"type": "uint32"
|
840
|
-
}
|
841
|
-
],
|
842
|
-
"stateMutability": "view",
|
843
|
-
"type": "function"
|
844
|
-
},
|
845
|
-
{
|
846
|
-
"inputs": [
|
847
|
-
{
|
848
|
-
"internalType": "uint64",
|
809
|
+
"internalType": "RoleId",
|
849
810
|
"name": "roleId",
|
850
811
|
"type": "uint64"
|
851
812
|
}
|
852
813
|
],
|
853
|
-
"name": "getRoleAdmin",
|
854
|
-
"outputs": [
|
855
|
-
{
|
856
|
-
"internalType": "uint64",
|
857
|
-
"name": "",
|
858
|
-
"type": "uint64"
|
859
|
-
}
|
860
|
-
],
|
861
814
|
"stateMutability": "view",
|
862
815
|
"type": "function"
|
863
816
|
},
|
864
817
|
{
|
865
|
-
"inputs": [
|
866
|
-
|
867
|
-
"internalType": "uint64",
|
868
|
-
"name": "roleId",
|
869
|
-
"type": "uint64"
|
870
|
-
}
|
871
|
-
],
|
872
|
-
"name": "getRoleGrantDelay",
|
818
|
+
"inputs": [],
|
819
|
+
"name": "getRegistry",
|
873
820
|
"outputs": [
|
874
821
|
{
|
875
|
-
"internalType": "
|
822
|
+
"internalType": "contract IRegistry",
|
876
823
|
"name": "",
|
877
|
-
"type": "
|
824
|
+
"type": "address"
|
878
825
|
}
|
879
826
|
],
|
880
827
|
"stateMutability": "view",
|
881
828
|
"type": "function"
|
882
829
|
},
|
883
830
|
{
|
884
|
-
"inputs": [
|
885
|
-
|
886
|
-
"internalType": "uint64",
|
887
|
-
"name": "roleId",
|
888
|
-
"type": "uint64"
|
889
|
-
}
|
890
|
-
],
|
891
|
-
"name": "getRoleGuardian",
|
831
|
+
"inputs": [],
|
832
|
+
"name": "getRelease",
|
892
833
|
"outputs": [
|
893
834
|
{
|
894
|
-
"internalType": "
|
895
|
-
"name": "",
|
896
|
-
"type": "
|
835
|
+
"internalType": "VersionPart",
|
836
|
+
"name": "release",
|
837
|
+
"type": "uint8"
|
897
838
|
}
|
898
839
|
],
|
899
840
|
"stateMutability": "view",
|
@@ -902,15 +843,15 @@
|
|
902
843
|
{
|
903
844
|
"inputs": [
|
904
845
|
{
|
905
|
-
"internalType": "
|
906
|
-
"name": "
|
907
|
-
"type": "
|
846
|
+
"internalType": "string",
|
847
|
+
"name": "name",
|
848
|
+
"type": "string"
|
908
849
|
}
|
909
850
|
],
|
910
|
-
"name": "
|
851
|
+
"name": "getRoleForName",
|
911
852
|
"outputs": [
|
912
853
|
{
|
913
|
-
"internalType": "
|
854
|
+
"internalType": "RoleId",
|
914
855
|
"name": "roleId",
|
915
856
|
"type": "uint64"
|
916
857
|
}
|
@@ -921,15 +862,15 @@
|
|
921
862
|
{
|
922
863
|
"inputs": [
|
923
864
|
{
|
924
|
-
"internalType": "
|
925
|
-
"name": "
|
926
|
-
"type": "
|
865
|
+
"internalType": "uint256",
|
866
|
+
"name": "idx",
|
867
|
+
"type": "uint256"
|
927
868
|
}
|
928
869
|
],
|
929
870
|
"name": "getRoleId",
|
930
871
|
"outputs": [
|
931
872
|
{
|
932
|
-
"internalType": "
|
873
|
+
"internalType": "RoleId",
|
933
874
|
"name": "roleId",
|
934
875
|
"type": "uint64"
|
935
876
|
}
|
@@ -940,7 +881,7 @@
|
|
940
881
|
{
|
941
882
|
"inputs": [
|
942
883
|
{
|
943
|
-
"internalType": "
|
884
|
+
"internalType": "RoleId",
|
944
885
|
"name": "roleId",
|
945
886
|
"type": "uint64"
|
946
887
|
}
|
@@ -950,23 +891,38 @@
|
|
950
891
|
{
|
951
892
|
"components": [
|
952
893
|
{
|
953
|
-
"internalType": "
|
954
|
-
"name": "
|
894
|
+
"internalType": "RoleId",
|
895
|
+
"name": "adminRoleId",
|
955
896
|
"type": "uint64"
|
956
897
|
},
|
957
898
|
{
|
958
|
-
"internalType": "
|
959
|
-
"name": "
|
960
|
-
"type": "
|
899
|
+
"internalType": "enum IAccess.RoleType",
|
900
|
+
"name": "roleType",
|
901
|
+
"type": "uint8"
|
902
|
+
},
|
903
|
+
{
|
904
|
+
"internalType": "uint32",
|
905
|
+
"name": "maxMemberCount",
|
906
|
+
"type": "uint32"
|
961
907
|
},
|
962
908
|
{
|
963
909
|
"internalType": "Timestamp",
|
964
910
|
"name": "createdAt",
|
965
911
|
"type": "uint40"
|
912
|
+
},
|
913
|
+
{
|
914
|
+
"internalType": "Timestamp",
|
915
|
+
"name": "pausedAt",
|
916
|
+
"type": "uint40"
|
917
|
+
},
|
918
|
+
{
|
919
|
+
"internalType": "Str",
|
920
|
+
"name": "name",
|
921
|
+
"type": "bytes32"
|
966
922
|
}
|
967
923
|
],
|
968
|
-
"internalType": "struct
|
969
|
-
"name": "",
|
924
|
+
"internalType": "struct IAccess.RoleInfo",
|
925
|
+
"name": "roleInfo",
|
970
926
|
"type": "tuple"
|
971
927
|
}
|
972
928
|
],
|
@@ -976,7 +932,7 @@
|
|
976
932
|
{
|
977
933
|
"inputs": [
|
978
934
|
{
|
979
|
-
"internalType": "
|
935
|
+
"internalType": "RoleId",
|
980
936
|
"name": "roleId",
|
981
937
|
"type": "uint64"
|
982
938
|
},
|
@@ -990,7 +946,7 @@
|
|
990
946
|
"outputs": [
|
991
947
|
{
|
992
948
|
"internalType": "address",
|
993
|
-
"name": "
|
949
|
+
"name": "account",
|
994
950
|
"type": "address"
|
995
951
|
}
|
996
952
|
],
|
@@ -999,88 +955,18 @@
|
|
999
955
|
},
|
1000
956
|
{
|
1001
957
|
"inputs": [
|
1002
|
-
{
|
1003
|
-
"internalType": "uint64",
|
1004
|
-
"name": "roleId",
|
1005
|
-
"type": "uint64"
|
1006
|
-
}
|
1007
|
-
],
|
1008
|
-
"name": "getRoleMembers",
|
1009
|
-
"outputs": [
|
1010
|
-
{
|
1011
|
-
"internalType": "uint256",
|
1012
|
-
"name": "numberOfMembers",
|
1013
|
-
"type": "uint256"
|
1014
|
-
}
|
1015
|
-
],
|
1016
|
-
"stateMutability": "view",
|
1017
|
-
"type": "function"
|
1018
|
-
},
|
1019
|
-
{
|
1020
|
-
"inputs": [],
|
1021
|
-
"name": "getRoles",
|
1022
|
-
"outputs": [
|
1023
958
|
{
|
1024
959
|
"internalType": "uint256",
|
1025
|
-
"name": "
|
960
|
+
"name": "idx",
|
1026
961
|
"type": "uint256"
|
1027
962
|
}
|
1028
963
|
],
|
1029
|
-
"stateMutability": "view",
|
1030
|
-
"type": "function"
|
1031
|
-
},
|
1032
|
-
{
|
1033
|
-
"inputs": [
|
1034
|
-
{
|
1035
|
-
"internalType": "bytes32",
|
1036
|
-
"name": "id",
|
1037
|
-
"type": "bytes32"
|
1038
|
-
}
|
1039
|
-
],
|
1040
|
-
"name": "getSchedule",
|
1041
|
-
"outputs": [
|
1042
|
-
{
|
1043
|
-
"internalType": "uint48",
|
1044
|
-
"name": "",
|
1045
|
-
"type": "uint48"
|
1046
|
-
}
|
1047
|
-
],
|
1048
|
-
"stateMutability": "view",
|
1049
|
-
"type": "function"
|
1050
|
-
},
|
1051
|
-
{
|
1052
|
-
"inputs": [
|
1053
|
-
{
|
1054
|
-
"internalType": "string",
|
1055
|
-
"name": "name",
|
1056
|
-
"type": "string"
|
1057
|
-
}
|
1058
|
-
],
|
1059
964
|
"name": "getTargetAddress",
|
1060
965
|
"outputs": [
|
1061
966
|
{
|
1062
967
|
"internalType": "address",
|
1063
|
-
"name": "
|
1064
|
-
"type": "address"
|
1065
|
-
}
|
1066
|
-
],
|
1067
|
-
"stateMutability": "view",
|
1068
|
-
"type": "function"
|
1069
|
-
},
|
1070
|
-
{
|
1071
|
-
"inputs": [
|
1072
|
-
{
|
1073
|
-
"internalType": "address",
|
1074
|
-
"name": "target",
|
1075
|
-
"type": "address"
|
1076
|
-
}
|
1077
|
-
],
|
1078
|
-
"name": "getTargetAdminDelay",
|
1079
|
-
"outputs": [
|
1080
|
-
{
|
1081
|
-
"internalType": "uint32",
|
1082
|
-
"name": "",
|
1083
|
-
"type": "uint32"
|
968
|
+
"name": "target",
|
969
|
+
"type": "address"
|
1084
970
|
}
|
1085
971
|
],
|
1086
972
|
"stateMutability": "view",
|
@@ -1089,22 +975,17 @@
|
|
1089
975
|
{
|
1090
976
|
"inputs": [
|
1091
977
|
{
|
1092
|
-
"internalType": "
|
1093
|
-
"name": "
|
1094
|
-
"type": "
|
1095
|
-
},
|
1096
|
-
{
|
1097
|
-
"internalType": "bytes4",
|
1098
|
-
"name": "selector",
|
1099
|
-
"type": "bytes4"
|
978
|
+
"internalType": "Str",
|
979
|
+
"name": "name",
|
980
|
+
"type": "bytes32"
|
1100
981
|
}
|
1101
982
|
],
|
1102
|
-
"name": "
|
983
|
+
"name": "getTargetForName",
|
1103
984
|
"outputs": [
|
1104
985
|
{
|
1105
|
-
"internalType": "
|
1106
|
-
"name": "",
|
1107
|
-
"type": "
|
986
|
+
"internalType": "address",
|
987
|
+
"name": "target",
|
988
|
+
"type": "address"
|
1108
989
|
}
|
1109
990
|
],
|
1110
991
|
"stateMutability": "view",
|
@@ -1123,14 +1004,14 @@
|
|
1123
1004
|
{
|
1124
1005
|
"components": [
|
1125
1006
|
{
|
1126
|
-
"internalType": "
|
1127
|
-
"name": "
|
1128
|
-
"type": "
|
1007
|
+
"internalType": "Str",
|
1008
|
+
"name": "name",
|
1009
|
+
"type": "bytes32"
|
1129
1010
|
},
|
1130
1011
|
{
|
1131
|
-
"internalType": "
|
1132
|
-
"name": "
|
1133
|
-
"type": "
|
1012
|
+
"internalType": "bool",
|
1013
|
+
"name": "isCustom",
|
1014
|
+
"type": "bool"
|
1134
1015
|
},
|
1135
1016
|
{
|
1136
1017
|
"internalType": "Timestamp",
|
@@ -1138,8 +1019,8 @@
|
|
1138
1019
|
"type": "uint40"
|
1139
1020
|
}
|
1140
1021
|
],
|
1141
|
-
"internalType": "struct
|
1142
|
-
"name": "",
|
1022
|
+
"internalType": "struct IAccess.TargetInfo",
|
1023
|
+
"name": "targetInfo",
|
1143
1024
|
"type": "tuple"
|
1144
1025
|
}
|
1145
1026
|
],
|
@@ -1148,51 +1029,23 @@
|
|
1148
1029
|
},
|
1149
1030
|
{
|
1150
1031
|
"inputs": [
|
1151
|
-
{
|
1152
|
-
"internalType": "uint64",
|
1153
|
-
"name": "roleId",
|
1154
|
-
"type": "uint64"
|
1155
|
-
},
|
1156
1032
|
{
|
1157
1033
|
"internalType": "address",
|
1158
1034
|
"name": "account",
|
1159
1035
|
"type": "address"
|
1160
1036
|
},
|
1161
1037
|
{
|
1162
|
-
"internalType": "
|
1163
|
-
"name": "executionDelay",
|
1164
|
-
"type": "uint32"
|
1165
|
-
}
|
1166
|
-
],
|
1167
|
-
"name": "grantRole",
|
1168
|
-
"outputs": [],
|
1169
|
-
"stateMutability": "nonpayable",
|
1170
|
-
"type": "function"
|
1171
|
-
},
|
1172
|
-
{
|
1173
|
-
"inputs": [
|
1174
|
-
{
|
1175
|
-
"internalType": "uint64",
|
1038
|
+
"internalType": "RoleId",
|
1176
1039
|
"name": "roleId",
|
1177
1040
|
"type": "uint64"
|
1178
|
-
},
|
1179
|
-
{
|
1180
|
-
"internalType": "address",
|
1181
|
-
"name": "account",
|
1182
|
-
"type": "address"
|
1183
1041
|
}
|
1184
1042
|
],
|
1185
|
-
"name": "
|
1043
|
+
"name": "hasAdminRole",
|
1186
1044
|
"outputs": [
|
1187
1045
|
{
|
1188
1046
|
"internalType": "bool",
|
1189
1047
|
"name": "",
|
1190
1048
|
"type": "bool"
|
1191
|
-
},
|
1192
|
-
{
|
1193
|
-
"internalType": "uint32",
|
1194
|
-
"name": "",
|
1195
|
-
"type": "uint32"
|
1196
1049
|
}
|
1197
1050
|
],
|
1198
1051
|
"stateMutability": "view",
|
@@ -1202,44 +1055,20 @@
|
|
1202
1055
|
"inputs": [
|
1203
1056
|
{
|
1204
1057
|
"internalType": "address",
|
1205
|
-
"name": "
|
1206
|
-
"type": "address"
|
1207
|
-
},
|
1208
|
-
{
|
1209
|
-
"internalType": "address",
|
1210
|
-
"name": "target",
|
1058
|
+
"name": "account",
|
1211
1059
|
"type": "address"
|
1212
1060
|
},
|
1213
1061
|
{
|
1214
|
-
"internalType": "
|
1215
|
-
"name": "data",
|
1216
|
-
"type": "bytes"
|
1217
|
-
}
|
1218
|
-
],
|
1219
|
-
"name": "hashOperation",
|
1220
|
-
"outputs": [
|
1221
|
-
{
|
1222
|
-
"internalType": "bytes32",
|
1223
|
-
"name": "",
|
1224
|
-
"type": "bytes32"
|
1225
|
-
}
|
1226
|
-
],
|
1227
|
-
"stateMutability": "view",
|
1228
|
-
"type": "function"
|
1229
|
-
},
|
1230
|
-
{
|
1231
|
-
"inputs": [
|
1232
|
-
{
|
1233
|
-
"internalType": "uint64",
|
1062
|
+
"internalType": "RoleId",
|
1234
1063
|
"name": "roleId",
|
1235
1064
|
"type": "uint64"
|
1236
1065
|
}
|
1237
1066
|
],
|
1238
|
-
"name": "
|
1067
|
+
"name": "hasRole",
|
1239
1068
|
"outputs": [
|
1240
1069
|
{
|
1241
1070
|
"internalType": "bool",
|
1242
|
-
"name": "
|
1071
|
+
"name": "",
|
1243
1072
|
"type": "bool"
|
1244
1073
|
}
|
1245
1074
|
],
|
@@ -1247,37 +1076,25 @@
|
|
1247
1076
|
"type": "function"
|
1248
1077
|
},
|
1249
1078
|
{
|
1250
|
-
"inputs": [
|
1251
|
-
|
1252
|
-
"internalType": "string",
|
1253
|
-
"name": "name",
|
1254
|
-
"type": "string"
|
1255
|
-
}
|
1256
|
-
],
|
1257
|
-
"name": "isRoleNameExists",
|
1079
|
+
"inputs": [],
|
1080
|
+
"name": "isConsumingScheduledOp",
|
1258
1081
|
"outputs": [
|
1259
1082
|
{
|
1260
|
-
"internalType": "
|
1083
|
+
"internalType": "bytes4",
|
1261
1084
|
"name": "",
|
1262
|
-
"type": "
|
1085
|
+
"type": "bytes4"
|
1263
1086
|
}
|
1264
1087
|
],
|
1265
1088
|
"stateMutability": "view",
|
1266
1089
|
"type": "function"
|
1267
1090
|
},
|
1268
1091
|
{
|
1269
|
-
"inputs": [
|
1270
|
-
|
1271
|
-
"internalType": "address",
|
1272
|
-
"name": "target",
|
1273
|
-
"type": "address"
|
1274
|
-
}
|
1275
|
-
],
|
1276
|
-
"name": "isTargetClosed",
|
1092
|
+
"inputs": [],
|
1093
|
+
"name": "isLocked",
|
1277
1094
|
"outputs": [
|
1278
1095
|
{
|
1279
1096
|
"internalType": "bool",
|
1280
|
-
"name": "",
|
1097
|
+
"name": "locked",
|
1281
1098
|
"type": "bool"
|
1282
1099
|
}
|
1283
1100
|
],
|
@@ -1292,11 +1109,11 @@
|
|
1292
1109
|
"type": "address"
|
1293
1110
|
}
|
1294
1111
|
],
|
1295
|
-
"name": "
|
1112
|
+
"name": "isTargetLocked",
|
1296
1113
|
"outputs": [
|
1297
1114
|
{
|
1298
1115
|
"internalType": "bool",
|
1299
|
-
"name": "",
|
1116
|
+
"name": "locked",
|
1300
1117
|
"type": "bool"
|
1301
1118
|
}
|
1302
1119
|
],
|
@@ -1306,16 +1123,16 @@
|
|
1306
1123
|
{
|
1307
1124
|
"inputs": [
|
1308
1125
|
{
|
1309
|
-
"internalType": "
|
1310
|
-
"name": "
|
1311
|
-
"type": "
|
1126
|
+
"internalType": "RoleId",
|
1127
|
+
"name": "roleId",
|
1128
|
+
"type": "uint64"
|
1312
1129
|
}
|
1313
1130
|
],
|
1314
|
-
"name": "
|
1131
|
+
"name": "roleExists",
|
1315
1132
|
"outputs": [
|
1316
1133
|
{
|
1317
1134
|
"internalType": "bool",
|
1318
|
-
"name": "",
|
1135
|
+
"name": "exists",
|
1319
1136
|
"type": "bool"
|
1320
1137
|
}
|
1321
1138
|
],
|
@@ -1325,66 +1142,44 @@
|
|
1325
1142
|
{
|
1326
1143
|
"inputs": [
|
1327
1144
|
{
|
1328
|
-
"internalType": "
|
1145
|
+
"internalType": "RoleId",
|
1329
1146
|
"name": "roleId",
|
1330
1147
|
"type": "uint64"
|
1331
|
-
},
|
1332
|
-
{
|
1333
|
-
"internalType": "string",
|
1334
|
-
"name": "label",
|
1335
|
-
"type": "string"
|
1336
1148
|
}
|
1337
1149
|
],
|
1338
|
-
"name": "
|
1339
|
-
"outputs": [],
|
1340
|
-
"stateMutability": "nonpayable",
|
1341
|
-
"type": "function"
|
1342
|
-
},
|
1343
|
-
{
|
1344
|
-
"inputs": [],
|
1345
|
-
"name": "minSetback",
|
1150
|
+
"name": "roleMembers",
|
1346
1151
|
"outputs": [
|
1347
1152
|
{
|
1348
|
-
"internalType": "
|
1349
|
-
"name": "",
|
1350
|
-
"type": "
|
1153
|
+
"internalType": "uint256",
|
1154
|
+
"name": "numberOfMembers",
|
1155
|
+
"type": "uint256"
|
1351
1156
|
}
|
1352
1157
|
],
|
1353
1158
|
"stateMutability": "view",
|
1354
1159
|
"type": "function"
|
1355
1160
|
},
|
1356
1161
|
{
|
1357
|
-
"inputs": [
|
1358
|
-
|
1359
|
-
|
1360
|
-
"name": "roleId",
|
1361
|
-
"type": "uint64"
|
1362
|
-
},
|
1162
|
+
"inputs": [],
|
1163
|
+
"name": "roles",
|
1164
|
+
"outputs": [
|
1363
1165
|
{
|
1364
|
-
"internalType": "
|
1365
|
-
"name": "
|
1366
|
-
"type": "
|
1166
|
+
"internalType": "uint256",
|
1167
|
+
"name": "numberOfRoles",
|
1168
|
+
"type": "uint256"
|
1367
1169
|
}
|
1368
1170
|
],
|
1369
|
-
"
|
1370
|
-
"outputs": [],
|
1371
|
-
"stateMutability": "nonpayable",
|
1171
|
+
"stateMutability": "view",
|
1372
1172
|
"type": "function"
|
1373
1173
|
},
|
1374
1174
|
{
|
1375
1175
|
"inputs": [
|
1376
|
-
{
|
1377
|
-
"internalType": "uint64",
|
1378
|
-
"name": "roleId",
|
1379
|
-
"type": "uint64"
|
1380
|
-
},
|
1381
1176
|
{
|
1382
1177
|
"internalType": "address",
|
1383
|
-
"name": "
|
1178
|
+
"name": "",
|
1384
1179
|
"type": "address"
|
1385
1180
|
}
|
1386
1181
|
],
|
1387
|
-
"name": "
|
1182
|
+
"name": "setAuthority",
|
1388
1183
|
"outputs": [],
|
1389
1184
|
"stateMutability": "nonpayable",
|
1390
1185
|
"type": "function"
|
@@ -1395,163 +1190,30 @@
|
|
1395
1190
|
"internalType": "address",
|
1396
1191
|
"name": "target",
|
1397
1192
|
"type": "address"
|
1398
|
-
},
|
1399
|
-
{
|
1400
|
-
"internalType": "bytes",
|
1401
|
-
"name": "data",
|
1402
|
-
"type": "bytes"
|
1403
|
-
},
|
1404
|
-
{
|
1405
|
-
"internalType": "uint48",
|
1406
|
-
"name": "when",
|
1407
|
-
"type": "uint48"
|
1408
1193
|
}
|
1409
1194
|
],
|
1410
|
-
"name": "
|
1195
|
+
"name": "targetExists",
|
1411
1196
|
"outputs": [
|
1412
|
-
{
|
1413
|
-
"internalType": "bytes32",
|
1414
|
-
"name": "",
|
1415
|
-
"type": "bytes32"
|
1416
|
-
},
|
1417
|
-
{
|
1418
|
-
"internalType": "uint32",
|
1419
|
-
"name": "",
|
1420
|
-
"type": "uint32"
|
1421
|
-
}
|
1422
|
-
],
|
1423
|
-
"stateMutability": "nonpayable",
|
1424
|
-
"type": "function"
|
1425
|
-
},
|
1426
|
-
{
|
1427
|
-
"inputs": [
|
1428
|
-
{
|
1429
|
-
"internalType": "uint64",
|
1430
|
-
"name": "roleId",
|
1431
|
-
"type": "uint64"
|
1432
|
-
},
|
1433
|
-
{
|
1434
|
-
"internalType": "uint32",
|
1435
|
-
"name": "newDelay",
|
1436
|
-
"type": "uint32"
|
1437
|
-
}
|
1438
|
-
],
|
1439
|
-
"name": "setGrantDelay",
|
1440
|
-
"outputs": [],
|
1441
|
-
"stateMutability": "nonpayable",
|
1442
|
-
"type": "function"
|
1443
|
-
},
|
1444
|
-
{
|
1445
|
-
"inputs": [
|
1446
|
-
{
|
1447
|
-
"internalType": "uint64",
|
1448
|
-
"name": "roleId",
|
1449
|
-
"type": "uint64"
|
1450
|
-
},
|
1451
|
-
{
|
1452
|
-
"internalType": "uint64",
|
1453
|
-
"name": "admin",
|
1454
|
-
"type": "uint64"
|
1455
|
-
}
|
1456
|
-
],
|
1457
|
-
"name": "setRoleAdmin",
|
1458
|
-
"outputs": [],
|
1459
|
-
"stateMutability": "nonpayable",
|
1460
|
-
"type": "function"
|
1461
|
-
},
|
1462
|
-
{
|
1463
|
-
"inputs": [
|
1464
|
-
{
|
1465
|
-
"internalType": "uint64",
|
1466
|
-
"name": "roleId",
|
1467
|
-
"type": "uint64"
|
1468
|
-
},
|
1469
|
-
{
|
1470
|
-
"internalType": "uint64",
|
1471
|
-
"name": "guardian",
|
1472
|
-
"type": "uint64"
|
1473
|
-
}
|
1474
|
-
],
|
1475
|
-
"name": "setRoleGuardian",
|
1476
|
-
"outputs": [],
|
1477
|
-
"stateMutability": "nonpayable",
|
1478
|
-
"type": "function"
|
1479
|
-
},
|
1480
|
-
{
|
1481
|
-
"inputs": [
|
1482
|
-
{
|
1483
|
-
"internalType": "address",
|
1484
|
-
"name": "target",
|
1485
|
-
"type": "address"
|
1486
|
-
},
|
1487
|
-
{
|
1488
|
-
"internalType": "uint32",
|
1489
|
-
"name": "newDelay",
|
1490
|
-
"type": "uint32"
|
1491
|
-
}
|
1492
|
-
],
|
1493
|
-
"name": "setTargetAdminDelay",
|
1494
|
-
"outputs": [],
|
1495
|
-
"stateMutability": "nonpayable",
|
1496
|
-
"type": "function"
|
1497
|
-
},
|
1498
|
-
{
|
1499
|
-
"inputs": [
|
1500
|
-
{
|
1501
|
-
"internalType": "address",
|
1502
|
-
"name": "target",
|
1503
|
-
"type": "address"
|
1504
|
-
},
|
1505
1197
|
{
|
1506
1198
|
"internalType": "bool",
|
1507
|
-
"name": "
|
1199
|
+
"name": "exists",
|
1508
1200
|
"type": "bool"
|
1509
1201
|
}
|
1510
1202
|
],
|
1511
|
-
"
|
1512
|
-
"outputs": [],
|
1513
|
-
"stateMutability": "nonpayable",
|
1514
|
-
"type": "function"
|
1515
|
-
},
|
1516
|
-
{
|
1517
|
-
"inputs": [
|
1518
|
-
{
|
1519
|
-
"internalType": "address",
|
1520
|
-
"name": "target",
|
1521
|
-
"type": "address"
|
1522
|
-
},
|
1523
|
-
{
|
1524
|
-
"internalType": "bytes4[]",
|
1525
|
-
"name": "selectors",
|
1526
|
-
"type": "bytes4[]"
|
1527
|
-
},
|
1528
|
-
{
|
1529
|
-
"internalType": "uint64",
|
1530
|
-
"name": "roleId",
|
1531
|
-
"type": "uint64"
|
1532
|
-
}
|
1533
|
-
],
|
1534
|
-
"name": "setTargetFunctionRole",
|
1535
|
-
"outputs": [],
|
1536
|
-
"stateMutability": "nonpayable",
|
1203
|
+
"stateMutability": "view",
|
1537
1204
|
"type": "function"
|
1538
1205
|
},
|
1539
1206
|
{
|
1540
|
-
"inputs": [
|
1541
|
-
|
1542
|
-
|
1543
|
-
"name": "target",
|
1544
|
-
"type": "address"
|
1545
|
-
},
|
1207
|
+
"inputs": [],
|
1208
|
+
"name": "targets",
|
1209
|
+
"outputs": [
|
1546
1210
|
{
|
1547
|
-
"internalType": "
|
1548
|
-
"name": "
|
1549
|
-
"type": "
|
1211
|
+
"internalType": "uint256",
|
1212
|
+
"name": "numberOfTargets",
|
1213
|
+
"type": "uint256"
|
1550
1214
|
}
|
1551
1215
|
],
|
1552
|
-
"
|
1553
|
-
"outputs": [],
|
1554
|
-
"stateMutability": "nonpayable",
|
1216
|
+
"stateMutability": "view",
|
1555
1217
|
"type": "function"
|
1556
1218
|
}
|
1557
1219
|
],
|