Skip to content

Instantly share code, notes, and snippets.

@Mrtenz
Created August 27, 2020 06:54
Show Gist options
  • Save Mrtenz/f63913d56f9b97893453db536ebdf039 to your computer and use it in GitHub Desktop.
Save Mrtenz/f63913d56f9b97893453db536ebdf039 to your computer and use it in GitHub Desktop.
pragma solidity ^0.7.0;
contract ERC1271 {
bytes4 constant internal MAGICVALUE = 0x1626ba7e;
function isValidSignature(
bytes32 _hash,
bytes memory _signature
) public view returns (bytes4 magicValue);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment