Skip to content

Latest commit

 

History

History
84 lines (53 loc) · 1.37 KB

aggregatorv3interface.md

File metadata and controls

84 lines (53 loc) · 1.37 KB
layout title
default
AggregatorV3Interface

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