Files
2025-12-22 14:46:35 +08:00

13 lines
263 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title IPriceFeed
* @notice 价格预言机接口
*/
interface IPriceFeed {
function getPrice() external view returns (uint256 price);
function decimals() external view returns (uint8);
}