{
    "Function": "approve",
    "File": "contracts/tests/ERC20.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
        "node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_msgSender",
        "_approve"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function approve(address spender, uint256 amount) public virtual override returns (bool) {\n        _approve(_msgSender(), spender, amount);\n        return true;\n    }"
}