File tree Expand file tree Collapse file tree 1 file changed +43
-1
lines changed Expand file tree Collapse file tree 1 file changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,13 @@ export enum ChainId {
147
147
148
148
//SEI
149
149
SEI = 1329 ,
150
- SEI_TESTNET = 1328
150
+ SEI_TESTNET = 1328 ,
151
+
152
+ // Katana
153
+ KATANA = 747474 ,
154
+
155
+ // SANDBOX
156
+ SANDBOX_TESTNET = 6252
151
157
}
152
158
153
159
export const networks : Record < ChainId , NetworkMetadata > = {
@@ -1211,6 +1217,42 @@ export const networks: Record<ChainId, NetworkMetadata> = {
1211
1217
name : 'SOMI' ,
1212
1218
decimals : 18
1213
1219
}
1220
+ } ,
1221
+
1222
+ [ ChainId . KATANA ] : {
1223
+ chainId : ChainId . KATANA ,
1224
+ type : NetworkType . MAINNET ,
1225
+ name : 'katana' ,
1226
+ title : 'Katana' ,
1227
+ logoURI : `https://assets.sequence.info/images/networks/medium/${ ChainId . KATANA } .webp` ,
1228
+ testnet : false ,
1229
+ blockExplorer : {
1230
+ name : 'Katana' ,
1231
+ rootUrl : 'https://katanascan.com/'
1232
+ } ,
1233
+ nativeToken : {
1234
+ symbol : 'ETH' ,
1235
+ name : 'ETH' ,
1236
+ decimals : 18
1237
+ }
1238
+ } ,
1239
+
1240
+ [ ChainId . SANDBOX_TESTNET ] : {
1241
+ chainId : ChainId . SANDBOX_TESTNET ,
1242
+ type : NetworkType . TESTNET ,
1243
+ name : 'sandbox-testnet' ,
1244
+ title : 'Sandbox testnet' ,
1245
+ logoURI : `https://assets.sequence.info/images/networks/medium/${ ChainId . SANDBOX_TESTNET } .webp` ,
1246
+ testnet : true ,
1247
+ blockExplorer : {
1248
+ name : 'Sandbox testnet' ,
1249
+ rootUrl : 'https://sandbox-testnet.explorer.caldera.xyz'
1250
+ } ,
1251
+ nativeToken : {
1252
+ symbol : 'SAND' ,
1253
+ name : 'SAND' ,
1254
+ decimals : 18
1255
+ }
1214
1256
}
1215
1257
}
1216
1258
You can’t perform that action at this time.
0 commit comments