{
    "Function": "verifyInclusionSha256",
    "File": "src/contracts/libraries/Merkle.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "processInclusionProofSha256"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function verifyInclusionSha256(\n        bytes memory proof,\n        bytes32 root,\n        bytes32 leaf,\n        uint256 index\n    ) internal view returns (bool) {\n        return processInclusionProofSha256(proof, leaf, index) == root;\n    }"
}