1234567891011121314151617181920212223242526272829303132333435 |
- // SPDX-License-Identifier: MIT
- pragma solidity ^0.8.0;
- import "./ECDSA.sol";
- import "../Address.sol";
- import "../../interfaces/IERC1271.sol";
- /**
- * @dev Signature verification helper: Provide a single mechanism to verify both private-key (EOA) ECDSA signature and
- * ERC1271 contract sigantures. Using this instead of ECDSA.recover in your contract will make them compatible with
- * smart contract wallets such as Argent and Gnosis.
- *
- * Note: unlike ECDSA signatures, contract signature's are revocable, and the outcome of this function can thus change
- * through time. It could return true at block N and false at block N+1 (or the opposite).
- *
- * _Available since v4.1._
- */
- library SignatureChecker {
- function isValidSignatureNow(
- address signer,
- bytes32 hash,
- bytes memory signature
- ) internal view returns (bool) {
- (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);
- if (error == ECDSA.RecoverError.NoError && recovered == signer) {
- return true;
- }
- (bool success, bytes memory result) = signer.staticcall(
- abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)
- );
- return (success && result.length == 32 && abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector);
- }
- }
|