Files
assetxContracts/contracts/interfaces/IYTLendingPriceFeed.sol

6 lines
161 B
Solidity
Raw Permalink Normal View History

2025-12-24 16:41:26 +08:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IYTLendingPriceFeed {
function getPrice(address _token) external view returns (uint256);
}