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