Sitemap

The Evolution of DeFi Oracles: A Companion Guide for Newcomers

18 min readApr 7, 2025

A straightforward explanation of the complex mathematical and technical concepts behind blockchain price oracles, designed to accompany the original technical article by making advanced DeFi concepts accessible to everyone

The confused Oracles of DeFi

This article serves as a companion piece to “The Evolution of DeFi Oracles: From TWAP to RWAP and RVOL,” which explores sophisticated price oracle mechanisms in decentralized finance. While the original article provides deep technical insights for those already familiar with DeFi and blockchain technology, this companion piece aims to make those same concepts accessible to newcomers and non-technical readers.

We’ll follow the same structure as the original article, but focus on simplifying the most complex aspects using consistent transportation and journey analogies throughout. This approach allows you to read both pieces side by side, using this guide whenever you encounter challenging technical concepts.

Oracle Types in DeFi: The Fundamentals

In the original article, three types of price oracles are introduced: TWAP, RWAP, and RVOL. But what exactly is an oracle, and why do these different types matter?

What Are Oracles?

Think of oracles as navigation guides that bring real-world information (like prices) into blockchain applications. Without these guides, blockchain applications would be lost, unable to access essential information like cryptocurrency prices, which are needed for trading, lending, and many other financial activities.

It’s similar to how GPS navigation systems need reliable data sources about road conditions and traffic — without those sources, your navigation app would be useless. In DeFi, oracles provide the critical price information that everything else depends on.

The term “oracle” comes from ancient Greek tradition, but in our transportation metaphor, they’re like specialized navigation systems that ensure blockchain applications can accurately “travel” through financial transactions with correct real-world data.

Why Different Oracle Types Matter

The different oracle types represent an evolution in how price information is collected and processed:

  • TWAP (Time-Weighted Average Price): Like measuring the average speed of all vehicles on a road throughout the day rather than just at one moment
  • RWAP (Reserve-Weighted Average Price): Like measuring traffic while giving more weight to larger vehicles — not just counting cars but considering trucks and buses more significantly
  • RVOL (Realized Volatility): Measures how “bumpy” the road typically is, helping assess risk before traveling

For everyday DeFi users, these improvements directly impact security, fairness, and capabilities:

  • More reliable price data means safer journeys through the DeFi landscape
  • Better protection against price manipulation means your assets are less likely to be diverted onto dangerous routes
  • More sophisticated price measurements enable new financial vehicles like options and insurance

Blockchain Fundamentals You Need to Understand

Before getting into further detail on the Oracle mechanisms, let’s clarify some essential blockchain concepts that make these technical details easier to grasp:

Storage Costs and Limitations

On blockchain, storing data is extraordinarily expensive because:

  • The data is stored forever (there’s no “delete” button)
  • The data is stored on thousands of computers worldwide
  • Space is intentionally limited to keep the blockchain manageable

Think of blockchain storage like limited cargo space in an extremely expensive freight system, where once you load something, it can never be unloaded, and you’re paying to transport that cargo forever. This constraint drives many of the design choices in Oracle implementation.

Gas Fees

Gas fees are the costs you pay to perform actions on a blockchain like Ethereum. Every operation — sending money, trading tokens, interacting with applications — requires computational resources across thousands of computers worldwide. Gas fees compensate these computers for their work.

Think of gas fees like fuel costs for vehicles: Different vehicles (operations) consume different amounts of fuel, and the cost varies based on network congestion, just like fuel prices might vary based on demand. Simple transactions like sending tokens require “compact cars” with lower fuel consumption, while complex smart contract interactions are like “heavy trucks” that consume much more fuel.

Fixed-Point Math

Blockchains like Ethereum can’t directly handle decimal numbers — they only work with integers. This creates a major challenge for financial calculations that naturally produce decimals.

To handle this, developers use a technique called “fixed-point math,” where they multiply decimals by a large number (like 1,000,000,000,000,000,000) to represent them as integers. It’s like measuring a journey in millimeters instead of kilometers — instead of saying you traveled 10.5 kilometers, you’d say you traveled 10,500,000 millimeters.

Flash Loans

Flash loans are a unique blockchain feature allowing users to borrow unlimited funds without collateral, as long as the loan is repaid within the same transaction (a few seconds).

