@etherisc/gif-next 0.0.2-ac5f18b → 0.0.2-ad36a6a-080
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +475 -8
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1234 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.json +10 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1013 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1342 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1012 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1405 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +906 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +932 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1491 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1946 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -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 +1411 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1545 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1980 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +652 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.json +815 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2043 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1053 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +714 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3607 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.json +10 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.json +10 -0
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
- 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 +979 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -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 +765 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +871 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1276 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1431 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +822 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +931 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +937 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1267 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1062 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1612 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1098 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1370 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +826 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +517 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +886 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +896 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +950 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +400 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1268 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1056 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +827 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1129 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +940 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1614 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1162 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +701 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +685 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +432 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +700 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +110 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +131 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +35 -0
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +346 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +793 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +193 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +264 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +400 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +469 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +750 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1236 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +92 -0
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
- package/contracts/authorization/AccessAdmin.sol +592 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +221 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +135 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/distribution/Distribution.sol +295 -0
- package/contracts/distribution/DistributionService.sol +336 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/distribution/IDistributionService.sol +101 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +75 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
- package/contracts/examples/fire/FireProduct.sol +410 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
- package/contracts/instance/BundleSet.sol +126 -0
- package/contracts/instance/IInstance.sol +63 -0
- package/contracts/instance/IInstanceService.sol +92 -0
- package/contracts/instance/Instance.sol +229 -0
- package/contracts/instance/InstanceAdmin.sol +288 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +495 -0
- package/contracts/instance/InstanceService.sol +465 -0
- package/contracts/instance/InstanceServiceManager.sol +39 -0
- package/contracts/instance/InstanceStore.sol +287 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +111 -0
- package/contracts/instance/base/ObjectSet.sol +79 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +48 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/{Dip.sol → mock/Dip.sol} +2 -2
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +167 -0
- package/contracts/oracle/OracleService.sol +281 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +166 -0
- package/contracts/pool/BasicPoolAuthorization.sol +58 -0
- package/contracts/pool/BundleService.sol +461 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +143 -0
- package/contracts/pool/IPoolComponent.sol +68 -0
- package/contracts/pool/IPoolService.sol +171 -0
- package/contracts/pool/Pool.sol +353 -0
- package/contracts/pool/PoolService.sol +563 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +251 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +53 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +581 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +63 -0
- package/contracts/product/IClaimService.sol +122 -0
- package/contracts/product/IPolicyService.sol +80 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +53 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +686 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +432 -0
- package/contracts/product/RiskService.sol +96 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +250 -0
- package/contracts/registry/IRegistry.sol +170 -0
- package/contracts/registry/IRegistryService.sol +60 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +707 -0
- package/contracts/registry/RegistryAdmin.sol +464 -0
- package/contracts/registry/RegistryService.sol +259 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseRegistry.sol +491 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +198 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/Component.sol +268 -0
- package/contracts/shared/ComponentService.sol +641 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +116 -0
- package/contracts/shared/ContractLib.sol +38 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/shared/ILifecycle.sol +29 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +35 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +25 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InitializableERC165.sol +27 -0
- package/contracts/shared/InstanceLinkedComponent.sol +171 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +62 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +44 -0
- package/contracts/shared/Service.sol +87 -0
- package/contracts/shared/TokenHandler.sol +139 -0
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +498 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +183 -0
- package/contracts/staking/StakingService.sol +407 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +150 -0
- package/contracts/type/Blocknumber.sol +142 -0
- package/contracts/type/ClaimId.sol +80 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/NftId.sol +79 -0
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +275 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +90 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +57 -0
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/type/StateId.sol +136 -0
- package/contracts/type/String.sol +53 -0
- package/contracts/type/Timestamp.sol +146 -0
- package/contracts/type/UFixed.sol +355 -0
- package/contracts/type/Version.sol +110 -0
- package/contracts/upgradeability/IVersionable.sol +53 -0
- package/contracts/upgradeability/ProxyManager.sol +231 -0
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +29 -11
- package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
- package/artifacts/contracts/Lock.sol/Lock.json +0 -74
- package/contracts/Lock.sol +0 -34
@@ -0,0 +1,204 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {
|
5
|
+
PRODUCT, ORACLE, POOL, INSTANCE, COMPONENT, DISTRIBUTION, APPLICATION, POLICY, CLAIM, BUNDLE
|
6
|
+
} from "../../contracts/type/ObjectType.sol";
|
7
|
+
|
8
|
+
import {
|
9
|
+
DISTRIBUTION_OWNER_ROLE, ORACLE_OWNER_ROLE, POOL_OWNER_ROLE, PRODUCT_OWNER_ROLE
|
10
|
+
} from "../../contracts/type/RoleId.sol";
|
11
|
+
|
12
|
+
import {BundleSet} from "../instance/BundleSet.sol";
|
13
|
+
import {IAccess} from "../authorization/IAccess.sol";
|
14
|
+
import {Instance} from "../instance/Instance.sol";
|
15
|
+
import {InstanceAdmin} from "../instance/InstanceAdmin.sol";
|
16
|
+
import {InstanceStore} from "../instance/InstanceStore.sol";
|
17
|
+
import {ModuleAuthorization} from "../authorization/ModuleAuthorization.sol";
|
18
|
+
|
19
|
+
|
20
|
+
contract InstanceAuthorizationV3
|
21
|
+
is ModuleAuthorization
|
22
|
+
{
|
23
|
+
|
24
|
+
string public constant INSTANCE_TARGET_NAME = "Instance";
|
25
|
+
string public constant INSTANCE_STORE_TARGET_NAME = "InstanceStore";
|
26
|
+
string public constant INSTANCE_ADMIN_TARGET_NAME = "InstanceAdmin";
|
27
|
+
string public constant BUNDLE_SET_TARGET_NAME = "BundleSet";
|
28
|
+
|
29
|
+
string public constant INSTANCE_ROLE_NAME = "InstanceRole";
|
30
|
+
string public constant DISTRIBUTION_OWNER_ROLE_NAME = "DistributionOwnerRole";
|
31
|
+
string public constant ORACLE_OWNER_ROLE_NAME = "OracleOwnerRole";
|
32
|
+
string public constant POOL_OWNER_ROLE_NAME = "PoolOwnerRole";
|
33
|
+
string public constant PRODUCT_OWNER_ROLE_NAME = "ProductOwnerRole";
|
34
|
+
|
35
|
+
constructor() ModuleAuthorization(INSTANCE_TARGET_NAME) {}
|
36
|
+
|
37
|
+
|
38
|
+
function _setupRoles()
|
39
|
+
internal
|
40
|
+
override
|
41
|
+
{
|
42
|
+
_addGifRole(DISTRIBUTION_OWNER_ROLE(), DISTRIBUTION_OWNER_ROLE_NAME);
|
43
|
+
_addGifRole(ORACLE_OWNER_ROLE(), ORACLE_OWNER_ROLE_NAME);
|
44
|
+
_addGifRole(POOL_OWNER_ROLE(), POOL_OWNER_ROLE_NAME);
|
45
|
+
_addGifRole(PRODUCT_OWNER_ROLE(), PRODUCT_OWNER_ROLE_NAME);
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
function _setupTargets()
|
50
|
+
internal
|
51
|
+
override
|
52
|
+
{
|
53
|
+
// instance target
|
54
|
+
_addTargetWithRole(
|
55
|
+
INSTANCE_TARGET_NAME,
|
56
|
+
_getTargetRoleId(INSTANCE()),
|
57
|
+
INSTANCE_ROLE_NAME);
|
58
|
+
|
59
|
+
// instance supporting targets
|
60
|
+
_addTarget(INSTANCE_STORE_TARGET_NAME);
|
61
|
+
_addTarget(INSTANCE_ADMIN_TARGET_NAME);
|
62
|
+
_addTarget(BUNDLE_SET_TARGET_NAME);
|
63
|
+
|
64
|
+
// service targets relevant to instance
|
65
|
+
_addServiceTargetWithRole(INSTANCE());
|
66
|
+
_addServiceTargetWithRole(COMPONENT());
|
67
|
+
_addServiceTargetWithRole(DISTRIBUTION());
|
68
|
+
_addServiceTargetWithRole(ORACLE());
|
69
|
+
_addServiceTargetWithRole(POOL());
|
70
|
+
_addServiceTargetWithRole(BUNDLE());
|
71
|
+
_addServiceTargetWithRole(PRODUCT());
|
72
|
+
_addServiceTargetWithRole(APPLICATION());
|
73
|
+
_addServiceTargetWithRole(POLICY());
|
74
|
+
_addServiceTargetWithRole(CLAIM());
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
function _setupTargetAuthorizations()
|
79
|
+
internal
|
80
|
+
override
|
81
|
+
{
|
82
|
+
_setupInstanceAuthorization();
|
83
|
+
_setupInstanceAdminAuthorization();
|
84
|
+
_setupInstanceStoreAuthorization();
|
85
|
+
_setupBundleSetAuthorization();
|
86
|
+
}
|
87
|
+
|
88
|
+
|
89
|
+
function _setupBundleSetAuthorization()
|
90
|
+
internal
|
91
|
+
{
|
92
|
+
IAccess.FunctionInfo[] storage functions;
|
93
|
+
|
94
|
+
// authorize bundle service role
|
95
|
+
functions = _authorizeForTarget(BUNDLE_SET_TARGET_NAME, getServiceRole(BUNDLE()));
|
96
|
+
_authorize(functions, BundleSet.linkPolicy.selector, "linkPolicy");
|
97
|
+
_authorize(functions, BundleSet.unlinkPolicy.selector, "unlinkPolicy");
|
98
|
+
_authorize(functions, BundleSet.add.selector, "add");
|
99
|
+
_authorize(functions, BundleSet.lock.selector, "lock");
|
100
|
+
_authorize(functions, BundleSet.unlock.selector, "unlock");
|
101
|
+
}
|
102
|
+
|
103
|
+
|
104
|
+
function _setupInstanceAuthorization()
|
105
|
+
internal
|
106
|
+
{
|
107
|
+
IAccess.FunctionInfo[] storage functions;
|
108
|
+
|
109
|
+
// authorize instance service role
|
110
|
+
functions = _authorizeForTarget(INSTANCE_TARGET_NAME, getServiceRole(INSTANCE()));
|
111
|
+
_authorize(functions, Instance.setInstanceReader.selector, "setInstanceReader");
|
112
|
+
}
|
113
|
+
|
114
|
+
|
115
|
+
function _setupInstanceAdminAuthorization()
|
116
|
+
internal
|
117
|
+
{
|
118
|
+
IAccess.FunctionInfo[] storage functions;
|
119
|
+
|
120
|
+
// authorize instance role
|
121
|
+
functions = _authorizeForTarget(INSTANCE_ADMIN_TARGET_NAME, _getTargetRoleId(INSTANCE()));
|
122
|
+
_authorize(functions, InstanceAdmin.grantRole.selector, "grantRole");
|
123
|
+
|
124
|
+
// authorize instance service role
|
125
|
+
// functions = _authorizeForTarget(INSTANCE_ADMIN_TARGET_NAME, getServiceRole(INSTANCE()));
|
126
|
+
}
|
127
|
+
|
128
|
+
|
129
|
+
function _setupInstanceStoreAuthorization()
|
130
|
+
internal
|
131
|
+
{
|
132
|
+
IAccess.FunctionInfo[] storage functions;
|
133
|
+
|
134
|
+
// authorize component service role
|
135
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(COMPONENT()));
|
136
|
+
_authorize(functions, InstanceStore.createComponent.selector, "createComponent");
|
137
|
+
_authorize(functions, InstanceStore.updateComponent.selector, "updateComponent");
|
138
|
+
_authorize(functions, InstanceStore.createPool.selector, "createPool");
|
139
|
+
_authorize(functions, InstanceStore.createProduct.selector, "createProduct");
|
140
|
+
_authorize(functions, InstanceStore.updateProduct.selector, "updateProduct");
|
141
|
+
_authorize(functions, InstanceStore.increaseBalance.selector, "increaseBalance");
|
142
|
+
_authorize(functions, InstanceStore.decreaseBalance.selector, "decreaseBalance");
|
143
|
+
_authorize(functions, InstanceStore.increaseFees.selector, "increaseFees");
|
144
|
+
_authorize(functions, InstanceStore.decreaseFees.selector, "decreaseFees");
|
145
|
+
|
146
|
+
// authorize distribution service role
|
147
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(DISTRIBUTION()));
|
148
|
+
_authorize(functions, InstanceStore.createDistributorType.selector, "createDistributorType");
|
149
|
+
_authorize(functions, InstanceStore.updateDistributorType.selector, "updateDistributorType");
|
150
|
+
_authorize(functions, InstanceStore.updateDistributorTypeState.selector, "updateDistributorTypeState");
|
151
|
+
_authorize(functions, InstanceStore.createDistributor.selector, "createDistributor");
|
152
|
+
_authorize(functions, InstanceStore.updateDistributor.selector, "updateDistributor");
|
153
|
+
_authorize(functions, InstanceStore.updateDistributorState.selector, "updateDistributorState");
|
154
|
+
_authorize(functions, InstanceStore.createReferral.selector, "createReferral");
|
155
|
+
_authorize(functions, InstanceStore.updateReferral.selector, "updateReferral");
|
156
|
+
_authorize(functions, InstanceStore.updateReferralState.selector, "updateReferralState");
|
157
|
+
|
158
|
+
// authorize oracle service role
|
159
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(ORACLE()));
|
160
|
+
_authorize(functions, InstanceStore.createRequest.selector, "createRequest");
|
161
|
+
_authorize(functions, InstanceStore.updateRequest.selector, "updateRequest");
|
162
|
+
_authorize(functions, InstanceStore.updateRequestState.selector, "updateRequestState");
|
163
|
+
|
164
|
+
// authorize pool service role
|
165
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(POOL()));
|
166
|
+
_authorize(functions, InstanceStore.updatePool.selector, "updatePool");
|
167
|
+
|
168
|
+
// authorize bundle service role
|
169
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(BUNDLE()));
|
170
|
+
_authorize(functions, InstanceStore.createBundle.selector, "createBundle");
|
171
|
+
_authorize(functions, InstanceStore.updateBundle.selector, "updateBundle");
|
172
|
+
_authorize(functions, InstanceStore.updateBundleState.selector, "updateBundleState");
|
173
|
+
_authorize(functions, InstanceStore.increaseLocked.selector, "increaseLocked");
|
174
|
+
_authorize(functions, InstanceStore.decreaseLocked.selector, "decreaseLocked");
|
175
|
+
|
176
|
+
// authorize product service role
|
177
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(PRODUCT()));
|
178
|
+
_authorize(functions, InstanceStore.createRisk.selector, "createRisk");
|
179
|
+
_authorize(functions, InstanceStore.updateRisk.selector, "updateRisk");
|
180
|
+
_authorize(functions, InstanceStore.updateRiskState.selector, "updateRiskState");
|
181
|
+
|
182
|
+
// authorize application service role
|
183
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(APPLICATION()));
|
184
|
+
_authorize(functions, InstanceStore.createApplication.selector, "createApplication");
|
185
|
+
_authorize(functions, InstanceStore.updateApplication.selector, "updateApplication");
|
186
|
+
_authorize(functions, InstanceStore.updateApplicationState.selector, "updateApplicationState");
|
187
|
+
|
188
|
+
// authorize policy service role
|
189
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(POLICY()));
|
190
|
+
_authorize(functions, InstanceStore.updatePolicy.selector, "updatePolicy");
|
191
|
+
_authorize(functions, InstanceStore.updatePolicyState.selector, "updatePolicyState");
|
192
|
+
_authorize(functions, InstanceStore.createPremium.selector, "createPremium");
|
193
|
+
_authorize(functions, InstanceStore.updatePremiumState.selector, "updatePremiumState");
|
194
|
+
|
195
|
+
// authorize claim service role
|
196
|
+
functions = _authorizeForTarget(INSTANCE_STORE_TARGET_NAME, getServiceRole(CLAIM()));
|
197
|
+
_authorize(functions, InstanceStore.updatePolicyClaims.selector, "updatePolicyClaims");
|
198
|
+
_authorize(functions, InstanceStore.createClaim.selector, "createClaim");
|
199
|
+
_authorize(functions, InstanceStore.updateClaim.selector, "updateClaim");
|
200
|
+
_authorize(functions, InstanceStore.createPayout.selector, "createPayout");
|
201
|
+
_authorize(functions, InstanceStore.updatePayout.selector, "updatePayout");
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
@@ -0,0 +1,495 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {Amount} from "../type/Amount.sol";
|
5
|
+
import {ClaimId, ClaimIdLib} from "../type/ClaimId.sol";
|
6
|
+
import {DistributorType} from "../type/DistributorType.sol";
|
7
|
+
import {Key32} from "../type/Key32.sol";
|
8
|
+
import {NftId} from "../type/NftId.sol";
|
9
|
+
import {COMPONENT, DISTRIBUTOR, DISTRIBUTION, PREMIUM, PRODUCT, POLICY, POOL, BUNDLE} from "../type/ObjectType.sol";
|
10
|
+
import {PayoutId, PayoutIdLib} from "../type/PayoutId.sol";
|
11
|
+
import {ReferralId, ReferralStatus, ReferralLib, REFERRAL_OK, REFERRAL_ERROR_UNKNOWN, REFERRAL_ERROR_EXPIRED, REFERRAL_ERROR_EXHAUSTED} from "../type/Referral.sol";
|
12
|
+
import {RequestId} from "../type/RequestId.sol";
|
13
|
+
import {RiskId} from "../type/RiskId.sol";
|
14
|
+
import {RoleId} from "../type/RoleId.sol";
|
15
|
+
import {StateId} from "../type/StateId.sol";
|
16
|
+
import {UFixed, UFixedLib} from "../type/UFixed.sol";
|
17
|
+
|
18
|
+
import {IBundle} from "../instance/module/IBundle.sol";
|
19
|
+
import {IComponents} from "../instance/module/IComponents.sol";
|
20
|
+
import {IDistribution} from "../instance/module/IDistribution.sol";
|
21
|
+
import {IInstance} from "./IInstance.sol";
|
22
|
+
import {IKeyValueStore} from "../shared/IKeyValueStore.sol";
|
23
|
+
import {IOracle} from "../oracle/IOracle.sol";
|
24
|
+
import {IPolicy} from "../instance/module/IPolicy.sol";
|
25
|
+
import {IRisk} from "../instance/module/IRisk.sol";
|
26
|
+
import {TimestampLib} from "../type/Timestamp.sol";
|
27
|
+
|
28
|
+
import {InstanceStore} from "./InstanceStore.sol";
|
29
|
+
import {BundleSet} from "./BundleSet.sol";
|
30
|
+
|
31
|
+
|
32
|
+
contract InstanceReader {
|
33
|
+
|
34
|
+
error ErrorInstanceReaderAlreadyInitialized();
|
35
|
+
error ErrorInstanceReaderInstanceAddressZero();
|
36
|
+
|
37
|
+
bool private _initialized = false;
|
38
|
+
|
39
|
+
IInstance internal _instance;
|
40
|
+
InstanceStore internal _store;
|
41
|
+
BundleSet internal _bundleSet;
|
42
|
+
|
43
|
+
/// @dev This initializer needs to be called from the instance itself.
|
44
|
+
function initialize() public {
|
45
|
+
if(_initialized) {
|
46
|
+
revert ErrorInstanceReaderAlreadyInitialized();
|
47
|
+
}
|
48
|
+
|
49
|
+
initializeWithInstance(msg.sender);
|
50
|
+
}
|
51
|
+
|
52
|
+
/// @dev This initializer needs to be called from the instance itself.
|
53
|
+
function initializeWithInstance(address instanceAddress) public {
|
54
|
+
if(_initialized) {
|
55
|
+
revert ErrorInstanceReaderAlreadyInitialized();
|
56
|
+
}
|
57
|
+
|
58
|
+
_initialized = true;
|
59
|
+
_instance = IInstance(instanceAddress);
|
60
|
+
_store = _instance.getInstanceStore();
|
61
|
+
_bundleSet = _instance.getBundleSet();
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
// module specific functions
|
66
|
+
|
67
|
+
function getPolicyInfo(NftId policyNftId)
|
68
|
+
public
|
69
|
+
view
|
70
|
+
returns (IPolicy.PolicyInfo memory info)
|
71
|
+
{
|
72
|
+
bytes memory data = _store.getData(toPolicyKey(policyNftId));
|
73
|
+
if (data.length > 0) {
|
74
|
+
return abi.decode(data, (IPolicy.PolicyInfo));
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
function getPolicyState(NftId policyNftId)
|
79
|
+
public
|
80
|
+
view
|
81
|
+
returns (StateId state)
|
82
|
+
{
|
83
|
+
return _store.getState(toPolicyKey(policyNftId));
|
84
|
+
}
|
85
|
+
|
86
|
+
function getPremiumInfo(NftId policyNftId)
|
87
|
+
public
|
88
|
+
view
|
89
|
+
returns (IPolicy.PremiumInfo memory info)
|
90
|
+
{
|
91
|
+
bytes memory data = _store.getData(toPremiumKey(policyNftId));
|
92
|
+
if (data.length > 0) {
|
93
|
+
return abi.decode(data, (IPolicy.PremiumInfo));
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
function getPremiumInfoState(NftId policyNftId)
|
98
|
+
public
|
99
|
+
view
|
100
|
+
returns (StateId state)
|
101
|
+
{
|
102
|
+
return _store.getState(toPremiumKey(policyNftId));
|
103
|
+
}
|
104
|
+
|
105
|
+
function activeBundles(NftId poolNftId)
|
106
|
+
public
|
107
|
+
view
|
108
|
+
returns (uint256 bundles)
|
109
|
+
{
|
110
|
+
return _bundleSet.activeBundles(poolNftId);
|
111
|
+
}
|
112
|
+
|
113
|
+
function getActiveBundleNftId(NftId poolNftId, uint256 idx)
|
114
|
+
public
|
115
|
+
view
|
116
|
+
returns (NftId bundleNftId)
|
117
|
+
{
|
118
|
+
return _bundleSet.getActiveBundleNftId(poolNftId, idx);
|
119
|
+
}
|
120
|
+
|
121
|
+
function getBundleState(NftId bundleNftId)
|
122
|
+
public
|
123
|
+
view
|
124
|
+
returns (StateId state)
|
125
|
+
{
|
126
|
+
return _store.getState(toBundleKey(bundleNftId));
|
127
|
+
}
|
128
|
+
|
129
|
+
/// @dev Returns true iff policy is active.
|
130
|
+
function policyIsActive(NftId policyNftId)
|
131
|
+
public
|
132
|
+
view
|
133
|
+
returns (bool isCloseable)
|
134
|
+
{
|
135
|
+
IPolicy.PolicyInfo memory info = getPolicyInfo(policyNftId);
|
136
|
+
|
137
|
+
if (info.productNftId.eqz()) { return false; } // not closeable: policy does not exist (or does not belong to this instance)
|
138
|
+
if (info.activatedAt.eqz()) { return false; } // not closeable: not yet activated
|
139
|
+
if (info.activatedAt > TimestampLib.blockTimestamp()) { return false; } // not yet active
|
140
|
+
if (info.expiredAt <= TimestampLib.blockTimestamp()) { return false; } // already expired
|
141
|
+
|
142
|
+
return true;
|
143
|
+
}
|
144
|
+
|
145
|
+
function claims(NftId policyNftId)
|
146
|
+
public
|
147
|
+
view
|
148
|
+
returns (uint16 claims)
|
149
|
+
{
|
150
|
+
return getPolicyInfo(policyNftId).claimsCount;
|
151
|
+
}
|
152
|
+
|
153
|
+
|
154
|
+
function getClaimId(uint idx)
|
155
|
+
public
|
156
|
+
view
|
157
|
+
returns (ClaimId claimId)
|
158
|
+
{
|
159
|
+
return ClaimIdLib.toClaimId(idx + 1);
|
160
|
+
}
|
161
|
+
|
162
|
+
function getClaimInfo(NftId policyNftId, ClaimId claimId)
|
163
|
+
public
|
164
|
+
view
|
165
|
+
returns (IPolicy.ClaimInfo memory info)
|
166
|
+
{
|
167
|
+
bytes memory data = _store.getData(claimId.toKey32(policyNftId));
|
168
|
+
if (data.length > 0) {
|
169
|
+
return abi.decode(data, (IPolicy.ClaimInfo));
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
function getClaimState(NftId policyNftId, ClaimId claimId)
|
175
|
+
public
|
176
|
+
view
|
177
|
+
returns (StateId state)
|
178
|
+
{
|
179
|
+
return _store.getState(claimId.toKey32(policyNftId));
|
180
|
+
}
|
181
|
+
|
182
|
+
|
183
|
+
function payouts(NftId policyNftId, ClaimId claimId)
|
184
|
+
public
|
185
|
+
view
|
186
|
+
returns (uint24 payouts)
|
187
|
+
{
|
188
|
+
return getClaimInfo(policyNftId, claimId).payoutsCount;
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
function getPayoutId(ClaimId claimId, uint24 idx)
|
193
|
+
public
|
194
|
+
view
|
195
|
+
returns (PayoutId payoutId)
|
196
|
+
{
|
197
|
+
return PayoutIdLib.toPayoutId(claimId, idx + 1);
|
198
|
+
}
|
199
|
+
|
200
|
+
|
201
|
+
function getRemainingClaimableAmount(NftId policyNftId)
|
202
|
+
public
|
203
|
+
view
|
204
|
+
returns (Amount remainingClaimableAmount)
|
205
|
+
{
|
206
|
+
IPolicy.PolicyInfo memory info = getPolicyInfo(policyNftId);
|
207
|
+
return info.sumInsuredAmount - info.claimAmount;
|
208
|
+
}
|
209
|
+
|
210
|
+
function getPayoutInfo(NftId policyNftId, PayoutId payoutId)
|
211
|
+
public
|
212
|
+
view
|
213
|
+
returns (IPolicy.PayoutInfo memory info)
|
214
|
+
{
|
215
|
+
bytes memory data = _store.getData(payoutId.toKey32(policyNftId));
|
216
|
+
if (data.length > 0) {
|
217
|
+
return abi.decode(data, (IPolicy.PayoutInfo));
|
218
|
+
}
|
219
|
+
}
|
220
|
+
|
221
|
+
function getPayoutState(NftId policyNftId, PayoutId payoutId)
|
222
|
+
public
|
223
|
+
view
|
224
|
+
returns (StateId state)
|
225
|
+
{
|
226
|
+
return _store.getState(payoutId.toKey32(policyNftId));
|
227
|
+
}
|
228
|
+
|
229
|
+
function getRiskInfo(RiskId riskId)
|
230
|
+
public
|
231
|
+
view
|
232
|
+
returns (IRisk.RiskInfo memory info)
|
233
|
+
{
|
234
|
+
bytes memory data = _store.getData(riskId.toKey32());
|
235
|
+
if (data.length > 0) {
|
236
|
+
return abi.decode(data, (IRisk.RiskInfo));
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
function getWallet(NftId componentNftId)
|
241
|
+
public
|
242
|
+
view
|
243
|
+
returns (address tokenHandler)
|
244
|
+
{
|
245
|
+
bytes memory data = _store.getData(toComponentKey(componentNftId));
|
246
|
+
|
247
|
+
if (data.length > 0) {
|
248
|
+
IComponents.ComponentInfo memory info = abi.decode(data, (IComponents.ComponentInfo));
|
249
|
+
return info.wallet;
|
250
|
+
}
|
251
|
+
}
|
252
|
+
|
253
|
+
function getTokenHandler(NftId componentNftId)
|
254
|
+
public
|
255
|
+
view
|
256
|
+
returns (address tokenHandler)
|
257
|
+
{
|
258
|
+
bytes memory data = _store.getData(toComponentKey(componentNftId));
|
259
|
+
|
260
|
+
if (data.length > 0) {
|
261
|
+
IComponents.ComponentInfo memory info = abi.decode(data, (IComponents.ComponentInfo));
|
262
|
+
return address(info.tokenHandler);
|
263
|
+
}
|
264
|
+
}
|
265
|
+
|
266
|
+
function getBundleInfo(NftId bundleNftId)
|
267
|
+
public
|
268
|
+
view
|
269
|
+
returns (IBundle.BundleInfo memory info)
|
270
|
+
{
|
271
|
+
bytes memory data = _store.getData(toBundleKey(bundleNftId));
|
272
|
+
if (data.length > 0) {
|
273
|
+
return abi.decode(data, (IBundle.BundleInfo));
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
function getDistributorTypeInfo(DistributorType distributorType)
|
278
|
+
public
|
279
|
+
view
|
280
|
+
returns (IDistribution.DistributorTypeInfo memory info)
|
281
|
+
{
|
282
|
+
bytes memory data = _store.getData(distributorType.toKey32());
|
283
|
+
if (data.length > 0) {
|
284
|
+
return abi.decode(data, (IDistribution.DistributorTypeInfo));
|
285
|
+
}
|
286
|
+
}
|
287
|
+
|
288
|
+
function getDistributorInfo(NftId distributorNftId)
|
289
|
+
public
|
290
|
+
view
|
291
|
+
returns (IDistribution.DistributorInfo memory info)
|
292
|
+
{
|
293
|
+
bytes memory data = _store.getData(toDistributorKey(distributorNftId));
|
294
|
+
if (data.length > 0) {
|
295
|
+
return abi.decode(data, (IDistribution.DistributorInfo));
|
296
|
+
}
|
297
|
+
}
|
298
|
+
|
299
|
+
function getBalanceAmount(NftId targetNftId) external view returns (Amount) {
|
300
|
+
return _store.getBalanceAmount(targetNftId);
|
301
|
+
}
|
302
|
+
|
303
|
+
function getLockedAmount(NftId targetNftId) external view returns (Amount) {
|
304
|
+
return _store.getLockedAmount(targetNftId);
|
305
|
+
}
|
306
|
+
|
307
|
+
function getFeeAmount(NftId targetNftId) external view returns (Amount) {
|
308
|
+
return _store.getFeeAmount(targetNftId);
|
309
|
+
}
|
310
|
+
|
311
|
+
function getComponentInfo(NftId componentNftId)
|
312
|
+
public
|
313
|
+
view
|
314
|
+
returns (IComponents.ComponentInfo memory info)
|
315
|
+
{
|
316
|
+
bytes memory data = _store.getData(toComponentKey(componentNftId));
|
317
|
+
if (data.length > 0) {
|
318
|
+
return abi.decode(data, (IComponents.ComponentInfo));
|
319
|
+
}
|
320
|
+
}
|
321
|
+
|
322
|
+
function getProductInfo(NftId productNftId)
|
323
|
+
public
|
324
|
+
view
|
325
|
+
returns (IComponents.ProductInfo memory info)
|
326
|
+
{
|
327
|
+
bytes memory data = _store.getData(toProductKey(productNftId));
|
328
|
+
if (data.length > 0) {
|
329
|
+
return abi.decode(data, (IComponents.ProductInfo));
|
330
|
+
}
|
331
|
+
}
|
332
|
+
|
333
|
+
function getPoolInfo(NftId poolNftId)
|
334
|
+
public
|
335
|
+
view
|
336
|
+
returns (IComponents.PoolInfo memory info)
|
337
|
+
{
|
338
|
+
bytes memory data = _store.getData(toPoolKey(poolNftId));
|
339
|
+
if (data.length > 0) {
|
340
|
+
return abi.decode(data, (IComponents.PoolInfo));
|
341
|
+
}
|
342
|
+
}
|
343
|
+
|
344
|
+
function getReferralInfo(ReferralId referralId)
|
345
|
+
public
|
346
|
+
view
|
347
|
+
returns (IDistribution.ReferralInfo memory info)
|
348
|
+
{
|
349
|
+
bytes memory data = _store.getData(referralId.toKey32());
|
350
|
+
if (data.length > 0) {
|
351
|
+
return abi.decode(data, (IDistribution.ReferralInfo));
|
352
|
+
}
|
353
|
+
}
|
354
|
+
|
355
|
+
function getRequestInfo(RequestId requestId)
|
356
|
+
public
|
357
|
+
view
|
358
|
+
returns (IOracle.RequestInfo memory requestInfo)
|
359
|
+
{
|
360
|
+
bytes memory data = _store.getData(requestId.toKey32());
|
361
|
+
if (data.length > 0) {
|
362
|
+
return abi.decode(data, (IOracle.RequestInfo));
|
363
|
+
}
|
364
|
+
}
|
365
|
+
|
366
|
+
function getMetadata(Key32 key)
|
367
|
+
public
|
368
|
+
view
|
369
|
+
returns (IKeyValueStore.Metadata memory metadata)
|
370
|
+
{
|
371
|
+
return _store.getMetadata(key);
|
372
|
+
}
|
373
|
+
|
374
|
+
function getState(Key32 key)
|
375
|
+
public
|
376
|
+
view
|
377
|
+
returns (StateId state)
|
378
|
+
{
|
379
|
+
return _store.getMetadata(key).state;
|
380
|
+
}
|
381
|
+
|
382
|
+
|
383
|
+
function toReferralId(
|
384
|
+
NftId distributionNftId,
|
385
|
+
string memory referralCode
|
386
|
+
)
|
387
|
+
public
|
388
|
+
pure
|
389
|
+
returns (ReferralId referralId)
|
390
|
+
{
|
391
|
+
return ReferralLib.toReferralId(
|
392
|
+
distributionNftId,
|
393
|
+
referralCode);
|
394
|
+
}
|
395
|
+
|
396
|
+
|
397
|
+
function getDiscountPercentage(ReferralId referralId)
|
398
|
+
public
|
399
|
+
view
|
400
|
+
returns (
|
401
|
+
UFixed discountPercentage,
|
402
|
+
ReferralStatus status
|
403
|
+
)
|
404
|
+
{
|
405
|
+
IDistribution.ReferralInfo memory info = getReferralInfo(
|
406
|
+
referralId);
|
407
|
+
|
408
|
+
if (info.expiryAt.eqz()) {
|
409
|
+
return (
|
410
|
+
UFixedLib.zero(),
|
411
|
+
REFERRAL_ERROR_UNKNOWN());
|
412
|
+
}
|
413
|
+
|
414
|
+
if (info.expiryAt < TimestampLib.blockTimestamp()) {
|
415
|
+
return (
|
416
|
+
UFixedLib.zero(),
|
417
|
+
REFERRAL_ERROR_EXPIRED());
|
418
|
+
}
|
419
|
+
|
420
|
+
if (info.usedReferrals >= info.maxReferrals) {
|
421
|
+
return (
|
422
|
+
UFixedLib.zero(),
|
423
|
+
REFERRAL_ERROR_EXHAUSTED());
|
424
|
+
}
|
425
|
+
|
426
|
+
return (
|
427
|
+
info.discountPercentage,
|
428
|
+
REFERRAL_OK()
|
429
|
+
);
|
430
|
+
}
|
431
|
+
|
432
|
+
|
433
|
+
function hasRole(address account, RoleId roleId) public view returns (bool isMember) {
|
434
|
+
return _instance.getInstanceAdmin().hasRole(account, roleId);
|
435
|
+
}
|
436
|
+
|
437
|
+
|
438
|
+
function hasAdminRole(address account, RoleId roleId) public view returns (bool isMember) {
|
439
|
+
return _instance.getInstanceAdmin().hasAdminRole(account, roleId);
|
440
|
+
}
|
441
|
+
|
442
|
+
|
443
|
+
function isTargetLocked(address target) public view returns (bool) {
|
444
|
+
return _instance.getInstanceAdmin().isTargetLocked(target);
|
445
|
+
}
|
446
|
+
|
447
|
+
function toPolicyKey(NftId policyNftId) public pure returns (Key32) {
|
448
|
+
return policyNftId.toKey32(POLICY());
|
449
|
+
}
|
450
|
+
|
451
|
+
function toPremiumKey(NftId policyNftId) public pure returns (Key32) {
|
452
|
+
return policyNftId.toKey32(PREMIUM());
|
453
|
+
}
|
454
|
+
|
455
|
+
function toDistributorKey(NftId distributorNftId) public pure returns (Key32) {
|
456
|
+
return distributorNftId.toKey32(DISTRIBUTOR());
|
457
|
+
}
|
458
|
+
|
459
|
+
function toBundleKey(NftId poolNftId) public pure returns (Key32) {
|
460
|
+
return poolNftId.toKey32(BUNDLE());
|
461
|
+
}
|
462
|
+
|
463
|
+
function toComponentKey(NftId componentNftId) public pure returns (Key32) {
|
464
|
+
return componentNftId.toKey32(COMPONENT());
|
465
|
+
}
|
466
|
+
|
467
|
+
function toDistributionKey(NftId distributionNftId) public pure returns (Key32) {
|
468
|
+
return distributionNftId.toKey32(DISTRIBUTION());
|
469
|
+
}
|
470
|
+
|
471
|
+
function toPoolKey(NftId poolNftId) public pure returns (Key32) {
|
472
|
+
return poolNftId.toKey32(POOL());
|
473
|
+
}
|
474
|
+
|
475
|
+
function toProductKey(NftId productNftId) public pure returns (Key32) {
|
476
|
+
return productNftId.toKey32(PRODUCT());
|
477
|
+
}
|
478
|
+
|
479
|
+
// low level function
|
480
|
+
function getInstance() external view returns (IInstance instance) {
|
481
|
+
return _instance;
|
482
|
+
}
|
483
|
+
|
484
|
+
function getInstanceStore() external view returns (IKeyValueStore store) {
|
485
|
+
return _store;
|
486
|
+
}
|
487
|
+
|
488
|
+
function toUFixed(uint256 value, int8 exp) public pure returns (UFixed) {
|
489
|
+
return UFixedLib.toUFixed(value, exp);
|
490
|
+
}
|
491
|
+
|
492
|
+
function toInt(UFixed value) public pure returns (uint256) {
|
493
|
+
return UFixedLib.toInt(value);
|
494
|
+
}
|
495
|
+
}
|