mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
7 lines
194 B
Solidity
7 lines
194 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.15;
|
|
|
|
interface IEIP1271Implementer {
|
|
function isValidSignature(bytes32 _hash, bytes memory _signature) external view returns (bytes4);
|
|
}
|