@etherisc/gif-next 0.0.2-c00cf5d-513 → 0.0.2-c0457ac-280
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/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +198 -177
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +130 -335
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +67 -96
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +83 -108
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +35 -48
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +32 -101
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +65 -66
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +163 -10
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +81 -93
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +56 -40
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +84 -44
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +458 -331
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +268 -46
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +74 -43
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1095 -344
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +0 -53
- 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 -71
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- 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/{instance/module/ISetup.sol/ISetup.json → oracle/IOracle.sol/IOracle.json} +2 -2
- 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 +675 -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 +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +91 -264
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +56 -69
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +19 -51
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +145 -86
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +134 -133
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +242 -103
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +180 -376
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +42 -83
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +93 -167
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +56 -45
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +121 -211
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +64 -61
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +20 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +20 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +94 -25
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +40 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +241 -107
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +13 -55
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +180 -297
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +54 -99
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +163 -174
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +81 -54
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +337 -157
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +47 -230
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +34 -47
- 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 +65 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +153 -1
- package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.json +129 -0
- 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 +294 -15
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1712 -103
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +198 -28
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +45 -42
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +321 -161
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.json +171 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +187 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +314 -136
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1559 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +1 -1
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +1 -1
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +42 -10
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +1 -1
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +42 -10
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +1 -1
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +52 -20
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +1 -1
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +52 -20
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +100 -96
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +916 -55
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +796 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
- 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/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1189 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +1 -1
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +76 -81
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +1 -11
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.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 +20 -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 +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +571 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- 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 +33 -20
- 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 +19 -32
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +17 -22
- 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 +16 -16
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +40 -4
- 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 +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +566 -54
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +657 -100
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +65 -46
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2261 -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 +53 -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 +34 -34
- 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 +47 -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 +96 -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 +4 -4
- 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 +114 -4
- 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/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +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 +29 -53
- package/contracts/distribution/DistributionService.sol +61 -115
- package/contracts/distribution/IDistributionComponent.sol +5 -10
- package/contracts/distribution/IDistributionService.sol +2 -8
- package/contracts/instance/IInstance.sol +15 -7
- package/contracts/instance/IInstanceService.sol +35 -10
- package/contracts/instance/Instance.sol +63 -34
- package/contracts/instance/InstanceAdmin.sol +3 -2
- package/contracts/instance/InstanceAuthorizationsLib.sol +84 -27
- package/contracts/instance/InstanceReader.sol +64 -40
- package/contracts/instance/InstanceService.sol +185 -45
- package/contracts/instance/InstanceStore.sol +122 -64
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +2 -25
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectManager.sol +1 -3
- package/contracts/instance/module/IBundle.sol +1 -4
- package/contracts/instance/module/IComponents.sol +15 -4
- package/contracts/instance/module/IPolicy.sol +8 -2
- 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 +278 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +79 -167
- package/contracts/pool/IBundleService.sol +4 -16
- package/contracts/pool/IPoolComponent.sol +4 -6
- package/contracts/pool/IPoolService.sol +45 -9
- package/contracts/pool/Pool.sol +39 -42
- package/contracts/pool/PoolService.sol +190 -142
- package/contracts/product/ApplicationService.sol +109 -42
- package/contracts/product/ClaimService.sol +18 -19
- package/contracts/product/IApplicationService.sol +1 -1
- package/contracts/product/IClaimService.sol +7 -1
- package/contracts/product/IPolicyService.sol +6 -8
- package/contracts/product/IPricingService.sol +3 -1
- package/contracts/product/IProductComponent.sol +7 -6
- package/contracts/product/IProductService.sol +1 -8
- package/contracts/product/PolicyService.sol +225 -128
- package/contracts/product/PricingService.sol +72 -48
- package/contracts/product/Product.sol +47 -49
- package/contracts/product/ProductService.sol +26 -114
- package/contracts/registry/ChainNft.sol +8 -1
- package/contracts/registry/IRegistry.sol +15 -4
- package/contracts/registry/IRegistryService.sol +10 -0
- package/contracts/registry/IServiceAuthorization.sol +35 -0
- package/contracts/registry/Registry.sol +164 -47
- package/contracts/registry/RegistryAdmin.sol +264 -72
- package/contracts/registry/RegistryService.sol +48 -14
- package/contracts/registry/RegistryServiceManager.sol +2 -9
- package/contracts/registry/ReleaseManager.sol +242 -177
- package/contracts/registry/ServiceAuthorization.sol +86 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +261 -64
- package/contracts/shared/AccessAdmin.sol +759 -0
- package/contracts/shared/AccessManagerCustom.sol +6 -1
- package/contracts/shared/AccessManagerExtended.sol +19 -7
- package/contracts/shared/Component.sol +139 -129
- package/contracts/shared/ComponentService.sol +563 -88
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +1 -1
- package/contracts/shared/IAccessAdmin.sol +168 -0
- package/contracts/shared/IComponent.sol +17 -37
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +6 -6
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -3
- package/contracts/shared/INftOwnable.sol +1 -1
- package/contracts/shared/IPolicyHolder.sol +6 -1
- package/contracts/shared/IService.sol +8 -1
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +144 -0
- package/contracts/{instance/base → shared}/KeyValueStore.sol +30 -72
- package/contracts/{instance/base → shared}/Lifecycle.sol +12 -3
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +3 -13
- package/contracts/shared/PolicyHolder.sol +21 -13
- package/contracts/shared/ProxyManager.sol +2 -3
- package/contracts/shared/Registerable.sol +2 -2
- package/contracts/shared/Service.sol +32 -21
- package/contracts/shared/TokenHandler.sol +24 -1
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +98 -47
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +513 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +286 -44
- package/contracts/staking/StakingServiceManager.sol +7 -3
- package/contracts/staking/StakingStore.sol +613 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/type/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +20 -1
- package/contracts/type/Blocknumber.sol +20 -3
- package/contracts/type/Fee.sol +17 -16
- package/contracts/type/NftId.sol +14 -16
- package/contracts/type/NftIdSet.sol +1 -1
- package/contracts/type/ObjectType.sol +142 -63
- 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 +82 -20
- package/contracts/type/Seconds.sol +27 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/type/StateId.sol +27 -2
- package/contracts/type/String.sol +53 -0
- package/contracts/type/Timestamp.sol +6 -2
- package/contracts/type/Version.sol +1 -1
- package/package.json +3 -3
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -581
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
@@ -3,33 +3,36 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
5
5
|
|
6
|
-
import {
|
6
|
+
import {Amount} from "../type/Amount.sol";
|
7
|
+
import {Key32} from "../type/Key32.sol";
|
7
8
|
import {NftId} from "../type/NftId.sol";
|
8
9
|
import {ClaimId} from "../type/ClaimId.sol";
|
9
|
-
import {ObjectType, BUNDLE,
|
10
|
-
import {
|
11
|
-
import {
|
12
|
-
import {StateId
|
13
|
-
import {TimestampLib} from "../type/Timestamp.sol";
|
14
|
-
import {VersionPart, VersionPartLib} from "../type/Version.sol";
|
10
|
+
import {ObjectType, BUNDLE, POLICY, POOL, PRODUCT, COMPONENT, DISTRIBUTOR, DISTRIBUTOR_TYPE} from "../type/ObjectType.sol";
|
11
|
+
import {RequestId} from "../type/RequestId.sol";
|
12
|
+
import {RiskId} from "../type/RiskId.sol";
|
13
|
+
import {StateId} from "../type/StateId.sol";
|
15
14
|
import {ReferralId} from "../type/Referral.sol";
|
16
15
|
import {DistributorType} from "../type/DistributorType.sol";
|
17
16
|
import {PayoutId} from "../type/PayoutId.sol";
|
18
17
|
|
18
|
+
import {BalanceStore} from "./base/BalanceStore.sol";
|
19
19
|
import {IInstance} from "./IInstance.sol";
|
20
|
-
import {KeyValueStore} from "
|
21
|
-
import {
|
20
|
+
import {KeyValueStore} from "../shared/KeyValueStore.sol";
|
21
|
+
import {ObjectCounter} from "./base/ObjectCounter.sol";
|
22
22
|
|
23
23
|
import {IBundle} from "./module/IBundle.sol";
|
24
24
|
import {IComponents} from "./module/IComponents.sol";
|
25
25
|
import {IDistribution} from "./module/IDistribution.sol";
|
26
26
|
import {IPolicy} from "./module/IPolicy.sol";
|
27
|
+
import {IOracle} from "../oracle/IOracle.sol";
|
27
28
|
import {IRisk} from "./module/IRisk.sol";
|
28
|
-
import {ISetup} from "./module/ISetup.sol";
|
29
29
|
|
30
30
|
|
31
|
-
|
32
|
-
|
31
|
+
contract InstanceStore is
|
32
|
+
AccessManagedUpgradeable,
|
33
|
+
BalanceStore,
|
34
|
+
KeyValueStore,
|
35
|
+
ObjectCounter
|
33
36
|
{
|
34
37
|
function initialize(address instance)
|
35
38
|
public
|
@@ -37,163 +40,218 @@ contract InstanceStore is AccessManagedUpgradeable, KeyValueStore
|
|
37
40
|
{
|
38
41
|
address authority = IInstance(instance).authority();
|
39
42
|
__AccessManaged_init(authority);
|
43
|
+
|
40
44
|
initializeLifecycle();
|
41
45
|
}
|
42
46
|
|
43
|
-
//---
|
44
|
-
function createProductSetup(NftId productNftId, ISetup.ProductSetupInfo memory setup) external restricted() {
|
45
|
-
create(_toNftKey32(productNftId, PRODUCT()), abi.encode(setup));
|
46
|
-
}
|
47
|
+
//--- Component ---------------------------------------------------------//
|
47
48
|
|
48
|
-
function
|
49
|
-
|
49
|
+
function createComponent(
|
50
|
+
NftId componentNftId,
|
51
|
+
IComponents.ComponentInfo memory componentInfo
|
52
|
+
)
|
53
|
+
external
|
54
|
+
restricted()
|
55
|
+
{
|
56
|
+
_registerBalanceTarget(componentNftId);
|
57
|
+
_create(_toNftKey32(componentNftId, COMPONENT()), abi.encode(componentInfo));
|
50
58
|
}
|
51
59
|
|
52
|
-
function
|
53
|
-
|
60
|
+
function updateComponent(
|
61
|
+
NftId componentNftId,
|
62
|
+
IComponents.ComponentInfo memory componentInfo,
|
63
|
+
StateId newState
|
64
|
+
)
|
65
|
+
external
|
66
|
+
restricted()
|
67
|
+
{
|
68
|
+
_update(_toNftKey32(componentNftId, COMPONENT()), abi.encode(componentInfo), newState);
|
54
69
|
}
|
55
70
|
|
56
|
-
//---
|
57
|
-
function createDistributionSetup(NftId distributionNftId, ISetup.DistributionSetupInfo memory setup) external restricted() {
|
58
|
-
create(_toNftKey32(distributionNftId, DISTRIBUTION()), abi.encode(setup));
|
59
|
-
}
|
71
|
+
//--- Product -----------------------------------------------------------//
|
60
72
|
|
61
|
-
function
|
62
|
-
|
73
|
+
function createProduct(NftId productNftId, IComponents.ProductInfo memory info) external restricted() {
|
74
|
+
_create(_toNftKey32(productNftId, PRODUCT()), abi.encode(info));
|
63
75
|
}
|
64
76
|
|
65
|
-
function
|
66
|
-
|
77
|
+
function updateProduct(NftId productNftId, IComponents.ProductInfo memory info, StateId newState) external restricted() {
|
78
|
+
_update(_toNftKey32(productNftId, PRODUCT()), abi.encode(info), newState);
|
67
79
|
}
|
68
80
|
|
69
|
-
//---
|
70
|
-
function createPoolSetup(NftId poolNftId, IComponents.ComponentInfo memory info) external restricted() {
|
71
|
-
create(_toNftKey32(poolNftId, POOL()), abi.encode(info));
|
72
|
-
}
|
81
|
+
//--- Pool --------------------------------------------------------------//
|
73
82
|
|
74
|
-
function
|
75
|
-
|
83
|
+
function createPool(
|
84
|
+
NftId poolNftId,
|
85
|
+
IComponents.PoolInfo memory info
|
86
|
+
)
|
87
|
+
external
|
88
|
+
restricted()
|
89
|
+
{
|
90
|
+
_create(_toNftKey32(poolNftId, POOL()), abi.encode(info));
|
76
91
|
}
|
77
92
|
|
78
|
-
function
|
79
|
-
|
93
|
+
function updatePool(NftId poolNftId, IComponents.PoolInfo memory info, StateId newState) external restricted() {
|
94
|
+
_update(_toNftKey32(poolNftId, POOL()), abi.encode(info), newState);
|
80
95
|
}
|
81
96
|
|
82
|
-
//--- DistributorType
|
97
|
+
//--- DistributorType ---------------------------------------------------//
|
83
98
|
function createDistributorType(DistributorType distributorType, IDistribution.DistributorTypeInfo memory info) external restricted() {
|
84
|
-
|
99
|
+
_create(distributorType.toKey32(), abi.encode(info));
|
85
100
|
}
|
86
101
|
|
87
102
|
function updateDistributorType(DistributorType distributorType, IDistribution.DistributorTypeInfo memory info, StateId newState) external restricted() {
|
88
|
-
|
103
|
+
_update(distributorType.toKey32(), abi.encode(info), newState);
|
89
104
|
}
|
90
105
|
|
91
106
|
function updateDistributorTypeState(DistributorType distributorType, StateId newState) external restricted() {
|
92
|
-
|
107
|
+
_updateState(distributorType.toKey32(), newState);
|
93
108
|
}
|
94
109
|
|
95
110
|
//--- Distributor -------------------------------------------------------//
|
96
111
|
function createDistributor(NftId distributorNftId, IDistribution.DistributorInfo memory info) external restricted() {
|
97
|
-
|
112
|
+
_create(_toNftKey32(distributorNftId, DISTRIBUTOR()), abi.encode(info));
|
98
113
|
}
|
99
114
|
|
100
115
|
function updateDistributor(NftId distributorNftId, IDistribution.DistributorInfo memory info, StateId newState) external restricted() {
|
101
|
-
|
116
|
+
_update(_toNftKey32(distributorNftId, DISTRIBUTOR()), abi.encode(info), newState);
|
102
117
|
}
|
103
118
|
|
104
119
|
function updateDistributorState(NftId distributorNftId, StateId newState) external restricted() {
|
105
|
-
|
120
|
+
_updateState(_toNftKey32(distributorNftId, DISTRIBUTOR()), newState);
|
106
121
|
}
|
107
122
|
|
108
123
|
//--- Referral ----------------------------------------------------------//
|
109
124
|
function createReferral(ReferralId referralId, IDistribution.ReferralInfo memory referralInfo) external restricted() {
|
110
|
-
|
125
|
+
_create(referralId.toKey32(), abi.encode(referralInfo));
|
111
126
|
}
|
112
127
|
|
113
128
|
function updateReferral(ReferralId referralId, IDistribution.ReferralInfo memory referralInfo, StateId newState) external restricted() {
|
114
|
-
|
129
|
+
_update(referralId.toKey32(), abi.encode(referralInfo), newState);
|
115
130
|
}
|
116
131
|
|
117
132
|
function updateReferralState(ReferralId referralId, StateId newState) external restricted() {
|
118
|
-
|
133
|
+
_updateState(referralId.toKey32(), newState);
|
119
134
|
}
|
120
135
|
|
121
136
|
//--- Bundle ------------------------------------------------------------//
|
122
137
|
function createBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle) external restricted() {
|
123
|
-
|
138
|
+
_registerBalanceTarget(bundleNftId);
|
139
|
+
_create(_toNftKey32(bundleNftId, BUNDLE()), abi.encode(bundle));
|
124
140
|
}
|
125
141
|
|
126
142
|
function updateBundle(NftId bundleNftId, IBundle.BundleInfo memory bundle, StateId newState) external restricted() {
|
127
|
-
|
143
|
+
_update(_toNftKey32(bundleNftId, BUNDLE()), abi.encode(bundle), newState);
|
128
144
|
}
|
129
145
|
|
130
146
|
function updateBundleState(NftId bundleNftId, StateId newState) external restricted() {
|
131
|
-
|
147
|
+
_updateState(_toNftKey32(bundleNftId, BUNDLE()), newState);
|
132
148
|
}
|
133
149
|
|
134
150
|
//--- Risk --------------------------------------------------------------//
|
135
151
|
function createRisk(RiskId riskId, IRisk.RiskInfo memory risk) external restricted() {
|
136
|
-
|
152
|
+
_create(riskId.toKey32(), abi.encode(risk));
|
137
153
|
}
|
138
154
|
|
139
155
|
function updateRisk(RiskId riskId, IRisk.RiskInfo memory risk, StateId newState) external restricted() {
|
140
|
-
|
156
|
+
_update(riskId.toKey32(), abi.encode(risk), newState);
|
141
157
|
}
|
142
158
|
|
143
159
|
function updateRiskState(RiskId riskId, StateId newState) external restricted() {
|
144
|
-
|
160
|
+
_updateState(riskId.toKey32(), newState);
|
145
161
|
}
|
146
162
|
|
147
163
|
//--- Application (Policy) ----------------------------------------------//
|
148
164
|
function createApplication(NftId applicationNftId, IPolicy.PolicyInfo memory policy) external restricted() {
|
149
|
-
|
165
|
+
_registerBalanceTarget(applicationNftId);
|
166
|
+
_create(_toNftKey32(applicationNftId, POLICY()), abi.encode(policy));
|
150
167
|
}
|
151
168
|
|
152
169
|
function updateApplication(NftId applicationNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
153
|
-
|
170
|
+
_update(_toNftKey32(applicationNftId, POLICY()), abi.encode(policy), newState);
|
154
171
|
}
|
155
172
|
|
156
173
|
function updateApplicationState(NftId applicationNftId, StateId newState) external restricted() {
|
157
|
-
|
174
|
+
_updateState(_toNftKey32(applicationNftId, POLICY()), newState);
|
158
175
|
}
|
159
176
|
|
160
177
|
//--- Policy ------------------------------------------------------------//
|
161
178
|
function updatePolicy(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
162
|
-
|
179
|
+
_update(_toNftKey32(policyNftId, POLICY()), abi.encode(policy), newState);
|
163
180
|
}
|
164
181
|
|
165
182
|
function updatePolicyClaims(NftId policyNftId, IPolicy.PolicyInfo memory policy, StateId newState) external restricted() {
|
166
|
-
|
183
|
+
_update(_toNftKey32(policyNftId, POLICY()), abi.encode(policy), newState);
|
167
184
|
}
|
168
185
|
|
169
186
|
function updatePolicyState(NftId policyNftId, StateId newState) external restricted() {
|
170
|
-
|
187
|
+
_updateState(_toNftKey32(policyNftId, POLICY()), newState);
|
171
188
|
}
|
172
189
|
|
173
190
|
//--- Claim -------------------------------------------------------------//
|
174
191
|
function createClaim(NftId policyNftId, ClaimId claimId, IPolicy.ClaimInfo memory claim) external restricted() {
|
175
|
-
|
192
|
+
_create(_toClaimKey32(policyNftId, claimId), abi.encode(claim));
|
176
193
|
}
|
177
194
|
|
178
195
|
function updateClaim(NftId policyNftId, ClaimId claimId, IPolicy.ClaimInfo memory claim, StateId newState) external restricted() {
|
179
|
-
|
196
|
+
_update(_toClaimKey32(policyNftId, claimId), abi.encode(claim), newState);
|
180
197
|
}
|
181
198
|
|
182
199
|
function updateClaimState(NftId policyNftId, ClaimId claimId, StateId newState) external restricted() {
|
183
|
-
|
200
|
+
_updateState(_toClaimKey32(policyNftId, claimId), newState);
|
184
201
|
}
|
185
202
|
|
186
203
|
//--- Payout ------------------------------------------------------------//
|
187
204
|
function createPayout(NftId policyNftId, PayoutId payoutId, IPolicy.PayoutInfo memory payout) external restricted() {
|
188
|
-
|
205
|
+
_create(_toPayoutKey32(policyNftId, payoutId), abi.encode(payout));
|
189
206
|
}
|
190
207
|
|
191
208
|
function updatePayout(NftId policyNftId, PayoutId payoutId, IPolicy.PayoutInfo memory payout, StateId newState) external restricted() {
|
192
|
-
|
209
|
+
_update(_toPayoutKey32(policyNftId, payoutId), abi.encode(payout), newState);
|
193
210
|
}
|
194
211
|
|
195
212
|
function updatePayoutState(NftId policyNftId, PayoutId payoutId, StateId newState) external restricted() {
|
196
|
-
|
213
|
+
_updateState(_toPayoutKey32(policyNftId, payoutId), newState);
|
214
|
+
}
|
215
|
+
|
216
|
+
//--- Request -----------------------------------------------------------//
|
217
|
+
|
218
|
+
function createRequest(IOracle.RequestInfo memory request) external restricted() returns (RequestId requestId) {
|
219
|
+
requestId = _createNextRequestId();
|
220
|
+
_create(requestId.toKey32(), abi.encode(request));
|
221
|
+
}
|
222
|
+
|
223
|
+
function updateRequest(RequestId requestId, IOracle.RequestInfo memory request, StateId newState) external restricted() {
|
224
|
+
_update(requestId.toKey32(), abi.encode(request), newState);
|
225
|
+
}
|
226
|
+
|
227
|
+
function updateRequestState(RequestId requestId, StateId newState) external restricted() {
|
228
|
+
_updateState(requestId.toKey32(), newState);
|
229
|
+
}
|
230
|
+
|
231
|
+
//--- balance and fee management functions ------------------------------//
|
232
|
+
|
233
|
+
function increaseBalance(NftId targetNftId, Amount amount) external restricted() returns (Amount newBalance) {
|
234
|
+
return _increaseBalance(targetNftId, amount);
|
235
|
+
}
|
236
|
+
|
237
|
+
function decreaseBalance(NftId targetNftId, Amount amount) external restricted() returns (Amount newBalance) {
|
238
|
+
return _decreaseBalance(targetNftId, amount);
|
239
|
+
}
|
240
|
+
|
241
|
+
function increaseFees(NftId targetNftId, Amount amount) external restricted() returns (Amount newFeeBalance) {
|
242
|
+
return _increaseFees(targetNftId, amount);
|
243
|
+
}
|
244
|
+
|
245
|
+
function decreaseFees(NftId targetNftId, Amount amount) external restricted() returns (Amount newFeeBalance) {
|
246
|
+
return _decreaseFees(targetNftId, amount);
|
247
|
+
}
|
248
|
+
|
249
|
+
function increaseLocked(NftId targetNftId, Amount amount) external restricted() returns (Amount newBalance) {
|
250
|
+
return _increaseLocked(targetNftId, amount);
|
251
|
+
}
|
252
|
+
|
253
|
+
function decreaseLocked(NftId targetNftId, Amount amount) external restricted() returns (Amount newBalance) {
|
254
|
+
return _decreaseLocked(targetNftId, amount);
|
197
255
|
}
|
198
256
|
|
199
257
|
//--- internal view/pure functions --------------------------------------//
|
@@ -0,0 +1,123 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {Blocknumber, BlocknumberLib} from "../../type/Blocknumber.sol";
|
5
|
+
import {NftId} from "../../type/NftId.sol";
|
6
|
+
import {Amount} from "../../type/Amount.sol";
|
7
|
+
|
8
|
+
contract BalanceStore {
|
9
|
+
|
10
|
+
error ErrorBalanceStoreTargetAlreadyRegistered(NftId targetNftId);
|
11
|
+
error ErrorBalanceStoreTargetNotRegistered(NftId targetNftId);
|
12
|
+
|
13
|
+
event LogBalanceStoreTargetRegistered(NftId targetNftId);
|
14
|
+
|
15
|
+
event LogBalanceStoreFeesIncreased(NftId targetNftId, Amount addedAmount, Amount newBalance, Blocknumber lastUpdatedIn);
|
16
|
+
event LogBalanceStoreFeesDecreased(NftId targetNftId, Amount addedAmount, Amount newBalance, Blocknumber lastUpdatedIn);
|
17
|
+
|
18
|
+
event LogBalanceStoreLockedIncreased(NftId targetNftId, Amount addedAmount, Amount newBalance, Blocknumber lastUpdatedIn);
|
19
|
+
event LogBalanceStoreLockedDecreased(NftId targetNftId, Amount addedAmount, Amount newBalance, Blocknumber lastUpdatedIn);
|
20
|
+
|
21
|
+
event LogBalanceStoreBalanceIncreased(NftId targetNftId, Amount addedAmount, Amount newBalance, Blocknumber lastUpdatedIn);
|
22
|
+
event LogBalanceStoreBalanceDecreased(NftId targetNftId, Amount addedAmount, Amount newBalance, Blocknumber lastUpdatedIn);
|
23
|
+
|
24
|
+
mapping(NftId nftId => Amount balance) private _balanceAmount;
|
25
|
+
mapping(NftId nftId => Amount locked) private _lockedAmount;
|
26
|
+
mapping(NftId nftId => Amount fees) private _feeAmount;
|
27
|
+
mapping(NftId nftId => bool isRegistered) private _isRegistered;
|
28
|
+
|
29
|
+
// TODO check if this is made redundant by *Info struct updates
|
30
|
+
mapping(NftId nftId => Blocknumber lastUpdatedIn) private _lastUpdatedIn;
|
31
|
+
|
32
|
+
modifier onlyRegisteredTarget(NftId targetNftId) {
|
33
|
+
if (!_isRegistered[targetNftId]) {
|
34
|
+
revert ErrorBalanceStoreTargetNotRegistered(targetNftId);
|
35
|
+
}
|
36
|
+
_;
|
37
|
+
}
|
38
|
+
|
39
|
+
function getBalanceAmount(NftId targetNftId) external view returns (Amount balanceAmount) { return _balanceAmount[targetNftId]; }
|
40
|
+
function getLockedAmount(NftId targetNftId) external view returns (Amount lockedAmount) { return _lockedAmount[targetNftId]; }
|
41
|
+
function getFeeAmount(NftId targetNftId) external view returns (Amount feeAmount) { return _feeAmount[targetNftId]; }
|
42
|
+
|
43
|
+
function getAmounts(NftId targetNftId)
|
44
|
+
external
|
45
|
+
view
|
46
|
+
returns (
|
47
|
+
Amount balanceAmount,
|
48
|
+
Amount lockedAmount,
|
49
|
+
Amount feeAmount
|
50
|
+
)
|
51
|
+
{
|
52
|
+
balanceAmount = _balanceAmount[targetNftId];
|
53
|
+
lockedAmount = _lockedAmount[targetNftId];
|
54
|
+
feeAmount = _feeAmount[targetNftId];
|
55
|
+
}
|
56
|
+
|
57
|
+
function _registerBalanceTarget(NftId targetNftId) internal {
|
58
|
+
if (_isRegistered[targetNftId]) {
|
59
|
+
revert ErrorBalanceStoreTargetAlreadyRegistered(targetNftId);
|
60
|
+
}
|
61
|
+
|
62
|
+
_isRegistered[targetNftId] = true;
|
63
|
+
_setLastUpdatedIn(targetNftId);
|
64
|
+
|
65
|
+
emit LogBalanceStoreTargetRegistered(targetNftId);
|
66
|
+
}
|
67
|
+
|
68
|
+
//--- fee management ----------------------------------------------------//
|
69
|
+
function _increaseFees(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
|
70
|
+
newBalance = _feeAmount[targetNftId] + amount;
|
71
|
+
_feeAmount[targetNftId] = newBalance;
|
72
|
+
|
73
|
+
emit LogBalanceStoreFeesIncreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
|
74
|
+
_setLastUpdatedIn(targetNftId);
|
75
|
+
}
|
76
|
+
|
77
|
+
function _decreaseFees(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
|
78
|
+
newBalance = _feeAmount[targetNftId] - amount;
|
79
|
+
_feeAmount[targetNftId] = newBalance;
|
80
|
+
|
81
|
+
emit LogBalanceStoreFeesDecreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
|
82
|
+
_setLastUpdatedIn(targetNftId);
|
83
|
+
}
|
84
|
+
|
85
|
+
//--- locked management -------------------------------------------------//
|
86
|
+
function _increaseLocked(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
|
87
|
+
newBalance = _lockedAmount[targetNftId] + amount;
|
88
|
+
_lockedAmount[targetNftId] = newBalance;
|
89
|
+
|
90
|
+
emit LogBalanceStoreLockedIncreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
|
91
|
+
_setLastUpdatedIn(targetNftId);
|
92
|
+
}
|
93
|
+
|
94
|
+
function _decreaseLocked(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
|
95
|
+
newBalance = _lockedAmount[targetNftId] - amount;
|
96
|
+
_lockedAmount[targetNftId] = newBalance;
|
97
|
+
|
98
|
+
emit LogBalanceStoreLockedDecreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
|
99
|
+
_setLastUpdatedIn(targetNftId);
|
100
|
+
}
|
101
|
+
|
102
|
+
//--- balance management ------------------------------------------------//
|
103
|
+
function _increaseBalance(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
|
104
|
+
newBalance = _balanceAmount[targetNftId] + amount;
|
105
|
+
_balanceAmount[targetNftId] = newBalance;
|
106
|
+
|
107
|
+
emit LogBalanceStoreBalanceIncreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
|
108
|
+
_setLastUpdatedIn(targetNftId);
|
109
|
+
}
|
110
|
+
|
111
|
+
function _decreaseBalance(NftId targetNftId, Amount amount) internal onlyRegisteredTarget(targetNftId) returns (Amount newBalance) {
|
112
|
+
newBalance = _balanceAmount[targetNftId] - amount;
|
113
|
+
_balanceAmount[targetNftId] = newBalance;
|
114
|
+
|
115
|
+
emit LogBalanceStoreBalanceDecreased(targetNftId, amount, newBalance, _lastUpdatedIn[targetNftId]);
|
116
|
+
_setLastUpdatedIn(targetNftId);
|
117
|
+
}
|
118
|
+
|
119
|
+
//--- internal/private functions ----------------------------------------//
|
120
|
+
function _setLastUpdatedIn(NftId targetNftId) internal {
|
121
|
+
_lastUpdatedIn[targetNftId] = BlocknumberLib.currentBlocknumber();
|
122
|
+
}
|
123
|
+
}
|
@@ -2,47 +2,24 @@
|
|
2
2
|
pragma solidity ^0.8.20;
|
3
3
|
|
4
4
|
import {AccessManagedUpgradeable} from "@openzeppelin/contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
|
5
|
-
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
|
6
5
|
|
7
6
|
import {IRegistry} from "../../registry/IRegistry.sol";
|
8
7
|
|
9
8
|
abstract contract Cloneable is
|
10
9
|
AccessManagedUpgradeable
|
11
10
|
{
|
12
|
-
event CloneableInitialized(address authority, address registry);
|
13
|
-
|
14
|
-
error CloneableAuthorityZero();
|
15
|
-
error CloneableRegistryInvalid(address registry);
|
16
|
-
|
17
11
|
IRegistry internal _registry;
|
18
12
|
|
19
|
-
constructor() {
|
20
|
-
_registry = IRegistry(address(0));
|
21
|
-
}
|
22
|
-
|
23
13
|
/// @dev call to initialize MUST be made in the same transaction as cloning of the contract
|
24
|
-
function
|
14
|
+
function __Cloneable_init(
|
25
15
|
address authority,
|
26
16
|
address registry
|
27
17
|
)
|
28
|
-
|
18
|
+
internal
|
29
19
|
onlyInitializing
|
30
20
|
{
|
31
|
-
// check/handle access managed
|
32
|
-
if(authority == address(0)) {
|
33
|
-
revert CloneableAuthorityZero();
|
34
|
-
}
|
35
|
-
|
36
21
|
__AccessManaged_init(authority);
|
37
|
-
|
38
|
-
// check/handle registry
|
39
|
-
if (registry.code.length == 0) {
|
40
|
-
revert CloneableRegistryInvalid(registry);
|
41
|
-
}
|
42
|
-
|
43
22
|
_registry = IRegistry(registry);
|
44
|
-
|
45
|
-
emit CloneableInitialized(authority, registry);
|
46
23
|
}
|
47
24
|
|
48
25
|
function getRegistry() external view returns (IRegistry) {
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {Blocknumber, BlocknumberLib} from "../../type/Blocknumber.sol";
|
5
|
+
import {NftId} from "../../type/NftId.sol";
|
6
|
+
import {Amount} from "../../type/Amount.sol";
|
7
|
+
import {RequestId, RequestIdLib} from "../../type/RequestId.sol";
|
8
|
+
|
9
|
+
contract ObjectCounter {
|
10
|
+
|
11
|
+
// TODO refactor risk id
|
12
|
+
// mapping(NftId productNftId => uint64 risks) private _riskCounter;
|
13
|
+
|
14
|
+
uint256 private _requestCounter;
|
15
|
+
|
16
|
+
// TODO introduce RequestId (uint64)
|
17
|
+
function _createNextRequestId() internal returns (RequestId requestId) {
|
18
|
+
_requestCounter++;
|
19
|
+
requestId = RequestIdLib.toRequestId(_requestCounter);
|
20
|
+
}
|
21
|
+
}
|
@@ -17,7 +17,6 @@ contract ObjectManager is
|
|
17
17
|
event LogObjectManagerInitialized(address instance);
|
18
18
|
|
19
19
|
error ErrorObjectManagerNftIdInvalid(NftId instanceNftId);
|
20
|
-
error ErrorObjectManagerAlreadyAdded(NftId componentNftId, NftId objectNftId);
|
21
20
|
|
22
21
|
mapping(NftId compnentNftId => LibNftIdSet.Set objects) internal _activeObjects;
|
23
22
|
mapping(NftId compnentNftId => LibNftIdSet.Set objects) internal _allObjects;
|
@@ -29,8 +28,7 @@ contract ObjectManager is
|
|
29
28
|
external
|
30
29
|
{
|
31
30
|
IInstance instance = IInstance(instanceAddress);
|
32
|
-
|
33
|
-
|
31
|
+
__Cloneable_init(instance.authority(), address(instance.getRegistry()));
|
34
32
|
_instance = instance;
|
35
33
|
|
36
34
|
emit LogObjectManagerInitialized(instanceAddress);
|
@@ -13,10 +13,7 @@ interface IBundle {
|
|
13
13
|
NftId poolNftId;
|
14
14
|
Fee fee; // bundle fee on net premium amounts
|
15
15
|
bytes filter; // required conditions for applications to be considered for collateralization by this bundle
|
16
|
-
|
17
|
-
Amount lockedAmount; // capital amount linked to collateralizaion of non-closed policies (<= capital amount)
|
18
|
-
Amount feeAmount; // accumulated fee amount
|
19
|
-
Seconds lifetime;
|
16
|
+
Seconds lifetime; // lifetime of bundle after creation
|
20
17
|
Timestamp expiredAt; // no new policies starting with this timestamp
|
21
18
|
Timestamp closedAt; // no open policies, locked amount = 0
|
22
19
|
}
|
@@ -14,21 +14,32 @@ interface IComponents {
|
|
14
14
|
|
15
15
|
struct ComponentInfo {
|
16
16
|
string name; // component name (needs to be unique per instance)
|
17
|
+
NftId productNftId;
|
17
18
|
IERC20Metadata token;
|
18
19
|
TokenHandler tokenHandler;
|
19
20
|
address wallet;
|
20
|
-
Amount balanceAmount; // calculated balance (may not necessarily match withg wallet balance)
|
21
|
-
Amount feeAmount; // accumulated fees belonging to component owner
|
22
21
|
bytes data; // will hold component type specific additional info (eg encoded pool info)
|
23
22
|
}
|
24
23
|
|
24
|
+
|
25
|
+
struct ProductInfo {
|
26
|
+
NftId distributionNftId;
|
27
|
+
NftId poolNftId;
|
28
|
+
Fee productFee; // product fee on net premium
|
29
|
+
Fee processingFee; // product fee on payout amounts
|
30
|
+
Fee distributionFee; // distribution fee for sales that do not include commissions
|
31
|
+
Fee minDistributionOwnerFee; // min fee required by distribution owner (not including commissions for distributors)
|
32
|
+
Fee poolFee; // pool fee on net premium
|
33
|
+
Fee stakingFee; // pool fee on staked capital from investor
|
34
|
+
Fee performanceFee; // pool fee on profits from capital investors
|
35
|
+
}
|
36
|
+
|
37
|
+
|
25
38
|
struct PoolInfo {
|
26
39
|
NftId productNftId; // the nft of the product this pool is linked to
|
27
40
|
RoleId bundleOwnerRole; // the required role for bundle owners
|
28
41
|
// TODO maxCapitalAmount -> maxBalanceAmount
|
29
42
|
Amount maxCapitalAmount; // max capital amount allowed for pool
|
30
|
-
Amount balanceAmount; // current pool balance (accounting view)
|
31
|
-
Amount feeAmount; // accumulated fee amount
|
32
43
|
bool isInterceptingBundleTransfers; // intercepts nft transfers for bundles
|
33
44
|
bool isExternallyManaged; // funding bundles is restricted to book keeping, actual funds may be provided as needed to support payouts
|
34
45
|
bool isVerifyingApplications; // underwriting requires the pool component checks/confirms the applications
|
@@ -12,6 +12,12 @@ import {Timestamp} from "../../type/Timestamp.sol";
|
|
12
12
|
interface IPolicy {
|
13
13
|
|
14
14
|
struct Premium {
|
15
|
+
// premium splitting per target wallet
|
16
|
+
Amount productFeeAmount;
|
17
|
+
Amount distributionFeeAndCommissionAmount;
|
18
|
+
Amount poolPremiumAndFeeAmount;
|
19
|
+
|
20
|
+
// detailed positions
|
15
21
|
// this is the net premium calculated by the product
|
16
22
|
uint256 netPremiumAmount;
|
17
23
|
// fullPremium = netPremium + all fixed amounts + all variable amounts (excl commission and minDistribtuionOwnerFee variable part)
|
@@ -42,8 +48,8 @@ interface IPolicy {
|
|
42
48
|
ReferralId referralId;
|
43
49
|
RiskId riskId;
|
44
50
|
Amount sumInsuredAmount;
|
45
|
-
Amount premiumAmount;
|
46
|
-
Amount premiumPaidAmount; //
|
51
|
+
Amount premiumAmount; // expected premium at application time
|
52
|
+
Amount premiumPaidAmount; // actual paid premium
|
47
53
|
Seconds lifetime;
|
48
54
|
// policy application data, no changes after applying for a policy
|
49
55
|
bytes applicationData;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
5
|
+
|
6
|
+
contract Dip is ERC20 {
|
7
|
+
|
8
|
+
// https://etherscan.io/token/0xc719d010b63e5bbf2c0551872cd5316ed26acd83#readContract
|
9
|
+
string public constant NAME = "Decentralized Insurance Protocol - DUMMY";
|
10
|
+
string public constant SYMBOL = "DIP";
|
11
|
+
uint8 public constant DECIMALS = 18;
|
12
|
+
uint256 public constant INITIAL_SUPPLY = 10**9 * 10**DECIMALS; // 1 Billion 1'000'000'000
|
13
|
+
// decimals == 18 (openzeppelin erc20 default)
|
14
|
+
constructor()
|
15
|
+
ERC20(NAME, SYMBOL)
|
16
|
+
{
|
17
|
+
_mint(
|
18
|
+
_msgSender(),
|
19
|
+
INITIAL_SUPPLY
|
20
|
+
);
|
21
|
+
}
|
22
|
+
|
23
|
+
function decimals() public pure override returns(uint8) {
|
24
|
+
return DECIMALS;
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {NftId} from "../type/NftId.sol";
|
5
|
+
import {Timestamp} from "../type/Timestamp.sol";
|
6
|
+
|
7
|
+
|
8
|
+
interface IOracle {
|
9
|
+
|
10
|
+
struct RequestInfo {
|
11
|
+
NftId requesterNftId; // originator of the request
|
12
|
+
string callbackMethodName; // callback function of the requestor to call to provide response data
|
13
|
+
NftId oracleNftId; // responsible oracle component
|
14
|
+
bytes requestData;
|
15
|
+
bytes responseData;
|
16
|
+
Timestamp respondedAt; // response timestamp
|
17
|
+
Timestamp expiredAt; // expiry timestamp
|
18
|
+
bool isCancelled;
|
19
|
+
}
|
20
|
+
}
|