{
    "Function": "callAs",
    "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": [
        "_call",
        "_msgSender",
        "isAuthorized",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function callAs(address sender, address to, bytes memory data)\n        public\n        payable\n        returns (bytes memory returnData)\n    {\n        require(isAuthorized(sender, _msgSender()), \"Not authorized\");\n        return _call(sender, to, data, msg.value);\n    }"
}