Back
Omer Goldberg
Omer Goldberg

Oracle Risk and Security Standards: An Introduction (Pt. 1)

Cover Image for Oracle Risk and Security Standards: An Introduction (Pt. 1)
  1. Introduction
  2. Why Should I Care About Oracles?
    1. Blockchains are Closed Networks and Deterministic State Machines
    2. Connecting the External World to Blockchain Networks
    3. The Oracle Problem
    4. Why Can’t My Application Connect Directly to an API?
  3. The Oracle Landscape
    1. On-Chain Oracles
    2. Push-Based Oracles
    3. Pull-Based Oracles
  4. The Scale of the Oracle Security Problem
    1. Is Mission-Critical Third-Party Data Security a Novel Web3 Challenge?
  5. What is the Oracle Security and Architecture Standards Framework?
  6. Oracle Standards Framework
    1. Oracle Standards Framework: Scoring Oracle Security and Risk
    2. Chapter 1: Oracle Network Architecture and Topologies
    3. Chapter 2: Price Composition Methodology
      1. Chapter Preview
      2. Core Sections
      3. Means to Audit
      4. Case Studies and Examples
      5. Conclusion
    4. Chapter 3: Oracle Data Replicability
      1. Chapter Preview
    5. Chapter 4: Data Freshness, Precision and Latency
      1. Understanding Latency and Freshness
      2. Metrics and Measures for Oracle Data Streams
      3. Detailed Requirements
    6. Chapter 5: Ensuring Reliability in On-chain Price Reporting
    7. Chapter 6: MEV and OEV Landscape
      1. Mitigating MEV and OEV Risks
      2. Analyzing Commit-and-Reveal Schemes
      3. Current Liquidation Practices and User Protection
  7. What’s Next

Introduction

At Chaos Labs, our focus is deeply rooted in blockchain protocol risk and security – an area we view as intrinsic to the growth and adoption of DeFi. Oracles are at the heart of DeFi (whether you like it or not) and have powered crypto applications since 2017, securing over $50 billion today.

Total Value Secured across Oracles. Source: DeFiLlama

The role of Oracles cannot be overstated; Oracles facilitate nearly every transaction within the blockchain sphere, becoming an essential cog in the DeFi machinery.

DeFi applications revolve around the creation and maintenance of trustless systems. This vision challenges the conventional reliance on trust, advocating for a transparent and autonomous infrastructure. Yet, in a somewhat paradoxical twist, oracles – the elements tasked with feeding critical, real-world data into blockchains – are held in high regard and trusted implicitly by developers and users alike. This trust stems mainly from a lack of understanding about how oracles function and the risks they carry.

At Chaos Labs, we aim to pivot from this dependency on trust towards a comprehensive understanding of oracles. Our objective is twofold: to demystify oracles' operational intricacies and highlight the potential risks they introduce to DeFi projects. We believe trust can be significantly reduced by creating an environment where developers and users are well-informed about the mechanisms powering their applications.

Understanding oracles, the data they provide, and the implications of their use is not just about enhancing security—it's about empowering the entire DeFi ecosystem to make informed decisions, reinforcing the foundational principles of decentralized finance.

To improve industry-wide risk and security posture and reduce protocol attacks and failures, we’re open-sourcing our Oracle Security and Architecture Standards Framework. Our Oracle Security Framework is the inspiration for our Oracle Security and Risk Platform. It has been developed as part of our work in leading, assessing, and auditing Oracles for top DeFi protocols.

The Chaos Labs Oracle Security and Risk Platform operates in real-time, evaluating oracle quality, assessing the potential for market manipulations, and quantifying deviations and latencies compared to other oracles and significant centralized exchanges. Our platform analyzes data feed quality, providing crucial alerts to protocols and users.

We hope this can serve as a canonical reference for application builders and mechanism designers to utilize when selecting Oracle solutions for their applications, to better understand the pros and cons of each Oracle, and to properly understand architecture advantages and risk surfaces. With this, let’s dive in. Part one of this series will frame Oracle's utility and impact and lay a foundation for the pillars we will explore in this multi-part series.

Why Should I Care About Oracles?

Oracles aren't just infrastructure for DeFi applications; they are often the lifeblood that powers them. To better understand the value of Oracles, let’s first align on why Blockchains, without Oracles, are limited in terms of applications they can support.

Blockchains are Closed Networks and Deterministic State Machines

Out of the box, a Blockchain can perform three functions well.

  1. Immutable and Auditable Transaction History: The core of blockchain technology is its distributed ledger, which records all transactions across a network of computers. This ledger provides a permanent and immutable record of asset ownership and transaction history. Its decentralized nature ensures that it is resistant to tampering and fraud, making it a reliable source for tracking asset ownership and state.
  2. Authorization Service via Cryptographic Signature Verification: Blockchains utilizes advanced cryptography, mainly through private/public key pairs. This aspect enables the blockchain to verify the authenticity of transactions securely. Each user on the blockchain has a unique pair of keys; the public key is visible to everyone and is used to identify the user, while the private key is kept secret and is used to sign transactions. This cryptographic method ensures that transactions are secure and can be attributed to a specific user, enhancing trust and security in the network.
  3. State Machine with Turing Complete Programming Languages: Modern blockchains, especially those like Ethereum, offer Turing complete programming languages. This feature allows the creation and execution of smart contracts—self-executing contracts with the terms of the agreement directly written into lines of code. These contracts can initiate state transitions on the blockchain, which are then recorded and tracked. This programmability and expressiveness allow for a wide range of applications, from decentralized finance (DeFi) to non-fungible tokens (NFTs) and more complex decentralized applications (dApps). The ability to record the history of these state transitions on-chain provides transparency and a tamper-proof record of all interactions and transactions.

Isolated blockchain networks necessitate Oracles to access real-world data and function effectively.

Connecting the External World to Blockchain Networks

Oracles serve as data bridges between the blockchain and the external world. They provide a way for blockchains to interact securely and reliably with external information. This interaction is vital for many blockchain applications, particularly those that rely on real-world data, such as prices, weather information, or any other external data.

Catalyst for State Transitions

If we view the blockchain as a state machine, oracles trigger state transitions based on external data. For instance, a smart contract on a blockchain might be designed to execute a particular action, like a liquidation, when the price of gold reaches a certain level. The oracle is responsible for providing the blockchain with the current price of gold, enabling the smart contract to execute its code based on this external data.

The Oracle Problem

The "Oracle Problem" stems from the blockchain's inherent limitations as a closed-loop system, where applications can only access and react to data within the blockchain itself. While securing the blockchain, this isolation restricts its ability to directly utilize real-world data, which is crucial for many decentralized applications that require external information to operate effectively.

Oracles address this limitation by acting as intermediaries, securely integrating external data into the blockchain. This process updates the blockchain's state with vital information from the outside world, enabling dApps to execute transactions based on accurate and current real-world data.

In essence, oracles bridge the gap between the blockchain's secure, isolated environment and the dynamic, information-rich external world, making them indispensable for the functionality and utility of dApps that depend on real-world data to make informed decisions.

Why Can’t My Application Connect Directly to an API?

