From e4cf8f38b1b740c3d2951f90cb56d42e4a9e1167 Mon Sep 17 00:00:00 2001 From: Vinh Date: Wed, 17 Jul 2024 10:50:58 -0700 Subject: [PATCH] correct mainnet chainid --- operator/envs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operator/envs.go b/operator/envs.go index 09ebdc0..73105ec 100644 --- a/operator/envs.go +++ b/operator/envs.go @@ -10,7 +10,7 @@ import ( // TODO: We can fetch this dynamically from aggregator so we can upgrade the // config without the need to release operator var ( - mainnetChainID = big.NewInt(0) + mainnetChainID = big.NewInt(1) ) func (o *Operator) PopulateKnownConfigByChainID(chainID *big.Int) error {