all files / plugins/assets/ SelfReferentialCollateral.sol

100% Statements 3/3
50% Branches 1/2
100% Functions 2/2
100% Lines 6/6
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 47 48 49                                    87×                                   203×     201×   201× 201×     201×      
// SPDX-License-Identifier: BlueOak-1.0.0
pragma solidity 0.8.17;
 
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "../../libraries/Fixed.sol";
import "./FiatCollateral.sol";
 
/**
 * @title SelfReferentialCollateral
 * @notice Collateral plugin for an unpegged collateral, such as wETH.
 * Expected: {tok} == {ref}, {ref} == {target}, {target} != {UoA}
 */
contract SelfReferentialCollateral is FiatCollateral {
    using FixLib for uint192;
    using OracleLib for AggregatorV3Interface;
 
    /// @param config.chainlinkFeed Feed units: {UoA/ref}
    constructor(CollateralConfig memory config) FiatCollateral(config) {
        Erequire(config.defaultThreshold == 0, "default threshold not supported");
    }
 
    /// Can revert, used by other contract functions in order to catch errors
    /// @return low {UoA/tok} The low price estimate
    /// @return high {UoA/tok} The high price estimate
    /// @return pegPrice {target/ref}
    function tryPrice()
        external
        view
        override
        returns (
            uint192 low,
            uint192 high,
            uint192 pegPrice
        )
    {
        // {UoA/tok} = {UoA/ref} * {ref/tok} (1)
        uint192 p = chainlinkFeed.price(oracleTimeout);
        // danger for inheritance: this assumes refPerTok() is 1
 
        uint192 err = p.mul(oracleError, CEIL);
 
        low = p - err;
        high = p + err;
        // assert(low <= high); obviously true just by inspection
 
        pegPrice = targetPerRef();
    }
}