File tree Expand file tree Collapse file tree 1 file changed +41
-1
lines changed Expand file tree Collapse file tree 1 file changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,11 @@ export enum ChainId {
141
141
SOMNIA_TESTNET = 50312 ,
142
142
143
143
// INCENTIV TESTNET
144
- INCENTIV_TESTNET = 11690
144
+ INCENTIV_TESTNET = 11690 ,
145
+
146
+ //SEI
147
+ SEI = 1329 ,
148
+ SEI_TESTNET = 1328
145
149
}
146
150
147
151
export const networks : Record < ChainId , NetworkMetadata > = {
@@ -1133,6 +1137,42 @@ export const networks: Record<ChainId, NetworkMetadata> = {
1133
1137
name : 'CENT' ,
1134
1138
decimals : 18
1135
1139
}
1140
+ } ,
1141
+
1142
+ [ ChainId . SEI ] : {
1143
+ chainId : ChainId . SEI ,
1144
+ type : NetworkType . MAINNET ,
1145
+ name : 'sei' ,
1146
+ title : 'Sei' ,
1147
+ logoURI : `https://assets.sequence.info/images/networks/medium/${ ChainId . SEI } .webp` ,
1148
+ testnet : false ,
1149
+ blockExplorer : {
1150
+ name : 'SEI Explorer' ,
1151
+ rootUrl : 'https://seitrace.com/?chain=pacific-1'
1152
+ } ,
1153
+ nativeToken : {
1154
+ symbol : 'SEI' ,
1155
+ name : 'SEI' ,
1156
+ decimals : 18
1157
+ }
1158
+ } ,
1159
+
1160
+ [ ChainId . SEI_TESTNET ] : {
1161
+ chainId : ChainId . SEI_TESTNET ,
1162
+ type : NetworkType . TESTNET ,
1163
+ name : 'sei-testnet' ,
1164
+ title : 'Sei Testnet' ,
1165
+ logoURI : `https://assets.sequence.info/images/networks/medium/${ ChainId . SEI_TESTNET } .webp` ,
1166
+ testnet : true ,
1167
+ blockExplorer : {
1168
+ name : 'Sei Testnet Explorer' ,
1169
+ rootUrl : 'https://seitrace.com/?chain=atlantic-2'
1170
+ } ,
1171
+ nativeToken : {
1172
+ symbol : 'SEI' ,
1173
+ name : 'SEI' ,
1174
+ decimals : 18
1175
+ }
1136
1176
}
1137
1177
}
1138
1178
You can’t perform that action at this time.
0 commit comments