This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.19; | |
| /// @title IAggregatorV3 — Minimal Chainlink AggregatorV3 interface | |
| interface IAggregatorV3 { | |
| function latestRoundData() | |
| external | |
| view | |
| returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); |