{
    "Function": "hashStr",
    "File": "contracts/mocks/MockVoteStorage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)",
        "uint2str",
        "abi.encodePacked()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function hashStr(string memory str) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", uint2str(bytes(str).length), str));\n    }"
}