IPriceConsumer.sol 214 Bytes
Newer Older
John Doe's avatar
John Doe committed
1 2 3 4 5 6 7 8 9 10 11
// SPDX-License-Identifier: MIT

pragma solidity =0.8.4;

interface IPriceConsumer {
	function exchangeAssets(
		uint8 exchAggr,
		uint8 quoteAggr,
		uint256 exchAmount
	) external view returns (uint256, uint8);
}