The blockchain's distributed ledger nature mandates that each node in the network reaches a deterministic output given identical input, enabling consensus among nodes during transaction validation. For example, in a transaction where $10 is transferred from Bob to Alice, each node independently adjusts Alice's balance by adding $10 and deducting the same amount from Bob's account, ensuring uniformity across the network.

Transfer of fixed value between Bob and Alice.

However, determinism faces challenges when external APIs are employed to validate transactions. Consider a scenario where Bob’s transfer to Alice’s contract relies on an API to determine the amount to transfer based on the price of ETH.

Value amount is dictated by non-deterministic API; every node receives a different response upon verification, and consensus cannot be reached.

Several factors contribute to inconsistent data inputs:

  1. Nodes may access the API at varying times, resulting in discrepancies due to changes in API data, even with microsecond differences in API calls.
  2. Nodes may encounter rate-limiting issues and receive no response or stale responses from the API.
  3. Geographical distribution can route nodes to different API services, yielding different responses.

These challenges highlight the non-deterministic nature of API-driven data responses, which can lead to a lack of consensus among nodes regarding the blockchain's state, whether due to malicious intent or, discrepancies in latency or rate limiting.

Validation is not guaranteed with non-deterministic APIs.

To preserve consensus, blockchain networks prioritize determinism, ensuring that replaying transactions always yields the correct state. However, integrating real-world data into blockchain poses a challenge due to the deterministic constraint, which is critical for applications like DeFi and decentralized insurance.

Blockchain oracles are intermediaries, bridging the gap between deterministic blockchains and off-chain data sources. By inputting external data into the blockchain through transactions, oracles maintain their self-contained nature and enable them to verify their state. This middleware role underscores the significance of oracles in connecting the blockchain world with external data sources.

Despite their crucial role, oracles encounter challenges, commonly called the "oracle problem."

The Oracle Landscape

Oracles are complex entities with extensive risk and security surface areas, necessitating a deep dive into their operations and advancements. The evolving landscape of oracles, marked by recent technological advances and performance enhancements, presents a promising future. This series explores the next frontier in oracle technology: low-latency, high-throughput oracles. Such oracles are the backbone of transaction settlement, providing mission-critical data while targeting efficiency. While numerous oracle types exist, we will focus on a select few, offering insights into their functionality and potential impact on the decentralized finance (DeFi) space. For a complete picture, we list prevalent Oracle types below.

On-Chain Oracles

On-chain oracles come in many flavors. The most prevalent Onchain Oracles are Time-Weighted Average Price (TWAP) oracles, which calculate current prices through historical observations. A notable example is the Uniswap V3 TWAP oracles, which derive asset prices from concentrated liquidity Automated Market Maker (AMM) pools. These oracles prioritize robustness against market manipulation by relying on historical data, albeit at the cost of precision. Their application becomes particularly relevant (potentially risky) in inadequate Centralized Exchange (CEX) liquidity scenarios.

Source: Chaos Labs Research

Chaos Labs has previously researched the Risks of Uniswap V3 TWAP Oracles.

Push-Based Oracles

Initiated by Chronicle and popularized by Chainlink, off-chain, push-based oracles represent the dominant Oracle in DeFi today. These oracles deliver fresh data based on predetermined, discrete parameters: a time-based trigger (aka “the heartbeat”) and a volatility/price action trigger. Chainlink’s push-based oracles inherit a volume-weighted average price (VWAP) methodology from data sources that also employ outlier detection mechanisms.

Chaos Labs' Oracle Risk and Security Platform provides comprehensive monitoring of push-based oracle price feeds through real-time analysis, focusing on ensuring optimal uptime, precision, reduced data latency, and evaluating the feasibility of market manipulation. Our approach is grounded in rigorous scientific methods to maintain data integrity and security.

Today, these oracles are the pre-eminent model in DeFi, securing most borrow/lend applications, among other use cases.

Pull-Based Oracles

This series focuses on exploring the forefront of oracle innovation: pull-based oracles. Spearheaded by pioneers like Chainlink and Pyth and offered by additional protocols such as Redstone and Stork, pull-based oracles represent a significant leap forward in oracle technology. Their development is driven by the demand for cost-efficient, high-precision, low-latency data critical for high-throughput derivative trading platforms, such as those handling perpetual exchanges.

The advent of pull-based oracles marks a paradigm shift in how trading data is utilized across blockchain networks, offering a speed and accuracy previously unattainable. These oracles are at the forefront of addressing a critical need within blockchains aimed at serving as the global financial settlement layer. The essence of finance—a domain where propagation latency and precision are indispensable—demands these characteristics without compromise. Any delay in data delivery or lack of precision introduces information asymmetry, laying the groundwork for economic exploits and an inequitable financial system.

As we delve deeper into the capabilities and applications of pull-based oracles, we aim to illuminate their critical roles, unpack the complexities they navigate, and outline the evolving dynamics of oracle technology within blockchain ecosystems. This exploration will highlight the cutting-edge developments in Oracle technology and underscore the importance of these innovations in supporting the next generation of blockchain applications.

Chaos Labs has previously conducted an audit of Chainlink Low-Latency Oracles on behalf of GMX, and monitors data feeds in real-time to ensure precision and uptime.

Learn more about Chaos Labs Oracle audits here.

The Scale of the Oracle Security Problem

To better understand the scale of this challenge, let’s look at 2022: the crypto world witnessed a staggering loss of over $3.8 billion to hacks, with DeFi protocols and bridges being the prime targets. These breaches weren't all due to flagrant security lapses. In many cases, even protocols developed by the most reputed teams that followed the so-called gold standards of security practices found themselves exploited. This tells us something profound: the challenge isn't merely about ramping up our security efforts. It's about reimagining and reengineering our strategies to stay ahead of an ever-evolving threat landscape.

Source: Chainalysis

So, to our point, why should you care about Oracles? Off-chain data and oracles are mandatory for building financial applications with real-world use cases; we now understand we have a severe problem. Oracle security must be improved 10x for our industry to see meaningful adoption. After all, why would anyone migrate to a riskier, less secure financial system? From a developer perspective, getting Oracle security right from the get-go is critical. When exploited, Oracle failures and manipulations are fatal - very few protocols recover from these. Also, as a protocol founder, this security question isn’t something you get to delegate or outsource. Your users don’t care if the exploit was rooted in a third-party vendor. The bottom line is they were exploited on your platform—as a builder, you’re responsible for diligencing the vendor, the technology, and the quality of the solution. If you’re a serious founder, the Pandora’s Box of Third Party Mission-Critical Data should keep you up at night.

Is Mission-Critical Third-Party Data Security a Novel Web3 Challenge?

