From 52960be0caf84a8a26cf5b975dd1bb6930275f17 Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Thu, 27 Oct 2022 12:18:04 -0700 Subject: [PATCH] fix: use celo chain name (#298) --- src/constants/chains.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants/chains.ts b/src/constants/chains.ts index 4b0e931e2..cf2e5ac3e 100644 --- a/src/constants/chains.ts +++ b/src/constants/chains.ts @@ -49,8 +49,8 @@ export const CHAIN_NAMES_TO_IDS: { [chainName: string]: SupportedChainId } = { [ChainName.ARBITRUM_RINKEBY]: SupportedChainId.ARBITRUM_RINKEBY, [ChainName.OPTIMISM]: SupportedChainId.OPTIMISM, [ChainName.OPTIMISTIC_KOVAN]: SupportedChainId.OPTIMISTIC_KOVAN, - [SupportedChainId.CELO]: SupportedChainId.CELO, - [SupportedChainId.CELO_ALFAJORES]: SupportedChainId.CELO_ALFAJORES, + [ChainName.CELO]: SupportedChainId.CELO, + [ChainName.CELO_ALFAJORES]: SupportedChainId.CELO_ALFAJORES, } /**