|
@@ -1,7 +1,7 @@
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
// OpenZeppelin Contracts (last updated v5.3.0) (interfaces/IERC1271.sol)
|
|
|
|
|
|
-pragma solidity ^0.8.20;
|
|
|
+pragma solidity >=0.5.0;
|
|
|
|
|
|
/**
|
|
|
* @dev Interface of the ERC-1271 standard signature validation method for
|
|
@@ -13,5 +13,5 @@ interface IERC1271 {
|
|
|
* @param hash Hash of the data to be signed
|
|
|
* @param signature Signature byte array associated with `hash`
|
|
|
*/
|
|
|
- function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
|
|
|
+ function isValidSignature(bytes32 hash, bytes calldata signature) external view returns (bytes4 magicValue);
|
|
|
}
|