A direct analogy in the Web2 domain is the security of third-party APIs in mission-critical applications. This involves ensuring the secure integration and use of external APIs—crafted and controlled outside your organization—within your software infrastructure. Given the reliance of crucial software on data or functionalities from these third-party APIs, securing these connections is paramount to preventing data breaches, upholding data integrity, and ensuring software reliability. Web2 addresses these challenges through high-trust, centralized strategies, including contractual agreements on data quality (Service Level Agreements, or SLAs), compliance with standards, and legal frameworks. However, the Web3 ecosystem, built on the ethos of decentralization, demands trustless mechanisms. This paradigm shift introduces a more complex layer to securing third-party data integrations. In a trustless environment, where traditional off-chain resolutions like legal recourse or SLAs with a counterparty aren't viable, the onus falls on devising more innovative, inherently secure data integration and security models. The move towards trustless systems necessitates reimagining how we approach and solve third-party data security in the decentralized world.

What is the Oracle Security and Architecture Standards Framework?

Oracles are core to blockchain-based financial applications, vastly expanding the world of what is possible with otherwise closed network blockchains. As risk providers and managers for the largest DeFi protocols in the industry, like Aave, GMX, and more, we work closely with core contributors, developers, and founders to map and address application risk vectors. If we think of blockchains and protocols as state machines, Oracles, as we will see below, are the main catalysts for application state transitions. Unfortunately, the name Oracle can be a misnomer, as by definition, we are led to believe Oracle data can always be trusted:

In English, the term "oracle" historically refers to a person or a medium believed to provide wise and insightful counsel or prophetic predictions or precognition of the future, inspired by the deities. This concept originates from ancient cultures and religions where oracles played a significant role in decision-making processes, offering guidance through divine communication. The most famous example is the Oracle of Delphi in ancient Greece, where individuals or state representatives would visit to seek advice or predictions about their futures, wars, or the will of the gods.
Pythia, often referred to as the Oracle of Delphi, was the name given to the priestess of the Temple of Apollo at Delphi, who served as a medium through which the god Apollo communicated. Delphi was considered one of the most important religious sites at the center of the ancient Greek world. Pythia played a crucial role in this spiritual practice, delivering oracles—ambiguous and cryptic prophecies or advice—to individuals, soldiers, and statesmen, including those from far-off lands who traveled to Delphi seeking guidance for important decisions.

However, Oracle failures and manipulations (for the “it’s not Oracle Manipulation, it’s Market manipulation” crowd we’ll dive into during this series) are rampant. The security and reliability of Oracle data are directly tied to the weakest link in the Oracle data supply chain.

The Oracle Data Supply Chain. This is a simplified topology illustration from based on the Chainlink Blog

Similarly critical is how applications sanitize and consume this data. In our opinion, mission-critical software applications (DeFi protocols managing billions of dollars) blindly consuming Oracle data with no risk engine, i.e., business logic checking whether or not the data makes sense or triggers sensible state transitions, is crazy.

Our discussion on Standards and Frameworks begins by outlining the basic building blocks of Oracles, establishing a solid foundational understanding, and, subsequently, examining the different risk surfaces and attack vectors.

Oracle Standards Framework

The Oracle Standards Framework begins with examining Oracle architectures and topologies, laying the foundational groundwork for our exploration.

This initial review is critical for segmenting the security and risk framework into distinct pillars. These pillars, when combined, form the essence of an Oracle. In the ensuing series, we will delve into each of these high-level pillars, providing a thorough analysis and insight into the pivotal components in the construction and operation of Oracles.

Oracle Standards Framework: Scoring Oracle Security and Risk

The objective is to develop a standardized methodology for comprehensive DeFi Oracle Ratings. This will ensure the security and reliability of on-chain data feeds and streams, making them suitable for consumption by DeFi protocols, mainly focusing on derivative instruments sensitive to precise and manipulation-resistant data streams.

Chapter 1: Oracle Network Architecture and Topologies

Chapter 1 delves into the Oracle Risk and Security Framework's first critical aspect: Oracle Network Architecture and Topologies. This post is designed to offer a comprehensive exploration across three verticals:

  1. Overview of Decentralized Oracle Network (DON) Architectures: This segment examines the various architectures that define decentralized Oracle networks. It highlights these architectures' distinct characteristics and operational methodologies, setting the stage for a deeper understanding of their roles within the Oracle ecosystem.
  2. Dissecting the Data Supply Chain: The narrative then examines the data supply chain within these networks. We will explore the processes involved in data sourcing, validation, and distribution, offering insights into the complexities and challenges of ensuring data accuracy and reliability in decentralized environments.
  3. Analyzing Network Topology and Data Flow Security and Risk Vectors: To conclude our exploration, we focus on the building blocks of Oracle networks. This part aims to unravel the network's composition, examining how individual components interconnect to form a cohesive and functional network structure crucial for Oracle's operational efficacy.

Chapter 2: Price Composition Methodology

This chapter will offer a structured preview of how oracles compose prices, the challenges and implications involved, and the methodologies that ensure accuracy and reliability.

Chapter Preview

  • Introduction: We set the stage by outlining the chapter's aim to dissect the complex methodologies behind oracle price composition and their critical implications.
Intrasource Price Distribution Analysis: The above graph/illustration represents measuring price variations over a specified time series across different trading venues. We aim to identify and investigate any noticeable anomalies or discrepancies in the reported prices by plotting the price data from various venues on a single time series graph. Such an analysis is crucial for understanding the consistency and reliability of price information across different sources, which is essential for ensuring the accuracy and trustworthiness of data utilized in DeFi protocols and other financial instruments. The systematic comparison and analysis of price data across venues enable us to detect potential issues like price manipulation or inconsistencies that could adversely affect the functioning and credibility of decentralized financial systems.

Core Sections

  • Data Sourcing and Validation: The discussion will revolve around selecting exchanges and liquidity sources, defining the Relevant Market, and the necessity of ongoing market data monitoring.
  • Pricing Methodologies: We critique commonly used methods like Last Trade Price and VWAP, propose alternative approaches for more accurate pricing, and explain the consolidation of order books for benchmark pricing.
Analyzing Price Deviations Across Centralized Exchanges (CEXes): The table above illustrates a comparative analysis measuring deviations in asset prices across various Centralized Exchanges over a specified period. By meticulously tracking and plotting the price of a particular asset across different CEXes, we aim to identify any significant discrepancies or anomalies that may exist. Understanding the extent and nature of price deviations across these platforms is crucial, providing insights into market liquidity, efficiency, and the potential for arbitrage opportunities. Moreover, this analysis aids in ensuring a more transparent and equitable trading environment by identifying any inconsistent pricing behavior, which could indicate market manipulation or other adverse factors. Through this comparative examination, we seek to foster a deeper understanding of market dynamics and contribute to the broader discussion on market integrity and stability in the digital asset ecosystem.
  • Price Aggregation Techniques: An exploration of various aggregation methods, including Chainlink’s median approach and Pyth’s outlier removal technique, alongside a discussion on the trade-offs between different oracle models.
  • Addressing Illiquid Assets: Strategies to enhance price quality for illiquid assets are examined, highlighting the challenges of simplistic pricing methods.

Means to Audit

  • Emphasis will be placed on the transparency of price construction methods, the disclosure of approved exchanges for price sourcing, and methods for comparing price quality, supplemented by historical data analysis.

Case Studies and Examples

  • Real-world incidents highlighting the importance of accurate price composition will be reviewed, and reasonable deviation metrics in pricing will be discussed.

