{
    "Function": "updatePrice",
    "File": "src/LiquidityPool.sol",
    "Parent Contracts": [
        "src/interfaces/IERC4626.sol",
        "src/interfaces/IERC20.sol",
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "auth"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function updatePrice(uint128 price) public auth {\n        latestPrice = price;\n        lastPriceUpdate = block.timestamp;\n        emit UpdatePrice(price);\n    }"
}