Skip to content

Instantly share code, notes, and snippets.

@EmanuelCampos
Created January 13, 2022 13:09
Show Gist options
  • Save EmanuelCampos/628d8e7fc9452e6aa775c193e06c7e76 to your computer and use it in GitHub Desktop.
Save EmanuelCampos/628d8e7fc9452e6aa775c193e06c7e76 to your computer and use it in GitHub Desktop.
Get ETH Price
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract Aggregator {
AggregatorV3Interface internal priceFeed;
/**
* Network: Kovan
* Aggregator: ETH/USD
* Address: 0x9326BFA02ADD2366b30bacB125260Af641031331
*/
constructor() {
priceFeed = AggregatorV3Interface(0x9326BFA02ADD2366b30bacB125260Af641031331);
}
/**
* Returns the latest price
*/
function getLatestPrice() public view returns (int) {
(
uint80 roundID,
int price,
uint startedAt,
uint timeStamp,
uint80 answeredInRound
) = priceFeed.latestRoundData();
return price;
}
}
@tgmarinho
Copy link

https://gist.github.com/EmanuelCampos/628d8e7fc9452e6aa775c193e06c7e76#file-aggregator-sol-L27
the timestamp is an entire word, you can use timestamp instead of camelcase, or is it a reserved word in the solidity code?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment