@etherisc/gif-next 0.0.2-f1e0c66-773 → 0.0.2-f1e6957-384
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +137 -333
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +810 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +760 -278
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2008 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +485 -26
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +588 -220
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +227 -20
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +275 -16
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +479 -17
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +183 -497
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +475 -41
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +102 -397
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +644 -392
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +227 -131
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +96 -201
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +476 -137
- 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 +1474 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +844 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2043 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +844 -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 +1429 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1161 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1637 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2575 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
- package/artifacts/contracts/{shared/IKeyValueStore.sol/IKeyValueStore.json → instance/BaseStore.sol/BaseStore.json} +55 -197
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
- package/artifacts/contracts/{shared/KeyValueStore.sol/KeyValueStore.json → instance/IBaseStore.sol/IBaseStore.json} +34 -227
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +587 -64
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +405 -60
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +625 -182
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1154 -380
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +363 -92
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1645 -849
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +419 -231
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +160 -102
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1300 -1842
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +46 -5
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
- 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 +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +127 -365
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +473 -42
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +103 -143
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +98 -11
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +103 -333
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +198 -190
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +195 -95
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +160 -448
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +474 -40
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +502 -364
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +212 -112
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +340 -112
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +139 -246
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +711 -340
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +129 -426
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +925 -545
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +246 -102
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +353 -180
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +177 -97
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +266 -435
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +474 -40
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +466 -245
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +204 -120
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +301 -9
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +350 -18
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +405 -102
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +183 -80
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +257 -236
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{shared/ComponentVerifyingService.sol/ComponentVerifyingService.json → product/IRiskService.sol/IRiskService.json} +283 -157
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +511 -303
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +213 -105
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +247 -332
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +177 -129
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +258 -427
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +794 -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 +359 -48
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +169 -37
- 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 +565 -109
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +913 -404
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1137 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +136 -290
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +159 -87
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2271 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +47 -6
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +495 -253
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +511 -20
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +120 -60
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +86 -287
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +493 -638
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +198 -128
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -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 +92 -103
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +432 -290
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +103 -143
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +36 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +35 -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 +167 -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 +84 -2
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -22
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +102 -332
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +42 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +41 -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 +141 -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 +86 -111
- 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 +1513 -204
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +235 -123
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1635 -465
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +211 -105
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +295 -183
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +282 -281
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +162 -94
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1645 -790
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +180 -77
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +35 -11
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +64 -19
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- 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 +2 -2
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
- 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 +33 -31
- 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 +2 -2
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
- 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 +42 -157
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +93 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
- 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 +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.json +50 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +24 -5
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +73 -36
- 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 +101 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +134 -79
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
- package/contracts/accounting/AccountingService.sol +274 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +47 -0
- package/contracts/authorization/AccessAdmin.sol +401 -313
- package/contracts/authorization/AccessAdminLib.sol +678 -0
- package/contracts/authorization/AccessManagerCloneable.sol +128 -4
- package/contracts/authorization/Authorization.sol +179 -207
- package/contracts/authorization/IAccess.sol +29 -11
- package/contracts/authorization/IAccessAdmin.sol +89 -83
- package/contracts/authorization/IAuthorization.sol +9 -37
- package/contracts/authorization/IServiceAuthorization.sol +57 -17
- package/contracts/authorization/ServiceAuthorization.sol +235 -25
- package/contracts/distribution/BasicDistribution.sol +21 -19
- package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
- package/contracts/distribution/Distribution.sol +46 -96
- package/contracts/distribution/DistributionService.sol +243 -132
- package/contracts/distribution/DistributionServiceManager.sol +6 -6
- package/contracts/distribution/IDistributionComponent.sol +4 -11
- package/contracts/distribution/IDistributionService.sol +47 -29
- 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 +437 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BaseStore.sol +93 -0
- package/contracts/instance/BundleSet.sol +42 -38
- package/contracts/instance/IBaseStore.sol +37 -0
- package/contracts/instance/IInstance.sol +113 -43
- package/contracts/instance/IInstanceService.sol +61 -34
- package/contracts/instance/Instance.sol +201 -104
- package/contracts/instance/InstanceAdmin.sol +218 -177
- package/contracts/instance/InstanceAuthorizationV3.sol +154 -83
- package/contracts/instance/InstanceReader.sol +456 -255
- package/contracts/instance/InstanceService.sol +333 -262
- package/contracts/instance/InstanceServiceManager.sol +6 -7
- package/contracts/instance/InstanceStore.sol +153 -107
- package/contracts/instance/ProductStore.sol +290 -0
- package/contracts/instance/RiskSet.sol +126 -0
- package/contracts/instance/TargetNames.sol +10 -0
- package/contracts/instance/base/BalanceStore.sol +4 -6
- package/contracts/instance/base/ObjectCounter.sol +1 -2
- package/contracts/instance/base/ObjectLifecycle.sol +13 -10
- package/contracts/instance/base/ObjectSet.sol +31 -33
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +29 -20
- package/contracts/instance/module/IDistribution.sol +21 -8
- 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 +3 -7
- package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/IOracleService.sol +2 -1
- package/contracts/oracle/Oracle.sol +11 -25
- package/contracts/oracle/OracleService.sol +119 -87
- package/contracts/oracle/OracleServiceManager.sol +6 -6
- package/contracts/pool/BasicPool.sol +40 -43
- package/contracts/pool/BasicPoolAuthorization.sol +39 -13
- package/contracts/pool/BundleService.sol +200 -155
- package/contracts/pool/BundleServiceManager.sol +6 -6
- package/contracts/pool/IBundleService.sol +42 -46
- package/contracts/pool/IPoolComponent.sol +19 -15
- package/contracts/pool/IPoolService.sol +97 -77
- package/contracts/pool/Pool.sol +145 -142
- package/contracts/pool/PoolLib.sol +341 -0
- package/contracts/pool/PoolService.sol +413 -233
- package/contracts/pool/PoolServiceManager.sol +4 -4
- package/contracts/product/ApplicationService.sol +144 -47
- package/contracts/product/ApplicationServiceManager.sol +4 -4
- package/contracts/product/BasicProduct.sol +11 -15
- package/contracts/product/BasicProductAuthorization.sol +32 -12
- package/contracts/product/ClaimService.sol +394 -185
- package/contracts/product/ClaimServiceManager.sol +4 -4
- package/contracts/product/IApplicationService.sol +29 -3
- package/contracts/product/IClaimService.sol +48 -11
- package/contracts/product/IPolicyService.sol +61 -39
- package/contracts/product/IPricingService.sol +11 -10
- package/contracts/product/IProductComponent.sol +27 -5
- package/contracts/product/IRiskService.sol +48 -0
- package/contracts/product/PolicyService.sol +434 -288
- package/contracts/product/PolicyServiceLib.sol +139 -0
- package/contracts/product/PolicyServiceManager.sol +4 -4
- package/contracts/product/PricingService.sol +90 -84
- package/contracts/product/PricingServiceManager.sol +4 -4
- package/contracts/product/Product.sol +198 -108
- package/contracts/product/RiskService.sol +189 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +72 -40
- package/contracts/registry/IRegistry.sol +70 -32
- package/contracts/registry/IRegistryService.sol +5 -12
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +367 -207
- package/contracts/registry/RegistryAdmin.sol +99 -291
- package/contracts/registry/RegistryAuthorization.sol +337 -0
- package/contracts/registry/RegistryService.sol +38 -49
- package/contracts/registry/RegistryServiceManager.sol +3 -3
- package/contracts/registry/ReleaseAdmin.sol +199 -0
- package/contracts/registry/ReleaseLifecycle.sol +8 -3
- package/contracts/registry/ReleaseRegistry.sol +279 -239
- package/contracts/registry/ServiceAuthorizationV3.sol +205 -63
- package/contracts/registry/TokenRegistry.sol +61 -59
- package/contracts/shared/Component.sol +72 -142
- package/contracts/shared/ComponentService.sol +428 -388
- package/contracts/shared/ComponentServiceManager.sol +8 -5
- package/contracts/shared/ContractLib.sol +312 -0
- package/contracts/shared/IComponent.sol +6 -18
- package/contracts/shared/IComponentService.sol +43 -40
- package/contracts/shared/IInstanceLinkedComponent.sol +6 -32
- package/contracts/shared/ILifecycle.sol +3 -1
- package/contracts/shared/INftOwnable.sol +4 -0
- package/contracts/shared/IPolicyHolder.sol +12 -22
- package/contracts/shared/IRegisterable.sol +22 -1
- package/contracts/shared/IService.sol +3 -5
- package/contracts/shared/InitializableERC165.sol +10 -2
- package/contracts/shared/InstanceLinkedComponent.sol +74 -54
- package/contracts/shared/Lifecycle.sol +15 -4
- package/contracts/shared/NftOwnable.sol +31 -9
- package/contracts/shared/PolicyHolder.sol +18 -54
- package/contracts/shared/Registerable.sol +52 -21
- package/contracts/shared/RegistryLinked.sol +9 -14
- package/contracts/shared/Service.sol +20 -35
- package/contracts/shared/TokenHandler.sol +310 -26
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +270 -71
- package/contracts/staking/IStakingService.sol +45 -78
- package/contracts/staking/ITargetLimitHandler.sol +17 -0
- package/contracts/staking/Staking.sol +526 -245
- package/contracts/staking/StakingLib.sol +195 -0
- package/contracts/staking/StakingManager.sol +12 -9
- package/contracts/staking/StakingReader.sol +70 -82
- package/contracts/staking/StakingService.sol +62 -152
- package/contracts/staking/StakingServiceManager.sol +7 -5
- package/contracts/staking/StakingStore.sol +1093 -330
- package/contracts/staking/TargetHandler.sol +132 -0
- package/contracts/staking/TargetManagerLib.sol +73 -46
- package/contracts/type/Amount.sol +19 -0
- package/contracts/type/Blocknumber.sol +24 -23
- package/contracts/type/ChainId.sol +101 -0
- 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 +73 -37
- package/contracts/type/PayoutId.sol +10 -10
- package/contracts/type/RiskId.sol +38 -6
- package/contracts/type/RoleId.sol +61 -55
- package/contracts/type/Seconds.sol +40 -1
- package/contracts/type/Selector.sol +5 -0
- package/contracts/type/StateId.sol +15 -1
- package/contracts/type/String.sol +12 -0
- package/contracts/type/Timestamp.sol +14 -7
- package/contracts/type/UFixed.sol +38 -126
- package/contracts/type/Version.sol +54 -5
- package/contracts/upgradeability/IVersionable.sol +3 -0
- package/contracts/upgradeability/ProxyManager.sol +94 -46
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
- package/contracts/upgradeability/Versionable.sol +8 -5
- package/package.json +5 -4
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +0 -4
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +0 -290
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +0 -4
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +0 -390
- 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/IProductService.sol/IProductService.json +0 -400
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +0 -708
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +0 -702
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.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/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -470
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -164
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
- package/contracts/authorization/IModuleAuthorization.sol +0 -21
- package/contracts/authorization/ModuleAuthorization.sol +0 -78
- package/contracts/instance/module/IAccess.sol +0 -46
- package/contracts/product/IProductService.sol +0 -33
- package/contracts/product/ProductService.sol +0 -99
- package/contracts/product/ProductServiceManager.sol +0 -39
- package/contracts/shared/ComponentVerifyingService.sol +0 -117
- package/contracts/shared/IKeyValueStore.sol +0 -54
- package/contracts/shared/InitializableCustom.sol +0 -177
- package/contracts/shared/KeyValueStore.sol +0 -131
- package/contracts/staking/StakeManagerLib.sol +0 -231
- package/contracts/staking/StakingLifecycle.sol +0 -23
| @@ -43,12 +43,98 @@ | |
| 43 43 | 
             
                },
         | 
