Skip to content

Commit 2ff7718

Browse files
committed
refactor: review changes
1 parent f27a406 commit 2ff7718

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/contracts/interfaces/ISignatureUtilsMixin.sol

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// SPDX-License-Identifier: BUSL-1.1
22
pragma solidity >=0.5.0;
33

4+
import "./ISemVerMixin.sol";
5+
46
interface ISignatureUtilsMixinErrors {
57
/// @notice Thrown when a signature is invalid.
68
error InvalidSignature();
@@ -35,7 +37,7 @@ interface ISignatureUtilsMixinTypes {
3537
* @author Layr Labs, Inc.
3638
* @notice Terms of Service: https://docs.eigenlayer.xyz/overview/terms-of-service
3739
*/
38-
interface ISignatureUtilsMixin is ISignatureUtilsMixinErrors, ISignatureUtilsMixinTypes {
40+
interface ISignatureUtilsMixin is ISignatureUtilsMixinErrors, ISignatureUtilsMixinTypes, ISemVerMixin {
3941
/// @notice Computes the EIP-712 domain separator used for signature validation.
4042
/// @dev The domain separator is computed according to EIP-712 specification, using:
4143
/// - The hardcoded name "EigenLayer"

0 commit comments

Comments
 (0)