@etherisc/gif-next 0.0.2-91f98cf-477 → 0.0.2-9272c43-568
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 +345 -46
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1023 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +752 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1664 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/access → authorization}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1372 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1225 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +930 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1665 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +912 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +829 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1100 -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 +1461 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2018 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1404 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1628 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2405 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +535 -1415
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +990 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +710 -1808
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2349 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2646 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1236 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3784 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +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/base/Cloneable.sol/Cloneable.json +137 -0
- 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 +192 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.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 +938 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -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 +753 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +854 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1013 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +772 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1231 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1293 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +832 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +880 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1006 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +538 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1606 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +824 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +871 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +752 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1140 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1512 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +856 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +323 -314
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +623 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +997 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IRiskService.sol/IRiskService.json} +264 -224
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1341 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +812 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +903 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +776 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1098 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +242 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1024 -119
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1043 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/{instance/IInstanceLinked.sol/IInstanceLinked.json → registry/IRelease.sol/IRelease.json} +6 -6
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1450 -219
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2147 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1269 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +735 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -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 +1389 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +686 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1487 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +816 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/{IOwnable.sol/IOwnable.json → ContractLib.sol/IInstanceAdminHelper.json} +5 -5
- 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/shared/IComponent.sol/IComponent.json +611 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1127 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +122 -172
- 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 +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +47 -74
- 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 +229 -21
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +198 -163
- 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 +776 -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 +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +209 -0
- 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 +275 -18
- 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 +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/Service.sol/Service.json} +233 -156
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +723 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1491 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1167 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1904 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +800 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +560 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1396 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +744 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -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 +373 -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 +241 -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 +204 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -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 +148 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +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 +180 -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 +572 -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 +167 -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 +142 -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 +261 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +45 -0
- package/contracts/authorization/AccessAdmin.sol +780 -0
- package/contracts/authorization/AccessAdminLib.sol +396 -0
- package/contracts/authorization/AccessManagerCloneable.sol +158 -0
- package/contracts/authorization/Authorization.sol +174 -0
- package/contracts/authorization/IAccess.sol +67 -0
- package/contracts/authorization/IAccessAdmin.sol +144 -0
- package/contracts/authorization/IAuthorization.sol +27 -0
- package/contracts/authorization/IServiceAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +320 -0
- package/contracts/distribution/BasicDistribution.sol +141 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
- package/contracts/distribution/Distribution.sol +245 -0
- package/contracts/distribution/DistributionService.sol +433 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +45 -0
- package/contracts/distribution/IDistributionService.sol +109 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +86 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +433 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +139 -47
- package/contracts/instance/IInstanceService.sol +113 -0
- package/contracts/instance/Instance.sol +337 -66
- package/contracts/instance/InstanceAdmin.sol +383 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +265 -0
- package/contracts/instance/InstanceReader.sol +632 -0
- package/contracts/instance/InstanceService.sol +511 -0
- package/contracts/instance/InstanceServiceManager.sol +39 -0
- package/contracts/instance/InstanceStore.sol +298 -0
- package/contracts/instance/RiskSet.sol +118 -0
- package/contracts/instance/base/BalanceStore.sol +121 -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 +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +21 -0
- package/contracts/instance/module/IComponents.sol +62 -0
- package/contracts/instance/module/IDistribution.sol +54 -0
- package/contracts/instance/module/IPolicy.sol +105 -0
- package/contracts/instance/module/IRisk.sol +16 -0
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +45 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
- package/contracts/oracle/IOracle.sol +41 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +66 -0
- package/contracts/oracle/Oracle.sol +154 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +173 -0
- package/contracts/pool/BasicPoolAuthorization.sol +82 -0
- package/contracts/pool/BundleService.sol +394 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +115 -0
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +165 -0
- package/contracts/pool/Pool.sol +343 -0
- package/contracts/pool/PoolLib.sol +353 -0
- package/contracts/pool/PoolService.sol +582 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +299 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +49 -0
- package/contracts/product/BasicProductAuthorization.sol +61 -0
- package/contracts/product/ClaimService.sol +631 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +69 -0
- package/contracts/product/IClaimService.sol +135 -0
- package/contracts/product/IPolicyService.sol +94 -0
- package/contracts/product/IPricingService.sol +40 -0
- package/contracts/product/IProductComponent.sol +62 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +637 -0
- package/contracts/product/PolicyServiceLib.sol +139 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +306 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +467 -0
- package/contracts/product/RiskService.sol +154 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +130 -40
- package/contracts/registry/IRegistry.sol +142 -29
- package/contracts/registry/IRegistryService.sol +62 -0
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +631 -282
- package/contracts/registry/RegistryAdmin.sol +188 -0
- package/contracts/registry/RegistryAuthorization.sol +277 -0
- package/contracts/registry/RegistryService.sol +241 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseAdmin.sol +195 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +520 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +344 -0
- package/contracts/registry/TokenRegistry.sol +314 -0
- package/contracts/shared/Component.sol +210 -0
- package/contracts/shared/ComponentService.sol +678 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ContractLib.sol +311 -0
- package/contracts/shared/IComponent.sol +58 -0
- package/contracts/shared/IComponentService.sol +110 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/{instance/base → shared}/ILifecycle.sol +6 -5
- package/contracts/shared/INftOwnable.sol +25 -0
- package/contracts/shared/IPolicyHolder.sol +35 -0
- package/contracts/shared/IRegisterable.sol +31 -19
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +23 -0
- package/contracts/shared/InitializableERC165.sol +35 -0
- package/contracts/shared/InstanceLinkedComponent.sol +194 -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 +127 -0
- package/contracts/shared/PolicyHolder.sol +63 -0
- package/contracts/shared/Registerable.sol +80 -60
- package/contracts/shared/RegistryLinked.sol +38 -0
- package/contracts/shared/Service.sol +67 -0
- package/contracts/shared/TokenHandler.sol +342 -0
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +179 -0
- package/contracts/staking/IStakingService.sol +175 -0
- package/contracts/staking/Staking.sol +545 -0
- package/contracts/staking/StakingLib.sol +281 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +180 -0
- package/contracts/staking/StakingService.sol +467 -0
- package/contracts/staking/StakingServiceManager.sol +45 -0
- package/contracts/staking/StakingStore.sol +606 -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/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/Key32.sol +10 -5
- 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 +307 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +90 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +75 -0
- package/contracts/type/RoleId.sol +180 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +107 -0
- package/contracts/{types → type}/StateId.sol +53 -5
- package/contracts/type/String.sol +65 -0
- package/contracts/{types → type}/Timestamp.sol +37 -19
- package/contracts/{types → type}/UFixed.sol +72 -19
- package/contracts/type/Version.sol +159 -0
- package/contracts/upgradeability/IVersionable.sol +53 -0
- package/contracts/upgradeability/ProxyManager.sol +234 -0
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +20 -0
- package/contracts/upgradeability/Versionable.sol +62 -0
- package/package.json +13 -8
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -405
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -340
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -487
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -370
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -578
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -444
- 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/IA.sol/ISharedA.json +0 -37
- 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/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
- 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/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.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 -710
- 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/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -511
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -511
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -531
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -420
- 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/IDistributionService.sol/IDistributionService.json +0 -325
- 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/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -543
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -858
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryUpgradeable.sol/Registry.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryUpgradeable.sol/Registry.json +0 -495
- 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/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -164
- package/artifacts/contracts/shared/Proxy.sol/Proxy.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/Proxy.json +0 -178
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -164
- package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.dbg.json +0 -4
- package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.json +0 -187
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -405
- 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/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -578
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -575
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
- 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 -379
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
- 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 -206
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
- 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/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 -111
- 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/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- 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 -30
- 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 -236
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
- package/contracts/components/BaseComponent.sol +0 -94
- package/contracts/components/Distribution.sol +0 -132
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/components/IDistributionComponent.sol +0 -47
- package/contracts/components/IPoolComponent.sol +0 -71
- package/contracts/components/IProductComponent.sol +0 -38
- package/contracts/components/Pool.sol +0 -235
- package/contracts/components/Product.sol +0 -227
- 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/README.md +0 -112
- 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/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -22
- package/contracts/instance/base/IKeyValueStore.sol +0 -50
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -91
- package/contracts/instance/base/KeyValueStore.sol +0 -161
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -70
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -40
- package/contracts/instance/module/pool/PoolModule.sol +0 -90
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -82
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -138
- package/contracts/instance/service/ComponentOwnerService.sol +0 -157
- package/contracts/instance/service/DistributionService.sol +0 -59
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- 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/instance/service/PoolService.sol +0 -149
- package/contracts/instance/service/ProductService.sol +0 -509
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/registry/RegistryUpgradeable.sol +0 -415
- package/contracts/shared/ERC165.sol +0 -21
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/shared/IVersionable.sol +0 -52
- package/contracts/shared/Proxy.sol +0 -83
- package/contracts/shared/Versionable.sol +0 -89
- package/contracts/shared/VersionableUpgradeable.sol +0 -108
- package/contracts/test/TestDistribution.sol +0 -21
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestPool.sol +0 -25
- package/contracts/test/TestProduct.sol +0 -72
- package/contracts/test/TestRegisterable.sol +0 -19
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -32
- 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/Fee.sol +0 -56
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/ObjectType.sol +0 -131
- package/contracts/types/ReferralId.sol +0 -48
- package/contracts/types/RiskId.sol +0 -43
- package/contracts/types/RoleId.sol +0 -38
- package/contracts/types/Version.sol +0 -95
@@ -4,356 +4,206 @@
|
|
4
4
|
"sourceName": "contracts/instance/IInstance.sol",
|
5
5
|
"abi": [
|
6
6
|
{
|
7
|
-
"anonymous": false,
|
8
7
|
"inputs": [
|
9
8
|
{
|
10
|
-
"
|
11
|
-
"
|
12
|
-
"
|
13
|
-
"type": "bytes8"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"indexed": false,
|
17
|
-
"internalType": "string",
|
18
|
-
"name": "roleName",
|
19
|
-
"type": "string"
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
20
12
|
}
|
21
13
|
],
|
22
|
-
"name": "
|
23
|
-
"type": "
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
24
16
|
},
|
25
17
|
{
|
26
|
-
"anonymous": false,
|
27
18
|
"inputs": [
|
28
19
|
{
|
29
|
-
"indexed": false,
|
30
|
-
"internalType": "RoleId",
|
31
|
-
"name": "role",
|
32
|
-
"type": "bytes8"
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"indexed": false,
|
36
20
|
"internalType": "address",
|
37
|
-
"name": "
|
21
|
+
"name": "caller",
|
38
22
|
"type": "address"
|
39
23
|
},
|
40
24
|
{
|
41
|
-
"
|
42
|
-
"
|
43
|
-
"
|
44
|
-
"type": "bool"
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
45
28
|
}
|
46
29
|
],
|
47
|
-
"name": "
|
48
|
-
"type": "
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
49
32
|
},
|
50
33
|
{
|
51
|
-
"anonymous": false,
|
52
34
|
"inputs": [
|
53
35
|
{
|
54
|
-
"
|
55
|
-
"
|
56
|
-
"
|
57
|
-
"type": "bytes8"
|
58
|
-
},
|
59
|
-
{
|
60
|
-
"indexed": false,
|
61
|
-
"internalType": "bool",
|
62
|
-
"name": "active",
|
63
|
-
"type": "bool"
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
64
39
|
}
|
65
40
|
],
|
66
|
-
"name": "
|
67
|
-
"type": "
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
68
43
|
},
|
69
44
|
{
|
70
|
-
"anonymous": false,
|
71
45
|
"inputs": [
|
72
46
|
{
|
73
|
-
"indexed": false,
|
74
|
-
"internalType": "Version",
|
75
|
-
"name": "version",
|
76
|
-
"type": "uint24"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"indexed": false,
|
80
47
|
"internalType": "address",
|
81
|
-
"name": "
|
48
|
+
"name": "authority",
|
82
49
|
"type": "address"
|
83
|
-
}
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorAuthorityInvalid",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
84
57
|
{
|
85
|
-
"indexed": false,
|
86
58
|
"internalType": "address",
|
87
|
-
"name": "
|
59
|
+
"name": "instanceBundleSet",
|
88
60
|
"type": "address"
|
89
61
|
}
|
90
62
|
],
|
91
|
-
"name": "
|
92
|
-
"type": "
|
63
|
+
"name": "ErrorInstanceBundleSetAlreadySet",
|
64
|
+
"type": "error"
|
93
65
|
},
|
94
66
|
{
|
95
67
|
"inputs": [
|
96
68
|
{
|
97
69
|
"internalType": "address",
|
98
|
-
"name": "
|
70
|
+
"name": "instanceAuthority",
|
99
71
|
"type": "address"
|
100
|
-
}
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorInstanceBundleSetAuthorityMismatch",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
101
79
|
{
|
102
80
|
"internalType": "address",
|
103
|
-
"name": "
|
81
|
+
"name": "instance",
|
104
82
|
"type": "address"
|
105
83
|
}
|
106
84
|
],
|
107
|
-
"name": "
|
108
|
-
"
|
109
|
-
"stateMutability": "nonpayable",
|
110
|
-
"type": "function"
|
85
|
+
"name": "ErrorInstanceBundleSetInstanceMismatch",
|
86
|
+
"type": "error"
|
111
87
|
},
|
112
88
|
{
|
113
89
|
"inputs": [
|
114
90
|
{
|
115
|
-
"internalType": "
|
116
|
-
"name": "
|
117
|
-
"type": "
|
118
|
-
},
|
119
|
-
{
|
120
|
-
"internalType": "NftId",
|
121
|
-
"name": "poolNftId",
|
122
|
-
"type": "uint96"
|
123
|
-
},
|
124
|
-
{
|
125
|
-
"internalType": "uint256",
|
126
|
-
"name": "amount",
|
127
|
-
"type": "uint256"
|
91
|
+
"internalType": "address",
|
92
|
+
"name": "instanceAdmin",
|
93
|
+
"type": "address"
|
128
94
|
}
|
129
95
|
],
|
130
|
-
"name": "
|
131
|
-
"
|
132
|
-
"stateMutability": "nonpayable",
|
133
|
-
"type": "function"
|
96
|
+
"name": "ErrorInstanceInstanceAdminAlreadySet",
|
97
|
+
"type": "error"
|
134
98
|
},
|
135
99
|
{
|
136
100
|
"inputs": [
|
137
101
|
{
|
138
|
-
"internalType": "
|
139
|
-
"name": "
|
140
|
-
"type": "
|
141
|
-
},
|
142
|
-
{
|
143
|
-
"components": [
|
144
|
-
{
|
145
|
-
"internalType": "UFixed",
|
146
|
-
"name": "fractionalFee",
|
147
|
-
"type": "uint256"
|
148
|
-
},
|
149
|
-
{
|
150
|
-
"internalType": "uint256",
|
151
|
-
"name": "fixedFee",
|
152
|
-
"type": "uint256"
|
153
|
-
}
|
154
|
-
],
|
155
|
-
"internalType": "struct Fee",
|
156
|
-
"name": "fee",
|
157
|
-
"type": "tuple"
|
102
|
+
"internalType": "address",
|
103
|
+
"name": "instanceAuthority",
|
104
|
+
"type": "address"
|
158
105
|
}
|
159
106
|
],
|
160
|
-
"name": "
|
161
|
-
"
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
107
|
+
"name": "ErrorInstanceInstanceAdminAuthorityMismatch",
|
108
|
+
"type": "error"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"inputs": [],
|
112
|
+
"name": "ErrorInstanceInstanceAdminZero",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
167
117
|
{
|
168
|
-
"internalType": "
|
169
|
-
"name": "
|
170
|
-
"type": "
|
118
|
+
"internalType": "address",
|
119
|
+
"name": "instanceAuthority",
|
120
|
+
"type": "address"
|
171
121
|
}
|
172
122
|
],
|
173
|
-
"
|
174
|
-
"type": "
|
123
|
+
"name": "ErrorInstanceInstanceReaderInstanceMismatch",
|
124
|
+
"type": "error"
|
175
125
|
},
|
176
126
|
{
|
177
127
|
"inputs": [
|
178
128
|
{
|
179
|
-
"internalType": "
|
180
|
-
"name": "
|
181
|
-
"type": "
|
182
|
-
},
|
183
|
-
{
|
184
|
-
"internalType": "NftId",
|
185
|
-
"name": "policyNftId",
|
186
|
-
"type": "uint96"
|
187
|
-
},
|
188
|
-
{
|
189
|
-
"internalType": "uint256",
|
190
|
-
"name": "amount",
|
191
|
-
"type": "uint256"
|
129
|
+
"internalType": "address",
|
130
|
+
"name": "instanceStore",
|
131
|
+
"type": "address"
|
192
132
|
}
|
193
133
|
],
|
194
|
-
"name": "
|
195
|
-
"
|
196
|
-
"stateMutability": "nonpayable",
|
197
|
-
"type": "function"
|
134
|
+
"name": "ErrorInstanceInstanceStoreAlreadySet",
|
135
|
+
"type": "error"
|
198
136
|
},
|
199
137
|
{
|
200
138
|
"inputs": [
|
201
139
|
{
|
202
|
-
"internalType": "
|
203
|
-
"name": "
|
204
|
-
"type": "
|
205
|
-
},
|
206
|
-
{
|
207
|
-
"internalType": "NftId",
|
208
|
-
"name": "poolNftId",
|
209
|
-
"type": "uint96"
|
210
|
-
},
|
211
|
-
{
|
212
|
-
"components": [
|
213
|
-
{
|
214
|
-
"internalType": "UFixed",
|
215
|
-
"name": "fractionalFee",
|
216
|
-
"type": "uint256"
|
217
|
-
},
|
218
|
-
{
|
219
|
-
"internalType": "uint256",
|
220
|
-
"name": "fixedFee",
|
221
|
-
"type": "uint256"
|
222
|
-
}
|
223
|
-
],
|
224
|
-
"internalType": "struct Fee",
|
225
|
-
"name": "fee",
|
226
|
-
"type": "tuple"
|
227
|
-
},
|
228
|
-
{
|
229
|
-
"internalType": "uint256",
|
230
|
-
"name": "amount",
|
231
|
-
"type": "uint256"
|
232
|
-
},
|
233
|
-
{
|
234
|
-
"internalType": "uint256",
|
235
|
-
"name": "lifetime",
|
236
|
-
"type": "uint256"
|
237
|
-
},
|
238
|
-
{
|
239
|
-
"internalType": "bytes",
|
240
|
-
"name": "filter",
|
241
|
-
"type": "bytes"
|
140
|
+
"internalType": "address",
|
141
|
+
"name": "instanceAuthority",
|
142
|
+
"type": "address"
|
242
143
|
}
|
243
144
|
],
|
244
|
-
"name": "
|
245
|
-
"
|
246
|
-
"stateMutability": "nonpayable",
|
247
|
-
"type": "function"
|
145
|
+
"name": "ErrorInstanceInstanceStoreAuthorityMismatch",
|
146
|
+
"type": "error"
|
248
147
|
},
|
249
148
|
{
|
250
149
|
"inputs": [
|
251
150
|
{
|
252
|
-
"internalType": "
|
253
|
-
"name": "
|
254
|
-
"type": "
|
255
|
-
},
|
256
|
-
{
|
257
|
-
"internalType": "NftId",
|
258
|
-
"name": "productNftId",
|
259
|
-
"type": "uint96"
|
260
|
-
},
|
261
|
-
{
|
262
|
-
"internalType": "ReferralId",
|
263
|
-
"name": "referralId",
|
264
|
-
"type": "bytes8"
|
265
|
-
},
|
266
|
-
{
|
267
|
-
"internalType": "RiskId",
|
268
|
-
"name": "riskId",
|
269
|
-
"type": "bytes8"
|
270
|
-
},
|
271
|
-
{
|
272
|
-
"internalType": "uint256",
|
273
|
-
"name": "sumInsuredAmount",
|
274
|
-
"type": "uint256"
|
275
|
-
},
|
276
|
-
{
|
277
|
-
"internalType": "uint256",
|
278
|
-
"name": "premiumAmount",
|
279
|
-
"type": "uint256"
|
280
|
-
},
|
281
|
-
{
|
282
|
-
"internalType": "uint256",
|
283
|
-
"name": "lifetime",
|
284
|
-
"type": "uint256"
|
285
|
-
},
|
286
|
-
{
|
287
|
-
"internalType": "NftId",
|
288
|
-
"name": "bundleNftId",
|
289
|
-
"type": "uint96"
|
151
|
+
"internalType": "RoleId",
|
152
|
+
"name": "roleId",
|
153
|
+
"type": "uint64"
|
290
154
|
}
|
291
155
|
],
|
292
|
-
"name": "
|
293
|
-
"
|
294
|
-
"stateMutability": "nonpayable",
|
295
|
-
"type": "function"
|
156
|
+
"name": "ErrorInstanceNotCustomRole",
|
157
|
+
"type": "error"
|
296
158
|
},
|
297
159
|
{
|
298
160
|
"inputs": [
|
299
161
|
{
|
300
|
-
"internalType": "
|
301
|
-
"name": "
|
302
|
-
"type": "
|
303
|
-
},
|
304
|
-
{
|
305
|
-
"internalType": "NftId",
|
306
|
-
"name": "productNftId",
|
307
|
-
"type": "uint96"
|
162
|
+
"internalType": "RoleId",
|
163
|
+
"name": "roleId",
|
164
|
+
"type": "uint64"
|
308
165
|
},
|
309
166
|
{
|
310
|
-
"internalType": "
|
311
|
-
"name": "
|
312
|
-
"type": "
|
167
|
+
"internalType": "address",
|
168
|
+
"name": "account",
|
169
|
+
"type": "address"
|
313
170
|
}
|
314
171
|
],
|
315
|
-
"name": "
|
316
|
-
"
|
317
|
-
"stateMutability": "nonpayable",
|
318
|
-
"type": "function"
|
172
|
+
"name": "ErrorInstanceNotRoleAdmin",
|
173
|
+
"type": "error"
|
319
174
|
},
|
320
175
|
{
|
321
176
|
"inputs": [
|
322
177
|
{
|
323
|
-
"internalType": "
|
324
|
-
"name": "
|
325
|
-
"type": "
|
326
|
-
}
|
327
|
-
],
|
328
|
-
"name": "createRole",
|
329
|
-
"outputs": [
|
330
|
-
{
|
331
|
-
"internalType": "RoleId",
|
332
|
-
"name": "role",
|
333
|
-
"type": "bytes8"
|
178
|
+
"internalType": "address",
|
179
|
+
"name": "instanceRiskSet",
|
180
|
+
"type": "address"
|
334
181
|
}
|
335
182
|
],
|
336
|
-
"
|
337
|
-
"type": "
|
183
|
+
"name": "ErrorInstanceRiskSetAlreadySet",
|
184
|
+
"type": "error"
|
338
185
|
},
|
339
186
|
{
|
340
187
|
"inputs": [
|
341
188
|
{
|
342
|
-
"internalType": "
|
343
|
-
"name": "
|
344
|
-
"type": "
|
189
|
+
"internalType": "address",
|
190
|
+
"name": "instanceAuthority",
|
191
|
+
"type": "address"
|
345
192
|
}
|
346
193
|
],
|
347
|
-
"name": "
|
348
|
-
"
|
194
|
+
"name": "ErrorInstanceRiskSetAuthorityMismatch",
|
195
|
+
"type": "error"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"inputs": [
|
349
199
|
{
|
350
|
-
"internalType": "
|
351
|
-
"name": "
|
352
|
-
"type": "
|
200
|
+
"internalType": "address",
|
201
|
+
"name": "instance",
|
202
|
+
"type": "address"
|
353
203
|
}
|
354
204
|
],
|
355
|
-
"
|
356
|
-
"type": "
|
205
|
+
"name": "ErrorInstanceRiskSetInstanceMismatch",
|
206
|
+
"type": "error"
|
357
207
|
},
|
358
208
|
{
|
359
209
|
"inputs": [
|
@@ -363,665 +213,369 @@
|
|
363
213
|
"type": "uint96"
|
364
214
|
}
|
365
215
|
],
|
366
|
-
"name": "
|
367
|
-
"
|
216
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
217
|
+
"type": "error"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"inputs": [
|
368
221
|
{
|
369
|
-
"
|
370
|
-
|
371
|
-
|
372
|
-
"name": "poolNftId",
|
373
|
-
"type": "uint96"
|
374
|
-
},
|
375
|
-
{
|
376
|
-
"components": [
|
377
|
-
{
|
378
|
-
"internalType": "UFixed",
|
379
|
-
"name": "fractionalFee",
|
380
|
-
"type": "uint256"
|
381
|
-
},
|
382
|
-
{
|
383
|
-
"internalType": "uint256",
|
384
|
-
"name": "fixedFee",
|
385
|
-
"type": "uint256"
|
386
|
-
}
|
387
|
-
],
|
388
|
-
"internalType": "struct Fee",
|
389
|
-
"name": "fee",
|
390
|
-
"type": "tuple"
|
391
|
-
},
|
392
|
-
{
|
393
|
-
"internalType": "bytes",
|
394
|
-
"name": "filter",
|
395
|
-
"type": "bytes"
|
396
|
-
},
|
397
|
-
{
|
398
|
-
"internalType": "uint256",
|
399
|
-
"name": "capitalAmount",
|
400
|
-
"type": "uint256"
|
401
|
-
},
|
402
|
-
{
|
403
|
-
"internalType": "uint256",
|
404
|
-
"name": "lockedAmount",
|
405
|
-
"type": "uint256"
|
406
|
-
},
|
407
|
-
{
|
408
|
-
"internalType": "uint256",
|
409
|
-
"name": "balanceAmount",
|
410
|
-
"type": "uint256"
|
411
|
-
},
|
412
|
-
{
|
413
|
-
"internalType": "Timestamp",
|
414
|
-
"name": "expiredAt",
|
415
|
-
"type": "uint40"
|
416
|
-
},
|
417
|
-
{
|
418
|
-
"internalType": "Timestamp",
|
419
|
-
"name": "closedAt",
|
420
|
-
"type": "uint40"
|
421
|
-
}
|
422
|
-
],
|
423
|
-
"internalType": "struct IBundle.BundleInfo",
|
424
|
-
"name": "bundleInfo",
|
425
|
-
"type": "tuple"
|
222
|
+
"internalType": "address",
|
223
|
+
"name": "contractAddress",
|
224
|
+
"type": "address"
|
426
225
|
}
|
427
226
|
],
|
428
|
-
"
|
429
|
-
"type": "
|
227
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
228
|
+
"type": "error"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"inputs": [],
|
232
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
233
|
+
"type": "error"
|
430
234
|
},
|
431
235
|
{
|
432
236
|
"inputs": [
|
433
237
|
{
|
434
238
|
"internalType": "NftId",
|
435
|
-
"name": "
|
239
|
+
"name": "nftId",
|
436
240
|
"type": "uint96"
|
437
241
|
},
|
438
242
|
{
|
439
|
-
"internalType": "
|
440
|
-
"name": "
|
441
|
-
"type": "
|
442
|
-
}
|
443
|
-
],
|
444
|
-
"name": "getBundleNftId",
|
445
|
-
"outputs": [
|
446
|
-
{
|
447
|
-
"internalType": "NftId",
|
448
|
-
"name": "bundleNftId",
|
449
|
-
"type": "uint96"
|
450
|
-
}
|
451
|
-
],
|
452
|
-
"stateMutability": "view",
|
453
|
-
"type": "function"
|
454
|
-
},
|
455
|
-
{
|
456
|
-
"inputs": [],
|
457
|
-
"name": "getComponentCount",
|
458
|
-
"outputs": [
|
459
|
-
{
|
460
|
-
"internalType": "uint256",
|
461
|
-
"name": "numberOfCompnents",
|
462
|
-
"type": "uint256"
|
463
|
-
}
|
464
|
-
],
|
465
|
-
"stateMutability": "view",
|
466
|
-
"type": "function"
|
467
|
-
},
|
468
|
-
{
|
469
|
-
"inputs": [
|
470
|
-
{
|
471
|
-
"internalType": "uint256",
|
472
|
-
"name": "idx",
|
473
|
-
"type": "uint256"
|
474
|
-
}
|
475
|
-
],
|
476
|
-
"name": "getComponentId",
|
477
|
-
"outputs": [
|
478
|
-
{
|
479
|
-
"internalType": "NftId",
|
480
|
-
"name": "nftId",
|
481
|
-
"type": "uint96"
|
482
|
-
}
|
483
|
-
],
|
484
|
-
"stateMutability": "view",
|
485
|
-
"type": "function"
|
486
|
-
},
|
487
|
-
{
|
488
|
-
"inputs": [],
|
489
|
-
"name": "getComponentOwnerService",
|
490
|
-
"outputs": [
|
491
|
-
{
|
492
|
-
"internalType": "contract IComponentOwnerService",
|
493
|
-
"name": "",
|
494
|
-
"type": "address"
|
243
|
+
"internalType": "ObjectType",
|
244
|
+
"name": "expectedObjectType",
|
245
|
+
"type": "uint8"
|
495
246
|
}
|
496
247
|
],
|
497
|
-
"
|
498
|
-
"type": "
|
248
|
+
"name": "ErrorNftOwnableInvalidType",
|
249
|
+
"type": "error"
|
499
250
|
},
|
500
251
|
{
|
501
252
|
"inputs": [
|
502
253
|
{
|
503
|
-
"internalType": "
|
504
|
-
"name": "
|
505
|
-
"type": "uint96"
|
506
|
-
}
|
507
|
-
],
|
508
|
-
"name": "getComponentToken",
|
509
|
-
"outputs": [
|
510
|
-
{
|
511
|
-
"internalType": "contract IERC20Metadata",
|
512
|
-
"name": "token",
|
254
|
+
"internalType": "address",
|
255
|
+
"name": "account",
|
513
256
|
"type": "address"
|
514
257
|
}
|
515
258
|
],
|
516
|
-
"
|
517
|
-
"type": "
|
259
|
+
"name": "ErrorNftOwnableNotOwner",
|
260
|
+
"type": "error"
|
518
261
|
},
|
519
262
|
{
|
520
263
|
"inputs": [
|
521
|
-
{
|
522
|
-
"internalType": "NftId",
|
523
|
-
"name": "nftId",
|
524
|
-
"type": "uint96"
|
525
|
-
}
|
526
|
-
],
|
527
|
-
"name": "getComponentWallet",
|
528
|
-
"outputs": [
|
529
264
|
{
|
530
265
|
"internalType": "address",
|
531
|
-
"name": "
|
266
|
+
"name": "registryAddress",
|
532
267
|
"type": "address"
|
533
268
|
}
|
534
269
|
],
|
535
|
-
"
|
536
|
-
"type": "
|
270
|
+
"name": "ErrorNotRegistry",
|
271
|
+
"type": "error"
|
537
272
|
},
|
538
273
|
{
|
539
274
|
"inputs": [],
|
540
|
-
"name": "
|
541
|
-
"
|
542
|
-
{
|
543
|
-
"internalType": "bytes",
|
544
|
-
"name": "data",
|
545
|
-
"type": "bytes"
|
546
|
-
}
|
547
|
-
],
|
548
|
-
"stateMutability": "view",
|
549
|
-
"type": "function"
|
275
|
+
"name": "ErrorRegisterableNotActive",
|
276
|
+
"type": "error"
|
550
277
|
},
|
551
278
|
{
|
552
|
-
"
|
553
|
-
"
|
554
|
-
"outputs": [
|
279
|
+
"anonymous": false,
|
280
|
+
"inputs": [
|
555
281
|
{
|
556
|
-
"
|
557
|
-
"
|
282
|
+
"indexed": false,
|
283
|
+
"internalType": "address",
|
284
|
+
"name": "authority",
|
558
285
|
"type": "address"
|
559
286
|
}
|
560
287
|
],
|
561
|
-
"
|
562
|
-
"type": "
|
288
|
+
"name": "AuthorityUpdated",
|
289
|
+
"type": "event"
|
563
290
|
},
|
564
291
|
{
|
292
|
+
"anonymous": false,
|
565
293
|
"inputs": [
|
566
294
|
{
|
567
|
-
"
|
568
|
-
"
|
569
|
-
"
|
295
|
+
"indexed": false,
|
296
|
+
"internalType": "RoleId",
|
297
|
+
"name": "roleId",
|
298
|
+
"type": "uint64"
|
570
299
|
},
|
571
300
|
{
|
572
|
-
"
|
573
|
-
"
|
574
|
-
"
|
575
|
-
|
576
|
-
|
577
|
-
"name": "getFee",
|
578
|
-
"outputs": [
|
579
|
-
{
|
580
|
-
"components": [
|
581
|
-
{
|
582
|
-
"internalType": "UFixed",
|
583
|
-
"name": "fractionalFee",
|
584
|
-
"type": "uint256"
|
585
|
-
},
|
586
|
-
{
|
587
|
-
"internalType": "uint256",
|
588
|
-
"name": "fixedFee",
|
589
|
-
"type": "uint256"
|
590
|
-
}
|
591
|
-
],
|
592
|
-
"internalType": "struct Fee",
|
593
|
-
"name": "fee",
|
594
|
-
"type": "tuple"
|
595
|
-
}
|
596
|
-
],
|
597
|
-
"stateMutability": "pure",
|
598
|
-
"type": "function"
|
599
|
-
},
|
600
|
-
{
|
601
|
-
"inputs": [],
|
602
|
-
"name": "getKeyValueStore",
|
603
|
-
"outputs": [
|
604
|
-
{
|
605
|
-
"internalType": "contract IKeyValueStore",
|
606
|
-
"name": "keyValueStore",
|
607
|
-
"type": "address"
|
608
|
-
}
|
609
|
-
],
|
610
|
-
"stateMutability": "view",
|
611
|
-
"type": "function"
|
612
|
-
},
|
613
|
-
{
|
614
|
-
"inputs": [],
|
615
|
-
"name": "getNftId",
|
616
|
-
"outputs": [
|
617
|
-
{
|
618
|
-
"internalType": "NftId",
|
619
|
-
"name": "nftId",
|
620
|
-
"type": "uint96"
|
621
|
-
}
|
622
|
-
],
|
623
|
-
"stateMutability": "view",
|
624
|
-
"type": "function"
|
625
|
-
},
|
626
|
-
{
|
627
|
-
"inputs": [],
|
628
|
-
"name": "getOwner",
|
629
|
-
"outputs": [
|
301
|
+
"indexed": false,
|
302
|
+
"internalType": "bool",
|
303
|
+
"name": "active",
|
304
|
+
"type": "bool"
|
305
|
+
},
|
630
306
|
{
|
307
|
+
"indexed": false,
|
631
308
|
"internalType": "address",
|
632
|
-
"name": "
|
309
|
+
"name": "caller",
|
633
310
|
"type": "address"
|
634
311
|
}
|
635
312
|
],
|
636
|
-
"
|
637
|
-
"type": "
|
638
|
-
},
|
639
|
-
{
|
640
|
-
"inputs": [],
|
641
|
-
"name": "getParentNftId",
|
642
|
-
"outputs": [
|
643
|
-
{
|
644
|
-
"internalType": "NftId",
|
645
|
-
"name": "nftId",
|
646
|
-
"type": "uint96"
|
647
|
-
}
|
648
|
-
],
|
649
|
-
"stateMutability": "view",
|
650
|
-
"type": "function"
|
313
|
+
"name": "LogInstanceCustomRoleActiveSet",
|
314
|
+
"type": "event"
|
651
315
|
},
|
652
316
|
{
|
317
|
+
"anonymous": false,
|
653
318
|
"inputs": [
|
654
319
|
{
|
655
|
-
"
|
656
|
-
"
|
657
|
-
"
|
658
|
-
|
659
|
-
|
660
|
-
"name": "getPolicyInfo",
|
661
|
-
"outputs": [
|
320
|
+
"indexed": false,
|
321
|
+
"internalType": "RoleId",
|
322
|
+
"name": "roleId",
|
323
|
+
"type": "uint64"
|
324
|
+
},
|
662
325
|
{
|
663
|
-
"
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
{
|
680
|
-
"internalType": "address",
|
681
|
-
"name": "beneficiary",
|
682
|
-
"type": "address"
|
683
|
-
},
|
684
|
-
{
|
685
|
-
"internalType": "RiskId",
|
686
|
-
"name": "riskId",
|
687
|
-
"type": "bytes8"
|
688
|
-
},
|
689
|
-
{
|
690
|
-
"internalType": "uint256",
|
691
|
-
"name": "sumInsuredAmount",
|
692
|
-
"type": "uint256"
|
693
|
-
},
|
694
|
-
{
|
695
|
-
"internalType": "uint256",
|
696
|
-
"name": "premiumAmount",
|
697
|
-
"type": "uint256"
|
698
|
-
},
|
699
|
-
{
|
700
|
-
"internalType": "uint256",
|
701
|
-
"name": "premiumPaidAmount",
|
702
|
-
"type": "uint256"
|
703
|
-
},
|
704
|
-
{
|
705
|
-
"internalType": "uint256",
|
706
|
-
"name": "lifetime",
|
707
|
-
"type": "uint256"
|
708
|
-
},
|
709
|
-
{
|
710
|
-
"internalType": "bytes",
|
711
|
-
"name": "applicationData",
|
712
|
-
"type": "bytes"
|
713
|
-
},
|
714
|
-
{
|
715
|
-
"internalType": "bytes",
|
716
|
-
"name": "policyData",
|
717
|
-
"type": "bytes"
|
718
|
-
},
|
719
|
-
{
|
720
|
-
"internalType": "Timestamp",
|
721
|
-
"name": "activatedAt",
|
722
|
-
"type": "uint40"
|
723
|
-
},
|
724
|
-
{
|
725
|
-
"internalType": "Timestamp",
|
726
|
-
"name": "expiredAt",
|
727
|
-
"type": "uint40"
|
728
|
-
},
|
729
|
-
{
|
730
|
-
"internalType": "Timestamp",
|
731
|
-
"name": "closedAt",
|
732
|
-
"type": "uint40"
|
733
|
-
}
|
734
|
-
],
|
735
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
736
|
-
"name": "info",
|
737
|
-
"type": "tuple"
|
326
|
+
"indexed": false,
|
327
|
+
"internalType": "string",
|
328
|
+
"name": "roleName",
|
329
|
+
"type": "string"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"indexed": false,
|
333
|
+
"internalType": "RoleId",
|
334
|
+
"name": "adminRoleId",
|
335
|
+
"type": "uint64"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"indexed": false,
|
339
|
+
"internalType": "uint32",
|
340
|
+
"name": "maxMemberCount",
|
341
|
+
"type": "uint32"
|
738
342
|
}
|
739
343
|
],
|
740
|
-
"
|
741
|
-
"type": "
|
344
|
+
"name": "LogInstanceCustomRoleCreated",
|
345
|
+
"type": "event"
|
742
346
|
},
|
743
347
|
{
|
348
|
+
"anonymous": false,
|
744
349
|
"inputs": [
|
745
350
|
{
|
746
|
-
"
|
747
|
-
"
|
748
|
-
"
|
749
|
-
|
750
|
-
|
751
|
-
"name": "getPoolInfo",
|
752
|
-
"outputs": [
|
351
|
+
"indexed": false,
|
352
|
+
"internalType": "RoleId",
|
353
|
+
"name": "roleId",
|
354
|
+
"type": "uint64"
|
355
|
+
},
|
753
356
|
{
|
754
|
-
"
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
},
|
760
|
-
{
|
761
|
-
"internalType": "UFixed",
|
762
|
-
"name": "collateralizationLevel",
|
763
|
-
"type": "uint256"
|
764
|
-
}
|
765
|
-
],
|
766
|
-
"internalType": "struct IPool.PoolInfo",
|
767
|
-
"name": "info",
|
768
|
-
"type": "tuple"
|
769
|
-
}
|
770
|
-
],
|
771
|
-
"stateMutability": "view",
|
772
|
-
"type": "function"
|
773
|
-
},
|
774
|
-
{
|
775
|
-
"inputs": [],
|
776
|
-
"name": "getPoolService",
|
777
|
-
"outputs": [
|
357
|
+
"indexed": false,
|
358
|
+
"internalType": "address",
|
359
|
+
"name": "account",
|
360
|
+
"type": "address"
|
361
|
+
},
|
778
362
|
{
|
779
|
-
"
|
780
|
-
"
|
363
|
+
"indexed": false,
|
364
|
+
"internalType": "address",
|
365
|
+
"name": "caller",
|
781
366
|
"type": "address"
|
782
367
|
}
|
783
368
|
],
|
784
|
-
"
|
785
|
-
"type": "
|
369
|
+
"name": "LogInstanceCustomRoleGranted",
|
370
|
+
"type": "event"
|
786
371
|
},
|
787
372
|
{
|
373
|
+
"anonymous": false,
|
788
374
|
"inputs": [
|
789
375
|
{
|
790
|
-
"
|
791
|
-
"
|
792
|
-
"
|
793
|
-
|
794
|
-
|
795
|
-
"name": "getProductNftId",
|
796
|
-
"outputs": [
|
797
|
-
{
|
798
|
-
"internalType": "NftId",
|
799
|
-
"name": "productNftId",
|
800
|
-
"type": "uint96"
|
801
|
-
}
|
802
|
-
],
|
803
|
-
"stateMutability": "view",
|
804
|
-
"type": "function"
|
805
|
-
},
|
806
|
-
{
|
807
|
-
"inputs": [],
|
808
|
-
"name": "getProductService",
|
809
|
-
"outputs": [
|
376
|
+
"indexed": false,
|
377
|
+
"internalType": "RoleId",
|
378
|
+
"name": "roleId",
|
379
|
+
"type": "uint64"
|
380
|
+
},
|
810
381
|
{
|
811
|
-
"
|
812
|
-
"
|
382
|
+
"indexed": false,
|
383
|
+
"internalType": "address",
|
384
|
+
"name": "account",
|
813
385
|
"type": "address"
|
814
|
-
}
|
815
|
-
],
|
816
|
-
"stateMutability": "view",
|
817
|
-
"type": "function"
|
818
|
-
},
|
819
|
-
{
|
820
|
-
"inputs": [],
|
821
|
-
"name": "getRegistry",
|
822
|
-
"outputs": [
|
386
|
+
},
|
823
387
|
{
|
824
|
-
"
|
825
|
-
"
|
388
|
+
"indexed": false,
|
389
|
+
"internalType": "address",
|
390
|
+
"name": "caller",
|
826
391
|
"type": "address"
|
827
392
|
}
|
828
393
|
],
|
829
|
-
"
|
830
|
-
"type": "
|
394
|
+
"name": "LogInstanceCustomRoleRevoked",
|
395
|
+
"type": "event"
|
831
396
|
},
|
832
397
|
{
|
398
|
+
"anonymous": false,
|
833
399
|
"inputs": [
|
834
400
|
{
|
835
|
-
"
|
836
|
-
"
|
837
|
-
"
|
838
|
-
|
839
|
-
|
840
|
-
"name": "getRiskInfo",
|
841
|
-
"outputs": [
|
401
|
+
"indexed": false,
|
402
|
+
"internalType": "address",
|
403
|
+
"name": "target",
|
404
|
+
"type": "address"
|
405
|
+
},
|
842
406
|
{
|
843
|
-
"
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
}
|
854
|
-
],
|
855
|
-
"internalType": "struct IRisk.RiskInfo",
|
856
|
-
"name": "info",
|
857
|
-
"type": "tuple"
|
407
|
+
"indexed": false,
|
408
|
+
"internalType": "RoleId",
|
409
|
+
"name": "targetRoleId",
|
410
|
+
"type": "uint64"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"indexed": false,
|
414
|
+
"internalType": "string",
|
415
|
+
"name": "name",
|
416
|
+
"type": "string"
|
858
417
|
}
|
859
418
|
],
|
860
|
-
"
|
861
|
-
"type": "
|
419
|
+
"name": "LogInstanceCustomTargetCreated",
|
420
|
+
"type": "event"
|
862
421
|
},
|
863
422
|
{
|
423
|
+
"anonymous": false,
|
864
424
|
"inputs": [
|
865
425
|
{
|
866
|
-
"
|
867
|
-
"
|
868
|
-
"
|
869
|
-
|
870
|
-
|
871
|
-
"name": "getRole",
|
872
|
-
"outputs": [
|
873
|
-
{
|
874
|
-
"internalType": "RoleId",
|
875
|
-
"name": "role",
|
876
|
-
"type": "bytes8"
|
877
|
-
}
|
878
|
-
],
|
879
|
-
"stateMutability": "view",
|
880
|
-
"type": "function"
|
881
|
-
},
|
882
|
-
{
|
883
|
-
"inputs": [],
|
884
|
-
"name": "getRoleCount",
|
885
|
-
"outputs": [
|
426
|
+
"indexed": false,
|
427
|
+
"internalType": "address",
|
428
|
+
"name": "target",
|
429
|
+
"type": "address"
|
430
|
+
},
|
886
431
|
{
|
887
|
-
"
|
888
|
-
"
|
889
|
-
"
|
432
|
+
"indexed": false,
|
433
|
+
"internalType": "bytes4[]",
|
434
|
+
"name": "selectors",
|
435
|
+
"type": "bytes4[]"
|
436
|
+
},
|
437
|
+
{
|
438
|
+
"indexed": false,
|
439
|
+
"internalType": "RoleId",
|
440
|
+
"name": "roleId",
|
441
|
+
"type": "uint64"
|
890
442
|
}
|
891
443
|
],
|
892
|
-
"
|
893
|
-
"type": "
|
444
|
+
"name": "LogInstanceCustomTargetFunctionRoleSet",
|
445
|
+
"type": "event"
|
894
446
|
},
|
895
447
|
{
|
448
|
+
"anonymous": false,
|
896
449
|
"inputs": [
|
897
450
|
{
|
898
|
-
"
|
899
|
-
"
|
900
|
-
"
|
451
|
+
"indexed": false,
|
452
|
+
"internalType": "address",
|
453
|
+
"name": "target",
|
454
|
+
"type": "address"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"indexed": false,
|
458
|
+
"internalType": "bool",
|
459
|
+
"name": "locked",
|
460
|
+
"type": "bool"
|
901
461
|
}
|
902
462
|
],
|
903
|
-
"name": "
|
463
|
+
"name": "LogInstanceTargetLocked",
|
464
|
+
"type": "event"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"inputs": [],
|
468
|
+
"name": "authority",
|
904
469
|
"outputs": [
|
905
470
|
{
|
906
|
-
"internalType": "
|
907
|
-
"name": "
|
908
|
-
"type": "
|
471
|
+
"internalType": "address",
|
472
|
+
"name": "",
|
473
|
+
"type": "address"
|
909
474
|
}
|
910
475
|
],
|
911
|
-
"stateMutability": "
|
476
|
+
"stateMutability": "view",
|
912
477
|
"type": "function"
|
913
478
|
},
|
914
479
|
{
|
915
480
|
"inputs": [
|
481
|
+
{
|
482
|
+
"internalType": "address",
|
483
|
+
"name": "target",
|
484
|
+
"type": "address"
|
485
|
+
},
|
916
486
|
{
|
917
487
|
"internalType": "RoleId",
|
918
|
-
"name": "
|
919
|
-
"type": "
|
920
|
-
}
|
921
|
-
],
|
922
|
-
"name": "getRoleInfo",
|
923
|
-
"outputs": [
|
488
|
+
"name": "roleId",
|
489
|
+
"type": "uint64"
|
490
|
+
},
|
924
491
|
{
|
925
492
|
"components": [
|
926
493
|
{
|
927
|
-
"internalType": "
|
928
|
-
"name": "
|
929
|
-
"type": "
|
494
|
+
"internalType": "Str",
|
495
|
+
"name": "name",
|
496
|
+
"type": "bytes32"
|
930
497
|
},
|
931
498
|
{
|
932
|
-
"internalType": "
|
933
|
-
"name": "
|
934
|
-
"type": "
|
499
|
+
"internalType": "Selector",
|
500
|
+
"name": "selector",
|
501
|
+
"type": "bytes4"
|
935
502
|
},
|
936
503
|
{
|
937
|
-
"internalType": "
|
938
|
-
"name": "
|
939
|
-
"type": "
|
504
|
+
"internalType": "Timestamp",
|
505
|
+
"name": "createdAt",
|
506
|
+
"type": "uint40"
|
940
507
|
}
|
941
508
|
],
|
942
|
-
"internalType": "struct IAccess.
|
943
|
-
"name": "
|
944
|
-
"type": "tuple"
|
509
|
+
"internalType": "struct IAccess.FunctionInfo[]",
|
510
|
+
"name": "functions",
|
511
|
+
"type": "tuple[]"
|
945
512
|
}
|
946
513
|
],
|
947
|
-
"
|
514
|
+
"name": "authorizeFunctions",
|
515
|
+
"outputs": [],
|
516
|
+
"stateMutability": "nonpayable",
|
948
517
|
"type": "function"
|
949
518
|
},
|
950
519
|
{
|
951
520
|
"inputs": [
|
521
|
+
{
|
522
|
+
"internalType": "string",
|
523
|
+
"name": "roleName",
|
524
|
+
"type": "string"
|
525
|
+
},
|
952
526
|
{
|
953
527
|
"internalType": "RoleId",
|
954
|
-
"name": "
|
955
|
-
"type": "
|
528
|
+
"name": "adminRoleId",
|
529
|
+
"type": "uint64"
|
956
530
|
},
|
957
531
|
{
|
958
|
-
"internalType": "
|
959
|
-
"name": "
|
960
|
-
"type": "
|
532
|
+
"internalType": "uint32",
|
533
|
+
"name": "maxMemberCount",
|
534
|
+
"type": "uint32"
|
961
535
|
}
|
962
536
|
],
|
963
|
-
"name": "
|
537
|
+
"name": "createRole",
|
964
538
|
"outputs": [
|
965
|
-
{
|
966
|
-
"internalType": "address",
|
967
|
-
"name": "roleMember",
|
968
|
-
"type": "address"
|
969
|
-
}
|
970
|
-
],
|
971
|
-
"stateMutability": "view",
|
972
|
-
"type": "function"
|
973
|
-
},
|
974
|
-
{
|
975
|
-
"inputs": [
|
976
539
|
{
|
977
540
|
"internalType": "RoleId",
|
978
|
-
"name": "
|
979
|
-
"type": "
|
980
|
-
}
|
981
|
-
],
|
982
|
-
"name": "getRoleMemberCount",
|
983
|
-
"outputs": [
|
984
|
-
{
|
985
|
-
"internalType": "uint256",
|
986
|
-
"name": "roleMembers",
|
987
|
-
"type": "uint256"
|
541
|
+
"name": "roleId",
|
542
|
+
"type": "uint64"
|
988
543
|
}
|
989
544
|
],
|
990
|
-
"stateMutability": "
|
545
|
+
"stateMutability": "nonpayable",
|
991
546
|
"type": "function"
|
992
547
|
},
|
993
548
|
{
|
994
549
|
"inputs": [
|
995
550
|
{
|
996
|
-
"internalType": "
|
997
|
-
"name": "
|
998
|
-
"type": "
|
551
|
+
"internalType": "address",
|
552
|
+
"name": "target",
|
553
|
+
"type": "address"
|
554
|
+
},
|
555
|
+
{
|
556
|
+
"internalType": "string",
|
557
|
+
"name": "name",
|
558
|
+
"type": "string"
|
999
559
|
}
|
1000
560
|
],
|
1001
|
-
"name": "
|
561
|
+
"name": "createTarget",
|
1002
562
|
"outputs": [
|
1003
563
|
{
|
1004
|
-
"internalType": "
|
1005
|
-
"name": "
|
1006
|
-
"type": "
|
564
|
+
"internalType": "RoleId",
|
565
|
+
"name": "contractRoleId",
|
566
|
+
"type": "uint64"
|
1007
567
|
}
|
1008
568
|
],
|
1009
|
-
"stateMutability": "
|
569
|
+
"stateMutability": "nonpayable",
|
1010
570
|
"type": "function"
|
1011
571
|
},
|
1012
572
|
{
|
1013
|
-
"inputs": [
|
1014
|
-
|
1015
|
-
"internalType": "NftId",
|
1016
|
-
"name": "componentNftId",
|
1017
|
-
"type": "uint96"
|
1018
|
-
}
|
1019
|
-
],
|
1020
|
-
"name": "getTokenHandler",
|
573
|
+
"inputs": [],
|
574
|
+
"name": "getBundleSet",
|
1021
575
|
"outputs": [
|
1022
576
|
{
|
1023
|
-
"internalType": "contract
|
1024
|
-
"name": "
|
577
|
+
"internalType": "contract BundleSet",
|
578
|
+
"name": "",
|
1025
579
|
"type": "address"
|
1026
580
|
}
|
1027
581
|
],
|
@@ -1029,137 +583,49 @@
|
|
1029
583
|
"type": "function"
|
1030
584
|
},
|
1031
585
|
{
|
1032
|
-
"inputs": [
|
1033
|
-
|
1034
|
-
"internalType": "NftId",
|
1035
|
-
"name": "productNftId",
|
1036
|
-
"type": "uint96"
|
1037
|
-
}
|
1038
|
-
],
|
1039
|
-
"name": "getTreasuryInfo",
|
586
|
+
"inputs": [],
|
587
|
+
"name": "getInitialInfo",
|
1040
588
|
"outputs": [
|
1041
589
|
{
|
1042
590
|
"components": [
|
1043
591
|
{
|
1044
592
|
"internalType": "NftId",
|
1045
|
-
"name": "
|
593
|
+
"name": "nftId",
|
1046
594
|
"type": "uint96"
|
1047
595
|
},
|
1048
596
|
{
|
1049
597
|
"internalType": "NftId",
|
1050
|
-
"name": "
|
598
|
+
"name": "parentNftId",
|
1051
599
|
"type": "uint96"
|
1052
600
|
},
|
1053
601
|
{
|
1054
|
-
"internalType": "
|
1055
|
-
"name": "
|
1056
|
-
"type": "
|
1057
|
-
},
|
1058
|
-
{
|
1059
|
-
"components": [
|
1060
|
-
{
|
1061
|
-
"internalType": "UFixed",
|
1062
|
-
"name": "fractionalFee",
|
1063
|
-
"type": "uint256"
|
1064
|
-
},
|
1065
|
-
{
|
1066
|
-
"internalType": "uint256",
|
1067
|
-
"name": "fixedFee",
|
1068
|
-
"type": "uint256"
|
1069
|
-
}
|
1070
|
-
],
|
1071
|
-
"internalType": "struct Fee",
|
1072
|
-
"name": "productFee",
|
1073
|
-
"type": "tuple"
|
1074
|
-
},
|
1075
|
-
{
|
1076
|
-
"components": [
|
1077
|
-
{
|
1078
|
-
"internalType": "UFixed",
|
1079
|
-
"name": "fractionalFee",
|
1080
|
-
"type": "uint256"
|
1081
|
-
},
|
1082
|
-
{
|
1083
|
-
"internalType": "uint256",
|
1084
|
-
"name": "fixedFee",
|
1085
|
-
"type": "uint256"
|
1086
|
-
}
|
1087
|
-
],
|
1088
|
-
"internalType": "struct Fee",
|
1089
|
-
"name": "processingFee",
|
1090
|
-
"type": "tuple"
|
602
|
+
"internalType": "ObjectType",
|
603
|
+
"name": "objectType",
|
604
|
+
"type": "uint8"
|
1091
605
|
},
|
1092
606
|
{
|
1093
|
-
"
|
1094
|
-
|
1095
|
-
|
1096
|
-
"name": "fractionalFee",
|
1097
|
-
"type": "uint256"
|
1098
|
-
},
|
1099
|
-
{
|
1100
|
-
"internalType": "uint256",
|
1101
|
-
"name": "fixedFee",
|
1102
|
-
"type": "uint256"
|
1103
|
-
}
|
1104
|
-
],
|
1105
|
-
"internalType": "struct Fee",
|
1106
|
-
"name": "poolFee",
|
1107
|
-
"type": "tuple"
|
607
|
+
"internalType": "bool",
|
608
|
+
"name": "isInterceptor",
|
609
|
+
"type": "bool"
|
1108
610
|
},
|
1109
611
|
{
|
1110
|
-
"
|
1111
|
-
|
1112
|
-
|
1113
|
-
"name": "fractionalFee",
|
1114
|
-
"type": "uint256"
|
1115
|
-
},
|
1116
|
-
{
|
1117
|
-
"internalType": "uint256",
|
1118
|
-
"name": "fixedFee",
|
1119
|
-
"type": "uint256"
|
1120
|
-
}
|
1121
|
-
],
|
1122
|
-
"internalType": "struct Fee",
|
1123
|
-
"name": "stakingFee",
|
1124
|
-
"type": "tuple"
|
612
|
+
"internalType": "address",
|
613
|
+
"name": "objectAddress",
|
614
|
+
"type": "address"
|
1125
615
|
},
|
1126
616
|
{
|
1127
|
-
"
|
1128
|
-
|
1129
|
-
|
1130
|
-
"name": "fractionalFee",
|
1131
|
-
"type": "uint256"
|
1132
|
-
},
|
1133
|
-
{
|
1134
|
-
"internalType": "uint256",
|
1135
|
-
"name": "fixedFee",
|
1136
|
-
"type": "uint256"
|
1137
|
-
}
|
1138
|
-
],
|
1139
|
-
"internalType": "struct Fee",
|
1140
|
-
"name": "performanceFee",
|
1141
|
-
"type": "tuple"
|
617
|
+
"internalType": "address",
|
618
|
+
"name": "initialOwner",
|
619
|
+
"type": "address"
|
1142
620
|
},
|
1143
621
|
{
|
1144
|
-
"
|
1145
|
-
|
1146
|
-
|
1147
|
-
"name": "fractionalFee",
|
1148
|
-
"type": "uint256"
|
1149
|
-
},
|
1150
|
-
{
|
1151
|
-
"internalType": "uint256",
|
1152
|
-
"name": "fixedFee",
|
1153
|
-
"type": "uint256"
|
1154
|
-
}
|
1155
|
-
],
|
1156
|
-
"internalType": "struct Fee",
|
1157
|
-
"name": "distributionFee",
|
1158
|
-
"type": "tuple"
|
622
|
+
"internalType": "bytes",
|
623
|
+
"name": "data",
|
624
|
+
"type": "bytes"
|
1159
625
|
}
|
1160
626
|
],
|
1161
|
-
"internalType": "struct
|
1162
|
-
"name": "
|
627
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
628
|
+
"name": "",
|
1163
629
|
"type": "tuple"
|
1164
630
|
}
|
1165
631
|
],
|
@@ -1168,87 +634,83 @@
|
|
1168
634
|
},
|
1169
635
|
{
|
1170
636
|
"inputs": [],
|
1171
|
-
"name": "
|
637
|
+
"name": "getInstanceAdmin",
|
1172
638
|
"outputs": [
|
1173
639
|
{
|
1174
|
-
"internalType": "
|
1175
|
-
"name": "
|
1176
|
-
"type": "
|
640
|
+
"internalType": "contract InstanceAdmin",
|
641
|
+
"name": "",
|
642
|
+
"type": "address"
|
1177
643
|
}
|
1178
644
|
],
|
1179
|
-
"stateMutability": "
|
645
|
+
"stateMutability": "view",
|
1180
646
|
"type": "function"
|
1181
647
|
},
|
1182
648
|
{
|
1183
|
-
"inputs": [
|
1184
|
-
|
1185
|
-
"internalType": "uint256",
|
1186
|
-
"name": "a",
|
1187
|
-
"type": "uint256"
|
1188
|
-
},
|
1189
|
-
{
|
1190
|
-
"internalType": "int8",
|
1191
|
-
"name": "exp",
|
1192
|
-
"type": "int8"
|
1193
|
-
}
|
1194
|
-
],
|
1195
|
-
"name": "getUFixed",
|
649
|
+
"inputs": [],
|
650
|
+
"name": "getInstanceReader",
|
1196
651
|
"outputs": [
|
1197
652
|
{
|
1198
|
-
"internalType": "
|
653
|
+
"internalType": "contract InstanceReader",
|
1199
654
|
"name": "",
|
1200
|
-
"type": "
|
655
|
+
"type": "address"
|
1201
656
|
}
|
1202
657
|
],
|
1203
|
-
"stateMutability": "
|
658
|
+
"stateMutability": "view",
|
1204
659
|
"type": "function"
|
1205
660
|
},
|
1206
661
|
{
|
1207
|
-
"inputs": [
|
662
|
+
"inputs": [],
|
663
|
+
"name": "getInstanceStore",
|
664
|
+
"outputs": [
|
1208
665
|
{
|
1209
|
-
"internalType": "
|
1210
|
-
"name": "
|
1211
|
-
"type": "
|
666
|
+
"internalType": "contract InstanceStore",
|
667
|
+
"name": "",
|
668
|
+
"type": "address"
|
1212
669
|
}
|
1213
670
|
],
|
1214
|
-
"
|
671
|
+
"stateMutability": "view",
|
672
|
+
"type": "function"
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"inputs": [],
|
676
|
+
"name": "getNftId",
|
1215
677
|
"outputs": [
|
1216
678
|
{
|
1217
|
-
"internalType": "
|
679
|
+
"internalType": "NftId",
|
1218
680
|
"name": "",
|
1219
|
-
"type": "
|
681
|
+
"type": "uint96"
|
1220
682
|
}
|
1221
683
|
],
|
1222
|
-
"stateMutability": "
|
684
|
+
"stateMutability": "view",
|
1223
685
|
"type": "function"
|
1224
686
|
},
|
1225
687
|
{
|
1226
688
|
"inputs": [],
|
1227
|
-
"name": "
|
689
|
+
"name": "getOwner",
|
1228
690
|
"outputs": [
|
1229
691
|
{
|
1230
|
-
"internalType": "
|
692
|
+
"internalType": "address",
|
1231
693
|
"name": "",
|
1232
|
-
"type": "
|
694
|
+
"type": "address"
|
1233
695
|
}
|
1234
696
|
],
|
1235
|
-
"stateMutability": "
|
697
|
+
"stateMutability": "view",
|
1236
698
|
"type": "function"
|
1237
699
|
},
|
1238
700
|
{
|
1239
701
|
"inputs": [
|
1240
702
|
{
|
1241
703
|
"internalType": "uint256",
|
1242
|
-
"name": "
|
704
|
+
"name": "idx",
|
1243
705
|
"type": "uint256"
|
1244
706
|
}
|
1245
707
|
],
|
1246
|
-
"name": "
|
708
|
+
"name": "getProductNftId",
|
1247
709
|
"outputs": [
|
1248
710
|
{
|
1249
|
-
"internalType": "
|
1250
|
-
"name": "
|
1251
|
-
"type": "
|
711
|
+
"internalType": "NftId",
|
712
|
+
"name": "productNftId",
|
713
|
+
"type": "uint96"
|
1252
714
|
}
|
1253
715
|
],
|
1254
716
|
"stateMutability": "view",
|
@@ -1256,58 +718,25 @@
|
|
1256
718
|
},
|
1257
719
|
{
|
1258
720
|
"inputs": [],
|
1259
|
-
"name": "
|
721
|
+
"name": "getRegistry",
|
1260
722
|
"outputs": [
|
1261
723
|
{
|
1262
|
-
"internalType": "
|
1263
|
-
"name": "
|
1264
|
-
"type": "
|
724
|
+
"internalType": "contract IRegistry",
|
725
|
+
"name": "",
|
726
|
+
"type": "address"
|
1265
727
|
}
|
1266
728
|
],
|
1267
729
|
"stateMutability": "view",
|
1268
730
|
"type": "function"
|
1269
731
|
},
|
1270
732
|
{
|
1271
|
-
"inputs": [
|
1272
|
-
|
1273
|
-
"internalType": "Version",
|
1274
|
-
"name": "version",
|
1275
|
-
"type": "uint24"
|
1276
|
-
}
|
1277
|
-
],
|
1278
|
-
"name": "getVersionInfo",
|
733
|
+
"inputs": [],
|
734
|
+
"name": "getRelease",
|
1279
735
|
"outputs": [
|
1280
736
|
{
|
1281
|
-
"
|
1282
|
-
|
1283
|
-
|
1284
|
-
"name": "version",
|
1285
|
-
"type": "uint24"
|
1286
|
-
},
|
1287
|
-
{
|
1288
|
-
"internalType": "address",
|
1289
|
-
"name": "implementation",
|
1290
|
-
"type": "address"
|
1291
|
-
},
|
1292
|
-
{
|
1293
|
-
"internalType": "address",
|
1294
|
-
"name": "activatedBy",
|
1295
|
-
"type": "address"
|
1296
|
-
},
|
1297
|
-
{
|
1298
|
-
"internalType": "Timestamp",
|
1299
|
-
"name": "activatedAt",
|
1300
|
-
"type": "uint40"
|
1301
|
-
},
|
1302
|
-
{
|
1303
|
-
"internalType": "Blocknumber",
|
1304
|
-
"name": "activatedIn",
|
1305
|
-
"type": "uint32"
|
1306
|
-
}
|
1307
|
-
],
|
1308
|
-
"internalType": "struct IVersionable.VersionInfo",
|
1309
|
-
"name": "versionInfo",
|
1310
|
-
"type": "tuple"
|
737
|
+
"internalType": "VersionPart",
|
738
|
+
"name": "release",
|
739
|
+
"type": "uint8"
|
1311
740
|
}
|
1312
741
|
],
|
1313
742
|
"stateMutability": "view",
|
@@ -1315,24 +744,12 @@
|
|
1315
744
|
},
|
1316
745
|
{
|
1317
746
|
"inputs": [],
|
1318
|
-
"name": "
|
747
|
+
"name": "getRiskSet",
|
1319
748
|
"outputs": [
|
1320
749
|
{
|
1321
|
-
"
|
1322
|
-
|
1323
|
-
|
1324
|
-
"name": "fractionalFee",
|
1325
|
-
"type": "uint256"
|
1326
|
-
},
|
1327
|
-
{
|
1328
|
-
"internalType": "uint256",
|
1329
|
-
"name": "fixedFee",
|
1330
|
-
"type": "uint256"
|
1331
|
-
}
|
1332
|
-
],
|
1333
|
-
"internalType": "struct Fee",
|
1334
|
-
"name": "fee",
|
1335
|
-
"type": "tuple"
|
750
|
+
"internalType": "contract RiskSet",
|
751
|
+
"name": "",
|
752
|
+
"type": "address"
|
1336
753
|
}
|
1337
754
|
],
|
1338
755
|
"stateMutability": "view",
|
@@ -1342,12 +759,12 @@
|
|
1342
759
|
"inputs": [
|
1343
760
|
{
|
1344
761
|
"internalType": "RoleId",
|
1345
|
-
"name": "
|
1346
|
-
"type": "
|
762
|
+
"name": "roleId",
|
763
|
+
"type": "uint64"
|
1347
764
|
},
|
1348
765
|
{
|
1349
766
|
"internalType": "address",
|
1350
|
-
"name": "
|
767
|
+
"name": "account",
|
1351
768
|
"type": "address"
|
1352
769
|
}
|
1353
770
|
],
|
@@ -1357,23 +774,12 @@
|
|
1357
774
|
"type": "function"
|
1358
775
|
},
|
1359
776
|
{
|
1360
|
-
"inputs": [
|
1361
|
-
|
1362
|
-
"internalType": "RoleId",
|
1363
|
-
"name": "role",
|
1364
|
-
"type": "bytes8"
|
1365
|
-
},
|
1366
|
-
{
|
1367
|
-
"internalType": "address",
|
1368
|
-
"name": "member",
|
1369
|
-
"type": "address"
|
1370
|
-
}
|
1371
|
-
],
|
1372
|
-
"name": "hasRole",
|
777
|
+
"inputs": [],
|
778
|
+
"name": "isActive",
|
1373
779
|
"outputs": [
|
1374
780
|
{
|
1375
781
|
"internalType": "bool",
|
1376
|
-
"name": "",
|
782
|
+
"name": "active",
|
1377
783
|
"type": "bool"
|
1378
784
|
}
|
1379
785
|
],
|
@@ -1381,18 +787,25 @@
|
|
1381
787
|
"type": "function"
|
1382
788
|
},
|
1383
789
|
{
|
1384
|
-
"inputs": [
|
790
|
+
"inputs": [],
|
791
|
+
"name": "isConsumingScheduledOp",
|
792
|
+
"outputs": [
|
1385
793
|
{
|
1386
|
-
"internalType": "
|
1387
|
-
"name": "
|
1388
|
-
"type": "
|
794
|
+
"internalType": "bytes4",
|
795
|
+
"name": "",
|
796
|
+
"type": "bytes4"
|
1389
797
|
}
|
1390
798
|
],
|
1391
|
-
"
|
799
|
+
"stateMutability": "view",
|
800
|
+
"type": "function"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"inputs": [],
|
804
|
+
"name": "isInstanceLocked",
|
1392
805
|
"outputs": [
|
1393
806
|
{
|
1394
807
|
"internalType": "bool",
|
1395
|
-
"name": "
|
808
|
+
"name": "isLocked",
|
1396
809
|
"type": "bool"
|
1397
810
|
}
|
1398
811
|
],
|
@@ -1402,16 +815,16 @@
|
|
1402
815
|
{
|
1403
816
|
"inputs": [
|
1404
817
|
{
|
1405
|
-
"internalType": "
|
1406
|
-
"name": "
|
1407
|
-
"type": "
|
818
|
+
"internalType": "address",
|
819
|
+
"name": "target",
|
820
|
+
"type": "address"
|
1408
821
|
}
|
1409
822
|
],
|
1410
|
-
"name": "
|
823
|
+
"name": "isTargetLocked",
|
1411
824
|
"outputs": [
|
1412
825
|
{
|
1413
826
|
"internalType": "bool",
|
1414
|
-
"name": "",
|
827
|
+
"name": "isLocked",
|
1415
828
|
"type": "bool"
|
1416
829
|
}
|
1417
830
|
],
|
@@ -1420,82 +833,52 @@
|
|
1420
833
|
},
|
1421
834
|
{
|
1422
835
|
"inputs": [],
|
1423
|
-
"name": "
|
836
|
+
"name": "isTokenRegistryDisabled",
|
1424
837
|
"outputs": [
|
1425
838
|
{
|
1426
|
-
"internalType": "
|
1427
|
-
"name": "
|
1428
|
-
"type": "
|
1429
|
-
}
|
1430
|
-
],
|
1431
|
-
"stateMutability": "nonpayable",
|
1432
|
-
"type": "function"
|
1433
|
-
},
|
1434
|
-
{
|
1435
|
-
"inputs": [
|
1436
|
-
{
|
1437
|
-
"internalType": "NftId",
|
1438
|
-
"name": "nftId",
|
1439
|
-
"type": "uint96"
|
1440
|
-
},
|
1441
|
-
{
|
1442
|
-
"internalType": "contract IERC20Metadata",
|
1443
|
-
"name": "token",
|
1444
|
-
"type": "address"
|
1445
|
-
},
|
1446
|
-
{
|
1447
|
-
"internalType": "address",
|
1448
|
-
"name": "wallet",
|
1449
|
-
"type": "address"
|
839
|
+
"internalType": "bool",
|
840
|
+
"name": "",
|
841
|
+
"type": "bool"
|
1450
842
|
}
|
1451
843
|
],
|
1452
|
-
"
|
1453
|
-
"outputs": [],
|
1454
|
-
"stateMutability": "nonpayable",
|
844
|
+
"stateMutability": "view",
|
1455
845
|
"type": "function"
|
1456
846
|
},
|
1457
847
|
{
|
1458
|
-
"inputs": [
|
848
|
+
"inputs": [],
|
849
|
+
"name": "linkToRegisteredNftId",
|
850
|
+
"outputs": [
|
1459
851
|
{
|
1460
852
|
"internalType": "NftId",
|
1461
|
-
"name": "
|
853
|
+
"name": "",
|
1462
854
|
"type": "uint96"
|
1463
|
-
}
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
855
|
+
}
|
856
|
+
],
|
857
|
+
"stateMutability": "nonpayable",
|
858
|
+
"type": "function"
|
859
|
+
},
|
860
|
+
{
|
861
|
+
"inputs": [],
|
862
|
+
"name": "products",
|
863
|
+
"outputs": [
|
1469
864
|
{
|
1470
|
-
"internalType": "
|
1471
|
-
"name": "
|
865
|
+
"internalType": "uint256",
|
866
|
+
"name": "productCount",
|
1472
867
|
"type": "uint256"
|
1473
868
|
}
|
1474
869
|
],
|
1475
|
-
"
|
1476
|
-
"outputs": [],
|
1477
|
-
"stateMutability": "nonpayable",
|
870
|
+
"stateMutability": "view",
|
1478
871
|
"type": "function"
|
1479
872
|
},
|
1480
873
|
{
|
1481
874
|
"inputs": [
|
1482
875
|
{
|
1483
|
-
"internalType": "
|
1484
|
-
"name": "
|
1485
|
-
"type": "
|
1486
|
-
},
|
1487
|
-
{
|
1488
|
-
"internalType": "contract IPoolComponent",
|
1489
|
-
"name": "pool",
|
1490
|
-
"type": "address"
|
1491
|
-
},
|
1492
|
-
{
|
1493
|
-
"internalType": "contract IDistributionComponent",
|
1494
|
-
"name": "distribution",
|
1495
|
-
"type": "address"
|
876
|
+
"internalType": "Amount",
|
877
|
+
"name": "dipAmount",
|
878
|
+
"type": "uint96"
|
1496
879
|
}
|
1497
880
|
],
|
1498
|
-
"name": "
|
881
|
+
"name": "refillStakingRewardReserves",
|
1499
882
|
"outputs": [],
|
1500
883
|
"stateMutability": "nonpayable",
|
1501
884
|
"type": "function"
|
@@ -1503,22 +886,22 @@
|
|
1503
886
|
{
|
1504
887
|
"inputs": [
|
1505
888
|
{
|
1506
|
-
"internalType": "
|
1507
|
-
"name": "
|
1508
|
-
"type": "
|
889
|
+
"internalType": "address",
|
890
|
+
"name": "product",
|
891
|
+
"type": "address"
|
1509
892
|
},
|
1510
893
|
{
|
1511
|
-
"internalType": "
|
1512
|
-
"name": "
|
1513
|
-
"type": "
|
894
|
+
"internalType": "address",
|
895
|
+
"name": "token",
|
896
|
+
"type": "address"
|
1514
897
|
}
|
1515
898
|
],
|
1516
|
-
"name": "
|
899
|
+
"name": "registerProduct",
|
1517
900
|
"outputs": [
|
1518
901
|
{
|
1519
|
-
"internalType": "
|
1520
|
-
"name": "
|
1521
|
-
"type": "
|
902
|
+
"internalType": "NftId",
|
903
|
+
"name": "productNftId",
|
904
|
+
"type": "uint96"
|
1522
905
|
}
|
1523
906
|
],
|
1524
907
|
"stateMutability": "nonpayable",
|
@@ -1528,12 +911,12 @@
|
|
1528
911
|
"inputs": [
|
1529
912
|
{
|
1530
913
|
"internalType": "RoleId",
|
1531
|
-
"name": "
|
1532
|
-
"type": "
|
914
|
+
"name": "roleId",
|
915
|
+
"type": "uint64"
|
1533
916
|
},
|
1534
917
|
{
|
1535
918
|
"internalType": "address",
|
1536
|
-
"name": "
|
919
|
+
"name": "account",
|
1537
920
|
"type": "address"
|
1538
921
|
}
|
1539
922
|
],
|
@@ -1545,90 +928,38 @@
|
|
1545
928
|
{
|
1546
929
|
"inputs": [
|
1547
930
|
{
|
1548
|
-
"internalType": "
|
1549
|
-
"name": "
|
1550
|
-
"type": "
|
931
|
+
"internalType": "address",
|
932
|
+
"name": "",
|
933
|
+
"type": "address"
|
1551
934
|
}
|
1552
935
|
],
|
1553
|
-
"name": "
|
1554
|
-
"outputs": [
|
936
|
+
"name": "setAuthority",
|
937
|
+
"outputs": [],
|
938
|
+
"stateMutability": "nonpayable",
|
939
|
+
"type": "function"
|
940
|
+
},
|
941
|
+
{
|
942
|
+
"inputs": [
|
1555
943
|
{
|
1556
944
|
"internalType": "bool",
|
1557
|
-
"name": "",
|
945
|
+
"name": "locked",
|
1558
946
|
"type": "bool"
|
1559
947
|
}
|
1560
948
|
],
|
1561
|
-
"
|
949
|
+
"name": "setInstanceLocked",
|
950
|
+
"outputs": [],
|
951
|
+
"stateMutability": "nonpayable",
|
1562
952
|
"type": "function"
|
1563
953
|
},
|
1564
954
|
{
|
1565
955
|
"inputs": [
|
1566
956
|
{
|
1567
|
-
"internalType": "
|
1568
|
-
"name": "
|
1569
|
-
"type": "
|
1570
|
-
},
|
1571
|
-
{
|
1572
|
-
"components": [
|
1573
|
-
{
|
1574
|
-
"internalType": "NftId",
|
1575
|
-
"name": "poolNftId",
|
1576
|
-
"type": "uint96"
|
1577
|
-
},
|
1578
|
-
{
|
1579
|
-
"components": [
|
1580
|
-
{
|
1581
|
-
"internalType": "UFixed",
|
1582
|
-
"name": "fractionalFee",
|
1583
|
-
"type": "uint256"
|
1584
|
-
},
|
1585
|
-
{
|
1586
|
-
"internalType": "uint256",
|
1587
|
-
"name": "fixedFee",
|
1588
|
-
"type": "uint256"
|
1589
|
-
}
|
1590
|
-
],
|
1591
|
-
"internalType": "struct Fee",
|
1592
|
-
"name": "fee",
|
1593
|
-
"type": "tuple"
|
1594
|
-
},
|
1595
|
-
{
|
1596
|
-
"internalType": "bytes",
|
1597
|
-
"name": "filter",
|
1598
|
-
"type": "bytes"
|
1599
|
-
},
|
1600
|
-
{
|
1601
|
-
"internalType": "uint256",
|
1602
|
-
"name": "capitalAmount",
|
1603
|
-
"type": "uint256"
|
1604
|
-
},
|
1605
|
-
{
|
1606
|
-
"internalType": "uint256",
|
1607
|
-
"name": "lockedAmount",
|
1608
|
-
"type": "uint256"
|
1609
|
-
},
|
1610
|
-
{
|
1611
|
-
"internalType": "uint256",
|
1612
|
-
"name": "balanceAmount",
|
1613
|
-
"type": "uint256"
|
1614
|
-
},
|
1615
|
-
{
|
1616
|
-
"internalType": "Timestamp",
|
1617
|
-
"name": "expiredAt",
|
1618
|
-
"type": "uint40"
|
1619
|
-
},
|
1620
|
-
{
|
1621
|
-
"internalType": "Timestamp",
|
1622
|
-
"name": "closedAt",
|
1623
|
-
"type": "uint40"
|
1624
|
-
}
|
1625
|
-
],
|
1626
|
-
"internalType": "struct IBundle.BundleInfo",
|
1627
|
-
"name": "bundleInfo",
|
1628
|
-
"type": "tuple"
|
957
|
+
"internalType": "contract InstanceReader",
|
958
|
+
"name": "instanceReader",
|
959
|
+
"type": "address"
|
1629
960
|
}
|
1630
961
|
],
|
1631
|
-
"name": "
|
962
|
+
"name": "setInstanceReader",
|
1632
963
|
"outputs": [],
|
1633
964
|
"stateMutability": "nonpayable",
|
1634
965
|
"type": "function"
|
@@ -1636,89 +967,17 @@
|
|
1636
967
|
{
|
1637
968
|
"inputs": [
|
1638
969
|
{
|
1639
|
-
"internalType": "
|
1640
|
-
"name": "
|
1641
|
-
"type": "
|
970
|
+
"internalType": "RoleId",
|
971
|
+
"name": "roleId",
|
972
|
+
"type": "uint64"
|
1642
973
|
},
|
1643
974
|
{
|
1644
|
-
"
|
1645
|
-
|
1646
|
-
|
1647
|
-
"name": "productNftId",
|
1648
|
-
"type": "uint96"
|
1649
|
-
},
|
1650
|
-
{
|
1651
|
-
"internalType": "NftId",
|
1652
|
-
"name": "bundleNftId",
|
1653
|
-
"type": "uint96"
|
1654
|
-
},
|
1655
|
-
{
|
1656
|
-
"internalType": "ReferralId",
|
1657
|
-
"name": "referralId",
|
1658
|
-
"type": "bytes8"
|
1659
|
-
},
|
1660
|
-
{
|
1661
|
-
"internalType": "address",
|
1662
|
-
"name": "beneficiary",
|
1663
|
-
"type": "address"
|
1664
|
-
},
|
1665
|
-
{
|
1666
|
-
"internalType": "RiskId",
|
1667
|
-
"name": "riskId",
|
1668
|
-
"type": "bytes8"
|
1669
|
-
},
|
1670
|
-
{
|
1671
|
-
"internalType": "uint256",
|
1672
|
-
"name": "sumInsuredAmount",
|
1673
|
-
"type": "uint256"
|
1674
|
-
},
|
1675
|
-
{
|
1676
|
-
"internalType": "uint256",
|
1677
|
-
"name": "premiumAmount",
|
1678
|
-
"type": "uint256"
|
1679
|
-
},
|
1680
|
-
{
|
1681
|
-
"internalType": "uint256",
|
1682
|
-
"name": "premiumPaidAmount",
|
1683
|
-
"type": "uint256"
|
1684
|
-
},
|
1685
|
-
{
|
1686
|
-
"internalType": "uint256",
|
1687
|
-
"name": "lifetime",
|
1688
|
-
"type": "uint256"
|
1689
|
-
},
|
1690
|
-
{
|
1691
|
-
"internalType": "bytes",
|
1692
|
-
"name": "applicationData",
|
1693
|
-
"type": "bytes"
|
1694
|
-
},
|
1695
|
-
{
|
1696
|
-
"internalType": "bytes",
|
1697
|
-
"name": "policyData",
|
1698
|
-
"type": "bytes"
|
1699
|
-
},
|
1700
|
-
{
|
1701
|
-
"internalType": "Timestamp",
|
1702
|
-
"name": "activatedAt",
|
1703
|
-
"type": "uint40"
|
1704
|
-
},
|
1705
|
-
{
|
1706
|
-
"internalType": "Timestamp",
|
1707
|
-
"name": "expiredAt",
|
1708
|
-
"type": "uint40"
|
1709
|
-
},
|
1710
|
-
{
|
1711
|
-
"internalType": "Timestamp",
|
1712
|
-
"name": "closedAt",
|
1713
|
-
"type": "uint40"
|
1714
|
-
}
|
1715
|
-
],
|
1716
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
1717
|
-
"name": "info",
|
1718
|
-
"type": "tuple"
|
975
|
+
"internalType": "bool",
|
976
|
+
"name": "active",
|
977
|
+
"type": "bool"
|
1719
978
|
}
|
1720
979
|
],
|
1721
|
-
"name": "
|
980
|
+
"name": "setRoleActive",
|
1722
981
|
"outputs": [],
|
1723
982
|
"stateMutability": "nonpayable",
|
1724
983
|
"type": "function"
|
@@ -1726,29 +985,12 @@
|
|
1726
985
|
{
|
1727
986
|
"inputs": [
|
1728
987
|
{
|
1729
|
-
"internalType": "
|
1730
|
-
"name": "
|
1731
|
-
"type": "
|
1732
|
-
},
|
1733
|
-
{
|
1734
|
-
"components": [
|
1735
|
-
{
|
1736
|
-
"internalType": "NftId",
|
1737
|
-
"name": "productNftId",
|
1738
|
-
"type": "uint96"
|
1739
|
-
},
|
1740
|
-
{
|
1741
|
-
"internalType": "bytes",
|
1742
|
-
"name": "data",
|
1743
|
-
"type": "bytes"
|
1744
|
-
}
|
1745
|
-
],
|
1746
|
-
"internalType": "struct IRisk.RiskInfo",
|
1747
|
-
"name": "info",
|
1748
|
-
"type": "tuple"
|
988
|
+
"internalType": "Seconds",
|
989
|
+
"name": "stakeLockingPeriod",
|
990
|
+
"type": "uint40"
|
1749
991
|
}
|
1750
992
|
],
|
1751
|
-
"name": "
|
993
|
+
"name": "setStakingLockingPeriod",
|
1752
994
|
"outputs": [],
|
1753
995
|
"stateMutability": "nonpayable",
|
1754
996
|
"type": "function"
|
@@ -1756,17 +998,25 @@
|
|
1756
998
|
{
|
1757
999
|
"inputs": [
|
1758
1000
|
{
|
1759
|
-
"internalType": "
|
1760
|
-
"name": "
|
1761
|
-
"type": "
|
1762
|
-
}
|
1001
|
+
"internalType": "Amount",
|
1002
|
+
"name": "maxStakedAmount",
|
1003
|
+
"type": "uint96"
|
1004
|
+
}
|
1005
|
+
],
|
1006
|
+
"name": "setStakingMaxAmount",
|
1007
|
+
"outputs": [],
|
1008
|
+
"stateMutability": "nonpayable",
|
1009
|
+
"type": "function"
|
1010
|
+
},
|
1011
|
+
{
|
1012
|
+
"inputs": [
|
1763
1013
|
{
|
1764
|
-
"internalType": "
|
1765
|
-
"name": "
|
1766
|
-
"type": "
|
1014
|
+
"internalType": "UFixed",
|
1015
|
+
"name": "rewardRate",
|
1016
|
+
"type": "uint160"
|
1767
1017
|
}
|
1768
1018
|
],
|
1769
|
-
"name": "
|
1019
|
+
"name": "setStakingRewardRate",
|
1770
1020
|
"outputs": [],
|
1771
1021
|
"stateMutability": "nonpayable",
|
1772
1022
|
"type": "function"
|
@@ -1774,136 +1024,17 @@
|
|
1774
1024
|
{
|
1775
1025
|
"inputs": [
|
1776
1026
|
{
|
1777
|
-
"internalType": "
|
1778
|
-
"name": "
|
1779
|
-
"type": "
|
1027
|
+
"internalType": "address",
|
1028
|
+
"name": "target",
|
1029
|
+
"type": "address"
|
1780
1030
|
},
|
1781
1031
|
{
|
1782
|
-
"
|
1783
|
-
|
1784
|
-
|
1785
|
-
"name": "poolNftId",
|
1786
|
-
"type": "uint96"
|
1787
|
-
},
|
1788
|
-
{
|
1789
|
-
"internalType": "NftId",
|
1790
|
-
"name": "distributionNftId",
|
1791
|
-
"type": "uint96"
|
1792
|
-
},
|
1793
|
-
{
|
1794
|
-
"internalType": "contract IERC20Metadata",
|
1795
|
-
"name": "token",
|
1796
|
-
"type": "address"
|
1797
|
-
},
|
1798
|
-
{
|
1799
|
-
"components": [
|
1800
|
-
{
|
1801
|
-
"internalType": "UFixed",
|
1802
|
-
"name": "fractionalFee",
|
1803
|
-
"type": "uint256"
|
1804
|
-
},
|
1805
|
-
{
|
1806
|
-
"internalType": "uint256",
|
1807
|
-
"name": "fixedFee",
|
1808
|
-
"type": "uint256"
|
1809
|
-
}
|
1810
|
-
],
|
1811
|
-
"internalType": "struct Fee",
|
1812
|
-
"name": "productFee",
|
1813
|
-
"type": "tuple"
|
1814
|
-
},
|
1815
|
-
{
|
1816
|
-
"components": [
|
1817
|
-
{
|
1818
|
-
"internalType": "UFixed",
|
1819
|
-
"name": "fractionalFee",
|
1820
|
-
"type": "uint256"
|
1821
|
-
},
|
1822
|
-
{
|
1823
|
-
"internalType": "uint256",
|
1824
|
-
"name": "fixedFee",
|
1825
|
-
"type": "uint256"
|
1826
|
-
}
|
1827
|
-
],
|
1828
|
-
"internalType": "struct Fee",
|
1829
|
-
"name": "processingFee",
|
1830
|
-
"type": "tuple"
|
1831
|
-
},
|
1832
|
-
{
|
1833
|
-
"components": [
|
1834
|
-
{
|
1835
|
-
"internalType": "UFixed",
|
1836
|
-
"name": "fractionalFee",
|
1837
|
-
"type": "uint256"
|
1838
|
-
},
|
1839
|
-
{
|
1840
|
-
"internalType": "uint256",
|
1841
|
-
"name": "fixedFee",
|
1842
|
-
"type": "uint256"
|
1843
|
-
}
|
1844
|
-
],
|
1845
|
-
"internalType": "struct Fee",
|
1846
|
-
"name": "poolFee",
|
1847
|
-
"type": "tuple"
|
1848
|
-
},
|
1849
|
-
{
|
1850
|
-
"components": [
|
1851
|
-
{
|
1852
|
-
"internalType": "UFixed",
|
1853
|
-
"name": "fractionalFee",
|
1854
|
-
"type": "uint256"
|
1855
|
-
},
|
1856
|
-
{
|
1857
|
-
"internalType": "uint256",
|
1858
|
-
"name": "fixedFee",
|
1859
|
-
"type": "uint256"
|
1860
|
-
}
|
1861
|
-
],
|
1862
|
-
"internalType": "struct Fee",
|
1863
|
-
"name": "stakingFee",
|
1864
|
-
"type": "tuple"
|
1865
|
-
},
|
1866
|
-
{
|
1867
|
-
"components": [
|
1868
|
-
{
|
1869
|
-
"internalType": "UFixed",
|
1870
|
-
"name": "fractionalFee",
|
1871
|
-
"type": "uint256"
|
1872
|
-
},
|
1873
|
-
{
|
1874
|
-
"internalType": "uint256",
|
1875
|
-
"name": "fixedFee",
|
1876
|
-
"type": "uint256"
|
1877
|
-
}
|
1878
|
-
],
|
1879
|
-
"internalType": "struct Fee",
|
1880
|
-
"name": "performanceFee",
|
1881
|
-
"type": "tuple"
|
1882
|
-
},
|
1883
|
-
{
|
1884
|
-
"components": [
|
1885
|
-
{
|
1886
|
-
"internalType": "UFixed",
|
1887
|
-
"name": "fractionalFee",
|
1888
|
-
"type": "uint256"
|
1889
|
-
},
|
1890
|
-
{
|
1891
|
-
"internalType": "uint256",
|
1892
|
-
"name": "fixedFee",
|
1893
|
-
"type": "uint256"
|
1894
|
-
}
|
1895
|
-
],
|
1896
|
-
"internalType": "struct Fee",
|
1897
|
-
"name": "distributionFee",
|
1898
|
-
"type": "tuple"
|
1899
|
-
}
|
1900
|
-
],
|
1901
|
-
"internalType": "struct ITreasury.TreasuryInfo",
|
1902
|
-
"name": "info",
|
1903
|
-
"type": "tuple"
|
1032
|
+
"internalType": "bool",
|
1033
|
+
"name": "locked",
|
1034
|
+
"type": "bool"
|
1904
1035
|
}
|
1905
1036
|
],
|
1906
|
-
"name": "
|
1037
|
+
"name": "setTargetLocked",
|
1907
1038
|
"outputs": [],
|
1908
1039
|
"stateMutability": "nonpayable",
|
1909
1040
|
"type": "function"
|
@@ -1930,35 +1061,41 @@
|
|
1930
1061
|
{
|
1931
1062
|
"inputs": [
|
1932
1063
|
{
|
1933
|
-
"internalType": "
|
1934
|
-
"name": "
|
1935
|
-
"type": "
|
1064
|
+
"internalType": "address",
|
1065
|
+
"name": "target",
|
1066
|
+
"type": "address"
|
1936
1067
|
},
|
1937
1068
|
{
|
1938
|
-
"
|
1939
|
-
|
1940
|
-
|
1069
|
+
"components": [
|
1070
|
+
{
|
1071
|
+
"internalType": "Str",
|
1072
|
+
"name": "name",
|
1073
|
+
"type": "bytes32"
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
"internalType": "Selector",
|
1077
|
+
"name": "selector",
|
1078
|
+
"type": "bytes4"
|
1079
|
+
},
|
1080
|
+
{
|
1081
|
+
"internalType": "Timestamp",
|
1082
|
+
"name": "createdAt",
|
1083
|
+
"type": "uint40"
|
1084
|
+
}
|
1085
|
+
],
|
1086
|
+
"internalType": "struct IAccess.FunctionInfo[]",
|
1087
|
+
"name": "functions",
|
1088
|
+
"type": "tuple[]"
|
1941
1089
|
}
|
1942
1090
|
],
|
1943
|
-
"name": "
|
1091
|
+
"name": "unauthorizeFunctions",
|
1944
1092
|
"outputs": [],
|
1945
1093
|
"stateMutability": "nonpayable",
|
1946
1094
|
"type": "function"
|
1947
1095
|
},
|
1948
1096
|
{
|
1949
|
-
"inputs": [
|
1950
|
-
|
1951
|
-
"internalType": "NftId",
|
1952
|
-
"name": "nftId",
|
1953
|
-
"type": "uint96"
|
1954
|
-
},
|
1955
|
-
{
|
1956
|
-
"internalType": "StateId",
|
1957
|
-
"name": "state",
|
1958
|
-
"type": "uint8"
|
1959
|
-
}
|
1960
|
-
],
|
1961
|
-
"name": "updatePolicyState",
|
1097
|
+
"inputs": [],
|
1098
|
+
"name": "upgradeInstanceReader",
|
1962
1099
|
"outputs": [],
|
1963
1100
|
"stateMutability": "nonpayable",
|
1964
1101
|
"type": "function"
|
@@ -1966,36 +1103,19 @@
|
|
1966
1103
|
{
|
1967
1104
|
"inputs": [
|
1968
1105
|
{
|
1969
|
-
"internalType": "
|
1970
|
-
"name": "
|
1971
|
-
"type": "
|
1972
|
-
},
|
1973
|
-
{
|
1974
|
-
"internalType": "StateId",
|
1975
|
-
"name": "state",
|
1976
|
-
"type": "uint8"
|
1106
|
+
"internalType": "Amount",
|
1107
|
+
"name": "dipAmount",
|
1108
|
+
"type": "uint96"
|
1977
1109
|
}
|
1978
1110
|
],
|
1979
|
-
"name": "
|
1980
|
-
"outputs": [
|
1981
|
-
"stateMutability": "nonpayable",
|
1982
|
-
"type": "function"
|
1983
|
-
},
|
1984
|
-
{
|
1985
|
-
"inputs": [
|
1986
|
-
{
|
1987
|
-
"internalType": "Key32",
|
1988
|
-
"name": "key",
|
1989
|
-
"type": "bytes32"
|
1990
|
-
},
|
1111
|
+
"name": "withdrawStakingRewardReserves",
|
1112
|
+
"outputs": [
|
1991
1113
|
{
|
1992
|
-
"internalType": "
|
1993
|
-
"name": "
|
1994
|
-
"type": "
|
1114
|
+
"internalType": "Amount",
|
1115
|
+
"name": "newBalance",
|
1116
|
+
"type": "uint96"
|
1995
1117
|
}
|
1996
1118
|
],
|
1997
|
-
"name": "updateState",
|
1998
|
-
"outputs": [],
|
1999
1119
|
"stateMutability": "nonpayable",
|
2000
1120
|
"type": "function"
|
2001
1121
|
}
|