Skip to content

Commit 4393852

Browse files
committed
Add scroll
1 parent 01728c7 commit 4393852

File tree

5 files changed

+26
-0
lines changed

5 files changed

+26
-0
lines changed

.github/workflows/Release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
"polygon",
3232
"rootstock",
3333
"sei",
34+
"scroll",
3435
"zksync",
3536
]
3637
os: [ubuntu-latest]

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ This Subgraph sources events from the Beefy contracts in different networks.
2222
- [Optimism](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-optimism/latest/gn)
2323
- [Polygon](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-polygon/latest/gn)
2424
- [Rootstock](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-rootstock/latest/gn)
25+
- [Scroll](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-scroll/latest/gn)
2526
- [Sei](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-sei/latest/gn)
2627
- [Zksync](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefy-balances-zksync/latest/gn)
2728

config/scroll.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"network": "scroll",
3+
4+
"shareTokenMintAddress": "0x0000000000000000000000000000000000000000",
5+
"burnAddress": "0x000000000000000000000000000000000000dead",
6+
7+
"clmManagerFactoryAddress": "0x2AfB174c22D9eE334895C4e300ab93154d800aA0",
8+
"clmManagerFactoryStartBlock": 10224895,
9+
"clmStrategyFactoryAddress": "0xA5Cd8A60a05571141370D184e255777e5c2d5968",
10+
"clmStrategyFactoryStartBlock": 10224905,
11+
"rewardPoolFactoryAddress": "0xe103ab2f922aa1a56EC058AbfDA2CeEa1e95bCd7",
12+
"rewardPoolFactoryStartBlock": 10224898,
13+
"beefyClassicVaultFactoryAddress": "0x91BB303E972995EbE5f593BCddBb6F5Ef49Dbcbd",
14+
"beefyClassicVaultFactoryStartBlock": 10224183,
15+
"beefyClassicBoostFactoryAddress": "0x0000000000000000000000000000000000000000",
16+
"beefyClassicBoostFactoryStartBlock": 10224183,
17+
18+
"vaultInitializedEvent": "Initialized(uint8)"
19+
}

data/scroll_data.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"old_vaults": [],
3+
"old_boosts": []
4+
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"prepare:optimism": "./bin/prepare.sh optimism",
3333
"prepare:polygon": "./bin/prepare.sh polygon",
3434
"prepare:rootstock": "./bin/prepare.sh rootstock",
35+
"prepare:scroll": "./bin/prepare.sh scroll",
3536
"prepare:sei": "./bin/prepare.sh sei",
3637
"prepare:zksync": "./bin/prepare.sh zksync"
3738
},

0 commit comments

Comments
 (0)