Think of it as being able to temporarily borrow a high-performance vehicle for just one stretch of your journey, without having to prove ownership or put down a deposit, as long as you return it at the next checkpoint before anyone else needs it. This feature, while innovative, creates potential for manipulation since attackers can temporarily access enormous resources. Many Oracle security considerations revolve around defending against flash loan attacks.

Time Weighted Average Prices (TWAP): The Core Concepts

The original article explains TWAP implementations across Uniswap V2, Keep3rV1Oracle, Solidly, and Uniswap V3. Here, we’ll focus on explaining the most complex aspects of these implementations.

The Clever Math Behind TWAP

The key innovation in TWAP oracles is the cumulative price tracking mechanism — think of this as a running total that keeps adding up, like how your car’s odometer keeps a running total of all miles driven. Instead of storing every historical price (which would be prohibitively expensive given blockchain’s limited “cargo space”), they maintain a single “cumulative price” value that continuously tracks:

New Cumulative Price = Old Cumulative Price + (Current Price × Time Elapsed)

This is brilliant because:

  • It only requires storing one number regardless of the time window
  • Anyone can calculate the TWAP for any time period by taking two readings and dividing by the time difference

Think of it like a car’s odometer that keeps track of total miles driven, rather than a trip computer that records each journey separately. With just the odometer reading at the start and end of your trip, you can calculate your average speed without knowing anything about what happened in between. This clever approach saves tremendous storage space while still providing the essential information.

The Storage Challenge and Solution

The evolution of TWAP implementations largely revolves around solving the problem of how to efficiently store historical price data on blockchain, where storage is extremely expensive.

Uniswap V2’s approach was minimal but required external implementation. Solidly improved usability but introduced unbounded storage growth —like keeping a log of every journey ever taken without ever deleting old records, eventually filling all available storage space.

Uniswap V3’s “cardinality” solution is particularly elegant:

  • It uses a fixed-size circular array —imagine a dashcam with limited memory that automatically records over the oldest footage when it runs out of space
  • Pools start with minimal storage to save costs
  • Users who need longer history can pay to increase the size
  • New observations overwrite the oldest ones once full

This solution elegantly balances the tradeoffs between storage efficiency, data availability, and economic alignment of costs with benefits.

Reserve Weighted Average Price (RWAP): Understanding the Innovation

RWAP represents a fundamental shift in how oracles approach price security. By tracking reserves (the actual quantities of assets in the pool) instead of just prices, RWAP creates a much stronger economic security model.

The Economics of Manipulation Resistance

The core innovation of RWAP is how it dramatically increases the cost of price manipulation:

With TWAP:

  • Manipulators only need to affect the momentary price
  • The cost is primarily transaction fees plus some minor market impact
  • A flash loan can be used to temporarily access large capital with minimal cost

With RWAP:

  • Manipulators must commit significant capital for the entire measurement period
  • The cost scales directly with the size of the pool and the duration of the measurement
  • Flash loans are ineffective because capital must remain committed over time

In our transportation metaphor, the difference is profound:

  • TWAP manipulation is like temporarily placing a fake road sign to mislead travelers passing at a specific moment — it requires minimal resources and can be done quickly
  • RWAP manipulation is like having to build and maintain a completely new highway alongside the existing one to divert traffic — the cost and effort required make it economically infeasible

For users, this means significantly enhanced protection against the sophisticated economic attacks that have caused millions in losses in DeFi.

Why This Matters: Real-World Protection

Consider a concrete example: Alice has a $50,000 loan using $100,000 worth of ETH as collateral on a lending platform.

With TWAP-based pricing:

  • An attacker could use a flash loan to temporarily push ETH’s price down 20%
  • Alice’s collateral suddenly appears to be worth only $80,000
  • This brief price movement could trigger liquidation of Alice’s position (selling her ETH at a discount)
  • Alice loses her collateral through no fault of her own
  • The attacker profits from the liquidation auction, walking away with some of Alice’s ETH

With RWAP-based pricing:

  • The attacker would need to commit hundreds of millions of dollars for hours or days to significantly affect the price
  • The cost of manipulation would exceed any potential profit from liquidation
  • Alice’s position remains safe despite temporary price fluctuations
  • The system remains economically secure even against well-funded attackers

In transportation terms, TWAP protection is like having a navigation system that might occasionally be misled by temporary fake signals, potentially leading you into hazardous detours. RWAP protection is like having a navigation system that verifies road conditions through multiple reliable sources, making it nearly impossible for attackers to create convincing detours.

