IChainlinkAggregatorV3

Git Source

Functions

decimals

Returns the number of decimals for the data returned by latestRoundData.

function decimals() external view returns (uint8);

description

Provides a human-readable description of the aggregator.

function description() external view returns (string memory);

version

Returns the version number of the aggregator interface.

function version() external view returns (uint256);

latestRoundData

Provides the latest data round's details including round ID, price, timestamps, and completion status.

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

Last updated