{
    "Function": "getAssetPrice",
    "File": "src/oracles/ChainlinkPriceOracle.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol",
        "src/utils/LRTConfigRoleChecker.sol",
        "src/interfaces/IPriceFetcher.sol"
    ],
    "High-Level Calls": [
        "AggregatorInterface"
    ],
    "Internal Calls": [
        "onlySupportedAsset"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getAssetPrice(address asset) external view onlySupportedAsset(asset) returns (uint256) {\n        return AggregatorInterface(assetPriceFeed[asset]).latestAnswer();\n    }"
}