import "@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol";
contract PriceConsumerV3 {
AggregatorV3Interface internal priceFeed;
* Address: 0x9326BFA02ADD2366b30bacB125260Af641031331
priceFeed = AggregatorV3Interface(0x9326BFA02ADD2366b30bacB125260Af641031331);
* Returns the latest price
function getThePrice() public view returns (int) {
) = priceFeed.latestRoundData();