{
    "Function": "deposit",
    "File": "contracts/mocks/curve/MockCurveGauge.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-0.8/token/ERC20/ERC20.sol",
        "node_modules/@openzeppelin/contracts-0.8/token/ERC20/extensions/IERC20Metadata.sol",
        "node_modules/@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol",
        "node_modules/@openzeppelin/contracts-0.8/utils/Context.sol"
    ],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "_mint"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function deposit(uint256 amount) external {\n        _mint(msg.sender, amount);\n        IERC20(lp_token).transferFrom(msg.sender, address(this), amount);\n    }"
}