From 52a9aaa5d03ab175e0b89fc0051715edc3a9781e Mon Sep 17 00:00:00 2001 From: rajkharvar Date: Mon, 12 Aug 2024 22:05:09 +0530 Subject: [PATCH 1/2] chore: add geth network --- frontend/src/utils/constants.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/utils/constants.ts b/frontend/src/utils/constants.ts index 1357351..0ca4024 100644 --- a/frontend/src/utils/constants.ts +++ b/frontend/src/utils/constants.ts @@ -51,4 +51,10 @@ export const supportedChains: ChainInfo[] = [ blockExplorer: "https://sepolia-optimism.etherscan.io/", name: "optimism sepolia", }, + { + chainId: 837567383277, + disperseAddress: "0xf5E9C9e246754700fCeF2e6E55E4Fcb5cF3DB078", + blockExplorer: "https://explorer.metalayer.net/", + name: "private Geth", + }, ]; From b94128a9abd8d15ed0630e9904035aecdb04fd9a Mon Sep 17 00:00:00 2001 From: rajkharvar Date: Tue, 15 Oct 2024 10:54:08 +0530 Subject: [PATCH 2/2] chore: add support for europa mainnet --- frontend/src/utils/constants.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/frontend/src/utils/constants.ts b/frontend/src/utils/constants.ts index 0ca4024..c0e818f 100644 --- a/frontend/src/utils/constants.ts +++ b/frontend/src/utils/constants.ts @@ -1,8 +1,8 @@ export type ChainInfo = { - chainId: number, - disperseAddress: string, - blockExplorer: string, - name: string, + chainId: number; + disperseAddress: string; + blockExplorer: string; + name: string; }; export const supportedChains: ChainInfo[] = [ @@ -57,4 +57,10 @@ export const supportedChains: ChainInfo[] = [ blockExplorer: "https://explorer.metalayer.net/", name: "private Geth", }, + { + chainId: 2046399126, + disperseAddress: "0x21D69Fa152Daad57CF1B841442F4C34A6f14d7cc", + blockExplorer: "https://elated-tan-skat.explorer.mainnet.skalenodes.com/", + name: "Europa Liquidity Hub", + }, ];