Conclusion

  • A summary of the methodologies discussed and their implications on Oracle accuracy and reliability will underscore the chapter's significance in the broader context of Oracle functionality.

Chapter 3: Oracle Data Replicability

This chapter ventures into the essential aspect of ensuring data replicability within Oracle systems. This chapter is meticulously designed to unpack the concept of data replicability, emphasizing the ability to trace and verify the inputs leading to the final price reported by oracles.

Chapter Preview

  • Understanding Data Replicability: This paper introduces data replicability in the context of Oracle services, highlighting its significance for transparency and trust in decentralized finance (DeFi) systems.
  • Tracing Inputs for Price Determination: Detailed exploration of methods and technologies that enable users and developers to trace the data inputs used in Oracle price reports. This section sheds light on how oracles aggregate and process data to arrive at a reported price, ensuring that users can independently verify and replicate these results.
  • Challenges and Solutions in Data Replicability: Addressing the common challenges in achieving data replicability, including data source diversity and aggregation complexities. We will discuss innovative solutions and best practices that Oracle services can adopt to enhance the traceability and reliability of their data inputs.
  • Implications for Oracle Reliability and User Trust: Concluding with a discussion on the broader impact of data replicability for Oracle reliability and the overall trust in Oracle services by the DeFi community. This section will emphasize why replicability is not just a technical requirement but a cornerstone for building user confidence in decentralized applications.
Past Benchmark Analysis of Oracle Reports: The illustration above encapsulates our prior analytical endeavors where we benchmarked Oracle Reports against prices observed on Centralized Exchanges (CEXes) over extended durations. By meticulously comparing the data reported by Oracles with the prices from the most liquid trading venues, we aimed to measure the deviation and assess the accuracy and reliability of the Oracle data in mirroring real-market conditions. Besides deviation analysis, our exploration extended to other critical facets such as latency, consistency, and the overall alignment of Oracle Reports with market dynamics. This exhaustive benchmarking exercise is pivotal for gauging the effectiveness of Oracles in providing accurate and timely data, which is indispensable for the seamless operation of DeFi protocols and ensuring trust within the blockchain-based financial ecosystem. The insights gleaned from this analysis significantly contribute to a broader understanding of Oracle's performance and the potential areas of improvement to enhance data integrity and market transparency.

This chapter aims to provide a deep dive into the nuances of ensuring data replicability in Oracle services, offering readers insights into the technical and operational measures that can bolster transparency and trustworthiness in DeFi's critical infrastructure.

Chapter 4: Data Freshness, Precision and Latency

Chapter 3 underscores the critical importance of data freshness and precision in Oracle protocols, setting the stage with real-world examples (MNGO, GMX, FRAX, USDC depeg) that showcase the severe impacts of latency and imprecision.

In previous investigations, we have meticulously tracked and analyzed price reports with mid-price, and Bid-Ask spreads observed across the most liquid Centralized Exchanges (CEXes). The graph/illustration above encapsulates the findings of this comparative analysis over a specified timeframe. By overlaying Oracle’s reported prices with the mid prices and Bid-Ask spreads from various CEXes, we aimed to evaluate the accuracy, timeliness, and reliability of Oracle data. This analysis is crucial as it sheds light on the efficacy of various Oracle providers as a reliable Oracle service in reflecting market prices accurately, which is indispensable for the smooth operation of DeFi protocols and other blockchain-based financial applications. The insights gleaned from this analysis also contribute to a broader understanding of the oracle services landscape and its alignment with real-market data from established trading venues.

Understanding Latency and Freshness

  • Definitions of critical terms pave the way for a deeper dive into data transport latency, identifying improvement areas to enhance data freshness.

Metrics and Measures for Oracle Data Streams

  • Discussion on the necessity of stable update frequencies and low latency highlights the operational needs to mitigate front and back running, supported by objective data demonstrations.

Detailed Requirements

  • We explore how the number of feeds and endpoint processing tasks influences system load, leading to a comprehensive explanation of latency calculation and its critical role in maintaining data freshness.

Chapter 3 presents an in-depth exploration of data latency and precision, combining theoretical understanding with practical examples to highlight the significance of Oracle security.

Timestamp Deviation Analysis: The diagram/graph above delves into meticulously examining timestamp deviations between a reference Oracle and the nearest timestamps available from various Centralized Exchanges (CEXes). By aligning and comparing the timestamps, we aim to assess the temporal discrepancies in data reporting and ascertain the latency in price information propagation from CEXes to the reference Oracle. This measurement of timestamp deviations is pivotal for understanding the timeliness and accuracy of price data, which is fundamental for the proper functioning and integrity of DeFi protocols and other blockchain-based financial instruments. Moreover, this analysis sheds light on potential latency issues, helping to ensure that the most current and accurate price information is utilized for critical on-chain decisions. Through this in-depth examination, we strive to enhance the robustness and reliability of data transmission within the blockchain ecosystem.

Chapter 5: Ensuring Reliability in On-chain Price Reporting

This chapter will navigate the methodologies and best practices designed to bolster the dependability of on-chain price data. This chapter is organized to provide a comprehensive understanding of achieving and maintaining high-reliability standards in reporting on-chain prices, alongside insights into managing report gas costs and evaluating performance.

  • Reliable On-chain Reporting Framework:
    • We begin with crafting a streamlined process and checklist to achieve consistent and reliable on-chain price reporting, emphasizing the integration of redundancy measures and fail-safe mechanisms to guarantee continuity.
    • The chapter further delves into defining and managing operational risks, focusing on the challenges posed by off-chain data delivery mechanisms.
  • Performance Monitoring and Evaluation:
    • A dedicated section on establishing a robust framework for the ongoing monitoring and evaluation of performance, ensuring that on-chain price reporting remains accurate, timely, and cost-effective.
Distributions of Deviations Analysis: The visual representation above explores the distribution of price deviations across Centralized Exchanges (CEXes), Decentralized Exchanges (DEXes), and a Benchmark Price Index or Oracle over a designated period. By examining and plotting the discrepancies in asset prices among these different platforms and comparing them to a benchmark or oracle price, we aim to discern the consistency and accuracy of price information available across the market. This analysis is pivotal for identifying potential price manipulation, assessing market efficiency, and understanding the liquidity dynamics across various trading venues. Furthermore, it sheds light on the reliability and trustworthiness of price oracles, which are instrumental in the functioning of DeFi protocols. Through this systematic exploration, we endeavor to contribute to a more transparent, equitable, and informed trading ecosystem by providing a nuanced understanding of price dynamics across different market venues compared to a benchmark or oracle.

This chapter promises to equip readers with the necessary tools and knowledge to design, implement, and maintain reliable on-chain price reporting systems. By addressing key areas such as operational risk management, performance evaluation, and the intricacies of reporting gas costs, we aim to thoroughly explore the critical aspects of reliable on-chain data provision in the decentralized finance ecosystem.

Chapter 6: MEV and OEV Landscape

Mitigating MEV and OEV Risks

We begin by detailing the perils of pre-settlement data exposure, highlighting how advanced knowledge of Oracle updates can create arbitrage opportunities through frontrunning, supported by real-world incidents like hedera-hashgraph, Flashbots, and MEV-Boost-Relayer.

