{
    "Function": "verify",
    "File": "contracts/openzeppelin-solidity/contracts/mocks/MerkleProofWrapper.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "MerkleProof"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "verify"
    ],
    "Low-Level Calls": [],
    "Code": "function verify(\n        bytes32[] memory proof,\n        bytes32 root,\n        bytes32 leaf\n    ) public pure returns (bool) {\n        return MerkleProof.verify(proof, root, leaf);\n    }"
}