@etherisc/gif-next 0.0.2-e0ff180-567 → 0.0.2-e14821a-976
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +153 -22
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1088 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +803 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +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 +1416 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +803 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/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 +659 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1247 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +818 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +311 -328
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1835 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +943 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components/Component.sol/Component.json → distribution/IDistributionComponent.sol/IDistributionComponent.json} +276 -280
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +534 -340
- 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 +1487 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +818 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2056 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +818 -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 +1442 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +818 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1174 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1650 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +818 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2588 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +818 -0
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/IKeyValueStore.sol/IKeyValueStore.json → BaseStore.sol/BaseStore.json} +87 -184
- 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/IBaseStore.sol/IBaseStore.dbg.json +4 -0
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +304 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +573 -1775
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +530 -71
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +639 -2578
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2284 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +850 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1866 -636
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +571 -386
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +216 -172
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3039 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/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 +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +960 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +823 -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 +762 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → oracle/IOracleService.sol/IOracleService.json} +328 -225
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +876 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1055 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +823 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +357 -488
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +818 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1464 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +879 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1033 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → pool/IPoolComponent.sol/IPoolComponent.json} +349 -284
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1397 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +382 -418
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1807 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +879 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1062 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +803 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +492 -497
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +818 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1546 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +891 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IApplicationService.sol/IApplicationService.json} +334 -374
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1036 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +185 -155
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1006 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IRiskService.sol/IRiskService.json} +223 -164
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1417 -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 +867 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +958 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +827 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1120 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +886 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +787 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +499 -34
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +315 -109
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +987 -131
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2160 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1087 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +415 -262
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +227 -111
- 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 +696 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +360 -137
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +289 -188
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1577 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +875 -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/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +153 -138
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/{components/Distribution.sol/Distribution.json → shared/IComponentService.sol/IComponentService.json} +584 -738
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +697 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +38 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +163 -3
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +98 -5
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +66 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +798 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +57 -67
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +36 -73
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +160 -102
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +110 -111
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
- 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 +2747 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1147 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +3188 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +860 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +704 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1357 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +779 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +3097 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +679 -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 +251 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +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 +289 -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/{shared → upgradeability}/IVersionable.sol/IVersionable.json +11 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +669 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +11 -1
- package/contracts/accounting/AccountingService.sol +274 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +47 -0
- package/contracts/authorization/AccessAdmin.sol +780 -0
- package/contracts/authorization/AccessAdminLib.sol +396 -0
- package/contracts/authorization/AccessManagerCloneable.sol +158 -0
- package/contracts/authorization/Authorization.sol +169 -0
- package/contracts/authorization/IAccess.sol +67 -0
- package/contracts/authorization/IAccessAdmin.sol +144 -0
- package/contracts/authorization/IAuthorization.sol +26 -0
- package/contracts/authorization/IServiceAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +320 -0
- package/contracts/distribution/BasicDistribution.sol +140 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
- package/contracts/distribution/Distribution.sol +245 -0
- package/contracts/distribution/DistributionService.sol +465 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +45 -0
- package/contracts/distribution/IDistributionService.sol +115 -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 +437 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BaseStore.sol +93 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IBaseStore.sol +37 -0
- package/contracts/instance/IInstance.sol +131 -73
- package/contracts/instance/IInstanceService.sol +86 -39
- package/contracts/instance/Instance.sol +248 -224
- package/contracts/instance/InstanceAdmin.sol +379 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +275 -0
- package/contracts/instance/InstanceReader.sol +513 -192
- package/contracts/instance/InstanceService.sol +432 -394
- package/contracts/instance/InstanceServiceManager.sol +14 -29
- package/contracts/instance/InstanceStore.sol +323 -0
- package/contracts/instance/ProductStore.sol +290 -0
- package/contracts/instance/RiskSet.sol +126 -0
- package/contracts/instance/TargetNames.sol +10 -0
- package/contracts/instance/base/BalanceStore.sol +121 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +20 -0
- package/contracts/instance/base/ObjectLifecycle.sol +109 -0
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +9 -11
- package/contracts/instance/module/IComponents.sol +43 -24
- package/contracts/instance/module/IDistribution.sol +25 -12
- package/contracts/instance/module/IPolicy.sol +71 -38
- package/contracts/instance/module/IRisk.sol +6 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +44 -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 +152 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +161 -0
- package/contracts/pool/BasicPoolAuthorization.sol +81 -0
- package/contracts/pool/BundleService.sol +401 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +116 -0
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +167 -0
- package/contracts/pool/Pool.sol +331 -0
- package/contracts/pool/PoolLib.sol +341 -0
- package/contracts/pool/PoolService.sol +635 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +343 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
- package/contracts/product/BasicProduct.sol +48 -0
- package/contracts/product/BasicProductAuthorization.sol +63 -0
- package/contracts/product/ClaimService.sol +642 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
- package/contracts/{instance/service → product}/IApplicationService.sol +41 -35
- package/contracts/product/IClaimService.sol +136 -0
- package/contracts/product/IPolicyService.sol +102 -0
- package/contracts/product/IPricingService.sol +40 -0
- package/contracts/product/IProductComponent.sol +62 -0
- package/contracts/product/IRiskService.sol +48 -0
- package/contracts/product/PolicyService.sol +680 -0
- package/contracts/product/PolicyServiceLib.sol +139 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +318 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +491 -0
- package/contracts/product/RiskService.sol +189 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +79 -40
- package/contracts/registry/IRegistry.sol +104 -33
- package/contracts/registry/IRegistryService.sol +34 -40
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +469 -200
- package/contracts/registry/RegistryAdmin.sol +191 -0
- package/contracts/registry/RegistryAuthorization.sol +336 -0
- package/contracts/registry/RegistryService.sol +90 -131
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- package/contracts/registry/ReleaseAdmin.sol +195 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +525 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
- package/contracts/registry/TokenRegistry.sol +265 -64
- package/contracts/shared/Component.sol +210 -0
- package/contracts/shared/ComponentService.sol +705 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ContractLib.sol +312 -0
- package/contracts/shared/IComponent.sol +58 -0
- package/contracts/shared/IComponentService.sol +111 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
- package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
- package/contracts/shared/INftOwnable.sol +6 -2
- package/contracts/shared/IPolicyHolder.sol +23 -14
- package/contracts/shared/IRegisterable.sol +22 -1
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +12 -5
- package/contracts/shared/InitializableERC165.sol +49 -0
- package/contracts/shared/InstanceLinkedComponent.sol +192 -0
- package/contracts/shared/Lifecycle.sol +88 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +39 -30
- package/contracts/shared/PolicyHolder.sol +23 -41
- package/contracts/shared/Registerable.sol +54 -22
- package/contracts/shared/RegistryLinked.sol +11 -21
- package/contracts/shared/Service.sol +36 -41
- package/contracts/shared/TokenHandler.sol +322 -13
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +367 -0
- package/contracts/staking/IStakingService.sol +127 -0
- package/contracts/staking/ITargetLimitHandler.sol +17 -0
- package/contracts/staking/Staking.sol +797 -0
- package/contracts/staking/StakingLib.sol +195 -0
- package/contracts/staking/StakingManager.sol +53 -0
- package/contracts/staking/StakingReader.sol +171 -0
- package/contracts/staking/StakingService.sol +320 -0
- package/contracts/staking/StakingServiceManager.sol +46 -0
- package/contracts/staking/StakingStore.sol +1368 -0
- package/contracts/staking/TargetHandler.sol +132 -0
- package/contracts/staking/TargetManagerLib.sol +234 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +154 -0
- package/contracts/{types → type}/Blocknumber.sol +36 -13
- package/contracts/type/ChainId.sol +101 -0
- package/contracts/{types → type}/ClaimId.sol +31 -3
- package/contracts/{types → type}/Fee.sol +28 -26
- package/contracts/{types → type}/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/{types → type}/NftId.sol +21 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +307 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +2 -1
- 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 +120 -0
- package/contracts/type/Selector.sol +107 -0
- package/contracts/{types → type}/StateId.sol +47 -4
- package/contracts/type/String.sol +65 -0
- package/contracts/{types → type}/Timestamp.sol +23 -7
- package/contracts/type/UFixed.sol +263 -0
- package/contracts/{types → type}/Version.sol +58 -7
- package/contracts/{shared → upgradeability}/IVersionable.sol +4 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +118 -41
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +28 -0
- package/contracts/{shared → upgradeability}/Versionable.sol +9 -6
- package/package.json +12 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1330
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -237
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1039
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -475
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +0 -450
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1092
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1237
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/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 -267
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/Component.sol +0 -253
- package/contracts/components/Distribution.sol +0 -280
- package/contracts/components/IComponent.sol +0 -76
- package/contracts/components/IDistributionComponent.sol +0 -71
- package/contracts/components/IPoolComponent.sol +0 -113
- package/contracts/components/IProductComponent.sol +0 -40
- package/contracts/components/Pool.sol +0 -303
- package/contracts/components/Product.sol +0 -293
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/BundleManager.sol +0 -127
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -527
- package/contracts/instance/ObjectManager.sol +0 -82
- package/contracts/instance/base/ComponentService.sol +0 -121
- package/contracts/instance/base/IKeyValueStore.sol +0 -49
- package/contracts/instance/base/KeyValueStore.sol +0 -180
- package/contracts/instance/base/Lifecycle.sol +0 -109
- package/contracts/instance/module/IAccess.sol +0 -54
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -350
- package/contracts/instance/service/BundleService.sol +0 -431
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -435
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -93
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IDistributionService.sol +0 -99
- package/contracts/instance/service/IPolicyService.sol +0 -72
- package/contracts/instance/service/IPoolService.sol +0 -99
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -362
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -303
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -210
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -324
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/shared/ERC165.sol +0 -27
- package/contracts/shared/UpgradableProxyWithAdmin.sol +0 -16
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -25
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/Amount.sol +0 -60
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -157
- package/contracts/types/PayoutId.sol +0 -54
- package/contracts/types/RiskId.sol +0 -43
- package/contracts/types/RoleId.sol +0 -97
- package/contracts/types/Seconds.sol +0 -54
- package/contracts/types/UFixed.sol +0 -326
- /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -44,60 +44,192 @@
|
|
44
44
|
{
|
45
45
|
"inputs": [
|
46
46
|
{
|
47
|
-
"internalType": "
|
48
|
-
"name": "
|
49
|
-
"type": "
|
50
|
-
}
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "authority",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorAuthorityInvalid",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
51
57
|
{
|
52
|
-
"internalType": "
|
53
|
-
"name": "
|
54
|
-
"type": "
|
55
|
-
}
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "instanceBundleSet",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorInstanceBundleSetAlreadySet",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
56
68
|
{
|
57
|
-
"internalType": "
|
58
|
-
"name": "
|
59
|
-
"type": "
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "instanceAuthority",
|
71
|
+
"type": "address"
|
60
72
|
}
|
61
73
|
],
|
62
|
-
"name": "
|
74
|
+
"name": "ErrorInstanceBundleSetAuthorityMismatch",
|
63
75
|
"type": "error"
|
64
76
|
},
|
65
77
|
{
|
66
78
|
"inputs": [
|
67
79
|
{
|
68
|
-
"internalType": "
|
69
|
-
"name": "
|
70
|
-
"type": "
|
80
|
+
"internalType": "address",
|
81
|
+
"name": "instance",
|
82
|
+
"type": "address"
|
71
83
|
}
|
72
84
|
],
|
73
|
-
"name": "
|
85
|
+
"name": "ErrorInstanceBundleSetInstanceMismatch",
|
74
86
|
"type": "error"
|
75
87
|
},
|
76
88
|
{
|
77
89
|
"inputs": [
|
78
90
|
{
|
79
91
|
"internalType": "address",
|
80
|
-
"name": "
|
92
|
+
"name": "instanceAdmin",
|
81
93
|
"type": "address"
|
82
94
|
}
|
83
95
|
],
|
84
|
-
"name": "
|
96
|
+
"name": "ErrorInstanceInstanceAdminAlreadySet",
|
97
|
+
"type": "error"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"inputs": [
|
101
|
+
{
|
102
|
+
"internalType": "address",
|
103
|
+
"name": "instanceAuthority",
|
104
|
+
"type": "address"
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"name": "ErrorInstanceInstanceAdminAuthorityMismatch",
|
85
108
|
"type": "error"
|
86
109
|
},
|
87
110
|
{
|
88
111
|
"inputs": [],
|
89
|
-
"name": "
|
112
|
+
"name": "ErrorInstanceInstanceAdminZero",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
117
|
+
{
|
118
|
+
"internalType": "address",
|
119
|
+
"name": "instanceAuthority",
|
120
|
+
"type": "address"
|
121
|
+
}
|
122
|
+
],
|
123
|
+
"name": "ErrorInstanceInstanceReaderInstanceMismatch",
|
124
|
+
"type": "error"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"inputs": [
|
128
|
+
{
|
129
|
+
"internalType": "address",
|
130
|
+
"name": "instanceStore",
|
131
|
+
"type": "address"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
"name": "ErrorInstanceInstanceStoreAlreadySet",
|
135
|
+
"type": "error"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"inputs": [
|
139
|
+
{
|
140
|
+
"internalType": "address",
|
141
|
+
"name": "instanceAuthority",
|
142
|
+
"type": "address"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"name": "ErrorInstanceInstanceStoreAuthorityMismatch",
|
146
|
+
"type": "error"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"inputs": [
|
150
|
+
{
|
151
|
+
"internalType": "RoleId",
|
152
|
+
"name": "roleId",
|
153
|
+
"type": "uint64"
|
154
|
+
}
|
155
|
+
],
|
156
|
+
"name": "ErrorInstanceNotCustomRole",
|
90
157
|
"type": "error"
|
91
158
|
},
|
92
159
|
{
|
93
160
|
"inputs": [
|
161
|
+
{
|
162
|
+
"internalType": "RoleId",
|
163
|
+
"name": "roleId",
|
164
|
+
"type": "uint64"
|
165
|
+
},
|
94
166
|
{
|
95
167
|
"internalType": "address",
|
96
168
|
"name": "account",
|
97
169
|
"type": "address"
|
98
170
|
}
|
99
171
|
],
|
100
|
-
"name": "
|
172
|
+
"name": "ErrorInstanceNotRoleAdmin",
|
173
|
+
"type": "error"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"inputs": [
|
177
|
+
{
|
178
|
+
"internalType": "address",
|
179
|
+
"name": "instanceRiskSet",
|
180
|
+
"type": "address"
|
181
|
+
}
|
182
|
+
],
|
183
|
+
"name": "ErrorInstanceRiskSetAlreadySet",
|
184
|
+
"type": "error"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"inputs": [
|
188
|
+
{
|
189
|
+
"internalType": "address",
|
190
|
+
"name": "instanceAuthority",
|
191
|
+
"type": "address"
|
192
|
+
}
|
193
|
+
],
|
194
|
+
"name": "ErrorInstanceRiskSetAuthorityMismatch",
|
195
|
+
"type": "error"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"inputs": [
|
199
|
+
{
|
200
|
+
"internalType": "address",
|
201
|
+
"name": "instance",
|
202
|
+
"type": "address"
|
203
|
+
}
|
204
|
+
],
|
205
|
+
"name": "ErrorInstanceRiskSetInstanceMismatch",
|
206
|
+
"type": "error"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"inputs": [
|
210
|
+
{
|
211
|
+
"internalType": "NftId",
|
212
|
+
"name": "nftId",
|
213
|
+
"type": "uint96"
|
214
|
+
}
|
215
|
+
],
|
216
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
217
|
+
"type": "error"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"inputs": [
|
221
|
+
{
|
222
|
+
"internalType": "address",
|
223
|
+
"name": "contractAddress",
|
224
|
+
"type": "address"
|
225
|
+
}
|
226
|
+
],
|
227
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
228
|
+
"type": "error"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"inputs": [],
|
232
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
101
233
|
"type": "error"
|
102
234
|
},
|
103
235
|
{
|
@@ -109,11 +241,22 @@
|
|
109
241
|
},
|
110
242
|
{
|
111
243
|
"internalType": "ObjectType",
|
112
|
-
"name": "
|
244
|
+
"name": "expectedObjectType",
|
113
245
|
"type": "uint8"
|
114
246
|
}
|
115
247
|
],
|
116
|
-
"name": "
|
248
|
+
"name": "ErrorNftOwnableInvalidType",
|
249
|
+
"type": "error"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"inputs": [
|
253
|
+
{
|
254
|
+
"internalType": "address",
|
255
|
+
"name": "account",
|
256
|
+
"type": "address"
|
257
|
+
}
|
258
|
+
],
|
259
|
+
"name": "ErrorNftOwnableNotOwner",
|
117
260
|
"type": "error"
|
118
261
|
},
|
119
262
|
{
|
@@ -127,6 +270,11 @@
|
|
127
270
|
"name": "ErrorNotRegistry",
|
128
271
|
"type": "error"
|
129
272
|
},
|
273
|
+
{
|
274
|
+
"inputs": [],
|
275
|
+
"name": "ErrorRegisterableNotActive",
|
276
|
+
"type": "error"
|
277
|
+
},
|
130
278
|
{
|
131
279
|
"anonymous": false,
|
132
280
|
"inputs": [
|
@@ -145,36 +293,55 @@
|
|
145
293
|
"inputs": [
|
146
294
|
{
|
147
295
|
"indexed": false,
|
148
|
-
"internalType": "
|
149
|
-
"name": "
|
150
|
-
"type": "
|
296
|
+
"internalType": "RoleId",
|
297
|
+
"name": "roleId",
|
298
|
+
"type": "uint64"
|
151
299
|
},
|
152
300
|
{
|
153
301
|
"indexed": false,
|
154
|
-
"internalType": "
|
155
|
-
"name": "
|
156
|
-
"type": "
|
302
|
+
"internalType": "bool",
|
303
|
+
"name": "active",
|
304
|
+
"type": "bool"
|
157
305
|
},
|
158
306
|
{
|
159
307
|
"indexed": false,
|
160
|
-
"internalType": "
|
161
|
-
"name": "
|
162
|
-
"type": "
|
308
|
+
"internalType": "address",
|
309
|
+
"name": "caller",
|
310
|
+
"type": "address"
|
311
|
+
}
|
312
|
+
],
|
313
|
+
"name": "LogInstanceCustomRoleActiveSet",
|
314
|
+
"type": "event"
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"anonymous": false,
|
318
|
+
"inputs": [
|
319
|
+
{
|
320
|
+
"indexed": false,
|
321
|
+
"internalType": "RoleId",
|
322
|
+
"name": "roleId",
|
323
|
+
"type": "uint64"
|
163
324
|
},
|
164
325
|
{
|
165
326
|
"indexed": false,
|
166
|
-
"internalType": "
|
167
|
-
"name": "
|
168
|
-
"type": "
|
327
|
+
"internalType": "string",
|
328
|
+
"name": "roleName",
|
329
|
+
"type": "string"
|
169
330
|
},
|
170
331
|
{
|
171
332
|
"indexed": false,
|
172
|
-
"internalType": "
|
173
|
-
"name": "
|
174
|
-
"type": "
|
333
|
+
"internalType": "RoleId",
|
334
|
+
"name": "adminRoleId",
|
335
|
+
"type": "uint64"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"indexed": false,
|
339
|
+
"internalType": "uint32",
|
340
|
+
"name": "maxMemberCount",
|
341
|
+
"type": "uint32"
|
175
342
|
}
|
176
343
|
],
|
177
|
-
"name": "
|
344
|
+
"name": "LogInstanceCustomRoleCreated",
|
178
345
|
"type": "event"
|
179
346
|
},
|
180
347
|
{
|
@@ -182,42 +349,49 @@
|
|
182
349
|
"inputs": [
|
183
350
|
{
|
184
351
|
"indexed": false,
|
185
|
-
"internalType": "
|
186
|
-
"name": "
|
187
|
-
"type": "
|
188
|
-
},
|
189
|
-
{
|
190
|
-
"indexed": false,
|
191
|
-
"internalType": "KeyId",
|
192
|
-
"name": "keyId",
|
193
|
-
"type": "bytes31"
|
352
|
+
"internalType": "RoleId",
|
353
|
+
"name": "roleId",
|
354
|
+
"type": "uint64"
|
194
355
|
},
|
195
356
|
{
|
196
357
|
"indexed": false,
|
197
|
-
"internalType": "
|
198
|
-
"name": "
|
199
|
-
"type": "
|
358
|
+
"internalType": "address",
|
359
|
+
"name": "account",
|
360
|
+
"type": "address"
|
200
361
|
},
|
201
362
|
{
|
202
363
|
"indexed": false,
|
203
364
|
"internalType": "address",
|
204
|
-
"name": "
|
365
|
+
"name": "caller",
|
205
366
|
"type": "address"
|
367
|
+
}
|
368
|
+
],
|
369
|
+
"name": "LogInstanceCustomRoleGranted",
|
370
|
+
"type": "event"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"anonymous": false,
|
374
|
+
"inputs": [
|
375
|
+
{
|
376
|
+
"indexed": false,
|
377
|
+
"internalType": "RoleId",
|
378
|
+
"name": "roleId",
|
379
|
+
"type": "uint64"
|
206
380
|
},
|
207
381
|
{
|
208
382
|
"indexed": false,
|
209
383
|
"internalType": "address",
|
210
|
-
"name": "
|
384
|
+
"name": "account",
|
211
385
|
"type": "address"
|
212
386
|
},
|
213
387
|
{
|
214
388
|
"indexed": false,
|
215
|
-
"internalType": "
|
216
|
-
"name": "
|
217
|
-
"type": "
|
389
|
+
"internalType": "address",
|
390
|
+
"name": "caller",
|
391
|
+
"type": "address"
|
218
392
|
}
|
219
393
|
],
|
220
|
-
"name": "
|
394
|
+
"name": "LogInstanceCustomRoleRevoked",
|
221
395
|
"type": "event"
|
222
396
|
},
|
223
397
|
{
|
@@ -225,48 +399,87 @@
|
|
225
399
|
"inputs": [
|
226
400
|
{
|
227
401
|
"indexed": false,
|
228
|
-
"internalType": "
|
229
|
-
"name": "
|
230
|
-
"type": "
|
402
|
+
"internalType": "address",
|
403
|
+
"name": "target",
|
404
|
+
"type": "address"
|
231
405
|
},
|
232
406
|
{
|
233
407
|
"indexed": false,
|
234
|
-
"internalType": "
|
235
|
-
"name": "
|
236
|
-
"type": "
|
408
|
+
"internalType": "RoleId",
|
409
|
+
"name": "targetRoleId",
|
410
|
+
"type": "uint64"
|
237
411
|
},
|
238
412
|
{
|
239
413
|
"indexed": false,
|
240
|
-
"internalType": "
|
241
|
-
"name": "
|
242
|
-
"type": "
|
414
|
+
"internalType": "string",
|
415
|
+
"name": "name",
|
416
|
+
"type": "string"
|
417
|
+
}
|
418
|
+
],
|
419
|
+
"name": "LogInstanceCustomTargetCreated",
|
420
|
+
"type": "event"
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"anonymous": false,
|
424
|
+
"inputs": [
|
425
|
+
{
|
426
|
+
"indexed": false,
|
427
|
+
"internalType": "address",
|
428
|
+
"name": "target",
|
429
|
+
"type": "address"
|
243
430
|
},
|
244
431
|
{
|
245
432
|
"indexed": false,
|
246
|
-
"internalType": "
|
247
|
-
"name": "
|
248
|
-
"type": "
|
433
|
+
"internalType": "bytes4[]",
|
434
|
+
"name": "selectors",
|
435
|
+
"type": "bytes4[]"
|
249
436
|
},
|
437
|
+
{
|
438
|
+
"indexed": false,
|
439
|
+
"internalType": "RoleId",
|
440
|
+
"name": "roleId",
|
441
|
+
"type": "uint64"
|
442
|
+
}
|
443
|
+
],
|
444
|
+
"name": "LogInstanceCustomTargetFunctionRoleSet",
|
445
|
+
"type": "event"
|
446
|
+
},
|
447
|
+
{
|
448
|
+
"anonymous": false,
|
449
|
+
"inputs": [
|
250
450
|
{
|
251
451
|
"indexed": false,
|
252
452
|
"internalType": "address",
|
253
|
-
"name": "
|
453
|
+
"name": "target",
|
254
454
|
"type": "address"
|
255
455
|
},
|
256
456
|
{
|
257
457
|
"indexed": false,
|
258
|
-
"internalType": "
|
259
|
-
"name": "
|
260
|
-
"type": "
|
458
|
+
"internalType": "bool",
|
459
|
+
"name": "locked",
|
460
|
+
"type": "bool"
|
461
|
+
}
|
462
|
+
],
|
463
|
+
"name": "LogInstanceTargetLocked",
|
464
|
+
"type": "event"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"anonymous": false,
|
468
|
+
"inputs": [
|
469
|
+
{
|
470
|
+
"indexed": false,
|
471
|
+
"internalType": "NftId",
|
472
|
+
"name": "nftId",
|
473
|
+
"type": "uint96"
|
261
474
|
},
|
262
475
|
{
|
263
476
|
"indexed": false,
|
264
|
-
"internalType": "
|
265
|
-
"name": "
|
266
|
-
"type": "
|
477
|
+
"internalType": "address",
|
478
|
+
"name": "owner",
|
479
|
+
"type": "address"
|
267
480
|
}
|
268
481
|
],
|
269
|
-
"name": "
|
482
|
+
"name": "LogNftOwnableNftLinkedToAddress",
|
270
483
|
"type": "event"
|
271
484
|
},
|
272
485
|
{
|
@@ -285,99 +498,39 @@
|
|
285
498
|
{
|
286
499
|
"inputs": [
|
287
500
|
{
|
288
|
-
"internalType": "
|
289
|
-
"name": "
|
290
|
-
"type": "
|
501
|
+
"internalType": "address",
|
502
|
+
"name": "target",
|
503
|
+
"type": "address"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"internalType": "RoleId",
|
507
|
+
"name": "roleId",
|
508
|
+
"type": "uint64"
|
291
509
|
},
|
292
510
|
{
|
293
511
|
"components": [
|
294
512
|
{
|
295
|
-
"internalType": "
|
296
|
-
"name": "
|
297
|
-
"type": "
|
513
|
+
"internalType": "Str",
|
514
|
+
"name": "name",
|
515
|
+
"type": "bytes32"
|
298
516
|
},
|
299
517
|
{
|
300
|
-
"internalType": "
|
301
|
-
"name": "
|
302
|
-
"type": "
|
303
|
-
},
|
304
|
-
{
|
305
|
-
"internalType": "ReferralId",
|
306
|
-
"name": "referralId",
|
307
|
-
"type": "bytes8"
|
308
|
-
},
|
309
|
-
{
|
310
|
-
"internalType": "RiskId",
|
311
|
-
"name": "riskId",
|
312
|
-
"type": "bytes8"
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"internalType": "uint256",
|
316
|
-
"name": "sumInsuredAmount",
|
317
|
-
"type": "uint256"
|
318
|
-
},
|
319
|
-
{
|
320
|
-
"internalType": "uint256",
|
321
|
-
"name": "premiumAmount",
|
322
|
-
"type": "uint256"
|
323
|
-
},
|
324
|
-
{
|
325
|
-
"internalType": "uint256",
|
326
|
-
"name": "premiumPaidAmount",
|
327
|
-
"type": "uint256"
|
328
|
-
},
|
329
|
-
{
|
330
|
-
"internalType": "Seconds",
|
331
|
-
"name": "lifetime",
|
332
|
-
"type": "uint40"
|
333
|
-
},
|
334
|
-
{
|
335
|
-
"internalType": "bytes",
|
336
|
-
"name": "applicationData",
|
337
|
-
"type": "bytes"
|
338
|
-
},
|
339
|
-
{
|
340
|
-
"internalType": "bytes",
|
341
|
-
"name": "policyData",
|
342
|
-
"type": "bytes"
|
343
|
-
},
|
344
|
-
{
|
345
|
-
"internalType": "uint16",
|
346
|
-
"name": "claimsCount",
|
347
|
-
"type": "uint16"
|
348
|
-
},
|
349
|
-
{
|
350
|
-
"internalType": "uint16",
|
351
|
-
"name": "openClaimsCount",
|
352
|
-
"type": "uint16"
|
353
|
-
},
|
354
|
-
{
|
355
|
-
"internalType": "uint256",
|
356
|
-
"name": "payoutAmount",
|
357
|
-
"type": "uint256"
|
358
|
-
},
|
359
|
-
{
|
360
|
-
"internalType": "Timestamp",
|
361
|
-
"name": "activatedAt",
|
362
|
-
"type": "uint40"
|
363
|
-
},
|
364
|
-
{
|
365
|
-
"internalType": "Timestamp",
|
366
|
-
"name": "expiredAt",
|
367
|
-
"type": "uint40"
|
518
|
+
"internalType": "Selector",
|
519
|
+
"name": "selector",
|
520
|
+
"type": "bytes4"
|
368
521
|
},
|
369
522
|
{
|
370
523
|
"internalType": "Timestamp",
|
371
|
-
"name": "
|
524
|
+
"name": "createdAt",
|
372
525
|
"type": "uint40"
|
373
526
|
}
|
374
527
|
],
|
375
|
-
"internalType": "struct
|
376
|
-
"name": "
|
377
|
-
"type": "tuple"
|
528
|
+
"internalType": "struct IAccess.FunctionInfo[]",
|
529
|
+
"name": "functions",
|
530
|
+
"type": "tuple[]"
|
378
531
|
}
|
379
532
|
],
|
380
|
-
"name": "
|
533
|
+
"name": "authorizeFunctions",
|
381
534
|
"outputs": [],
|
382
535
|
"stateMutability": "nonpayable",
|
383
536
|
"type": "function"
|
@@ -385,560 +538,153 @@
|
|
385
538
|
{
|
386
539
|
"inputs": [
|
387
540
|
{
|
388
|
-
"internalType": "
|
389
|
-
"name": "
|
390
|
-
"type": "
|
541
|
+
"internalType": "string",
|
542
|
+
"name": "roleName",
|
543
|
+
"type": "string"
|
391
544
|
},
|
392
545
|
{
|
393
|
-
"
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
"type": "uint256"
|
410
|
-
}
|
411
|
-
],
|
412
|
-
"internalType": "struct Fee",
|
413
|
-
"name": "fee",
|
414
|
-
"type": "tuple"
|
415
|
-
},
|
416
|
-
{
|
417
|
-
"internalType": "bytes",
|
418
|
-
"name": "filter",
|
419
|
-
"type": "bytes"
|
420
|
-
},
|
421
|
-
{
|
422
|
-
"internalType": "Amount",
|
423
|
-
"name": "capitalAmount",
|
424
|
-
"type": "uint96"
|
425
|
-
},
|
426
|
-
{
|
427
|
-
"internalType": "Amount",
|
428
|
-
"name": "lockedAmount",
|
429
|
-
"type": "uint96"
|
430
|
-
},
|
431
|
-
{
|
432
|
-
"internalType": "Amount",
|
433
|
-
"name": "feeAmount",
|
434
|
-
"type": "uint96"
|
435
|
-
},
|
436
|
-
{
|
437
|
-
"internalType": "Seconds",
|
438
|
-
"name": "lifetime",
|
439
|
-
"type": "uint40"
|
440
|
-
},
|
441
|
-
{
|
442
|
-
"internalType": "Timestamp",
|
443
|
-
"name": "expiredAt",
|
444
|
-
"type": "uint40"
|
445
|
-
},
|
446
|
-
{
|
447
|
-
"internalType": "Timestamp",
|
448
|
-
"name": "closedAt",
|
449
|
-
"type": "uint40"
|
450
|
-
}
|
451
|
-
],
|
452
|
-
"internalType": "struct IBundle.BundleInfo",
|
453
|
-
"name": "bundle",
|
454
|
-
"type": "tuple"
|
546
|
+
"internalType": "RoleId",
|
547
|
+
"name": "adminRoleId",
|
548
|
+
"type": "uint64"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"internalType": "uint32",
|
552
|
+
"name": "maxMemberCount",
|
553
|
+
"type": "uint32"
|
554
|
+
}
|
555
|
+
],
|
556
|
+
"name": "createRole",
|
557
|
+
"outputs": [
|
558
|
+
{
|
559
|
+
"internalType": "RoleId",
|
560
|
+
"name": "roleId",
|
561
|
+
"type": "uint64"
|
455
562
|
}
|
456
563
|
],
|
457
|
-
"name": "createBundle",
|
458
|
-
"outputs": [],
|
459
564
|
"stateMutability": "nonpayable",
|
460
565
|
"type": "function"
|
461
566
|
},
|
462
567
|
{
|
463
568
|
"inputs": [
|
464
569
|
{
|
465
|
-
"internalType": "
|
466
|
-
"name": "
|
467
|
-
"type": "
|
570
|
+
"internalType": "address",
|
571
|
+
"name": "target",
|
572
|
+
"type": "address"
|
468
573
|
},
|
469
574
|
{
|
470
|
-
"
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
{
|
482
|
-
"components": [
|
483
|
-
{
|
484
|
-
"internalType": "UFixed",
|
485
|
-
"name": "fractionalFee",
|
486
|
-
"type": "uint256"
|
487
|
-
},
|
488
|
-
{
|
489
|
-
"internalType": "uint256",
|
490
|
-
"name": "fixedFee",
|
491
|
-
"type": "uint256"
|
492
|
-
}
|
493
|
-
],
|
494
|
-
"internalType": "struct Fee",
|
495
|
-
"name": "minDistributionOwnerFee",
|
496
|
-
"type": "tuple"
|
497
|
-
},
|
498
|
-
{
|
499
|
-
"components": [
|
500
|
-
{
|
501
|
-
"internalType": "UFixed",
|
502
|
-
"name": "fractionalFee",
|
503
|
-
"type": "uint256"
|
504
|
-
},
|
505
|
-
{
|
506
|
-
"internalType": "uint256",
|
507
|
-
"name": "fixedFee",
|
508
|
-
"type": "uint256"
|
509
|
-
}
|
510
|
-
],
|
511
|
-
"internalType": "struct Fee",
|
512
|
-
"name": "distributionFee",
|
513
|
-
"type": "tuple"
|
514
|
-
},
|
515
|
-
{
|
516
|
-
"internalType": "address",
|
517
|
-
"name": "wallet",
|
518
|
-
"type": "address"
|
519
|
-
},
|
520
|
-
{
|
521
|
-
"internalType": "uint256",
|
522
|
-
"name": "sumDistributionOwnerFees",
|
523
|
-
"type": "uint256"
|
524
|
-
}
|
525
|
-
],
|
526
|
-
"internalType": "struct ISetup.DistributionSetupInfo",
|
527
|
-
"name": "setup",
|
528
|
-
"type": "tuple"
|
575
|
+
"internalType": "string",
|
576
|
+
"name": "name",
|
577
|
+
"type": "string"
|
578
|
+
}
|
579
|
+
],
|
580
|
+
"name": "createTarget",
|
581
|
+
"outputs": [
|
582
|
+
{
|
583
|
+
"internalType": "RoleId",
|
584
|
+
"name": "contractRoleId",
|
585
|
+
"type": "uint64"
|
529
586
|
}
|
530
587
|
],
|
531
|
-
"name": "createDistributionSetup",
|
532
|
-
"outputs": [],
|
533
588
|
"stateMutability": "nonpayable",
|
534
589
|
"type": "function"
|
535
590
|
},
|
536
591
|
{
|
537
|
-
"inputs": [
|
538
|
-
|
539
|
-
|
540
|
-
"name": "nftId",
|
541
|
-
"type": "uint96"
|
542
|
-
},
|
592
|
+
"inputs": [],
|
593
|
+
"name": "getBundleSet",
|
594
|
+
"outputs": [
|
543
595
|
{
|
544
|
-
"
|
545
|
-
|
546
|
-
|
547
|
-
"name": "distributorType",
|
548
|
-
"type": "bytes8"
|
549
|
-
},
|
550
|
-
{
|
551
|
-
"internalType": "bool",
|
552
|
-
"name": "active",
|
553
|
-
"type": "bool"
|
554
|
-
},
|
555
|
-
{
|
556
|
-
"internalType": "bytes",
|
557
|
-
"name": "data",
|
558
|
-
"type": "bytes"
|
559
|
-
},
|
560
|
-
{
|
561
|
-
"internalType": "uint256",
|
562
|
-
"name": "sumCommisions",
|
563
|
-
"type": "uint256"
|
564
|
-
},
|
565
|
-
{
|
566
|
-
"internalType": "uint256",
|
567
|
-
"name": "numPoliciesSold",
|
568
|
-
"type": "uint256"
|
569
|
-
}
|
570
|
-
],
|
571
|
-
"internalType": "struct IDistribution.DistributorInfo",
|
572
|
-
"name": "info",
|
573
|
-
"type": "tuple"
|
596
|
+
"internalType": "contract BundleSet",
|
597
|
+
"name": "",
|
598
|
+
"type": "address"
|
574
599
|
}
|
575
600
|
],
|
576
|
-
"
|
577
|
-
"outputs": [],
|
578
|
-
"stateMutability": "nonpayable",
|
601
|
+
"stateMutability": "view",
|
579
602
|
"type": "function"
|
580
603
|
},
|
581
604
|
{
|
582
|
-
"inputs": [
|
583
|
-
|
584
|
-
|
585
|
-
"name": "distributorKey",
|
586
|
-
"type": "bytes32"
|
587
|
-
},
|
605
|
+
"inputs": [],
|
606
|
+
"name": "getInitialInfo",
|
607
|
+
"outputs": [
|
588
608
|
{
|
589
609
|
"components": [
|
590
610
|
{
|
591
|
-
"internalType": "
|
592
|
-
"name": "
|
593
|
-
"type": "
|
594
|
-
},
|
595
|
-
{
|
596
|
-
"internalType": "UFixed",
|
597
|
-
"name": "minDiscountPercentage",
|
598
|
-
"type": "uint256"
|
599
|
-
},
|
600
|
-
{
|
601
|
-
"internalType": "UFixed",
|
602
|
-
"name": "maxDiscountPercentage",
|
603
|
-
"type": "uint256"
|
604
|
-
},
|
605
|
-
{
|
606
|
-
"internalType": "UFixed",
|
607
|
-
"name": "commissionPercentage",
|
608
|
-
"type": "uint256"
|
609
|
-
},
|
610
|
-
{
|
611
|
-
"internalType": "uint32",
|
612
|
-
"name": "maxReferralCount",
|
613
|
-
"type": "uint32"
|
611
|
+
"internalType": "NftId",
|
612
|
+
"name": "nftId",
|
613
|
+
"type": "uint96"
|
614
614
|
},
|
615
615
|
{
|
616
|
-
"internalType": "
|
617
|
-
"name": "
|
618
|
-
"type": "
|
616
|
+
"internalType": "NftId",
|
617
|
+
"name": "parentNftId",
|
618
|
+
"type": "uint96"
|
619
619
|
},
|
620
620
|
{
|
621
|
-
"internalType": "
|
622
|
-
"name": "
|
623
|
-
"type": "
|
621
|
+
"internalType": "ObjectType",
|
622
|
+
"name": "objectType",
|
623
|
+
"type": "uint8"
|
624
624
|
},
|
625
625
|
{
|
626
626
|
"internalType": "bool",
|
627
|
-
"name": "
|
627
|
+
"name": "isInterceptor",
|
628
628
|
"type": "bool"
|
629
629
|
},
|
630
630
|
{
|
631
|
-
"internalType": "
|
632
|
-
"name": "
|
633
|
-
"type": "bytes"
|
634
|
-
}
|
635
|
-
],
|
636
|
-
"internalType": "struct IDistribution.DistributorTypeInfo",
|
637
|
-
"name": "info",
|
638
|
-
"type": "tuple"
|
639
|
-
}
|
640
|
-
],
|
641
|
-
"name": "createDistributorType",
|
642
|
-
"outputs": [],
|
643
|
-
"stateMutability": "nonpayable",
|
644
|
-
"type": "function"
|
645
|
-
},
|
646
|
-
{
|
647
|
-
"inputs": [
|
648
|
-
{
|
649
|
-
"internalType": "NftId",
|
650
|
-
"name": "poolNftId",
|
651
|
-
"type": "uint96"
|
652
|
-
},
|
653
|
-
{
|
654
|
-
"components": [
|
655
|
-
{
|
656
|
-
"internalType": "string",
|
657
|
-
"name": "name",
|
658
|
-
"type": "string"
|
659
|
-
},
|
660
|
-
{
|
661
|
-
"internalType": "contract IERC20Metadata",
|
662
|
-
"name": "token",
|
663
|
-
"type": "address"
|
664
|
-
},
|
665
|
-
{
|
666
|
-
"internalType": "contract TokenHandler",
|
667
|
-
"name": "tokenHandler",
|
631
|
+
"internalType": "address",
|
632
|
+
"name": "objectAddress",
|
668
633
|
"type": "address"
|
669
634
|
},
|
670
635
|
{
|
671
636
|
"internalType": "address",
|
672
|
-
"name": "
|
637
|
+
"name": "initialOwner",
|
673
638
|
"type": "address"
|
674
639
|
},
|
675
|
-
{
|
676
|
-
"internalType": "Amount",
|
677
|
-
"name": "balanceAmount",
|
678
|
-
"type": "uint96"
|
679
|
-
},
|
680
|
-
{
|
681
|
-
"internalType": "Amount",
|
682
|
-
"name": "feeAmount",
|
683
|
-
"type": "uint96"
|
684
|
-
},
|
685
640
|
{
|
686
641
|
"internalType": "bytes",
|
687
642
|
"name": "data",
|
688
643
|
"type": "bytes"
|
689
644
|
}
|
690
645
|
],
|
691
|
-
"internalType": "struct
|
692
|
-
"name": "
|
646
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
647
|
+
"name": "",
|
693
648
|
"type": "tuple"
|
694
649
|
}
|
695
650
|
],
|
696
|
-
"
|
697
|
-
"outputs": [],
|
698
|
-
"stateMutability": "nonpayable",
|
651
|
+
"stateMutability": "view",
|
699
652
|
"type": "function"
|
700
653
|
},
|
701
654
|
{
|
702
|
-
"inputs": [
|
703
|
-
|
704
|
-
|
705
|
-
"name": "productNftId",
|
706
|
-
"type": "uint96"
|
707
|
-
},
|
655
|
+
"inputs": [],
|
656
|
+
"name": "getInstanceAdmin",
|
657
|
+
"outputs": [
|
708
658
|
{
|
709
|
-
"
|
710
|
-
|
711
|
-
|
712
|
-
"name": "token",
|
713
|
-
"type": "address"
|
714
|
-
},
|
715
|
-
{
|
716
|
-
"internalType": "contract TokenHandler",
|
717
|
-
"name": "tokenHandler",
|
718
|
-
"type": "address"
|
719
|
-
},
|
720
|
-
{
|
721
|
-
"internalType": "NftId",
|
722
|
-
"name": "distributionNftId",
|
723
|
-
"type": "uint96"
|
724
|
-
},
|
725
|
-
{
|
726
|
-
"internalType": "NftId",
|
727
|
-
"name": "poolNftId",
|
728
|
-
"type": "uint96"
|
729
|
-
},
|
730
|
-
{
|
731
|
-
"components": [
|
732
|
-
{
|
733
|
-
"internalType": "UFixed",
|
734
|
-
"name": "fractionalFee",
|
735
|
-
"type": "uint256"
|
736
|
-
},
|
737
|
-
{
|
738
|
-
"internalType": "uint256",
|
739
|
-
"name": "fixedFee",
|
740
|
-
"type": "uint256"
|
741
|
-
}
|
742
|
-
],
|
743
|
-
"internalType": "struct Fee",
|
744
|
-
"name": "productFee",
|
745
|
-
"type": "tuple"
|
746
|
-
},
|
747
|
-
{
|
748
|
-
"components": [
|
749
|
-
{
|
750
|
-
"internalType": "UFixed",
|
751
|
-
"name": "fractionalFee",
|
752
|
-
"type": "uint256"
|
753
|
-
},
|
754
|
-
{
|
755
|
-
"internalType": "uint256",
|
756
|
-
"name": "fixedFee",
|
757
|
-
"type": "uint256"
|
758
|
-
}
|
759
|
-
],
|
760
|
-
"internalType": "struct Fee",
|
761
|
-
"name": "processingFee",
|
762
|
-
"type": "tuple"
|
763
|
-
},
|
764
|
-
{
|
765
|
-
"internalType": "bool",
|
766
|
-
"name": "isIntercepting",
|
767
|
-
"type": "bool"
|
768
|
-
},
|
769
|
-
{
|
770
|
-
"internalType": "address",
|
771
|
-
"name": "wallet",
|
772
|
-
"type": "address"
|
773
|
-
}
|
774
|
-
],
|
775
|
-
"internalType": "struct ISetup.ProductSetupInfo",
|
776
|
-
"name": "setup",
|
777
|
-
"type": "tuple"
|
659
|
+
"internalType": "contract InstanceAdmin",
|
660
|
+
"name": "",
|
661
|
+
"type": "address"
|
778
662
|
}
|
779
663
|
],
|
780
|
-
"
|
781
|
-
"outputs": [],
|
782
|
-
"stateMutability": "nonpayable",
|
664
|
+
"stateMutability": "view",
|
783
665
|
"type": "function"
|
784
666
|
},
|
785
667
|
{
|
786
|
-
"inputs": [
|
787
|
-
|
788
|
-
|
789
|
-
"name": "referralKey",
|
790
|
-
"type": "bytes32"
|
791
|
-
},
|
668
|
+
"inputs": [],
|
669
|
+
"name": "getInstanceReader",
|
670
|
+
"outputs": [
|
792
671
|
{
|
793
|
-
"
|
794
|
-
{
|
795
|
-
"internalType": "NftId",
|
796
|
-
"name": "distributorNftId",
|
797
|
-
"type": "uint96"
|
798
|
-
},
|
799
|
-
{
|
800
|
-
"internalType": "string",
|
801
|
-
"name": "referralCode",
|
802
|
-
"type": "string"
|
803
|
-
},
|
804
|
-
{
|
805
|
-
"internalType": "UFixed",
|
806
|
-
"name": "discountPercentage",
|
807
|
-
"type": "uint256"
|
808
|
-
},
|
809
|
-
{
|
810
|
-
"internalType": "uint32",
|
811
|
-
"name": "maxReferrals",
|
812
|
-
"type": "uint32"
|
813
|
-
},
|
814
|
-
{
|
815
|
-
"internalType": "uint32",
|
816
|
-
"name": "usedReferrals",
|
817
|
-
"type": "uint32"
|
818
|
-
},
|
819
|
-
{
|
820
|
-
"internalType": "Timestamp",
|
821
|
-
"name": "expiryAt",
|
822
|
-
"type": "uint40"
|
823
|
-
},
|
824
|
-
{
|
825
|
-
"internalType": "bytes",
|
826
|
-
"name": "data",
|
827
|
-
"type": "bytes"
|
828
|
-
}
|
829
|
-
],
|
830
|
-
"internalType": "struct IDistribution.ReferralInfo",
|
831
|
-
"name": "referralInfo",
|
832
|
-
"type": "tuple"
|
833
|
-
}
|
834
|
-
],
|
835
|
-
"name": "createReferral",
|
836
|
-
"outputs": [],
|
837
|
-
"stateMutability": "nonpayable",
|
838
|
-
"type": "function"
|
839
|
-
},
|
840
|
-
{
|
841
|
-
"inputs": [
|
842
|
-
{
|
843
|
-
"internalType": "RiskId",
|
844
|
-
"name": "riskId",
|
845
|
-
"type": "bytes8"
|
846
|
-
},
|
847
|
-
{
|
848
|
-
"components": [
|
849
|
-
{
|
850
|
-
"internalType": "NftId",
|
851
|
-
"name": "productNftId",
|
852
|
-
"type": "uint96"
|
853
|
-
},
|
854
|
-
{
|
855
|
-
"internalType": "bytes",
|
856
|
-
"name": "data",
|
857
|
-
"type": "bytes"
|
858
|
-
}
|
859
|
-
],
|
860
|
-
"internalType": "struct IRisk.RiskInfo",
|
861
|
-
"name": "risk",
|
862
|
-
"type": "tuple"
|
863
|
-
}
|
864
|
-
],
|
865
|
-
"name": "createRisk",
|
866
|
-
"outputs": [],
|
867
|
-
"stateMutability": "nonpayable",
|
868
|
-
"type": "function"
|
869
|
-
},
|
870
|
-
{
|
871
|
-
"inputs": [
|
872
|
-
{
|
873
|
-
"internalType": "Key32",
|
874
|
-
"name": "key",
|
875
|
-
"type": "bytes32"
|
876
|
-
}
|
877
|
-
],
|
878
|
-
"name": "exists",
|
879
|
-
"outputs": [
|
880
|
-
{
|
881
|
-
"internalType": "bool",
|
672
|
+
"internalType": "contract InstanceReader",
|
882
673
|
"name": "",
|
883
|
-
"type": "
|
674
|
+
"type": "address"
|
884
675
|
}
|
885
676
|
],
|
886
677
|
"stateMutability": "view",
|
887
678
|
"type": "function"
|
888
679
|
},
|
889
680
|
{
|
890
|
-
"inputs": [
|
891
|
-
|
892
|
-
"internalType": "Key32",
|
893
|
-
"name": "key",
|
894
|
-
"type": "bytes32"
|
895
|
-
}
|
896
|
-
],
|
897
|
-
"name": "get",
|
681
|
+
"inputs": [],
|
682
|
+
"name": "getInstanceStore",
|
898
683
|
"outputs": [
|
899
684
|
{
|
900
|
-
"
|
901
|
-
|
902
|
-
|
903
|
-
{
|
904
|
-
"internalType": "ObjectType",
|
905
|
-
"name": "objectType",
|
906
|
-
"type": "uint8"
|
907
|
-
},
|
908
|
-
{
|
909
|
-
"internalType": "StateId",
|
910
|
-
"name": "state",
|
911
|
-
"type": "uint8"
|
912
|
-
},
|
913
|
-
{
|
914
|
-
"internalType": "address",
|
915
|
-
"name": "updatedBy",
|
916
|
-
"type": "address"
|
917
|
-
},
|
918
|
-
{
|
919
|
-
"internalType": "Blocknumber",
|
920
|
-
"name": "updatedIn",
|
921
|
-
"type": "uint32"
|
922
|
-
},
|
923
|
-
{
|
924
|
-
"internalType": "Blocknumber",
|
925
|
-
"name": "createdIn",
|
926
|
-
"type": "uint32"
|
927
|
-
}
|
928
|
-
],
|
929
|
-
"internalType": "struct IKeyValueStore.Metadata",
|
930
|
-
"name": "metadata",
|
931
|
-
"type": "tuple"
|
932
|
-
},
|
933
|
-
{
|
934
|
-
"internalType": "bytes",
|
935
|
-
"name": "data",
|
936
|
-
"type": "bytes"
|
937
|
-
}
|
938
|
-
],
|
939
|
-
"internalType": "struct IKeyValueStore.Value",
|
940
|
-
"name": "value",
|
941
|
-
"type": "tuple"
|
685
|
+
"internalType": "contract InstanceStore",
|
686
|
+
"name": "",
|
687
|
+
"type": "address"
|
942
688
|
}
|
943
689
|
],
|
944
690
|
"stateMutability": "view",
|
@@ -946,12 +692,12 @@
|
|
946
692
|
},
|
947
693
|
{
|
948
694
|
"inputs": [],
|
949
|
-
"name": "
|
695
|
+
"name": "getNftId",
|
950
696
|
"outputs": [
|
951
697
|
{
|
952
|
-
"internalType": "
|
698
|
+
"internalType": "NftId",
|
953
699
|
"name": "",
|
954
|
-
"type": "
|
700
|
+
"type": "uint96"
|
955
701
|
}
|
956
702
|
],
|
957
703
|
"stateMutability": "view",
|
@@ -959,10 +705,10 @@
|
|
959
705
|
},
|
960
706
|
{
|
961
707
|
"inputs": [],
|
962
|
-
"name": "
|
708
|
+
"name": "getOwner",
|
963
709
|
"outputs": [
|
964
710
|
{
|
965
|
-
"internalType": "
|
711
|
+
"internalType": "address",
|
966
712
|
"name": "",
|
967
713
|
"type": "address"
|
968
714
|
}
|
@@ -973,17 +719,17 @@
|
|
973
719
|
{
|
974
720
|
"inputs": [
|
975
721
|
{
|
976
|
-
"internalType": "
|
977
|
-
"name": "
|
978
|
-
"type": "
|
722
|
+
"internalType": "uint256",
|
723
|
+
"name": "idx",
|
724
|
+
"type": "uint256"
|
979
725
|
}
|
980
726
|
],
|
981
|
-
"name": "
|
727
|
+
"name": "getProductNftId",
|
982
728
|
"outputs": [
|
983
729
|
{
|
984
|
-
"internalType": "
|
985
|
-
"name": "
|
986
|
-
"type": "
|
730
|
+
"internalType": "NftId",
|
731
|
+
"name": "productNftId",
|
732
|
+
"type": "uint96"
|
987
733
|
}
|
988
734
|
],
|
989
735
|
"stateMutability": "view",
|
@@ -991,10 +737,10 @@
|
|
991
737
|
},
|
992
738
|
{
|
993
739
|
"inputs": [],
|
994
|
-
"name": "
|
740
|
+
"name": "getProductStore",
|
995
741
|
"outputs": [
|
996
742
|
{
|
997
|
-
"internalType": "contract
|
743
|
+
"internalType": "contract ProductStore",
|
998
744
|
"name": "",
|
999
745
|
"type": "address"
|
1000
746
|
}
|
@@ -1004,68 +750,12 @@
|
|
1004
750
|
},
|
1005
751
|
{
|
1006
752
|
"inputs": [],
|
1007
|
-
"name": "
|
1008
|
-
"outputs": [
|
1009
|
-
{
|
1010
|
-
"components": [
|
1011
|
-
{
|
1012
|
-
"internalType": "NftId",
|
1013
|
-
"name": "nftId",
|
1014
|
-
"type": "uint96"
|
1015
|
-
},
|
1016
|
-
{
|
1017
|
-
"internalType": "NftId",
|
1018
|
-
"name": "parentNftId",
|
1019
|
-
"type": "uint96"
|
1020
|
-
},
|
1021
|
-
{
|
1022
|
-
"internalType": "ObjectType",
|
1023
|
-
"name": "objectType",
|
1024
|
-
"type": "uint8"
|
1025
|
-
},
|
1026
|
-
{
|
1027
|
-
"internalType": "bool",
|
1028
|
-
"name": "isInterceptor",
|
1029
|
-
"type": "bool"
|
1030
|
-
},
|
1031
|
-
{
|
1032
|
-
"internalType": "address",
|
1033
|
-
"name": "objectAddress",
|
1034
|
-
"type": "address"
|
1035
|
-
},
|
1036
|
-
{
|
1037
|
-
"internalType": "address",
|
1038
|
-
"name": "initialOwner",
|
1039
|
-
"type": "address"
|
1040
|
-
},
|
1041
|
-
{
|
1042
|
-
"internalType": "bytes",
|
1043
|
-
"name": "data",
|
1044
|
-
"type": "bytes"
|
1045
|
-
}
|
1046
|
-
],
|
1047
|
-
"internalType": "struct IRegistry.ObjectInfo",
|
1048
|
-
"name": "",
|
1049
|
-
"type": "tuple"
|
1050
|
-
}
|
1051
|
-
],
|
1052
|
-
"stateMutability": "view",
|
1053
|
-
"type": "function"
|
1054
|
-
},
|
1055
|
-
{
|
1056
|
-
"inputs": [
|
1057
|
-
{
|
1058
|
-
"internalType": "ObjectType",
|
1059
|
-
"name": "objectType",
|
1060
|
-
"type": "uint8"
|
1061
|
-
}
|
1062
|
-
],
|
1063
|
-
"name": "getInitialState",
|
753
|
+
"name": "getRegistry",
|
1064
754
|
"outputs": [
|
1065
755
|
{
|
1066
|
-
"internalType": "
|
756
|
+
"internalType": "contract IRegistry",
|
1067
757
|
"name": "",
|
1068
|
-
"type": "
|
758
|
+
"type": "address"
|
1069
759
|
}
|
1070
760
|
],
|
1071
761
|
"stateMutability": "view",
|
@@ -1073,12 +763,12 @@
|
|
1073
763
|
},
|
1074
764
|
{
|
1075
765
|
"inputs": [],
|
1076
|
-
"name": "
|
766
|
+
"name": "getRelease",
|
1077
767
|
"outputs": [
|
1078
768
|
{
|
1079
|
-
"internalType": "
|
1080
|
-
"name": "",
|
1081
|
-
"type": "
|
769
|
+
"internalType": "VersionPart",
|
770
|
+
"name": "release",
|
771
|
+
"type": "uint8"
|
1082
772
|
}
|
1083
773
|
],
|
1084
774
|
"stateMutability": "view",
|
@@ -1086,10 +776,10 @@
|
|
1086
776
|
},
|
1087
777
|
{
|
1088
778
|
"inputs": [],
|
1089
|
-
"name": "
|
779
|
+
"name": "getRiskSet",
|
1090
780
|
"outputs": [
|
1091
781
|
{
|
1092
|
-
"internalType": "contract
|
782
|
+
"internalType": "contract RiskSet",
|
1093
783
|
"name": "",
|
1094
784
|
"type": "address"
|
1095
785
|
}
|
@@ -1097,73 +787,32 @@
|
|
1097
787
|
"stateMutability": "view",
|
1098
788
|
"type": "function"
|
1099
789
|
},
|
1100
|
-
{
|
1101
|
-
"inputs": [],
|
1102
|
-
"name": "getMajorVersion",
|
1103
|
-
"outputs": [
|
1104
|
-
{
|
1105
|
-
"internalType": "VersionPart",
|
1106
|
-
"name": "majorVersion",
|
1107
|
-
"type": "uint8"
|
1108
|
-
}
|
1109
|
-
],
|
1110
|
-
"stateMutability": "pure",
|
1111
|
-
"type": "function"
|
1112
|
-
},
|
1113
790
|
{
|
1114
791
|
"inputs": [
|
1115
792
|
{
|
1116
|
-
"internalType": "
|
1117
|
-
"name": "
|
1118
|
-
"type": "
|
1119
|
-
}
|
1120
|
-
],
|
1121
|
-
"name": "getMetadata",
|
1122
|
-
"outputs": [
|
793
|
+
"internalType": "RoleId",
|
794
|
+
"name": "roleId",
|
795
|
+
"type": "uint64"
|
796
|
+
},
|
1123
797
|
{
|
1124
|
-
"
|
1125
|
-
|
1126
|
-
|
1127
|
-
"name": "objectType",
|
1128
|
-
"type": "uint8"
|
1129
|
-
},
|
1130
|
-
{
|
1131
|
-
"internalType": "StateId",
|
1132
|
-
"name": "state",
|
1133
|
-
"type": "uint8"
|
1134
|
-
},
|
1135
|
-
{
|
1136
|
-
"internalType": "address",
|
1137
|
-
"name": "updatedBy",
|
1138
|
-
"type": "address"
|
1139
|
-
},
|
1140
|
-
{
|
1141
|
-
"internalType": "Blocknumber",
|
1142
|
-
"name": "updatedIn",
|
1143
|
-
"type": "uint32"
|
1144
|
-
},
|
1145
|
-
{
|
1146
|
-
"internalType": "Blocknumber",
|
1147
|
-
"name": "createdIn",
|
1148
|
-
"type": "uint32"
|
1149
|
-
}
|
1150
|
-
],
|
1151
|
-
"internalType": "struct IKeyValueStore.Metadata",
|
1152
|
-
"name": "metadata",
|
1153
|
-
"type": "tuple"
|
798
|
+
"internalType": "address",
|
799
|
+
"name": "account",
|
800
|
+
"type": "address"
|
1154
801
|
}
|
1155
802
|
],
|
1156
|
-
"
|
803
|
+
"name": "grantRole",
|
804
|
+
"outputs": [],
|
805
|
+
"stateMutability": "nonpayable",
|
1157
806
|
"type": "function"
|
1158
807
|
},
|
1159
808
|
{
|
1160
809
|
"inputs": [],
|
1161
|
-
"name": "
|
810
|
+
"name": "isActive",
|
1162
811
|
"outputs": [
|
1163
812
|
{
|
1164
|
-
"internalType": "
|
1165
|
-
"name": "",
|
1166
|
-
"type": "
|
813
|
+
"internalType": "bool",
|
814
|
+
"name": "active",
|
815
|
+
"type": "bool"
|
1167
816
|
}
|
1168
817
|
],
|
1169
818
|
"stateMutability": "view",
|
@@ -1171,12 +820,12 @@
|
|
1171
820
|
},
|
1172
821
|
{
|
1173
822
|
"inputs": [],
|
1174
|
-
"name": "
|
823
|
+
"name": "isConsumingScheduledOp",
|
1175
824
|
"outputs": [
|
1176
825
|
{
|
1177
|
-
"internalType": "
|
826
|
+
"internalType": "bytes4",
|
1178
827
|
"name": "",
|
1179
|
-
"type": "
|
828
|
+
"type": "bytes4"
|
1180
829
|
}
|
1181
830
|
],
|
1182
831
|
"stateMutability": "view",
|
@@ -1184,38 +833,31 @@
|
|
1184
833
|
},
|
1185
834
|
{
|
1186
835
|
"inputs": [],
|
1187
|
-
"name": "
|
836
|
+
"name": "isInstanceLocked",
|
1188
837
|
"outputs": [
|
1189
838
|
{
|
1190
|
-
"internalType": "
|
1191
|
-
"name": "",
|
1192
|
-
"type": "
|
839
|
+
"internalType": "bool",
|
840
|
+
"name": "isLocked",
|
841
|
+
"type": "bool"
|
1193
842
|
}
|
1194
843
|
],
|
1195
844
|
"stateMutability": "view",
|
1196
845
|
"type": "function"
|
1197
846
|
},
|
1198
847
|
{
|
1199
|
-
"inputs": [
|
1200
|
-
"name": "getPoolService",
|
1201
|
-
"outputs": [
|
848
|
+
"inputs": [
|
1202
849
|
{
|
1203
|
-
"internalType": "
|
1204
|
-
"name": "",
|
850
|
+
"internalType": "address",
|
851
|
+
"name": "target",
|
1205
852
|
"type": "address"
|
1206
853
|
}
|
1207
854
|
],
|
1208
|
-
"
|
1209
|
-
"type": "function"
|
1210
|
-
},
|
1211
|
-
{
|
1212
|
-
"inputs": [],
|
1213
|
-
"name": "getProductService",
|
855
|
+
"name": "isTargetLocked",
|
1214
856
|
"outputs": [
|
1215
857
|
{
|
1216
|
-
"internalType": "
|
1217
|
-
"name": "",
|
1218
|
-
"type": "
|
858
|
+
"internalType": "bool",
|
859
|
+
"name": "isLocked",
|
860
|
+
"type": "bool"
|
1219
861
|
}
|
1220
862
|
],
|
1221
863
|
"stateMutability": "view",
|
@@ -1223,12 +865,12 @@
|
|
1223
865
|
},
|
1224
866
|
{
|
1225
867
|
"inputs": [],
|
1226
|
-
"name": "
|
868
|
+
"name": "isTokenRegistryDisabled",
|
1227
869
|
"outputs": [
|
1228
870
|
{
|
1229
|
-
"internalType": "
|
871
|
+
"internalType": "bool",
|
1230
872
|
"name": "",
|
1231
|
-
"type": "
|
873
|
+
"type": "bool"
|
1232
874
|
}
|
1233
875
|
],
|
1234
876
|
"stateMutability": "view",
|
@@ -1236,31 +878,25 @@
|
|
1236
878
|
},
|
1237
879
|
{
|
1238
880
|
"inputs": [],
|
1239
|
-
"name": "
|
881
|
+
"name": "linkToRegisteredNftId",
|
1240
882
|
"outputs": [
|
1241
883
|
{
|
1242
|
-
"internalType": "
|
884
|
+
"internalType": "NftId",
|
1243
885
|
"name": "",
|
1244
|
-
"type": "
|
886
|
+
"type": "uint96"
|
1245
887
|
}
|
1246
888
|
],
|
1247
|
-
"stateMutability": "
|
889
|
+
"stateMutability": "nonpayable",
|
1248
890
|
"type": "function"
|
1249
891
|
},
|
1250
892
|
{
|
1251
|
-
"inputs": [
|
1252
|
-
|
1253
|
-
"internalType": "Key32",
|
1254
|
-
"name": "key",
|
1255
|
-
"type": "bytes32"
|
1256
|
-
}
|
1257
|
-
],
|
1258
|
-
"name": "getState",
|
893
|
+
"inputs": [],
|
894
|
+
"name": "products",
|
1259
895
|
"outputs": [
|
1260
896
|
{
|
1261
|
-
"internalType": "
|
1262
|
-
"name": "
|
1263
|
-
"type": "
|
897
|
+
"internalType": "uint256",
|
898
|
+
"name": "productCount",
|
899
|
+
"type": "uint256"
|
1264
900
|
}
|
1265
901
|
],
|
1266
902
|
"stateMutability": "view",
|
@@ -1269,758 +905,60 @@
|
|
1269
905
|
{
|
1270
906
|
"inputs": [
|
1271
907
|
{
|
1272
|
-
"internalType": "
|
1273
|
-
"name": "
|
1274
|
-
"type": "
|
908
|
+
"internalType": "Amount",
|
909
|
+
"name": "dipAmount",
|
910
|
+
"type": "uint96"
|
1275
911
|
}
|
1276
912
|
],
|
1277
|
-
"name": "
|
913
|
+
"name": "refillStakingRewardReserves",
|
1278
914
|
"outputs": [
|
1279
915
|
{
|
1280
|
-
"internalType": "
|
1281
|
-
"name": "",
|
1282
|
-
"type": "bool"
|
1283
|
-
}
|
1284
|
-
],
|
1285
|
-
"stateMutability": "view",
|
1286
|
-
"type": "function"
|
1287
|
-
},
|
1288
|
-
{
|
1289
|
-
"inputs": [],
|
1290
|
-
"name": "isConsumingScheduledOp",
|
1291
|
-
"outputs": [
|
1292
|
-
{
|
1293
|
-
"internalType": "bytes4",
|
1294
|
-
"name": "",
|
1295
|
-
"type": "bytes4"
|
1296
|
-
}
|
1297
|
-
],
|
1298
|
-
"stateMutability": "view",
|
1299
|
-
"type": "function"
|
1300
|
-
},
|
1301
|
-
{
|
1302
|
-
"inputs": [
|
1303
|
-
{
|
1304
|
-
"internalType": "ObjectType",
|
1305
|
-
"name": "objectType",
|
1306
|
-
"type": "uint8"
|
1307
|
-
},
|
1308
|
-
{
|
1309
|
-
"internalType": "StateId",
|
1310
|
-
"name": "fromId",
|
1311
|
-
"type": "uint8"
|
1312
|
-
},
|
1313
|
-
{
|
1314
|
-
"internalType": "StateId",
|
1315
|
-
"name": "toId",
|
1316
|
-
"type": "uint8"
|
1317
|
-
}
|
1318
|
-
],
|
1319
|
-
"name": "isValidTransition",
|
1320
|
-
"outputs": [
|
1321
|
-
{
|
1322
|
-
"internalType": "bool",
|
1323
|
-
"name": "",
|
1324
|
-
"type": "bool"
|
1325
|
-
}
|
1326
|
-
],
|
1327
|
-
"stateMutability": "view",
|
1328
|
-
"type": "function"
|
1329
|
-
},
|
1330
|
-
{
|
1331
|
-
"inputs": [],
|
1332
|
-
"name": "linkToRegisteredNftId",
|
1333
|
-
"outputs": [],
|
1334
|
-
"stateMutability": "nonpayable",
|
1335
|
-
"type": "function"
|
1336
|
-
},
|
1337
|
-
{
|
1338
|
-
"inputs": [
|
1339
|
-
{
|
1340
|
-
"internalType": "address",
|
1341
|
-
"name": "to",
|
1342
|
-
"type": "address"
|
1343
|
-
},
|
1344
|
-
{
|
1345
|
-
"internalType": "uint256",
|
1346
|
-
"name": "tokenId",
|
1347
|
-
"type": "uint256"
|
1348
|
-
}
|
1349
|
-
],
|
1350
|
-
"name": "nftMint",
|
1351
|
-
"outputs": [],
|
1352
|
-
"stateMutability": "nonpayable",
|
1353
|
-
"type": "function"
|
1354
|
-
},
|
1355
|
-
{
|
1356
|
-
"inputs": [
|
1357
|
-
{
|
1358
|
-
"internalType": "address",
|
1359
|
-
"name": "from",
|
1360
|
-
"type": "address"
|
1361
|
-
},
|
1362
|
-
{
|
1363
|
-
"internalType": "address",
|
1364
|
-
"name": "to",
|
1365
|
-
"type": "address"
|
1366
|
-
},
|
1367
|
-
{
|
1368
|
-
"internalType": "uint256",
|
1369
|
-
"name": "tokenId",
|
1370
|
-
"type": "uint256"
|
1371
|
-
}
|
1372
|
-
],
|
1373
|
-
"name": "nftTransferFrom",
|
1374
|
-
"outputs": [],
|
1375
|
-
"stateMutability": "nonpayable",
|
1376
|
-
"type": "function"
|
1377
|
-
},
|
1378
|
-
{
|
1379
|
-
"inputs": [
|
1380
|
-
{
|
1381
|
-
"internalType": "address",
|
1382
|
-
"name": "",
|
1383
|
-
"type": "address"
|
1384
|
-
}
|
1385
|
-
],
|
1386
|
-
"name": "setAuthority",
|
1387
|
-
"outputs": [],
|
1388
|
-
"stateMutability": "nonpayable",
|
1389
|
-
"type": "function"
|
1390
|
-
},
|
1391
|
-
{
|
1392
|
-
"inputs": [
|
1393
|
-
{
|
1394
|
-
"internalType": "contract InstanceAccessManager",
|
1395
|
-
"name": "accessManager",
|
1396
|
-
"type": "address"
|
1397
|
-
}
|
1398
|
-
],
|
1399
|
-
"name": "setInstanceAccessManager",
|
1400
|
-
"outputs": [],
|
1401
|
-
"stateMutability": "nonpayable",
|
1402
|
-
"type": "function"
|
1403
|
-
},
|
1404
|
-
{
|
1405
|
-
"inputs": [
|
1406
|
-
{
|
1407
|
-
"internalType": "bytes4",
|
1408
|
-
"name": "interfaceId",
|
1409
|
-
"type": "bytes4"
|
1410
|
-
}
|
1411
|
-
],
|
1412
|
-
"name": "supportsInterface",
|
1413
|
-
"outputs": [
|
1414
|
-
{
|
1415
|
-
"internalType": "bool",
|
1416
|
-
"name": "",
|
1417
|
-
"type": "bool"
|
1418
|
-
}
|
1419
|
-
],
|
1420
|
-
"stateMutability": "view",
|
1421
|
-
"type": "function"
|
1422
|
-
},
|
1423
|
-
{
|
1424
|
-
"inputs": [
|
1425
|
-
{
|
1426
|
-
"internalType": "ObjectType",
|
1427
|
-
"name": "objectType",
|
1428
|
-
"type": "uint8"
|
1429
|
-
},
|
1430
|
-
{
|
1431
|
-
"internalType": "KeyId",
|
1432
|
-
"name": "id",
|
1433
|
-
"type": "bytes31"
|
1434
|
-
}
|
1435
|
-
],
|
1436
|
-
"name": "toKey32",
|
1437
|
-
"outputs": [
|
1438
|
-
{
|
1439
|
-
"internalType": "Key32",
|
1440
|
-
"name": "",
|
1441
|
-
"type": "bytes32"
|
1442
|
-
}
|
1443
|
-
],
|
1444
|
-
"stateMutability": "pure",
|
1445
|
-
"type": "function"
|
1446
|
-
},
|
1447
|
-
{
|
1448
|
-
"inputs": [
|
1449
|
-
{
|
1450
|
-
"internalType": "NftId",
|
1451
|
-
"name": "applicationNftId",
|
1452
|
-
"type": "uint96"
|
1453
|
-
},
|
1454
|
-
{
|
1455
|
-
"components": [
|
1456
|
-
{
|
1457
|
-
"internalType": "NftId",
|
1458
|
-
"name": "productNftId",
|
1459
|
-
"type": "uint96"
|
1460
|
-
},
|
1461
|
-
{
|
1462
|
-
"internalType": "NftId",
|
1463
|
-
"name": "bundleNftId",
|
1464
|
-
"type": "uint96"
|
1465
|
-
},
|
1466
|
-
{
|
1467
|
-
"internalType": "ReferralId",
|
1468
|
-
"name": "referralId",
|
1469
|
-
"type": "bytes8"
|
1470
|
-
},
|
1471
|
-
{
|
1472
|
-
"internalType": "RiskId",
|
1473
|
-
"name": "riskId",
|
1474
|
-
"type": "bytes8"
|
1475
|
-
},
|
1476
|
-
{
|
1477
|
-
"internalType": "uint256",
|
1478
|
-
"name": "sumInsuredAmount",
|
1479
|
-
"type": "uint256"
|
1480
|
-
},
|
1481
|
-
{
|
1482
|
-
"internalType": "uint256",
|
1483
|
-
"name": "premiumAmount",
|
1484
|
-
"type": "uint256"
|
1485
|
-
},
|
1486
|
-
{
|
1487
|
-
"internalType": "uint256",
|
1488
|
-
"name": "premiumPaidAmount",
|
1489
|
-
"type": "uint256"
|
1490
|
-
},
|
1491
|
-
{
|
1492
|
-
"internalType": "Seconds",
|
1493
|
-
"name": "lifetime",
|
1494
|
-
"type": "uint40"
|
1495
|
-
},
|
1496
|
-
{
|
1497
|
-
"internalType": "bytes",
|
1498
|
-
"name": "applicationData",
|
1499
|
-
"type": "bytes"
|
1500
|
-
},
|
1501
|
-
{
|
1502
|
-
"internalType": "bytes",
|
1503
|
-
"name": "policyData",
|
1504
|
-
"type": "bytes"
|
1505
|
-
},
|
1506
|
-
{
|
1507
|
-
"internalType": "uint16",
|
1508
|
-
"name": "claimsCount",
|
1509
|
-
"type": "uint16"
|
1510
|
-
},
|
1511
|
-
{
|
1512
|
-
"internalType": "uint16",
|
1513
|
-
"name": "openClaimsCount",
|
1514
|
-
"type": "uint16"
|
1515
|
-
},
|
1516
|
-
{
|
1517
|
-
"internalType": "uint256",
|
1518
|
-
"name": "payoutAmount",
|
1519
|
-
"type": "uint256"
|
1520
|
-
},
|
1521
|
-
{
|
1522
|
-
"internalType": "Timestamp",
|
1523
|
-
"name": "activatedAt",
|
1524
|
-
"type": "uint40"
|
1525
|
-
},
|
1526
|
-
{
|
1527
|
-
"internalType": "Timestamp",
|
1528
|
-
"name": "expiredAt",
|
1529
|
-
"type": "uint40"
|
1530
|
-
},
|
1531
|
-
{
|
1532
|
-
"internalType": "Timestamp",
|
1533
|
-
"name": "closedAt",
|
1534
|
-
"type": "uint40"
|
1535
|
-
}
|
1536
|
-
],
|
1537
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
1538
|
-
"name": "policy",
|
1539
|
-
"type": "tuple"
|
1540
|
-
},
|
1541
|
-
{
|
1542
|
-
"internalType": "StateId",
|
1543
|
-
"name": "newState",
|
1544
|
-
"type": "uint8"
|
1545
|
-
}
|
1546
|
-
],
|
1547
|
-
"name": "updateApplication",
|
1548
|
-
"outputs": [],
|
1549
|
-
"stateMutability": "nonpayable",
|
1550
|
-
"type": "function"
|
1551
|
-
},
|
1552
|
-
{
|
1553
|
-
"inputs": [
|
1554
|
-
{
|
1555
|
-
"internalType": "NftId",
|
1556
|
-
"name": "applicationNftId",
|
1557
|
-
"type": "uint96"
|
1558
|
-
},
|
1559
|
-
{
|
1560
|
-
"internalType": "StateId",
|
1561
|
-
"name": "newState",
|
1562
|
-
"type": "uint8"
|
1563
|
-
}
|
1564
|
-
],
|
1565
|
-
"name": "updateApplicationState",
|
1566
|
-
"outputs": [],
|
1567
|
-
"stateMutability": "nonpayable",
|
1568
|
-
"type": "function"
|
1569
|
-
},
|
1570
|
-
{
|
1571
|
-
"inputs": [
|
1572
|
-
{
|
1573
|
-
"internalType": "NftId",
|
1574
|
-
"name": "bundleNftId",
|
1575
|
-
"type": "uint96"
|
1576
|
-
},
|
1577
|
-
{
|
1578
|
-
"components": [
|
1579
|
-
{
|
1580
|
-
"internalType": "NftId",
|
1581
|
-
"name": "poolNftId",
|
1582
|
-
"type": "uint96"
|
1583
|
-
},
|
1584
|
-
{
|
1585
|
-
"components": [
|
1586
|
-
{
|
1587
|
-
"internalType": "UFixed",
|
1588
|
-
"name": "fractionalFee",
|
1589
|
-
"type": "uint256"
|
1590
|
-
},
|
1591
|
-
{
|
1592
|
-
"internalType": "uint256",
|
1593
|
-
"name": "fixedFee",
|
1594
|
-
"type": "uint256"
|
1595
|
-
}
|
1596
|
-
],
|
1597
|
-
"internalType": "struct Fee",
|
1598
|
-
"name": "fee",
|
1599
|
-
"type": "tuple"
|
1600
|
-
},
|
1601
|
-
{
|
1602
|
-
"internalType": "bytes",
|
1603
|
-
"name": "filter",
|
1604
|
-
"type": "bytes"
|
1605
|
-
},
|
1606
|
-
{
|
1607
|
-
"internalType": "Amount",
|
1608
|
-
"name": "capitalAmount",
|
1609
|
-
"type": "uint96"
|
1610
|
-
},
|
1611
|
-
{
|
1612
|
-
"internalType": "Amount",
|
1613
|
-
"name": "lockedAmount",
|
1614
|
-
"type": "uint96"
|
1615
|
-
},
|
1616
|
-
{
|
1617
|
-
"internalType": "Amount",
|
1618
|
-
"name": "feeAmount",
|
1619
|
-
"type": "uint96"
|
1620
|
-
},
|
1621
|
-
{
|
1622
|
-
"internalType": "Seconds",
|
1623
|
-
"name": "lifetime",
|
1624
|
-
"type": "uint40"
|
1625
|
-
},
|
1626
|
-
{
|
1627
|
-
"internalType": "Timestamp",
|
1628
|
-
"name": "expiredAt",
|
1629
|
-
"type": "uint40"
|
1630
|
-
},
|
1631
|
-
{
|
1632
|
-
"internalType": "Timestamp",
|
1633
|
-
"name": "closedAt",
|
1634
|
-
"type": "uint40"
|
1635
|
-
}
|
1636
|
-
],
|
1637
|
-
"internalType": "struct IBundle.BundleInfo",
|
1638
|
-
"name": "bundle",
|
1639
|
-
"type": "tuple"
|
1640
|
-
},
|
1641
|
-
{
|
1642
|
-
"internalType": "StateId",
|
1643
|
-
"name": "newState",
|
1644
|
-
"type": "uint8"
|
1645
|
-
}
|
1646
|
-
],
|
1647
|
-
"name": "updateBundle",
|
1648
|
-
"outputs": [],
|
1649
|
-
"stateMutability": "nonpayable",
|
1650
|
-
"type": "function"
|
1651
|
-
},
|
1652
|
-
{
|
1653
|
-
"inputs": [
|
1654
|
-
{
|
1655
|
-
"internalType": "NftId",
|
1656
|
-
"name": "bundleNftId",
|
1657
|
-
"type": "uint96"
|
1658
|
-
},
|
1659
|
-
{
|
1660
|
-
"internalType": "StateId",
|
1661
|
-
"name": "newState",
|
1662
|
-
"type": "uint8"
|
1663
|
-
}
|
1664
|
-
],
|
1665
|
-
"name": "updateBundleState",
|
1666
|
-
"outputs": [],
|
1667
|
-
"stateMutability": "nonpayable",
|
1668
|
-
"type": "function"
|
1669
|
-
},
|
1670
|
-
{
|
1671
|
-
"inputs": [
|
1672
|
-
{
|
1673
|
-
"internalType": "NftId",
|
1674
|
-
"name": "distributionNftId",
|
916
|
+
"internalType": "Amount",
|
917
|
+
"name": "newBalance",
|
1675
918
|
"type": "uint96"
|
1676
|
-
},
|
1677
|
-
{
|
1678
|
-
"components": [
|
1679
|
-
{
|
1680
|
-
"internalType": "NftId",
|
1681
|
-
"name": "productNftId",
|
1682
|
-
"type": "uint96"
|
1683
|
-
},
|
1684
|
-
{
|
1685
|
-
"internalType": "contract TokenHandler",
|
1686
|
-
"name": "tokenHandler",
|
1687
|
-
"type": "address"
|
1688
|
-
},
|
1689
|
-
{
|
1690
|
-
"components": [
|
1691
|
-
{
|
1692
|
-
"internalType": "UFixed",
|
1693
|
-
"name": "fractionalFee",
|
1694
|
-
"type": "uint256"
|
1695
|
-
},
|
1696
|
-
{
|
1697
|
-
"internalType": "uint256",
|
1698
|
-
"name": "fixedFee",
|
1699
|
-
"type": "uint256"
|
1700
|
-
}
|
1701
|
-
],
|
1702
|
-
"internalType": "struct Fee",
|
1703
|
-
"name": "minDistributionOwnerFee",
|
1704
|
-
"type": "tuple"
|
1705
|
-
},
|
1706
|
-
{
|
1707
|
-
"components": [
|
1708
|
-
{
|
1709
|
-
"internalType": "UFixed",
|
1710
|
-
"name": "fractionalFee",
|
1711
|
-
"type": "uint256"
|
1712
|
-
},
|
1713
|
-
{
|
1714
|
-
"internalType": "uint256",
|
1715
|
-
"name": "fixedFee",
|
1716
|
-
"type": "uint256"
|
1717
|
-
}
|
1718
|
-
],
|
1719
|
-
"internalType": "struct Fee",
|
1720
|
-
"name": "distributionFee",
|
1721
|
-
"type": "tuple"
|
1722
|
-
},
|
1723
|
-
{
|
1724
|
-
"internalType": "address",
|
1725
|
-
"name": "wallet",
|
1726
|
-
"type": "address"
|
1727
|
-
},
|
1728
|
-
{
|
1729
|
-
"internalType": "uint256",
|
1730
|
-
"name": "sumDistributionOwnerFees",
|
1731
|
-
"type": "uint256"
|
1732
|
-
}
|
1733
|
-
],
|
1734
|
-
"internalType": "struct ISetup.DistributionSetupInfo",
|
1735
|
-
"name": "setup",
|
1736
|
-
"type": "tuple"
|
1737
|
-
},
|
1738
|
-
{
|
1739
|
-
"internalType": "StateId",
|
1740
|
-
"name": "newState",
|
1741
|
-
"type": "uint8"
|
1742
|
-
}
|
1743
|
-
],
|
1744
|
-
"name": "updateDistributionSetup",
|
1745
|
-
"outputs": [],
|
1746
|
-
"stateMutability": "nonpayable",
|
1747
|
-
"type": "function"
|
1748
|
-
},
|
1749
|
-
{
|
1750
|
-
"inputs": [
|
1751
|
-
{
|
1752
|
-
"internalType": "NftId",
|
1753
|
-
"name": "distributionNftId",
|
1754
|
-
"type": "uint96"
|
1755
|
-
},
|
1756
|
-
{
|
1757
|
-
"internalType": "StateId",
|
1758
|
-
"name": "newState",
|
1759
|
-
"type": "uint8"
|
1760
|
-
}
|
1761
|
-
],
|
1762
|
-
"name": "updateDistributionSetupState",
|
1763
|
-
"outputs": [],
|
1764
|
-
"stateMutability": "nonpayable",
|
1765
|
-
"type": "function"
|
1766
|
-
},
|
1767
|
-
{
|
1768
|
-
"inputs": [
|
1769
|
-
{
|
1770
|
-
"internalType": "NftId",
|
1771
|
-
"name": "nftId",
|
1772
|
-
"type": "uint96"
|
1773
|
-
},
|
1774
|
-
{
|
1775
|
-
"components": [
|
1776
|
-
{
|
1777
|
-
"internalType": "DistributorType",
|
1778
|
-
"name": "distributorType",
|
1779
|
-
"type": "bytes8"
|
1780
|
-
},
|
1781
|
-
{
|
1782
|
-
"internalType": "bool",
|
1783
|
-
"name": "active",
|
1784
|
-
"type": "bool"
|
1785
|
-
},
|
1786
|
-
{
|
1787
|
-
"internalType": "bytes",
|
1788
|
-
"name": "data",
|
1789
|
-
"type": "bytes"
|
1790
|
-
},
|
1791
|
-
{
|
1792
|
-
"internalType": "uint256",
|
1793
|
-
"name": "sumCommisions",
|
1794
|
-
"type": "uint256"
|
1795
|
-
},
|
1796
|
-
{
|
1797
|
-
"internalType": "uint256",
|
1798
|
-
"name": "numPoliciesSold",
|
1799
|
-
"type": "uint256"
|
1800
|
-
}
|
1801
|
-
],
|
1802
|
-
"internalType": "struct IDistribution.DistributorInfo",
|
1803
|
-
"name": "info",
|
1804
|
-
"type": "tuple"
|
1805
|
-
},
|
1806
|
-
{
|
1807
|
-
"internalType": "StateId",
|
1808
|
-
"name": "newState",
|
1809
|
-
"type": "uint8"
|
1810
|
-
}
|
1811
|
-
],
|
1812
|
-
"name": "updateDistributor",
|
1813
|
-
"outputs": [],
|
1814
|
-
"stateMutability": "nonpayable",
|
1815
|
-
"type": "function"
|
1816
|
-
},
|
1817
|
-
{
|
1818
|
-
"inputs": [
|
1819
|
-
{
|
1820
|
-
"internalType": "NftId",
|
1821
|
-
"name": "nftId",
|
1822
|
-
"type": "uint96"
|
1823
|
-
},
|
1824
|
-
{
|
1825
|
-
"internalType": "StateId",
|
1826
|
-
"name": "newState",
|
1827
|
-
"type": "uint8"
|
1828
|
-
}
|
1829
|
-
],
|
1830
|
-
"name": "updateDistributorState",
|
1831
|
-
"outputs": [],
|
1832
|
-
"stateMutability": "nonpayable",
|
1833
|
-
"type": "function"
|
1834
|
-
},
|
1835
|
-
{
|
1836
|
-
"inputs": [
|
1837
|
-
{
|
1838
|
-
"internalType": "Key32",
|
1839
|
-
"name": "distributorKey",
|
1840
|
-
"type": "bytes32"
|
1841
|
-
},
|
1842
|
-
{
|
1843
|
-
"components": [
|
1844
|
-
{
|
1845
|
-
"internalType": "string",
|
1846
|
-
"name": "name",
|
1847
|
-
"type": "string"
|
1848
|
-
},
|
1849
|
-
{
|
1850
|
-
"internalType": "UFixed",
|
1851
|
-
"name": "minDiscountPercentage",
|
1852
|
-
"type": "uint256"
|
1853
|
-
},
|
1854
|
-
{
|
1855
|
-
"internalType": "UFixed",
|
1856
|
-
"name": "maxDiscountPercentage",
|
1857
|
-
"type": "uint256"
|
1858
|
-
},
|
1859
|
-
{
|
1860
|
-
"internalType": "UFixed",
|
1861
|
-
"name": "commissionPercentage",
|
1862
|
-
"type": "uint256"
|
1863
|
-
},
|
1864
|
-
{
|
1865
|
-
"internalType": "uint32",
|
1866
|
-
"name": "maxReferralCount",
|
1867
|
-
"type": "uint32"
|
1868
|
-
},
|
1869
|
-
{
|
1870
|
-
"internalType": "uint32",
|
1871
|
-
"name": "maxReferralLifetime",
|
1872
|
-
"type": "uint32"
|
1873
|
-
},
|
1874
|
-
{
|
1875
|
-
"internalType": "bool",
|
1876
|
-
"name": "allowSelfReferrals",
|
1877
|
-
"type": "bool"
|
1878
|
-
},
|
1879
|
-
{
|
1880
|
-
"internalType": "bool",
|
1881
|
-
"name": "allowRenewals",
|
1882
|
-
"type": "bool"
|
1883
|
-
},
|
1884
|
-
{
|
1885
|
-
"internalType": "bytes",
|
1886
|
-
"name": "data",
|
1887
|
-
"type": "bytes"
|
1888
|
-
}
|
1889
|
-
],
|
1890
|
-
"internalType": "struct IDistribution.DistributorTypeInfo",
|
1891
|
-
"name": "info",
|
1892
|
-
"type": "tuple"
|
1893
|
-
},
|
1894
|
-
{
|
1895
|
-
"internalType": "StateId",
|
1896
|
-
"name": "newState",
|
1897
|
-
"type": "uint8"
|
1898
919
|
}
|
1899
920
|
],
|
1900
|
-
"name": "updateDistributorType",
|
1901
|
-
"outputs": [],
|
1902
921
|
"stateMutability": "nonpayable",
|
1903
922
|
"type": "function"
|
1904
923
|
},
|
1905
924
|
{
|
1906
925
|
"inputs": [
|
1907
926
|
{
|
1908
|
-
"internalType": "
|
1909
|
-
"name": "
|
1910
|
-
"type": "
|
927
|
+
"internalType": "address",
|
928
|
+
"name": "product",
|
929
|
+
"type": "address"
|
1911
930
|
},
|
1912
931
|
{
|
1913
|
-
"internalType": "
|
1914
|
-
"name": "
|
1915
|
-
"type": "
|
932
|
+
"internalType": "address",
|
933
|
+
"name": "token",
|
934
|
+
"type": "address"
|
935
|
+
}
|
936
|
+
],
|
937
|
+
"name": "registerProduct",
|
938
|
+
"outputs": [
|
939
|
+
{
|
940
|
+
"internalType": "NftId",
|
941
|
+
"name": "productNftId",
|
942
|
+
"type": "uint96"
|
1916
943
|
}
|
1917
944
|
],
|
1918
|
-
"name": "updateDistributorTypeState",
|
1919
|
-
"outputs": [],
|
1920
945
|
"stateMutability": "nonpayable",
|
1921
946
|
"type": "function"
|
1922
947
|
},
|
1923
948
|
{
|
1924
949
|
"inputs": [
|
1925
950
|
{
|
1926
|
-
"internalType": "
|
1927
|
-
"name": "
|
1928
|
-
"type": "
|
1929
|
-
},
|
1930
|
-
{
|
1931
|
-
"components": [
|
1932
|
-
{
|
1933
|
-
"internalType": "NftId",
|
1934
|
-
"name": "productNftId",
|
1935
|
-
"type": "uint96"
|
1936
|
-
},
|
1937
|
-
{
|
1938
|
-
"internalType": "NftId",
|
1939
|
-
"name": "bundleNftId",
|
1940
|
-
"type": "uint96"
|
1941
|
-
},
|
1942
|
-
{
|
1943
|
-
"internalType": "ReferralId",
|
1944
|
-
"name": "referralId",
|
1945
|
-
"type": "bytes8"
|
1946
|
-
},
|
1947
|
-
{
|
1948
|
-
"internalType": "RiskId",
|
1949
|
-
"name": "riskId",
|
1950
|
-
"type": "bytes8"
|
1951
|
-
},
|
1952
|
-
{
|
1953
|
-
"internalType": "uint256",
|
1954
|
-
"name": "sumInsuredAmount",
|
1955
|
-
"type": "uint256"
|
1956
|
-
},
|
1957
|
-
{
|
1958
|
-
"internalType": "uint256",
|
1959
|
-
"name": "premiumAmount",
|
1960
|
-
"type": "uint256"
|
1961
|
-
},
|
1962
|
-
{
|
1963
|
-
"internalType": "uint256",
|
1964
|
-
"name": "premiumPaidAmount",
|
1965
|
-
"type": "uint256"
|
1966
|
-
},
|
1967
|
-
{
|
1968
|
-
"internalType": "Seconds",
|
1969
|
-
"name": "lifetime",
|
1970
|
-
"type": "uint40"
|
1971
|
-
},
|
1972
|
-
{
|
1973
|
-
"internalType": "bytes",
|
1974
|
-
"name": "applicationData",
|
1975
|
-
"type": "bytes"
|
1976
|
-
},
|
1977
|
-
{
|
1978
|
-
"internalType": "bytes",
|
1979
|
-
"name": "policyData",
|
1980
|
-
"type": "bytes"
|
1981
|
-
},
|
1982
|
-
{
|
1983
|
-
"internalType": "uint16",
|
1984
|
-
"name": "claimsCount",
|
1985
|
-
"type": "uint16"
|
1986
|
-
},
|
1987
|
-
{
|
1988
|
-
"internalType": "uint16",
|
1989
|
-
"name": "openClaimsCount",
|
1990
|
-
"type": "uint16"
|
1991
|
-
},
|
1992
|
-
{
|
1993
|
-
"internalType": "uint256",
|
1994
|
-
"name": "payoutAmount",
|
1995
|
-
"type": "uint256"
|
1996
|
-
},
|
1997
|
-
{
|
1998
|
-
"internalType": "Timestamp",
|
1999
|
-
"name": "activatedAt",
|
2000
|
-
"type": "uint40"
|
2001
|
-
},
|
2002
|
-
{
|
2003
|
-
"internalType": "Timestamp",
|
2004
|
-
"name": "expiredAt",
|
2005
|
-
"type": "uint40"
|
2006
|
-
},
|
2007
|
-
{
|
2008
|
-
"internalType": "Timestamp",
|
2009
|
-
"name": "closedAt",
|
2010
|
-
"type": "uint40"
|
2011
|
-
}
|
2012
|
-
],
|
2013
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
2014
|
-
"name": "policy",
|
2015
|
-
"type": "tuple"
|
951
|
+
"internalType": "RoleId",
|
952
|
+
"name": "roleId",
|
953
|
+
"type": "uint64"
|
2016
954
|
},
|
2017
955
|
{
|
2018
|
-
"internalType": "
|
2019
|
-
"name": "
|
2020
|
-
"type": "
|
956
|
+
"internalType": "address",
|
957
|
+
"name": "account",
|
958
|
+
"type": "address"
|
2021
959
|
}
|
2022
960
|
],
|
2023
|
-
"name": "
|
961
|
+
"name": "revokeRole",
|
2024
962
|
"outputs": [],
|
2025
963
|
"stateMutability": "nonpayable",
|
2026
964
|
"type": "function"
|
@@ -2028,17 +966,12 @@
|
|
2028
966
|
{
|
2029
967
|
"inputs": [
|
2030
968
|
{
|
2031
|
-
"internalType": "
|
2032
|
-
"name": "
|
2033
|
-
"type": "
|
2034
|
-
},
|
2035
|
-
{
|
2036
|
-
"internalType": "StateId",
|
2037
|
-
"name": "newState",
|
2038
|
-
"type": "uint8"
|
969
|
+
"internalType": "address",
|
970
|
+
"name": "",
|
971
|
+
"type": "address"
|
2039
972
|
}
|
2040
973
|
],
|
2041
|
-
"name": "
|
974
|
+
"name": "setAuthority",
|
2042
975
|
"outputs": [],
|
2043
976
|
"stateMutability": "nonpayable",
|
2044
977
|
"type": "function"
|
@@ -2046,59 +979,12 @@
|
|
2046
979
|
{
|
2047
980
|
"inputs": [
|
2048
981
|
{
|
2049
|
-
"internalType": "
|
2050
|
-
"name": "
|
2051
|
-
"type": "
|
2052
|
-
},
|
2053
|
-
{
|
2054
|
-
"components": [
|
2055
|
-
{
|
2056
|
-
"internalType": "string",
|
2057
|
-
"name": "name",
|
2058
|
-
"type": "string"
|
2059
|
-
},
|
2060
|
-
{
|
2061
|
-
"internalType": "contract IERC20Metadata",
|
2062
|
-
"name": "token",
|
2063
|
-
"type": "address"
|
2064
|
-
},
|
2065
|
-
{
|
2066
|
-
"internalType": "contract TokenHandler",
|
2067
|
-
"name": "tokenHandler",
|
2068
|
-
"type": "address"
|
2069
|
-
},
|
2070
|
-
{
|
2071
|
-
"internalType": "address",
|
2072
|
-
"name": "wallet",
|
2073
|
-
"type": "address"
|
2074
|
-
},
|
2075
|
-
{
|
2076
|
-
"internalType": "Amount",
|
2077
|
-
"name": "balanceAmount",
|
2078
|
-
"type": "uint96"
|
2079
|
-
},
|
2080
|
-
{
|
2081
|
-
"internalType": "Amount",
|
2082
|
-
"name": "feeAmount",
|
2083
|
-
"type": "uint96"
|
2084
|
-
},
|
2085
|
-
{
|
2086
|
-
"internalType": "bytes",
|
2087
|
-
"name": "data",
|
2088
|
-
"type": "bytes"
|
2089
|
-
}
|
2090
|
-
],
|
2091
|
-
"internalType": "struct IComponents.ComponentInfo",
|
2092
|
-
"name": "info",
|
2093
|
-
"type": "tuple"
|
2094
|
-
},
|
2095
|
-
{
|
2096
|
-
"internalType": "StateId",
|
2097
|
-
"name": "newState",
|
2098
|
-
"type": "uint8"
|
982
|
+
"internalType": "bool",
|
983
|
+
"name": "locked",
|
984
|
+
"type": "bool"
|
2099
985
|
}
|
2100
986
|
],
|
2101
|
-
"name": "
|
987
|
+
"name": "setInstanceLocked",
|
2102
988
|
"outputs": [],
|
2103
989
|
"stateMutability": "nonpayable",
|
2104
990
|
"type": "function"
|
@@ -2106,17 +992,12 @@
|
|
2106
992
|
{
|
2107
993
|
"inputs": [
|
2108
994
|
{
|
2109
|
-
"internalType": "
|
2110
|
-
"name": "
|
2111
|
-
"type": "
|
2112
|
-
},
|
2113
|
-
{
|
2114
|
-
"internalType": "StateId",
|
2115
|
-
"name": "newState",
|
2116
|
-
"type": "uint8"
|
995
|
+
"internalType": "contract InstanceReader",
|
996
|
+
"name": "instanceReader",
|
997
|
+
"type": "address"
|
2117
998
|
}
|
2118
999
|
],
|
2119
|
-
"name": "
|
1000
|
+
"name": "setInstanceReader",
|
2120
1001
|
"outputs": [],
|
2121
1002
|
"stateMutability": "nonpayable",
|
2122
1003
|
"type": "function"
|
@@ -2124,88 +1005,30 @@
|
|
2124
1005
|
{
|
2125
1006
|
"inputs": [
|
2126
1007
|
{
|
2127
|
-
"internalType": "
|
2128
|
-
"name": "
|
2129
|
-
"type": "
|
1008
|
+
"internalType": "RoleId",
|
1009
|
+
"name": "roleId",
|
1010
|
+
"type": "uint64"
|
2130
1011
|
},
|
2131
1012
|
{
|
2132
|
-
"
|
2133
|
-
|
2134
|
-
|
2135
|
-
|
2136
|
-
|
2137
|
-
|
2138
|
-
|
2139
|
-
|
2140
|
-
|
2141
|
-
|
2142
|
-
|
2143
|
-
|
2144
|
-
"internalType": "NftId",
|
2145
|
-
"name": "distributionNftId",
|
2146
|
-
"type": "uint96"
|
2147
|
-
},
|
2148
|
-
{
|
2149
|
-
"internalType": "NftId",
|
2150
|
-
"name": "poolNftId",
|
2151
|
-
"type": "uint96"
|
2152
|
-
},
|
2153
|
-
{
|
2154
|
-
"components": [
|
2155
|
-
{
|
2156
|
-
"internalType": "UFixed",
|
2157
|
-
"name": "fractionalFee",
|
2158
|
-
"type": "uint256"
|
2159
|
-
},
|
2160
|
-
{
|
2161
|
-
"internalType": "uint256",
|
2162
|
-
"name": "fixedFee",
|
2163
|
-
"type": "uint256"
|
2164
|
-
}
|
2165
|
-
],
|
2166
|
-
"internalType": "struct Fee",
|
2167
|
-
"name": "productFee",
|
2168
|
-
"type": "tuple"
|
2169
|
-
},
|
2170
|
-
{
|
2171
|
-
"components": [
|
2172
|
-
{
|
2173
|
-
"internalType": "UFixed",
|
2174
|
-
"name": "fractionalFee",
|
2175
|
-
"type": "uint256"
|
2176
|
-
},
|
2177
|
-
{
|
2178
|
-
"internalType": "uint256",
|
2179
|
-
"name": "fixedFee",
|
2180
|
-
"type": "uint256"
|
2181
|
-
}
|
2182
|
-
],
|
2183
|
-
"internalType": "struct Fee",
|
2184
|
-
"name": "processingFee",
|
2185
|
-
"type": "tuple"
|
2186
|
-
},
|
2187
|
-
{
|
2188
|
-
"internalType": "bool",
|
2189
|
-
"name": "isIntercepting",
|
2190
|
-
"type": "bool"
|
2191
|
-
},
|
2192
|
-
{
|
2193
|
-
"internalType": "address",
|
2194
|
-
"name": "wallet",
|
2195
|
-
"type": "address"
|
2196
|
-
}
|
2197
|
-
],
|
2198
|
-
"internalType": "struct ISetup.ProductSetupInfo",
|
2199
|
-
"name": "setup",
|
2200
|
-
"type": "tuple"
|
2201
|
-
},
|
1013
|
+
"internalType": "bool",
|
1014
|
+
"name": "active",
|
1015
|
+
"type": "bool"
|
1016
|
+
}
|
1017
|
+
],
|
1018
|
+
"name": "setRoleActive",
|
1019
|
+
"outputs": [],
|
1020
|
+
"stateMutability": "nonpayable",
|
1021
|
+
"type": "function"
|
1022
|
+
},
|
1023
|
+
{
|
1024
|
+
"inputs": [
|
2202
1025
|
{
|
2203
|
-
"internalType": "
|
2204
|
-
"name": "
|
2205
|
-
"type": "
|
1026
|
+
"internalType": "Seconds",
|
1027
|
+
"name": "stakeLockingPeriod",
|
1028
|
+
"type": "uint40"
|
2206
1029
|
}
|
2207
1030
|
],
|
2208
|
-
"name": "
|
1031
|
+
"name": "setStakingLockingPeriod",
|
2209
1032
|
"outputs": [],
|
2210
1033
|
"stateMutability": "nonpayable",
|
2211
1034
|
"type": "function"
|
@@ -2213,17 +1036,12 @@
|
|
2213
1036
|
{
|
2214
1037
|
"inputs": [
|
2215
1038
|
{
|
2216
|
-
"internalType": "
|
2217
|
-
"name": "
|
1039
|
+
"internalType": "Amount",
|
1040
|
+
"name": "maxStakedAmount",
|
2218
1041
|
"type": "uint96"
|
2219
|
-
},
|
2220
|
-
{
|
2221
|
-
"internalType": "StateId",
|
2222
|
-
"name": "newState",
|
2223
|
-
"type": "uint8"
|
2224
1042
|
}
|
2225
1043
|
],
|
2226
|
-
"name": "
|
1044
|
+
"name": "setStakingMaxAmount",
|
2227
1045
|
"outputs": [],
|
2228
1046
|
"stateMutability": "nonpayable",
|
2229
1047
|
"type": "function"
|
@@ -2231,59 +1049,12 @@
|
|
2231
1049
|
{
|
2232
1050
|
"inputs": [
|
2233
1051
|
{
|
2234
|
-
"internalType": "
|
2235
|
-
"name": "
|
2236
|
-
"type": "
|
2237
|
-
},
|
2238
|
-
{
|
2239
|
-
"components": [
|
2240
|
-
{
|
2241
|
-
"internalType": "NftId",
|
2242
|
-
"name": "distributorNftId",
|
2243
|
-
"type": "uint96"
|
2244
|
-
},
|
2245
|
-
{
|
2246
|
-
"internalType": "string",
|
2247
|
-
"name": "referralCode",
|
2248
|
-
"type": "string"
|
2249
|
-
},
|
2250
|
-
{
|
2251
|
-
"internalType": "UFixed",
|
2252
|
-
"name": "discountPercentage",
|
2253
|
-
"type": "uint256"
|
2254
|
-
},
|
2255
|
-
{
|
2256
|
-
"internalType": "uint32",
|
2257
|
-
"name": "maxReferrals",
|
2258
|
-
"type": "uint32"
|
2259
|
-
},
|
2260
|
-
{
|
2261
|
-
"internalType": "uint32",
|
2262
|
-
"name": "usedReferrals",
|
2263
|
-
"type": "uint32"
|
2264
|
-
},
|
2265
|
-
{
|
2266
|
-
"internalType": "Timestamp",
|
2267
|
-
"name": "expiryAt",
|
2268
|
-
"type": "uint40"
|
2269
|
-
},
|
2270
|
-
{
|
2271
|
-
"internalType": "bytes",
|
2272
|
-
"name": "data",
|
2273
|
-
"type": "bytes"
|
2274
|
-
}
|
2275
|
-
],
|
2276
|
-
"internalType": "struct IDistribution.ReferralInfo",
|
2277
|
-
"name": "referralInfo",
|
2278
|
-
"type": "tuple"
|
2279
|
-
},
|
2280
|
-
{
|
2281
|
-
"internalType": "StateId",
|
2282
|
-
"name": "newState",
|
2283
|
-
"type": "uint8"
|
1052
|
+
"internalType": "UFixed",
|
1053
|
+
"name": "rewardRate",
|
1054
|
+
"type": "uint160"
|
2284
1055
|
}
|
2285
1056
|
],
|
2286
|
-
"name": "
|
1057
|
+
"name": "setStakingRewardRate",
|
2287
1058
|
"outputs": [],
|
2288
1059
|
"stateMutability": "nonpayable",
|
2289
1060
|
"type": "function"
|
@@ -2291,17 +1062,17 @@
|
|
2291
1062
|
{
|
2292
1063
|
"inputs": [
|
2293
1064
|
{
|
2294
|
-
"internalType": "
|
2295
|
-
"name": "
|
2296
|
-
"type": "
|
1065
|
+
"internalType": "address",
|
1066
|
+
"name": "target",
|
1067
|
+
"type": "address"
|
2297
1068
|
},
|
2298
1069
|
{
|
2299
|
-
"internalType": "
|
2300
|
-
"name": "
|
2301
|
-
"type": "
|
1070
|
+
"internalType": "bool",
|
1071
|
+
"name": "locked",
|
1072
|
+
"type": "bool"
|
2302
1073
|
}
|
2303
1074
|
],
|
2304
|
-
"name": "
|
1075
|
+
"name": "setTargetLocked",
|
2305
1076
|
"outputs": [],
|
2306
1077
|
"stateMutability": "nonpayable",
|
2307
1078
|
"type": "function"
|
@@ -2309,34 +1080,60 @@
|
|
2309
1080
|
{
|
2310
1081
|
"inputs": [
|
2311
1082
|
{
|
2312
|
-
"internalType": "
|
2313
|
-
"name": "
|
2314
|
-
"type": "
|
1083
|
+
"internalType": "bytes4",
|
1084
|
+
"name": "interfaceId",
|
1085
|
+
"type": "bytes4"
|
1086
|
+
}
|
1087
|
+
],
|
1088
|
+
"name": "supportsInterface",
|
1089
|
+
"outputs": [
|
1090
|
+
{
|
1091
|
+
"internalType": "bool",
|
1092
|
+
"name": "",
|
1093
|
+
"type": "bool"
|
1094
|
+
}
|
1095
|
+
],
|
1096
|
+
"stateMutability": "view",
|
1097
|
+
"type": "function"
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
"inputs": [
|
1101
|
+
{
|
1102
|
+
"internalType": "address",
|
1103
|
+
"name": "target",
|
1104
|
+
"type": "address"
|
2315
1105
|
},
|
2316
1106
|
{
|
2317
1107
|
"components": [
|
2318
1108
|
{
|
2319
|
-
"internalType": "
|
2320
|
-
"name": "
|
2321
|
-
"type": "
|
1109
|
+
"internalType": "Str",
|
1110
|
+
"name": "name",
|
1111
|
+
"type": "bytes32"
|
2322
1112
|
},
|
2323
1113
|
{
|
2324
|
-
"internalType": "
|
2325
|
-
"name": "
|
2326
|
-
"type": "
|
1114
|
+
"internalType": "Selector",
|
1115
|
+
"name": "selector",
|
1116
|
+
"type": "bytes4"
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
"internalType": "Timestamp",
|
1120
|
+
"name": "createdAt",
|
1121
|
+
"type": "uint40"
|
2327
1122
|
}
|
2328
1123
|
],
|
2329
|
-
"internalType": "struct
|
2330
|
-
"name": "
|
2331
|
-
"type": "tuple"
|
2332
|
-
},
|
2333
|
-
{
|
2334
|
-
"internalType": "StateId",
|
2335
|
-
"name": "newState",
|
2336
|
-
"type": "uint8"
|
1124
|
+
"internalType": "struct IAccess.FunctionInfo[]",
|
1125
|
+
"name": "functions",
|
1126
|
+
"type": "tuple[]"
|
2337
1127
|
}
|
2338
1128
|
],
|
2339
|
-
"name": "
|
1129
|
+
"name": "unauthorizeFunctions",
|
1130
|
+
"outputs": [],
|
1131
|
+
"stateMutability": "nonpayable",
|
1132
|
+
"type": "function"
|
1133
|
+
},
|
1134
|
+
{
|
1135
|
+
"inputs": [],
|
1136
|
+
"name": "upgradeInstanceReader",
|
2340
1137
|
"outputs": [],
|
2341
1138
|
"stateMutability": "nonpayable",
|
2342
1139
|
"type": "function"
|
@@ -2344,18 +1141,19 @@
|
|
2344
1141
|
{
|
2345
1142
|
"inputs": [
|
2346
1143
|
{
|
2347
|
-
"internalType": "
|
2348
|
-
"name": "
|
2349
|
-
"type": "
|
2350
|
-
}
|
1144
|
+
"internalType": "Amount",
|
1145
|
+
"name": "dipAmount",
|
1146
|
+
"type": "uint96"
|
1147
|
+
}
|
1148
|
+
],
|
1149
|
+
"name": "withdrawStakingRewardReserves",
|
1150
|
+
"outputs": [
|
2351
1151
|
{
|
2352
|
-
"internalType": "
|
2353
|
-
"name": "
|
2354
|
-
"type": "
|
1152
|
+
"internalType": "Amount",
|
1153
|
+
"name": "newBalance",
|
1154
|
+
"type": "uint96"
|
2355
1155
|
}
|
2356
1156
|
],
|
2357
|
-
"name": "updateRiskState",
|
2358
|
-
"outputs": [],
|
2359
1157
|
"stateMutability": "nonpayable",
|
2360
1158
|
"type": "function"
|
2361
1159
|
}
|