The discussion extends to potential solutions and their inherent trade-offs, emphasizing the primary goal of minimizing frontrunning while preserving fair user competition.

Analyzing Commit-and-Reveal Schemes

  • This section delves into the mechanics of commit-and-reveal schemes employed by platforms such as Synthetix and GMX, with a case scenario involving Alice and Bob to illustrate operational dynamics and limitations.
  • Despite these mechanisms, we explore how MEV activities and liquidations can still exploit these systems, proposing enhancements to mitigate such vulnerabilities.

Current Liquidation Practices and User Protection

  • We examine the impact of current liquidation practices on users through the lens of Oracle accuracy and close factor setup, enriched by case studies from prominent Borrow/Lend DeFi protocols.
  • From the liquidators' perspective, motivations and risks, including gas costs, market, duration risk, and capital efficiency, are discussed, leading to strategies to protect users and ensure a fair liquidation process.

This chapter aims to equip readers with a deeper understanding of the complexities surrounding data privacy pre-settlement, MEV, and frontrunning risks, offering insights into current practices and proposing thoughtful solutions to enhance user protection and market integrity.

What’s Next

We've now concluded our introductory series on the Oracle Standards: Architectures, Risk, and Security Paradigms. Up next, we'll embark on a series of more technical deep dives, dissecting the pillars outlined in our discussions. These upcoming sessions are designed to equip you with a robust mental model for in-depth understanding of Oracle security. Keep an eye out for our latest updates and dive deeper with us into the intricate world of Oracle security!

Recent Updates

Cover Image for Chaos Labs Partners with SynFutures

Chaos Labs Partners with SynFutures

Chaos Labs is thrilled to announce our partnership with SynFutures. Our collaboration, which started in February, is centered on evaluating and enhancing SynFutures V3's pioneering Oyster AMM that allows Single-Token Concentrated Liquidity for Derivatives and a Fully On-Chain Order Book.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain: End of Season 3 Launch Incentive Analysis

dYdX Chain: End of Season 3 Launch Incentive Analysis

Chaos Labs presents a comprehensive review of the third trading season on the dYdX Chain. The analysis encompasses all facets of exchange performance, emphasizing the impact of the Launch Incentive Program.

Omer Goldberg
Omer Goldberg
Cover Image for Introducing Aave's Chaos Labs Risk Oracles

Introducing Aave's Chaos Labs Risk Oracles

In the fast-paced and volatile environment of DeFi, managing risk parameters across Aave's extensive network—spanning over ten deployments, hundreds of markets, and thousands of variables such as Supply and Borrow Caps, Liquidation Thresholds, Loan-to-Value ratios, Liquidation Bonuses, Interest Rates, and Debt Ceilings—has evolved into a critical, yet resource-intensive, full-time endeavor. Chaos Labs aims to streamline this paradigm by integrating Risk Oracles to automate and optimize the risk management process, achieving scalability and near-real-time risk adjustment capabilities.

Omer Goldberg
Omer Goldberg
Cover Image for Oracle Risk and Security Standards: Network Architectures and Topologies (Pt. 2)

Oracle Risk and Security Standards: Network Architectures and Topologies (Pt. 2)

Oracle Network Architecture and Topologies provides a detailed examination of how Oracle Networks are structured, data’s complex journey from source to application, and the inherent security and risk considerations within these systems. Through a deep dive into architectures, the data supply chain, and network topology, readers will understand the critical components that ensure the functionality and reliability of Oracles in DeFi, providing context for the challenges and innovative solutions that define the landscape.

Omer Goldberg
Omer Goldberg
Cover Image for Next Generation of NFT Derivatives: Chaos Labs Partners with nftperp

Next Generation of NFT Derivatives: Chaos Labs Partners with nftperp

We are excited to announce the Chaos Labs and nftperp partnership, which aims to pioneer the risk management framework for ongoing parameter optimizations for nftperp’s Perpetual trading DEX.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Elected to Lead Risk for Arbitrum Research & Development Collective

Chaos Labs Elected to Lead Risk for Arbitrum Research & Development Collective

In a significant stride toward enhancing the Arbitrum ecosystem's resilience and efficiency, Chaos Labs has been elected to spearhead Risk Management for the Arbitrum Research and Development Collective.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain: Launch Incentives Season 3 Mid-Season Review

dYdX Chain: Launch Incentives Season 3 Mid-Season Review

Chaos Labs presents the mid-season 2 review of full trading on the dYdX Chain. All aspects of the exchange performance are covered with a focus on the impact of the launch incentive program.

Omer Goldberg
Omer Goldberg
Cover Image for Oracle Risk and Security Standards: An Introduction (Pt. 1)

Oracle Risk and Security Standards: An Introduction (Pt. 1)

Chaos Labs is open-sourcing our Oracle Risk and Security Standards Framework to improve industry-wide risk and security posture and reduce protocol attacks and failures. Our Oracle Framework is the inspiration for our Oracle Risk and Security Platform. It was developed as part of our work leading, assessing, and auditing Oracles for top DeFi protocols.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with USDV for Genesis Risk Assessment and Strategic Growth

Chaos Labs Partners with USDV for Genesis Risk Assessment and Strategic Growth

Chaos Labs is thrilled to unveil our strategic partnership with Verified USD, a leap forward in our commitment to innovation within Tokenized Real World Asset (RWA) backed stablecoins.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain: Concluding Season 2 Launch Incentive Analysis

dYdX Chain: Concluding Season 2 Launch Incentive Analysis

Chaos Labs is pleased to provide a comprehensive review of the second trading season on the dYdX Chain. This analysis encompasses all facets of exchange performance, emphasizing the impact of the Launch Incentive Program.

Omer Goldberg
Omer Goldberg
Cover Image for USDC Liquidity Optimization Framework for OP Mainnet

USDC Liquidity Optimization Framework for OP Mainnet

Chaos Labs introduces a comprehensive analysis and strategic framework designed to enhance liquidity incentives and streamline the transition from bridged USDC.e to native USDC on the OP Mainnet, aiming for a seamless and efficient migration process.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Optimism Foundation

Chaos Labs Partners with Optimism Foundation

Chaos Labs is excited to collaborate with the Optimism Foundation to optimize liquidity incentives and facilitate the migration from bridged USDC.e to native USDC on OP Mainnet.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Avantis

Chaos Labs Partners with Avantis

Chaos Labs is excited to announce our new partnership with Avantis, marking a significant step forward in our journey toward innovating the world of on-chain trading. Over recent months, our collaboration with Avantis has focused on developing a genesis risk framework and the initial setting of parameters for their protocol.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain: Launch Incentives Season 2 Mid-Season Review

dYdX Chain: Launch Incentives Season 2 Mid-Season Review

Chaos Labs presents the mid-season 2 review of full trading on the dYdX Chain. All aspects of the exchange performance are covered with a focus on the impact of the launch incentive program.

Omer Goldberg
Omer Goldberg
Cover Image for Protocol Spotlight: Bluefin V3

Protocol Spotlight: Bluefin V3