Realized Volatility (RVOL): Demystifying the Complexity

The RVOL section of the original article contains some of the most mathematically complex content.

The mathematics behind volatility measurement has a rich history going back to the early 20th century. Louis Bachelier first applied mathematical models to financial markets in 1900, followed by Paul Samuelson in the 1960s, who introduced the idea that prices follow patterns with both predictable and random components. The famous Black-Scholes model (1973) further refined these concepts, creating the foundation for modern financial mathematics. These mathematical innovations, originally developed for traditional finance, have now evolved to address the unique challenges of decentralized finance.

Let’s break down the core concepts into understandable components.

What is Volatility and Why Does It Matter?

Volatility simply measures how “jumpy” or unstable a price is. Think of it like measuring how bumpy a road is:

  • Low volatility = smooth road with minimal bumps
  • High volatility = extremely bumpy road with large potholes

Most assets don’t move in perfectly predictable patterns. Instead, their prices form a ‘bell curve’ distribution — most price changes are small and cluster around the average, while extreme movements are increasingly rare as you move away from the center. This pattern appears naturally in many systems and helps us quantify exactly how ‘bumpy’ our financial journeys might be.

This measurement is crucial for:

  • Determining how risky an asset is (how rough the journey might be)
  • Setting appropriate collateral requirements for loans (extra safety measures for bumpy roads)
  • Pricing options and insurance products (charging more for coverage on rough routes)
  • Adjusting trading fees based on market conditions (higher tolls for more difficult terrain)

Key Mathematical Concepts Simplified

The mathematics of volatility calculation includes several complex components:

Standard Deviation — A standard deviation measures how spread out numbers are from their average. Imagine measuring the variation in vehicle speeds on a highway:

  • If most vehicles travel between 65–75 mph, the standard deviation is small
  • If speeds range widely from 45–95 mph, the standard deviation is large

This measure follows a pattern called the ‘empirical rule’ or ‘68–95–99.7 rule’:

  • About 68% of price movements fall within 1 standard deviation of the average
  • About 95% fall within 2 standard deviations
  • About 99.7% fall within 3 standard deviations

For prices, standard deviation tells us how much they typically deviate from their expected value — essentially, how unpredictable the journey might be.

Logarithmic Returns — a special way of measuring percentage changes that works better for combining multiple changes, similar to how earthquake magnitudes or sound volumes are measured. Imagine measuring distances using a special map where each increment represents twice the actual distance of the previous increment:

> Level 1: 1 mile
> Level 2: 2 miles
> Level 3: 4 miles
> Level 4: 8 miles
> Level 5: 16 miles

On a normal map, going from Level 1 to Level 3 and back to Level 1 would mean traveling 4 miles forward and 4 miles back, ending where you started. But with percentage changes, that’s not what happens:

  • Start with $100
  • 50% increase: $100 → $150
  • 50% decrease: $150 → $75
  • Result: You’ve lost $25 even though you went “up” and “down” by the same percentage!

That’s confusing and unintuitive.

Logarithmic returns solve this problem. They’re like using a special odometer that measures relative changes in position rather than absolute distances. On this special scale:

  • Going from $100 to $150 measures as +0.41 units
  • Going from $150 to $75 measures as -0.41 units
  • The total journey: +0.41 + (-0.41) = 0, meaning you’re back where you started!

This makes it much easier to accurately combine and compare multiple price movements. This additive property makes log returns ideal for financial calculations, especially when analyzing multiple time periods.

Expanded Logarithmic Returns Example

Let’s see why logarithmic returns matter with a simple road trip example:

Imagine two different routes through the mountains:

  • Route A: Start at mile marker 100, travel 50% further (to mile 150), then back 20% (30 miles) → Final position: mile marker 120
  • Route B: Start at mile marker 100, travel 20% further (to mile 120), then another 25% further (30 miles) → Final position: mile marker 150

Both routes started at the same point and had two segments. Using percentage changes doesn’t tell us much about which got you further overall.

With logarithmic returns:

  • Route A: +0.41 log units, then -0.22 log units = +0.19 total
  • Route B: +0.18 log units, then +0.22 log units = +0.40 total

Logarithmic returns clearly show Route B got you further overall (+0.40 vs +0.19), matching our intuition when looking at final positions (150 miles vs 120 miles).

Annualization — Volatility is typically expressed as an annualized percentage to standardize across different timeframes — converting a short-term measurement into a yearly estimate, like guessing your annual mileage from a week of driving

