We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e51cff commit b6e9637Copy full SHA for b6e9637
core/base/src/constants/chains.ts
@@ -53,7 +53,6 @@ const chainIdAndChainEntries = [
53
[ 46, "Ink" ],
54
[ 47, "HyperEVM" ],
55
[ 48, "Monad" ],
56
- [ -1, "Hyperliquid" ],
57
[ 3104, "Wormchain" ],
58
[ 4000, "Cosmoshub" ],
59
[ 4001, "Evmos" ],
@@ -71,6 +70,9 @@ const chainIdAndChainEntries = [
71
70
[10005, "OptimismSepolia"],
72
[10006, "Holesky" ],
73
[10007, "PolygonSepolia" ],
+ // Hack: 50000 is a fake chain ID
74
+ // Anticipating Hyperliquid chain
75
+ [50000, "Hyperliquid" ],
76
] as const satisfies MapLevel<number, string>;
77
78
export const [chainIds, chains] = zip(chainIdAndChainEntries);
0 commit comments