{
    "Function": "toEthSignedMessageHash",
    "File": "contracts/lib/openzeppelin-contracts/contracts/utils/cryptography/ECDSA.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "Strings"
    ],
    "Internal Calls": [
        "keccak256(bytes)",
        "abi.encodePacked()"
    ],
    "Library Calls": [
        "toString"
    ],
    "Low-Level Calls": [],
    "Code": "function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", Strings.toString(s.length), s));\n    }"
}