{
    "Function": "callBatched",
    "File": "src/Caller.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts/contracts/metatx/ERC2771Context.sol",
        "lib/openzeppelin-contracts/contracts/utils/Context.sol",
        "lib/openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_msgSender",
        "_call"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function callBatched(Call[] memory calls) public payable returns (bytes[] memory returnData) {\n        returnData = new bytes[](calls.length);\n        address sender = _msgSender();\n        for (uint256 i = 0; i < calls.length; i++) {\n            Call memory call = calls[i];\n            returnData[i] = _call(sender, call.to, call.data, call.value);\n        }\n    }"
}