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