| 44 44 | 
             
                {
         | 
| 45 45 | 
             
                  "inputs": [],
         | 
| 46 | 
            -
                  "name": " | 
| 46 | 
            +
                  "name": "ErrorAccessAdminAccessManagerEmptyName",
         | 
| 47 | 
            +
                  "type": "error"
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                  "inputs": [
         | 
| 51 | 
            +
                    {
         | 
| 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"
         | 
| 93 | 
            +
                    }
         | 
| 94 | 
            +
                  ],
         | 
| 95 | 
            +
                  "name": "ErrorAccessAdminAuthorizeForAdminRoleInvalid",
         | 
| 96 | 
            +
                  "type": "error"
         | 
| 97 | 
            +
                },
         | 
| 98 | 
            +
                {
         | 
| 99 | 
            +
                  "inputs": [
         | 
| 100 | 
            +
                    {
         | 
| 101 | 
            +
                      "internalType": "address",
         | 
| 102 | 
            +
                      "name": "authorization",
         | 
| 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"
         | 
| 114 | 
            +
                    }
         | 
| 115 | 
            +
                  ],
         | 
| 116 | 
            +
                  "name": "ErrorAccessAdminDomainMismatch",
         | 
| 47 117 | 
             
                  "type": "error"
         | 
| 48 118 | 
             
                },
         | 
| 49 119 | 
             
                {
         | 
| 50 120 | 
             
                  "inputs": [],
         | 
| 51 | 
            -
                  "name": " | 
| 121 | 
            +
                  "name": "ErrorAccessAdminFunctionNameEmpty",
         | 
| 122 | 
            +
                  "type": "error"
         | 
| 123 | 
            +
                },
         | 
| 124 | 
            +
                {
         | 
| 125 | 
            +
                  "inputs": [
         | 
| 126 | 
            +
                    {
         | 
| 127 | 
            +
                      "internalType": "address",
         | 
| 128 | 
            +
                      "name": "target",
         | 
| 129 | 
            +
                      "type": "address"
         | 
| 130 | 
            +
                    },
         | 
| 131 | 
            +
                    {
         | 
| 132 | 
            +
                      "internalType": "enum IAccess.TargetType",
         | 
| 133 | 
            +
                      "name": "serviceTargetType",
         | 
| 134 | 
            +
                      "type": "uint8"
         | 
| 135 | 
            +
                    }
         | 
| 136 | 
            +
                  ],
         | 
| 137 | 
            +
                  "name": "ErrorAccessAdminInvalidServiceType",
         | 
| 52 138 | 
             
                  "type": "error"
         | 
| 53 139 | 
             
                },
         | 
| 54 140 | 
             
                {
         | 
| @@ -57,9 +143,24 @@ | |
| 57 143 | 
             
                      "internalType": "address",
         | 
| 58 144 | 
             
                      "name": "target",
         | 
| 59 145 | 
             
                      "type": "address"
         | 
| 146 | 
            +
                    },
         | 
| 147 | 
            +
                    {
         | 
| 148 | 
            +
                      "internalType": "enum IAccess.TargetType",
         | 
| 149 | 
            +
                      "name": "targetType",
         | 
| 150 | 
            +
                      "type": "uint8"
         | 
| 60 151 | 
             
                    }
         | 
| 61 152 | 
             
                  ],
         | 
| 62 | 
            -
                  "name": " | 
| 153 | 
            +
                  "name": "ErrorAccessAdminInvalidTargetType",
         | 
| 154 | 
            +
                  "type": "error"
         | 
| 155 | 
            +
                },
         | 
| 156 | 
            +
                {
         | 
| 157 | 
            +
                  "inputs": [],
         | 
| 158 | 
            +
                  "name": "ErrorAccessAdminInvalidUseOfAdminRole",
         | 
| 159 | 
            +
                  "type": "error"
         | 
| 160 | 
            +
                },
         | 
| 161 | 
            +
                {
         | 
| 162 | 
            +
                  "inputs": [],
         | 
| 163 | 
            +
                  "name": "ErrorAccessAdminInvalidUseOfPublicRole",
         | 
| 63 164 | 
             
                  "type": "error"
         | 
| 64 165 | 
             
                },
         | 
| 65 166 | 
             
                {
         | 
| @@ -68,14 +169,63 @@ | |
| 68 169 | 
             
                      "internalType": "RoleId",
         | 
| 69 170 | 
             
                      "name": "adminRoleId",
         | 
| 70 171 | 
             
                      "type": "uint64"
         | 
| 172 | 
            +
                    },
         | 
| 173 | 
            +
                    {
         | 
| 174 | 
            +
                      "internalType": "address",
         | 
| 175 | 
            +
                      "name": "account",
         | 
| 176 | 
            +
                      "type": "address"
         | 
| 71 177 | 
             
                    }
         | 
| 72 178 | 
             
                  ],
         | 
| 73 | 
            -
                  "name": " | 
| 179 | 
            +
                  "name": "ErrorAccessAdminNotAdminOfRole",
         | 
| 180 | 
            +
                  "type": "error"
         | 
| 181 | 
            +
                },
         | 
| 182 | 
            +
                {
         | 
| 183 | 
            +
                  "inputs": [
         | 
| 184 | 
            +
                    {
         | 
| 185 | 
            +
                      "internalType": "address",
         | 
| 186 | 
            +
                      "name": "authorization",
         | 
| 187 | 
            +
                      "type": "address"
         | 
| 188 | 
            +
                    }
         | 
| 189 | 
            +
                  ],
         | 
| 190 | 
            +
                  "name": "ErrorAccessAdminNotAuthorization",
         | 
| 191 | 
            +
                  "type": "error"
         | 
| 192 | 
            +
                },
         | 
| 193 | 
            +
                {
         | 
| 194 | 
            +
                  "inputs": [
         | 
| 195 | 
            +
                    {
         | 
| 196 | 
            +
                      "internalType": "address",
         | 
| 197 | 
            +
                      "name": "target",
         | 
| 198 | 
            +
                      "type": "address"
         | 
| 199 | 
            +
                    }
         | 
| 200 | 
            +
                  ],
         | 
| 201 | 
            +
                  "name": "ErrorAccessAdminNotComponentOrCustomTarget",
         | 
| 74 202 | 
             
                  "type": "error"
         | 
| 75 203 | 
             
                },
         | 
| 76 204 | 
             
                {
         | 
| 77 205 | 
             
                  "inputs": [],
         | 
| 78 | 
            -
                  "name": " | 
| 206 | 
            +
                  "name": "ErrorAccessAdminNotDeployer",
         | 
| 207 | 
            +
                  "type": "error"
         | 
| 208 | 
            +
                },
         | 
| 209 | 
            +
                {
         | 
| 210 | 
            +
                  "inputs": [
         | 
| 211 | 
            +
                    {
         | 
| 212 | 
            +
                      "internalType": "address",
         | 
| 213 | 
            +
                      "name": "registerable",
         | 
| 214 | 
            +
                      "type": "address"
         | 
| 215 | 
            +
                    }
         | 
| 216 | 
            +
                  ],
         | 
| 217 | 
            +
                  "name": "ErrorAccessAdminNotRegistered",
         | 
| 218 | 
            +
                  "type": "error"
         | 
| 219 | 
            +
                },
         | 
