-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
review: initial feedback and questions (#11)
- Loading branch information
1 parent
0c71bb1
commit 26353de
Showing
7 changed files
with
221 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Reservoir Price Oracle | ||
|
||
The Reservoir Price Oracle is designed to work with | ||
[Euler Vault Kit](https://github.com/euler-xyz/euler-vault-kit) by implementing | ||
the `IPriceOracle` interface. | ||
|
||
This oracle provides a geometric mean price between two assets, averaged across | ||
a period. The geometric mean has a useful property whereby we can get the | ||
inverse price by simply taking the reciprocal. Something that arithmetic mean | ||
prices do not provide. | ||
|
||
Powered the built-in on-chain price oracle of Reservoir's [AMM](https://github.com/reservoir-labs/amm-core). | ||
|
||
## Interfaces | ||
|
||
For more information on the `IPriceOracle` interface, refer to Euler's [documentation](https://github.com/euler-xyz/euler-price-oracle?tab=readme-ov-file#ipriceoracle). | ||
|
||
For direct usages of the oracle, refer to | ||
[IReservoirPriceOracle.sol](src/interfaces/IReservoirPriceOracle.sol) for | ||
methods to obtain raw data from the AMM pairs. | ||
|
||
## Usage | ||
|
||
### Install | ||
|
||
To install Price Oracles in a [Foundry](https://github.com/foundry-rs/foundry) project: | ||
|
||
```sh | ||
forge install reservoir-labs/oracle | ||
``` | ||
|
||
### Development | ||
|
||
Clone the repo: | ||
|
||
```sh | ||
git clone https://github.com/reservoir-labs/oracle.git && cd oracle | ||
``` | ||
|
||
Install forge dependencies: | ||
|
||
```sh | ||
forge install | ||
``` | ||
|
||
[Optional] Install Node.js dependencies: | ||
|
||
```sh | ||
npm install | ||
``` | ||
|
||
Compile the contracts: | ||
|
||
```sh | ||
forge build | ||
``` | ||
|
||
### Testing | ||
|
||
The repo contains 3 types of tests: unit, large, and integration. | ||
|
||
To run all tests: | ||
|
||
```sh | ||
npm run test:all | ||
``` | ||
|
||
### Linting | ||
|
||
To run lint on solidity, json, and markdown, run: | ||
|
||
```sh | ||
npm run lint | ||
``` | ||
|
||
Separate `.solhint.json` files exist for `src/` and `test/`. | ||
|
||
## Security vulnerability disclosure | ||
|
||
Please report suspected security vulnerabilities in private to | ||
[[email protected]]([email protected]). Please do NOT create publicly | ||
viewable issues for suspected security vulnerabilities. | ||
|
||
## Audits | ||
|
||
These contracts have been audited by TBD and TBD auditing firm. | ||
|
||
## License | ||
|
||
The Euler Price Oracles code is licensed under the [GPL-3.0-or-later](LICENSE) license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.