IUsdValueOracle
Interface reference for IUsdValueOracle.
Interface
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @title IUsdValueOracle * @notice Minimal oracle interface for quoting token balances in USD with 18 decimals. */ interface IUsdValueOracle { function getUsdValue(address token, uint256 amount) external view returns (uint256 value); }