Skip to main content

IChainlinkAggregator

Git Source

Author: Chainlink

Interface for Chainlink aggregator contract

Copied from https://github.com/smartcontractkit/chainlink/blob/master/contracts/src/v0.8/interfaces/AggregatorInterface.sol

Functions

latestAnswer

Returns the price of a unit of osToken (e.g price of osETH in ETH)

function latestAnswer() external view returns (int256);

Returns

NameTypeDescription
<none>int256The price of a unit of osToken (with 18 decimals)

latestTimestamp

The last updated at block timestamp

function latestTimestamp() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The timestamp of the last update