Skip to content

Commit f22513c

Browse files
committed
Add mode
1 parent fe3ba9b commit f22513c

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

.github/workflows/Release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
node: ["21.x"]
14-
chain: ["linea"]
14+
chain: ["linea", "mode"]
1515
os: [ubuntu-latest]
1616

1717
runs-on: ${{ matrix.os }}

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ This Subgraph sources events from the Beefy contracts in different networks.
99
### GraphiQL Explorer
1010

1111
- Linea: [https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-linea/gn](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-linea/gn)
12+
- Mode: [https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-mode/gn](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-mode/gn)
1213

1314
### Api Endpoints
1415

1516
- Linea: [https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-linea/gn](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-linea/gn)
17+
- Mode: [https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-mode/gn](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/l2-lxp-liquidity-mode/gn)
1618

1719
## 0xgraph.xyz
1820

1921
### GraphiQL Explorer
2022

2123
- Linea: [https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-linea/graphql](https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-linea/graphql)
24+
- Mode: [https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-mode/graphql](https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-mode/graphql)
2225

2326
### Api Endpoints
2427

2528
- Linea: [https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-linea](https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-linea)
29+
- Mode: [https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-mode](https://api.0xgraph.xyz/subgraphs/name/beefyfinance/l2-lxp-liquidity-mode)
2630

2731
# Contributing
2832

config/mode.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"network": "mode-mainnet",
3+
"shareTokenMintAddress": "0x0000000000000000000000000000000000000000",
4+
"vaultFactoryAddress": "0xD19ab62F83380908D65E344567378cF104cE46c2",
5+
"vaultFactoryStartBlock": 7558107,
6+
"vaultInitializedEvent": "Initialized(uint8)"
7+
}

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"create-local": "graph create beefyfinance/local --node http://127.0.0.1:8020",
1515
"deploy-local": "graph deploy beefyfinance/local --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
1616
"remove-local": "graph remove beefyfinance/local --node http://127.0.0.1:8020",
17-
"prepare:linea": "./bin/prepare.sh linea"
17+
"prepare:linea": "./bin/prepare.sh linea",
18+
"prepare:mode": "./bin/prepare.sh mode"
1819
},
1920
"main": "./bin/index.js",
2021
"bin": {

0 commit comments

Comments
 (0)