Bluefin, the backbone of Sui's derivative exchange ecosystem, drives over 90% of on-chain trading volume. It has undergone a transformative journey from V1 to V2, fine-tuning its codebase for the Sui blockchain. In Q2 2024, Bluefin is set to unveil V3, a highly optimized iteration offering reduced feed, improved latency, and cross-margin trading accounts.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain Launch Incentives Program: Wash Trading Detection

dYdX Chain Launch Incentives Program: Wash Trading Detection

Chaos Labs has developed a sophisticated wash trading detection algorithm designed for the dYdX Chain Launch Incentives Program. To enhance the program's effectiveness and encourage genuine long-term activity, Chaos Labs has implemented a robust detection process that identifies and disqualifies traders generating inorganic flow from receiving incentives.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain: End of Season 1 Launch Incentive Analysis

dYdX Chain: End of Season 1 Launch Incentive Analysis

Chaos Labs presents the end-of-season 1 review of full trading on the dYdX Chain. All aspects of the exchange performance are covered with a focus on the impact of the launch incentive program.

Omer Goldberg
Omer Goldberg
Cover Image for The Imbalance Score: A Novel Metric for Ostium's RWA-Focused Perpetual DEXes

The Imbalance Score: A Novel Metric for Ostium's RWA-Focused Perpetual DEXes

Exploring risk mitigation levers and methodologies for weakly correlated assets, a key feature of the Ostium Perpetual DEX.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Bluefin

Chaos Labs Partners with Bluefin

Chaos Labs is thrilled to announce our partnership with Bluefin, a leader in decentralized derivatives trading. This collaboration marks a significant milestone in our mission to blend the robustness and security of blockchain technology with cutting-edge trading solutions. We aim to revolutionize how on-chain trading is experienced, ensuring a seamless and secure bridge to off-chain asset offerings.

Omer Goldberg
Omer Goldberg
Cover Image for Seamless Risk Monitoring and Alerting Platform

Seamless Risk Monitoring and Alerting Platform

Chaos Labs is excited to share our partnership with Seamless, centered around risk management and optimization, following their successful launch on Base.

Omer Goldberg
Omer Goldberg
Cover Image for sBNB Oracle Exploit Post Mortem

sBNB Oracle Exploit Post Mortem

Chaos Labs summarizes the snBNB oracle exploit affecting the Venus LST Isolated Pool. The post-mortem focuses on the event analysis and risk management efforts following the exploit.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain Analytics and Risk Monitoring Portal

dYdX Chain Analytics and Risk Monitoring Portal

Chaos Labs is thrilled to introduce the dYdX Chain Analytics and Risk Monitoring Portal, a significant development in our continued partnership with the dYdX community. This portal encompasses the emerging dYdX Chain, providing valuable insights and risk assessment capabilities. Additionally, it features a dynamic leaderboard that offers real-time tracking and visibility into traders' points, providing transparency and clarity regarding their positions in the Launch Incentives Program.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Chain: A Comprehensive Overview of the Launch Incentives Program

dYdX Chain: A Comprehensive Overview of the Launch Incentives Program

In collaboration with dYdX, Chaos Labs is excited to announce a $20 million liquidity incentives program to mark the launch of the new dYdX Chain. This initiative, a significant step towards enhancing user experience and liquidity, is tailored to transition users to the dYdX Chain seamlessly. It's not just a program; it's an invitation to be at the forefront of dYdX's vision, shaping the future of decentralized finance.

Omer Goldberg
Omer Goldberg
Cover Image for The Role of Oracle Security in the DeFi Derivatives Market With Chainlink and GMX

The Role of Oracle Security in the DeFi Derivatives Market With Chainlink and GMX

The DeFi derivatives market is rapidly evolving, thanks to low-cost and high-throughput blockchains like Arbitrum. Minimal gas fees and short time-to-finality make possible an optimized on-chain trading experience like the one GMX offers. This innovation sets the stage for what we anticipate to be a period of explosive growth in this sector.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Liquity Protocol

Chaos Labs Partners with Liquity Protocol

Liquity and Chaos Labs have announced a strategic collaboration centered around the development of Liquity v2, an upcoming, new Reserve-backed stablecoin protocol.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Ostium

Chaos Labs Partners with Ostium

Chaos Labs will work closely with Ostium Protocol to improve their mechanism design and create a risk modeling and monitoring system. The partnership will prioritize the system's robustness and secure functioning, helping bridge the gap between on-chain trading and off-chain asset offerings.

Omer Goldberg
Omer Goldberg
Cover Image for GMX V2 Risk Portal Product Launch

GMX V2 Risk Portal Product Launch

Chaos Labs is excited to launch the GMX V2 Synthetics Risk Hub, expanding our existing V1 GLP Risk Hub to provide complete coverage, including all protocol versions.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Ethena Labs for Mechanism Design, Economic Security and Risk Optimization

Chaos Labs Partners with Ethena Labs for Mechanism Design, Economic Security and Risk Optimization

Chaos Labs is partnering with Ethena Labs to fortify mechanism design and develop risk frameworks for the novel protocol. This collaboration is set to amplify the economic security and robustness of Ethena's innovative stablecoin, USDe.

Omer Goldberg
Omer Goldberg
Cover Image for crvUSD Risk Monitoring And Alerting Platform

crvUSD Risk Monitoring And Alerting Platform

Chaos Labs launches the crvUSD Risk Monitoring and Alerting Platform, providing thorough analytics and visibility and serving as a central hub for the crvUSD community to access a wealth of data and risk insights related to the protocol.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Risk Portal 2.0 Launch

Chaos Labs Risk Portal 2.0 Launch

Chaos Labs is proud to announce the official launch of the latest version of our Risk Hub.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Nexus Mutual for Economic Security and Risk Optimization

Chaos Labs Partners with Nexus Mutual for Economic Security and Risk Optimization

After an extensive RFP process, the Nexus Mutual Foundation selected Chaos Labs as an economic security and risk partner. This collaboration is set to fortify the future of the Ratcheting AMM (RAMM) design, a critical component of the Nexus Mutual protocol.

Omer Goldberg
Omer Goldberg
Cover Image for Radiant Risk Monitoring and Alerting Platform

Radiant Risk Monitoring and Alerting Platform

Chaos Labs launches the Radiant Risk Monitoring and Alerting Platform, providing thorough analytics and visibility and serving as a central hub for the Radiant community to access a wealth of data and risk insights related to the protocol.

Omer Goldberg
Omer Goldberg
Cover Image for Venus Risk Monitoring and Alerting Platform

Venus Risk Monitoring and Alerting Platform

Chaos Labs launches the Venus Risk Monitoring and Alerting Platform, providing thorough analytics and visibility and serving as a central hub for the Venus community to access a wealth of data and risk insights related to the protocol.

Omer Goldberg
Omer Goldberg
Cover Image for Compound Multi Chain Risk Monitoring Hub

Compound Multi Chain Risk Monitoring Hub

Chaos Labs has partnered with Compound via the Grants program, launching a state-of-the-art Compound Cross-Chain Analytics and Observability platform.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Risk Parameter Recommendation Portal

