@@ -253,7 +253,7 @@ interface IHorizonStakingMain {
253
253
* @param thawRequestId The ID of the thaw request
254
254
* @param tokens The amount of tokens being released
255
255
* @param shares The amount of shares being released
256
- * @param thawingUntil The timestamp until the stake has thawn
256
+ * @param thawingUntil The timestamp until the stake has thawed
257
257
*/
258
258
event ThawRequestFulfilled (bytes32 indexed thawRequestId , uint256 tokens , uint256 shares , uint64 thawingUntil );
259
259
@@ -417,7 +417,7 @@ interface IHorizonStakingMain {
417
417
error HorizonStakingStillThawing (uint256 until );
418
418
419
419
/**
420
- * @notice Thrown when a service provider attempts to operate on verifieres that are not allowed.
420
+ * @notice Thrown when a service provider attempts to operate on verifiers that are not allowed.
421
421
* @dev Only applies to stake from locked wallets.
422
422
*/
423
423
error HorizonStakingVerifierNotAllowed (address verifier );
@@ -578,7 +578,7 @@ interface IHorizonStakingMain {
578
578
/**
579
579
* @notice Remove tokens from a provision and move them back to the service provider's idle stake.
580
580
* @dev The parameter `nThawRequests` can be set to a non zero value to fulfill a specific number of thaw
581
- * requests in the event that fulfulling all of them results in a gas limit error.
581
+ * requests in the event that fulfilling all of them results in a gas limit error.
582
582
*
583
583
* Requirements:
584
584
* - Must have previously initiated a thaw request using {thaw}.
@@ -704,7 +704,7 @@ interface IHorizonStakingMain {
704
704
* @notice Withdraw undelegated tokens from a provision after thawing.
705
705
* Tokens can be automatically re-delegated to another provision by setting `newServiceProvider`.
706
706
* @dev The parameter `nThawRequests` can be set to a non zero value to fulfill a specific number of thaw
707
- * requests in the event that fulfulling all of them results in a gas limit error.
707
+ * requests in the event that fulfilling all of them results in a gas limit error.
708
708
*
709
709
* Requirements:
710
710
* - Must have previously initiated a thaw request using {undelegate}.
@@ -744,7 +744,7 @@ interface IHorizonStakingMain {
744
744
/**
745
745
* @notice Delegate tokens to the subgraph data service provision.
746
746
* This function is for backwards compatibility with the legacy staking contract.
747
- * It only allows delegting to the subgraph data service and DOES NOT have slippage protection.
747
+ * It only allows delegating to the subgraph data service and DOES NOT have slippage protection.
748
748
* @dev See {delegate}.
749
749
* @param serviceProvider The service provider address
750
750
* @param tokens The amount of tokens to delegate
@@ -754,7 +754,7 @@ interface IHorizonStakingMain {
754
754
/**
755
755
* @notice Undelegate tokens from the subgraph data service provision and start thawing them.
756
756
* This function is for backwards compatibility with the legacy staking contract.
757
- * It only allows undelegting from the subgraph data service.
757
+ * It only allows undelegating from the subgraph data service.
758
758
* @dev See {undelegate}.
759
759
* @param serviceProvider The service provider address
760
760
* @param shares The amount of shares to undelegate
0 commit comments