@etherisc/gif-next 0.0.2-c8cedfe-604 → 0.0.2-c9577b6-545
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +121 -18
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1293 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +363 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/{instance/IAccessManagerSimple.sol/IAccessManagerSimple.json → authorization/IAccessAdmin.sol/IAccessAdmin.json} +521 -543
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +263 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +295 -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/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +395 -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 +1358 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +419 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1028 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1421 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +834 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +922 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +948 -0
- 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 +1507 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +419 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1978 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +423 -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 +1427 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1187 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1561 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1996 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +534 -310
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +462 -169
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +351 -3036
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1690 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +610 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1100 -340
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +541 -299
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +353 -91
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3648 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → base/Cloneable.sol/Cloneable.json} +38 -2
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/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 +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +30 -112
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
- 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 +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +995 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +427 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → oracle/IOracleComponent.sol/IOracleComponent.json} +398 -368
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +691 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +887 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +943 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +726 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1292 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +419 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1447 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +838 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +947 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +953 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1283 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1078 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1628 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +774 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +753 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +714 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1114 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +419 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1413 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +842 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → product/IApplicationService.sol/IApplicationService.json} +238 -186
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +929 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +912 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → product/IPricingService.sol/IPricingService.json} +306 -187
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +966 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IRiskService.sol/IRiskService.json} +141 -191
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1284 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +786 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +889 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +766 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1072 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +604 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +698 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +595 -186
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +372 -269
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +921 -213
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1886 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +307 -366
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +328 -136
- 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 +1067 -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 +351 -100
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +701 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1589 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +810 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/{RegisterableUpgradable.sol/RegisterableUpgradable.json → ComponentVerifyingService.sol/ComponentVerifyingService.json} +165 -159
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/IComponent.sol/IComponent.json} +316 -256
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1049 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +716 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +46 -26
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +27 -31
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +113 -172
- 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 +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +809 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
- 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 +81 -30
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +54 -48
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +131 -183
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1454 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1030 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1844 -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 +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +766 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1231 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +714 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -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 +4 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
- 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 +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +602 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
- package/contracts/authorization/AccessAdmin.sol +595 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +222 -0
- package/contracts/authorization/IAccess.sol +49 -0
- package/contracts/authorization/IAccessAdmin.sol +137 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +40 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +106 -0
- package/contracts/distribution/BasicDistribution.sol +140 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/distribution/Distribution.sol +296 -0
- package/contracts/distribution/DistributionService.sol +348 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/distribution/IDistributionService.sol +101 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +75 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
- package/contracts/examples/fire/FireProduct.sol +411 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
- package/contracts/instance/BundleSet.sol +126 -0
- package/contracts/instance/IInstance.sol +56 -26
- package/contracts/instance/IInstanceService.sol +78 -16
- package/contracts/instance/Instance.sol +159 -373
- package/contracts/instance/InstanceAdmin.sol +288 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +279 -74
- package/contracts/instance/InstanceService.sol +406 -102
- package/contracts/instance/InstanceServiceManager.sol +14 -31
- package/contracts/instance/InstanceStore.sol +287 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +111 -0
- package/contracts/instance/base/ObjectSet.sol +79 -0
- package/contracts/instance/module/IAccess.sol +29 -21
- package/contracts/instance/module/IBundle.sol +8 -7
- package/contracts/instance/module/IComponents.sol +48 -0
- package/contracts/instance/module/IDistribution.sol +6 -4
- package/contracts/instance/module/IPolicy.sol +58 -19
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +167 -0
- package/contracts/oracle/OracleService.sol +286 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +165 -0
- package/contracts/pool/BasicPoolAuthorization.sol +58 -0
- package/contracts/pool/BundleService.sol +461 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +143 -0
- package/contracts/pool/IPoolComponent.sol +68 -0
- package/contracts/pool/IPoolService.sol +171 -0
- package/contracts/pool/Pool.sol +357 -0
- package/contracts/pool/PoolService.sol +563 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +251 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +53 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +581 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +63 -0
- package/contracts/product/IClaimService.sol +123 -0
- package/contracts/product/IPolicyService.sol +80 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +53 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +683 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +297 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +434 -0
- package/contracts/product/RiskService.sol +96 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +79 -31
- package/contracts/registry/IRegistry.sol +125 -48
- package/contracts/registry/IRegistryService.sol +43 -16
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +530 -304
- package/contracts/registry/RegistryAdmin.sol +448 -0
- package/contracts/registry/RegistryService.sol +146 -288
- package/contracts/registry/RegistryServiceManager.sol +26 -53
- package/contracts/registry/ReleaseLifecycle.sol +30 -0
- package/contracts/registry/ReleaseRegistry.sol +501 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +198 -0
- package/contracts/registry/TokenRegistry.sol +261 -57
- package/contracts/shared/Component.sol +261 -0
- package/contracts/shared/ComponentService.sol +641 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +116 -0
- package/contracts/shared/ContractLib.sol +38 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
- package/contracts/shared/INftOwnable.sol +15 -12
- package/contracts/shared/IPolicyHolder.sol +35 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +16 -6
- package/contracts/shared/InitializableERC165.sol +27 -0
- package/contracts/shared/InstanceLinkedComponent.sol +171 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +88 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +72 -85
- package/contracts/shared/PolicyHolder.sol +62 -0
- package/contracts/shared/Registerable.sol +23 -38
- package/contracts/shared/RegistryLinked.sol +44 -0
- package/contracts/shared/Service.sol +63 -30
- package/contracts/shared/TokenHandler.sol +122 -10
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +157 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +498 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +190 -0
- package/contracts/staking/StakingService.sol +393 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +150 -0
- package/contracts/{types → type}/Blocknumber.sol +27 -3
- package/contracts/type/ClaimId.sol +80 -0
- package/contracts/{types → type}/DistributorType.sol +2 -2
- package/contracts/{types → type}/Fee.sol +33 -23
- package/contracts/{types → type}/NftId.sol +22 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +276 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +6 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +16 -2
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +48 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +34 -15
- package/contracts/{types → type}/UFixed.sol +39 -9
- package/contracts/{types → type}/Version.sol +5 -2
- package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
- package/contracts/upgradeability/ProxyManager.sol +231 -0
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +11 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -670
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -204
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -249
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -790
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -775
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -917
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -636
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -428
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- 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/shared/Versionable.sol/Versionable.json +0 -228
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/BaseComponent.sol +0 -91
- package/contracts/components/Distribution.sol +0 -166
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/components/IDistributionComponent.sol +0 -46
- package/contracts/components/IPoolComponent.sol +0 -62
- package/contracts/components/IProductComponent.sol +0 -35
- package/contracts/components/Pool.sol +0 -258
- package/contracts/components/Product.sol +0 -297
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/InstanceAccessManager.sol +0 -288
- package/contracts/instance/base/ComponentServiceBase.sol +0 -39
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/KeyValueStore.sol +0 -172
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/module/ISetup.sol +0 -43
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/DistributionService.sol +0 -96
- package/contracts/instance/service/DistributionServiceManager.sol +0 -53
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/instance/service/IDistributionService.sol +0 -12
- package/contracts/instance/service/IPoolService.sol +0 -37
- package/contracts/instance/service/IProductService.sol +0 -107
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/shared/ERC165.sol +0 -25
- package/contracts/shared/ProxyManager.sol +0 -94
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
- package/contracts/shared/Versionable.sol +0 -147
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -24
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -152
- package/contracts/types/RoleId.sol +0 -88
- /package/contracts/{types → type}/Key32.sol +0 -0
@@ -1,481 +1,456 @@
|
|
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
12
|
}
|
13
13
|
],
|
14
|
-
"name": "
|
15
|
-
"type": "error"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"inputs": [],
|
19
|
-
"name": "AccessManagerBadConfirmation",
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
20
15
|
"type": "error"
|
21
16
|
},
|
22
17
|
{
|
23
18
|
"inputs": [
|
24
19
|
{
|
25
|
-
"internalType": "
|
26
|
-
"name": "
|
27
|
-
"type": "
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
28
|
}
|
29
29
|
],
|
30
|
-
"name": "
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
31
|
"type": "error"
|
32
32
|
},
|
33
33
|
{
|
34
34
|
"inputs": [
|
35
35
|
{
|
36
36
|
"internalType": "address",
|
37
|
-
"name": "
|
37
|
+
"name": "caller",
|
38
38
|
"type": "address"
|
39
39
|
}
|
40
40
|
],
|
41
|
-
"name": "
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [],
|
46
|
+
"name": "ErrorAdminRoleMissing",
|
47
|
+
"type": "error"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"inputs": [],
|
51
|
+
"name": "ErrorAuthorityAlreadySet",
|
42
52
|
"type": "error"
|
43
53
|
},
|
44
54
|
{
|
45
55
|
"inputs": [
|
46
56
|
{
|
47
57
|
"internalType": "address",
|
48
|
-
"name": "
|
58
|
+
"name": "target",
|
49
59
|
"type": "address"
|
50
60
|
}
|
51
61
|
],
|
52
|
-
"name": "
|
62
|
+
"name": "ErrorAuthorizeForAdminRoleInvalid",
|
53
63
|
"type": "error"
|
54
64
|
},
|
55
65
|
{
|
56
66
|
"inputs": [
|
57
67
|
{
|
58
|
-
"internalType": "
|
59
|
-
"name": "
|
68
|
+
"internalType": "RoleId",
|
69
|
+
"name": "adminRoleId",
|
60
70
|
"type": "uint64"
|
61
71
|
}
|
62
72
|
],
|
63
|
-
"name": "
|
73
|
+
"name": "ErrorNotAdminOfRole",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [],
|
78
|
+
"name": "ErrorNotDeployer",
|
64
79
|
"type": "error"
|
65
80
|
},
|
66
81
|
{
|
67
82
|
"inputs": [
|
68
83
|
{
|
69
|
-
"internalType": "
|
70
|
-
"name": "
|
71
|
-
"type": "
|
84
|
+
"internalType": "RoleId",
|
85
|
+
"name": "roleId",
|
86
|
+
"type": "uint64"
|
72
87
|
}
|
73
88
|
],
|
74
|
-
"name": "
|
89
|
+
"name": "ErrorNotRoleOwner",
|
75
90
|
"type": "error"
|
76
91
|
},
|
77
92
|
{
|
78
93
|
"inputs": [
|
79
94
|
{
|
80
|
-
"internalType": "
|
81
|
-
"name": "
|
82
|
-
"type": "
|
95
|
+
"internalType": "RoleId",
|
96
|
+
"name": "adminRoleId",
|
97
|
+
"type": "uint64"
|
83
98
|
}
|
84
99
|
],
|
85
|
-
"name": "
|
100
|
+
"name": "ErrorRoleAdminNotExisting",
|
86
101
|
"type": "error"
|
87
102
|
},
|
88
103
|
{
|
89
104
|
"inputs": [
|
90
105
|
{
|
91
|
-
"internalType": "
|
92
|
-
"name": "
|
93
|
-
"type": "
|
106
|
+
"internalType": "RoleId",
|
107
|
+
"name": "roleId",
|
108
|
+
"type": "uint64"
|
94
109
|
},
|
95
110
|
{
|
96
|
-
"internalType": "
|
111
|
+
"internalType": "string",
|
112
|
+
"name": "name",
|
113
|
+
"type": "string"
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"name": "ErrorRoleAlreadyCreated",
|
117
|
+
"type": "error"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"inputs": [
|
121
|
+
{
|
122
|
+
"internalType": "RoleId",
|
97
123
|
"name": "roleId",
|
98
124
|
"type": "uint64"
|
99
125
|
}
|
100
126
|
],
|
101
|
-
"name": "
|
127
|
+
"name": "ErrorRoleIsLocked",
|
102
128
|
"type": "error"
|
103
129
|
},
|
104
130
|
{
|
105
131
|
"inputs": [
|
106
132
|
{
|
107
|
-
"internalType": "
|
108
|
-
"name": "
|
109
|
-
"type": "
|
110
|
-
},
|
111
|
-
{
|
112
|
-
"internalType": "address",
|
113
|
-
"name": "target",
|
114
|
-
"type": "address"
|
115
|
-
},
|
116
|
-
{
|
117
|
-
"internalType": "bytes4",
|
118
|
-
"name": "selector",
|
119
|
-
"type": "bytes4"
|
133
|
+
"internalType": "RoleId",
|
134
|
+
"name": "roleId",
|
135
|
+
"type": "uint64"
|
120
136
|
}
|
121
137
|
],
|
122
|
-
"name": "
|
138
|
+
"name": "ErrorRoleIsPaused",
|
123
139
|
"type": "error"
|
124
140
|
},
|
125
141
|
{
|
126
142
|
"inputs": [
|
127
143
|
{
|
128
|
-
"internalType": "
|
129
|
-
"name": "
|
130
|
-
"type": "
|
131
|
-
},
|
132
|
-
{
|
133
|
-
"internalType": "address",
|
134
|
-
"name": "caller",
|
135
|
-
"type": "address"
|
144
|
+
"internalType": "RoleId",
|
145
|
+
"name": "roleId",
|
146
|
+
"type": "uint64"
|
136
147
|
},
|
137
148
|
{
|
138
149
|
"internalType": "address",
|
139
|
-
"name": "
|
150
|
+
"name": "notContract",
|
140
151
|
"type": "address"
|
141
|
-
},
|
142
|
-
{
|
143
|
-
"internalType": "bytes4",
|
144
|
-
"name": "selector",
|
145
|
-
"type": "bytes4"
|
146
152
|
}
|
147
153
|
],
|
148
|
-
"name": "
|
154
|
+
"name": "ErrorRoleMemberNotContract",
|
149
155
|
"type": "error"
|
150
156
|
},
|
151
157
|
{
|
152
158
|
"inputs": [
|
159
|
+
{
|
160
|
+
"internalType": "RoleId",
|
161
|
+
"name": "roleId",
|
162
|
+
"type": "uint64"
|
163
|
+
},
|
153
164
|
{
|
154
165
|
"internalType": "address",
|
155
|
-
"name": "
|
166
|
+
"name": "expectedMember",
|
156
167
|
"type": "address"
|
157
168
|
}
|
158
169
|
],
|
159
|
-
"name": "
|
170
|
+
"name": "ErrorRoleMemberRemovalDisabled",
|
160
171
|
"type": "error"
|
161
172
|
},
|
162
173
|
{
|
163
|
-
"anonymous": false,
|
164
174
|
"inputs": [
|
165
175
|
{
|
166
|
-
"
|
167
|
-
"
|
168
|
-
"
|
169
|
-
"type": "bytes32"
|
176
|
+
"internalType": "RoleId",
|
177
|
+
"name": "roleId",
|
178
|
+
"type": "uint64"
|
170
179
|
},
|
171
180
|
{
|
172
|
-
"
|
173
|
-
"
|
174
|
-
"
|
175
|
-
"type": "uint32"
|
181
|
+
"internalType": "uint256",
|
182
|
+
"name": "memberCountLimit",
|
183
|
+
"type": "uint256"
|
176
184
|
}
|
177
185
|
],
|
178
|
-
"name": "
|
179
|
-
"type": "
|
186
|
+
"name": "ErrorRoleMembersLimitReached",
|
187
|
+
"type": "error"
|
180
188
|
},
|
181
189
|
{
|
182
|
-
"anonymous": false,
|
183
190
|
"inputs": [
|
184
191
|
{
|
185
|
-
"
|
186
|
-
"
|
187
|
-
"
|
188
|
-
"type": "bytes32"
|
192
|
+
"internalType": "RoleId",
|
193
|
+
"name": "roleId",
|
194
|
+
"type": "uint64"
|
189
195
|
},
|
190
196
|
{
|
191
|
-
"
|
192
|
-
"
|
193
|
-
"
|
194
|
-
|
197
|
+
"internalType": "string",
|
198
|
+
"name": "name",
|
199
|
+
"type": "string"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"internalType": "RoleId",
|
203
|
+
"name": "existingRoleId",
|
204
|
+
"type": "uint64"
|
195
205
|
}
|
196
206
|
],
|
197
|
-
"name": "
|
198
|
-
"type": "
|
207
|
+
"name": "ErrorRoleNameAlreadyExists",
|
208
|
+
"type": "error"
|
199
209
|
},
|
200
210
|
{
|
201
|
-
"anonymous": false,
|
202
211
|
"inputs": [
|
203
212
|
{
|
204
|
-
"
|
205
|
-
"
|
206
|
-
"
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
},
|
213
|
+
"internalType": "RoleId",
|
214
|
+
"name": "roleId",
|
215
|
+
"type": "uint64"
|
216
|
+
}
|
217
|
+
],
|
218
|
+
"name": "ErrorRoleNameEmpty",
|
219
|
+
"type": "error"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"inputs": [
|
215
223
|
{
|
216
|
-
"
|
217
|
-
"
|
218
|
-
"
|
219
|
-
|
220
|
-
|
224
|
+
"internalType": "RoleId",
|
225
|
+
"name": "roleId",
|
226
|
+
"type": "uint64"
|
227
|
+
}
|
228
|
+
],
|
229
|
+
"name": "ErrorRoleUnknown",
|
230
|
+
"type": "error"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"inputs": [],
|
234
|
+
"name": "ErrorTagetNotLockable",
|
235
|
+
"type": "error"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"inputs": [
|
221
239
|
{
|
222
|
-
"indexed": false,
|
223
240
|
"internalType": "address",
|
224
|
-
"name": "
|
241
|
+
"name": "target",
|
225
242
|
"type": "address"
|
226
243
|
},
|
227
244
|
{
|
228
|
-
"
|
245
|
+
"internalType": "string",
|
246
|
+
"name": "name",
|
247
|
+
"type": "string"
|
248
|
+
}
|
249
|
+
],
|
250
|
+
"name": "ErrorTargetAlreadyCreated",
|
251
|
+
"type": "error"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"inputs": [
|
255
|
+
{
|
229
256
|
"internalType": "address",
|
230
257
|
"name": "target",
|
231
258
|
"type": "address"
|
232
259
|
},
|
233
260
|
{
|
234
|
-
"
|
235
|
-
"
|
236
|
-
"
|
237
|
-
"type": "bytes"
|
261
|
+
"internalType": "bool",
|
262
|
+
"name": "isLocked",
|
263
|
+
"type": "bool"
|
238
264
|
}
|
239
265
|
],
|
240
|
-
"name": "
|
241
|
-
"type": "
|
266
|
+
"name": "ErrorTargetAlreadyLocked",
|
267
|
+
"type": "error"
|
242
268
|
},
|
243
269
|
{
|
244
|
-
"anonymous": false,
|
245
270
|
"inputs": [
|
246
271
|
{
|
247
|
-
"
|
248
|
-
"
|
249
|
-
"
|
250
|
-
"type": "uint64"
|
272
|
+
"internalType": "address",
|
273
|
+
"name": "expectedAuthority",
|
274
|
+
"type": "address"
|
251
275
|
},
|
252
276
|
{
|
253
|
-
"
|
254
|
-
"
|
255
|
-
"
|
256
|
-
"type": "uint64"
|
277
|
+
"internalType": "address",
|
278
|
+
"name": "actualAuthority",
|
279
|
+
"type": "address"
|
257
280
|
}
|
258
281
|
],
|
259
|
-
"name": "
|
260
|
-
"type": "
|
282
|
+
"name": "ErrorTargetAuthorityMismatch",
|
283
|
+
"type": "error"
|
261
284
|
},
|
262
285
|
{
|
263
|
-
"anonymous": false,
|
264
286
|
"inputs": [
|
265
287
|
{
|
266
|
-
"
|
267
|
-
"
|
268
|
-
"
|
269
|
-
"type": "uint64"
|
288
|
+
"internalType": "address",
|
289
|
+
"name": "target",
|
290
|
+
"type": "address"
|
270
291
|
},
|
271
292
|
{
|
272
|
-
"
|
273
|
-
"
|
274
|
-
"
|
275
|
-
"type": "uint32"
|
293
|
+
"internalType": "string",
|
294
|
+
"name": "name",
|
295
|
+
"type": "string"
|
276
296
|
},
|
277
297
|
{
|
278
|
-
"
|
279
|
-
"
|
280
|
-
"
|
281
|
-
"type": "uint48"
|
298
|
+
"internalType": "address",
|
299
|
+
"name": "existingTarget",
|
300
|
+
"type": "address"
|
282
301
|
}
|
283
302
|
],
|
284
|
-
"name": "
|
285
|
-
"type": "
|
303
|
+
"name": "ErrorTargetNameAlreadyExists",
|
304
|
+
"type": "error"
|
286
305
|
},
|
287
306
|
{
|
288
|
-
"anonymous": false,
|
289
307
|
"inputs": [
|
290
308
|
{
|
291
|
-
"indexed": true,
|
292
|
-
"internalType": "uint64",
|
293
|
-
"name": "roleId",
|
294
|
-
"type": "uint64"
|
295
|
-
},
|
296
|
-
{
|
297
|
-
"indexed": true,
|
298
309
|
"internalType": "address",
|
299
|
-
"name": "
|
310
|
+
"name": "target",
|
300
311
|
"type": "address"
|
301
|
-
},
|
302
|
-
{
|
303
|
-
"indexed": false,
|
304
|
-
"internalType": "uint32",
|
305
|
-
"name": "delay",
|
306
|
-
"type": "uint32"
|
307
|
-
},
|
308
|
-
{
|
309
|
-
"indexed": false,
|
310
|
-
"internalType": "uint48",
|
311
|
-
"name": "since",
|
312
|
-
"type": "uint48"
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"indexed": false,
|
316
|
-
"internalType": "bool",
|
317
|
-
"name": "newMember",
|
318
|
-
"type": "bool"
|
319
312
|
}
|
320
313
|
],
|
321
|
-
"name": "
|
322
|
-
"type": "
|
314
|
+
"name": "ErrorTargetNameEmpty",
|
315
|
+
"type": "error"
|
323
316
|
},
|
324
317
|
{
|
325
|
-
"anonymous": false,
|
326
318
|
"inputs": [
|
327
319
|
{
|
328
|
-
"
|
329
|
-
"
|
330
|
-
"
|
331
|
-
"type": "uint64"
|
332
|
-
},
|
333
|
-
{
|
334
|
-
"indexed": true,
|
335
|
-
"internalType": "uint64",
|
336
|
-
"name": "guardian",
|
337
|
-
"type": "uint64"
|
320
|
+
"internalType": "address",
|
321
|
+
"name": "target",
|
322
|
+
"type": "address"
|
338
323
|
}
|
339
324
|
],
|
340
|
-
"name": "
|
341
|
-
"type": "
|
325
|
+
"name": "ErrorTargetNotAccessManaged",
|
326
|
+
"type": "error"
|
342
327
|
},
|
343
328
|
{
|
344
|
-
"anonymous": false,
|
345
329
|
"inputs": [
|
346
330
|
{
|
347
|
-
"
|
348
|
-
"
|
349
|
-
"
|
350
|
-
"type": "uint64"
|
351
|
-
},
|
352
|
-
{
|
353
|
-
"indexed": false,
|
354
|
-
"internalType": "string",
|
355
|
-
"name": "label",
|
356
|
-
"type": "string"
|
331
|
+
"internalType": "address",
|
332
|
+
"name": "target",
|
333
|
+
"type": "address"
|
357
334
|
}
|
358
335
|
],
|
359
|
-
"name": "
|
360
|
-
"type": "
|
336
|
+
"name": "ErrorTargetUnknown",
|
337
|
+
"type": "error"
|
361
338
|
},
|
362
339
|
{
|
363
340
|
"anonymous": false,
|
364
341
|
"inputs": [
|
365
342
|
{
|
366
|
-
"indexed":
|
367
|
-
"internalType": "uint64",
|
368
|
-
"name": "roleId",
|
369
|
-
"type": "uint64"
|
370
|
-
},
|
371
|
-
{
|
372
|
-
"indexed": true,
|
343
|
+
"indexed": false,
|
373
344
|
"internalType": "address",
|
374
|
-
"name": "
|
345
|
+
"name": "authority",
|
375
346
|
"type": "address"
|
376
347
|
}
|
377
348
|
],
|
378
|
-
"name": "
|
349
|
+
"name": "AuthorityUpdated",
|
379
350
|
"type": "event"
|
380
351
|
},
|
381
352
|
{
|
382
353
|
"anonymous": false,
|
383
354
|
"inputs": [
|
384
355
|
{
|
385
|
-
"indexed":
|
356
|
+
"indexed": false,
|
386
357
|
"internalType": "address",
|
387
358
|
"name": "target",
|
388
359
|
"type": "address"
|
389
360
|
},
|
390
361
|
{
|
391
362
|
"indexed": false,
|
392
|
-
"internalType": "
|
393
|
-
"name": "
|
394
|
-
"type": "
|
363
|
+
"internalType": "Selector",
|
364
|
+
"name": "selector",
|
365
|
+
"type": "bytes4"
|
395
366
|
},
|
396
367
|
{
|
397
368
|
"indexed": false,
|
398
|
-
"internalType": "
|
399
|
-
"name": "
|
400
|
-
"type": "
|
369
|
+
"internalType": "string",
|
370
|
+
"name": "name",
|
371
|
+
"type": "string"
|
401
372
|
}
|
402
373
|
],
|
403
|
-
"name": "
|
374
|
+
"name": "LogFunctionCreated",
|
404
375
|
"type": "event"
|
405
376
|
},
|
406
377
|
{
|
407
378
|
"anonymous": false,
|
408
379
|
"inputs": [
|
409
380
|
{
|
410
|
-
"indexed":
|
411
|
-
"internalType": "
|
412
|
-
"name": "
|
413
|
-
"type": "
|
381
|
+
"indexed": false,
|
382
|
+
"internalType": "RoleId",
|
383
|
+
"name": "roleId",
|
384
|
+
"type": "uint64"
|
414
385
|
},
|
415
386
|
{
|
416
387
|
"indexed": false,
|
417
|
-
"internalType": "
|
418
|
-
"name": "
|
419
|
-
"type": "
|
388
|
+
"internalType": "enum IAccess.RoleType",
|
389
|
+
"name": "roleType",
|
390
|
+
"type": "uint8"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"indexed": false,
|
394
|
+
"internalType": "RoleId",
|
395
|
+
"name": "roleAdminId",
|
396
|
+
"type": "uint64"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"indexed": false,
|
400
|
+
"internalType": "string",
|
401
|
+
"name": "name",
|
402
|
+
"type": "string"
|
420
403
|
}
|
421
404
|
],
|
422
|
-
"name": "
|
405
|
+
"name": "LogRoleCreated",
|
423
406
|
"type": "event"
|
424
407
|
},
|
425
408
|
{
|
426
409
|
"anonymous": false,
|
427
410
|
"inputs": [
|
428
411
|
{
|
429
|
-
"indexed":
|
412
|
+
"indexed": false,
|
430
413
|
"internalType": "address",
|
431
414
|
"name": "target",
|
432
415
|
"type": "address"
|
433
416
|
},
|
434
417
|
{
|
435
418
|
"indexed": false,
|
436
|
-
"internalType": "
|
437
|
-
"name": "
|
438
|
-
"type": "
|
439
|
-
},
|
440
|
-
{
|
441
|
-
"indexed": true,
|
442
|
-
"internalType": "uint64",
|
443
|
-
"name": "roleId",
|
444
|
-
"type": "uint64"
|
419
|
+
"internalType": "string",
|
420
|
+
"name": "name",
|
421
|
+
"type": "string"
|
445
422
|
}
|
446
423
|
],
|
447
|
-
"name": "
|
424
|
+
"name": "LogTargetCreated",
|
448
425
|
"type": "event"
|
449
426
|
},
|
450
427
|
{
|
451
|
-
"inputs": [
|
428
|
+
"inputs": [],
|
429
|
+
"name": "authority",
|
430
|
+
"outputs": [
|
452
431
|
{
|
453
432
|
"internalType": "address",
|
454
|
-
"name": "
|
433
|
+
"name": "",
|
455
434
|
"type": "address"
|
456
|
-
}
|
435
|
+
}
|
436
|
+
],
|
437
|
+
"stateMutability": "view",
|
438
|
+
"type": "function"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"inputs": [
|
457
442
|
{
|
458
443
|
"internalType": "address",
|
459
444
|
"name": "target",
|
460
445
|
"type": "address"
|
461
|
-
},
|
462
|
-
{
|
463
|
-
"internalType": "bytes4",
|
464
|
-
"name": "selector",
|
465
|
-
"type": "bytes4"
|
466
446
|
}
|
467
447
|
],
|
468
|
-
"name": "
|
448
|
+
"name": "authorizedFunctions",
|
469
449
|
"outputs": [
|
470
450
|
{
|
471
|
-
"internalType": "
|
472
|
-
"name": "
|
473
|
-
"type": "
|
474
|
-
},
|
475
|
-
{
|
476
|
-
"internalType": "uint32",
|
477
|
-
"name": "delay",
|
478
|
-
"type": "uint32"
|
451
|
+
"internalType": "uint256",
|
452
|
+
"name": "numberOfFunctions",
|
453
|
+
"type": "uint256"
|
479
454
|
}
|
480
455
|
],
|
481
456
|
"stateMutability": "view",
|
@@ -494,38 +469,46 @@
|
|
494
469
|
"type": "address"
|
495
470
|
},
|
496
471
|
{
|
497
|
-
"internalType": "
|
498
|
-
"name": "
|
499
|
-
"type": "
|
472
|
+
"internalType": "Selector",
|
473
|
+
"name": "selector",
|
474
|
+
"type": "bytes4"
|
500
475
|
}
|
501
476
|
],
|
502
|
-
"name": "
|
477
|
+
"name": "canCall",
|
503
478
|
"outputs": [
|
504
479
|
{
|
505
|
-
"internalType": "
|
506
|
-
"name": "",
|
507
|
-
"type": "
|
480
|
+
"internalType": "bool",
|
481
|
+
"name": "can",
|
482
|
+
"type": "bool"
|
508
483
|
}
|
509
484
|
],
|
510
|
-
"stateMutability": "
|
485
|
+
"stateMutability": "view",
|
511
486
|
"type": "function"
|
512
487
|
},
|
513
488
|
{
|
514
|
-
"inputs": [
|
489
|
+
"inputs": [],
|
490
|
+
"name": "deployer",
|
491
|
+
"outputs": [
|
515
492
|
{
|
516
493
|
"internalType": "address",
|
517
|
-
"name": "
|
494
|
+
"name": "",
|
518
495
|
"type": "address"
|
519
|
-
}
|
496
|
+
}
|
497
|
+
],
|
498
|
+
"stateMutability": "view",
|
499
|
+
"type": "function"
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"inputs": [],
|
503
|
+
"name": "getAdminRole",
|
504
|
+
"outputs": [
|
520
505
|
{
|
521
|
-
"internalType": "
|
522
|
-
"name": "
|
523
|
-
"type": "
|
506
|
+
"internalType": "RoleId",
|
507
|
+
"name": "roleId",
|
508
|
+
"type": "uint64"
|
524
509
|
}
|
525
510
|
],
|
526
|
-
"
|
527
|
-
"outputs": [],
|
528
|
-
"stateMutability": "nonpayable",
|
511
|
+
"stateMutability": "view",
|
529
512
|
"type": "function"
|
530
513
|
},
|
531
514
|
{
|
@@ -536,30 +519,52 @@
|
|
536
519
|
"type": "address"
|
537
520
|
},
|
538
521
|
{
|
539
|
-
"internalType": "
|
540
|
-
"name": "
|
541
|
-
"type": "
|
522
|
+
"internalType": "uint256",
|
523
|
+
"name": "idx",
|
524
|
+
"type": "uint256"
|
542
525
|
}
|
543
526
|
],
|
544
|
-
"name": "
|
527
|
+
"name": "getAuthorizedFunction",
|
545
528
|
"outputs": [
|
546
529
|
{
|
547
|
-
"
|
548
|
-
|
549
|
-
|
530
|
+
"components": [
|
531
|
+
{
|
532
|
+
"internalType": "Str",
|
533
|
+
"name": "name",
|
534
|
+
"type": "bytes32"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"internalType": "Selector",
|
538
|
+
"name": "selector",
|
539
|
+
"type": "bytes4"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"internalType": "Timestamp",
|
543
|
+
"name": "createdAt",
|
544
|
+
"type": "uint40"
|
545
|
+
}
|
546
|
+
],
|
547
|
+
"internalType": "struct IAccess.FunctionInfo",
|
548
|
+
"name": "func",
|
549
|
+
"type": "tuple"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"internalType": "RoleId",
|
553
|
+
"name": "roleId",
|
554
|
+
"type": "uint64"
|
550
555
|
}
|
551
556
|
],
|
552
|
-
"stateMutability": "
|
557
|
+
"stateMutability": "view",
|
553
558
|
"type": "function"
|
554
559
|
},
|
555
560
|
{
|
556
561
|
"inputs": [],
|
557
|
-
"name": "
|
562
|
+
"name": "getPublicRole",
|
558
563
|
"outputs": [
|
559
564
|
{
|
560
|
-
"internalType": "
|
561
|
-
"name": "",
|
562
|
-
"type": "
|
565
|
+
"internalType": "RoleId",
|
566
|
+
"name": "roleId",
|
567
|
+
"type": "uint64"
|
563
568
|
}
|
564
569
|
],
|
565
570
|
"stateMutability": "view",
|
@@ -568,37 +573,29 @@
|
|
568
573
|
{
|
569
574
|
"inputs": [
|
570
575
|
{
|
571
|
-
"internalType": "
|
572
|
-
"name": "
|
573
|
-
"type": "
|
574
|
-
},
|
575
|
-
{
|
576
|
-
"internalType": "address",
|
577
|
-
"name": "account",
|
578
|
-
"type": "address"
|
576
|
+
"internalType": "Str",
|
577
|
+
"name": "name",
|
578
|
+
"type": "bytes32"
|
579
579
|
}
|
580
580
|
],
|
581
|
-
"name": "
|
581
|
+
"name": "getRoleForName",
|
582
582
|
"outputs": [
|
583
583
|
{
|
584
|
-
"
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
"
|
597
|
-
},
|
598
|
-
{
|
599
|
-
"internalType": "uint48",
|
584
|
+
"components": [
|
585
|
+
{
|
586
|
+
"internalType": "RoleId",
|
587
|
+
"name": "roleId",
|
588
|
+
"type": "uint64"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"internalType": "bool",
|
592
|
+
"name": "exists",
|
593
|
+
"type": "bool"
|
594
|
+
}
|
595
|
+
],
|
596
|
+
"internalType": "struct IAccess.RoleNameInfo",
|
600
597
|
"name": "",
|
601
|
-
"type": "
|
598
|
+
"type": "tuple"
|
602
599
|
}
|
603
600
|
],
|
604
601
|
"stateMutability": "view",
|
@@ -607,17 +604,17 @@
|
|
607
604
|
{
|
608
605
|
"inputs": [
|
609
606
|
{
|
610
|
-
"internalType": "
|
611
|
-
"name": "
|
612
|
-
"type": "
|
607
|
+
"internalType": "uint256",
|
608
|
+
"name": "idx",
|
609
|
+
"type": "uint256"
|
613
610
|
}
|
614
611
|
],
|
615
|
-
"name": "
|
612
|
+
"name": "getRoleId",
|
616
613
|
"outputs": [
|
617
614
|
{
|
618
|
-
"internalType": "
|
619
|
-
"name": "",
|
620
|
-
"type": "
|
615
|
+
"internalType": "RoleId",
|
616
|
+
"name": "roleId",
|
617
|
+
"type": "uint64"
|
621
618
|
}
|
622
619
|
],
|
623
620
|
"stateMutability": "view",
|
@@ -626,17 +623,49 @@
|
|
626
623
|
{
|
627
624
|
"inputs": [
|
628
625
|
{
|
629
|
-
"internalType": "
|
626
|
+
"internalType": "RoleId",
|
630
627
|
"name": "roleId",
|
631
628
|
"type": "uint64"
|
632
629
|
}
|
633
630
|
],
|
634
|
-
"name": "
|
631
|
+
"name": "getRoleInfo",
|
635
632
|
"outputs": [
|
636
633
|
{
|
637
|
-
"
|
638
|
-
|
639
|
-
|
634
|
+
"components": [
|
635
|
+
{
|
636
|
+
"internalType": "RoleId",
|
637
|
+
"name": "adminRoleId",
|
638
|
+
"type": "uint64"
|
639
|
+
},
|
640
|
+
{
|
641
|
+
"internalType": "enum IAccess.RoleType",
|
642
|
+
"name": "roleType",
|
643
|
+
"type": "uint8"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"internalType": "uint32",
|
647
|
+
"name": "maxMemberCount",
|
648
|
+
"type": "uint32"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"internalType": "Str",
|
652
|
+
"name": "name",
|
653
|
+
"type": "bytes32"
|
654
|
+
},
|
655
|
+
{
|
656
|
+
"internalType": "Timestamp",
|
657
|
+
"name": "createdAt",
|
658
|
+
"type": "uint40"
|
659
|
+
},
|
660
|
+
{
|
661
|
+
"internalType": "Timestamp",
|
662
|
+
"name": "pausedAt",
|
663
|
+
"type": "uint40"
|
664
|
+
}
|
665
|
+
],
|
666
|
+
"internalType": "struct IAccess.RoleInfo",
|
667
|
+
"name": "roleInfo",
|
668
|
+
"type": "tuple"
|
640
669
|
}
|
641
670
|
],
|
642
671
|
"stateMutability": "view",
|
@@ -645,17 +674,22 @@
|
|
645
674
|
{
|
646
675
|
"inputs": [
|
647
676
|
{
|
648
|
-
"internalType": "
|
677
|
+
"internalType": "RoleId",
|
649
678
|
"name": "roleId",
|
650
679
|
"type": "uint64"
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"internalType": "uint256",
|
683
|
+
"name": "idx",
|
684
|
+
"type": "uint256"
|
651
685
|
}
|
652
686
|
],
|
653
|
-
"name": "
|
687
|
+
"name": "getRoleMember",
|
654
688
|
"outputs": [
|
655
689
|
{
|
656
|
-
"internalType": "
|
657
|
-
"name": "",
|
658
|
-
"type": "
|
690
|
+
"internalType": "address",
|
691
|
+
"name": "account",
|
692
|
+
"type": "address"
|
659
693
|
}
|
660
694
|
],
|
661
695
|
"stateMutability": "view",
|
@@ -664,17 +698,17 @@
|
|
664
698
|
{
|
665
699
|
"inputs": [
|
666
700
|
{
|
667
|
-
"internalType": "
|
668
|
-
"name": "
|
669
|
-
"type": "
|
701
|
+
"internalType": "uint256",
|
702
|
+
"name": "idx",
|
703
|
+
"type": "uint256"
|
670
704
|
}
|
671
705
|
],
|
672
|
-
"name": "
|
706
|
+
"name": "getTargetAddress",
|
673
707
|
"outputs": [
|
674
708
|
{
|
675
|
-
"internalType": "
|
676
|
-
"name": "",
|
677
|
-
"type": "
|
709
|
+
"internalType": "address",
|
710
|
+
"name": "target",
|
711
|
+
"type": "address"
|
678
712
|
}
|
679
713
|
],
|
680
714
|
"stateMutability": "view",
|
@@ -683,17 +717,17 @@
|
|
683
717
|
{
|
684
718
|
"inputs": [
|
685
719
|
{
|
686
|
-
"internalType": "
|
687
|
-
"name": "
|
720
|
+
"internalType": "Str",
|
721
|
+
"name": "name",
|
688
722
|
"type": "bytes32"
|
689
723
|
}
|
690
724
|
],
|
691
|
-
"name": "
|
725
|
+
"name": "getTargetForName",
|
692
726
|
"outputs": [
|
693
727
|
{
|
694
|
-
"internalType": "
|
695
|
-
"name": "",
|
696
|
-
"type": "
|
728
|
+
"internalType": "address",
|
729
|
+
"name": "target",
|
730
|
+
"type": "address"
|
697
731
|
}
|
698
732
|
],
|
699
733
|
"stateMutability": "view",
|
@@ -707,12 +741,29 @@
|
|
707
741
|
"type": "address"
|
708
742
|
}
|
709
743
|
],
|
710
|
-
"name": "
|
744
|
+
"name": "getTargetInfo",
|
711
745
|
"outputs": [
|
712
746
|
{
|
713
|
-
"
|
714
|
-
|
715
|
-
|
747
|
+
"components": [
|
748
|
+
{
|
749
|
+
"internalType": "Str",
|
750
|
+
"name": "name",
|
751
|
+
"type": "bytes32"
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"internalType": "bool",
|
755
|
+
"name": "isCustom",
|
756
|
+
"type": "bool"
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"internalType": "Timestamp",
|
760
|
+
"name": "createdAt",
|
761
|
+
"type": "uint40"
|
762
|
+
}
|
763
|
+
],
|
764
|
+
"internalType": "struct IAccess.TargetInfo",
|
765
|
+
"name": "targetInfo",
|
766
|
+
"type": "tuple"
|
716
767
|
}
|
717
768
|
],
|
718
769
|
"stateMutability": "view",
|
@@ -722,21 +773,21 @@
|
|
722
773
|
"inputs": [
|
723
774
|
{
|
724
775
|
"internalType": "address",
|
725
|
-
"name": "
|
776
|
+
"name": "account",
|
726
777
|
"type": "address"
|
727
778
|
},
|
728
779
|
{
|
729
|
-
"internalType": "
|
730
|
-
"name": "
|
731
|
-
"type": "
|
780
|
+
"internalType": "RoleId",
|
781
|
+
"name": "roleId",
|
782
|
+
"type": "uint64"
|
732
783
|
}
|
733
784
|
],
|
734
|
-
"name": "
|
785
|
+
"name": "hasAdminRole",
|
735
786
|
"outputs": [
|
736
787
|
{
|
737
|
-
"internalType": "
|
788
|
+
"internalType": "bool",
|
738
789
|
"name": "",
|
739
|
-
"type": "
|
790
|
+
"type": "bool"
|
740
791
|
}
|
741
792
|
],
|
742
793
|
"stateMutability": "view",
|
@@ -744,38 +795,15 @@
|
|
744
795
|
},
|
745
796
|
{
|
746
797
|
"inputs": [
|
747
|
-
{
|
748
|
-
"internalType": "uint64",
|
749
|
-
"name": "roleId",
|
750
|
-
"type": "uint64"
|
751
|
-
},
|
752
798
|
{
|
753
799
|
"internalType": "address",
|
754
800
|
"name": "account",
|
755
801
|
"type": "address"
|
756
802
|
},
|
757
803
|
{
|
758
|
-
"internalType": "
|
759
|
-
"name": "executionDelay",
|
760
|
-
"type": "uint32"
|
761
|
-
}
|
762
|
-
],
|
763
|
-
"name": "grantRole",
|
764
|
-
"outputs": [],
|
765
|
-
"stateMutability": "nonpayable",
|
766
|
-
"type": "function"
|
767
|
-
},
|
768
|
-
{
|
769
|
-
"inputs": [
|
770
|
-
{
|
771
|
-
"internalType": "uint64",
|
804
|
+
"internalType": "RoleId",
|
772
805
|
"name": "roleId",
|
773
806
|
"type": "uint64"
|
774
|
-
},
|
775
|
-
{
|
776
|
-
"internalType": "address",
|
777
|
-
"name": "account",
|
778
|
-
"type": "address"
|
779
807
|
}
|
780
808
|
],
|
781
809
|
"name": "hasRole",
|
@@ -784,11 +812,19 @@
|
|
784
812
|
"internalType": "bool",
|
785
813
|
"name": "",
|
786
814
|
"type": "bool"
|
787
|
-
}
|
815
|
+
}
|
816
|
+
],
|
817
|
+
"stateMutability": "view",
|
818
|
+
"type": "function"
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"inputs": [],
|
822
|
+
"name": "isConsumingScheduledOp",
|
823
|
+
"outputs": [
|
788
824
|
{
|
789
|
-
"internalType": "
|
825
|
+
"internalType": "bytes4",
|
790
826
|
"name": "",
|
791
|
-
"type": "
|
827
|
+
"type": "bytes4"
|
792
828
|
}
|
793
829
|
],
|
794
830
|
"stateMutability": "view",
|
@@ -796,28 +832,18 @@
|
|
796
832
|
},
|
797
833
|
{
|
798
834
|
"inputs": [
|
799
|
-
{
|
800
|
-
"internalType": "address",
|
801
|
-
"name": "caller",
|
802
|
-
"type": "address"
|
803
|
-
},
|
804
835
|
{
|
805
836
|
"internalType": "address",
|
806
837
|
"name": "target",
|
807
838
|
"type": "address"
|
808
|
-
},
|
809
|
-
{
|
810
|
-
"internalType": "bytes",
|
811
|
-
"name": "data",
|
812
|
-
"type": "bytes"
|
813
839
|
}
|
814
840
|
],
|
815
|
-
"name": "
|
841
|
+
"name": "isTargetLocked",
|
816
842
|
"outputs": [
|
817
843
|
{
|
818
|
-
"internalType": "
|
819
|
-
"name": "",
|
820
|
-
"type": "
|
844
|
+
"internalType": "bool",
|
845
|
+
"name": "locked",
|
846
|
+
"type": "bool"
|
821
847
|
}
|
822
848
|
],
|
823
849
|
"stateMutability": "view",
|
@@ -826,16 +852,16 @@
|
|
826
852
|
{
|
827
853
|
"inputs": [
|
828
854
|
{
|
829
|
-
"internalType": "
|
830
|
-
"name": "
|
831
|
-
"type": "
|
855
|
+
"internalType": "RoleId",
|
856
|
+
"name": "roleId",
|
857
|
+
"type": "uint64"
|
832
858
|
}
|
833
859
|
],
|
834
|
-
"name": "
|
860
|
+
"name": "roleExists",
|
835
861
|
"outputs": [
|
836
862
|
{
|
837
863
|
"internalType": "bool",
|
838
|
-
"name": "",
|
864
|
+
"name": "exists",
|
839
865
|
"type": "bool"
|
840
866
|
}
|
841
867
|
],
|
@@ -845,66 +871,44 @@
|
|
845
871
|
{
|
846
872
|
"inputs": [
|
847
873
|
{
|
848
|
-
"internalType": "
|
874
|
+
"internalType": "RoleId",
|
849
875
|
"name": "roleId",
|
850
876
|
"type": "uint64"
|
851
|
-
},
|
852
|
-
{
|
853
|
-
"internalType": "string",
|
854
|
-
"name": "label",
|
855
|
-
"type": "string"
|
856
877
|
}
|
857
878
|
],
|
858
|
-
"name": "
|
859
|
-
"outputs": [],
|
860
|
-
"stateMutability": "nonpayable",
|
861
|
-
"type": "function"
|
862
|
-
},
|
863
|
-
{
|
864
|
-
"inputs": [],
|
865
|
-
"name": "minSetback",
|
879
|
+
"name": "roleMembers",
|
866
880
|
"outputs": [
|
867
881
|
{
|
868
|
-
"internalType": "
|
869
|
-
"name": "",
|
870
|
-
"type": "
|
882
|
+
"internalType": "uint256",
|
883
|
+
"name": "numberOfMembers",
|
884
|
+
"type": "uint256"
|
871
885
|
}
|
872
886
|
],
|
873
887
|
"stateMutability": "view",
|
874
888
|
"type": "function"
|
875
889
|
},
|
876
890
|
{
|
877
|
-
"inputs": [
|
878
|
-
|
879
|
-
|
880
|
-
"name": "roleId",
|
881
|
-
"type": "uint64"
|
882
|
-
},
|
891
|
+
"inputs": [],
|
892
|
+
"name": "roles",
|
893
|
+
"outputs": [
|
883
894
|
{
|
884
|
-
"internalType": "
|
885
|
-
"name": "
|
886
|
-
"type": "
|
895
|
+
"internalType": "uint256",
|
896
|
+
"name": "numberOfRoles",
|
897
|
+
"type": "uint256"
|
887
898
|
}
|
888
899
|
],
|
889
|
-
"
|
890
|
-
"outputs": [],
|
891
|
-
"stateMutability": "nonpayable",
|
900
|
+
"stateMutability": "view",
|
892
901
|
"type": "function"
|
893
902
|
},
|
894
903
|
{
|
895
904
|
"inputs": [
|
896
|
-
{
|
897
|
-
"internalType": "uint64",
|
898
|
-
"name": "roleId",
|
899
|
-
"type": "uint64"
|
900
|
-
},
|
901
905
|
{
|
902
906
|
"internalType": "address",
|
903
|
-
"name": "
|
907
|
+
"name": "",
|
904
908
|
"type": "address"
|
905
909
|
}
|
906
910
|
],
|
907
|
-
"name": "
|
911
|
+
"name": "setAuthority",
|
908
912
|
"outputs": [],
|
909
913
|
"stateMutability": "nonpayable",
|
910
914
|
"type": "function"
|
@@ -915,163 +919,137 @@
|
|
915
919
|
"internalType": "address",
|
916
920
|
"name": "target",
|
917
921
|
"type": "address"
|
918
|
-
},
|
919
|
-
{
|
920
|
-
"internalType": "bytes",
|
921
|
-
"name": "data",
|
922
|
-
"type": "bytes"
|
923
|
-
},
|
924
|
-
{
|
925
|
-
"internalType": "uint48",
|
926
|
-
"name": "when",
|
927
|
-
"type": "uint48"
|
928
922
|
}
|
929
923
|
],
|
930
|
-
"name": "
|
924
|
+
"name": "targetExists",
|
931
925
|
"outputs": [
|
932
926
|
{
|
933
|
-
"internalType": "
|
934
|
-
"name": "",
|
935
|
-
"type": "
|
936
|
-
},
|
937
|
-
{
|
938
|
-
"internalType": "uint32",
|
939
|
-
"name": "",
|
940
|
-
"type": "uint32"
|
941
|
-
}
|
942
|
-
],
|
943
|
-
"stateMutability": "nonpayable",
|
944
|
-
"type": "function"
|
945
|
-
},
|
946
|
-
{
|
947
|
-
"inputs": [
|
948
|
-
{
|
949
|
-
"internalType": "uint64",
|
950
|
-
"name": "roleId",
|
951
|
-
"type": "uint64"
|
952
|
-
},
|
953
|
-
{
|
954
|
-
"internalType": "uint32",
|
955
|
-
"name": "newDelay",
|
956
|
-
"type": "uint32"
|
927
|
+
"internalType": "bool",
|
928
|
+
"name": "exists",
|
929
|
+
"type": "bool"
|
957
930
|
}
|
958
931
|
],
|
959
|
-
"
|
960
|
-
"outputs": [],
|
961
|
-
"stateMutability": "nonpayable",
|
932
|
+
"stateMutability": "view",
|
962
933
|
"type": "function"
|
963
934
|
},
|
964
935
|
{
|
965
|
-
"inputs": [
|
966
|
-
|
967
|
-
|
968
|
-
"name": "roleId",
|
969
|
-
"type": "uint64"
|
970
|
-
},
|
936
|
+
"inputs": [],
|
937
|
+
"name": "targets",
|
938
|
+
"outputs": [
|
971
939
|
{
|
972
|
-
"internalType": "
|
973
|
-
"name": "
|
974
|
-
"type": "
|
940
|
+
"internalType": "uint256",
|
941
|
+
"name": "numberOfTargets",
|
942
|
+
"type": "uint256"
|
975
943
|
}
|
976
944
|
],
|
977
|
-
"
|
978
|
-
"outputs": [],
|
979
|
-
"stateMutability": "nonpayable",
|
945
|
+
"stateMutability": "view",
|
980
946
|
"type": "function"
|
981
947
|
},
|
982
948
|
{
|
983
949
|
"inputs": [
|
984
950
|
{
|
985
|
-
"internalType": "
|
986
|
-
"name": "
|
987
|
-
"type": "
|
951
|
+
"internalType": "bytes4",
|
952
|
+
"name": "selector",
|
953
|
+
"type": "bytes4"
|
988
954
|
},
|
989
955
|
{
|
990
|
-
"internalType": "
|
991
|
-
"name": "
|
992
|
-
"type": "
|
956
|
+
"internalType": "string",
|
957
|
+
"name": "name",
|
958
|
+
"type": "string"
|
993
959
|
}
|
994
960
|
],
|
995
|
-
"name": "
|
996
|
-
"outputs": [
|
997
|
-
"stateMutability": "nonpayable",
|
998
|
-
"type": "function"
|
999
|
-
},
|
1000
|
-
{
|
1001
|
-
"inputs": [
|
1002
|
-
{
|
1003
|
-
"internalType": "address",
|
1004
|
-
"name": "target",
|
1005
|
-
"type": "address"
|
1006
|
-
},
|
961
|
+
"name": "toFunction",
|
962
|
+
"outputs": [
|
1007
963
|
{
|
1008
|
-
"
|
1009
|
-
|
1010
|
-
|
964
|
+
"components": [
|
965
|
+
{
|
966
|
+
"internalType": "Str",
|
967
|
+
"name": "name",
|
968
|
+
"type": "bytes32"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"internalType": "Selector",
|
972
|
+
"name": "selector",
|
973
|
+
"type": "bytes4"
|
974
|
+
},
|
975
|
+
{
|
976
|
+
"internalType": "Timestamp",
|
977
|
+
"name": "createdAt",
|
978
|
+
"type": "uint40"
|
979
|
+
}
|
980
|
+
],
|
981
|
+
"internalType": "struct IAccess.FunctionInfo",
|
982
|
+
"name": "",
|
983
|
+
"type": "tuple"
|
1011
984
|
}
|
1012
985
|
],
|
1013
|
-
"
|
1014
|
-
"outputs": [],
|
1015
|
-
"stateMutability": "nonpayable",
|
986
|
+
"stateMutability": "view",
|
1016
987
|
"type": "function"
|
1017
988
|
},
|
1018
989
|
{
|
1019
990
|
"inputs": [
|
1020
991
|
{
|
1021
|
-
"internalType": "
|
1022
|
-
"name": "
|
1023
|
-
"type": "
|
992
|
+
"internalType": "RoleId",
|
993
|
+
"name": "adminRoleId",
|
994
|
+
"type": "uint64"
|
1024
995
|
},
|
1025
996
|
{
|
1026
|
-
"internalType": "
|
1027
|
-
"name": "
|
1028
|
-
"type": "
|
1029
|
-
}
|
1030
|
-
],
|
1031
|
-
"name": "setTargetClosed",
|
1032
|
-
"outputs": [],
|
1033
|
-
"stateMutability": "nonpayable",
|
1034
|
-
"type": "function"
|
1035
|
-
},
|
1036
|
-
{
|
1037
|
-
"inputs": [
|
1038
|
-
{
|
1039
|
-
"internalType": "address",
|
1040
|
-
"name": "target",
|
1041
|
-
"type": "address"
|
997
|
+
"internalType": "enum IAccess.RoleType",
|
998
|
+
"name": "roleType",
|
999
|
+
"type": "uint8"
|
1042
1000
|
},
|
1043
1001
|
{
|
1044
|
-
"internalType": "
|
1045
|
-
"name": "
|
1046
|
-
"type": "
|
1002
|
+
"internalType": "uint32",
|
1003
|
+
"name": "maxMemberCount",
|
1004
|
+
"type": "uint32"
|
1047
1005
|
},
|
1048
1006
|
{
|
1049
|
-
"internalType": "
|
1050
|
-
"name": "
|
1051
|
-
"type": "
|
1007
|
+
"internalType": "string",
|
1008
|
+
"name": "name",
|
1009
|
+
"type": "string"
|
1052
1010
|
}
|
1053
1011
|
],
|
1054
|
-
"name": "
|
1055
|
-
"outputs": [
|
1056
|
-
"stateMutability": "nonpayable",
|
1057
|
-
"type": "function"
|
1058
|
-
},
|
1059
|
-
{
|
1060
|
-
"inputs": [
|
1061
|
-
{
|
1062
|
-
"internalType": "address",
|
1063
|
-
"name": "target",
|
1064
|
-
"type": "address"
|
1065
|
-
},
|
1012
|
+
"name": "toRole",
|
1013
|
+
"outputs": [
|
1066
1014
|
{
|
1067
|
-
"
|
1068
|
-
|
1069
|
-
|
1015
|
+
"components": [
|
1016
|
+
{
|
1017
|
+
"internalType": "RoleId",
|
1018
|
+
"name": "adminRoleId",
|
1019
|
+
"type": "uint64"
|
1020
|
+
},
|
1021
|
+
{
|
1022
|
+
"internalType": "enum IAccess.RoleType",
|
1023
|
+
"name": "roleType",
|
1024
|
+
"type": "uint8"
|
1025
|
+
},
|
1026
|
+
{
|
1027
|
+
"internalType": "uint32",
|
1028
|
+
"name": "maxMemberCount",
|
1029
|
+
"type": "uint32"
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
"internalType": "Str",
|
1033
|
+
"name": "name",
|
1034
|
+
"type": "bytes32"
|
1035
|
+
},
|
1036
|
+
{
|
1037
|
+
"internalType": "Timestamp",
|
1038
|
+
"name": "createdAt",
|
1039
|
+
"type": "uint40"
|
1040
|
+
},
|
1041
|
+
{
|
1042
|
+
"internalType": "Timestamp",
|
1043
|
+
"name": "pausedAt",
|
1044
|
+
"type": "uint40"
|
1045
|
+
}
|
1046
|
+
],
|
1047
|
+
"internalType": "struct IAccess.RoleInfo",
|
1048
|
+
"name": "",
|
1049
|
+
"type": "tuple"
|
1070
1050
|
}
|
1071
1051
|
],
|
1072
|
-
"
|
1073
|
-
"outputs": [],
|
1074
|
-
"stateMutability": "nonpayable",
|
1052
|
+
"stateMutability": "view",
|
1075
1053
|
"type": "function"
|
1076
1054
|
}
|
1077
1055
|
],
|