Skip to content

Commit d5b5bb2

Browse files
committed
Rename avalanche to avax
1 parent f4ee477 commit d5b5bb2

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

.github/workflows/Release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
node: ["21.x"]
1414
chain:
1515
[
16-
"avalanche",
16+
"avax",
1717
"arbitrum",
1818
"base",
1919
"bsc",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This Subgraph sources events from the Beefy contracts in different networks.
88

99
### Latest endpoints
1010

11-
- [Avalanche](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-avalanche/latest/gn)
11+
- [Avalanche](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-avax/latest/gn)
1212
- [Arbitrum](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-arbitrum/latest/gn)
1313
- [Base](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-base/latest/gn)
1414
- [Bsc](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-bsc/latest/gn)

bin/check-config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ async function main() {
272272
// check for missing holder counts
273273
const missingHolderCounts: BeefyVault[] = []
274274
for (const vault of allConfigs) {
275-
const subgraphchain = vault.chain === "avax" ? "avalanche" : vault.chain === "one" ? "harmony" : vault.chain
275+
const subgraphchain = vault.chain === "one" ? "harmony" : vault.chain
276276
dataFileContentPerChain[subgraphchain] = dataFileContentPerChain[subgraphchain] || { old_vaults: [], old_boosts: [] }
277277

278278
const level = vault.eol ? "ERROR" : "WARN"
File renamed without changes.
File renamed without changes.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"create-local": "graph create beefyfinance/local --node http://127.0.0.1:8020",
1616
"deploy-local": "graph deploy beefyfinance/local --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
1717
"remove-local": "graph remove beefyfinance/local --node http://127.0.0.1:8020",
18-
"prepare:avalanche": "./bin/prepare.sh avalanche",
18+
"prepare:avax": "./bin/prepare.sh avax",
1919
"prepare:arbitrum": "./bin/prepare.sh arbitrum",
2020
"prepare:base": "./bin/prepare.sh base",
2121
"prepare:bsc": "./bin/prepare.sh bsc",

0 commit comments

Comments
 (0)