Skip to content

Commit 7479be9

Browse files
[AUTOMATED] Update constants.ts
1 parent ea1de4e commit 7479be9

1 file changed

Lines changed: 41 additions & 187 deletions

File tree

packages/network/src/constants.ts

Lines changed: 41 additions & 187 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ export enum ChainId {
3939
// Polygon
4040
POLYGON = 137,
4141
POLYGON_MUMBAI = 80001, // network is deprecated
42-
POLYGON_ZKEVM = 1101, // network is deprecated
4342
POLYGON_AMOY = 80002,
4443

4544
// BSC
@@ -77,8 +76,6 @@ export enum ChainId {
7776
HOMEVERSE = 19011,
7877

7978
// Xai
80-
XAI = 660279, // network is deprecated
81-
XAI_SEPOLIA = 37714555429, // network is deprecated
8279

8380
// TELOS
8481
TELOS = 40,
@@ -93,8 +90,6 @@ export enum ChainId {
9390
APECHAIN_TESTNET = 33111,
9491

9592
// Blast
96-
BLAST = 81457, // network is deprecated
97-
BLAST_SEPOLIA = 168587773, // network is deprecated
9893

9994
// Borne
10095
BORNE_TESTNET = 94984, // network is deprecated
@@ -108,7 +103,6 @@ export enum ChainId {
108103
SONEIUM = 1868,
109104

110105
// TOY Testnet
111-
TOY_TESTNET = 21000000,
112106

113107
// Immutable zkEVM
114108
IMMUTABLE_ZKEVM = 13371,
@@ -127,8 +121,7 @@ export enum ChainId {
127121
MOONBEAM = 1284,
128122
MOONBASE_ALPHA = 1287,
129123

130-
// MONAD_TESTNET
131-
MONAD_TESTNET = 10143,
124+
// MONAD
132125
MONAD = 143,
133126

134127
// SOMNIA
@@ -137,14 +130,11 @@ export enum ChainId {
137130

138131
// INCENTIV TESTNET
139132
INCENTIV_TESTNET = 11690, // network is deprecated
140-
INCENTIV_TESTNET_V2 = 28802,
141-
INCENTIV = 24101,
142133

143134
// Katana
144135
KATANA = 747474,
145136

146137
// SANDBOX
147-
SANDBOX_TESTNET = 6252,
148138

149139
// ARC
150140
ARC_TESTNET = 5042002,
@@ -159,7 +149,13 @@ export enum ChainId {
159149
BERACHAIN = 80094,
160150

161151
// TEMPO
162-
TEMPO = 4217
152+
TEMPO = 4217,
153+
154+
// ARC
155+
ARC = 5042,
156+
157+
// SKALE BASE TESTNET
158+
SKALE_BASE_TESTNET = 324705682
163159
}
164160

165161
export const networks: Record<ChainId, NetworkMetadata> = {
@@ -323,23 +319,6 @@ export const networks: Record<ChainId, NetworkMetadata> = {
323319
decimals: 18
324320
}
325321
},
326-
[ChainId.POLYGON_ZKEVM]: {
327-
chainId: ChainId.POLYGON_ZKEVM,
328-
type: NetworkType.MAINNET,
329-
name: 'polygon-zkevm',
330-
title: 'Polygon zkEVM',
331-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.POLYGON_ZKEVM}.webp`,
332-
blockExplorer: {
333-
name: 'Polygonscan (zkEVM)',
334-
rootUrl: 'https://zkevm.polygonscan.com/'
335-
},
336-
nativeToken: {
337-
symbol: 'ETH',
338-
name: 'Ether',
339-
decimals: 18
340-
},
341-
deprecated: true
342-
},
343322
[ChainId.BSC]: {
344323
chainId: ChainId.BSC,
345324
type: NetworkType.MAINNET,
@@ -642,41 +621,6 @@ export const networks: Record<ChainId, NetworkMetadata> = {
642621
decimals: 18
643622
}
644623
},
645-
[ChainId.XAI]: {
646-
chainId: ChainId.XAI,
647-
type: NetworkType.MAINNET,
648-
name: 'xai',
649-
title: 'Xai',
650-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.XAI}.webp`,
651-
blockExplorer: {
652-
name: 'Xai Explorer',
653-
rootUrl: 'https://explorer.xai-chain.net/'
654-
},
655-
nativeToken: {
656-
symbol: 'XAI',
657-
name: 'XAI',
658-
decimals: 18
659-
},
660-
deprecated: true
661-
},
662-
[ChainId.XAI_SEPOLIA]: {
663-
chainId: ChainId.XAI_SEPOLIA,
664-
type: NetworkType.TESTNET,
665-
name: 'xai-sepolia',
666-
title: 'Xai Sepolia',
667-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.XAI_SEPOLIA}.webp`,
668-
testnet: true,
669-
blockExplorer: {
670-
name: 'Xai Sepolia Explorer',
671-
rootUrl: 'https://testnet-explorer-v2.xai-chain.net/'
672-
},
673-
nativeToken: {
674-
symbol: 'sXAI',
675-
name: 'Sepolia XAI',
676-
decimals: 18
677-
},
678-
deprecated: true
679-
},
680624
[ChainId.B3]: {
681625
chainId: ChainId.B3,
682626
type: NetworkType.MAINNET,
@@ -745,41 +689,6 @@ export const networks: Record<ChainId, NetworkMetadata> = {
745689
decimals: 18
746690
}
747691
},
748-
[ChainId.BLAST]: {
749-
chainId: ChainId.BLAST,
750-
type: NetworkType.MAINNET,
751-
name: 'blast',
752-
title: 'Blast',
753-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.BLAST}.webp`,
754-
blockExplorer: {
755-
name: 'Blast Explorer',
756-
rootUrl: 'https://blastscan.io/'
757-
},
758-
nativeToken: {
759-
symbol: 'ETH',
760-
name: 'Ether',
761-
decimals: 18
762-
},
763-
deprecated: true
764-
},
765-
[ChainId.BLAST_SEPOLIA]: {
766-
chainId: ChainId.BLAST_SEPOLIA,
767-
type: NetworkType.TESTNET,
768-
name: 'blast-sepolia',
769-
title: 'Blast Sepolia',
770-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.BLAST_SEPOLIA}.webp`,
771-
testnet: true,
772-
blockExplorer: {
773-
name: 'Blast Sepolia Explorer',
774-
rootUrl: 'https://sepolia.blastexplorer.io/'
775-
},
776-
nativeToken: {
777-
symbol: 'ETH',
778-
name: 'Ether',
779-
decimals: 18
780-
},
781-
deprecated: true
782-
},
783692
[ChainId.TELOS]: {
784693
chainId: ChainId.TELOS,
785694
type: NetworkType.MAINNET,
@@ -898,23 +807,6 @@ export const networks: Record<ChainId, NetworkMetadata> = {
898807
decimals: 18
899808
}
900809
},
901-
[ChainId.TOY_TESTNET]: {
902-
chainId: ChainId.TOY_TESTNET,
903-
type: NetworkType.TESTNET,
904-
name: 'toy-testnet',
905-
title: 'TOY (Testnet)',
906-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.TOY_TESTNET}.webp`,
907-
testnet: true,
908-
blockExplorer: {
909-
name: 'TOY Testnet Explorer',
910-
rootUrl: 'https://toy-chain-testnet.explorer.caldera.xyz/'
911-
},
912-
nativeToken: {
913-
symbol: 'TOY',
914-
name: 'TOY',
915-
decimals: 18
916-
}
917-
},
918810
[ChainId.IMMUTABLE_ZKEVM]: {
919811
chainId: ChainId.IMMUTABLE_ZKEVM,
920812
type: NetworkType.MAINNET,
@@ -1054,23 +946,7 @@ export const networks: Record<ChainId, NetworkMetadata> = {
1054946
decimals: 18
1055947
}
1056948
},
1057-
[ChainId.MONAD_TESTNET]: {
1058-
chainId: ChainId.MONAD_TESTNET,
1059-
type: NetworkType.TESTNET,
1060-
name: 'monad-testnet',
1061-
title: 'Monad Testnet',
1062-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.MONAD_TESTNET}.webp`,
1063-
testnet: true,
1064-
blockExplorer: {
1065-
name: 'Monad Testnet Explorer',
1066-
rootUrl: 'https://testnet.monadexplorer.com/'
1067-
},
1068-
nativeToken: {
1069-
symbol: 'MON',
1070-
name: 'MON',
1071-
decimals: 18
1072-
}
1073-
},
949+
1074950
[ChainId.MONAD]: {
1075951
chainId: ChainId.MONAD,
1076952
type: NetworkType.MAINNET,
@@ -1126,42 +1002,6 @@ export const networks: Record<ChainId, NetworkMetadata> = {
11261002
deprecated: true
11271003
},
11281004

1129-
[ChainId.INCENTIV_TESTNET_V2]: {
1130-
chainId: ChainId.INCENTIV_TESTNET_V2,
1131-
type: NetworkType.TESTNET,
1132-
name: 'incentiv-testnet-v2',
1133-
title: 'Incentiv Testnet v2',
1134-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.INCENTIV_TESTNET_V2}.webp`,
1135-
testnet: true,
1136-
blockExplorer: {
1137-
name: 'Incentiv Testnet Explorer v2',
1138-
rootUrl: 'https://explorer-testnet.incentiv.io/'
1139-
},
1140-
nativeToken: {
1141-
symbol: 'TCENT',
1142-
name: 'TCENT',
1143-
decimals: 18
1144-
}
1145-
},
1146-
1147-
[ChainId.INCENTIV]: {
1148-
chainId: ChainId.INCENTIV,
1149-
type: NetworkType.MAINNET,
1150-
name: 'incentiv',
1151-
title: 'Incentiv',
1152-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.INCENTIV}.webp`,
1153-
testnet: true,
1154-
blockExplorer: {
1155-
name: 'Incentiv',
1156-
rootUrl: 'https://explorer.incentiv.io/'
1157-
},
1158-
nativeToken: {
1159-
symbol: 'CENT',
1160-
name: 'CENT',
1161-
decimals: 18
1162-
}
1163-
},
1164-
11651005
[ChainId.SOMNIA]: {
11661006
chainId: ChainId.SOMNIA,
11671007
type: NetworkType.MAINNET,
@@ -1198,24 +1038,6 @@ export const networks: Record<ChainId, NetworkMetadata> = {
11981038
}
11991039
},
12001040

1201-
[ChainId.SANDBOX_TESTNET]: {
1202-
chainId: ChainId.SANDBOX_TESTNET,
1203-
type: NetworkType.TESTNET,
1204-
name: 'sandbox-testnet',
1205-
title: 'Sandbox Testnet',
1206-
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.SANDBOX_TESTNET}.webp`,
1207-
testnet: true,
1208-
blockExplorer: {
1209-
name: 'Sandbox Testnet Explorer',
1210-
rootUrl: 'https://sandbox-testnet.explorer.caldera.xyz/'
1211-
},
1212-
nativeToken: {
1213-
symbol: 'SAND',
1214-
name: 'SAND',
1215-
decimals: 18
1216-
}
1217-
},
1218-
12191041
[ChainId.ARC_TESTNET]: {
12201042
chainId: ChainId.ARC_TESTNET,
12211043
type: NetworkType.TESTNET,
@@ -1304,6 +1126,38 @@ export const networks: Record<ChainId, NetworkMetadata> = {
13041126
name: 'USD',
13051127
decimals: 18
13061128
}
1129+
},
1130+
1131+
[ChainId.SKALE_BASE_TESTNET]: {
1132+
chainId: ChainId.SKALE_BASE_TESTNET,
1133+
type: NetworkType.TESTNET,
1134+
name: 'skale-base-testnet',
1135+
title: 'Skale Base Testnet',
1136+
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.SKALE_BASE_TESTNET}.webp`,
1137+
testnet: true,
1138+
blockExplorer: {
1139+
name: 'Skale Base Testnet',
1140+
rootUrl: 'https://base-sepolia-testnet-explorer.skalenodes.com/'
1141+
},
1142+
nativeToken: {
1143+
symbol: 'sFUEL',
1144+
name: 'sFUEL',
1145+
decimals: 18
1146+
}
1147+
},
1148+
1149+
[ChainId.ARC]: {
1150+
chainId: ChainId.ARC,
1151+
type: NetworkType.MAINNET,
1152+
name: 'arc',
1153+
title: 'ARC',
1154+
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.ARC}.webp`,
1155+
testnet: false,
1156+
nativeToken: {
1157+
symbol: 'USDC',
1158+
name: 'USDC',
1159+
decimals: 18
1160+
}
13071161
}
13081162
}
13091163

0 commit comments

Comments
 (0)