Skip to main content

PriceFeedMock

Git Source

Inherits: Ownable, IBalancerRateProvider, IChainlinkAggregator, IChainlinkV3Aggregator

Author: StakeWise

Price feed mock

State Variables

version

The version number of the aggregator

uint256 public constant override version = 0;

description

The description of the aggregator

string public override description;

_latestAnswer

int256 private _latestAnswer;

_latestTimestamp

uint256 private _latestTimestamp;

Functions

constructor

Constructor

constructor(string memory _description) Ownable(msg.sender);

Parameters

NameTypeDescription
_descriptionstringThe description of the price feed

getRate

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

function getRate() public view override returns (uint256);

Returns

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

setLatestAnswer

function setLatestAnswer(int256 latestAnswer_) external onlyOwner;

setLatestTimestamp

function setLatestTimestamp(uint256 latestTimestamp_) external onlyOwner;

latestAnswer

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

function latestAnswer() public view override 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

decimals

The number of decimals the price is formatted with

function decimals() public pure returns (uint8);

latestRoundData

Get the data from the latest round

function latestRoundData()
external
view
returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);

Returns

NameTypeDescription
roundIduint80The round ID
answerint256The current price
startedAtuint256The timestamp of when the round started
updatedAtuint256The timestamp of when the round was updated
answeredInRounduint80(Deprecated) Previously used when answers could take multiple rounds to be computed