{
    "Function": "mint",
    "File": "src/LiquidityPool.sol",
    "Parent Contracts": [
        "src/interfaces/IERC4626.sol",
        "src/interfaces/IERC20.sol",
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "bytes.concat()",
        "_successCheck",
        "auth"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function mint(address, uint256) public auth {\n        (bool success,) = address(share).call(bytes.concat(msg.data, bytes20(address(this))));\n        _successCheck(success);\n    }"
}