{
    "Function": "verifyInclusionProof",
    "File": "packages/protocol/contracts/thirdparty/optimism/trie/SecureMerkleTrie.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "MerkleTrie"
    ],
    "Internal Calls": [
        "_getSecureKey"
    ],
    "Library Calls": [
        "verifyInclusionProof"
    ],
    "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        bytes memory key = _getSecureKey(_key);\n        valid_ = MerkleTrie.verifyInclusionProof(key, _value, _proof, _root);\n    }"
}