Imagine trying to estimate your annual driving mileage based on just one week of data. You wouldn’t simply multiply by 52 weeks, because your driving patterns vary — some weeks you drive more, some less.

Similarly, market volatility doesn’t scale linearly with time. Instead:

  • Daily volatility is multiplied by √252 (trading days in a year)
  • Weekly volatility is multiplied by √52
  • Monthly volatility is multiplied by √12

We use the square root because variation tends to grow with the square root of time rather than linearly — longer periods don’t become proportionally more volatile.

Real-World Challenges: When Models Meet Markets

The mathematical models we’ve discussed make some simplifying assumptions that don’t always match reality. Two important concepts help us understand these limitations:

Traffic Patterns Change (Non-Stationarity): Imagine a road where traffic is perfectly consistent every day — that would be ‘stationary’. But real roads have rush hours, seasonal patterns, and unexpected events. Similarly, financial markets go through periods of calm and turbulence. Models assuming consistent patterns (‘stationarity’) can break down when market conditions change dramatically.

Traffic Jams Cluster (Volatility Clustering): When you hit one slow section of road, you’re likely to hit more slow sections nearby — traffic problems tend to cluster together. Similarly, in markets, volatile periods tend to cluster together: ‘large changes tend to be followed by large changes, and small changes by small changes.’ This is why after a major price movement, we often see continued turbulence rather than an immediate return to calm.

DeFi oracle designers must account for these real-world patterns to create systems that remain reliable even when market conditions become extreme.

The Implementation Challenge

Blockchain systems weren’t designed to handle the mathematical functions needed for volatility calculations. They can’t directly process:

  • Decimal numbers (like 0.123)
  • Complex mathematical functions (like logarithms and square roots)
  • Computationally intensive calculations

Think of it like trying to navigate complex terrain with a vehicle that only has basic capabilities — you need to find creative ways to achieve the same result with limited tools.

DeFi developers solve this by creating special “navigation algorithms” that break complicated calculations into simpler steps the blockchain can handle. While the technical details are fascinating, the important takeaway is that these clever workarounds make advanced financial calculations possible on blockchain without compromising security or accuracy.

The original article contains detailed explanations of how logarithms are calculated on blockchain. The solution involves clever approximation algorithms that break these complex calculations into simpler operations that blockchain can handle efficiently. The implementation details are fascinating from a technical perspective but don’t significantly impact the conceptual understanding of volatility.

TWAP vs. RWAP for Volatility Calculation

Perhaps the most interesting aspect is how the choice between TWAP and RWAP affects volatility measurement:

TWAP-based volatility captures all price movements, including those caused by small trades or manipulation. It’s like measuring road bumpiness by having every single vehicle report its experience:

  • Small motorcycles feel every tiny crack and bump
  • A few deliberately driving off-road affect the readings
  • Brief construction zones that few drivers encounter get equal weight

RWAP-based volatility focuses on economically significant price movements backed by substantial capital. It’s like measuring road bumpiness while giving more weight to buses, trucks, and high-traffic areas:

  • Focuses on conditions that affect most travelers
  • Gives more importance to routes that carry significant traffic
  • Filters out outlier experiences that don’t represent typical conditions

For users, RWAP-based volatility provides a more realistic assessment of market risk, filtering out “noise” that doesn’t represent true trading conditions.

Putting It Into Practice

Try It Yourself: Calculate a Simple TWAP

Let’s put these concepts into practice with a transportation example:

Imagine tracking a vehicle’s journey between three cities:

  • At Checkpoint 1 (1:00 PM): Vehicle traveling at 2,000 mph
  • At Checkpoint 2 (2:00 PM): Vehicle traveling at 2,100 mph
  • At Checkpoint 3 (3:00 PM): Vehicle traveling at 1,900 mph

Calculate the average speed for the entire journey:

First — We start with our odometer reading at Checkpoint 1: 0 miles (starting point)

Second — Calculate the odometer reading at Checkpoint 2:

  • Previous distance + (Current speed × Time elapsed)
  • 0 + (2,000 mph × 1 hour) = 2,000 miles

Third — Calculate the odometer reading at Checkpoint 3:

  • 2,000 + (2,100 mph × 1 hour) = 4,100 miles

