{
    "Function": "hashPoint",
    "File": "src/util/ECCMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)",
        "abi.encode()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function hashPoint(Point memory point) internal pure returns (bytes32) {\n        return keccak256(abi.encode(point));\n    }"
}