Commit ce3e3de8 authored by Javed Khan's avatar Javed Khan Committed by GitHub

indexer: support public alpha testnet (#3472)

parent 0649c9d0
......@@ -35,6 +35,11 @@ var defaultBridgeCfgs = map[uint64][]*implConfig{
{"Standard", "StandardBridge", predeploys.DevL1StandardBridge},
{"ETH", "ETHBridge", predeploys.DevL1StandardBridge},
},
// Goerli
420: {
{"Standard", "StandardBridge", "0xFf94B6C486350aD92561Ba09bad3a59df764Da92"},
{"ETH", "ETHBridge", "0xFf94B6C486350aD92561Ba09bad3a59df764Da92"},
},
}
var customBridgeCfgs = map[uint64][]*implConfig{
......
......@@ -33,6 +33,10 @@ var defaultBridgeCfgs = map[uint64][]*implConfig{
901: {
{"Standard", "StandardBridge", L2StandardBridgeAddr},
},
// Goerli Alpha Testnet
28528: {
{"Standard", "StandardBridge", L2StandardBridgeAddr},
},
}
var customBridgeCfgs = map[uint64][]*implConfig{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment