From 30040aa273edeefe83333fa9183a0a26a84cebf0 Mon Sep 17 00:00:00 2001 From: Wes Floyd Date: Fri, 4 Oct 2024 11:40:56 -0400 Subject: [PATCH] docs: clarify strategy manager docs (#797) * Adding clarification to depositIntoStrategyWithSignature() per customer question in Slack --- docs/core/StrategyManager.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/core/StrategyManager.md b/docs/core/StrategyManager.md index aae5d0518..346ced740 100644 --- a/docs/core/StrategyManager.md +++ b/docs/core/StrategyManager.md @@ -102,6 +102,8 @@ function depositIntoStrategyWithSignature( returns (uint256 shares) ``` +This method has a similar purpose as `depositIntoStrategy()`, except it is intended to be used when submitting a deposit on behalf of `staker` which will be credited with the new shares. + *Effects*: See `depositIntoStrategy` above. Additionally: * The Staker's nonce is incremented @@ -459,4 +461,4 @@ Allows the Strategy Whitelister to enable or disable third-party transfers for a * Sets `thirdPartyTransfersForbidden[strategy]`, even if that strategy is not currently whitelisted *Requirements*: -* Caller MUST be the `strategyWhitelister` \ No newline at end of file +* Caller MUST be the `strategyWhitelister`