@etherisc/gif-next 0.0.2-ffa91a6-022 → 3.0.0-06d5e8b-738
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 +124 -332
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +1 -1
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +106 -38
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +111 -45
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +1 -1
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +58 -6
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +370 -141
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1582 -202
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +2 -2
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +266 -64
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +263 -87
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +102 -19
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +256 -16
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +426 -27
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +63 -38
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +269 -69
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +21 -12
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +376 -147
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +160 -78
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +20 -11
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +232 -19
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +108 -79
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +268 -68
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +136 -95
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +268 -68
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
- package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.json +728 -0
- package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.json +229 -0
- package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.json +1234 -0
- package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.json +896 -0
- package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.json +1466 -0
- package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.json +844 -0
- package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.json +2497 -0
- package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.json +891 -0
- package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.json +586 -0
- package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.dbg.json +4 -0
- package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.json +901 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +86 -45
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +268 -68
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +35 -26
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +130 -105
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +268 -68
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +333 -147
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +268 -68
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
- package/artifacts/contracts/{shared/IKeyValueStore.sol/IKeyValueStore.json → instance/BaseStore.sol/BaseStore.json} +51 -229
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +2 -2
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +304 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +374 -35
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +305 -5
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +425 -97
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +753 -401
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +236 -80
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +747 -553
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +331 -31
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +100 -42
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1323 -2012
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +1 -1
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +101 -88
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +2 -2
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +20 -20
- 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 +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +25 -16
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +282 -65
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +19 -10
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +29 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +19 -10
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +83 -38
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +116 -50
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +59 -58
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +268 -68
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +300 -123
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +144 -58
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +186 -33
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +29 -20
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +238 -19
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +29 -20
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +100 -34
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +338 -79
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +141 -63
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +216 -59
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +113 -43
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +46 -37
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +268 -68
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +142 -102
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +128 -70
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +166 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +50 -10
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +55 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +29 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +40 -31
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +203 -18
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +157 -86
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +511 -21
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +138 -72
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +93 -112
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +115 -65
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +40 -31
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +231 -46
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +101 -43
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +33 -22
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +29 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +1 -1
- 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 +71 -60
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +539 -314
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +335 -76
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +41 -12
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +96 -38
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +551 -246
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +169 -111
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +459 -26
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +119 -59
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +19 -10
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +196 -201
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +130 -64
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +76 -41
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +2 -2
- package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/{ComponentVerifyingService.sol/ComponentVerifyingService.json → IAuthorizedComponent.sol/IAuthorizedComponent.json} +238 -90
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +19 -10
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +111 -132
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +19 -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 +19 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +19 -0
- 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 +29 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +19 -10
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +19 -0
- 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 +29 -0
- 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/TokenHandler.sol/TokenHandlerBase.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +2 -2
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +2 -2
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1390 -134
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +97 -117
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1479 -192
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +77 -76
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +139 -64
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +296 -152
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +131 -167
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +96 -46
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1615 -815
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +153 -91
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +10 -10
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +64 -19
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +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 +93 -37
- 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/Key32Set.sol/LibKey32Set.dbg.json +1 -1
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +2 -2
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +2 -2
- 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 +22 -25
- 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 +23 -4
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
- package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.json +33 -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 +39 -218
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +64 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.json +69 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +37 -5
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +60 -36
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +81 -27
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
- package/contracts/accounting/AccountingService.sol +15 -3
- package/contracts/accounting/IAccountingService.sol +4 -2
- package/contracts/authorization/AccessAdmin.sol +303 -326
- package/contracts/authorization/AccessAdminLib.sol +535 -23
- package/contracts/authorization/AccessManagerCloneable.sol +0 -18
- package/contracts/authorization/Authorization.sol +64 -239
- package/contracts/authorization/IAccess.sol +29 -12
- package/contracts/authorization/IAccessAdmin.sol +25 -53
- package/contracts/authorization/IAuthorization.sol +3 -57
- package/contracts/authorization/IServiceAuthorization.sol +55 -17
- package/contracts/authorization/ServiceAuthorization.sol +228 -34
- package/contracts/distribution/BasicDistribution.sol +3 -4
- package/contracts/distribution/BasicDistributionAuthorization.sol +11 -4
- package/contracts/distribution/Distribution.sol +9 -8
- package/contracts/distribution/DistributionService.sol +125 -62
- package/contracts/distribution/IDistributionComponent.sol +3 -1
- package/contracts/distribution/IDistributionService.sol +20 -8
- package/contracts/examples/fire/FireProduct.sol +6 -6
- package/contracts/examples/flight/FlightLib.sol +300 -0
- package/contracts/examples/flight/FlightMessageVerifier.sol +128 -0
- package/contracts/examples/flight/FlightOracle.sol +171 -0
- package/contracts/examples/flight/FlightOracleAuthorization.sol +53 -0
- package/contracts/examples/flight/FlightPool.sol +89 -0
- package/contracts/examples/flight/FlightPoolAuthorization.sol +37 -0
- package/contracts/examples/flight/FlightProduct.sol +685 -0
- package/contracts/examples/flight/FlightProductAuthorization.sol +69 -0
- package/contracts/examples/flight/FlightUSD.sol +28 -0
- package/contracts/examples/flight/originalV1.sol +396 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +83 -19
- package/contracts/instance/BaseStore.sol +93 -0
- package/contracts/instance/IBaseStore.sol +37 -0
- package/contracts/instance/IInstance.sol +57 -6
- package/contracts/instance/IInstanceService.sol +42 -7
- package/contracts/instance/Instance.sol +111 -56
- package/contracts/instance/InstanceAdmin.sol +150 -294
- package/contracts/instance/InstanceAuthorizationV3.sol +106 -66
- package/contracts/instance/InstanceReader.sol +376 -392
- package/contracts/instance/InstanceService.sol +186 -134
- package/contracts/instance/InstanceStore.sol +153 -128
- package/contracts/instance/ProductStore.sol +290 -0
- package/contracts/instance/RiskSet.sol +10 -2
- package/contracts/instance/TargetNames.sol +10 -0
- package/contracts/instance/base/BalanceStore.sol +4 -6
- package/contracts/instance/base/ObjectLifecycle.sol +2 -6
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +15 -5
- package/contracts/instance/module/IDistribution.sol +17 -7
- package/contracts/instance/module/IPolicy.sol +28 -8
- package/contracts/instance/module/IRisk.sol +2 -0
- package/contracts/oracle/BasicOracle.sol +2 -3
- package/contracts/oracle/BasicOracleAuthorization.sol +18 -2
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/IOracleService.sol +12 -12
- package/contracts/oracle/Oracle.sol +4 -6
- package/contracts/oracle/OracleService.sol +8 -8
- package/contracts/pool/BasicPool.sol +4 -16
- package/contracts/pool/BasicPoolAuthorization.sol +10 -5
- package/contracts/pool/BundleService.sol +34 -43
- package/contracts/pool/IBundleService.sol +14 -13
- package/contracts/pool/IPoolService.sol +7 -2
- package/contracts/pool/Pool.sol +6 -18
- package/contracts/pool/PoolLib.sol +127 -2
- package/contracts/pool/PoolService.sol +40 -181
- package/contracts/product/ApplicationService.sol +64 -11
- package/contracts/product/BasicProduct.sol +2 -3
- package/contracts/product/BasicProductAuthorization.sol +13 -5
- package/contracts/product/ClaimService.sol +99 -105
- package/contracts/product/IApplicationService.sol +21 -2
- package/contracts/product/IClaimService.sol +5 -4
- package/contracts/product/IPolicyService.sol +9 -2
- package/contracts/product/IRiskService.sol +18 -3
- package/contracts/product/PolicyService.sol +40 -59
- package/contracts/product/PolicyServiceLib.sol +79 -5
- package/contracts/product/PricingService.sol +28 -31
- package/contracts/product/Product.sol +40 -16
- package/contracts/product/RiskService.sol +50 -15
- package/contracts/registry/IRegistry.sol +15 -9
- package/contracts/registry/IRelease.sol +6 -3
- package/contracts/registry/Registry.sol +15 -9
- package/contracts/registry/RegistryAdmin.sol +39 -118
- package/contracts/registry/RegistryAuthorization.sol +139 -69
- package/contracts/registry/RegistryService.sol +1 -1
- package/contracts/registry/ReleaseAdmin.sol +59 -106
- package/contracts/registry/ReleaseRegistry.sol +20 -12
- package/contracts/registry/ServiceAuthorizationV3.sol +43 -32
- package/contracts/registry/TokenRegistry.sol +56 -52
- package/contracts/shared/Component.sol +8 -8
- package/contracts/shared/ComponentService.sol +245 -262
- package/contracts/shared/ContractLib.sol +106 -75
- package/contracts/shared/EcdsaChecker.sol +5 -0
- package/contracts/shared/IAuthorizedComponent.sol +15 -0
- package/contracts/shared/IComponent.sol +1 -1
- package/contracts/shared/IComponentService.sol +14 -15
- package/contracts/shared/IInstanceLinkedComponent.sol +2 -5
- package/contracts/shared/INftOwnable.sol +2 -0
- package/contracts/shared/IRegisterable.sol +0 -1
- package/contracts/shared/InstanceLinkedComponent.sol +64 -26
- package/contracts/shared/NftOwnable.sol +3 -1
- package/contracts/shared/PolicyHolder.sol +3 -2
- package/contracts/shared/Service.sol +6 -4
- package/contracts/staking/IStaking.sol +261 -70
- package/contracts/staking/IStakingService.sol +39 -84
- package/contracts/staking/ITargetLimitHandler.sol +17 -0
- package/contracts/staking/Staking.sol +468 -217
- package/contracts/staking/StakingLib.sol +38 -124
- package/contracts/staking/StakingManager.sol +4 -3
- package/contracts/staking/StakingReader.sol +62 -71
- package/contracts/staking/StakingService.sol +42 -185
- package/contracts/staking/StakingServiceManager.sol +1 -0
- package/contracts/staking/StakingStore.sol +1093 -331
- package/contracts/staking/TargetHandler.sol +132 -0
- package/contracts/staking/TargetManagerLib.sol +69 -46
- package/contracts/type/Amount.sol +4 -0
- package/contracts/type/Blocknumber.sol +17 -22
- package/contracts/type/ChainId.sol +101 -0
- package/contracts/type/Fee.sol +8 -8
- package/contracts/type/NftId.sol +3 -3
- package/contracts/type/ObjectType.sol +17 -33
- package/contracts/type/Referral.sol +6 -0
- package/contracts/type/RequestIdSet.sol +62 -0
- package/contracts/type/RoleId.sol +57 -59
- package/contracts/type/Seconds.sol +23 -0
- package/contracts/type/String.sol +42 -0
- package/contracts/type/Timestamp.sol +14 -3
- package/contracts/type/UFixed.sol +28 -10
- package/contracts/upgradeability/IVersionable.sol +3 -0
- package/contracts/upgradeability/ProxyManager.sol +26 -12
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
- package/contracts/upgradeability/Versionable.sol +6 -3
- package/package.json +2 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +0 -4
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +0 -24
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +0 -538
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -205
- package/contracts/shared/ComponentVerifyingService.sol +0 -128
- package/contracts/shared/IKeyValueStore.sol +0 -54
- package/contracts/shared/KeyValueStore.sol +0 -131
- package/contracts/staking/StakingLifecycle.sol +0 -23
@@ -3,173 +3,364 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
5
|
|
6
|
-
import {Amount} from "../type/Amount.sol";
|
7
6
|
import {IComponent} from "../shared/IComponent.sol";
|
8
7
|
import {IVersionable} from "../upgradeability/IVersionable.sol";
|
8
|
+
|
9
|
+
import {Amount} from "../type/Amount.sol";
|
10
|
+
import {Blocknumber} from "../type/Blocknumber.sol";
|
11
|
+
import {ChainId} from "../type/ChainId.sol";
|
9
12
|
import {NftId} from "../type/NftId.sol";
|
10
13
|
import {ObjectType} from "../type/ObjectType.sol";
|
11
14
|
import {Seconds} from "../type/Seconds.sol";
|
12
15
|
import {StakingReader} from "./StakingReader.sol";
|
13
16
|
import {StakingStore} from "./StakingStore.sol";
|
17
|
+
import {TargetHandler} from "./TargetHandler.sol";
|
14
18
|
import {Timestamp} from "../type/Timestamp.sol";
|
15
19
|
import {UFixed} from "../type/UFixed.sol";
|
20
|
+
import {VersionPart} from "../type/Version.sol";
|
21
|
+
|
16
22
|
|
17
23
|
interface IStaking is
|
18
24
|
IComponent,
|
19
25
|
IVersionable
|
20
26
|
{
|
21
|
-
|
22
|
-
|
27
|
+
|
28
|
+
// owner functions
|
29
|
+
event LogStakingStakingRateSet(ChainId chainId, address token, UFixed newStakingRate, UFixed oldStakingRate, Blocknumber lastUpdateIn);
|
30
|
+
event LogStakingStakingServiceSet(address stakingService, VersionPart release, address oldStakingService);
|
31
|
+
event LogStakingStakingReaderSet(address stakingReader, address oldStakingReader);
|
32
|
+
event LogStakingTargetHandlerSet(address targetManager, address oldTargetHandler);
|
33
|
+
event LogStakingTokenHandlerApproved(address token, Amount approvalAmount, Amount oldApprovalAmount);
|
34
|
+
|
35
|
+
// token
|
36
|
+
event LogStakingTokenAdded(ChainId chainId, address token);
|
37
|
+
event LogStakingTargetTokenAdded(NftId targetNftId, ChainId chainId, address token);
|
38
|
+
|
39
|
+
// total value locked
|
40
|
+
event LogStakingTvlIncreased(NftId targetNftId, address token, Amount amount, Amount newBalance, Blocknumber lastUpdateIn);
|
41
|
+
event LogStakingTvlDecreased(NftId targetNftId, address token, Amount amount, Amount newBalance, Blocknumber lastUpdateIn);
|
42
|
+
|
43
|
+
// targets
|
44
|
+
event LogStakingSupportInfoSet(
|
45
|
+
ObjectType objectType,
|
46
|
+
bool isSupported,
|
47
|
+
bool allowNewTargets,
|
48
|
+
bool allowCrossChain,
|
49
|
+
Amount minStakingAmount,
|
50
|
+
Amount maxStakingAmount,
|
51
|
+
Seconds minLockingPeriod,
|
52
|
+
Seconds maxLockingPeriod,
|
53
|
+
UFixed minRewardRate,
|
54
|
+
UFixed maxRewardRate,
|
55
|
+
Blocknumber lastUpdateIn);
|
56
|
+
|
57
|
+
event LogStakingTargetCreated(NftId targetNftId, ObjectType objectType, Seconds lockingPeriod, UFixed rewardRate);
|
58
|
+
event LogStakingLimitsSet(NftId targetNftId, Amount marginAmount, Amount hardLimitAmount, Blocknumber lastUpdateIn);
|
59
|
+
event LogStakingTargetLimitsUpdated(NftId targetNftId, Amount marginAmount, Amount hardLimitAmount, Blocknumber lastUpdateIn);
|
60
|
+
event LogStakingTargetLimitUpdated(NftId targetNftId, Amount limitAmount, Amount hardLimitAmount, Amount requiredStakeAmount, Amount actualStakeAmount, Blocknumber lastUpdateIn);
|
23
61
|
|
24
62
|
// target parameters
|
25
|
-
event
|
26
|
-
event
|
27
|
-
event
|
63
|
+
event LogStakingTargetLockingPeriodSet(NftId targetNftId, Seconds oldLockingPeriod, Seconds lockingPeriod, Blocknumber lastUpdateIn);
|
64
|
+
event LogStakingTargetRewardRateSet(NftId targetNftId, UFixed rewardRate, UFixed oldRewardRate, Blocknumber lastUpdateIn);
|
65
|
+
event LogStakingTargetMaxStakedAmountSet(NftId targetNftId, Amount stakeLimitAmount, Blocknumber lastUpdateIn);
|
66
|
+
event LogStakingTargetLimitsSet(NftId targetNftId, Amount stakeLimitAmount, Amount marginAmount, Amount limitAmount);
|
67
|
+
|
68
|
+
// reward reserves
|
69
|
+
event LogStakingRewardReservesRefilled(NftId targetNftId, Amount dipAmount, address targetOwner, Amount reserveBalance, Blocknumber lastUpdateIn);
|
70
|
+
event LogStakingRewardReservesWithdrawn(NftId targetNftId, Amount dipAmount, address targetOwner, Amount reserveBalance, Blocknumber lastUpdateIn);
|
71
|
+
event LogStakingRewardReservesSpent(NftId targetNftId, Amount dipAmount, Amount reserveBalance, Blocknumber lastUpdateIn);
|
72
|
+
|
73
|
+
// stakes
|
74
|
+
event LogStakingStakeCreated(NftId stakeNftId, NftId targetNftId, Amount stakeAmount, Timestamp lockedUntil, address stakeOwner);
|
75
|
+
event LogStakingStakeRewardsUpdated(NftId stakeNftId, Amount rewardIncrementAmount, Amount stakeBalance, Amount rewardBalance, Timestamp lockedUntil, Blocknumber lastUpdateIn);
|
76
|
+
event LogStakingRewardsRestaked(NftId stakeNftId, Amount restakedAmount, Amount stakeBalance, Amount rewardBalance, Timestamp lockedUntil, Blocknumber lastUpdateIn);
|
77
|
+
event LogStakingStaked(NftId stakeNftId, Amount stakedAmount, Amount stakeBalance, Amount rewardBalance, Timestamp lockedUntil, Blocknumber lastUpdateIn);
|
78
|
+
event LogStakingUnstaked(NftId stakeNftId, Amount unstakedAmount, Amount stakeBalance, Amount rewardBalance, Timestamp lockedUntil, Blocknumber lastUpdateIn);
|
79
|
+
event LogStakingRewardsClaimed(NftId stakeNftId, Amount claimedAmount, Amount stakeBalance, Amount rewardBalance, Timestamp lockedUntil, Blocknumber lastUpdateIn);
|
80
|
+
|
81
|
+
event LogStakingStakeRestaked(NftId stakeNftId, NftId targetNftId, Amount stakeAmount, address owner, NftId oldStakeNftId);
|
28
82
|
|
29
83
|
// modifiers
|
30
84
|
error ErrorStakingNotStake(NftId stakeNftId);
|
31
85
|
error ErrorStakingNotTarget(NftId targetNftId);
|
86
|
+
error ErrorStakingNotOwner(NftId stakeNftId, address expectedOwner, address actualOwner);
|
32
87
|
|
33
88
|
error ErrorStakingNotStakingOwner();
|
34
89
|
error ErrorStakingNotNftOwner(NftId nftId);
|
35
90
|
|
91
|
+
// owner functions
|
92
|
+
error ErrorStakingReleaseNotActive(VersionPart release);
|
93
|
+
error ErrorStakingServiceNotFound(VersionPart release);
|
94
|
+
|
36
95
|
// initializeTokenHandler
|
37
96
|
error ErrorStakingNotRegistry(address registry);
|
38
97
|
|
39
98
|
// staking rate
|
40
|
-
error ErrorStakingTokenNotRegistered(
|
99
|
+
error ErrorStakingTokenNotRegistered(ChainId chainId, address token);
|
41
100
|
|
42
101
|
// check dip balance and allowance
|
43
102
|
error ErrorStakingDipBalanceInsufficient(address owner, uint256 amount, uint256 dipBalance);
|
44
103
|
error ErrorStakingDipAllowanceInsufficient(address owner, address tokenHandler, uint256 amount, uint256 dipAllowance);
|
45
104
|
|
46
105
|
error ErrorStakingStakingReaderStakingMismatch(address stakingByStakingReader);
|
106
|
+
|
107
|
+
// target management
|
108
|
+
error ErrorStakingSupportTypeInvalid(ObjectType targetType);
|
109
|
+
error ErrorStakingStakingAmountsInvalid(Amount minStakingAmount, Amount maxStakingAmount);
|
110
|
+
error ErrorStakingLockingPeriodsInvalid(Seconds minLockingPeriod, Seconds maxLockingPeriod);
|
111
|
+
error ErrorStakingRewardRatesInvalid(UFixed minRewardRate, UFixed maxRewardRate);
|
112
|
+
|
113
|
+
error ErrorStakingTargetNotFound(NftId targetNftId);
|
114
|
+
error ErrorStakingTargetTokenNotFound(NftId targetNftId, ChainId chainId, address token);
|
115
|
+
error ErrorStakingTargetMaxStakedAmountExceeded(NftId targetNftId, Amount stakeLimitAmount, Amount stakedAmount);
|
116
|
+
|
47
117
|
error ErrorStakingTargetAlreadyRegistered(NftId targetNftId);
|
48
118
|
error ErrorStakingTargetNftIdZero();
|
49
119
|
error ErrorStakingTargetTypeNotSupported(NftId targetNftId, ObjectType objectType);
|
120
|
+
error ErrorStakingCrossChainTargetsNotSupported(NftId targetNftId, ObjectType objectType);
|
50
121
|
error ErrorStakingTargetUnexpectedObjectType(NftId targetNftId, ObjectType expectedObjectType, ObjectType actualObjectType);
|
51
|
-
error
|
52
|
-
error
|
53
|
-
error ErrorStakingStakeLocked(NftId stakeNftId, Timestamp lockedUntil);
|
54
|
-
error ErrorStakingRewardRateTooHigh(NftId targetNftId, UFixed maxRewardRate, UFixed rewardRate);
|
55
|
-
error ErrorStakingTargetNotFound(NftId targetNftId);
|
56
|
-
error ErrorStakingTargetTokenNotFound(NftId targetNftId, uint256 chainId, address token);
|
57
|
-
error ErrorStakingTargetMaxStakedAmountExceeded(NftId targetNftId, Amount maxStakedAmount, Amount stakedAmount);
|
122
|
+
error ErrorStakingLockingPeriodInvalid(NftId targetNftId, Seconds lockingPeriod, Seconds minLockingPeriod, Seconds maxLockingPeriod);
|
123
|
+
error ErrorStakingRewardRateInvalid(NftId targetNftId, UFixed rewardRate, UFixed minRewardRate, UFixed maxRewardRate);
|
58
124
|
|
125
|
+
error ErrorStakingStakeLocked(NftId stakeNftId, Timestamp lockedUntil);
|
59
126
|
error ErrorStakingStakeAmountZero(NftId targetNftId);
|
60
127
|
|
61
128
|
// info for individual stake
|
62
129
|
struct StakeInfo {
|
63
|
-
|
130
|
+
// slot 0
|
131
|
+
Amount stakedAmount; // 96
|
132
|
+
Amount rewardAmount; // 96
|
133
|
+
Timestamp lockedUntil; // 40
|
134
|
+
// slot 1
|
135
|
+
NftId targetNftId; // 96, redundant to parent nft in registry object info
|
136
|
+
Timestamp lastUpdateAt; // 40, needed to update rewards
|
137
|
+
Blocknumber lastUpdateIn; // 40, needed for traceability
|
64
138
|
}
|
65
139
|
|
140
|
+
|
141
|
+
struct SupportInfo {
|
142
|
+
bool isSupported; // 1
|
143
|
+
bool allowNewTargets;
|
144
|
+
bool allowCrossChain;
|
145
|
+
|
146
|
+
Amount minStakingAmount; // 96
|
147
|
+
Amount maxStakingAmount; // 96
|
148
|
+
|
149
|
+
Seconds minLockingPeriod; // 40
|
150
|
+
Seconds maxLockingPeriod; // 40
|
151
|
+
|
152
|
+
UFixed minRewardRate; // 160
|
153
|
+
UFixed maxRewardRate; // 160
|
154
|
+
|
155
|
+
Blocknumber lastUpdateIn; // 40, needed for traceability
|
156
|
+
}
|
157
|
+
|
158
|
+
|
66
159
|
struct TargetInfo {
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
160
|
+
// Slot 0
|
161
|
+
Amount stakedAmount; // 96
|
162
|
+
Amount rewardAmount; // 96
|
163
|
+
Blocknumber lastUpdateIn; // 40, needed for traceability
|
164
|
+
// Slot 1
|
165
|
+
Amount reserveAmount; // 96
|
166
|
+
Amount limitAmount; // 96
|
167
|
+
Seconds lockingPeriod; // 40
|
168
|
+
ObjectType objectType; // 8
|
169
|
+
// Slot 2
|
170
|
+
UFixed rewardRate; // 160
|
171
|
+
ChainId chainId; // 96 redundant to target nft id
|
172
|
+
}
|
173
|
+
|
174
|
+
struct LimitInfo {
|
175
|
+
// Slot 0
|
176
|
+
Amount marginAmount; // 96
|
177
|
+
Amount hardLimitAmount; // 96
|
178
|
+
Blocknumber lastUpdateIn; // 40, needed for traceability
|
179
|
+
}
|
180
|
+
|
181
|
+
struct TvlInfo {
|
182
|
+
// Slot 0
|
183
|
+
Amount tvlAmount; // 96
|
184
|
+
Amount tvlBaselineAmount; // 96
|
185
|
+
uint16 updatesCounter; // 8
|
186
|
+
Blocknumber lastUpdateIn; // 40, needed for traceability
|
187
|
+
}
|
188
|
+
|
189
|
+
struct TokenInfo {
|
190
|
+
// Slot 0
|
191
|
+
UFixed stakingRate; // 160
|
192
|
+
Blocknumber lastUpdateIn; // 40, needed for traceability
|
72
193
|
}
|
73
194
|
|
74
195
|
function initializeTokenHandler() external;
|
75
196
|
|
197
|
+
//--- only owner functions ----------------------------------------------//
|
198
|
+
|
199
|
+
/// @dev Enable/disable the staking support for the specified target type.
|
200
|
+
/// Defines the degrees of freedom for creating staking targets per target type.
|
201
|
+
function setSupportInfo(
|
202
|
+
ObjectType targetType,
|
203
|
+
bool isSupported,
|
204
|
+
bool allowNewTargets,
|
205
|
+
bool allowCrossChain,
|
206
|
+
Amount minStakingAmount,
|
207
|
+
Amount maxStakingAmount,
|
208
|
+
Seconds minLockingPeriod,
|
209
|
+
Seconds maxLockingPeriod,
|
210
|
+
UFixed minRewardRate,
|
211
|
+
UFixed maxRewardRate
|
212
|
+
) external;
|
213
|
+
|
214
|
+
/// @dev Set the trigger values to determine when to update limit amount in TargetInfo.
|
215
|
+
/// Changes in the TvlInfo may trigger an update of the limit amount in the TargetInfo based on these settings.
|
216
|
+
/// The value tvlUpdatesTrigger suppresses any updates if the number of TVL updates is below this value.
|
217
|
+
/// The value minTvlRatioTrigger defines the minimal TVL ratio above which the limit amount is updated.
|
218
|
+
/// The ratio is calulated as current TVL / baseline TVL (or baseline TVL / current TVL).
|
219
|
+
function setUpdateTriggers(
|
220
|
+
uint16 tvlUpdatesTrigger,
|
221
|
+
UFixed minTvlRatioTrigger
|
222
|
+
) external;
|
223
|
+
|
224
|
+
/// @dev Set the stake locking period for protocol stakes to the specified duration.
|
225
|
+
function setProtocolLockingPeriod(Seconds lockingPeriod) external;
|
226
|
+
|
227
|
+
/// @dev Set the protocol reward rate.
|
228
|
+
function setProtocolRewardRate(UFixed rewardRate) external;
|
229
|
+
|
230
|
+
/// @dev Set the staking rate for the specified chain and token.
|
231
|
+
/// The staking rate defines the amount of staked dips required to back up 1 token of total value locked.
|
232
|
+
function setStakingRate(ChainId chainId, address token, UFixed stakingRate) external;
|
233
|
+
|
234
|
+
/// @dev Sets/updates the staking service contract to the staking service of the specified release.
|
235
|
+
function setStakingService(VersionPart release) external;
|
236
|
+
|
237
|
+
/// @dev Sets/updates the staking reader contract.
|
238
|
+
function setStakingReader(address stakingReader) external;
|
239
|
+
|
240
|
+
/// @dev Registers a token for recording staking rate and total value locked.
|
241
|
+
function addToken(ChainId chainId, address token) external;
|
242
|
+
|
243
|
+
/// @dev Set the approval to the token handler.
|
244
|
+
/// Defines the max allowance from the staking wallet to the token handler.
|
76
245
|
function approveTokenHandler(IERC20Metadata token, Amount amount) external;
|
77
246
|
|
78
|
-
|
247
|
+
//--- only target owner functions ---------------------------------------//
|
79
248
|
|
80
|
-
/// @dev
|
81
|
-
///
|
82
|
-
function
|
249
|
+
/// @dev (Re)fills the staking reward reserves for the specified target
|
250
|
+
/// Unpermissioned: anybody may fill up staking reward reserves
|
251
|
+
function refillRewardReserves(NftId targetNftId, Amount dipAmount) external returns (Amount newBalance);
|
83
252
|
|
253
|
+
/// @dev Defunds the staking reward reserves for the specified target
|
254
|
+
/// Permissioned: only the owner may call this function
|
255
|
+
function withdrawRewardReserves(NftId targetNftId, Amount dipAmount) external returns (Amount newBalance);
|
84
256
|
|
85
|
-
|
257
|
+
//--- target management -------------------------------------------------//
|
86
258
|
|
259
|
+
/// @dev Register a new target for staking.
|
260
|
+
/// Permissioned: only the staking service may call this function
|
87
261
|
function registerTarget(
|
88
262
|
NftId targetNftId,
|
89
263
|
ObjectType expectedObjectType,
|
90
|
-
uint256 chainId,
|
91
264
|
Seconds initialLockingPeriod,
|
92
265
|
UFixed initialRewardRate
|
93
266
|
) external;
|
94
267
|
|
95
268
|
|
96
|
-
/// @dev
|
97
|
-
///
|
269
|
+
/// @dev Set the stake locking period to the specified duration.
|
270
|
+
/// Permissioned: only the staking service may call this function
|
98
271
|
function setLockingPeriod(NftId targetNftId, Seconds lockingPeriod) external;
|
99
272
|
|
100
|
-
/// @dev
|
101
|
-
///
|
273
|
+
/// @dev Update the target specific reward rate.
|
274
|
+
/// Permissioned: only the staking service may call this function
|
102
275
|
function setRewardRate(NftId targetNftId, UFixed rewardRate) external;
|
103
276
|
|
104
|
-
/// @dev
|
105
|
-
///
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
/// unpermissioned: anybody may fill up staking reward reserves
|
110
|
-
function refillRewardReserves(NftId targetNftId, Amount dipAmount) external returns (Amount newBalance);
|
277
|
+
/// @dev Set the staking limits for the specified target.
|
278
|
+
/// The margin amount allows staker to stake over the current required stakes by this amount.
|
279
|
+
/// The limit amount restricts stakers to ever stake more than this amount.
|
280
|
+
/// Permissioned: only the target owner may call this function
|
281
|
+
function setTargetLimits(NftId targetNftId, Amount marginAmount, Amount limitAmount) external;
|
111
282
|
|
112
|
-
|
113
|
-
///
|
114
|
-
|
283
|
+
// TODO refactor this into new setStakingLimits
|
284
|
+
/// @dev Set the maximum staked amount for the specified target.
|
285
|
+
/// Permissioned: only the staking service may call this function
|
286
|
+
function setMaxStakedAmount(NftId targetNftId, Amount stakeLimitAmount) external;
|
115
287
|
|
288
|
+
/// @dev Register a token for the specified target.
|
289
|
+
/// Used for instance targets. Each product may introduce its own token.
|
290
|
+
/// Permissioned: only the staking service may call this function
|
291
|
+
function addTargetToken(NftId targetNftId, address token) external;
|
116
292
|
|
117
|
-
/// @dev
|
293
|
+
/// @dev Increases the total value locked amount for the specified target by the provided token amount.
|
118
294
|
/// function is called when a new policy is collateralized.
|
119
295
|
/// function restricted to the pool service.
|
120
|
-
function increaseTotalValueLocked(NftId targetNftId, address token, Amount amount) external
|
296
|
+
function increaseTotalValueLocked(NftId targetNftId, address token, Amount amount) external;
|
121
297
|
|
122
|
-
|
123
|
-
/// @dev decreases the total value locked amount for the specified target by the provided token amount.
|
298
|
+
/// @dev Decreases the total value locked amount for the specified target by the provided token amount.
|
124
299
|
/// function is called when a new policy is closed or payouts are executed.
|
125
300
|
/// function restricted to the pool service.
|
126
|
-
function decreaseTotalValueLocked(NftId targetNftId, address token, Amount amount) external
|
301
|
+
function decreaseTotalValueLocked(NftId targetNftId, address token, Amount amount) external;
|
127
302
|
|
128
303
|
|
129
304
|
function updateRemoteTvl(NftId targetNftId, address token, Amount amount) external;
|
130
305
|
|
131
|
-
|
306
|
+
//--- service interaction functions -------------------------------------//
|
132
307
|
|
133
|
-
/// @dev
|
134
|
-
///
|
135
|
-
|
308
|
+
/// @dev Set the staking limits for the specified target.
|
309
|
+
/// Permissioned: only the staking service may call this function
|
310
|
+
// TODO implement
|
311
|
+
// function setStakingLimitsByService(NftId targetNftId, Amount marginAmount, Amount limitAmount) external;
|
136
312
|
|
137
|
-
/// @dev
|
138
|
-
///
|
139
|
-
|
140
|
-
function stake(NftId stakeNftId, Amount dipAmount) external returns (Amount stakeBalance);
|
313
|
+
/// @dev (Re)fills the staking reward reserves for the specified target
|
314
|
+
/// Unpermissioned: anybody may fill up staking reward reserves
|
315
|
+
function refillRewardReservesByService(NftId targetNftId, Amount dipAmount, address transferFrom) external returns (Amount newBalance);
|
141
316
|
|
142
|
-
/// @dev
|
143
|
-
///
|
317
|
+
/// @dev Defunds the staking reward reserves for the specified target
|
318
|
+
/// Permissioned: only the owner may call this function
|
319
|
+
function withdrawRewardReservesByService(NftId targetNftId, Amount dipAmount, address transferTo) external returns (Amount newBalance);
|
320
|
+
|
321
|
+
//--- public functions -----------------------------------------------------//
|
322
|
+
|
323
|
+
/// @dev Updates the current limit amount for the specified target.
|
324
|
+
/// The function takes into account the current TVL amount per token
|
325
|
+
/// and the current staking rate for the token to calculate the required stake amount.
|
326
|
+
/// Based on this required stake amount and the targets margin and hard limit (from LimitInfo)
|
327
|
+
/// the function updates the target limit amount (in the target info)
|
328
|
+
function updateTargetLimit(NftId targetNftId) external;
|
329
|
+
|
330
|
+
/// @dev Creates a new stake to the specified target over the given DIP amount.
|
331
|
+
/// The stake owner is provided as an argument and becomes the stake NFT holder.
|
332
|
+
/// This function is permissionless and may be called by any user.
|
333
|
+
function createStake(NftId targetNftId, Amount dipAmount, address stakeOwner) external returns (NftId stakeNftId);
|
334
|
+
|
335
|
+
//--- stake owner functions -------------------------------------------------//
|
336
|
+
|
337
|
+
/// @dev Increase the staked DIP by dipAmount for the specified stake.
|
338
|
+
/// Staking rewards are updated and added to the staked DIP amount as well.
|
339
|
+
/// The function returns the new total amount of staked dips.
|
340
|
+
function stake(NftId stakeNftId, Amount dipAmount) external returns (Amount newStakeBalance);
|
341
|
+
|
342
|
+
/// @dev Pays the specified DIP amount to the holder of the stake NFT ID.
|
144
343
|
/// permissioned: only staking service may call this function.
|
145
|
-
function
|
344
|
+
function unstake(NftId stakeNftId) external returns (Amount unstakedAmount);
|
146
345
|
|
147
|
-
/// @dev
|
148
|
-
///
|
346
|
+
/// @dev restakes the dips to a new target.
|
347
|
+
/// the sum of the staked dips and the accumulated rewards will be restaked.
|
149
348
|
/// permissioned: only staking service may call this function.
|
150
|
-
function
|
151
|
-
external
|
152
|
-
returns (
|
153
|
-
Amount unstakedAmount,
|
154
|
-
Amount rewardsClaimedAmount
|
155
|
-
);
|
349
|
+
function restake(NftId stakeNftId, NftId newTargetNftId) external returns (NftId newStakeNftId, Amount newStakeBalance);
|
156
350
|
|
157
351
|
/// @dev update stake rewards for current time.
|
158
352
|
/// may be called before an announement of a decrease of a reward rate reduction.
|
159
353
|
/// calling this functions ensures that reward balance is updated using the current (higher) reward rate.
|
160
354
|
/// unpermissioned.
|
161
|
-
function updateRewards(NftId stakeNftId) external;
|
355
|
+
function updateRewards(NftId stakeNftId) external returns (Amount newRewardAmount);
|
162
356
|
|
163
357
|
/// @dev transfers all rewards accumulated so far to the holder of the specified stake nft.
|
164
358
|
/// permissioned: only staking service may call this function.
|
165
|
-
function claimRewards(NftId stakeNftId)
|
166
|
-
external
|
167
|
-
returns (
|
168
|
-
Amount rewardsClaimedAmount
|
169
|
-
);
|
359
|
+
function claimRewards(NftId stakeNftId) external returns (Amount rewardsClaimedAmount);
|
170
360
|
|
171
361
|
//--- view and pure functions -------------------------------------------//
|
172
362
|
|
363
|
+
function getTargetHandler() external view returns (TargetHandler targetHandler);
|
173
364
|
function getStakingStore() external view returns (StakingStore stakingStore);
|
174
365
|
function getStakingReader() external view returns (StakingReader reader);
|
175
366
|
}
|
@@ -3,9 +3,10 @@ pragma solidity ^0.8.20;
|
|
3
3
|
|
4
4
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
5
5
|
|
6
|
-
import {Amount} from "../type/Amount.sol";
|
7
6
|
import {IService} from "../shared/IService.sol";
|
8
7
|
import {IStaking} from "./IStaking.sol";
|
8
|
+
|
9
|
+
import {Amount} from "../type/Amount.sol";
|
9
10
|
import {NftId} from "../type/NftId.sol";
|
10
11
|
import {Seconds} from "../type/Seconds.sol";
|
11
12
|
import {TokenHandler} from "../shared/TokenHandler.sol";
|
@@ -23,6 +24,7 @@ interface IStakingService is IService
|
|
23
24
|
event LogStakingServiceRewardReservesIncreased(NftId targetNftId, address rewardProvider, Amount dipAmount, Amount newBalance);
|
24
25
|
event LogStakingServiceRewardReservesDecreased(NftId targetNftId, address targetOwner, Amount dipAmount, Amount newBalance);
|
25
26
|
|
27
|
+
event LogStakingServiceStakeObjectCreated(NftId stakeNftId, NftId targetNftId, address stakeOwner);
|
26
28
|
event LogStakingServiceStakeCreated(NftId stakeNftId, NftId targetNftId, address owner, Amount stakedAmount);
|
27
29
|
event LogStakingServiceStakeIncreased(NftId stakeNftId, address owner, Amount stakedAmount, Amount stakeBalance);
|
28
30
|
event LogStakingServiceUnstaked(NftId stakeNftId, address stakeOwner, Amount totalAmount);
|
@@ -44,22 +46,10 @@ interface IStakingService is IService
|
|
44
46
|
error ErrorStakingServiceDipBalanceInsufficient(NftId targetNftId, uint256 amount, uint256 balance);
|
45
47
|
error ErrorStakingServiceDipAllowanceInsufficient(NftId targetNftId, address tokenHandler, uint256 amount, uint256 allowance);
|
46
48
|
|
47
|
-
|
48
|
-
/// Permissioned: only staking owner
|
49
|
-
// TODO implement
|
50
|
-
// function setProtocolRewardRate(UFixed rewardRate) external;
|
51
|
-
// function setProtocolLockingPeriod(Seconds lockingPeriod) external;
|
52
|
-
// TODO also make sure that protocol rewards can be refilled and withdrawn
|
53
|
-
|
54
|
-
/// @dev Approves the staking token handler.
|
55
|
-
/// Reverts if the staking token handler wallet is not the token handler itself.
|
56
|
-
function approveTokenHandler(
|
57
|
-
IERC20Metadata token,
|
58
|
-
Amount amount
|
59
|
-
) external;
|
49
|
+
//--- functions for instance service -----------------------------------------------//
|
60
50
|
|
61
|
-
/// @dev
|
62
|
-
///
|
51
|
+
/// @dev Creates/registers an on-chain instance staking target.
|
52
|
+
/// Permissioned: Only instance service
|
63
53
|
function createInstanceTarget(
|
64
54
|
NftId targetNftId,
|
65
55
|
Seconds initialLockingPeriod,
|
@@ -67,106 +57,71 @@ interface IStakingService is IService
|
|
67
57
|
) external;
|
68
58
|
|
69
59
|
/// @dev Set the instance stake locking period to the specified duration.
|
70
|
-
/// Permissioned: Only
|
60
|
+
/// Permissioned: Only instance service
|
71
61
|
function setInstanceLockingPeriod(NftId instanceNftId, Seconds lockingPeriod) external;
|
72
62
|
|
73
63
|
/// @dev Set the instance reward rate to the specified value.
|
74
|
-
/// Permissioned: Only
|
64
|
+
/// Permissioned: Only instance service
|
75
65
|
function setInstanceRewardRate(NftId instanceNftId, UFixed rewardRate) external;
|
76
66
|
|
77
67
|
/// @dev Set the instance max staked amount to the specified value.
|
78
|
-
/// Permissioned: Only
|
68
|
+
/// Permissioned: Only instance service
|
79
69
|
function setInstanceMaxStakedAmount(NftId instanceNftId, Amount maxStakingAmount) external;
|
80
70
|
|
81
71
|
/// @dev (Re)fills the staking reward reserves for the specified target using the dips provided by the reward provider.
|
82
|
-
///
|
72
|
+
/// Permissioned: Only instance service
|
83
73
|
function refillInstanceRewardReserves(NftId instanceNftId, address rewardProvider, Amount dipAmount) external returns (Amount newBalance);
|
84
74
|
|
85
|
-
/// @dev (Re)fills the staking reward reserves for the specified target using the dips provided by the sender
|
86
|
-
/// unpermissioned: anybody may fill up staking reward reserves
|
87
|
-
function refillRewardReservesBySender(NftId targetNftId, Amount dipAmount) external returns (Amount newBalance);
|
88
|
-
|
89
75
|
/// @dev Defunds the staking reward reserves for the specified target
|
90
|
-
/// Permissioned:
|
76
|
+
/// Permissioned: Only instance service
|
91
77
|
function withdrawInstanceRewardReserves(NftId instanceNftId, Amount dipAmount) external returns (Amount newBalance);
|
92
78
|
|
93
|
-
/// @dev
|
94
|
-
///
|
95
|
-
|
96
|
-
function create(
|
79
|
+
/// @dev Sets total value locked data for a target contract on a different chain.
|
80
|
+
/// this is done via CCIP (cross chain communication)
|
81
|
+
function setTotalValueLocked(
|
97
82
|
NftId targetNftId,
|
83
|
+
address token,
|
98
84
|
Amount amount
|
99
|
-
)
|
100
|
-
external
|
101
|
-
returns (
|
102
|
-
NftId stakeNftId
|
103
|
-
);
|
104
|
-
|
105
|
-
|
106
|
-
/// @dev increase an existing stake by amount DIP
|
107
|
-
/// updates and restakes the staking reward amount
|
108
|
-
/// function restricted to the current stake owner
|
109
|
-
function stake(
|
110
|
-
NftId stakeNftId,
|
111
|
-
Amount amount
|
112
|
-
)
|
113
|
-
external;
|
114
|
-
|
115
|
-
|
116
|
-
/// @dev re-stakes the current staked DIP as well as all accumulated rewards to the new stake target.
|
117
|
-
/// all related stakes and all accumulated reward DIP are transferred to the current stake holder
|
118
|
-
/// function restricted to the current stake owner
|
119
|
-
function restakeToNewTarget(
|
120
|
-
NftId stakeNftId,
|
121
|
-
NftId newTargetNftId
|
122
|
-
)
|
123
|
-
external
|
124
|
-
returns (
|
125
|
-
NftId newStakeNftId,
|
126
|
-
Amount newStakeBalance
|
127
|
-
);
|
128
|
-
|
129
|
-
|
130
|
-
/// @dev updates the reward balance of the stake using the current reward rate.
|
131
|
-
function updateRewards(
|
132
|
-
NftId stakeNftId
|
133
|
-
)
|
134
|
-
external;
|
135
|
-
|
85
|
+
) external;
|
136
86
|
|
137
|
-
|
138
|
-
function claimRewards(
|
139
|
-
NftId stakeNftId
|
140
|
-
)
|
141
|
-
external;
|
87
|
+
//--- functions for staking component ---------------------------------------------//
|
142
88
|
|
89
|
+
/// @dev Creates a new stake object for the specified target via the registry service.
|
90
|
+
/// Permissioned: only the staking component may call this function
|
91
|
+
function createStakeObject(
|
92
|
+
NftId targetNftId,
|
93
|
+
address initialOwner
|
94
|
+
) external returns (NftId stakeNftId);
|
143
95
|
|
144
|
-
/// @dev
|
145
|
-
///
|
146
|
-
function
|
147
|
-
NftId stakeNftId
|
148
|
-
)
|
149
|
-
external;
|
96
|
+
/// @dev Collect DIP token from stake owner.
|
97
|
+
/// Permissioned: only the staking component may call this function
|
98
|
+
function pullDipToken(Amount dipAmount, address stakeOwner) external;
|
150
99
|
|
100
|
+
/// @dev Transfer DIP token to stake owner.
|
101
|
+
/// Permissioned: only the staking component may call this function
|
102
|
+
function pushDipToken(Amount dipAmount, address stakeOwner) external;
|
151
103
|
|
152
|
-
/// @dev
|
153
|
-
///
|
154
|
-
function
|
155
|
-
|
156
|
-
address token,
|
104
|
+
/// @dev Approves the staking token handler.
|
105
|
+
/// Permissioned: only the staking component may call this function
|
106
|
+
function approveTokenHandler(
|
107
|
+
IERC20Metadata token,
|
157
108
|
Amount amount
|
158
|
-
)
|
159
|
-
|
109
|
+
) external;
|
110
|
+
|
111
|
+
//--- view functions --------------------------------------------------------------//
|
160
112
|
|
161
113
|
function getDipToken()
|
162
114
|
external
|
115
|
+
view
|
163
116
|
returns (IERC20Metadata dip);
|
164
117
|
|
165
118
|
function getTokenHandler()
|
166
119
|
external
|
120
|
+
view
|
167
121
|
returns (TokenHandler tokenHandler);
|
168
122
|
|
169
123
|
function getStaking()
|
170
124
|
external
|
125
|
+
view
|
171
126
|
returns (IStaking staking);
|
172
127
|
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.20;
|
3
|
+
|
4
|
+
import {Amount} from "../type/Amount.sol";
|
5
|
+
import {NftId} from "../type/NftId.sol";
|
6
|
+
|
7
|
+
interface ITargetLimitHandler {
|
8
|
+
|
9
|
+
/// @dev Returns true iff the target limit update is required.
|
10
|
+
function isLimitUpdateRequired(
|
11
|
+
NftId targetNftId,
|
12
|
+
address token,
|
13
|
+
uint16 tvlUpdatesCount,
|
14
|
+
Amount baselineTvlAmount,
|
15
|
+
Amount currentTvlAmount
|
16
|
+
) external view returns (bool updateIsRequired);
|
17
|
+
}
|