| 220 | 
            +
                {
         | 
| 221 | 
            +
                  "inputs": [
         | 
| 222 | 
            +
                    {
         | 
| 223 | 
            +
                      "internalType": "address",
         | 
| 224 | 
            +
                      "name": "registry",
         | 
| 225 | 
            +
                      "type": "address"
         | 
| 226 | 
            +
                    }
         | 
| 227 | 
            +
                  ],
         | 
| 228 | 
            +
                  "name": "ErrorAccessAdminNotRegistry",
         | 
| 79 229 | 
             
                  "type": "error"
         | 
| 80 230 | 
             
                },
         | 
| 81 231 | 
             
                {
         | 
| @@ -84,9 +234,46 @@ | |
| 84 234 | 
             
                      "internalType": "RoleId",
         | 
| 85 235 | 
             
                      "name": "roleId",
         | 
| 86 236 | 
             
                      "type": "uint64"
         | 
| 237 | 
            +
                    },
         | 
| 238 | 
            +
                    {
         | 
| 239 | 
            +
                      "internalType": "address",
         | 
| 240 | 
            +
                      "name": "account",
         | 
| 241 | 
            +
                      "type": "address"
         | 
| 242 | 
            +
                    }
         | 
| 243 | 
            +
                  ],
         | 
| 244 | 
            +
                  "name": "ErrorAccessAdminNotRoleOwner",
         | 
| 245 | 
            +
                  "type": "error"
         | 
| 246 | 
            +
                },
         | 
| 247 | 
            +
                {
         | 
| 248 | 
            +
                  "inputs": [
         | 
| 249 | 
            +
                    {
         | 
| 250 | 
            +
                      "internalType": "address",
         | 
| 251 | 
            +
                      "name": "serviceAuthorization",
         | 
| 252 | 
            +
                      "type": "address"
         | 
| 87 253 | 
             
                    }
         | 
| 88 254 | 
             
                  ],
         | 
| 89 | 
            -
                  "name": " | 
| 255 | 
            +
                  "name": "ErrorAccessAdminNotServiceAuthorization",
         | 
| 256 | 
            +
                  "type": "error"
         | 
| 257 | 
            +
                },
         | 
| 258 | 
            +
                {
         | 
| 259 | 
            +
                  "inputs": [
         | 
| 260 | 
            +
                    {
         | 
| 261 | 
            +
                      "internalType": "address",
         | 
| 262 | 
            +
                      "name": "authorization",
         | 
| 263 | 
            +
                      "type": "address"
         | 
| 264 | 
            +
                    },
         | 
| 265 | 
            +
                    {
         | 
| 266 | 
            +
                      "internalType": "VersionPart",
         | 
| 267 | 
            +
                      "name": "expectedRelease",
         | 
| 268 | 
            +
                      "type": "uint8"
         | 
| 269 | 
            +
                    },
         | 
| 270 | 
            +
                    {
         | 
| 271 | 
            +
                      "internalType": "VersionPart",
         | 
| 272 | 
            +
                      "name": "actualRelease",
         | 
| 273 | 
            +
                      "type": "uint8"
         | 
| 274 | 
            +
                    }
         | 
| 275 | 
            +
                  ],
         | 
| 276 | 
            +
                  "name": "ErrorAccessAdminReleaseMismatch",
         | 
| 90 277 | 
             
                  "type": "error"
         | 
| 91 278 | 
             
                },
         | 
| 92 279 | 
             
                {
         | 
| @@ -97,7 +284,7 @@ | |
| 97 284 | 
             
                      "type": "uint64"
         | 
| 98 285 | 
             
                    }
         | 
| 99 286 | 
             
                  ],
         | 
| 100 | 
            -
                  "name": " | 
| 287 | 
            +
                  "name": "ErrorAccessAdminRoleAdminNotExisting",
         | 
| 101 288 | 
             
                  "type": "error"
         | 
| 102 289 | 
             
                },
         | 
| 103 290 | 
             
                {
         | 
| @@ -113,7 +300,7 @@ | |
| 113 300 | 
             
                      "type": "string"
         | 
| 114 301 | 
             
                    }
         | 
| 115 302 | 
             
                  ],
         | 
| 116 | 
            -
                  "name": " | 
| 303 | 
            +
                  "name": "ErrorAccessAdminRoleAlreadyCreated",
         | 
| 117 304 | 
             
                  "type": "error"
         | 
| 118 305 | 
             
                },
         | 
| 119 306 | 
             
                {
         | 
| @@ -124,7 +311,7 @@ | |
| 124 311 | 
             
                      "type": "uint64"
         | 
| 125 312 | 
             
                    }
         | 
| 126 313 | 
             
                  ],
         | 
| 127 | 
            -
                  "name": " | 
| 314 | 
            +
                  "name": "ErrorAccessAdminRoleIsLocked",
         | 
| 128 315 | 
             
                  "type": "error"
         | 
| 129 316 | 
             
                },
         | 
| 130 317 | 
             
                {
         | 
| @@ -135,7 +322,39 @@ | |
| 135 322 | 
             
                      "type": "uint64"
         | 
| 136 323 | 
             
                    }
         | 
| 137 324 | 
             
                  ],
         | 
| 138 | 
            -
                  "name": " | 
| 325 | 
            +
                  "name": "ErrorAccessAdminRoleIsPaused",
         | 
| 326 | 
            +
                  "type": "error"
         | 
| 327 | 
            +
                },
         | 
| 328 | 
            +
                {
         | 
| 329 | 
            +
                  "inputs": [
         | 
| 330 | 
            +
                    {
         | 
| 331 | 
            +
                      "internalType": "RoleId",
         | 
| 332 | 
            +
                      "name": "roleId",
         | 
| 333 | 
            +
                      "type": "uint64"
         | 
| 334 | 
            +
                    },
         | 
| 335 | 
            +
                    {
         | 
| 336 | 
            +
                      "internalType": "address",
         | 
| 337 | 
            +
                      "name": "notContract",
         | 
| 338 | 
            +
                      "type": "address"
         | 
| 339 | 
            +
                    }
         | 
| 340 | 
            +
                  ],
         | 
| 341 | 
            +
                  "name": "ErrorAccessAdminRoleMemberNotContract",
         | 
| 342 | 
            +
                  "type": "error"
         | 
| 343 | 
            +
                },
         | 
| 344 | 
            +
                {
         | 
| 345 | 
            +
                  "inputs": [
         | 
| 346 | 
            +
                    {
         | 
| 347 | 
            +
                      "internalType": "RoleId",
         | 
| 348 | 
            +
                      "name": "roleId",
         | 
| 349 | 
            +
                      "type": "uint64"
         | 
| 350 | 
            +
                    },
         | 
| 351 | 
            +
                    {
         | 
| 352 | 
            +
                      "internalType": "address",
         | 
| 353 | 
            +
                      "name": "expectedMember",
         | 
| 354 | 
            +
                      "type": "address"
         | 
| 355 | 
            +
                    }
         | 
| 356 | 
            +
                  ],
         | 
| 357 | 
            +
                  "name": "ErrorAccessAdminRoleMemberRemovalDisabled",
         | 
| 139 358 | 
             
                  "type": "error"
         | 
| 140 359 | 
             
                },
         | 
| 141 360 | 
             
                {
         | 
| @@ -151,7 +370,7 @@ | |
| 151 370 | 
             
                      "type": "uint256"
         | 
| 152 371 | 
             
                    }
         | 
| 153 372 | 
             
                  ],
         | 
| 154 | 
            -
                  "name": " | 
| 373 | 
            +
                  "name": "ErrorAccessAdminRoleMembersLimitReached",
         | 
| 155 374 | 
             
                  "type": "error"
         | 
| 156 375 | 
             
                },
         | 
| 157 376 | 
             
                {
         | 
| @@ -172,7 +391,7 @@ | |
| 172 391 | 
             
                      "type": "uint64"
         | 
| 173 392 | 
             
                    }
         | 
| 174 393 | 
             
                  ],
         | 
| 175 | 
            -
                  "name": " | 
| 394 | 
            +
                  "name": "ErrorAccessAdminRoleNameAlreadyExists",
         | 
| 176 395 | 
             
                  "type": "error"
         | 
| 177 396 | 
             
                },
         | 
| 178 397 | 
             
                {
         | 
| @@ -183,7 +402,7 @@ | |
| 183 402 | 
             
                      "type": "uint64"
         | 
| 184 403 | 
             
                    }
         | 
| 185 404 | 
             
                  ],
         | 
| 186 | 
            -
                  "name": " | 
| 405 | 
            +
                  "name": "ErrorAccessAdminRoleNameEmpty",
         | 
| 187 406 | 
             
                  "type": "error"
         | 
| 188 407 | 
             
                },
         | 
| 189 408 | 
             
                {
         | 
| @@ -194,7 +413,7 @@ | |
| 194 413 | 
             
                      "type": "uint64"
         | 
| 195 414 | 
             
                    }
         | 
| 196 415 | 
             
                  ],
         | 
| 197 | 
            -
                  "name": " | 
| 416 | 
            +
                  "name": "ErrorAccessAdminRoleNotCustom",
         | 
