Skip to content

Commit

Permalink
fix: adjust network names
Browse files Browse the repository at this point in the history
  • Loading branch information
salimtb committed Oct 29, 2024
1 parent e692641 commit 75ebf34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/controller-utils/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ export type BlockExplorerUrl =
(typeof BlockExplorerUrl)[keyof typeof BlockExplorerUrl];

export const NetworkNickname = {
[BuiltInNetworkName.Mainnet]: 'Mainnet',
[BuiltInNetworkName.Mainnet]: 'Ethereum Mainnet',
[BuiltInNetworkName.Goerli]: 'Goerli',
[BuiltInNetworkName.Sepolia]: 'Sepolia',
[BuiltInNetworkName.LineaGoerli]: 'Linea Goerli',
[BuiltInNetworkName.LineaSepolia]: 'Linea Sepolia',
[BuiltInNetworkName.LineaMainnet]: 'Linea Mainnet',
[BuiltInNetworkName.LineaMainnet]: 'Linea',
} as const satisfies Record<InfuraNetworkType, string>;
export type NetworkNickname =
(typeof NetworkNickname)[keyof typeof NetworkNickname];
Expand Down

0 comments on commit 75ebf34

Please sign in to comment.