Now we can find the average speed between Checkpoint 1 and Checkpoint 3:

  • Total distance traveled: 4,100–0 = 4,100 miles
  • Total time elapsed: 2 hours
  • Average speed = 4,100 ÷ 2 = 2,050 mph

This matches our intuition: the average of traveling at 2,000 mph and 2,100 mph for the first hour, and then 2,100 mph and 1,900 mph for the second hour.

Try It Yourself: When Size Matters (RWAP)

Calculate a Reserve-Weighted Average Speed where larger vehicles’ speeds count more:

Imagine a checkpoint recording traffic with different types of vehicles:

  • Checkpoint 1: 10 motorcycles at 60mph, 5 cars at 55mph, 1 truck at 50mph
  • Checkpoint 2: 5 motorcycles at 65mph, 10 cars at 60mph, 3 trucks at 52mph

With TWAP, all vehicles count equally, giving us:

  • Checkpoint 1: (10×60 + 5×55 + 1×50) ÷ 16 = 57.8mph
  • Checkpoint 2: (5×65 + 10×60 + 3×52) ÷ 18 = 59.7mph

With RWAP, we weight by vehicle size (motorcycle=1, car=2, truck=5):

  • Checkpoint 1: (10×1×60 + 5×2×55 + 1×5×50) ÷ (10×1 + 5×2 + 1×5) = 56.3mph
  • Checkpoint 2: (5×1×65 + 10×2×60 + 3×5×52) ÷ (5×1 + 10×2 + 3×5) = 57.6mph

Notice how the larger vehicles pull the weighted average closer to their speeds, making it harder for many small vehicles to manipulate the overall average. This is exactly how RWAP provides better manipulation resistance than TWAP.

Try It Yourself: Measuring Road Bumpiness (RVOL)

Calculate how “bumpy” a road is by measuring speed variations:

First — Record vehicle speeds over 5 time periods: 50, 55, 48, 60, 51 mph

Second — Calculate the average speed: (50+55+48+60+51) ÷ 5 = 52.8 mph

Third — Calculate how much each measurement deviates from average:

  • 50–52.8 = -2.8 mph
  • 55–52.8 = 2.2 mph
  • 48–52.8 = -4.8 mph
  • 60–52.8 = 7.2 mph
  • 51–52.8 = -1.8 mph

Fourth — Square each deviation: 7.84, 4.84, 23.04, 51.84, 3.24

Fifth — Find the average of these squares: (7.84+4.84+23.04+51.84+3.24) ÷ 5 = 18.16

Sixth — Take the square root: √18.16 = 4.26 mph

This road has a “bumpiness” (volatility) of 4.26 mph, meaning speeds typically vary about 4.26 mph from the average. A higher number would indicate a more unstable or “bumpy” road with unpredictable conditions.

Practical Applications: Why This Evolution Matters

A Day in the Life with Different Oracle Systems

Morning with TWAP: Alice wakes up and checks her DeFi dashboard. Overnight, an attacker used a flash loan to briefly manipulate an asset price downward. Her navigation system, using TWAP, didn’t distinguish between this temporary detour and legitimate price movements. Her collateral was liquidated while she slept, resulting in a $15,000 loss.

Morning with RWAP: Alice wakes up and checks her DeFi dashboard. Overnight, the same attacker attempted price manipulation, but the RWAP oracle ignored the brief price spike because it wasn’t backed by significant capital. Her collateral position remains secure, and her assets are still earning yield.

Before and After: Real User Impact

Before (TWAP): Your DeFi navigation system might suddenly reroute your assets through a dangerous neighborhood because a single actor reported it as more efficient, even if they temporarily manipulated the data.

After (RWAP): Your DeFi navigation only recommends routes that have been verified by significant traffic volume and capital commitment, making it nearly impossible for a single actor to create fake shortcuts or dangerous detours.

Specific Gains for Everyday Users

For a typical DeFi user staking $10,000 in a lending protocol:

  • With TWAP: Your collateral has a 5–10% chance of being wrongfully liquidated during market volatility
  • With RWAP: Your liquidation risk from manipulation drops to near-zero, saving potentially thousands in avoided losses
  • With RVOL-aware systems: Your collateral requirements automatically adjust based on market conditions, optimizing your capital efficiency while maintaining safety
    The technical details of oracle design might seem abstract, but they directly translate to practical benefits for DeFi users:

