Skip to content

Commit

Permalink
Merge pull request #36 from rajkharvar/geth-network
Browse files Browse the repository at this point in the history
chore: add geth network and europa mainnet
  • Loading branch information
rajkharvar authored Oct 15, 2024
2 parents 5fae33c + b94128a commit f5cb57c
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions frontend/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -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[] = [
Expand Down Expand Up @@ -51,4 +51,16 @@ 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",
},
{
chainId: 2046399126,
disperseAddress: "0x21D69Fa152Daad57CF1B841442F4C34A6f14d7cc",
blockExplorer: "https://elated-tan-skat.explorer.mainnet.skalenodes.com/",
name: "Europa Liquidity Hub",
},
];

0 comments on commit f5cb57c

Please sign in to comment.