Skip to content

Commit

Permalink
doc: add note for compatibility notice
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Nov 10, 2024
1 parent 9feb674 commit a9c40aa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ For direct usages of the oracle, refer to
[IReservoirPriceOracle.sol](src/interfaces/IReservoirPriceOracle.sol) for
methods to obtain raw data from the AMM pairs.

## EVM Compatibility

Currently the `ReservoirPriceOracle` contract makes use of the transient storage
supported since the Cancun fork via OZ's `ReentrancyGuardTransient` lib.
At the time of writing only ETH mainnet is supported.
If deployment to other chains where transient storage is not yet supported,
we can revert to using solady's `ReentrancyGuard` for the most gas efficient
implementation.

## Usage

### Install
Expand Down

0 comments on commit a9c40aa

Please sign in to comment.