{
    "Function": "verifyInclusionProof",
    "File": "packages/protocol/contracts/thirdparty/optimism/trie/MerkleTrie.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "Bytes"
    ],
    "Internal Calls": [
        "get"
    ],
    "Library Calls": [
        "equal"
    ],
    "Low-Level Calls": [],
    "Code": "function verifyInclusionProof(\n        bytes memory _key,\n        bytes memory _value,\n        bytes[] memory _proof,\n        bytes32 _root\n    )\n        internal\n        pure\n        returns (bool valid_)\n    {\n        valid_ = Bytes.equal(_value, get(_key, _proof, _root));\n    }"
}