Skip to content

Commit

Permalink
Rename avalanche to avax
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed Sep 30, 2024
1 parent f4ee477 commit d5b5bb2
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
node: ["21.x"]
chain:
[
"avalanche",
"avax",
"arbitrum",
"base",
"bsc",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This Subgraph sources events from the Beefy contracts in different networks.

### Latest endpoints

- [Avalanche](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-avalanche/latest/gn)
- [Avalanche](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-avax/latest/gn)
- [Arbitrum](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-arbitrum/latest/gn)
- [Base](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-base/latest/gn)
- [Bsc](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-bsc/latest/gn)
Expand Down
2 changes: 1 addition & 1 deletion bin/check-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ async function main() {
// check for missing holder counts
const missingHolderCounts: BeefyVault[] = []
for (const vault of allConfigs) {
const subgraphchain = vault.chain === "avax" ? "avalanche" : vault.chain === "one" ? "harmony" : vault.chain
const subgraphchain = vault.chain === "one" ? "harmony" : vault.chain
dataFileContentPerChain[subgraphchain] = dataFileContentPerChain[subgraphchain] || { old_vaults: [], old_boosts: [] }

const level = vault.eol ? "ERROR" : "WARN"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"create-local": "graph create beefyfinance/local --node http://127.0.0.1:8020",
"deploy-local": "graph deploy beefyfinance/local --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
"remove-local": "graph remove beefyfinance/local --node http://127.0.0.1:8020",
"prepare:avalanche": "./bin/prepare.sh avalanche",
"prepare:avax": "./bin/prepare.sh avax",
"prepare:arbitrum": "./bin/prepare.sh arbitrum",
"prepare:base": "./bin/prepare.sh base",
"prepare:bsc": "./bin/prepare.sh bsc",
Expand Down

0 comments on commit d5b5bb2

Please sign in to comment.