dYdX Risk Parameter Recommendation Portal

Chaos Labs and Considered.finance are excited to present our collaboration, the dYdX Risk Parameter Recommendation Portal 4. This dashboard provides real-time parameter recommendations informed by market liquidity and objective order book liquidity measures.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with TapiocaDAO for Risk Management and Optimization

Chaos Labs Partners with TapiocaDAO for Risk Management and Optimization

Chaos Labs is thrilled to announce a strategic partnership with TapiocaDAO, centered around risk management and parameter optimization for the imminent launch of the omni-chain money market protocol and USDO.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Launches the Aave Asset Listing Portal to Streamline New Collateral Onboarding

Chaos Labs Launches the Aave Asset Listing Portal to Streamline New Collateral Onboarding

Chaos Labs has launched the Aave Asset Listing Portal, a tool that will streamline onboarding new collateral to the Aave protocol. The portal automates collecting and analyzing key market data around assets, enabling the community to make informed decisions and enhance risk management.

Omer Goldberg
Omer Goldberg
Cover Image for GMX GLP Risk Hub: A Public Derivative Risk Monitoring and Analytics Platform

GMX GLP Risk Hub: A Public Derivative Risk Monitoring and Analytics Platform

Chaos Labs is proud to partner with GMX, a leading DeFi perpetual platform, to launch the GMX GLP Public Risk Hub (Version 0), a cutting-edge platform designed to provide real-time user metrics, margin-at-risk analysis, alerting, and market simulations to assess the value at risk (VaR) in fluctuating markets.

Omer Goldberg
Omer Goldberg
Cover Image for Uniswap V3 TWAP: Assessing TWAP Market  Risk

Uniswap V3 TWAP: Assessing TWAP Market Risk

Assessing the likelihood and feasibility of manipulating Uniswap's V3 TWAP oracles, focusing on the worst-case scenario for low liquidity assets.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Partners with Compound for Cross-Chain Risk Analytics Grant

Chaos Labs Partners with Compound for Cross-Chain Risk Analytics Grant

Chaos Labs, a cloud-based risk management platform for DeFi applications, has been awarded a Compound Grant to build a Cross-Chain Risk and Analytics platform.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Risk Dashboard Launches Live Alerts for Real-Time Risk Management

Chaos Risk Dashboard Launches Live Alerts for Real-Time Risk Management

Chaos Risk Dashboard has rolled out new functionality that provides real-time alerts covering crucial indicators on the Aave v3 Risk Dashboard and BENQI Risk Dashboard.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs USDC Depeg - War Room Summary

Chaos Labs USDC Depeg - War Room Summary

Chaos Labs summarizes the USDC depeg event and risk management efforts following the collapse of SVB.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Launches the BENQI Parameter Recommendations Platform

Chaos Labs Launches the BENQI Parameter Recommendations Platform

Chaos Labs launches the BENQI Parameter Recommendations Platform to streamline risk parameter recommendations for the BENQI protocol.

Omer Goldberg
Omer Goldberg
Cover Image for Introducing the GHO Risk Monitoring Dashboard by Chaos Labs

Introducing the GHO Risk Monitoring Dashboard by Chaos Labs

Chaos Labs unveils a new version of the Aave v3 Collateral At Risk Dashboard monitoring the GHO deployment on the Goerli testnet in preparation for mainnet launch.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Raises $20M in Seed Funding to Automate On-Chain Risk Optimization

Chaos Labs Raises $20M in Seed Funding to Automate On-Chain Risk Optimization

Chaos Labs raises Seed funding led by Galaxy and Paypal Ventures to automate on-chain risk optimization.

Omer Goldberg
Omer Goldberg
Cover Image for AAVE v3 Collateral At Risk Dashboard Expands Deployments Support to Ethereum v3

AAVE v3 Collateral At Risk Dashboard Expands Deployments Support to Ethereum v3

Following the successful launch of the AAVE v3 Collateral At Risk Dashboard, we're proud to announce expanded support for Ethereum v3.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Unveils Parameter Recommendation Platform.

Chaos Labs Unveils Parameter Recommendation Platform.

After becoming full-time contributors to the Aave protocol in 2022, Chaos Labs has been working on all fronts to deliver tools that will increase the community’s understanding of Aave and its potential. We’re proud to publish V0 of the Chaos Labs parameter recommendation platform to the community!

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Selected by Uniswap Foundation for TWAP Oracle Research Grant

Chaos Labs Selected by Uniswap Foundation for TWAP Oracle Research Grant

Preceded by earlier V3 TWAP oracle research, the Uniswap Foundation announces a Chaos Labs grant.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs & Hathor Nodes launch platform to optimize Osmosis incentive distribution

Chaos Labs & Hathor Nodes launch platform to optimize Osmosis incentive distribution

Funded by the Osmosis Grants Program, the pair launches an open-sourced incentives model and community dashboards.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs receives a Uniswap Foundation grant for LP strategies for V3

Chaos Labs receives a Uniswap Foundation grant for LP strategies for V3

Chaos Labs has been awarded a grant from the Uniswap Foundation to test and simulate sophisticated LP strategies.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs helps navigate DeFi volatility with an expanded Aave V2 risk partnership

Chaos Labs helps navigate DeFi volatility with an expanded Aave V2 risk partnership

Chaos Labs announces further collaboration with Aave to include Aave V2 risk coverage.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Osmosis Liquidity Incentives Portal Update

Chaos Labs Osmosis Liquidity Incentives Portal Update

An update on the Osmosis Liquidity Incentives Portal collaboration with Hathor Nodes.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Launches Benqi Risk Dashboard

Chaos Labs Launches Benqi Risk Dashboard

Chaos Labs is launching the Benqi Risk Dashboard, utilizing real-time user metrics to understand the value at risk across volatile markets as well as yield earned and paid over time.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Asset Protection Tool

Chaos Labs Asset Protection Tool

Chaos is unveiling a new tool to measure price manipulation risk and protect against it. Introducing the Chaos Labs Asset Protection Tool

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Joins AAVE as Full-Time Contributor

Chaos Labs Joins AAVE as Full-Time Contributor

After a successful governance vote, Chaos Labs is joining Aave as a full-time contributor to focus on risk management and parameter recommendations for all Aave v3 markets.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Receives Osmosis Grant

Chaos Labs Receives Osmosis Grant

Chaos Labs has received a grant from the Osmosis Grants Program and will partner with Hathor Nodes on optimizing the Osmosis incentives program.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs <> Benqi veQI Calculator

Chaos Labs <> Benqi veQI Calculator

Chaos Labs, a cloud security platform for DeFi applications, announces the launch of the Benqi veQI calculator.

Omer Goldberg
Omer Goldberg
Cover Image for Maker Simulation Series: Auction Price Curve & Keeper Gas Strategies (Pt. 4)

Maker Simulation Series: Auction Price Curve & Keeper Gas Strategies (Pt. 4)

Chaos Labs, a cloud-based simulation platform for smart contract applications, has collaborated with Maker to model and simulate how Keepers with competing gas strategies impact the Auction Price Curve for liquidations.

