{
    "Function": "getSellQuote",
    "File": "src/LamboVEthRouter.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts/contracts/utils/ReentrancyGuard.sol",
        "lib/openzeppelin-contracts/contracts/access/Ownable.sol",
        "lib/openzeppelin-contracts/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [
        "UniswapV2Library",
        "UniswapV2Library"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "getReserves",
        "getAmountOut"
    ],
    "Low-Level Calls": [],
    "Code": "function getSellQuote(address targetToken, uint256 amountIn) public view returns (uint256 amount) {\n        // TIPS: vETH -> ETH = 1: 1 - fee\n        (uint256 reserveIn, uint256 reserveOut) = UniswapV2Library.getReserves(\n            LaunchPadUtils.UNISWAP_POOL_FACTORY_,\n            targetToken,\n            vETH\n        );\n\n        // get vETH Amount\n        amount = UniswapV2Library.getAmountOut(amountIn, reserveIn, reserveOut);\n        amount = amount - (amount * feeRate) / feeDenominator;\n    }"
}