This commit is contained in:
Diego Ezequiel Guillén 2022-06-06 17:13:33 -05:00
Родитель 178b283253
Коммит adbf899e54
1 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

@ -6,7 +6,7 @@ contract PriceConsumerV3 {
constructor() public {
priceFeed = AggregatorV3Interface(0xd8bD0a1cB028a31AA859A21A3758685a95dE4623);
}
}
function getLatestPrice() public view returns (int) {
(
@ -19,4 +19,15 @@ contract PriceConsumerV3 {
return price;
}
}
function getTimestamp() public view returns (uint) {
(
uint80 roundID,
int price,
uint startedAt,
uint timestamp,
uint80 answeredInRound
) = priceFeed.latestRoundData();
return timestamp;
}
}