| 198 417 | 
             
                  "type": "error"
         | 
| 199 418 | 
             
                },
         | 
| 200 419 | 
             
                {
         | 
| @@ -205,12 +424,17 @@ | |
| 205 424 | 
             
                      "type": "uint64"
         | 
| 206 425 | 
             
                    }
         | 
| 207 426 | 
             
                  ],
         | 
| 208 | 
            -
                  "name": " | 
| 427 | 
            +
                  "name": "ErrorAccessAdminRoleUnknown",
         | 
| 209 428 | 
             
                  "type": "error"
         | 
| 210 429 | 
             
                },
         | 
| 211 430 | 
             
                {
         | 
| 212 431 | 
             
                  "inputs": [],
         | 
| 213 | 
            -
                  "name": " | 
| 432 | 
            +
                  "name": "ErrorAccessAdminSelectorZero",
         | 
| 433 | 
            +
                  "type": "error"
         | 
| 434 | 
            +
                },
         | 
| 435 | 
            +
                {
         | 
| 436 | 
            +
                  "inputs": [],
         | 
| 437 | 
            +
                  "name": "ErrorAccessAdminTagetNotLockable",
         | 
| 214 438 | 
             
                  "type": "error"
         | 
| 215 439 | 
             
                },
         | 
| 216 440 | 
             
                {
         | 
| @@ -226,7 +450,23 @@ | |
| 226 450 | 
             
                      "type": "string"
         | 
| 227 451 | 
             
                    }
         | 
| 228 452 | 
             
                  ],
         | 
| 229 | 
            -
                  "name": " | 
| 453 | 
            +
                  "name": "ErrorAccessAdminTargetAlreadyCreated",
         | 
| 454 | 
            +
                  "type": "error"
         | 
| 455 | 
            +
                },
         | 
| 456 | 
            +
                {
         | 
| 457 | 
            +
                  "inputs": [
         | 
| 458 | 
            +
                    {
         | 
| 459 | 
            +
                      "internalType": "address",
         | 
| 460 | 
            +
                      "name": "target",
         | 
| 461 | 
            +
                      "type": "address"
         | 
| 462 | 
            +
                    },
         | 
| 463 | 
            +
                    {
         | 
| 464 | 
            +
                      "internalType": "bool",
         | 
| 465 | 
            +
                      "name": "isLocked",
         | 
| 466 | 
            +
                      "type": "bool"
         | 
| 467 | 
            +
                    }
         | 
| 468 | 
            +
                  ],
         | 
| 469 | 
            +
                  "name": "ErrorAccessAdminTargetAlreadyLocked",
         | 
| 230 470 | 
             
                  "type": "error"
         | 
| 231 471 | 
             
                },
         | 
| 232 472 | 
             
                {
         | 
| @@ -242,7 +482,7 @@ | |
| 242 482 | 
             
                      "type": "address"
         | 
| 243 483 | 
             
                    }
         | 
| 244 484 | 
             
                  ],
         | 
| 245 | 
            -
                  "name": " | 
| 485 | 
            +
                  "name": "ErrorAccessAdminTargetAuthorityMismatch",
         | 
| 246 486 | 
             
                  "type": "error"
         | 
| 247 487 | 
             
                },
         | 
| 248 488 | 
             
                {
         | 
| @@ -263,7 +503,18 @@ | |
| 263 503 | 
             
                      "type": "address"
         | 
| 264 504 | 
             
                    }
         | 
| 265 505 | 
             
                  ],
         | 
| 266 | 
            -
                  "name": " | 
| 506 | 
            +
                  "name": "ErrorAccessAdminTargetNameAlreadyExists",
         | 
| 507 | 
            +
                  "type": "error"
         | 
| 508 | 
            +
                },
         | 
| 509 | 
            +
                {
         | 
| 510 | 
            +
                  "inputs": [
         | 
| 511 | 
            +
                    {
         | 
| 512 | 
            +
                      "internalType": "address",
         | 
| 513 | 
            +
                      "name": "target",
         | 
| 514 | 
            +
                      "type": "address"
         | 
| 515 | 
            +
                    }
         | 
| 516 | 
            +
                  ],
         | 
| 517 | 
            +
                  "name": "ErrorAccessAdminTargetNameEmpty",
         | 
| 267 518 | 
             
                  "type": "error"
         | 
| 268 519 | 
             
                },
         | 
| 269 520 | 
             
                {
         | 
| @@ -274,7 +525,7 @@ | |
| 274 525 | 
             
                      "type": "address"
         | 
| 275 526 | 
             
                    }
         | 
| 276 527 | 
             
                  ],
         | 
| 277 | 
            -
                  "name": " | 
| 528 | 
            +
                  "name": "ErrorAccessAdminTargetNotAccessManaged",
         | 
| 278 529 | 
             
                  "type": "error"
         | 
| 279 530 | 
             
                },
         | 
| 280 531 | 
             
                {
         | 
| @@ -285,7 +536,7 @@ | |
| 285 536 | 
             
                      "type": "address"
         | 
| 286 537 | 
             
                    }
         | 
| 287 538 | 
             
                  ],
         | 
| 288 | 
            -
                  "name": " | 
| 539 | 
            +
                  "name": "ErrorAccessAdminTargetNotCreated",
         | 
| 289 540 | 
             
                  "type": "error"
         | 
| 290 541 | 
             
                },
         | 
| 291 542 | 
             
                {
         | 
| @@ -296,7 +547,50 @@ | |
| 296 547 | 
             
                      "type": "address"
         | 
| 297 548 | 
             
                    }
         | 
| 298 549 | 
             
                  ],
         | 
| 299 | 
            -
                  "name": " | 
| 550 | 
            +
                  "name": "ErrorAccessAdminTargetNotRegistered",
         | 
| 551 | 
            +
                  "type": "error"
         | 
| 552 | 
            +
                },
         | 
| 553 | 
            +
                {
         | 
| 554 | 
            +
                  "inputs": [
         | 
| 555 | 
            +
                    {
         | 
| 556 | 
            +
                      "internalType": "address",
         | 
| 557 | 
            +
                      "name": "target",
         | 
| 558 | 
            +
                      "type": "address"
         | 
| 559 | 
            +
                    },
         | 
| 560 | 
            +
                    {
         | 
| 561 | 
            +
                      "internalType": "ObjectType",
         | 
| 562 | 
            +
                      "name": "expectedType",
         | 
| 563 | 
            +
                      "type": "uint8"
         | 
| 564 | 
            +
                    },
         | 
| 565 | 
            +
                    {
         | 
| 566 | 
            +
                      "internalType": "ObjectType",
         | 
| 567 | 
            +
                      "name": "actualType",
         | 
| 568 | 
            +
                      "type": "uint8"
         | 
| 569 | 
            +
                    }
         | 
| 570 | 
            +
                  ],
         | 
| 571 | 
            +
                  "name": "ErrorAccessAdminTargetTypeMismatch",
         | 
| 572 | 
            +
                  "type": "error"
         | 
| 573 | 
            +
                },
         | 
| 574 | 
            +
                {
         | 
| 575 | 
            +
                  "inputs": [
         | 
| 576 | 
            +
                    {
         | 
| 577 | 
            +
                      "internalType": "address",
         | 
| 578 | 
            +
                      "name": "target",
         | 
| 579 | 
            +
                      "type": "address"
         | 
| 580 | 
            +
                    }
         | 
| 581 | 
            +
                  ],
         | 
| 582 | 
            +
                  "name": "ErrorAccessAdminTargetUnknown",
         | 
| 583 | 
            +
                  "type": "error"
         | 
| 584 | 
            +
                },
         | 
| 585 | 
            +
                {
         | 
| 586 | 
            +
                  "inputs": [
         | 
| 587 | 
            +
                    {
         | 
| 588 | 
            +
                      "internalType": "address",
         | 
| 589 | 
            +
                      "name": "registryAddress",
         | 
| 590 | 
            +
                      "type": "address"
         | 
| 591 | 
            +
                    }
         | 
| 592 | 
            +
                  ],
         | 
| 593 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 300 594 | 
             
                  "type": "error"
         | 
| 301 595 | 
             
                },
         | 
| 302 596 | 
             
                {
         | 
| @@ -315,6 +609,12 @@ | |
| 315 609 | 
             
                {
         | 
| 316 610 | 
             
                  "anonymous": false,
         | 
| 317 611 | 
             
                  "inputs": [
         | 
| 612 | 
            +
                    {
         | 
| 613 | 
            +
                      "indexed": false,
         | 
| 614 | 
            +
                      "internalType": "string",
         | 
| 615 | 
            +
                      "name": "admin",
         | 
| 616 | 
            +
                      "type": "string"
         | 
| 617 | 
            +
                    },
         | 
| 318 618 | 
             
                    {
         | 
| 319 619 | 
             
                      "indexed": false,
         | 
| 320 620 | 
             
                      "internalType": "address",
         | 
| @@ -323,23 +623,60 @@ | |
| 323 623 | 
             
                    },
         | 
| 324 624 | 
             
                    {
         | 
| 325 625 | 
             
                      "indexed": false,
         | 
| 326 | 
            -
                      "internalType": " | 
| 327 | 
            -
                      "name": " | 
| 328 | 
            -
                      "type": " | 
| 626 | 
            +
                      "internalType": "string",
         | 
| 627 | 
            +
                      "name": "func",
         | 
| 628 | 
            +
                      "type": "string"
         | 
| 329 629 | 
             
                    },
         | 
| 630 | 
            +
                    {
         | 
| 631 | 
            +
                      "indexed": false,
         | 
| 632 | 
            +
                      "internalType": "Blocknumber",
         | 
| 633 | 
            +
                      "name": "lastUpdateIn",
         | 
| 634 | 
            +
                      "type": "uint40"
         | 
| 635 | 
            +
                    }
         | 
| 636 | 
            +
                  ],
         | 
| 637 | 
            +
                  "name": "LogAccessAdminFunctionGranted",
         | 
| 638 | 
            +
                  "type": "event"
         | 
| 639 | 
            +
                },
         | 
| 640 | 
            +
                {
         | 
| 641 | 
            +
                  "anonymous": false,
         | 
| 642 | 
            +
                  "inputs": [
         | 
| 330 643 | 
             
                    {
         | 
| 331 644 | 
             
                      "indexed": false,
         | 
| 332 645 | 
             
                      "internalType": "string",
         | 
| 333 | 
            -
                      "name": " | 
| 646 | 
            +
                      "name": "admin",
         | 
| 334 647 | 
             
                      "type": "string"
         | 
| 648 | 
            +
                    },
         | 
| 649 | 
            +
                    {
         | 
| 650 | 
            +
                      "indexed": false,
         | 
| 651 | 
            +
                      "internalType": "RoleId",
         | 
| 652 | 
            +
                      "name": "roleId",
         | 
| 653 | 
            +
                      "type": "uint64"
         | 
| 654 | 
            +
                    },
         | 
| 655 | 
            +
                    {
         | 
| 656 | 
            +
                      "indexed": false,
         | 
| 657 | 
            +
                      "internalType": "bool",
         | 
| 658 | 
            +
                      "name": "active",
         | 
| 659 | 
            +
                      "type": "bool"
         | 
| 660 | 
            +
                    },
         | 
| 661 | 
            +
                    {
         | 
| 662 | 
            +
                      "indexed": false,
         | 
| 663 | 
            +
                      "internalType": "Blocknumber",
         | 
| 664 | 
            +
                      "name": "lastUpdateIn",
         | 
| 665 | 
            +
                      "type": "uint40"
         | 
| 335 666 | 
             
                    }
         | 
| 336 667 | 
             
                  ],
         | 
| 337 | 
            -
                  "name": " | 
| 668 | 
            +
                  "name": "LogAccessAdminRoleActivatedSet",
         | 
| 338 669 | 
             
                  "type": "event"
         | 
| 339 670 | 
             
                },
         | 
| 340 671 | 
             
                {
         | 
| 341 672 | 
             
                  "anonymous": false,
         | 
| 342 673 | 
             
                  "inputs": [
         | 
| 674 | 
            +
                    {
         | 
| 675 | 
            +
                      "indexed": false,
         | 
| 676 | 
            +
                      "internalType": "string",
         | 
| 677 | 
            +
                      "name": "admin",
         | 
| 678 | 
            +
                      "type": "string"
         | 
| 679 | 
            +
                    },
         | 
| 343 680 | 
             
                    {
         | 
| 344 681 | 
             
                      "indexed": false,
         | 
| 345 682 | 
             
                      "internalType": "RoleId",
         | 
| @@ -348,8 +685,8 @@ | |
| 348 685 | 
             
                    },
         | 
| 349 686 | 
             
                    {
         | 
| 350 687 | 
             
                      "indexed": false,
         | 
| 351 | 
            -
                      "internalType": "enum IAccess. | 
| 352 | 
            -
                      "name": " | 
| 688 | 
            +
                      "internalType": "enum IAccess.TargetType",
         | 
| 689 | 
            +
                      "name": "targetType",
         | 
| 353 690 | 
             
                      "type": "uint8"
         | 
| 354 691 | 
             
                    },
         | 
| 355 692 | 
             
                    {
         | 
| @@ -365,110 +702,167 @@ | |
| 365 702 | 
             
                      "type": "string"
         | 
| 366 703 | 
             
                    }
         | 
| 367 704 | 
             
                  ],
         | 
| 368 | 
            -
                  "name": " | 
| 705 | 
            +
                  "name": "LogAccessAdminRoleCreated",
         | 
| 369 706 | 
             
                  "type": "event"
         | 
| 370 707 | 
             
                },
         | 
| 371 708 | 
             
                {
         | 
| 372 709 | 
             
                  "anonymous": false,
         | 
| 373 710 | 
             
                  "inputs": [
         | 
| 711 | 
            +
                    {
         | 
| 712 | 
            +
                      "indexed": false,
         | 
| 713 | 
            +
                      "internalType": "string",
         | 
| 714 | 
            +
                      "name": "admin",
         | 
| 715 | 
            +
                      "type": "string"
         | 
| 716 | 
            +
                    },
         | 
| 374 717 | 
             
                    {
         | 
| 375 718 | 
             
                      "indexed": false,
         | 
| 376 719 | 
             
                      "internalType": "address",
         | 
| 377 | 
            -
                      "name": " | 
| 720 | 
            +
                      "name": "account",
         | 
| 378 721 | 
             
                      "type": "address"
         | 
| 379 722 | 
             
                    },
         | 
| 380 723 | 
             
                    {
         | 
| 381 724 | 
             
                      "indexed": false,
         | 
| 382 725 | 
             
                      "internalType": "string",
         | 
| 383 | 
            -
                      "name": " | 
| 726 | 
            +
                      "name": "roleName",
         | 
| 384 727 | 
             
                      "type": "string"
         | 
| 385 728 | 
             
                    }
         | 
| 386 729 | 
             
                  ],
         | 
| 387 | 
            -
                  "name": " | 
| 730 | 
            +
                  "name": "LogAccessAdminRoleGranted",
         | 
| 388 731 | 
             
                  "type": "event"
         | 
| 389 732 | 
             
                },
         | 
| 390 733 | 
             
                {
         | 
| 391 | 
            -
                  " | 
| 392 | 
            -
                  " | 
| 393 | 
            -
             | 
| 734 | 
            +
                  "anonymous": false,
         | 
| 735 | 
            +
                  "inputs": [
         | 
| 736 | 
            +
                    {
         | 
| 737 | 
            +
                      "indexed": false,
         | 
| 738 | 
            +
                      "internalType": "string",
         | 
| 739 | 
            +
                      "name": "admin",
         | 
| 740 | 
            +
                      "type": "string"
         | 
| 741 | 
            +
                    },
         | 
| 394 742 | 
             
                    {
         | 
| 743 | 
            +
                      "indexed": false,
         | 
| 395 744 | 
             
                      "internalType": "address",
         | 
| 396 | 
            -
                      "name": "",
         | 
| 745 | 
            +
                      "name": "account",
         | 
| 397 746 | 
             
                      "type": "address"
         | 
| 747 | 
            +
                    },
         | 
| 748 | 
            +
                    {
         | 
| 749 | 
            +
                      "indexed": false,
         | 
| 750 | 
            +
                      "internalType": "string",
         | 
| 751 | 
            +
                      "name": "roleName",
         | 
| 752 | 
            +
                      "type": "string"
         | 
| 398 753 | 
             
                    }
         | 
| 399 754 | 
             
                  ],
         | 
| 400 | 
            -
                  " | 
| 401 | 
            -
                  "type": " | 
| 755 | 
            +
                  "name": "LogAccessAdminRoleRevoked",
         | 
| 756 | 
            +
                  "type": "event"
         | 
| 402 757 | 
             
                },
         | 
| 403 758 | 
             
                {
         | 
| 759 | 
            +
                  "anonymous": false,
         | 
| 404 760 | 
             
                  "inputs": [
         | 
| 405 761 | 
             
                    {
         | 
| 762 | 
            +
                      "indexed": false,
         | 
| 763 | 
            +
                      "internalType": "string",
         | 
| 764 | 
            +
                      "name": "admin",
         | 
| 765 | 
            +
                      "type": "string"
         | 
| 766 | 
            +
                    },
         | 
| 767 | 
            +
                    {
         | 
| 768 | 
            +
                      "indexed": false,
         | 
| 769 | 
            +
                      "internalType": "string",
         | 
| 770 | 
            +
                      "name": "name",
         | 
| 771 | 
            +
                      "type": "string"
         | 
| 772 | 
            +
                    },
         | 
| 773 | 
            +
                    {
         | 
| 774 | 
            +
                      "indexed": false,
         | 
| 775 | 
            +
                      "internalType": "bool",
         | 
| 776 | 
            +
                      "name": "managed",
         | 
| 777 | 
            +
                      "type": "bool"
         | 
| 778 | 
            +
                    },
         | 
| 779 | 
            +
                    {
         | 
| 780 | 
            +
                      "indexed": false,
         | 
| 406 781 | 
             
                      "internalType": "address",
         | 
| 407 782 | 
             
                      "name": "target",
         | 
| 408 783 | 
             
                      "type": "address"
         | 
| 409 | 
            -
                    }
         | 
| 410 | 
            -
                  ],
         | 
| 411 | 
            -
                  "name": "authorizedFunctions",
         | 
| 412 | 
            -
                  "outputs": [
         | 
| 784 | 
            +
                    },
         | 
| 413 785 | 
             
                    {
         | 
| 414 | 
            -
                      " | 
| 415 | 
            -
                      " | 
| 416 | 
            -
                      " | 
| 786 | 
            +
                      "indexed": false,
         | 
| 787 | 
            +
                      "internalType": "RoleId",
         | 
| 788 | 
            +
                      "name": "roleId",
         | 
| 789 | 
            +
                      "type": "uint64"
         | 
| 417 790 | 
             
                    }
         | 
| 418 791 | 
             
                  ],
         | 
| 419 | 
            -
                  " | 
| 420 | 
            -
                  "type": " | 
| 792 | 
            +
                  "name": "LogAccessAdminTargetCreated",
         | 
| 793 | 
            +
                  "type": "event"
         | 
| 421 794 | 
             
                },
         | 
