From 799472247df02dcbff0466625effcb7854474f43 Mon Sep 17 00:00:00 2001 From: Will Cory Date: Thu, 30 Jun 2022 20:35:51 -0400 Subject: [PATCH] Update Optimism ChainID from Kovan to Goerli (#15115) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hey y’all! As part of our Optimism Kovan to Goerli migration, we’re working to make sure the whole ecosystem is up to speed on where we’re at and what they can do to ensure they’re not running an out of date testnet. Today, we posted a dev blog and a tweet thread about the migration and we were wondering if we could get a RT from you to maximize visibility and reach. Would also appreciate if you could forward this info on to any other projects in the Optimism Ecosystem you guys work with. Appreciate the boost if you’re able to help amplify! --- shared/constants/network.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/constants/network.js b/shared/constants/network.js index 11f7803a6..5f1563311 100644 --- a/shared/constants/network.js +++ b/shared/constants/network.js @@ -23,7 +23,7 @@ export const KOVAN_CHAIN_ID = '0x2a'; export const LOCALHOST_CHAIN_ID = '0x539'; export const BSC_CHAIN_ID = '0x38'; export const OPTIMISM_CHAIN_ID = '0xa'; -export const OPTIMISM_TESTNET_CHAIN_ID = '0x45'; +export const OPTIMISM_TESTNET_CHAIN_ID = '0x1a4'; export const POLYGON_CHAIN_ID = '0x89'; export const AVALANCHE_CHAIN_ID = '0xa86a'; export const FANTOM_CHAIN_ID = '0xfa';