Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 36 additions & 10 deletions packages/network/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export enum ChainId {

// Xai
XAI = 660279, // network is deprecated
XAI_SEPOLIA = 37714555429, // netwoprk is deprecated
XAI_SEPOLIA = 37714555429, // network is deprecated

// TELOS
TELOS = 40,
Expand Down Expand Up @@ -108,7 +108,7 @@ export enum ChainId {
SONEIUM = 1868,

// TOY Testnet
TOY_TESTNET = 21000000, // network is deprecated
TOY_TESTNET = 21000000,

// Immutable zkEVM
IMMUTABLE_ZKEVM = 13371,
Expand Down Expand Up @@ -137,8 +137,8 @@ export enum ChainId {

// INCENTIV TESTNET
INCENTIV_TESTNET = 11690, // network is deprecated
INCENTIV_TESTNET_V2 = 28802, // network is deprecated
INCENTIV = 24101, // network is deprecated
INCENTIV_TESTNET_V2 = 28802,
INCENTIV = 24101,

// Katana
KATANA = 747474,
Expand All @@ -156,7 +156,10 @@ export enum ChainId {
SONIC = 146,

// BERACHAIN
BERACHAIN = 80094
BERACHAIN = 80094,

// TEMPO
TEMPO = 4217
}

export const networks: Record<ChainId, NetworkMetadata> = {
Expand Down Expand Up @@ -334,7 +337,8 @@ export const networks: Record<ChainId, NetworkMetadata> = {
symbol: 'ETH',
name: 'Ether',
decimals: 18
}
},
deprecated: true
},
[ChainId.BSC]: {
chainId: ChainId.BSC,
Expand Down Expand Up @@ -652,7 +656,8 @@ export const networks: Record<ChainId, NetworkMetadata> = {
symbol: 'XAI',
name: 'XAI',
decimals: 18
}
},
deprecated: true
},
[ChainId.XAI_SEPOLIA]: {
chainId: ChainId.XAI_SEPOLIA,
Expand All @@ -669,7 +674,8 @@ export const networks: Record<ChainId, NetworkMetadata> = {
symbol: 'sXAI',
name: 'Sepolia XAI',
decimals: 18
}
},
deprecated: true
},
[ChainId.B3]: {
chainId: ChainId.B3,
Expand Down Expand Up @@ -753,7 +759,8 @@ export const networks: Record<ChainId, NetworkMetadata> = {
symbol: 'ETH',
name: 'Ether',
decimals: 18
}
},
deprecated: true
},
[ChainId.BLAST_SEPOLIA]: {
chainId: ChainId.BLAST_SEPOLIA,
Expand All @@ -770,7 +777,8 @@ export const networks: Record<ChainId, NetworkMetadata> = {
symbol: 'ETH',
name: 'Ether',
decimals: 18
}
},
deprecated: true
},
[ChainId.TELOS]: {
chainId: ChainId.TELOS,
Expand Down Expand Up @@ -1278,6 +1286,24 @@ export const networks: Record<ChainId, NetworkMetadata> = {
name: 'Berachain',
decimals: 18
}
},

[ChainId.TEMPO]: {
chainId: ChainId.TEMPO,
type: NetworkType.MAINNET,
name: 'tempo',
title: 'Tempo',
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.TEMPO}.webp`,
testnet: false,
blockExplorer: {
name: 'Tempo',
rootUrl: 'https://explore.tempo.xyz/'
},
nativeToken: {
symbol: 'USD',
name: 'USD',
decimals: 18
}
}
}

Expand Down
Loading