Skip to content

Commit 57fc0e0

Browse files
[AUTOMATED] Update constants.ts
1 parent f0a0f94 commit 57fc0e0

1 file changed

Lines changed: 31 additions & 10 deletions

File tree

packages/network/src/constants.ts

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

4545
// BSC
@@ -77,8 +77,8 @@ export enum ChainId {
7777
HOMEVERSE = 19011,
7878

7979
// Xai
80-
XAI = 660279, // network is deprecated
81-
XAI_SEPOLIA = 37714555429, // netwoprk is deprecated
80+
XAI = 660279,
81+
XAI_SEPOLIA = 37714555429,
8282

8383
// TELOS
8484
TELOS = 40,
@@ -93,8 +93,8 @@ export enum ChainId {
9393
APECHAIN_TESTNET = 33111,
9494

9595
// Blast
96-
BLAST = 81457, // network is deprecated
97-
BLAST_SEPOLIA = 168587773, // network is deprecated
96+
BLAST = 81457,
97+
BLAST_SEPOLIA = 168587773,
9898

9999
// Borne
100100
BORNE_TESTNET = 94984, // network is deprecated
@@ -108,7 +108,7 @@ export enum ChainId {
108108
SONEIUM = 1868,
109109

110110
// TOY Testnet
111-
TOY_TESTNET = 21000000, // network is deprecated
111+
TOY_TESTNET = 21000000,
112112

113113
// Immutable zkEVM
114114
IMMUTABLE_ZKEVM = 13371,
@@ -136,9 +136,9 @@ export enum ChainId {
136136
SOMNIA = 5031,
137137

138138
// INCENTIV TESTNET
139-
INCENTIV_TESTNET = 11690, // network is deprecated
140-
INCENTIV_TESTNET_V2 = 28802, // network is deprecated
141-
INCENTIV = 24101, // network is deprecated
139+
INCENTIV_TESTNET = 11690, // deprecated
140+
INCENTIV_TESTNET_V2 = 28802,
141+
INCENTIV = 24101,
142142

143143
// Katana
144144
KATANA = 747474,
@@ -156,7 +156,10 @@ export enum ChainId {
156156
SONIC = 146,
157157

158158
// BERACHAIN
159-
BERACHAIN = 80094
159+
BERACHAIN = 80094,
160+
161+
// TEMPO
162+
TEMPO = 4217
160163
}
161164

162165
export const networks: Record<ChainId, NetworkMetadata> = {
@@ -1278,6 +1281,24 @@ export const networks: Record<ChainId, NetworkMetadata> = {
12781281
name: 'Berachain',
12791282
decimals: 18
12801283
}
1284+
},
1285+
1286+
[ChainId.TEMPO]: {
1287+
chainId: ChainId.TEMPO,
1288+
type: NetworkType.MAINNET,
1289+
name: 'tempo',
1290+
title: 'Tempo',
1291+
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.TEMPO}.webp`,
1292+
testnet: false,
1293+
blockExplorer: {
1294+
name: 'Tempo',
1295+
rootUrl: 'https://explore.tempo.xyz/'
1296+
},
1297+
nativeToken: {
1298+
symbol: 'USD',
1299+
name: 'USD',
1300+
decimals: 18
1301+
}
12811302
}
12821303
}
12831304

0 commit comments

Comments
 (0)