Skip to content

Commit

Permalink
fix: remove maticmum from list of supported networks
Browse files Browse the repository at this point in the history
  • Loading branch information
MinHtet-O committed May 8, 2024
1 parent 70eda26 commit 6a73415
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 15 additions & 16 deletions src/utils/constants/network.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
export const networks = [
"local",
"mainnet",
"matic",
"maticmum",
"amoy",
"sepolia",
"xdc",
"xdcapothem",
"hederatestnet",
"hederamainnet",
"stabilitytestnet",
"stability",
] as const;
'local',
'mainnet',
'matic',
'amoy',
'sepolia',
'xdc',
'xdcapothem',
'hederatestnet',
'hederamainnet',
'stabilitytestnet',
'stability',
] as const

export type networkName = (typeof networks)[number];
export type networkName = (typeof networks)[number]

export type networkType = "production" | "test" | "development";
export type networkType = 'production' | 'test' | 'development'

export type networkCurrency = "ETH" | "MATIC" | "XDC" | "HBAR" | "FREE";
export type networkCurrency = 'ETH' | 'MATIC' | 'XDC' | 'HBAR' | 'FREE'

0 comments on commit 6a73415

Please sign in to comment.