| 422 795 | 
             
                {
         | 
| 796 | 
            +
                  "anonymous": false,
         | 
| 423 797 | 
             
                  "inputs": [
         | 
| 424 798 | 
             
                    {
         | 
| 425 | 
            -
                      " | 
| 426 | 
            -
                      " | 
| 427 | 
            -
                      " | 
| 799 | 
            +
                      "indexed": false,
         | 
| 800 | 
            +
                      "internalType": "string",
         | 
| 801 | 
            +
                      "name": "admin",
         | 
| 802 | 
            +
                      "type": "string"
         | 
| 428 803 | 
             
                    },
         | 
| 429 804 | 
             
                    {
         | 
| 805 | 
            +
                      "indexed": false,
         | 
| 430 806 | 
             
                      "internalType": "address",
         | 
| 431 807 | 
             
                      "name": "target",
         | 
| 432 808 | 
             
                      "type": "address"
         | 
| 433 809 | 
             
                    },
         | 
| 434 810 | 
             
                    {
         | 
| 435 | 
            -
                      " | 
| 436 | 
            -
                      " | 
| 437 | 
            -
                      " | 
| 811 | 
            +
                      "indexed": false,
         | 
| 812 | 
            +
                      "internalType": "bool",
         | 
| 813 | 
            +
                      "name": "locked",
         | 
| 814 | 
            +
                      "type": "bool"
         | 
| 815 | 
            +
                    },
         | 
| 816 | 
            +
                    {
         | 
| 817 | 
            +
                      "indexed": false,
         | 
| 818 | 
            +
                      "internalType": "Blocknumber",
         | 
| 819 | 
            +
                      "name": "lastUpdateIn",
         | 
| 820 | 
            +
                      "type": "uint40"
         | 
| 438 821 | 
             
                    }
         | 
| 439 822 | 
             
                  ],
         | 
| 440 | 
            -
                  "name": " | 
| 823 | 
            +
                  "name": "LogAccessAdminTargetLockedSet",
         | 
| 824 | 
            +
                  "type": "event"
         | 
| 825 | 
            +
                },
         | 
| 826 | 
            +
                {
         | 
| 827 | 
            +
                  "inputs": [],
         | 
| 828 | 
            +
                  "name": "authority",
         | 
| 441 829 | 
             
                  "outputs": [
         | 
| 442 830 | 
             
                    {
         | 
| 443 | 
            -
                      "internalType": " | 
| 444 | 
            -
                      "name": " | 
| 445 | 
            -
                      "type": " | 
| 831 | 
            +
                      "internalType": "address",
         | 
| 832 | 
            +
                      "name": "",
         | 
| 833 | 
            +
                      "type": "address"
         | 
| 446 834 | 
             
                    }
         | 
| 447 835 | 
             
                  ],
         | 
| 448 836 | 
             
                  "stateMutability": "view",
         | 
| 449 837 | 
             
                  "type": "function"
         | 
| 450 838 | 
             
                },
         | 
| 451 839 | 
             
                {
         | 
| 452 | 
            -
                  "inputs": [ | 
| 453 | 
            -
                  "name": "deployer",
         | 
| 454 | 
            -
                  "outputs": [
         | 
| 840 | 
            +
                  "inputs": [
         | 
| 455 841 | 
             
                    {
         | 
| 456 842 | 
             
                      "internalType": "address",
         | 
| 457 | 
            -
                      "name": "",
         | 
| 843 | 
            +
                      "name": "target",
         | 
| 458 844 | 
             
                      "type": "address"
         | 
| 459 845 | 
             
                    }
         | 
| 460 846 | 
             
                  ],
         | 
| 847 | 
            +
                  "name": "authorizedFunctions",
         | 
| 848 | 
            +
                  "outputs": [
         | 
| 849 | 
            +
                    {
         | 
| 850 | 
            +
                      "internalType": "uint256",
         | 
| 851 | 
            +
                      "name": "numberOfFunctions",
         | 
| 852 | 
            +
                      "type": "uint256"
         | 
| 853 | 
            +
                    }
         | 
| 854 | 
            +
                  ],
         | 
| 461 855 | 
             
                  "stateMutability": "view",
         | 
| 462 856 | 
             
                  "type": "function"
         | 
| 463 857 | 
             
                },
         | 
| 464 858 | 
             
                {
         | 
| 465 859 | 
             
                  "inputs": [],
         | 
| 466 | 
            -
                  "name": " | 
| 860 | 
            +
                  "name": "getAuthorization",
         | 
| 467 861 | 
             
                  "outputs": [
         | 
| 468 862 | 
             
                    {
         | 
| 469 | 
            -
                      "internalType": " | 
| 470 | 
            -
                      "name": " | 
| 471 | 
            -
                      "type": " | 
| 863 | 
            +
                      "internalType": "contract IAuthorization",
         | 
| 864 | 
            +
                      "name": "authorization",
         | 
| 865 | 
            +
                      "type": "address"
         | 
| 472 866 | 
             
                    }
         | 
| 473 867 | 
             
                  ],
         | 
| 474 868 | 
             
                  "stateMutability": "view",
         | 
| @@ -505,6 +899,11 @@ | |
| 505 899 | 
             
                          "internalType": "Timestamp",
         | 
| 506 900 | 
             
                          "name": "createdAt",
         | 
| 507 901 | 
             
                          "type": "uint40"
         | 
| 902 | 
            +
                        },
         | 
| 903 | 
            +
                        {
         | 
| 904 | 
            +
                          "internalType": "Blocknumber",
         | 
| 905 | 
            +
                          "name": "lastUpdateIn",
         | 
| 906 | 
            +
                          "type": "uint40"
         | 
| 508 907 | 
             
                        }
         | 
| 509 908 | 
             
                      ],
         | 
| 510 909 | 
             
                      "internalType": "struct IAccess.FunctionInfo",
         | 
| @@ -522,12 +921,38 @@ | |
| 522 921 | 
             
                },
         | 
| 523 922 | 
             
                {
         | 
| 524 923 | 
             
                  "inputs": [],
         | 
| 525 | 
            -
                  "name": " | 
| 924 | 
            +
                  "name": "getLinkedNftId",
         | 
| 526 925 | 
             
                  "outputs": [
         | 
| 527 926 | 
             
                    {
         | 
| 528 | 
            -
                      "internalType": " | 
| 529 | 
            -
                      "name": " | 
| 530 | 
            -
                      "type": " | 
| 927 | 
            +
                      "internalType": "NftId",
         | 
| 928 | 
            +
                      "name": "linkedNftId",
         | 
| 929 | 
            +
                      "type": "uint96"
         | 
| 930 | 
            +
                    }
         | 
| 931 | 
            +
                  ],
         | 
| 932 | 
            +
                  "stateMutability": "view",
         | 
| 933 | 
            +
                  "type": "function"
         | 
| 934 | 
            +
                },
         | 
| 935 | 
            +
                {
         | 
| 936 | 
            +
                  "inputs": [],
         | 
| 937 | 
            +
                  "name": "getRegistry",
         | 
| 938 | 
            +
                  "outputs": [
         | 
| 939 | 
            +
                    {
         | 
| 940 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 941 | 
            +
                      "name": "",
         | 
| 942 | 
            +
                      "type": "address"
         | 
| 943 | 
            +
                    }
         | 
| 944 | 
            +
                  ],
         | 
| 945 | 
            +
                  "stateMutability": "view",
         | 
| 946 | 
            +
                  "type": "function"
         | 
| 947 | 
            +
                },
         | 
| 948 | 
            +
                {
         | 
| 949 | 
            +
                  "inputs": [],
         | 
| 950 | 
            +
                  "name": "getRelease",
         | 
| 951 | 
            +
                  "outputs": [
         | 
| 952 | 
            +
                    {
         | 
| 953 | 
            +
                      "internalType": "VersionPart",
         | 
| 954 | 
            +
                      "name": "release",
         | 
| 955 | 
            +
                      "type": "uint8"
         | 
| 531 956 | 
             
                    }
         | 
| 532 957 | 
             
                  ],
         | 
| 533 958 | 
             
                  "stateMutability": "view",
         | 
| @@ -536,29 +961,22 @@ | |
| 536 961 | 
             
                {
         | 
| 537 962 | 
             
                  "inputs": [
         | 
| 538 963 | 
             
                    {
         | 
| 539 | 
            -
                      "internalType": " | 
| 964 | 
            +
                      "internalType": "string",
         | 
| 540 965 | 
             
                      "name": "name",
         | 
| 541 | 
            -
                      "type": " | 
| 966 | 
            +
                      "type": "string"
         | 
| 542 967 | 
             
                    }
         | 
| 543 968 | 
             
                  ],
         | 
| 544 969 | 
             
                  "name": "getRoleForName",
         | 
| 545 970 | 
             
                  "outputs": [
         | 
| 546 971 | 
             
                    {
         | 
| 547 | 
            -
                      " | 
| 548 | 
            -
             | 
| 549 | 
            -
             | 
| 550 | 
            -
             | 
| 551 | 
            -
             | 
| 552 | 
            -
             | 
| 553 | 
            -
             | 
| 554 | 
            -
             | 
| 555 | 
            -
                          "name": "exists",
         | 
| 556 | 
            -
                          "type": "bool"
         | 
| 557 | 
            -
                        }
         | 
| 558 | 
            -
                      ],
         | 
| 559 | 
            -
                      "internalType": "struct IAccess.RoleNameInfo",
         | 
| 560 | 
            -
                      "name": "",
         | 
| 561 | 
            -
                      "type": "tuple"
         | 
| 972 | 
            +
                      "internalType": "RoleId",
         | 
| 973 | 
            +
                      "name": "roleId",
         | 
| 974 | 
            +
                      "type": "uint64"
         | 
| 975 | 
            +
                    },
         | 
| 976 | 
            +
                    {
         | 
| 977 | 
            +
                      "internalType": "bool",
         | 
| 978 | 
            +
                      "name": "exists",
         | 
| 979 | 
            +
                      "type": "bool"
         | 
| 562 980 | 
             
                    }
         | 
| 563 981 | 
             
                  ],
         | 
