In a chainlink price feed, we can get data by calling:
function latestRoundData() external view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
)
With the following return values:
roundId: The round IDanswer: The answer for this roundstartedAt: Timestamp of when the round startedupdatedAt: Timestamp of when the round was updatedansweredInRound: The round ID in which the answer was computed
Would roundId ever be different from answeredInRound? What is the difference between the two?