1. Better Security

  • Reduced risk of price manipulation attacks, like having better protection against false road signs
  • More reliable collateral valuation in lending, ensuring your vehicle isn’t repossessed due to temporary road closures
  • Protection against flash loan exploits, like preventing temporary vehicle access from being used to set up roadblocks
  • Economic security that scales with the value at risk, like having more robust security measures on high-value transportation routes

2. New Financial Products

  • Options and derivatives with reliable settlement prices, like being able to purchase insurance for specific routes
  • Risk-adjusted lending with dynamic parameters, like tailoring vehicle financing based on your typical driving conditions
  • Volatility-based insurance products, like paying premiums based on actual road conditions rather than fixed rates
  • Self-adjusting protocols that respond to market conditions, like smart vehicles that adapt to changing terrain

3. Enhanced Fairness

  • Prices that better reflect true trading conditions, like navigation systems that account for actual road usage
  • Less vulnerability to manipulation by wealthy actors, like preventing privileged access from rerouting public highways
  • More accurate price discovery across different market conditions, like getting reliable traffic information in all weather
  • Protection for smaller market participants, ensuring compact cars have the same reliable routes as large trucks

4. Reduced Systemic Risk

  • More resilient DeFi ecosystem, like a transportation network that can handle storms and peak traffic
  • Reduced risk of cascading liquidations, preventing traffic jams from spreading throughout the system
  • Better handling of market stress conditions, like having emergency routes during extreme conditions
  • Protocols that can weather extreme volatility, ensuring continuous service even on the roughest terrain

Oracle Type Comparison

Reference Glossary

AMM: Automated Market Maker — A type of decentralized exchange that uses mathematical formulas to price assets instead of an order book. Like an automated toll system that adjusts prices based on traffic flow rather than manual operators.

Collateral: Assets deposited as security against a loan, which may be claimed by the lender if the borrower defaults. Similar to using your vehicle as security when financing it.

Fixed-point Math: A technique for handling decimal numbers on systems that only support integers by multiplying the real value by a large constant. Like measuring journeys in millimeters instead of kilometers.

Flash Loan: A non-collateralized loan that must be borrowed and repaid within the same transaction block. Like temporarily borrowing a vehicle for a single leg of a journey.

Gas Fee: The cost paid to perform operations on a blockchain, which compensates network participants for validating transactions. Similar to fuel costs that vary based on vehicle type and congestion.

Liquidity Pool: A collection of funds locked in a smart contract that facilitates trading, lending, and other financial functions. Like a network of vehicles available for specific routes and purposes.

Manipulation: Artificial influencing of prices or market conditions to create profit opportunities at the expense of other participants. Like placing fake road signs to divert traffic for personal gain.

Oracle: A service that provides external data to blockchain applications, particularly price information. Like a navigation guide that provides reliable road and traffic information.

Reserves: The actual quantities of assets held in a liquidity pool or trading contract. Like the fleet of vehicles backing a transportation service.

RVOL (Realized Volatility): A measure of how much an asset’s price has fluctuated over a specific time period. Like measuring how bumpy a road has been historically.

RWAP (Reserve-Weighted Average Price): A price calculation method that weighs price data by the amount of capital (reserves) backing each price point. Like measuring traffic while giving more weight to larger vehicles.

TWAP (Time-Weighted Average Price): A price calculation method that averages price points evenly across a time period. Like measuring the average speed of all vehicles throughout the day.

Volatility: The degree of variation in a trading price over time, typically measured as a standard deviation. Like the bumpiness of a road or the predictability of journey times.

Conclusions

The evolution from TWAP to RWAP to RVOL represents a significant maturation of DeFi infrastructure. Each generation has addressed limitations of previous approaches, with the latest innovations focusing on economic security and capital-awareness rather than just time-based measurements.

As an everyday DeFi user, these improvements should translate directly to:

  • Fewer unexpected liquidations of your collateral positions
  • More capital-efficient lending and borrowing opportunities
  • Better protection against malicious actors
  • More accurate pricing during volatile market conditions
  • New financial products that couldn’t exist with less robust oracles

The next time you interact with a DeFi protocol, check which type of oracle it uses — it could make the difference between a safe journey and a costly detour.

This article is for educational purposes only and does not constitute investment advice. It is recommended to read alongside the original technical article for a complete understanding of DeFi oracle evolution.

--

--

SeaSaltyFunk
SeaSaltyFunk

Written by SeaSaltyFunk

Mostly tweet & write about #KP3R, #FixedForex & the keep3r network.

No responses yet