{
    "Function": "increaseAllowance",
    "File": "contracts/InsureDAOERC20.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",
        "_msgSender",
        "_approve"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function increaseAllowance(address spender, uint256 addedValue)\n        public\n        virtual\n        returns (bool)\n    {\n        _approve(\n            _msgSender(),\n            spender,\n            _allowances[_msgSender()][spender] + addedValue\n        );\n        return true;\n    }"
}