Skip to content

Commit

Permalink
Merge pull request #180 from Define101/master
Browse files Browse the repository at this point in the history
add bsquared, merlin and zkfair chain
  • Loading branch information
Define101 committed Apr 30, 2024
2 parents e5adb89 + 8dc3e76 commit a716c2a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/utils/normalizeChain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,24 @@ export const chainCoingeckoIds = {
categories: ["EVM", "Rollup"],
chainId: 34443,
},
Merlin: {
geckoId: null,
symbol: null,
cmcId: null,
categories: ["EVM"],
},
Zkfair: {
geckoId: null,
symbol: null,
cmcId: null,
categories: ["EVM"],
},
BSquared: {
geckoId: null,
symbol: null,
cmcId: null,
categories: ["EVM"],
},
} as {
[chain: string]: {
geckoId: string | null;
Expand Down Expand Up @@ -1140,6 +1158,12 @@ export function getChainDisplayName(normalizedChain: string, useNewChainNames: b
return "Sui";
case "solana":
return "Solana";
case "merlin":
return "Merlin";
case "zkfair":
return "Zkfair";
case "bsquared":
return "BSquared";
default:
return normalizedChain.slice(0, 1).toUpperCase() + normalizedChain.slice(1); // Capitalize first letter
}
Expand Down

0 comments on commit a716c2a

Please sign in to comment.