Omer Goldberg
Omer Goldberg
Cover Image for Benqi veQI Economic Analysis

Benqi veQI Economic Analysis

Diving deep into Benqi's veQI tokenomics and utility.

Omer Goldberg
Omer Goldberg
Cover Image for Maker Simulation Series: Peg Stability Module (Pt. 3)

Maker Simulation Series: Peg Stability Module (Pt. 3)

Chaos Labs, a cloud-based simulation platform for smart contract applications, has collaborated with Maker to model PSM simulations.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs launches AAVE v3 Risk Bot

Chaos Labs launches AAVE v3 Risk Bot

The AAVE v3 Risk bot will provide monitoring, notifications and daily summaries for risk related activity across all v3 deployments.

Omer Goldberg
Omer Goldberg
Cover Image for Maker Simulation Series: Flapper Surplus Dai Auctions (Pt. 2)

Maker Simulation Series: Flapper Surplus Dai Auctions (Pt. 2)

Chaos Labs, a cloud-based simulation platform for smart contract applications, has collaborated with Maker to model and simulate Flapper Surplus DAI auctions.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Launches AAVE v3 Risk Application

Chaos Labs Launches AAVE v3 Risk Application

Chaos Labs, a cloud security platform for DeFi applications, has launched an AAVE v3 collateral at risk and real-time user metrics dashboard.

Omer Goldberg
Omer Goldberg
Cover Image for Maker Simulation Series: Flipper Black Thursday (Pt. 1)

Maker Simulation Series: Flipper Black Thursday (Pt. 1)

Chaos Labs, a cloud-based simulation platform for smart contract applications, has collaborated with Maker to model and simulate Flip Auctions, liquidations and auctions.

Omer Goldberg
Omer Goldberg
Cover Image for AAVE Simulation Series: stETH:ETH Depeg (Pt. 0)

AAVE Simulation Series: stETH:ETH Depeg (Pt. 0)

A simulation series focused on economic security for the AAVE protocol. Let's examine the effect of a stETH:ETH depeg.

Omer Goldberg
Omer Goldberg
Cover Image for Maker Simulation Series: Introduction (Pt. 0)

Maker Simulation Series: Introduction (Pt. 0)

Chaos Labs, a cloud-based simulation platform for smart contract applications, has collaborated with Maker to model and simulate liquidations and auction mechanisms.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Dives Deep Into AAVE v3 Data Validity

Chaos Labs Dives Deep Into AAVE v3 Data Validity

Chaos Labs, a cloud security platform for DeFi applications, has discovered

Ron Lev
Ron Lev
Cover Image for Chaos Labs Collaborates with Benqi For Liquid Staking Analytics

Chaos Labs Collaborates with Benqi For Liquid Staking Analytics

Chaos Labs, a cloud security platform for DeFi applications, announces a partnership with Benqi to support Liquid Staking on the Avalanche network.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Receives AAVE Grant

Chaos Labs Receives AAVE Grant

Chaos Labs, a cloud security platform for DeFi applications, has been awarded an AAVE Grant to build a collateral at risk and real-time user metrics dashboard.

Omer Goldberg
Omer Goldberg
Cover Image for Pushing Economic Security Boundaries with MakerDAO Pt. 2

Pushing Economic Security Boundaries with MakerDAO Pt. 2

Chaos Labs, a cloud security and testing platform for smart contract applications, has created a cloud platform for Maker to test their liquidation and auction mechanisms.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Open Source Uniswap v3 TWAP Hardhat Plugin

Chaos Labs Open Source Uniswap v3 TWAP Hardhat Plugin

Chaos Labs, a cloud security platform for DeFi applications, has open source a utility package for interfacing with Uniswap v3.

Omer Goldberg
Omer Goldberg
Cover Image for Uniswap V3 TWAP Oracle Deep Dive - Pt. 2

Uniswap V3 TWAP Oracle Deep Dive - Pt. 2

An in depth look at Uniswap v3 TWAP architecture and usage in development.

Omer Goldberg
Omer Goldberg
Cover Image for dYdX Maker Liquidity Rewards Distribution Report

dYdX Maker Liquidity Rewards Distribution Report

Chaos Labs releases the dYdX Market Maker Liquidity Rewards Distribution Report.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Receives Chainlink Grant to build Terra Oracle Infrastructure

Chaos Labs Receives Chainlink Grant to build Terra Oracle Infrastructure

Chaos Labs, a cloud security platform for DeFi applications, has been awarded a Chainlink Grant to build tooling and infrastructure for Terra Oracles.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs releases the dYdX Perpetual Funding Rate App

Chaos Labs releases the dYdX Perpetual Funding Rate App

Chaos Labs releases the dYdX Perpetual Funding Rate application for the dYdX ecosystem.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Open Sources Chainlink Price Feed NPM Module

Chaos Labs Open Sources Chainlink Price Feed NPM Module

Chaos Labs, a cloud security platform for DeFi applications, has open source a utility package for interfacing with Chainlink price feeds.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Open Sources dYdX Trading CLI

Chaos Labs Open Sources dYdX Trading CLI

Chaos Labs, a cloud security platform for DeFi applications, has open sourced a trading tool for the dYdX ecosystem.

Omer Goldberg
Omer Goldberg
Cover Image for Pushing Economic Security Boundaries with MakerDAO

Pushing Economic Security Boundaries with MakerDAO

Chaos Labs, a cloud security and testing platform for smart contract applications, has created a cloud platform for Maker to test their liquidation and auction mechanisms.

Omer Goldberg
Omer Goldberg
Cover Image for Uniswap v3 TWAP Oracle Tooling and Deep Dive Pt. 1

Uniswap v3 TWAP Oracle Tooling and Deep Dive Pt. 1

Chaos Labs, a cloud security platform for DeFi applications, has released open source tooling for developing with Uniswap v3 TWAP Oracles.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Receives dYdX Grant

Chaos Labs Receives dYdX Grant

Chaos Labs, a cloud security platform for DeFi applications, has been awarded a dYdX Grant to build analytics and tooling for the dYdX ecosystem.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Receives Uniswap Grant

Chaos Labs Receives Uniswap Grant

Chaos Labs, a cloud security platform for DeFi applications, has been awarded a Uniswap Grant to build tooling for Uniswap v3 TWAP Oracles.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Adds Chainlink Oracle Cloud Integrations

Chaos Labs Adds Chainlink Oracle Cloud Integrations

Chaos Labs receives grant to enhance Chainlink Oracle Cloud Testing Environment.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs joins Maker SES

Chaos Labs joins Maker SES

Chaos Labs, a cloud security and testing platform for smart contract applications, has recently joined the SES incubation program.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Receives Chainlink Grant

Chaos Labs Receives Chainlink Grant

Chaos Labs, a cloud security platform for DeFi applications, has been awarded a Chainlink Grant.

Omer Goldberg
Omer Goldberg
Cover Image for Chaos Labs Mission Statement

Chaos Labs Mission Statement

Chaos Labs is a cloud security and testing platform for smart contract applications. Mission statement coming soon 🎉 🥳

Omer Goldberg
Omer Goldberg