Skip to content

Commit

Permalink
feat: disable some element chains
Browse files Browse the repository at this point in the history
  • Loading branch information
ipeleg committed Mar 14, 2024
1 parent ae6e864 commit 9c3f72f
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions src/utils/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,30 +56,30 @@ export enum SaleKind {
export class Element {
public getChainName() {
switch (config.chainId) {
case 1:
return "eth";
case 10:
return "optimism";
// case 1:
// return "eth";
// case 10:
// return "optimism";
case 56:
return "bsc";
case 137:
return "polygon";
// case 204:
// return "opbnb";
// case 324:
// return "zksync";
// case 137:
// return "polygon";
case 204:
return "opbnb";
case 324:
return "zksync";
// case 8453:
// return "base";
// case 42161:
// return "arbitrum";
// case 43114:
// return "avalanche";
// case 59144:
// return "linea";
// case 81457:
// return "blast";
// case 534352:
// return "scroll";
case 42161:
return "arbitrum";
case 43114:
return "avalanche";
case 59144:
return "linea";
case 81457:
return "blast";
case 534352:
return "scroll";
default:
return undefined;
}
Expand Down

0 comments on commit 9c3f72f

Please sign in to comment.