Files
assetxContracts/contracts/interfaces/IYTPriceFeed.sol
2025-12-18 13:07:35 +08:00

8 lines
172 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IYTPriceFeed {
function getPrice(address _token, bool _maximise) external view returns (uint256);
}