File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: BUSL-1.1
2
2
pragma solidity >= 0.5.0 ;
3
3
4
+ import "./ISemVerMixin.sol " ;
5
+
4
6
interface ISignatureUtilsMixinErrors {
5
7
/// @notice Thrown when a signature is invalid.
6
8
error InvalidSignature ();
@@ -35,7 +37,7 @@ interface ISignatureUtilsMixinTypes {
35
37
* @author Layr Labs, Inc.
36
38
* @notice Terms of Service: https://docs.eigenlayer.xyz/overview/terms-of-service
37
39
*/
38
- interface ISignatureUtilsMixin is ISignatureUtilsMixinErrors , ISignatureUtilsMixinTypes {
40
+ interface ISignatureUtilsMixin is ISignatureUtilsMixinErrors , ISignatureUtilsMixinTypes , ISemVerMixin {
39
41
/// @notice Computes the EIP-712 domain separator used for signature validation.
40
42
/// @dev The domain separator is computed according to EIP-712 specification, using:
41
43
/// - The hardcoded name "EigenLayer"
You can’t perform that action at this time.
0 commit comments