Skip to content

Commit

Permalink
chore: add support for europa mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
rajkharvar committed Oct 15, 2024
1 parent 52a9aaa commit b94128a
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 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 @@ -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",
},
];

0 comments on commit b94128a

Please sign in to comment.