⚡OEV
How It Works
Configuration
Parameter
Current Value
Description
Price Delay Mechanism
🏦Core Markets🔷Morpho MarketsLast updated
// Pseudo-code
if (roundId != cachedRoundId && block.timestamp < updatedAt + maxRoundDelay) {
// Return PREVIOUS round data (delayed price)
return getPreviousRoundData();
} else {
// Return current round data (fresh price available to everyone)
return currentRoundData;
}