{
    "Function": "getCreditLimit",
    "File": "src/Market.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "getCollateralValue"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getCreditLimit(address user) public view returns (uint) {\n        uint collateralValue = getCollateralValue(user);\n        return collateralValue * collateralFactorBps / 10000;\n    }"
}