Files
assetxContracts/contracts/ytLending/interfaces/IPriceFeed.sol

22 lines
446 B
Solidity
Raw Normal View History

2025-12-18 13:07:35 +08:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title IPriceFeed
* @notice
*/
interface IPriceFeed {
/**
* @notice
* @return price (scaled by 1e8)
*/
function getPrice() external view returns (uint256 price);
/**
* @notice
* @return
*/
function decimals() external view returns (uint8);
}