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 {
141141 SOMNIA_TESTNET = 50312 ,
142142
143143 // INCENTIV TESTNET
144- INCENTIV_TESTNET = 11690
144+ INCENTIV_TESTNET = 11690 ,
145+
146+ //SEI
147+ SEI = 1329 ,
148+ SEI_TESTNET = 1328
145149}
146150
147151export const networks : Record < ChainId , NetworkMetadata > = {
@@ -1133,6 +1137,42 @@ export const networks: Record<ChainId, NetworkMetadata> = {
11331137 name : 'CENT' ,
11341138 decimals : 18
11351139 }
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+ }
11361176 }
11371177}
11381178
You can’t perform that action at this time.
0 commit comments