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
4 changes: 2 additions & 2 deletions .github/workflows/slither.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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 @@ -29,7 +29,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
10 changes: 5 additions & 5 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,15 +44,15 @@ jobs:
fetch-depth: 1

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}

- name: Cache hardhat network fork
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-hardhat-network-fork
with:
Expand All @@ -62,7 +62,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/
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Chainlink Registry

[![Lint](https://github.com/Mean-Finance/chainlink-registry/actions/workflows/lint.yml/badge.svg)](https://github.com/Mean-Finance/chainlink-registry/actions/workflows/lint.yml)
[![Tests (unit, integration)](https://github.com/Mean-Finance/chainlink-registry/actions/workflows/tests.yml/badge.svg)](https://github.com/Mean-Finance/chainlink-registry/actions/workflows/tests.yml)
[![Lint](https://github.com/Balmy-protocol/chainlink-registry/actions/workflows/lint.yml/badge.svg)](https://github.com/Balmy-protocol/chainlink-registry/actions/workflows/lint.yml)
[![Tests (unit, integration)](https://github.com/Balmy-protocol/chainlink-registry/actions/workflows/tests.yml/badge.svg)](https://github.com/Balmy-protocol/chainlink-registry/actions/workflows/tests.yml)

This repository contains all necessary smart contracts for our own version of [Chainlink's Feed Registry](https://docs.chain.link/docs/feed-registry/). Since they don't have it deployed to all chains, we needed to build and maintain our own.

## 📖 Docs

Check our docs at [docs.mean.finance](https://docs.mean.finance)
Check our docs at [docs.balmy.xyx](https://docs.balmy.xyx)

## 👨‍💻 Development environment

Expand Down
2 changes: 1 addition & 1 deletion deploy/001_registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const deployFunction: DeployFunction = async function (hre: HardhatRuntimeEnviro
await deployThroughDeterministicFactory({
deployer,
name: 'ChainlinkFeedRegistry',
salt: 'MF-Chainlink-Feed-Registry-V1',
salt: 'B-Chainlink-Feed-Registry-V1',
contract: 'contracts/ChainlinkRegistry/ChainlinkRegistry.sol:ChainlinkRegistry',
bytecode,
constructorArgs: {
Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
{
"name": "@mean-finance/chainlink-registry",
"name": "@balmy/chainlink-registry",
"version": "2.2.0",
"description": "A Chainlink Feed Registry by mean.finance",
"description": "A Chainlink Feed Registry by balmy.xyz",
"keywords": [
"ethereum",
"smart",
"contracts",
"mean",
"balmy",
"chainlink",
"registry"
],
"homepage": "https://mean.finance",
"homepage": "https://balmy.xyz",
"bugs": {
"url": "https://github.com/Mean-Finance/chainlink-registry/issues"
"url": "https://github.com/balmy-protocol/chainlink-registry/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mean-Finance/chainlink-registry.git"
"url": "git+https://github.com/balmy-protocol/chainlink-registry.git"
},
"license": "GPL-2.0",
"main": "dist",
Expand Down Expand Up @@ -71,7 +72,7 @@
"@codechecks/client": "0.1.12",
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@defi-wonderland/smock": "2.0.7",
"@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 @@ -92,7 +93,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 Expand Up @@ -122,7 +123,7 @@
{
"name": "Nicolás Chamo",
"url": "https://github.com/nchamo",
"email": "nchamo@mean.finance"
"email": "nchamo@balmy.xyz"
}
]
}
Loading
Loading