Skip to content

Commit b9f51f0

Browse files
[AUTOMATED] Update constants.ts
1 parent 734ed2b commit b9f51f0

File tree

1 file changed

+39
-1
lines changed

1 file changed

+39
-1
lines changed

packages/network/src/constants.ts

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,13 @@ export enum ChainId {
137137
//MONAD_TESTNET
138138
MONAD_TESTNET = 10143,
139139

140-
//SOMNIA_TESTNET
140+
//SOMNIA
141141
SOMNIA_TESTNET = 50312,
142+
SOMNIA = 5031,
142143

143144
// INCENTIV TESTNET
144145
INCENTIV_TESTNET = 11690,
146+
INCENTIV_TESTNET_V2 = 28802,
145147

146148
//SEI
147149
SEI = 1329,
@@ -1139,6 +1141,24 @@ export const networks: Record<ChainId, NetworkMetadata> = {
11391141
}
11401142
},
11411143

1144+
[ChainId.INCENTIV_TESTNET_V2]: {
1145+
chainId: ChainId.INCENTIV_TESTNET_V2,
1146+
type: NetworkType.TESTNET,
1147+
name: 'incentiv-testnet-v2',
1148+
title: 'Incentiv Testnet v2',
1149+
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.INCENTIV_TESTNET_V2}.webp`,
1150+
testnet: true,
1151+
blockExplorer: {
1152+
name: 'Incentiv Testnet Explorer v2',
1153+
rootUrl: 'https://explorer.testnet.incentiv.net/'
1154+
},
1155+
nativeToken: {
1156+
symbol: 'TCENT',
1157+
name: 'TCENT',
1158+
decimals: 18
1159+
}
1160+
},
1161+
11421162
[ChainId.SEI]: {
11431163
chainId: ChainId.SEI,
11441164
type: NetworkType.MAINNET,
@@ -1173,6 +1193,24 @@ export const networks: Record<ChainId, NetworkMetadata> = {
11731193
name: 'SEI',
11741194
decimals: 18
11751195
}
1196+
},
1197+
1198+
[ChainId.SOMNIA]: {
1199+
chainId: ChainId.SOMNIA,
1200+
type: NetworkType.MAINNET,
1201+
name: 'somnia',
1202+
title: 'Somnia',
1203+
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.SOMNIA}.webp`,
1204+
testnet: false,
1205+
blockExplorer: {
1206+
name: 'Somnia Explorer',
1207+
rootUrl: 'https://mainnet.somnia.w3us.site/'
1208+
},
1209+
nativeToken: {
1210+
symbol: 'SOMI',
1211+
name: 'SOMI',
1212+
decimals: 18
1213+
}
11761214
}
11771215
}
11781216

0 commit comments

Comments
 (0)