@etherisc/gif-next 0.0.2-def25d4-556 → 0.0.2-df69269-973
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 +146 -22
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1341 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1434 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +508 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/{instance/IAccessManagerSimple.sol/IAccessManagerSimple.json → authorization/IAccessAdmin.sol/IAccessAdmin.json} +550 -540
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +324 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1322 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +527 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1016 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1501 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +860 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +915 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1008 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1475 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +555 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2040 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +527 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1479 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +527 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +555 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2408 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +527 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +808 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +617 -308
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +440 -161
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +409 -2981
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1881 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +631 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1630 -574
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +485 -311
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +366 -94
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3718 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +810 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → base/Cloneable.sol/Cloneable.json} +38 -2
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +30 -112
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +535 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +774 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → oracle/IOracleService.sol/IOracleService.json} +347 -365
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +875 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1252 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +555 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +820 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +946 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1309 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1027 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1626 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +792 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +813 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +728 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1161 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +527 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1538 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +860 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IApplicationService.sol/IApplicationService.json} +287 -251
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1082 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +968 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +602 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IRiskService.sol/IRiskService.json} +172 -185
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1320 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +930 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +637 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +724 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +609 -171
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +391 -201
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +943 -206
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1861 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +355 -323
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +340 -130
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1795 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1325 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +352 -101
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +707 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1597 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +824 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +185 -186
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +541 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → shared/IComponent.sol/IComponent.json} +353 -167
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1221 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +46 -26
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +143 -15
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +137 -159
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +81 -30
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +159 -55
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +156 -171
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +734 -8
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +395 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1447 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1067 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1849 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +788 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1272 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +732 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +199 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +113 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
- package/contracts/accounting/AccountingService.sol +262 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +45 -0
- package/contracts/authorization/AccessAdmin.sol +659 -0
- package/contracts/authorization/AccessManagerCloneable.sol +149 -0
- package/contracts/authorization/Authorization.sol +330 -0
- package/contracts/authorization/IAccess.sol +49 -0
- package/contracts/authorization/IAccessAdmin.sol +140 -0
- package/contracts/authorization/IAuthorization.sol +66 -0
- package/contracts/authorization/IServiceAuthorization.sol +40 -0
- package/contracts/authorization/ServiceAuthorization.sol +106 -0
- package/contracts/distribution/BasicDistribution.sol +139 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +48 -0
- package/contracts/distribution/Distribution.sol +287 -0
- package/contracts/distribution/DistributionService.sol +357 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/distribution/IDistributionService.sol +100 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +90 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +438 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +107 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +370 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +129 -0
- package/contracts/instance/IInstance.sol +57 -19
- package/contracts/instance/IInstanceService.sol +59 -17
- package/contracts/instance/Instance.sol +172 -368
- package/contracts/instance/InstanceAdmin.sol +462 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +228 -0
- package/contracts/instance/InstanceReader.sol +379 -73
- package/contracts/instance/InstanceService.sol +350 -116
- package/contracts/instance/InstanceServiceManager.sol +14 -31
- package/contracts/instance/InstanceStore.sol +298 -0
- package/contracts/instance/RiskSet.sol +117 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +20 -0
- package/contracts/instance/base/ObjectLifecycle.sol +113 -0
- package/contracts/instance/base/ObjectSet.sol +78 -0
- package/contracts/instance/module/IAccess.sol +29 -21
- package/contracts/instance/module/IBundle.sol +8 -7
- package/contracts/instance/module/IComponents.sol +51 -0
- package/contracts/instance/module/IDistribution.sol +6 -4
- package/contracts/instance/module/IPolicy.sol +59 -19
- package/contracts/instance/module/IRisk.sol +4 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +47 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +47 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +66 -0
- package/contracts/oracle/Oracle.sol +156 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +175 -0
- package/contracts/pool/BasicPoolAuthorization.sol +69 -0
- package/contracts/pool/BundleService.sol +425 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +121 -0
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +153 -0
- package/contracts/pool/Pool.sol +345 -0
- package/contracts/pool/PoolService.sol +615 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +259 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +51 -0
- package/contracts/product/BasicProductAuthorization.sol +42 -0
- package/contracts/product/ClaimService.sol +708 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +66 -0
- package/contracts/product/IClaimService.sol +136 -0
- package/contracts/product/IPolicyService.sol +90 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +62 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +736 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +304 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +463 -0
- package/contracts/product/RiskService.sol +151 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +82 -35
- package/contracts/registry/IRegistry.sol +120 -50
- package/contracts/registry/IRegistryService.sol +45 -16
- package/contracts/registry/IRelease.sol +26 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -1
- package/contracts/registry/Registry.sol +541 -304
- package/contracts/registry/RegistryAdmin.sol +344 -0
- package/contracts/registry/RegistryService.sol +126 -284
- package/contracts/registry/RegistryServiceManager.sol +26 -53
- package/contracts/registry/ReleaseAdmin.sol +245 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +511 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +242 -0
- package/contracts/registry/TokenRegistry.sol +261 -59
- package/contracts/shared/Component.sol +226 -0
- package/contracts/shared/ComponentService.sol +708 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +128 -0
- package/contracts/shared/ContractLib.sol +252 -0
- package/contracts/shared/IComponent.sol +61 -0
- package/contracts/shared/IComponentService.sol +116 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
- package/contracts/shared/INftOwnable.sol +15 -12
- package/contracts/shared/IPolicyHolder.sol +35 -0
- package/contracts/shared/IRegisterable.sol +25 -5
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +13 -5
- package/contracts/shared/InitializableERC165.sol +27 -0
- package/contracts/shared/InstanceLinkedComponent.sol +197 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +88 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +75 -84
- package/contracts/shared/PolicyHolder.sol +62 -0
- package/contracts/shared/Registerable.sol +57 -38
- package/contracts/shared/RegistryLinked.sol +38 -0
- package/contracts/shared/Service.sol +44 -33
- package/contracts/shared/TokenHandler.sol +374 -12
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +173 -0
- package/contracts/staking/IStakingService.sol +157 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +526 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +190 -0
- package/contracts/staking/StakingService.sol +439 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +150 -0
- package/contracts/{types → type}/Blocknumber.sol +27 -3
- package/contracts/type/ClaimId.sol +80 -0
- package/contracts/{types → type}/DistributorType.sol +2 -2
- package/contracts/{types → type}/Fee.sol +33 -23
- package/contracts/{types → type}/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/{types → type}/NftId.sol +28 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +303 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +6 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +74 -0
- package/contracts/type/RoleId.sol +182 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +48 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +33 -19
- package/contracts/{types → type}/UFixed.sol +41 -121
- package/contracts/{types → type}/Version.sol +20 -7
- package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
- package/contracts/upgradeability/ProxyManager.sol +232 -0
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +11 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -670
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -204
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -249
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -790
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -775
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -917
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -657
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -436
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/BaseComponent.sol +0 -91
- package/contracts/components/Distribution.sol +0 -166
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/components/IDistributionComponent.sol +0 -46
- package/contracts/components/IPoolComponent.sol +0 -62
- package/contracts/components/IProductComponent.sol +0 -35
- package/contracts/components/Pool.sol +0 -258
- package/contracts/components/Product.sol +0 -297
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/InstanceAccessManager.sol +0 -288
- package/contracts/instance/base/ComponentServiceBase.sol +0 -41
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/KeyValueStore.sol +0 -172
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/module/ISetup.sol +0 -43
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/DistributionService.sol +0 -105
- package/contracts/instance/service/DistributionServiceManager.sol +0 -53
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/instance/service/IDistributionService.sol +0 -12
- package/contracts/instance/service/IPoolService.sol +0 -37
- package/contracts/instance/service/IProductService.sol +0 -107
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/shared/ERC165.sol +0 -25
- package/contracts/shared/ProxyManager.sol +0 -94
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
- package/contracts/shared/Versionable.sol +0 -147
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -24
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -152
- package/contracts/types/RiskId.sol +0 -43
- package/contracts/types/RoleId.sol +0 -88
@@ -0,0 +1,535 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "BasicOracleAuthorization",
|
4
|
+
"sourceName": "contracts/oracle/BasicOracleAuthorization.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "string",
|
10
|
+
"name": "componentName",
|
11
|
+
"type": "string"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"stateMutability": "nonpayable",
|
15
|
+
"type": "constructor"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [],
|
19
|
+
"name": "ErrorAuthorizationMainTargetNameEmpty",
|
20
|
+
"type": "error"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [],
|
24
|
+
"name": "ErrorAuthorizationTargetDomainZero",
|
25
|
+
"type": "error"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"inputs": [],
|
29
|
+
"name": "GIF_RELEASE",
|
30
|
+
"outputs": [
|
31
|
+
{
|
32
|
+
"internalType": "uint256",
|
33
|
+
"name": "",
|
34
|
+
"type": "uint256"
|
35
|
+
}
|
36
|
+
],
|
37
|
+
"stateMutability": "view",
|
38
|
+
"type": "function"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"inputs": [],
|
42
|
+
"name": "ROLE_NAME_SUFFIX",
|
43
|
+
"outputs": [
|
44
|
+
{
|
45
|
+
"internalType": "string",
|
46
|
+
"name": "",
|
47
|
+
"type": "string"
|
48
|
+
}
|
49
|
+
],
|
50
|
+
"stateMutability": "view",
|
51
|
+
"type": "function"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"inputs": [],
|
55
|
+
"name": "SERVICE_ROLE_NAME_SUFFIX",
|
56
|
+
"outputs": [
|
57
|
+
{
|
58
|
+
"internalType": "string",
|
59
|
+
"name": "",
|
60
|
+
"type": "string"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"stateMutability": "view",
|
64
|
+
"type": "function"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "Str",
|
70
|
+
"name": "target",
|
71
|
+
"type": "bytes32"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"internalType": "RoleId",
|
75
|
+
"name": "roleId",
|
76
|
+
"type": "uint64"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "getAuthorizedFunctions",
|
80
|
+
"outputs": [
|
81
|
+
{
|
82
|
+
"components": [
|
83
|
+
{
|
84
|
+
"internalType": "Str",
|
85
|
+
"name": "name",
|
86
|
+
"type": "bytes32"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"internalType": "Selector",
|
90
|
+
"name": "selector",
|
91
|
+
"type": "bytes4"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"internalType": "Timestamp",
|
95
|
+
"name": "createdAt",
|
96
|
+
"type": "uint40"
|
97
|
+
}
|
98
|
+
],
|
99
|
+
"internalType": "struct IAccess.FunctionInfo[]",
|
100
|
+
"name": "authorizatedFunctions",
|
101
|
+
"type": "tuple[]"
|
102
|
+
}
|
103
|
+
],
|
104
|
+
"stateMutability": "view",
|
105
|
+
"type": "function"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"inputs": [
|
109
|
+
{
|
110
|
+
"internalType": "Str",
|
111
|
+
"name": "target",
|
112
|
+
"type": "bytes32"
|
113
|
+
}
|
114
|
+
],
|
115
|
+
"name": "getAuthorizedRoles",
|
116
|
+
"outputs": [
|
117
|
+
{
|
118
|
+
"internalType": "RoleId[]",
|
119
|
+
"name": "roleIds",
|
120
|
+
"type": "uint64[]"
|
121
|
+
}
|
122
|
+
],
|
123
|
+
"stateMutability": "view",
|
124
|
+
"type": "function"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"inputs": [
|
128
|
+
{
|
129
|
+
"internalType": "ObjectType",
|
130
|
+
"name": "componentDomain",
|
131
|
+
"type": "uint8"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
"name": "getComponentRole",
|
135
|
+
"outputs": [
|
136
|
+
{
|
137
|
+
"internalType": "RoleId",
|
138
|
+
"name": "roleId",
|
139
|
+
"type": "uint64"
|
140
|
+
}
|
141
|
+
],
|
142
|
+
"stateMutability": "view",
|
143
|
+
"type": "function"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"inputs": [],
|
147
|
+
"name": "getMainTarget",
|
148
|
+
"outputs": [
|
149
|
+
{
|
150
|
+
"internalType": "Str",
|
151
|
+
"name": "",
|
152
|
+
"type": "bytes32"
|
153
|
+
}
|
154
|
+
],
|
155
|
+
"stateMutability": "view",
|
156
|
+
"type": "function"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"inputs": [],
|
160
|
+
"name": "getMainTargetName",
|
161
|
+
"outputs": [
|
162
|
+
{
|
163
|
+
"internalType": "string",
|
164
|
+
"name": "name",
|
165
|
+
"type": "string"
|
166
|
+
}
|
167
|
+
],
|
168
|
+
"stateMutability": "view",
|
169
|
+
"type": "function"
|
170
|
+
},
|
171
|
+
{
|
172
|
+
"inputs": [],
|
173
|
+
"name": "getRelease",
|
174
|
+
"outputs": [
|
175
|
+
{
|
176
|
+
"internalType": "VersionPart",
|
177
|
+
"name": "release",
|
178
|
+
"type": "uint8"
|
179
|
+
}
|
180
|
+
],
|
181
|
+
"stateMutability": "pure",
|
182
|
+
"type": "function"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"inputs": [
|
186
|
+
{
|
187
|
+
"internalType": "RoleId",
|
188
|
+
"name": "roleId",
|
189
|
+
"type": "uint64"
|
190
|
+
}
|
191
|
+
],
|
192
|
+
"name": "getRoleInfo",
|
193
|
+
"outputs": [
|
194
|
+
{
|
195
|
+
"components": [
|
196
|
+
{
|
197
|
+
"internalType": "RoleId",
|
198
|
+
"name": "adminRoleId",
|
199
|
+
"type": "uint64"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"internalType": "enum IAccess.RoleType",
|
203
|
+
"name": "roleType",
|
204
|
+
"type": "uint8"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"internalType": "uint32",
|
208
|
+
"name": "maxMemberCount",
|
209
|
+
"type": "uint32"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"internalType": "Str",
|
213
|
+
"name": "name",
|
214
|
+
"type": "bytes32"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"internalType": "Timestamp",
|
218
|
+
"name": "createdAt",
|
219
|
+
"type": "uint40"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"internalType": "Timestamp",
|
223
|
+
"name": "pausedAt",
|
224
|
+
"type": "uint40"
|
225
|
+
}
|
226
|
+
],
|
227
|
+
"internalType": "struct IAccess.RoleInfo",
|
228
|
+
"name": "info",
|
229
|
+
"type": "tuple"
|
230
|
+
}
|
231
|
+
],
|
232
|
+
"stateMutability": "view",
|
233
|
+
"type": "function"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"inputs": [],
|
237
|
+
"name": "getRoles",
|
238
|
+
"outputs": [
|
239
|
+
{
|
240
|
+
"internalType": "RoleId[]",
|
241
|
+
"name": "roles",
|
242
|
+
"type": "uint64[]"
|
243
|
+
}
|
244
|
+
],
|
245
|
+
"stateMutability": "view",
|
246
|
+
"type": "function"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"inputs": [],
|
250
|
+
"name": "getServiceDomains",
|
251
|
+
"outputs": [
|
252
|
+
{
|
253
|
+
"internalType": "ObjectType[]",
|
254
|
+
"name": "serviceDomains",
|
255
|
+
"type": "uint8[]"
|
256
|
+
}
|
257
|
+
],
|
258
|
+
"stateMutability": "view",
|
259
|
+
"type": "function"
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"inputs": [
|
263
|
+
{
|
264
|
+
"internalType": "ObjectType",
|
265
|
+
"name": "serviceDomain",
|
266
|
+
"type": "uint8"
|
267
|
+
}
|
268
|
+
],
|
269
|
+
"name": "getServiceRole",
|
270
|
+
"outputs": [
|
271
|
+
{
|
272
|
+
"internalType": "RoleId",
|
273
|
+
"name": "serviceRoleId",
|
274
|
+
"type": "uint64"
|
275
|
+
}
|
276
|
+
],
|
277
|
+
"stateMutability": "pure",
|
278
|
+
"type": "function"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"inputs": [
|
282
|
+
{
|
283
|
+
"internalType": "ObjectType",
|
284
|
+
"name": "serviceDomain",
|
285
|
+
"type": "uint8"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
"name": "getServiceTarget",
|
289
|
+
"outputs": [
|
290
|
+
{
|
291
|
+
"internalType": "Str",
|
292
|
+
"name": "serviceTarget",
|
293
|
+
"type": "bytes32"
|
294
|
+
}
|
295
|
+
],
|
296
|
+
"stateMutability": "view",
|
297
|
+
"type": "function"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"inputs": [
|
301
|
+
{
|
302
|
+
"internalType": "string",
|
303
|
+
"name": "targetName",
|
304
|
+
"type": "string"
|
305
|
+
}
|
306
|
+
],
|
307
|
+
"name": "getTarget",
|
308
|
+
"outputs": [
|
309
|
+
{
|
310
|
+
"internalType": "Str",
|
311
|
+
"name": "target",
|
312
|
+
"type": "bytes32"
|
313
|
+
}
|
314
|
+
],
|
315
|
+
"stateMutability": "view",
|
316
|
+
"type": "function"
|
317
|
+
},
|
318
|
+
{
|
319
|
+
"inputs": [
|
320
|
+
{
|
321
|
+
"internalType": "Str",
|
322
|
+
"name": "target",
|
323
|
+
"type": "bytes32"
|
324
|
+
}
|
325
|
+
],
|
326
|
+
"name": "getTargetRole",
|
327
|
+
"outputs": [
|
328
|
+
{
|
329
|
+
"internalType": "RoleId",
|
330
|
+
"name": "roleId",
|
331
|
+
"type": "uint64"
|
332
|
+
}
|
333
|
+
],
|
334
|
+
"stateMutability": "view",
|
335
|
+
"type": "function"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"inputs": [],
|
339
|
+
"name": "getTargets",
|
340
|
+
"outputs": [
|
341
|
+
{
|
342
|
+
"internalType": "Str[]",
|
343
|
+
"name": "targets",
|
344
|
+
"type": "bytes32[]"
|
345
|
+
}
|
346
|
+
],
|
347
|
+
"stateMutability": "view",
|
348
|
+
"type": "function"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"inputs": [
|
352
|
+
{
|
353
|
+
"internalType": "RoleId",
|
354
|
+
"name": "roleId",
|
355
|
+
"type": "uint64"
|
356
|
+
}
|
357
|
+
],
|
358
|
+
"name": "roleExists",
|
359
|
+
"outputs": [
|
360
|
+
{
|
361
|
+
"internalType": "bool",
|
362
|
+
"name": "exists",
|
363
|
+
"type": "bool"
|
364
|
+
}
|
365
|
+
],
|
366
|
+
"stateMutability": "view",
|
367
|
+
"type": "function"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"inputs": [
|
371
|
+
{
|
372
|
+
"internalType": "Str",
|
373
|
+
"name": "target",
|
374
|
+
"type": "bytes32"
|
375
|
+
}
|
376
|
+
],
|
377
|
+
"name": "targetExists",
|
378
|
+
"outputs": [
|
379
|
+
{
|
380
|
+
"internalType": "bool",
|
381
|
+
"name": "exists",
|
382
|
+
"type": "bool"
|
383
|
+
}
|
384
|
+
],
|
385
|
+
"stateMutability": "view",
|
386
|
+
"type": "function"
|
387
|
+
}
|
388
|
+
],
|
389
|
+
"bytecode": "0x60c0604052600960809081526810dbdb5c1bdb995b9d60ba1b60a0526002906100289082610ead565b50348015610034575f80fd5b50604051611f63380380611f6383398101604081905261005391610f67565b80600d81515f036100775760405163c0348f3560e01b815260040160405180910390fd5b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156100c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100eb9190611017565b15610109576040516302e3f24160e11b815260040160405180910390fd5b60026101158382610ead565b506040516311da4a5b60e31b815260ff821660048201525f602482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90638ed252d890604401602060405180830381865af415801561016f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610193919061103d565b90505f61019f846102ed565b905061023a600280546101b190610e29565b80601f01602080910402602001604051908101604052809291908181526020018280546101dd90610e29565b80156102285780601f106101ff57610100808354040283529160200191610228565b820191905f5260205f20905b81548152906001019060200180831161020b57829003601f168201915b5050505050838361033460201b60201c565b60405163cdc23e6960e01b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610271908790600401611063565b602060405180830381865af415801561028c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102b09190611098565b60038190555f90815260056020526040902080546001600160401b0319166001600160401b0384161790556102e36104cb565b5050505050611161565b60608160405180604001604052806004815260200163526f6c6560e01b81525060405160200161031e9291906110c6565b6040516020818303038152906040529050919050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061036d908790600401611063565b602060405180830381865af4158015610388573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ac9190611098565b60048054600181810183557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9091018390555f83815260066020908152604091829020805460ff1916909317909255805163bc1b392d60e01b8152905193945061048293879373__$1d92393fa9ccd763988368ce8a1cb90d26$__9363bc1b392d93808301939192908290030181865af415801561044c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610470919061103d565b6001600160401b039081169116141590565b156104c5576104908361059f565b61049e5761049e83836105e1565b5f81815260056020526040902080546001600160401b0319166001600160401b0385161790555b50505050565b5f6104e66104d7610602565b6104e1600d610692565b610723565b905061051f81630b29e28e60e01b604051806040016040528060078152602001661c995c5d595cdd60ca1b81525061080060201b60201c565b60408051808201909152600681526518d85b98d95b60d21b6020820152610550908290634c125e7960e01b90610800565b61056361055b610602565b6104e16109dd565b905061059c8163cf4ee77a60e01b604051806040016040528060078152602001661c995cdc1bdb9960ca1b81525061080060201b60201c565b50565b5f806001600160401b0383165f9081526008602052604090205468010000000000000000900460ff1660038111156105d9576105d96110e2565b141592915050565b6105fe826105f96105f0610a5d565b60018086610a97565b610c74565b5050565b60606002805461061190610e29565b80601f016020809104026020016040519081016040528092919081815260200182805461063d90610e29565b80156106885780601f1061065f57610100808354040283529160200191610688565b820191905f5260205f20905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3836106b6610da1565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156106f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071d919061103d565b92915050565b5f8073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b815260040161075c9190611063565b602060405180830381865af4158015610777573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061079b9190611098565b5f8181526009602090815260408083208054600181018255908452828420600482040180546001600160401b03808b1660086003909516949094026101000a848102910219909116179055938352600a82528083209383529290522091505092915050565b60408051606081019182905263cdc23e6960e01b90915283908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e696108418660648501611063565b602060405180830381865af415801561085c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108809190611098565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af41580156108df573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090391906110f6565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610959573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061097d919061111d565b64ffffffffff9081169091528254600181810185555f94855260209485902084516002909302019182559383015193018054604090930151909116640100000000026001600160481b031990921660e09390931c92909217179055505050565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024015b602060405180830381865af4158015610a34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a58919061103d565b905090565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401610a19565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115610af457610af46110e2565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610b3c9190611063565b602060405180830381865af4158015610b57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7b9190611098565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610bc7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610beb919061111d565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c62919061111d565b64ffffffffff16905295945050505050565b6007805460018101909155600481047fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160401b038086166008600395861681026101000a82810290840219909416939093179093555f928352602091825260409092208451815493166001600160401b03198416811782559185015185949193909284926001600160481b0319909216179068010000000000000000908490811115610d2957610d296110e2565b02179055506040820151815463ffffffff90911669010000000000000000000263ffffffff60481b199091161781556060820151600182015560808201516002909101805460a09093015164ffffffffff90811665010000000000026001600160501b03199094169216919091179190911790555050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610df1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a589190611141565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610e3d57607f821691505b602082108103610e5b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610ea857805f5260205f20601f840160051c81016020851015610e865750805b601f840160051c820191505b81811015610ea5575f8155600101610e92565b50505b505050565b81516001600160401b03811115610ec657610ec6610e15565b610eda81610ed48454610e29565b84610e61565b6020601f821160018114610f0c575f8315610ef55750848201515b5f19600385901b1c1916600184901b178455610ea5565b5f84815260208120601f198516915b82811015610f3b5787850151825560209485019460019092019101610f1b565b5084821015610f5857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610f77575f80fd5b81516001600160401b03811115610f8c575f80fd5b8201601f81018413610f9c575f80fd5b80516001600160401b03811115610fb557610fb5610e15565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610fe357610fe3610e15565b604052818152828201602001861015610ffa575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b5f60208284031215611027575f80fd5b81518015158114611036575f80fd5b9392505050565b5f6020828403121561104d575f80fd5b81516001600160401b0381168114611036575f80fd5b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f602082840312156110a8575f80fd5b5051919050565b5f81518060208401855e5f93019283525090919050565b5f6110da6110d483866110af565b846110af565b949350505050565b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215611106575f80fd5b81516001600160e01b031981168114611036575f80fd5b5f6020828403121561112d575f80fd5b815164ffffffffff81168114611036575f80fd5b5f60208284031215611151575f80fd5b815160ff81168114611036575f80fd5b610df58061116e5f395ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c806376b707b7116100a9578063c5f348441161006e578063c5f34844146102be578063c6a00179146102e1578063da1b620b146102f4578063e8eba43514610307578063f1d010271461031a575f80fd5b806376b707b71461022a578063775f14b1146102445780638899278a1461026c5780638c5397b014610274578063c143892b14610287575f80fd5b80635bfa5027116100ef5780635bfa5027146101a85780635c935ce0146101c857806363fe3b56146101eb57806368c55b13146102005780637106139814610215575f80fd5b80631e4afbbf14610120578063363ed496146101495780634322699b1461017457806354e17da914610186575b5f80fd5b61013361012e3660046109d1565b610322565b60405161014091906109ff565b60405180910390f35b61015c610157366004610a79565b6103cf565b6040516001600160401b039091168152602001610140565b6003545b604051908152602001610140565b610178610194366004610a79565b60ff165f9081526001602052604090205490565b6101bb6101b6366004610a94565b610453565b6040516101409190610ac3565b6101db6101d6366004610b4f565b61052d565b6040519015158152602001610140565b6101f3610555565b6040516101409190610b66565b6102086105ab565b6040516101409190610b9d565b61021d61061c565b6040516101409190610bd7565b6102326106a2565b60405160ff9091168152602001610140565b61015c610252366004610b4f565b5f908152600560205260409020546001600160401b031690565b610178600381565b61021d610282366004610b4f565b61071b565b6102b16040518060400160405280600b81526020016a53657276696365526f6c6560a81b81525081565b6040516101409190610c45565b6102b160405180604001604052806004815260200163526f6c6560e01b81525081565b6101db6102ef366004610a94565b6107ab565b610178610302366004610c6b565b6107e8565b61015c610315366004610a79565b610860565b6102b16108b1565b5f828152600a602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156103c3575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff16918301919091529083529092019101610360565b50505050905092915050565b6040516311da4a5b60e31b815260ff821660048201525f602482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90638ed252d8906044015b602060405180830381865af4158015610429573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044d9190610d1b565b92915050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600882529185902085519384019095528454918216835292939192830190600160401b900460ff1660038111156104cb576104cb610aaf565b60038111156104dc576104dc610aaf565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b5f61053a82600354610938565b8061044d5750505f9081526006602052604090205460ff1690565b606060048054806020026020016040519081016040528092919081815260200182805480156105a157602002820191905f5260205f20905b81548152602001906001019080831161058d575b5050505050905090565b60605f8054806020026020016040519081016040528092919081815260200182805480156105a157602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116105e45790505050505050905090565b606060078054806020026020016040519081016040528092919081815260200182805480156105a157602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116106565790505050505050905090565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156106f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107169190610d36565b905090565b5f8181526009602090815260409182902080548351818402810184019094528084526060939283018282801561079f57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b03168152602001906008019060208260070104928301926001038202915080841161075c5790505b50505050509050919050565b5f806001600160401b0383165f90815260086020526040902054600160401b900460ff1660038111156107e0576107e0610aaf565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610821908590600401610c45565b602060405180830381865af415801561083c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044d9190610d51565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3836108846106a2565b6040516001600160e01b031960e085901b16815260ff92831660048201529116602482015260440161040e565b6060600280546108c090610d68565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90610d68565b80156105a15780601f1061090e576101008083540402835291602001916105a1565b820191905f5260205f20905b81548152906001019060200180831161091a57509395945050505050565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af415801561098f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b39190610da0565b9392505050565b6001600160401b03811681146109ce575f80fd5b50565b5f80604083850312156109e2575f80fd5b8235915060208301356109f4816109ba565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610a60578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610a18565b509095945050505050565b60ff811681146109ce575f80fd5b5f60208284031215610a89575f80fd5b81356109b381610a6b565b5f60208284031215610aa4575f80fd5b81356109b3816109ba565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610af657634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015160608301526080830151610b2f608084018264ffffffffff169052565b5060a0830151610b4860a084018264ffffffffff169052565b5092915050565b5f60208284031215610b5f575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610a60578351835260209384019390920191600101610b7f565b602080825282518282018190525f918401906040840190835b81811015610a6057835160ff16835260209384019390920191600101610bb6565b602080825282518282018190525f918401906040840190835b81811015610a605783516001600160401b0316835260209384019390920191600101610bf0565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6109b36020830184610c17565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610c7b575f80fd5b81356001600160401b03811115610c90575f80fd5b8201601f81018413610ca0575f80fd5b80356001600160401b03811115610cb957610cb9610c57565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610ce757610ce7610c57565b604052818152828201602001861015610cfe575f80fd5b816020840160208301375f91810160200191909152949350505050565b5f60208284031215610d2b575f80fd5b81516109b3816109ba565b5f60208284031215610d46575f80fd5b81516109b381610a6b565b5f60208284031215610d61575f80fd5b5051919050565b600181811c90821680610d7c57607f821691505b602082108103610d9a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610db0575f80fd5b815180151581146109b3575f80fdfea2646970667358221220c4fc0cb3ac6e7ba5d65276966d035ce1a462773b4ec6fe84c261ec505036a4a964736f6c634300081a0033",
|
390
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c806376b707b7116100a9578063c5f348441161006e578063c5f34844146102be578063c6a00179146102e1578063da1b620b146102f4578063e8eba43514610307578063f1d010271461031a575f80fd5b806376b707b71461022a578063775f14b1146102445780638899278a1461026c5780638c5397b014610274578063c143892b14610287575f80fd5b80635bfa5027116100ef5780635bfa5027146101a85780635c935ce0146101c857806363fe3b56146101eb57806368c55b13146102005780637106139814610215575f80fd5b80631e4afbbf14610120578063363ed496146101495780634322699b1461017457806354e17da914610186575b5f80fd5b61013361012e3660046109d1565b610322565b60405161014091906109ff565b60405180910390f35b61015c610157366004610a79565b6103cf565b6040516001600160401b039091168152602001610140565b6003545b604051908152602001610140565b610178610194366004610a79565b60ff165f9081526001602052604090205490565b6101bb6101b6366004610a94565b610453565b6040516101409190610ac3565b6101db6101d6366004610b4f565b61052d565b6040519015158152602001610140565b6101f3610555565b6040516101409190610b66565b6102086105ab565b6040516101409190610b9d565b61021d61061c565b6040516101409190610bd7565b6102326106a2565b60405160ff9091168152602001610140565b61015c610252366004610b4f565b5f908152600560205260409020546001600160401b031690565b610178600381565b61021d610282366004610b4f565b61071b565b6102b16040518060400160405280600b81526020016a53657276696365526f6c6560a81b81525081565b6040516101409190610c45565b6102b160405180604001604052806004815260200163526f6c6560e01b81525081565b6101db6102ef366004610a94565b6107ab565b610178610302366004610c6b565b6107e8565b61015c610315366004610a79565b610860565b6102b16108b1565b5f828152600a602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156103c3575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff16918301919091529083529092019101610360565b50505050905092915050565b6040516311da4a5b60e31b815260ff821660048201525f602482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90638ed252d8906044015b602060405180830381865af4158015610429573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044d9190610d1b565b92915050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600882529185902085519384019095528454918216835292939192830190600160401b900460ff1660038111156104cb576104cb610aaf565b60038111156104dc576104dc610aaf565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b5f61053a82600354610938565b8061044d5750505f9081526006602052604090205460ff1690565b606060048054806020026020016040519081016040528092919081815260200182805480156105a157602002820191905f5260205f20905b81548152602001906001019080831161058d575b5050505050905090565b60605f8054806020026020016040519081016040528092919081815260200182805480156105a157602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116105e45790505050505050905090565b606060078054806020026020016040519081016040528092919081815260200182805480156105a157602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116106565790505050505050905090565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156106f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107169190610d36565b905090565b5f8181526009602090815260409182902080548351818402810184019094528084526060939283018282801561079f57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b03168152602001906008019060208260070104928301926001038202915080841161075c5790505b50505050509050919050565b5f806001600160401b0383165f90815260086020526040902054600160401b900460ff1660038111156107e0576107e0610aaf565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610821908590600401610c45565b602060405180830381865af415801561083c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044d9190610d51565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3836108846106a2565b6040516001600160e01b031960e085901b16815260ff92831660048201529116602482015260440161040e565b6060600280546108c090610d68565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90610d68565b80156105a15780601f1061090e576101008083540402835291602001916105a1565b820191905f5260205f20905b81548152906001019060200180831161091a57509395945050505050565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af415801561098f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b39190610da0565b9392505050565b6001600160401b03811681146109ce575f80fd5b50565b5f80604083850312156109e2575f80fd5b8235915060208301356109f4816109ba565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610a60578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610a18565b509095945050505050565b60ff811681146109ce575f80fd5b5f60208284031215610a89575f80fd5b81356109b381610a6b565b5f60208284031215610aa4575f80fd5b81356109b3816109ba565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610af657634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015160608301526080830151610b2f608084018264ffffffffff169052565b5060a0830151610b4860a084018264ffffffffff169052565b5092915050565b5f60208284031215610b5f575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610a60578351835260209384019390920191600101610b7f565b602080825282518282018190525f918401906040840190835b81811015610a6057835160ff16835260209384019390920191600101610bb6565b602080825282518282018190525f918401906040840190835b81811015610a605783516001600160401b0316835260209384019390920191600101610bf0565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6109b36020830184610c17565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610c7b575f80fd5b81356001600160401b03811115610c90575f80fd5b8201601f81018413610ca0575f80fd5b80356001600160401b03811115610cb957610cb9610c57565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610ce757610ce7610c57565b604052818152828201602001861015610cfe575f80fd5b816020840160208301375f91810160200191909152949350505050565b5f60208284031215610d2b575f80fd5b81516109b3816109ba565b5f60208284031215610d46575f80fd5b81516109b381610a6b565b5f60208284031215610d61575f80fd5b5051919050565b600181811c90821680610d7c57607f821691505b602082108103610d9a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610db0575f80fd5b815180151581146109b3575f80fdfea2646970667358221220c4fc0cb3ac6e7ba5d65276966d035ce1a462773b4ec6fe84c261ec505036a4a964736f6c634300081a0033",
|
391
|
+
"linkReferences": {
|
392
|
+
"contracts/type/ObjectType.sol": {
|
393
|
+
"ObjectTypeLib": [
|
394
|
+
{
|
395
|
+
"length": 20,
|
396
|
+
"start": 143
|
397
|
+
}
|
398
|
+
]
|
399
|
+
},
|
400
|
+
"contracts/type/RoleId.sol": {
|
401
|
+
"RoleIdLib": [
|
402
|
+
{
|
403
|
+
"length": 20,
|
404
|
+
"start": 311
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"length": 20,
|
408
|
+
"start": 1044
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"length": 20,
|
412
|
+
"start": 1685
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"length": 20,
|
416
|
+
"start": 2555
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"length": 20,
|
420
|
+
"start": 2677
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"length": 20,
|
424
|
+
"start": 5470
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"length": 20,
|
428
|
+
"start": 6609
|
429
|
+
}
|
430
|
+
]
|
431
|
+
},
|
432
|
+
"contracts/type/Selector.sol": {
|
433
|
+
"SelectorLib": [
|
434
|
+
{
|
435
|
+
"length": 20,
|
436
|
+
"start": 2215
|
437
|
+
}
|
438
|
+
]
|
439
|
+
},
|
440
|
+
"contracts/type/String.sol": {
|
441
|
+
"StrLib": [
|
442
|
+
{
|
443
|
+
"length": 20,
|
444
|
+
"start": 585
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"length": 20,
|
448
|
+
"start": 837
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"length": 20,
|
452
|
+
"start": 1831
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"length": 20,
|
456
|
+
"start": 2076
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"length": 20,
|
460
|
+
"start": 2823
|
461
|
+
},
|
462
|
+
{
|
463
|
+
"length": 20,
|
464
|
+
"start": 6503
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"length": 20,
|
468
|
+
"start": 6853
|
469
|
+
}
|
470
|
+
]
|
471
|
+
},
|
472
|
+
"contracts/type/Timestamp.sol": {
|
473
|
+
"TimestampLib": [
|
474
|
+
{
|
475
|
+
"length": 20,
|
476
|
+
"start": 2324
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"length": 20,
|
480
|
+
"start": 2946
|
481
|
+
},
|
482
|
+
{
|
483
|
+
"length": 20,
|
484
|
+
"start": 3065
|
485
|
+
}
|
486
|
+
]
|
487
|
+
},
|
488
|
+
"contracts/type/Version.sol": {
|
489
|
+
"VersionPartLib": [
|
490
|
+
{
|
491
|
+
"length": 20,
|
492
|
+
"start": 3513
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"length": 20,
|
496
|
+
"start": 6184
|
497
|
+
}
|
498
|
+
]
|
499
|
+
}
|
500
|
+
},
|
501
|
+
"deployedLinkReferences": {
|
502
|
+
"contracts/type/RoleId.sol": {
|
503
|
+
"RoleIdLib": [
|
504
|
+
{
|
505
|
+
"length": 20,
|
506
|
+
"start": 1008
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"length": 20,
|
510
|
+
"start": 2147
|
511
|
+
}
|
512
|
+
]
|
513
|
+
},
|
514
|
+
"contracts/type/String.sol": {
|
515
|
+
"StrLib": [
|
516
|
+
{
|
517
|
+
"length": 20,
|
518
|
+
"start": 2041
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"length": 20,
|
522
|
+
"start": 2391
|
523
|
+
}
|
524
|
+
]
|
525
|
+
},
|
526
|
+
"contracts/type/Version.sol": {
|
527
|
+
"VersionPartLib": [
|
528
|
+
{
|
529
|
+
"length": 20,
|
530
|
+
"start": 1722
|
531
|
+
}
|
532
|
+
]
|
533
|
+
}
|
534
|
+
}
|
535
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "IOracle",
|
4
|
+
"sourceName": "contracts/oracle/IOracle.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "RequestId",
|
10
|
+
"name": "requestId",
|
11
|
+
"type": "uint64"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "cancel",
|
15
|
+
"outputs": [],
|
16
|
+
"stateMutability": "nonpayable",
|
17
|
+
"type": "function"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"inputs": [
|
21
|
+
{
|
22
|
+
"internalType": "RequestId",
|
23
|
+
"name": "requestId",
|
24
|
+
"type": "uint64"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"internalType": "NftId",
|
28
|
+
"name": "requesterId",
|
29
|
+
"type": "uint96"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"internalType": "bytes",
|
33
|
+
"name": "requestData",
|
34
|
+
"type": "bytes"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"internalType": "Timestamp",
|
38
|
+
"name": "expiryAt",
|
39
|
+
"type": "uint40"
|
40
|
+
}
|
41
|
+
],
|
42
|
+
"name": "request",
|
43
|
+
"outputs": [],
|
44
|
+
"stateMutability": "nonpayable",
|
45
|
+
"type": "function"
|
46
|
+
}
|
47
|
+
],
|
48
|
+
"bytecode": "0x",
|
49
|
+
"deployedBytecode": "0x",
|
50
|
+
"linkReferences": {},
|
51
|
+
"deployedLinkReferences": {}
|
52
|
+
}
|