{
    "Function": "calcLiquidityUnitsAsym",
    "File": "contracts/Utils.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "iBEP20",
        "iPOOL"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function calcLiquidityUnitsAsym(uint amount, address pool) external view returns (uint units){\n        // synthUnits += (P b)/(2 (b + B))\n        uint baseAmount = iPOOL(pool).baseAmount();\n        uint totalSupply = iBEP20(pool).totalSupply();\n        uint two = 2;\n        return (totalSupply * amount) / (two * (amount + baseAmount));\n    }"
}