| 564 982 | 
             
                  "stateMutability": "view",
         | 
| @@ -601,8 +1019,8 @@ | |
| 601 1019 | 
             
                          "type": "uint64"
         | 
| 602 1020 | 
             
                        },
         | 
| 603 1021 | 
             
                        {
         | 
| 604 | 
            -
                          "internalType": "enum IAccess. | 
| 605 | 
            -
                          "name": " | 
| 1022 | 
            +
                          "internalType": "enum IAccess.TargetType",
         | 
| 1023 | 
            +
                          "name": "targetType",
         | 
| 606 1024 | 
             
                          "type": "uint8"
         | 
| 607 1025 | 
             
                        },
         | 
| 608 1026 | 
             
                        {
         | 
| @@ -611,14 +1029,24 @@ | |
| 611 1029 | 
             
                          "type": "uint32"
         | 
| 612 1030 | 
             
                        },
         | 
| 613 1031 | 
             
                        {
         | 
| 614 | 
            -
                          "internalType": " | 
| 615 | 
            -
                          "name": " | 
| 616 | 
            -
                          "type": " | 
| 1032 | 
            +
                          "internalType": "Timestamp",
         | 
| 1033 | 
            +
                          "name": "createdAt",
         | 
| 1034 | 
            +
                          "type": "uint40"
         | 
| 617 1035 | 
             
                        },
         | 
| 618 1036 | 
             
                        {
         | 
| 619 1037 | 
             
                          "internalType": "Timestamp",
         | 
| 620 | 
            -
                          "name": " | 
| 1038 | 
            +
                          "name": "pausedAt",
         | 
| 1039 | 
            +
                          "type": "uint40"
         | 
| 1040 | 
            +
                        },
         | 
| 1041 | 
            +
                        {
         | 
| 1042 | 
            +
                          "internalType": "Blocknumber",
         | 
| 1043 | 
            +
                          "name": "lastUpdateIn",
         | 
| 621 1044 | 
             
                          "type": "uint40"
         | 
| 1045 | 
            +
                        },
         | 
| 1046 | 
            +
                        {
         | 
| 1047 | 
            +
                          "internalType": "Str",
         | 
| 1048 | 
            +
                          "name": "name",
         | 
| 1049 | 
            +
                          "type": "bytes32"
         | 
| 622 1050 | 
             
                        }
         | 
| 623 1051 | 
             
                      ],
         | 
| 624 1052 | 
             
                      "internalType": "struct IAccess.RoleInfo",
         | 
| @@ -709,14 +1137,24 @@ | |
| 709 1137 | 
             
                          "type": "bytes32"
         | 
| 710 1138 | 
             
                        },
         | 
| 711 1139 | 
             
                        {
         | 
| 712 | 
            -
                          "internalType": " | 
| 713 | 
            -
                          "name": " | 
| 714 | 
            -
                          "type": " | 
| 1140 | 
            +
                          "internalType": "enum IAccess.TargetType",
         | 
| 1141 | 
            +
                          "name": "targetType",
         | 
| 1142 | 
            +
                          "type": "uint8"
         | 
| 1143 | 
            +
                        },
         | 
| 1144 | 
            +
                        {
         | 
| 1145 | 
            +
                          "internalType": "RoleId",
         | 
| 1146 | 
            +
                          "name": "roleId",
         | 
| 1147 | 
            +
                          "type": "uint64"
         | 
| 715 1148 | 
             
                        },
         | 
| 716 1149 | 
             
                        {
         | 
| 717 1150 | 
             
                          "internalType": "Timestamp",
         | 
| 718 1151 | 
             
                          "name": "createdAt",
         | 
| 719 1152 | 
             
                          "type": "uint40"
         | 
| 1153 | 
            +
                        },
         | 
| 1154 | 
            +
                        {
         | 
| 1155 | 
            +
                          "internalType": "Blocknumber",
         | 
| 1156 | 
            +
                          "name": "lastUpdateIn",
         | 
| 1157 | 
            +
                          "type": "uint40"
         | 
| 720 1158 | 
             
                        }
         | 
| 721 1159 | 
             
                      ],
         | 
| 722 1160 | 
             
                      "internalType": "struct IAccess.TargetInfo",
         | 
| @@ -728,23 +1166,44 @@ | |
| 728 1166 | 
             
                  "type": "function"
         | 
| 729 1167 | 
             
                },
         | 
| 730 1168 | 
             
                {
         | 
| 731 | 
            -
                  "inputs": [
         | 
| 1169 | 
            +
                  "inputs": [],
         | 
| 1170 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 1171 | 
            +
                  "outputs": [
         | 
| 732 1172 | 
             
                    {
         | 
| 733 | 
            -
                      "internalType": " | 
| 734 | 
            -
                      "name": " | 
| 735 | 
            -
                      "type": " | 
| 736 | 
            -
                    } | 
| 1173 | 
            +
                      "internalType": "bytes4",
         | 
| 1174 | 
            +
                      "name": "",
         | 
| 1175 | 
            +
                      "type": "bytes4"
         | 
| 1176 | 
            +
                    }
         | 
| 1177 | 
            +
                  ],
         | 
| 1178 | 
            +
                  "stateMutability": "view",
         | 
| 1179 | 
            +
                  "type": "function"
         | 
| 1180 | 
            +
                },
         | 
| 1181 | 
            +
                {
         | 
| 1182 | 
            +
                  "inputs": [],
         | 
| 1183 | 
            +
                  "name": "isLocked",
         | 
| 1184 | 
            +
                  "outputs": [
         | 
| 1185 | 
            +
                    {
         | 
| 1186 | 
            +
                      "internalType": "bool",
         | 
| 1187 | 
            +
                      "name": "locked",
         | 
| 1188 | 
            +
                      "type": "bool"
         | 
| 1189 | 
            +
                    }
         | 
| 1190 | 
            +
                  ],
         | 
| 1191 | 
            +
                  "stateMutability": "view",
         | 
| 1192 | 
            +
                  "type": "function"
         | 
| 1193 | 
            +
                },
         | 
| 1194 | 
            +
                {
         | 
| 1195 | 
            +
                  "inputs": [
         | 
| 737 1196 | 
             
                    {
         | 
| 738 1197 | 
             
                      "internalType": "RoleId",
         | 
| 739 1198 | 
             
                      "name": "roleId",
         | 
| 740 1199 | 
             
                      "type": "uint64"
         | 
| 741 1200 | 
             
                    }
         | 
| 742 1201 | 
             
                  ],
         | 
| 743 | 
            -
                  "name": " | 
| 1202 | 
            +
                  "name": "isRoleActive",
         | 
| 744 1203 | 
             
                  "outputs": [
         | 
| 745 1204 | 
             
                    {
         | 
| 746 1205 | 
             
                      "internalType": "bool",
         | 
| 747 | 
            -
                      "name": "",
         | 
| 1206 | 
            +
                      "name": "isActive",
         | 
| 748 1207 | 
             
                      "type": "bool"
         | 
| 749 1208 | 
             
                    }
         | 
| 750 1209 | 
             
                  ],
         | 
| @@ -753,18 +1212,18 @@ | |
| 753 1212 | 
             
                },
         | 
