From 628216271a69dac1f536e24f02bd789f8646c003 Mon Sep 17 00:00:00 2001 From: mordochi Date: Tue, 12 Sep 2023 18:07:36 +0800 Subject: [PATCH] fix: fix optimism chain id hex format --- src/services/evm.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/evm.ts b/src/services/evm.ts index 1b8b5ff..791a1e9 100644 --- a/src/services/evm.ts +++ b/src/services/evm.ts @@ -81,13 +81,13 @@ export const supportedChains = [ }, { name: "Optimism Mainnet", - chainId: "0x000a", + chainId: "0xa", rpcUrls: ["https://mainnet.optimism.io"], environment: "mainnet", }, { name: "Optimism Testnet", - chainId: "0x01a4", + chainId: "0x1a4", rpcUrls: ["https://goerli.optimism.io"], faucet: "https://faucet.paradigm.xyz/", environment: "testnet",