-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathRSETHExchangeRateOracle.sol
46 lines (34 loc) · 1.38 KB
/
RSETHExchangeRateOracle.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import { IPriceSource } from "./interfaces/IPriceSource.sol";
interface IKelpDAORestakedEthOracle {
function rsETHPrice() external view returns (uint256);
}
/**
* @title RSETHExchangeRateOracle
* @dev Provides rsETH / USD by multiplying the rsETH exchange rate by ETH / USD.
* This provides a "non-market" price. Any depeg event will be ignored.
*/
contract RSETHExchangeRateOracle {
/// @notice KelpDAO restaked eth rate source oracle contract.
IKelpDAORestakedEthOracle public immutable oracle;
/// @notice The price source for ETH / USD.
IPriceSource public immutable ethSource;
constructor(address _oracle, address _ethSource) {
// 8 decimals required as AaveOracle assumes this
require(IPriceSource(_ethSource).decimals() == 8, "RSETHExchangeRateOracle/invalid-decimals");
oracle = IKelpDAORestakedEthOracle(_oracle);
ethSource = IPriceSource(_ethSource);
}
function latestAnswer() external view returns (int256) {
int256 ethUsd = ethSource.latestAnswer();
int256 exchangeRate = int256(oracle.rsETHPrice());
if (ethUsd <= 0 || exchangeRate <= 0) {
return 0;
}
return exchangeRate * ethUsd / 1e18;
}
function decimals() external pure returns (uint8) {
return 8;
}
}