@etherisc/gif-next 0.0.2-e769e2e-077 → 0.0.2-e802d97-477
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +19 -13
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +79 -73
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +114 -56
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +11 -5
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +7 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +25 -6
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +12 -22
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +47 -20
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +126 -30
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +195 -64
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +77 -63
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +104 -34
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +246 -104
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +2 -2
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +8 -116
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +10 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +718 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +55 -41
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +102 -40
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +7 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +11 -5
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +22 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +18 -12
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +56 -35
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +95 -37
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +39 -25
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +96 -34
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +81 -67
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +115 -53
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +7 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +7 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +7 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +7 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +11 -5
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +7 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +59 -45
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +104 -42
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +69 -55
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +109 -47
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +18 -12
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +25 -19
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +87 -29
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +150 -53
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +187 -67
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +328 -103
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +407 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +197 -72
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +87 -39
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +752 -148
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +2 -2
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +185 -135
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1715 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1728 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1806 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1824 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +18 -12
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +92 -63
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +102 -46
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +7 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +11 -5
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +14 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +11 -5
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +0 -10
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +7 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +21 -3
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +7 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +7 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +18 -12
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +10 -20
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +6 -6
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +13 -7
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +31 -13
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +64 -16
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +15 -9
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +7 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +424 -593
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +497 -49
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +598 -627
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +149 -48
- 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 +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +593 -74
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +119 -29
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2189 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +2 -2
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +68 -4
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +40 -2
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +2 -2
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +28 -4
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +15 -2
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
- 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 +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +76 -2
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +17 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +2 -2
- package/contracts/distribution/Distribution.sol +2 -4
- package/contracts/distribution/DistributionService.sol +3 -2
- package/contracts/distribution/DistributionServiceManager.sol +9 -18
- package/contracts/distribution/IDistributionComponent.sol +1 -1
- package/contracts/distribution/IDistributionService.sol +1 -1
- package/contracts/instance/IInstance.sol +11 -6
- package/contracts/instance/IInstanceService.sol +3 -5
- package/contracts/instance/Instance.sol +29 -21
- package/contracts/instance/InstanceAdmin.sol +331 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +192 -151
- package/contracts/instance/InstanceReader.sol +30 -6
- package/contracts/instance/InstanceService.sol +69 -55
- package/contracts/instance/InstanceServiceManager.sol +10 -20
- package/contracts/instance/InstanceStore.sol +64 -42
- package/contracts/instance/base/BalanceStore.sol +1 -1
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/module/IAccess.sol +2 -10
- package/contracts/mock/Dip.sol +26 -0
- package/contracts/oracle/IOracle.sol +20 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +145 -0
- package/contracts/oracle/OracleService.sol +277 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +6 -23
- package/contracts/pool/BundleServiceManager.sol +9 -18
- package/contracts/pool/IBundleService.sol +1 -1
- package/contracts/pool/IPoolService.sol +4 -1
- package/contracts/pool/PoolService.sol +45 -13
- package/contracts/pool/PoolServiceManager.sol +9 -18
- package/contracts/product/ApplicationService.sol +6 -5
- package/contracts/product/ApplicationServiceManager.sol +9 -6
- package/contracts/product/ClaimService.sol +13 -7
- package/contracts/product/ClaimServiceManager.sol +9 -6
- package/contracts/product/IApplicationService.sol +1 -1
- package/contracts/product/IClaimService.sol +7 -1
- package/contracts/product/IPolicyService.sol +1 -1
- package/contracts/product/IPricingService.sol +1 -1
- package/contracts/product/IProductService.sol +1 -1
- package/contracts/product/PolicyService.sol +10 -6
- package/contracts/product/PolicyServiceManager.sol +9 -21
- package/contracts/product/PricingService.sol +10 -9
- package/contracts/product/PricingServiceManager.sol +9 -18
- package/contracts/product/Product.sol +1 -1
- package/contracts/product/ProductService.sol +7 -5
- package/contracts/product/ProductServiceManager.sol +9 -21
- package/contracts/registry/ChainNft.sol +1 -0
- package/contracts/registry/IRegistry.sol +37 -24
- package/contracts/registry/IRegistryService.sol +26 -36
- package/contracts/registry/Registry.sol +164 -117
- package/contracts/registry/RegistryAdmin.sol +237 -0
- package/contracts/registry/RegistryService.sol +22 -83
- package/contracts/registry/RegistryServiceManager.sol +21 -23
- package/contracts/registry/ReleaseManager.sol +448 -223
- package/contracts/registry/TokenRegistry.sol +187 -59
- package/contracts/shared/AccessManagerCustom.sol +736 -0
- package/contracts/shared/AccessManagerExtended.sol +470 -0
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
- package/contracts/shared/Component.sol +8 -13
- package/contracts/shared/ComponentService.sol +35 -13
- package/contracts/shared/ComponentVerifyingService.sol +13 -7
- package/contracts/shared/ERC165.sol +1 -1
- package/contracts/shared/IAccessManagerExtended.sol +74 -0
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
- package/contracts/shared/IComponent.sol +3 -7
- package/contracts/shared/IComponentService.sol +11 -0
- package/contracts/shared/IKeyValueStore.sol +1 -1
- package/contracts/shared/INftOwnable.sol +1 -1
- package/contracts/shared/IPolicyHolder.sol +6 -1
- package/contracts/shared/IService.sol +1 -1
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +1 -2
- package/contracts/shared/KeyValueStore.sol +24 -66
- package/contracts/shared/Lifecycle.sol +11 -2
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +2 -13
- package/contracts/shared/PolicyHolder.sol +21 -13
- package/contracts/shared/ProxyManager.sol +31 -1
- package/contracts/shared/Service.sol +1 -1
- package/contracts/staking/IStaking.sol +127 -36
- package/contracts/staking/IStakingService.sol +83 -39
- package/contracts/staking/StakeManagerLib.sol +179 -0
- package/contracts/staking/Staking.sol +432 -93
- package/contracts/staking/StakingManager.sol +22 -14
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +245 -39
- package/contracts/staking/StakingServiceManager.sol +8 -4
- package/contracts/staking/StakingStore.sol +572 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/type/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +15 -1
- package/contracts/type/Blocknumber.sol +14 -2
- package/contracts/type/Fee.sol +1 -1
- package/contracts/type/NftId.sol +9 -4
- package/contracts/type/NftIdSet.sol +1 -1
- package/contracts/type/ObjectType.sol +12 -9
- package/contracts/type/Referral.sol +1 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +1 -1
- package/contracts/type/RoleId.sol +16 -8
- package/contracts/type/Seconds.sol +27 -0
- package/contracts/type/StateId.sol +27 -2
- package/contracts/type/Timestamp.sol +6 -2
- package/contracts/type/Version.sol +1 -1
- package/package.json +3 -3
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1348
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -308
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- package/contracts/instance/InstanceAccessManager.sol +0 -543
- package/contracts/registry/RegistryAccessManager.sol +0 -213
- package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +0 -13
@@ -0,0 +1,207 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
|
+
|
6
|
+
import {Amount, AmountLib} from "../type/Amount.sol";
|
7
|
+
import {Component} from "../shared/Component.sol";
|
8
|
+
import {IRegistry} from "../registry/IRegistry.sol";
|
9
|
+
import {IRegistryService} from "../registry/IRegistryService.sol";
|
10
|
+
import {IStaking} from "./IStaking.sol";
|
11
|
+
import {Key32} from "../type/Key32.sol";
|
12
|
+
import {NftId} from "../type/NftId.sol";
|
13
|
+
import {ObjectType, INSTANCE, PROTOCOL, TARGET} from "../type/ObjectType.sol";
|
14
|
+
import {Seconds, SecondsLib} from "../type/Seconds.sol";
|
15
|
+
import {StakingReader} from "./StakingReader.sol";
|
16
|
+
import {UFixed, UFixedLib} from "../type/UFixed.sol";
|
17
|
+
|
18
|
+
|
19
|
+
library TargetManagerLib {
|
20
|
+
|
21
|
+
function updateLockingPeriod(
|
22
|
+
IStaking staking,
|
23
|
+
NftId targetNftId,
|
24
|
+
Seconds lockingPeriod
|
25
|
+
)
|
26
|
+
external
|
27
|
+
view
|
28
|
+
returns (
|
29
|
+
Seconds oldLockingPeriod,
|
30
|
+
IStaking.TargetInfo memory targetInfo
|
31
|
+
)
|
32
|
+
{
|
33
|
+
StakingReader reader = staking.getStakingReader();
|
34
|
+
|
35
|
+
// check target exists
|
36
|
+
if(!reader.isTarget(targetNftId)) {
|
37
|
+
revert IStaking.ErrorStakingTargetNotFound(targetNftId);
|
38
|
+
}
|
39
|
+
|
40
|
+
checkLockingPeriod(targetNftId, lockingPeriod);
|
41
|
+
|
42
|
+
targetInfo = reader.getTargetInfo(targetNftId);
|
43
|
+
oldLockingPeriod = targetInfo.lockingPeriod;
|
44
|
+
|
45
|
+
targetInfo.lockingPeriod = lockingPeriod;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
function updateRewardRate(
|
50
|
+
IStaking staking,
|
51
|
+
NftId targetNftId,
|
52
|
+
UFixed rewardRate
|
53
|
+
)
|
54
|
+
external
|
55
|
+
view
|
56
|
+
returns (
|
57
|
+
UFixed oldRewardRate,
|
58
|
+
IStaking.TargetInfo memory targetInfo
|
59
|
+
)
|
60
|
+
{
|
61
|
+
StakingReader reader = staking.getStakingReader();
|
62
|
+
|
63
|
+
// check target exists
|
64
|
+
if(!reader.isTarget(targetNftId)) {
|
65
|
+
revert IStaking.ErrorStakingTargetNotFound(targetNftId);
|
66
|
+
}
|
67
|
+
|
68
|
+
checkRewardRate(targetNftId, rewardRate);
|
69
|
+
|
70
|
+
targetInfo = reader.getTargetInfo(targetNftId);
|
71
|
+
oldRewardRate = targetInfo.rewardRate;
|
72
|
+
|
73
|
+
targetInfo.rewardRate = rewardRate;
|
74
|
+
}
|
75
|
+
|
76
|
+
|
77
|
+
function checkTargetParameters(
|
78
|
+
IRegistry registry,
|
79
|
+
StakingReader stakingReader,
|
80
|
+
NftId targetNftId,
|
81
|
+
ObjectType expectedObjectType,
|
82
|
+
Seconds initialLockingPeriod,
|
83
|
+
UFixed initialRewardRate
|
84
|
+
)
|
85
|
+
external
|
86
|
+
view
|
87
|
+
{
|
88
|
+
// target nft id must not be zero
|
89
|
+
if (targetNftId.eqz()) {
|
90
|
+
revert IStaking.ErrorStakingTargetNftIdZero();
|
91
|
+
}
|
92
|
+
|
93
|
+
// only accept "new" targets to be registered
|
94
|
+
if (stakingReader.isTarget(targetNftId)) {
|
95
|
+
revert IStaking.ErrorStakingTargetAlreadyRegistered(targetNftId);
|
96
|
+
}
|
97
|
+
|
98
|
+
// target object type must be allowed
|
99
|
+
if (!isTargetTypeSupported(expectedObjectType)) {
|
100
|
+
revert IStaking.ErrorStakingTargetTypeNotSupported(targetNftId, expectedObjectType);
|
101
|
+
}
|
102
|
+
|
103
|
+
checkLockingPeriod(targetNftId, initialLockingPeriod);
|
104
|
+
checkRewardRate(targetNftId, initialRewardRate);
|
105
|
+
|
106
|
+
// target nft id must be known and registered with the expected object type
|
107
|
+
if (!registry.isRegistered(targetNftId)) {
|
108
|
+
revert IStaking.ErrorStakingTargetNotFound(targetNftId);
|
109
|
+
} else {
|
110
|
+
// check that expected object type matches with registered object type
|
111
|
+
ObjectType actualObjectType = registry.getObjectInfo(targetNftId).objectType;
|
112
|
+
if (actualObjectType != expectedObjectType) {
|
113
|
+
revert IStaking.ErrorStakingTargetUnexpectedObjectType(targetNftId, expectedObjectType, actualObjectType);
|
114
|
+
}
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
function isTargetTypeSupported(ObjectType objectType)
|
120
|
+
public
|
121
|
+
pure
|
122
|
+
returns (bool isSupported)
|
123
|
+
{
|
124
|
+
if(objectType == PROTOCOL()) { return true; }
|
125
|
+
if(objectType == INSTANCE()) { return true; }
|
126
|
+
|
127
|
+
return false;
|
128
|
+
}
|
129
|
+
|
130
|
+
|
131
|
+
function checkLockingPeriod(NftId targetNftId, Seconds lockingPeriod)
|
132
|
+
public
|
133
|
+
pure
|
134
|
+
{
|
135
|
+
// check locking period is > 0
|
136
|
+
if (lockingPeriod.eqz()) {
|
137
|
+
revert IStaking.ErrorStakingLockingPeriodZero(targetNftId);
|
138
|
+
}
|
139
|
+
|
140
|
+
// check locking period <= max locking period
|
141
|
+
if (lockingPeriod > getMaxLockingPeriod()) {
|
142
|
+
revert IStaking.ErrorStakingLockingPeriodTooLong(targetNftId, getMaxLockingPeriod(), lockingPeriod);
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
|
147
|
+
function checkRewardRate(NftId targetNftId, UFixed rewardRate)
|
148
|
+
public
|
149
|
+
pure
|
150
|
+
{
|
151
|
+
// check reward rate <= max reward rate
|
152
|
+
if (rewardRate > getMaxRewardRate()) {
|
153
|
+
revert IStaking.ErrorStakingRewardRateTooHigh(targetNftId, getMaxRewardRate(), rewardRate);
|
154
|
+
}
|
155
|
+
}
|
156
|
+
|
157
|
+
|
158
|
+
function calculateRequiredDipAmount(
|
159
|
+
Amount tokenAmount,
|
160
|
+
UFixed stakingRate
|
161
|
+
)
|
162
|
+
public
|
163
|
+
view
|
164
|
+
returns (Amount dipAmount)
|
165
|
+
{
|
166
|
+
dipAmount = tokenAmount.multiplyWith(stakingRate);
|
167
|
+
}
|
168
|
+
|
169
|
+
|
170
|
+
function calculateStakingRate(
|
171
|
+
IERC20Metadata dipToken,
|
172
|
+
IERC20Metadata token,
|
173
|
+
UFixed requiredDipPerToken
|
174
|
+
)
|
175
|
+
public
|
176
|
+
view
|
177
|
+
returns (UFixed stakingRate)
|
178
|
+
{
|
179
|
+
UFixed decimalsFactor = UFixedLib.toUFixed(1, int8(dipToken.decimals() - token.decimals()));
|
180
|
+
stakingRate = requiredDipPerToken * decimalsFactor;
|
181
|
+
}
|
182
|
+
|
183
|
+
|
184
|
+
function getMaxLockingPeriod() public pure returns (Seconds maxLockingPeriod) {
|
185
|
+
return SecondsLib.toSeconds(5 * 365 * 24 * 3600);
|
186
|
+
}
|
187
|
+
|
188
|
+
|
189
|
+
function getDefaultLockingPeriod() public pure returns (Seconds maxLockingPeriod) {
|
190
|
+
return SecondsLib.toSeconds(365 * 24 * 3600 / 2);
|
191
|
+
}
|
192
|
+
|
193
|
+
|
194
|
+
function getMaxRewardRate() public pure returns (UFixed maxRewardRate) {
|
195
|
+
return UFixedLib.toUFixed(33, -2);
|
196
|
+
}
|
197
|
+
|
198
|
+
|
199
|
+
function getDefaultRewardRate() public pure returns (UFixed defaultRewardRate) {
|
200
|
+
return UFixedLib.toUFixed(5, -2);
|
201
|
+
}
|
202
|
+
|
203
|
+
|
204
|
+
function toTargetKey(NftId targetNftId) public pure returns (Key32 targetKey) {
|
205
|
+
return targetNftId.toKey32(TARGET());
|
206
|
+
}
|
207
|
+
}
|
@@ -17,7 +17,8 @@ using {
|
|
17
17
|
AmountLib.gtz,
|
18
18
|
AmountLib.toInt,
|
19
19
|
AmountLib.add,
|
20
|
-
AmountLib.toUFixed
|
20
|
+
AmountLib.toUFixed,
|
21
|
+
AmountLib.multiplyWith
|
21
22
|
} for Amount global;
|
22
23
|
|
23
24
|
function addAmount(Amount a, Amount b) pure returns (Amount) {
|
@@ -86,6 +87,15 @@ library AmountLib {
|
|
86
87
|
return Amount.unwrap(a1) > Amount.unwrap(a2);
|
87
88
|
}
|
88
89
|
|
90
|
+
/// @dev return minimum of a1 and a2.
|
91
|
+
function min(Amount a1, Amount a2) public pure returns (Amount) {
|
92
|
+
if (Amount.unwrap(a1) < Amount.unwrap(a2)) {
|
93
|
+
return a1;
|
94
|
+
}
|
95
|
+
|
96
|
+
return a2;
|
97
|
+
}
|
98
|
+
|
89
99
|
/// @dev return true if amount is larger than 0
|
90
100
|
function gtz(Amount amount) public pure returns (bool) {
|
91
101
|
return Amount.unwrap(amount) > 0;
|
@@ -107,6 +117,10 @@ library AmountLib {
|
|
107
117
|
return UFixedLib.toUFixed(Amount.unwrap(amount));
|
108
118
|
}
|
109
119
|
|
120
|
+
function multiplyWith(Amount amount, UFixed factor) public pure returns (Amount) {
|
121
|
+
return toAmount((factor * UFixedLib.toUFixed(Amount.unwrap(amount))).toInt());
|
122
|
+
}
|
123
|
+
|
110
124
|
function _max() internal pure returns (uint96) {
|
111
125
|
// IMPORTANT: type nees to match with actual definition for Amount
|
112
126
|
return type(uint96).max;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.
|
2
|
+
pragma solidity ^0.8.20;
|
3
3
|
|
4
4
|
type Blocknumber is uint32;
|
5
5
|
|
@@ -10,7 +10,9 @@ using {
|
|
10
10
|
lteBlocknumber as <=,
|
11
11
|
eqBlocknumber as ==,
|
12
12
|
neBlocknumber as !=,
|
13
|
-
BlocknumberLib.toInt
|
13
|
+
BlocknumberLib.toInt,
|
14
|
+
BlocknumberLib.eqz,
|
15
|
+
BlocknumberLib.gtz
|
14
16
|
} for Blocknumber global;
|
15
17
|
|
16
18
|
/// @dev return true if Blocknumber a is greater than Blocknumber b
|
@@ -69,6 +71,16 @@ library BlocknumberLib {
|
|
69
71
|
return Blocknumber.wrap(uint32(block.number));
|
70
72
|
}
|
71
73
|
|
74
|
+
/// @dev return true iff blocknumber is 0
|
75
|
+
function eqz(Blocknumber blocknumber) public pure returns (bool) {
|
76
|
+
return Blocknumber.unwrap(blocknumber) == 0;
|
77
|
+
}
|
78
|
+
|
79
|
+
/// @dev return true iff blocknumber is 0
|
80
|
+
function gtz(Blocknumber blocknumber) public pure returns (bool) {
|
81
|
+
return Blocknumber.unwrap(blocknumber) > 0;
|
82
|
+
}
|
83
|
+
|
72
84
|
/// @dev return true if Blocknumber a is greater than Blocknumber b
|
73
85
|
function gt(
|
74
86
|
Blocknumber a,
|
package/contracts/type/Fee.sol
CHANGED
package/contracts/type/NftId.sol
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.
|
2
|
+
pragma solidity ^0.8.20;
|
3
3
|
|
4
4
|
import {Key32, KeyId, Key32Lib} from "./Key32.sol";
|
5
5
|
import {ObjectType} from "./ObjectType.sol";
|
@@ -20,11 +20,11 @@ using {
|
|
20
20
|
|
21
21
|
// pure free functions for operators
|
22
22
|
function eqNftId(NftId a, NftId b) pure returns (bool isSame) {
|
23
|
-
return
|
23
|
+
return NftIdLib.eq(a, b);
|
24
24
|
}
|
25
25
|
|
26
26
|
function neNftId(NftId a, NftId b) pure returns (bool isDifferent) {
|
27
|
-
return
|
27
|
+
return NftIdLib.ne(a, b);
|
28
28
|
}
|
29
29
|
|
30
30
|
// library functions that operate on user defined type
|
@@ -58,7 +58,12 @@ library NftIdLib {
|
|
58
58
|
|
59
59
|
/// @dev Returns true if the values are equal (==).
|
60
60
|
function eq(NftId a, NftId b) public pure returns (bool isSame) {
|
61
|
-
return
|
61
|
+
return NftId.unwrap(a) == NftId.unwrap(b);
|
62
|
+
}
|
63
|
+
|
64
|
+
/// @dev Returns true if the values are not equal (!=).
|
65
|
+
function ne(NftId a, NftId b) public pure returns (bool isSame) {
|
66
|
+
return NftId.unwrap(a) != NftId.unwrap(b);
|
62
67
|
}
|
63
68
|
|
64
69
|
/// @dev Returns the key32 value for the specified nft id and object type.
|
@@ -14,6 +14,10 @@ using {
|
|
14
14
|
|
15
15
|
// general pure free functions
|
16
16
|
|
17
|
+
function RELEASE() pure returns (ObjectType) {
|
18
|
+
return toObjectType(1);
|
19
|
+
}
|
20
|
+
|
17
21
|
function PROTOCOL() pure returns (ObjectType) {
|
18
22
|
return toObjectType(10);
|
19
23
|
}
|
@@ -54,12 +58,12 @@ function COMPONENT() pure returns (ObjectType) {
|
|
54
58
|
return toObjectType(100);
|
55
59
|
}
|
56
60
|
|
57
|
-
function
|
61
|
+
function PRODUCT_SETUP() pure returns (ObjectType) {
|
58
62
|
return toObjectType(101);
|
59
63
|
}
|
60
64
|
|
61
|
-
function
|
62
|
-
return toObjectType(
|
65
|
+
function REQUEST() pure returns (ObjectType) {
|
66
|
+
return toObjectType(105);
|
63
67
|
}
|
64
68
|
|
65
69
|
function PRODUCT() pure returns (ObjectType) {
|
@@ -123,12 +127,6 @@ function toObjectType(uint256 objectType) pure returns (ObjectType) {
|
|
123
127
|
return ObjectType.wrap(uint8(objectType));
|
124
128
|
}
|
125
129
|
|
126
|
-
// TODO move to ObjecTypeLib and rename to zero()
|
127
|
-
/// @dev Return the ObjectType zero (0)
|
128
|
-
function zeroObjectType() pure returns (ObjectType) {
|
129
|
-
return ObjectType.wrap(0);
|
130
|
-
}
|
131
|
-
|
132
130
|
// pure free functions for operators
|
133
131
|
function eqObjectType(ObjectType a, ObjectType b) pure returns (bool isSame) {
|
134
132
|
return ObjectType.unwrap(a) == ObjectType.unwrap(b);
|
@@ -143,6 +141,11 @@ function neObjectType(
|
|
143
141
|
|
144
142
|
// library functions that operate on user defined type
|
145
143
|
library ObjectTypeLib {
|
144
|
+
|
145
|
+
function zero() public pure returns (ObjectType) {
|
146
|
+
return ObjectType.wrap(0);
|
147
|
+
}
|
148
|
+
|
146
149
|
/// @dev Converts the NftId to a uint256.
|
147
150
|
function toInt(ObjectType objectType) public pure returns (uint96) {
|
148
151
|
return uint96(ObjectType.unwrap(objectType));
|
@@ -0,0 +1,75 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {Key32, KeyId, Key32Lib} from "./Key32.sol";
|
5
|
+
import {REQUEST} from "./ObjectType.sol";
|
6
|
+
|
7
|
+
type RequestId is uint64;
|
8
|
+
|
9
|
+
// type bindings
|
10
|
+
using {
|
11
|
+
eqRequestId as ==,
|
12
|
+
neRequestId as !=,
|
13
|
+
RequestIdLib.eqz,
|
14
|
+
RequestIdLib.gtz,
|
15
|
+
RequestIdLib.toInt,
|
16
|
+
RequestIdLib.toKey32
|
17
|
+
} for RequestId global;
|
18
|
+
|
19
|
+
// general pure free functions
|
20
|
+
|
21
|
+
function eqRequestId(RequestId a, RequestId b) pure returns (bool isSame) {
|
22
|
+
return RequestIdLib.eq(a, b);
|
23
|
+
}
|
24
|
+
|
25
|
+
function neRequestId(RequestId a, RequestId b) pure returns (bool isSame) {
|
26
|
+
return RequestIdLib.ne(a, b);
|
27
|
+
}
|
28
|
+
|
29
|
+
library RequestIdLib {
|
30
|
+
|
31
|
+
// @dev zero element to refer to a non existing/initialized request
|
32
|
+
function zero() public pure returns (RequestId) {
|
33
|
+
return RequestId.wrap(0);
|
34
|
+
}
|
35
|
+
|
36
|
+
// @dev Converts an int id into a request id.
|
37
|
+
function toRequestId(uint256 id) public pure returns (RequestId) {
|
38
|
+
return RequestId.wrap(uint64(id));
|
39
|
+
}
|
40
|
+
|
41
|
+
// @dev Converts a request id back to an int value.
|
42
|
+
function toInt(RequestId requestId) public pure returns (uint256) {
|
43
|
+
return RequestId.unwrap(requestId);
|
44
|
+
}
|
45
|
+
|
46
|
+
// @dev Returns true iff request id a == 0
|
47
|
+
function eqz(RequestId a) public pure returns (bool) {
|
48
|
+
return RequestId.unwrap(a) == 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
// @dev Returns true iff request id a > 0
|
52
|
+
function gtz(RequestId a) public pure returns (bool) {
|
53
|
+
return RequestId.unwrap(a) > 0;
|
54
|
+
}
|
55
|
+
|
56
|
+
// @dev Returns true iff risk ids a and b are identical
|
57
|
+
function eq(RequestId a, RequestId b) public pure returns (bool isSame) {
|
58
|
+
return RequestId.unwrap(a) == RequestId.unwrap(b);
|
59
|
+
}
|
60
|
+
|
61
|
+
// @dev Returns true iff risk ids a and b are different
|
62
|
+
function ne(RequestId a, RequestId b) public pure returns (bool isSame) {
|
63
|
+
return RequestId.unwrap(a) != RequestId.unwrap(b);
|
64
|
+
}
|
65
|
+
|
66
|
+
/// @dev Returns the key32 value for the specified nft id and object type.
|
67
|
+
function toKey32(RequestId id) public pure returns (Key32 key) {
|
68
|
+
return Key32Lib.toKey32(REQUEST(), toKeyId(id));
|
69
|
+
}
|
70
|
+
|
71
|
+
/// @dev Returns the key id value for the specified nft id
|
72
|
+
function toKeyId(RequestId id) public pure returns (KeyId keyId) {
|
73
|
+
return KeyId.wrap(bytes31(uint248(RequestId.unwrap(id))));
|
74
|
+
}
|
75
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
|
-
pragma solidity ^0.8.
|
2
|
+
pragma solidity ^0.8.20;
|
3
3
|
|
4
4
|
import {Key32, KeyId, Key32Lib} from "./Key32.sol";
|
5
5
|
import {ROLE} from "./ObjectType.sol";
|
@@ -37,9 +37,6 @@ function GIF_ADMIN_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(1500
|
|
37
37
|
/// token white/blacklisting is possible for any active release
|
38
38
|
function GIF_MANAGER_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(1600); }
|
39
39
|
|
40
|
-
/// @dev role associated with the ReleaseManager contract
|
41
|
-
function RELEASE_MANAGER_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(1700); }
|
42
|
-
|
43
40
|
/// @dev instance specific role to register/own a distribution component
|
44
41
|
function DISTRIBUTION_OWNER_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2); }
|
45
42
|
|
@@ -60,15 +57,23 @@ function INSTANCE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2600)
|
|
60
57
|
/// allows instance specific target, role and access management
|
61
58
|
function INSTANCE_OWNER_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(1900); }
|
62
59
|
|
63
|
-
|
64
|
-
function COMPONENT_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2000); }
|
60
|
+
function REGISTRY_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(1800); }
|
65
61
|
|
66
62
|
/// @dev instance specific role for instance service
|
67
|
-
function INSTANCE_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(
|
63
|
+
function INSTANCE_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2000); }
|
64
|
+
|
65
|
+
/// @dev role for creating gif target on instance service
|
66
|
+
function CAN_CREATE_GIF_TARGET__ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(1700); }
|
67
|
+
|
68
|
+
/// @dev role for registering gif components
|
69
|
+
function COMPONENT_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2001); }
|
68
70
|
|
69
71
|
/// @dev instance specific role for distribution service
|
70
72
|
function DISTRIBUTION_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2100); }
|
71
73
|
|
74
|
+
/// @dev instance specific role for oracle service
|
75
|
+
function ORACLE_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2150); }
|
76
|
+
|
72
77
|
/// @dev instance specific role for pool service
|
73
78
|
function POOL_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2200); }
|
74
79
|
|
@@ -87,8 +92,11 @@ function CLAIM_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(
|
|
87
92
|
/// @dev instance specific role for bundle service
|
88
93
|
function BUNDLE_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2500); }
|
89
94
|
|
95
|
+
/// @dev instance specific role for pricing service
|
96
|
+
function PRICING_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2800); }
|
97
|
+
|
90
98
|
/// @dev instance specific role for staking service
|
91
|
-
function STAKING_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(
|
99
|
+
function STAKING_SERVICE_ROLE() pure returns (RoleId) { return RoleIdLib.toRoleId(2900); }
|
92
100
|
|
93
101
|
// @dev Returns true iff role ids a and b are identical
|
94
102
|
function eqRoleId(RoleId a, RoleId b) pure returns (bool isSame) {
|
@@ -4,11 +4,20 @@ pragma solidity ^0.8.20;
|
|
4
4
|
type Seconds is uint40;
|
5
5
|
|
6
6
|
using {
|
7
|
+
SecondsEq as ==,
|
8
|
+
SecondsGt as >,
|
7
9
|
SecondsLib.eqz,
|
8
10
|
SecondsLib.gtz,
|
9
11
|
SecondsLib.toInt
|
10
12
|
} for Seconds global;
|
11
13
|
|
14
|
+
function SecondsEq(Seconds duration1, Seconds duration2) pure returns (bool) {
|
15
|
+
return SecondsLib.eq(duration1, duration2);
|
16
|
+
}
|
17
|
+
|
18
|
+
function SecondsGt(Seconds duration1, Seconds duration2) pure returns (bool) {
|
19
|
+
return SecondsLib.gt(duration1, duration2);
|
20
|
+
}
|
12
21
|
|
13
22
|
library SecondsLib {
|
14
23
|
|
@@ -22,6 +31,14 @@ library SecondsLib {
|
|
22
31
|
return Seconds.wrap(_max());
|
23
32
|
}
|
24
33
|
|
34
|
+
function oneDay() public pure returns (Seconds duration) {
|
35
|
+
return Seconds.wrap(24 * 3600);
|
36
|
+
}
|
37
|
+
|
38
|
+
function oneYear() public pure returns (Seconds duration) {
|
39
|
+
return Seconds.wrap(365 * 24 * 3600);
|
40
|
+
}
|
41
|
+
|
25
42
|
/// @dev converts the uint duration into Seconds
|
26
43
|
/// function reverts if duration is exceeding max Seconds value
|
27
44
|
function toSeconds(uint256 duration) public pure returns (Seconds) {
|
@@ -43,6 +60,16 @@ library SecondsLib {
|
|
43
60
|
return Seconds.unwrap(duration) > 0;
|
44
61
|
}
|
45
62
|
|
63
|
+
/// @dev return true iff duration1 and duration2 are the same
|
64
|
+
function eq(Seconds duration1, Seconds duration2) public pure returns (bool) {
|
65
|
+
return Seconds.unwrap(duration1) == Seconds.unwrap(duration2);
|
66
|
+
}
|
67
|
+
|
68
|
+
/// @dev return true if duration1 is larger than duration2
|
69
|
+
function gt(Seconds duration1, Seconds duration2) public pure returns (bool) {
|
70
|
+
return Seconds.unwrap(duration1) > Seconds.unwrap(duration2);
|
71
|
+
}
|
72
|
+
|
46
73
|
function toInt(Seconds duration) public pure returns (uint256) {
|
47
74
|
return uint256(uint40(Seconds.unwrap(duration)));
|
48
75
|
}
|
@@ -14,6 +14,23 @@ using {
|
|
14
14
|
} for StateId global;
|
15
15
|
|
16
16
|
// general pure free functions
|
17
|
+
|
18
|
+
function INITIAL() pure returns (StateId) {
|
19
|
+
return toStateId(1);
|
20
|
+
}
|
21
|
+
|
22
|
+
function SCHEDULED() pure returns (StateId) {
|
23
|
+
return toStateId(2);
|
24
|
+
}
|
25
|
+
|
26
|
+
function DEPLOYING() pure returns (StateId) {
|
27
|
+
return toStateId(3);
|
28
|
+
}
|
29
|
+
|
30
|
+
function ACTIVE() pure returns (StateId) {
|
31
|
+
return toStateId(4);
|
32
|
+
}
|
33
|
+
|
17
34
|
function APPLIED() pure returns (StateId) {
|
18
35
|
return toStateId(10);
|
19
36
|
}
|
@@ -42,8 +59,16 @@ function EXPECTED() pure returns (StateId) {
|
|
42
59
|
return toStateId(60);
|
43
60
|
}
|
44
61
|
|
45
|
-
function
|
46
|
-
return toStateId(
|
62
|
+
function FULFILLED() pure returns (StateId) {
|
63
|
+
return toStateId(70);
|
64
|
+
}
|
65
|
+
|
66
|
+
function FAILED() pure returns (StateId) {
|
67
|
+
return toStateId(7);
|
68
|
+
}
|
69
|
+
|
70
|
+
function CANCELLED() pure returns (StateId) {
|
71
|
+
return toStateId(72);
|
47
72
|
}
|
48
73
|
|
49
74
|
function PAUSED() pure returns (StateId) {
|
@@ -56,13 +56,17 @@ function toTimestamp(uint256 timestamp) pure returns (Timestamp) {
|
|
56
56
|
// TODO move to TimestampLib and rename to zero()
|
57
57
|
/// @dev Return the Timestamp zero (0)
|
58
58
|
function zeroTimestamp() pure returns (Timestamp) {
|
59
|
-
return
|
59
|
+
return Timestamp.wrap(0);
|
60
60
|
}
|
61
61
|
|
62
62
|
library TimestampLib {
|
63
63
|
|
64
64
|
function zero() public pure returns (Timestamp) {
|
65
|
-
return
|
65
|
+
return Timestamp.wrap(0);
|
66
|
+
}
|
67
|
+
|
68
|
+
function max() public pure returns (Timestamp) {
|
69
|
+
return Timestamp.wrap(type(uint40).max);
|
66
70
|
}
|
67
71
|
|
68
72
|
function blockTimestamp() public view returns (Timestamp) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@etherisc/gif-next",
|
3
|
-
"version": "0.0.2-
|
3
|
+
"version": "0.0.2-e802d97-477",
|
4
4
|
"description": "This is the repository for the next version of the Generic Insurance Framework (GIF) smart contracts. ",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -30,8 +30,8 @@
|
|
30
30
|
"homepage": "https://github.com/etherisc/gif-next#readme",
|
31
31
|
"devDependencies": {
|
32
32
|
"@nomicfoundation/hardhat-foundry": "^1.1.1",
|
33
|
-
"@nomicfoundation/hardhat-toolbox": "^
|
34
|
-
"@nomicfoundation/hardhat-verify": "^
|
33
|
+
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
34
|
+
"@nomicfoundation/hardhat-verify": "^2.0.1",
|
35
35
|
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
36
36
|
"@typescript-eslint/parser": "^7.1.0",
|
37
37
|
"dotenv": "^16.3.1",
|