mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
8 lines
257 B
Solidity
8 lines
257 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.21;
|
|
|
|
interface IFluidOracle {
|
|
/// @notice Get the `exchangeRate_` between the underlying asset and the peg asset in 1e27
|
|
function getExchangeRate() external view returns (uint256 exchangeRate_);
|
|
}
|