Oracle Module
The "source of truth" for collateral and system coin prices
Relevant smart contracts:
1. Overview
The Oracle Module is in charge with ingesting and pushing price feed updates into the system. It has three core components: a medianizer that pulls a price feed for an asset, an FSM (Feed Security Module) that introduces a delay to prices coming from the medianizer and an OracleRelayer that divides the price data by the redemptionPrice and then divides the result again by the collateralization ratio (of the asset whose price is submitted) before pushing the final output in the SAFEEngine. The module may also be used to provide price feed data for the system's feedback mechanism or other contracts meant to autonomously set system parameters.
2. Component Descriptions
DSValueis a simplified version of a medianizer. It is used for testing the oracle infrastructure. The contract creator can specify which addresses are allowed to update the price feed inside the contract.The
OSM(named via acronym from Oracle Security Module) ensures that new price values propagated from the medianizers are not taken up by the system until a specified delay has passed.The
DSM(named via acronym from Dampened Security Module) is anOSM-like contract that limits the maximum price change between two consecutive price feed updates.FsmGovernanceInterfaceis an abstraction meant to help governancestopOSMs.The
OracleRelayeris the glue between theOSMand the core system (SAFEEngine). It divides every price feed by the latestredemptionPriceand then divides the output again by the collateralization ratio before saving the final result. The relayer will, in fact, store two different prices for each collateral type: asafetyPriceused only when SAFE users want to generate debt and aliquidationPriceused when someone callsLiquidationEngine.liquidateSAFE. The relayer is also in charge with storing theredemptionPriceand updating it using theredemptionRate.Both
GovernanceLedPriceFeedMedianizerandChainlinkPriceFeedMedianizerprovide fresh price feeds for every token used in the system. The major difference between the two is that the governance led version maintains a whitelist of price feed contracts which are authorized (and incentivized) by token holders to push prices into the system whereas the Chainlink version does not depend on GEB's governance to function properly (apart from instances where token holders need to point to an upgraded version of the Chainlink aggregator).The
UniswapConsecutiveSlotsPriceFeedMedianizeris a TWAP leveraging the Uniswap v2 infrastructure in order to provide a price feed. It needs to be connected to a separate oracle that can help translate the TWAP result into another currency (e.g USD, EUR etc).
3. Risks
OracleRelayer- A bug would most likely result in the collateral prices not being updated anymore or in theredemptionPricebeing set to an unusually high or low value.GovernanceLedPriceFeedMedianizer- there is no way to prevent a majority of the oracles to come together and sign a price of zero. This would result in the price being invalid and would return false ongetResultWithValidity.ChainlinkPriceFeedMedianizer- governance may need to change the aggregator address in case there is an upgrade on the Chainlink infrastructure. Failure to do so will result in the price feed not being updated anymore and the need for settlement in case a solution is not found in a short period of time.OSM- governance can change thepriceSourceaddress to a malicious contract or to a source that does not adhere to the correct interface (that should otherwise containgetResultWithValidity). Governance may also callstoporrestartValueinappropriately.DSM- can suffer from the same attacks as theOSMFsmGovernanceInterface- governance can maliciously stop one or moreOSMs orDSMsUniswapConsecutiveSlotsPriceFeedMedianizer- governance can set a converterFeed (oracle that translates the TWAP result in another currency) to a malicious contract. Governance can also setmaxWindowSizeto an extremely large value and thus allow the TWAP to be excessively laggy.
4. Governance Minimization
In the long run, governance can completely remove control over the OracleRelayer, provided that three conditions are met:
Governance does not plan to add any more collateral types in the future.
The team that deployed the system thoroughly tested its feedback mechanism, both in simulated and in live environments.
The OracleRelayer is in the Level 1 Gov Minimization category.
Last updated
Was this helpful?