@etherisc/gif-next 0.0.2-e769e2e-077 → 0.0.2-e802d97-477
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 +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
@@ -6,21 +6,14 @@ import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessMana
|
|
6
6
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
7
7
|
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
|
8
8
|
|
9
|
+
import {Amount} from "../type/Amount.sol";
|
9
10
|
import {IComponent} from "./IComponent.sol";
|
10
11
|
import {IComponents} from "../instance/module/IComponents.sol";
|
11
|
-
import {IInstanceService} from "../instance/IInstanceService.sol";
|
12
|
-
import {IInstance} from "../instance/IInstance.sol";
|
13
|
-
import {InstanceAccessManager} from "../instance/InstanceAccessManager.sol";
|
14
|
-
import {InstanceReader} from "../instance/InstanceReader.sol";
|
15
|
-
import {IRegistry} from "../registry/IRegistry.sol";
|
16
12
|
import {NftId, NftIdLib} from "../type/NftId.sol";
|
17
|
-
import {ObjectType
|
18
|
-
import {VersionPart} from "../type/Version.sol";
|
13
|
+
import {ObjectType} from "../type/ObjectType.sol";
|
19
14
|
import {Registerable} from "../shared/Registerable.sol";
|
20
|
-
import {RoleId, RoleIdLib} from "../type/RoleId.sol";
|
21
|
-
import {IAccess} from "../instance/module/IAccess.sol";
|
22
15
|
import {TokenHandler} from "../shared/TokenHandler.sol";
|
23
|
-
import {
|
16
|
+
import {VersionPartLib} from "../type/Version.sol";
|
24
17
|
|
25
18
|
abstract contract Component is
|
26
19
|
AccessManagedUpgradeable,
|
@@ -95,7 +88,7 @@ abstract contract Component is
|
|
95
88
|
}
|
96
89
|
|
97
90
|
|
98
|
-
function approveTokenHandler(
|
91
|
+
function approveTokenHandler(Amount spendingLimitAmount)
|
99
92
|
external
|
100
93
|
virtual
|
101
94
|
onlyOwner
|
@@ -103,7 +96,7 @@ abstract contract Component is
|
|
103
96
|
approveTokenHandler(address(getToken()), spendingLimitAmount);
|
104
97
|
}
|
105
98
|
|
106
|
-
function approveTokenHandler(address token,
|
99
|
+
function approveTokenHandler(address token, Amount spendingLimitAmount)
|
107
100
|
public
|
108
101
|
virtual
|
109
102
|
onlyOwner
|
@@ -114,7 +107,7 @@ abstract contract Component is
|
|
114
107
|
|
115
108
|
IERC20Metadata(token).approve(
|
116
109
|
address(getTokenHandler()),
|
117
|
-
spendingLimitAmount);
|
110
|
+
spendingLimitAmount.toInt());
|
118
111
|
|
119
112
|
emit LogComponentTokenHandlerApproved(address(getTokenHandler()), spendingLimitAmount);
|
120
113
|
}
|
@@ -259,6 +252,7 @@ abstract contract Component is
|
|
259
252
|
|
260
253
|
}
|
261
254
|
|
255
|
+
|
262
256
|
/// @dev for component contracts that hold its own component information
|
263
257
|
/// this function creates and sets a token hanlder for the components tokens
|
264
258
|
function _createAndSetTokenHandler()
|
@@ -268,6 +262,7 @@ abstract contract Component is
|
|
268
262
|
$._tokenHandler = new TokenHandler(address($._token));
|
269
263
|
}
|
270
264
|
|
265
|
+
|
271
266
|
/// @dev depending on the source of the component information this function needs to be overwritten.
|
272
267
|
/// eg for instance linked components that externally store this information with the instance store contract
|
273
268
|
function _getComponentInfo() internal virtual view returns (IComponents.ComponentInfo memory info) {
|
@@ -10,8 +10,8 @@ import {IRegistryService} from "../registry/IRegistryService.sol";
|
|
10
10
|
import {IInstance} from "../instance/IInstance.sol";
|
11
11
|
import {IAccess} from "../instance/module/IAccess.sol";
|
12
12
|
import {NftId} from "../type/NftId.sol";
|
13
|
-
import {ObjectType, REGISTRY, COMPONENT, DISTRIBUTION, INSTANCE, POOL, PRODUCT} from "../type/ObjectType.sol";
|
14
|
-
import {RoleId, DISTRIBUTION_OWNER_ROLE, POOL_OWNER_ROLE, PRODUCT_OWNER_ROLE, POLICY_SERVICE_ROLE, PRODUCT_SERVICE_ROLE} from "../type/RoleId.sol";
|
13
|
+
import {ObjectType, REGISTRY, COMPONENT, DISTRIBUTION, INSTANCE, ORACLE, POOL, PRODUCT} from "../type/ObjectType.sol";
|
14
|
+
import {RoleId, DISTRIBUTION_OWNER_ROLE, ORACLE_OWNER_ROLE, POOL_OWNER_ROLE, PRODUCT_OWNER_ROLE, POLICY_SERVICE_ROLE, PRODUCT_SERVICE_ROLE} from "../type/RoleId.sol";
|
15
15
|
import {KEEP_STATE} from "../type/StateId.sol";
|
16
16
|
import {IComponents} from "../instance/module/IComponents.sol";
|
17
17
|
import {IComponentService} from "./IComponentService.sol";
|
@@ -167,7 +167,6 @@ contract ComponentService is
|
|
167
167
|
}
|
168
168
|
}
|
169
169
|
|
170
|
-
|
171
170
|
function increaseProductFees(
|
172
171
|
InstanceStore instanceStore,
|
173
172
|
NftId productNftId,
|
@@ -281,9 +280,31 @@ contract ComponentService is
|
|
281
280
|
_changeTargetBalance(DECREASE, instanceStore, distributionNftId, amount, feeAmount);
|
282
281
|
}
|
283
282
|
|
283
|
+
//-------- oracle -------------------------------------------------------//
|
284
|
+
|
285
|
+
function registerOracle()
|
286
|
+
external
|
287
|
+
virtual
|
288
|
+
{
|
289
|
+
address contractAddress = msg.sender;
|
290
|
+
RoleId[] memory roles = new RoleId[](0);
|
291
|
+
bytes4[][] memory selectors = new bytes4[][](0);
|
292
|
+
|
293
|
+
// register/create component setup
|
294
|
+
(
|
295
|
+
, // instance reader
|
296
|
+
InstanceStore instanceStore,
|
297
|
+
NftId componentNftId
|
298
|
+
) = _register(
|
299
|
+
contractAddress,
|
300
|
+
ORACLE(),
|
301
|
+
ORACLE_OWNER_ROLE(),
|
302
|
+
roles,
|
303
|
+
selectors);
|
304
|
+
}
|
305
|
+
|
284
306
|
//-------- pool ---------------------------------------------------------//
|
285
307
|
|
286
|
-
/// @dev registers the sending component as a distribution component
|
287
308
|
function registerPool()
|
288
309
|
external
|
289
310
|
virtual
|
@@ -292,7 +313,7 @@ contract ComponentService is
|
|
292
313
|
RoleId[] memory roles = new RoleId[](2);
|
293
314
|
bytes4[][] memory selectors = new bytes4[][](2);
|
294
315
|
|
295
|
-
// authorizaion for
|
316
|
+
// authorizaion for pool owner
|
296
317
|
roles[0] = POOL_OWNER_ROLE();
|
297
318
|
selectors[0] = _createSelectors(IPoolComponent.setFees.selector);
|
298
319
|
|
@@ -527,7 +548,7 @@ contract ComponentService is
|
|
527
548
|
}
|
528
549
|
|
529
550
|
|
530
|
-
function _createSelectors(bytes4 selector) internal
|
551
|
+
function _createSelectors(bytes4 selector) internal pure returns (bytes4[] memory selectors) {
|
531
552
|
selectors = new bytes4[](1);
|
532
553
|
selectors[0] = selector;
|
533
554
|
}
|
@@ -561,18 +582,13 @@ contract ComponentService is
|
|
561
582
|
RoleId requiredRole
|
562
583
|
)
|
563
584
|
internal
|
564
|
-
|
585
|
+
view
|
565
586
|
returns (
|
566
587
|
IInstance instance,
|
567
588
|
IInstanceLinkedComponent component,
|
568
589
|
address owner
|
569
590
|
)
|
570
591
|
{
|
571
|
-
// check component has not already been registered
|
572
|
-
if (getRegistry().getNftId(componentAddress).gtz()) {
|
573
|
-
revert ErrorComponentServiceAlreadyRegistered(componentAddress);
|
574
|
-
}
|
575
|
-
|
576
592
|
// check this is a component
|
577
593
|
component = IInstanceLinkedComponent(componentAddress);
|
578
594
|
if(!component.supportsInterface(type(IInstanceLinkedComponent).interfaceId)) {
|
@@ -585,11 +601,17 @@ contract ComponentService is
|
|
585
601
|
revert ErrorComponentServiceInvalidType(componentAddress, requiredType, info.objectType);
|
586
602
|
}
|
587
603
|
|
604
|
+
// check component has not already been registered
|
605
|
+
if (getRegistry().getNftId(componentAddress).gtz()) {
|
606
|
+
revert ErrorComponentServiceAlreadyRegistered(componentAddress);
|
607
|
+
}
|
608
|
+
|
588
609
|
// check instance has assigned required role to inital owner
|
589
610
|
instance = _getInstance(info.parentNftId);
|
590
611
|
owner = info.initialOwner;
|
591
612
|
|
592
|
-
|
613
|
+
(bool hasRole,) = instance.getInstanceAccessManager().hasRole(requiredRole.toInt(), owner);
|
614
|
+
if(!hasRole) {
|
593
615
|
revert ErrorComponentServiceExpectedRoleMissing(info.parentNftId, requiredRole, owner);
|
594
616
|
}
|
595
617
|
}
|
@@ -33,12 +33,10 @@ abstract contract ComponentVerifyingService is
|
|
33
33
|
)
|
34
34
|
{
|
35
35
|
componentNftId = getRegistry().getNftId(msg.sender);
|
36
|
-
(componentInfo, instance) = _getAndVerifyComponentInfo(
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
revert ErrorComponentVerifyingServiceComponentIsLocked(componentNftId);
|
41
|
-
}
|
36
|
+
(componentInfo, instance) = _getAndVerifyComponentInfo(
|
37
|
+
componentNftId,
|
38
|
+
expectedType,
|
39
|
+
true); // only active
|
42
40
|
}
|
43
41
|
|
44
42
|
|
@@ -48,7 +46,8 @@ abstract contract ComponentVerifyingService is
|
|
48
46
|
/// - the component has the wrong object type
|
49
47
|
function _getAndVerifyComponentInfo(
|
50
48
|
NftId componentNftId,
|
51
|
-
ObjectType expectedType // assume always of `component` type
|
49
|
+
ObjectType expectedType, // assume always of `component` type
|
50
|
+
bool onlyActive
|
52
51
|
)
|
53
52
|
internal
|
54
53
|
virtual
|
@@ -85,6 +84,13 @@ abstract contract ComponentVerifyingService is
|
|
85
84
|
}
|
86
85
|
|
87
86
|
instance = _getInstance(info.parentNftId);
|
87
|
+
|
88
|
+
// ensure component is not locked
|
89
|
+
if (onlyActive) {
|
90
|
+
if (instance.getInstanceAccessManager().isTargetClosed(info.objectAddress)) {
|
91
|
+
revert ErrorComponentVerifyingServiceComponentIsLocked(componentNftId);
|
92
|
+
}
|
93
|
+
}
|
88
94
|
}
|
89
95
|
|
90
96
|
|
@@ -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 {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
|
5
5
|
import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
|
@@ -0,0 +1,74 @@
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
2
|
+
// OpenZeppelin Contracts (last updated v5.0.0) (access/manager/IAccessManager.sol)
|
3
|
+
|
4
|
+
pragma solidity ^0.8.20;
|
5
|
+
|
6
|
+
import {IAccessManager} from "@openzeppelin/contracts/access/manager/IAccessManager.sol";
|
7
|
+
|
8
|
+
import {Timestamp} from "../type/Timestamp.sol";
|
9
|
+
|
10
|
+
interface IAccessManagerExtended is IAccessManager {
|
11
|
+
// Structure that stores the details for a target contract.
|
12
|
+
struct TargetInfo {
|
13
|
+
address taddress;
|
14
|
+
//IAccess.Type ttype;
|
15
|
+
string name;
|
16
|
+
Timestamp createdAt;
|
17
|
+
//Timestamp updatedAt;
|
18
|
+
}
|
19
|
+
|
20
|
+
// Structure that stores the details of a role.
|
21
|
+
struct RoleInfo {
|
22
|
+
uint64 id;
|
23
|
+
//IAccess.Type rtype;
|
24
|
+
string name;
|
25
|
+
Timestamp createdAt;
|
26
|
+
}
|
27
|
+
|
28
|
+
event LogRoleCreation(uint64 roleId, string name);// IAccess.Type rtype);
|
29
|
+
event LogTargetCreation(address target, string name);// IAccess.Type ttype);
|
30
|
+
|
31
|
+
error AccessManagerRoleIdNotExists(uint64 roleId);
|
32
|
+
error AccessManagerRoleIdAlreadyExists(uint64 roleId);
|
33
|
+
error AccessManagerRoleNameAlreadyExists(uint64 newRoleId, uint64 existingRoleId, string duplicateName);
|
34
|
+
error AccessManagerRoleIdZero();
|
35
|
+
error AccessManagerRoleNameEmpty(uint64 roleId);
|
36
|
+
error AccessManagerRoleIdTooBig(uint64 roleId);
|
37
|
+
|
38
|
+
error AccessManagerTargetAlreadyExists(address target);
|
39
|
+
error AccessManagerTargetNotExists(address target);
|
40
|
+
error AccessManagerTargetNameAlreadyExists(address newTarget, address existingTarget, string duplicateName);
|
41
|
+
error AccessManagerTargetAddressZero();
|
42
|
+
error AccessManagerTargetNameEmpty(address target);
|
43
|
+
error AccessManagerTargetAuthorityInvalid(address target, address targetAuthority);
|
44
|
+
|
45
|
+
function getRoleMembers(uint64 roleId) external view returns (uint256 numberOfMembers);
|
46
|
+
|
47
|
+
function getRoleMember(uint64 roleId, uint256 idx) external view returns (address member);
|
48
|
+
|
49
|
+
function getRoleId(uint256 idx) external view returns (uint64 roleId);
|
50
|
+
|
51
|
+
// TODO returns ADMIN_ROLE id for non existent name
|
52
|
+
function getRoleId(string memory name) external view returns (uint64 roleId);
|
53
|
+
|
54
|
+
function getRoles() external view returns (uint256 numberOfRoles);
|
55
|
+
|
56
|
+
function isRoleExists(uint64 roleId) external view returns (bool exists);
|
57
|
+
|
58
|
+
function getRoleInfo(uint64 roleId) external view returns (RoleInfo memory);
|
59
|
+
|
60
|
+
function isRoleNameExists(string memory name) external view returns (bool);
|
61
|
+
|
62
|
+
function isTargetExists(address target) external view returns (bool);
|
63
|
+
|
64
|
+
function isTargetNameExists(string memory name) external view returns (bool);
|
65
|
+
|
66
|
+
function getTargetAddress(string memory name) external view returns(address targetAddress);
|
67
|
+
|
68
|
+
function getTargetInfo(address target) external view returns (TargetInfo memory);
|
69
|
+
|
70
|
+
|
71
|
+
function createRole(uint64 roleId, string memory roleName/*, IAccess.Type rtype*/) external;
|
72
|
+
|
73
|
+
function createTarget(address target, string memory name/*, IAccess.Type.Custom*/) external;
|
74
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
2
|
+
|
3
|
+
pragma solidity ^0.8.20;
|
4
|
+
|
5
|
+
import {IAccessManagerExtended} from "./IAccessManagerExtended.sol";
|
6
|
+
|
7
|
+
import {Timestamp} from "../type/Timestamp.sol";
|
8
|
+
import {VersionPart} from "../type/Version.sol";
|
9
|
+
import {Seconds} from "../type/Seconds.sol";
|
10
|
+
|
11
|
+
interface IAccessManagerExtendedWithDisable is IAccessManagerExtended {
|
12
|
+
|
13
|
+
error AccessManagerDisabled();
|
14
|
+
|
15
|
+
function disable(Seconds delay) external;
|
16
|
+
function enable() external;
|
17
|
+
function getVersion() external view returns (VersionPart version);
|
18
|
+
}
|
@@ -4,14 +4,10 @@ pragma solidity ^0.8.20;
|
|
4
4
|
import {IAccessManaged} from "@openzeppelin/contracts/access/manager/IAccessManaged.sol";
|
5
5
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
6
6
|
|
7
|
+
import {Amount} from "../type/Amount.sol";
|
7
8
|
import {IComponents} from "../instance/module/IComponents.sol";
|
8
|
-
import {IInstance} from "../instance/IInstance.sol";
|
9
|
-
import {IInstanceService} from "../instance/IInstanceService.sol";
|
10
|
-
import {IProductService} from "../product/IProductService.sol";
|
11
9
|
import {IRegisterable} from "../shared/IRegisterable.sol";
|
12
10
|
import {ITransferInterceptor} from "../registry/ITransferInterceptor.sol";
|
13
|
-
import {NftId} from "../type/NftId.sol";
|
14
|
-
import {ObjectType} from "../type/ObjectType.sol";
|
15
11
|
import {TokenHandler} from "../shared/TokenHandler.sol";
|
16
12
|
|
17
13
|
/// @dev component base class
|
@@ -32,12 +28,12 @@ interface IComponent is
|
|
32
28
|
|
33
29
|
event LogComponentWalletAddressChanged(address oldWallet, address newWallet);
|
34
30
|
event LogComponentWalletTokensTransferred(address from, address to, uint256 amount);
|
35
|
-
event LogComponentTokenHandlerApproved(address token,
|
31
|
+
event LogComponentTokenHandlerApproved(address token, Amount limit);
|
36
32
|
|
37
33
|
/// @dev approves token hanlder to spend up to the specified amount of tokens
|
38
34
|
/// reverts if component wallet is not component itself
|
39
35
|
/// only component owner (nft holder) is authorizes to call this function
|
40
|
-
function approveTokenHandler(
|
36
|
+
function approveTokenHandler(Amount spendingLimitAmount) external;
|
41
37
|
|
42
38
|
/// @dev sets the wallet address for the component
|
43
39
|
/// if the current wallet has tokens, these will be transferred
|
@@ -52,6 +52,8 @@ interface IComponentService is
|
|
52
52
|
function unlock() external;
|
53
53
|
|
54
54
|
//-------- product ------------------------------------------------------//
|
55
|
+
|
56
|
+
/// @dev registers the sending component as a product component
|
55
57
|
function registerProduct() external;
|
56
58
|
|
57
59
|
function setProductFees(
|
@@ -63,6 +65,8 @@ interface IComponentService is
|
|
63
65
|
function decreaseProductFees(InstanceStore instanceStore, NftId productNftId, Amount feeAmount) external;
|
64
66
|
|
65
67
|
//-------- distribution -------------------------------------------------//
|
68
|
+
|
69
|
+
/// @dev registers the sending component as a distribution component
|
66
70
|
function registerDistribution() external;
|
67
71
|
|
68
72
|
function setDistributionFees(
|
@@ -73,7 +77,14 @@ interface IComponentService is
|
|
73
77
|
function increaseDistributionBalance(InstanceStore instanceStore, NftId distributionNftId, Amount amount, Amount feeAmount) external;
|
74
78
|
function decreaseDistributionBalance(InstanceStore instanceStore, NftId distributionNftId, Amount amount, Amount feeAmount) external;
|
75
79
|
|
80
|
+
//-------- oracle -------------------------------------------------------//
|
81
|
+
|
82
|
+
/// @dev registers the sending component as an oracle component
|
83
|
+
function registerOracle() external;
|
84
|
+
|
76
85
|
//-------- pool ---------------------------------------------------------//
|
86
|
+
|
87
|
+
/// @dev registers the sending component as a pool component
|
77
88
|
function registerPool() external;
|
78
89
|
|
79
90
|
function setPoolFees(
|
@@ -32,7 +32,7 @@ interface IKeyValueStore is ILifecycle {
|
|
32
32
|
// eg account outside gif objects that initiated the tx
|
33
33
|
// implies the caller needs to be propagated through all calls up to key values store itself
|
34
34
|
// to always have the instance address there doesn't seem to make sense
|
35
|
-
address updatedBy;
|
35
|
+
// address updatedBy;
|
36
36
|
Blocknumber updatedIn;
|
37
37
|
Blocknumber createdIn;
|
38
38
|
}
|
@@ -16,7 +16,7 @@ interface INftOwnable is
|
|
16
16
|
error ErrorNftOwnableAlreadyLinked(NftId nftId);
|
17
17
|
error ErrorNftOwnableContractNotRegistered(address contractAddress);
|
18
18
|
|
19
|
-
function linkToRegisteredNftId() external;
|
19
|
+
function linkToRegisteredNftId() external returns (NftId);
|
20
20
|
|
21
21
|
function getNftId() external view returns (NftId);
|
22
22
|
function getOwner() external view returns (address);
|
@@ -27,6 +27,11 @@ interface IPolicyHolder is
|
|
27
27
|
/// it is optional for products to notifiy policy holder of expired claims
|
28
28
|
function policyExpired(NftId policyNftId) external;
|
29
29
|
|
30
|
+
/// @dev request for a payout by the requesting policy
|
31
|
+
/// the contract implements its use case specific handling for such requests.
|
32
|
+
/// eg. creation of a pending payout, a corresponding claim against one of the policies held by the IPolicyHolder
|
33
|
+
function requestPayout(NftId requestingPolicyNftId, Amount requestedPayoutAmount) external;
|
34
|
+
|
30
35
|
/// @dev callback function to notify the confirmation of the specified claim
|
31
36
|
/// active policies may open claims under the activated policy
|
32
37
|
function claimConfirmed(NftId policyNftId, ClaimId claimId, Amount amount) external;
|
@@ -36,5 +41,5 @@ interface IPolicyHolder is
|
|
36
41
|
|
37
42
|
/// @dev determines policy and claim specific beneficiary address
|
38
43
|
/// returned address will override GIF default where the policy nft holder is treated as beneficiary
|
39
|
-
function getBeneficiary(NftId policyNftId,
|
44
|
+
function getBeneficiary(NftId policyNftId, PayoutId payoutId) external view returns (address beneficiary);
|
40
45
|
}
|
@@ -0,0 +1,177 @@
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
2
|
+
|
3
|
+
pragma solidity ^0.8.20;
|
4
|
+
|
5
|
+
/**
|
6
|
+
* @dev This is copy of OpenZeppelin's Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)
|
7
|
+
* Changes:
|
8
|
+
* 1. name is InitializableCustom
|
9
|
+
* 2. no longer abstract
|
10
|
+
* 3. have $._initializeOwner
|
11
|
+
* 4. have constructor where sets _initializeOwner
|
12
|
+
* 5. initializer() in addition checks for _initializeOwner
|
13
|
+
* 6. reinitializer() is deleted
|
14
|
+
*/
|
15
|
+
abstract contract InitializableCustom {
|
16
|
+
/**
|
17
|
+
* @dev Storage of the initializable contract.
|
18
|
+
*
|
19
|
+
* It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
|
20
|
+
* when using with upgradeable contracts.
|
21
|
+
*
|
22
|
+
* @custom:storage-location erc7201:openzeppelin.storage.Initializable
|
23
|
+
*/
|
24
|
+
struct InitializableCustomStorage {
|
25
|
+
/**
|
26
|
+
* @dev Indicates that the contract has been initialized.
|
27
|
+
*/
|
28
|
+
uint64 _initialized;
|
29
|
+
/**
|
30
|
+
* @dev Indicates that the contract is in the process of being initialized.
|
31
|
+
*/
|
32
|
+
bool _initializing;
|
33
|
+
/**
|
34
|
+
* @dev Indicates address that can call function with initializer() modifier.
|
35
|
+
*/
|
36
|
+
address _initializeOwner;
|
37
|
+
}
|
38
|
+
|
39
|
+
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.InitializableCustom")) - 1)) & ~bytes32(uint256(0xff))
|
40
|
+
bytes32 private constant INITIALIZABLE_CUSTOM_STORAGE = 0x46cd1d813423aaf613c34c7f348d15b2b5e71215e9145b09467e257ea2805a00;
|
41
|
+
|
42
|
+
/**
|
43
|
+
* @dev The contract is already initialized.
|
44
|
+
*/
|
45
|
+
error InvalidInitialization();
|
46
|
+
|
47
|
+
/**
|
48
|
+
* @dev The contract initialization function caller is not authorized.
|
49
|
+
*/
|
50
|
+
error InvalidInitializationCaller();
|
51
|
+
|
52
|
+
/**
|
53
|
+
* @dev The contract is not initializing.
|
54
|
+
*/
|
55
|
+
error NotInitializing();
|
56
|
+
|
57
|
+
/**
|
58
|
+
* @dev Triggered when the contract has been initialized or reinitialized.
|
59
|
+
*/
|
60
|
+
event Initialized(uint64 version);
|
61
|
+
|
62
|
+
/**
|
63
|
+
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
|
64
|
+
* `onlyInitializing` functions can be used to initialize parent contracts.
|
65
|
+
*
|
66
|
+
* Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
|
67
|
+
* number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
|
68
|
+
* production.
|
69
|
+
*
|
70
|
+
* Emits an {Initialized} event.
|
71
|
+
*/
|
72
|
+
modifier initializer() virtual {
|
73
|
+
// solhint-disable-next-line var-name-mixedcase
|
74
|
+
InitializableCustomStorage storage $ = _getInitializableCustomStorage();
|
75
|
+
|
76
|
+
if($._initializeOwner != msg.sender) {
|
77
|
+
revert InvalidInitializationCaller();
|
78
|
+
}
|
79
|
+
|
80
|
+
// Cache values to avoid duplicated sloads
|
81
|
+
bool isTopLevelCall = !$._initializing;
|
82
|
+
uint64 initialized = $._initialized;
|
83
|
+
|
84
|
+
// Allowed calls:
|
85
|
+
// - initialSetup: the contract is not in the initializing state and no previous version was
|
86
|
+
// initialized
|
87
|
+
// - construction: the contract is initialized at version 1 (no reininitialization) and the
|
88
|
+
// current contract is just being deployed
|
89
|
+
bool initialSetup = initialized == 0 && isTopLevelCall;
|
90
|
+
bool construction = initialized == 1 && address(this).code.length == 0;
|
91
|
+
|
92
|
+
if (!initialSetup && !construction) {
|
93
|
+
revert InvalidInitialization();
|
94
|
+
}
|
95
|
+
$._initialized = 1;
|
96
|
+
if (isTopLevelCall) {
|
97
|
+
$._initializing = true;
|
98
|
+
}
|
99
|
+
_;
|
100
|
+
if (isTopLevelCall) {
|
101
|
+
$._initializing = false;
|
102
|
+
emit Initialized(1);
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
/**
|
107
|
+
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
|
108
|
+
* {initializer} and {reinitializer} modifiers, directly or indirectly.
|
109
|
+
*/
|
110
|
+
modifier onlyInitializing() {
|
111
|
+
_checkInitializing();
|
112
|
+
_;
|
113
|
+
}
|
114
|
+
|
115
|
+
/**
|
116
|
+
* @dev Constructor sets the caller of protected initializer function.
|
117
|
+
*/
|
118
|
+
constructor() {
|
119
|
+
// solhint-disable-previous-line var-name-mixedcase
|
120
|
+
InitializableCustomStorage storage $ = _getInitializableCustomStorage();
|
121
|
+
$._initializeOwner = msg.sender;
|
122
|
+
}
|
123
|
+
|
124
|
+
/**
|
125
|
+
* @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
|
126
|
+
*/
|
127
|
+
function _checkInitializing() internal view virtual {
|
128
|
+
if (!_isInitializing()) {
|
129
|
+
revert NotInitializing();
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
/**
|
134
|
+
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
|
135
|
+
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
|
136
|
+
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
|
137
|
+
* through proxies.
|
138
|
+
*
|
139
|
+
* Emits an {Initialized} event the first time it is successfully executed.
|
140
|
+
*/
|
141
|
+
function _disableInitializers() internal virtual {
|
142
|
+
// solhint-disable-next-line var-name-mixedcase
|
143
|
+
InitializableCustomStorage storage $ = _getInitializableCustomStorage();
|
144
|
+
|
145
|
+
if ($._initializing) {
|
146
|
+
revert InvalidInitialization();
|
147
|
+
}
|
148
|
+
if ($._initialized != type(uint64).max) {
|
149
|
+
$._initialized = type(uint64).max;
|
150
|
+
emit Initialized(type(uint64).max);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
/**
|
155
|
+
* @dev Returns the highest version that has been initialized. See {reinitializer}.
|
156
|
+
*/
|
157
|
+
function _getInitializedVersion() internal view returns (uint64) {
|
158
|
+
return _getInitializableCustomStorage()._initialized;
|
159
|
+
}
|
160
|
+
|
161
|
+
/**
|
162
|
+
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
|
163
|
+
*/
|
164
|
+
function _isInitializing() internal view returns (bool) {
|
165
|
+
return _getInitializableCustomStorage()._initializing;
|
166
|
+
}
|
167
|
+
|
168
|
+
/**
|
169
|
+
* @dev Returns a pointer to the storage namespace.
|
170
|
+
*/
|
171
|
+
// solhint-disable-next-line var-name-mixedcase
|
172
|
+
function _getInitializableCustomStorage() private pure returns (InitializableCustomStorage storage $) {
|
173
|
+
assembly {
|
174
|
+
$.slot := INITIALIZABLE_CUSTOM_STORAGE
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
@@ -12,13 +12,12 @@ import {IInstanceLinkedComponent} from "./IInstanceLinkedComponent.sol";
|
|
12
12
|
import {IComponents} from "../instance/module/IComponents.sol";
|
13
13
|
import {IInstanceService} from "../instance/IInstanceService.sol";
|
14
14
|
import {IInstance} from "../instance/IInstance.sol";
|
15
|
-
import {
|
15
|
+
import {InstanceAdmin} from "../instance/InstanceAdmin.sol";
|
16
16
|
import {InstanceReader} from "../instance/InstanceReader.sol";
|
17
17
|
import {IRegistry} from "../registry/IRegistry.sol";
|
18
18
|
import {NftId} from "../type/NftId.sol";
|
19
19
|
import {ObjectType, COMPONENT, INSTANCE} from "../type/ObjectType.sol";
|
20
20
|
import {VersionPart} from "../type/Version.sol";
|
21
|
-
import {Registerable} from "../shared/Registerable.sol";
|
22
21
|
import {RoleId, RoleIdLib} from "../type/RoleId.sol";
|
23
22
|
import {IAccess} from "../instance/module/IAccess.sol";
|
24
23
|
import {TokenHandler} from "../shared/TokenHandler.sol";
|