AggregatorV3Interface.sol

View Source: contracts/AggregatorV3Interface.sol

Functions

  • decimals()

  • description()

  • version()

  • getRoundData(uint80 _roundId)

  • latestRoundData()

decimals

function decimals() external view
returns(uint8)

Arguments

Name

Type

Description

description

function description() external view
returns(string)

Arguments

Name

Type

Description

version

function version() external view
returns(uint256)

Arguments

Name

Type

Description

getRoundData

function getRoundData(uint80 _roundId) external view
returns(roundId uint80, answer int256, startedAt uint256, updatedAt uint256, answeredInRound uint80)

Arguments

Name

Type

Description

_roundId

uint80

latestRoundData

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

Arguments

Name

Type

Description

Last updated