Skip to content

Commit

Permalink
Merge pull request #198 from Define101/master
Browse files Browse the repository at this point in the history
add zkLink Nova
  • Loading branch information
Define101 authored May 21, 2024
2 parents 00182f4 + ee10013 commit 9336f5c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/utils/normalizeChain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,12 @@ export const chainCoingeckoIds = {
cmcId: null,
categories: ["EVM"],
},
"zkLink Nova": {
geckoId: "zklink",
symbol: "ZKL",
cmcId: null,
categories: ["EVM"],
},
} as {
[chain: string]: {
geckoId: string | null;
Expand Down Expand Up @@ -1172,6 +1178,8 @@ export function getChainDisplayName(normalizedChain: string, useNewChainNames: b
return "BSquared";
case "btr":
return "Bitlayer"
case "zklink":
return "zkLink Nova"
default:
return normalizedChain.slice(0, 1).toUpperCase() + normalizedChain.slice(1); // Capitalize first letter
}
Expand Down

0 comments on commit 9336f5c

Please sign in to comment.