Skip to content

Commit 46c7ae3

Browse files
authored
Add Incentiv Testnet (#762)
1 parent 98b71c4 commit 46c7ae3

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

packages/network/networkNames.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ You can use this file as a reference to look up the correct network name slug a
4242
| Avalanche Testnet | 43113 | avalanche-testnet |
4343
| Avalanche | 43114 | avalanche |
4444
| Somnia Testnet | 50312 | somnia-testnet |
45+
| Incentiv Testnet | 11690 | incentiv-testnet |
4546
| LAOS Sigma Testnet | 62850 | laos-sigma-testnet |
4647
| Polygon Amoy | 80002 | amoy |
4748
| Blast | 81457 | blast |

packages/network/src/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,5 +141,6 @@ export const allNetworks = validateAndSortNetworks([
141141
createNetworkConfig(ChainId.ETHERLINK_TESTNET),
142142
createNetworkConfig(ChainId.SOMNIA_TESTNET),
143143
createNetworkConfig(ChainId.MONAD_TESTNET),
144+
createNetworkConfig(ChainId.INCENTIV_TESTNET),
144145
...hardhatNetworks
145146
])

packages/network/src/constants.ts

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ export enum ChainId {
139139

140140
//SOMNIA_TESTNET
141141
SOMNIA_TESTNET = 50312,
142+
143+
// INCENTIV TESTNET
144+
INCENTIV_TESTNET = 11690,
142145
}
143146

144147
export const networks: Record<ChainId, NetworkMetadata> = {
@@ -1095,7 +1098,6 @@ export const networks: Record<ChainId, NetworkMetadata> = {
10951098
decimals: 18
10961099
}
10971100
},
1098-
10991101
[ChainId.SOMNIA_TESTNET]: {
11001102
chainId: ChainId.SOMNIA_TESTNET,
11011103
type: NetworkType.TESTNET,
@@ -1112,6 +1114,23 @@ export const networks: Record<ChainId, NetworkMetadata> = {
11121114
name: 'STT',
11131115
decimals: 18
11141116
}
1117+
},
1118+
[ChainId.INCENTIV_TESTNET]: {
1119+
chainId: ChainId.INCENTIV_TESTNET,
1120+
type: NetworkType.TESTNET,
1121+
name: 'incentiv-testnet',
1122+
title: 'Incentiv Testnet',
1123+
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.INCENTIV_TESTNET}.webp`,
1124+
testnet: true,
1125+
blockExplorer: {
1126+
name: 'Incentiv Testnet Explorer',
1127+
rootUrl: 'https://explorer.testnet.incentiv.net/',
1128+
},
1129+
nativeToken: {
1130+
symbol: 'CENT',
1131+
name: 'CENT',
1132+
decimals: 18,
1133+
},
11151134
}
11161135
}
11171136

0 commit comments

Comments
 (0)