| 754 1213 | 
             
                {
         | 
| 755 1214 | 
             
                  "inputs": [
         | 
| 756 | 
            -
                    {
         | 
| 757 | 
            -
                      "internalType": "address",
         | 
| 758 | 
            -
                      "name": "account",
         | 
| 759 | 
            -
                      "type": "address"
         | 
| 760 | 
            -
                    },
         | 
| 761 1215 | 
             
                    {
         | 
| 762 1216 | 
             
                      "internalType": "RoleId",
         | 
| 763 1217 | 
             
                      "name": "roleId",
         | 
| 764 1218 | 
             
                      "type": "uint64"
         | 
| 1219 | 
            +
                    },
         | 
| 1220 | 
            +
                    {
         | 
| 1221 | 
            +
                      "internalType": "address",
         | 
| 1222 | 
            +
                      "name": "account",
         | 
| 1223 | 
            +
                      "type": "address"
         | 
| 765 1224 | 
             
                    }
         | 
| 766 1225 | 
             
                  ],
         | 
| 767 | 
            -
                  "name": " | 
| 1226 | 
            +
                  "name": "isRoleAdmin",
         | 
| 768 1227 | 
             
                  "outputs": [
         | 
| 769 1228 | 
             
                    {
         | 
| 770 1229 | 
             
                      "internalType": "bool",
         | 
| @@ -778,16 +1237,16 @@ | |
| 778 1237 | 
             
                {
         | 
| 779 1238 | 
             
                  "inputs": [
         | 
| 780 1239 | 
             
                    {
         | 
| 781 | 
            -
                      "internalType": " | 
| 782 | 
            -
                      "name": " | 
| 783 | 
            -
                      "type": " | 
| 1240 | 
            +
                      "internalType": "RoleId",
         | 
| 1241 | 
            +
                      "name": "roleId",
         | 
| 1242 | 
            +
                      "type": "uint64"
         | 
| 784 1243 | 
             
                    }
         | 
| 785 1244 | 
             
                  ],
         | 
| 786 | 
            -
                  "name": " | 
| 1245 | 
            +
                  "name": "isRoleCustom",
         | 
| 787 1246 | 
             
                  "outputs": [
         | 
| 788 1247 | 
             
                    {
         | 
| 789 1248 | 
             
                      "internalType": "bool",
         | 
| 790 | 
            -
                      "name": "",
         | 
| 1249 | 
            +
                      "name": "isCustom",
         | 
| 791 1250 | 
             
                      "type": "bool"
         | 
| 792 1251 | 
             
                    }
         | 
| 793 1252 | 
             
                  ],
         | 
| @@ -795,13 +1254,24 @@ | |
| 795 1254 | 
             
                  "type": "function"
         | 
| 796 1255 | 
             
                },
         | 
| 797 1256 | 
             
                {
         | 
| 798 | 
            -
                  "inputs": [ | 
| 799 | 
            -
             | 
| 1257 | 
            +
                  "inputs": [
         | 
| 1258 | 
            +
                    {
         | 
| 1259 | 
            +
                      "internalType": "RoleId",
         | 
| 1260 | 
            +
                      "name": "roleId",
         | 
| 1261 | 
            +
                      "type": "uint64"
         | 
| 1262 | 
            +
                    },
         | 
| 1263 | 
            +
                    {
         | 
| 1264 | 
            +
                      "internalType": "address",
         | 
| 1265 | 
            +
                      "name": "account",
         | 
| 1266 | 
            +
                      "type": "address"
         | 
| 1267 | 
            +
                    }
         | 
| 1268 | 
            +
                  ],
         | 
| 1269 | 
            +
                  "name": "isRoleMember",
         | 
| 800 1270 | 
             
                  "outputs": [
         | 
| 801 1271 | 
             
                    {
         | 
| 802 | 
            -
                      "internalType": " | 
| 1272 | 
            +
                      "internalType": "bool",
         | 
| 803 1273 | 
             
                      "name": "",
         | 
| 804 | 
            -
                      "type": " | 
| 1274 | 
            +
                      "type": "bool"
         | 
| 805 1275 | 
             
                    }
         | 
| 806 1276 | 
             
                  ],
         | 
| 807 1277 | 
             
                  "stateMutability": "view",
         | 
| @@ -921,108 +1391,6 @@ | |
| 921 1391 | 
             
                  ],
         | 
| 922 1392 | 
             
                  "stateMutability": "view",
         | 
| 923 1393 | 
             
                  "type": "function"
         | 
| 924 | 
            -
                },
         | 
| 925 | 
            -
                {
         | 
| 926 | 
            -
                  "inputs": [
         | 
| 927 | 
            -
                    {
         | 
| 928 | 
            -
                      "internalType": "bytes4",
         | 
| 929 | 
            -
                      "name": "selector",
         | 
| 930 | 
            -
                      "type": "bytes4"
         | 
| 931 | 
            -
                    },
         | 
| 932 | 
            -
                    {
         | 
| 933 | 
            -
                      "internalType": "string",
         | 
| 934 | 
            -
                      "name": "name",
         | 
| 935 | 
            -
                      "type": "string"
         | 
| 936 | 
            -
                    }
         | 
| 937 | 
            -
                  ],
         | 
| 938 | 
            -
                  "name": "toFunction",
         | 
| 939 | 
            -
                  "outputs": [
         | 
| 940 | 
            -
                    {
         | 
| 941 | 
            -
                      "components": [
         | 
| 942 | 
            -
                        {
         | 
| 943 | 
            -
                          "internalType": "Str",
         | 
| 944 | 
            -
                          "name": "name",
         | 
| 945 | 
            -
                          "type": "bytes32"
         | 
| 946 | 
            -
                        },
         | 
| 947 | 
            -
                        {
         | 
| 948 | 
            -
                          "internalType": "Selector",
         | 
| 949 | 
            -
                          "name": "selector",
         | 
| 950 | 
            -
                          "type": "bytes4"
         | 
| 951 | 
            -
                        },
         | 
| 952 | 
            -
                        {
         | 
| 953 | 
            -
                          "internalType": "Timestamp",
         | 
| 954 | 
            -
                          "name": "createdAt",
         | 
| 955 | 
            -
                          "type": "uint40"
         | 
| 956 | 
            -
                        }
         | 
| 957 | 
            -
                      ],
         | 
| 958 | 
            -
                      "internalType": "struct IAccess.FunctionInfo",
         | 
| 959 | 
            -
                      "name": "",
         | 
| 960 | 
            -
                      "type": "tuple"
         | 
| 961 | 
            -
                    }
         | 
| 962 | 
            -
                  ],
         | 
| 963 | 
            -
                  "stateMutability": "view",
         | 
| 964 | 
            -
                  "type": "function"
         | 
| 965 | 
            -
                },
         | 
| 966 | 
            -
                {
         | 
| 967 | 
            -
                  "inputs": [
         | 
| 968 | 
            -
                    {
         | 
| 969 | 
            -
                      "internalType": "RoleId",
         | 
| 970 | 
            -
                      "name": "adminRoleId",
         | 
| 971 | 
            -
                      "type": "uint64"
         | 
| 972 | 
            -
                    },
         | 
| 973 | 
            -
                    {
         | 
| 974 | 
            -
                      "internalType": "enum IAccess.RoleType",
         | 
| 975 | 
            -
                      "name": "roleType",
         | 
| 976 | 
            -
                      "type": "uint8"
         | 
| 977 | 
            -
                    },
         | 
| 978 | 
            -
                    {
         | 
| 979 | 
            -
                      "internalType": "uint32",
         | 
| 980 | 
            -
                      "name": "maxMemberCount",
         | 
| 981 | 
            -
                      "type": "uint32"
         | 
| 982 | 
            -
                    },
         | 
| 983 | 
            -
                    {
         | 
| 984 | 
            -
                      "internalType": "string",
         | 
| 985 | 
            -
                      "name": "name",
         | 
| 986 | 
            -
                      "type": "string"
         | 
| 987 | 
            -
                    }
         | 
| 988 | 
            -
                  ],
         | 
| 989 | 
            -
                  "name": "toRole",
         | 
| 990 | 
            -
                  "outputs": [
         | 
| 991 | 
            -
                    {
         | 
| 992 | 
            -
                      "components": [
         | 
| 993 | 
            -
                        {
         | 
| 994 | 
            -
                          "internalType": "RoleId",
         | 
| 995 | 
            -
                          "name": "adminRoleId",
         | 
| 996 | 
            -
                          "type": "uint64"
         | 
| 997 | 
            -
                        },
         | 
| 998 | 
            -
                        {
         | 
| 999 | 
            -
                          "internalType": "enum IAccess.RoleType",
         | 
| 1000 | 
            -
                          "name": "roleType",
         | 
| 1001 | 
            -
                          "type": "uint8"
         | 
| 1002 | 
            -
                        },
         | 
| 1003 | 
            -
                        {
         | 
| 1004 | 
            -
                          "internalType": "uint32",
         | 
| 1005 | 
            -
                          "name": "maxMemberCount",
         | 
| 1006 | 
            -
                          "type": "uint32"
         | 
| 1007 | 
            -
                        },
         | 
| 1008 | 
            -
                        {
         | 
| 1009 | 
            -
                          "internalType": "Str",
         | 
| 1010 | 
            -
                          "name": "name",
         | 
| 1011 | 
            -
                          "type": "bytes32"
         | 
| 1012 | 
            -
                        },
         | 
| 1013 | 
            -
                        {
         | 
| 1014 | 
            -
                          "internalType": "Timestamp",
         | 
| 1015 | 
            -
                          "name": "createdAt",
         | 
| 1016 | 
            -
                          "type": "uint40"
         | 
| 1017 | 
            -
                        }
         | 
| 1018 | 
            -
                      ],
         | 
| 1019 | 
            -
                      "internalType": "struct IAccess.RoleInfo",
         | 
| 1020 | 
            -
                      "name": "",
         | 
| 1021 | 
            -
                      "type": "tuple"
         | 
| 1022 | 
            -
                    }
         | 
| 1023 | 
            -
                  ],
         | 
| 1024 | 
            -
                  "stateMutability": "view",
         | 
| 1025 | 
            -
                  "type": "function"
         | 
| 1026 1394 | 
             
                }
         | 
| 1027 1395 | 
             
              ],
         | 
| 1028 1396 | 
             
              "bytecode": "0x",
         |