We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b92db0d commit c804429Copy full SHA for c804429
models/aggregated_block_feed/dependency.go
@@ -186,11 +186,12 @@ func getDepGraph(chainId int64) map[string][]string {
186
"auraB_rETH_STABLE": {},
187
"auraB_rETH_STABLE_vault": {},
188
// redstones
189
- "weETH": {"WETH"},
+ "weETH": {"WETH"},
190
// "ezETH": {"WETH"},
191
"rswETH": {"WETH"},
192
"pufETH": {"WETH"},
193
"rsETH": {"WETH"},
194
+ "pzETH": {"stETH"},
195
}
196
if log.GetBaseNet(chainId) != "MAINNET" {
197
for sym, deps := range depGraph {
@@ -202,7 +203,7 @@ func getDepGraph(chainId int64) map[string][]string {
202
203
204
depGraph[sym] = x
205
- delete(depGraph, "cLINK")
206
+ delete(depGraph, "cLINK") // for non mainnet remove stETH.
207
208
return depGraph
209
0 commit comments