Skip to content

Commit ab36ba3

Browse files
[AUTOMATED] Update constants.ts
1 parent 73813bd commit ab36ba3

File tree

1 file changed

+43
-1
lines changed

1 file changed

+43
-1
lines changed

packages/network/src/constants.ts

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,13 @@ export enum ChainId {
147147

148148
//SEI
149149
SEI = 1329,
150-
SEI_TESTNET = 1328
150+
SEI_TESTNET = 1328,
151+
152+
// Katana
153+
KATANA = 747474,
154+
155+
// SANDBOX
156+
SANDBOX_TESTNET = 6252
151157
}
152158

153159
export const networks: Record<ChainId, NetworkMetadata> = {
@@ -1211,6 +1217,42 @@ export const networks: Record<ChainId, NetworkMetadata> = {
12111217
name: 'SOMI',
12121218
decimals: 18
12131219
}
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+
}
12141256
}
12151257
}
12161258

0 commit comments

Comments
 (0)