Skip to content

Commit

Permalink
feat: add to DM interface
Browse files Browse the repository at this point in the history
  • Loading branch information
8sunyuan committed Nov 21, 2023
1 parent d804820 commit 0aae435
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/contracts/interfaces/IDelegationManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,14 @@ interface IDelegationManager is ISignatureUtils {
*/
function delegationApproverSaltIsSpent(address _delegationApprover, bytes32 salt) external view returns (bool);

/**
* @notice Minimum delay enforced by this contract for completing queued withdrawals. Measured in blocks, and adjustable by this contract's owner,
* up to a maximum of `MAX_WITHDRAWAL_DELAY_BLOCKS`. Minimum value is 0 (i.e. no delay enforced).
* @dev Note that the withdrawal delay is not enforced on withdrawals of 'beaconChainETH', as the EigenPods have their own separate delay mechanic
* and we want to avoid stacking multiple enforced delays onto a single withdrawal.
*/
function withdrawalDelayBlocks() external view returns (uint256);

/**
* @notice Calculates the digestHash for a `staker` to sign to delegate to an `operator`
* @param staker The signing staker
Expand Down

0 comments on commit 0aae435

Please sign in to comment.