{
    "Function": "removeLiquidity",
    "File": "contracts/USDMPegRecovery.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [
        "ICurveMetaPool"
    ],
    "Internal Calls": [
        "onlyGuardian"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function removeLiquidity(uint256 _steps, uint256 _burningLPs) external onlyGuardian {\n        uint256 removingLiquidity = _steps * step;\n        uint256[2] memory amounts = [removingLiquidity, removingLiquidity];\n        usdm3crv.remove_liquidity(_burningLPs, amounts);\n    }"
}