From d7880ef9b7508aec13ac82fde27b26bb620a1c77 Mon Sep 17 00:00:00 2001 From: Andrei O Date: Sun, 12 Jan 2025 01:35:01 +0200 Subject: [PATCH] chore: added celo to network templates --- src/utils/networks.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/utils/networks.ts b/src/utils/networks.ts index b81dc7f..d679718 100644 --- a/src/utils/networks.ts +++ b/src/utils/networks.ts @@ -92,6 +92,15 @@ export const mainNets: {[key: number]: Network} = { symbol: 'DEGEN', priceId: 'degen' }, + 42220: { + name: 'Celo Mainenet', + rpc: 'https://forno.celo.org', + chainId: 42220, + explorer: 'https://celoscan.io/', + icon: 'celo.webp', + symbol: 'CELO', + priceId: 'celo' + } } export const testNets = { @@ -166,6 +175,14 @@ export const testNets = { explorer: 'https://testnet.cyberscan.co/', icon: 'cyber_t.webp' }, + 42220: { + name: 'Celo Mainenet', + rpc: 'https://forno.celo.org', + chainId: 42220, + explorer: 'https://celoscan.io/', + icon: 'celo.webp', + symbol: 'CELO', + } } export const allTemplateNets = {...mainNets, ...testNets}