{
    "Function": "recover",
    "File": "contracts/util/EIP712.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "ECRecover"
    ],
    "Internal Calls": [
        "abi.encodePacked()",
        "keccak256(bytes)",
        "keccak256(bytes)"
    ],
    "Library Calls": [
        "recover"
    ],
    "Low-Level Calls": [],
    "Code": "function recover(\n        bytes32 domainSeparator,\n        uint8 v,\n        bytes32 r,\n        bytes32 s,\n        bytes memory typeHashAndData\n    ) internal pure returns (address) {\n        bytes32 digest = keccak256(\n            abi.encodePacked(\n                \"\\x19\\x01\",\n                domainSeparator,\n                keccak256(typeHashAndData)\n            )\n        );\n        return ECRecover.recover(digest, v, r, s);\n    }"
}