{
    "Function": "increaseAllowance",
    "File": "contracts/mocks/stETHMock.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol"
    ],
    "High-Level Calls": [
        "SafeMath"
    ],
    "Internal Calls": [
        "_approve"
    ],
    "Library Calls": [
        "add"
    ],
    "Low-Level Calls": [],
    "Code": "function increaseAllowance(\n        address _spender,\n        uint256 _addedValue\n    ) public returns (bool) {\n        _approve(\n            msg.sender,\n            _spender,\n            allowances[msg.sender][_spender].add(_addedValue)\n        );\n        return true;\n    }"
}