{
    "Function": "calcSwapValueInBase",
    "File": "contracts/Utils.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "getPool",
        "calcSwapValueInBaseWithPool"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function calcSwapValueInBase(address token, uint amount) external view returns (uint _output){\n        address pool = getPool(token);\n        return  calcSwapValueInBaseWithPool(pool, amount);\n    }"
}