Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fetch-depth: 1

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: "16.x"
node-version: "18.x"

- name: Install dependencies
run: yarn --frozen-lockfile
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 1

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: "16.x"
node-version: "18.x"

- name: Install dependencies
run: yarn --frozen-lockfile
Expand All @@ -44,7 +44,7 @@ jobs:
fetch-depth: 1

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: "16.x"
node-version: "18.x"

- name: Install dependencies
run: yarn --frozen-lockfile
Expand All @@ -73,7 +73,7 @@ jobs:
fetch-depth: 1

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: "16.x"
node-version: "18.x"

- name: Install dependencies
run: yarn --frozen-lockfile
Expand Down
6 changes: 3 additions & 3 deletions BUG_BOUNTY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mean Finance Bug Bounty
# Balmy Bug Bounty

Mean Finance ImmuneFi bug bounty program is focused on the prevention of negative impacts to the Mean Finance ecosystem, which currently covers our smart contracts and integrations. As such, all bug disclosures must be done through ImmuneFi's platform.
Balmy ImmuneFi bug bounty program is focused on the prevention of negative impacts to the Balmy ecosystem, which currently covers our smart contracts and integrations. As such, all bug disclosures must be done through ImmuneFi's platform.

**Further details and bounty values can be found here**: https://immunefi.com/bounty/meanfinance/
**Further details and bounty values can be found here**: https://immunefi.com/bounty/balmy/
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[![Lint](https://github.com/Mean-Finance/oracles/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/Mean-Finance/oracles/actions/workflows/lint.yml)
[![Tests](https://github.com/Mean-Finance/oracles/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Mean-Finance/oracles/actions/workflows/tests.yml)
[![Slither Analysis](https://github.com/Mean-Finance/oracles/actions/workflows/slither.yml/badge.svg?branch=main)](https://github.com/Mean-Finance/oracles/actions/workflows/slither.yml)
[![Lint](https://github.com/Balmy-Protocol/oracles/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/Balmy-Protocol/oracles/actions/workflows/lint.yml)
[![Tests](https://github.com/Balmy-Protocol/oracles/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Balmy-Protocol/oracles/actions/workflows/tests.yml)
[![Slither Analysis](https://github.com/Balmy-Protocol/oracles/actions/workflows/slither.yml/badge.svg?branch=main)](https://github.com/Balmy-Protocol/oracles/actions/workflows/slither.yml)

# Mean Finance Oracles
# Balmy Oracles

This repository will hold all Mean Finance's oracle infrastructure. It aims to have a sufficiently flexible architecture as to support a wide amount of tokens composition, and therefore enabling quoting pairs that couldn't be done before.
This repository will hold all Balmy's oracle infrastructure. It aims to have a sufficiently flexible architecture as to support a wide amount of tokens composition, and therefore enabling quoting pairs that couldn't be done before.

Some of this is achieved by leveraging already existing oracles like [Uniswap V3 Static Oracle](https://github.com/Mean-Finance/uniswap-v3-oracle).
Some of this is achieved by leveraging already existing oracles like [Uniswap V3 Static Oracle](https://github.com/Balmy-Protocol/uniswap-v3-oracle).

## 🔒 Audits

Expand All @@ -16,8 +16,8 @@ Oracles has been audited by [Omniscia](https://omniscia.io/) and can be find [he

The package will contain:

- Artifacts can be found under `@mean-finance/oracles/artifacts`
- Typescript smart contract typings under `@mean-finance/oracles/typechained`
- Artifacts can be found under `@balmy/oracles/artifacts`
- Typescript smart contract typings under `@balmy/oracles/typechained`

## 📚 Documentation

Expand All @@ -30,18 +30,18 @@ To install with [**Hardhat**](https://github.com/nomiclabs/hardhat) or [**Truffl
#### YARN

```sh
yarn add @mean-finance/oracles
yarn add @balmy/oracles
```

### NPM

```sh
npm install @mean-finance/oracles
npm install @balmy/oracles
```

## 📖 Deployment Registry

Contracts are deployed at the same address on all available networks via the [deterministic contract factory](https://github.com/Mean-Finance/deterministic-factory)
Contracts are deployed at the same address on all available networks via the [deterministic contract factory](https://github.com/Balmy-Protocol/deterministic-factory)

> Available networks: Optimism, Arbitrum One, Polygon.

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mean-finance/oracles",
"name": "@balmy/oracles",
"version": "2.6.0",
"description": "Mean Oracles",
"description": "Balmy Oracles",
"keywords": [
"ethereum",
"smart",
Expand All @@ -13,7 +13,7 @@
],
"repository": {
"type": "git",
"url": "git+https://github.com/mean-finance/oracles.git"
"url": "git+https://github.com/balmy-protocol/oracles.git"
},
"license": "AGPL-3.0-only",
"contributors": [
Expand Down Expand Up @@ -93,7 +93,7 @@
"@codechecks/client": "0.1.12",
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@defi-wonderland/smock": "2.2.0",
"@defi-wonderland/smock": "2.4.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
Expand All @@ -114,7 +114,7 @@
"dotenv": "16.0.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.6.5",
"hardhat": "2.9.3",
"hardhat": "2.23.0",
"hardhat-gas-reporter": "1.0.8",
"hardhat-preprocessor": "0.1.4",
"husky": "7.0.4",
Expand Down
Loading
Loading