Skip to content

Commit

Permalink
[AUTOMATED] Update constants.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-horizon committed Feb 24, 2025
1 parent cf899f2 commit 836ef0b
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion packages/network/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ export enum ChainId {
MOONBASE_ALPHA = 1287,

//MONAD_TESTNET
MONAD_TESTNET = 10143
MONAD_TESTNET = 10143,

//SOMNIA_TESTNET
SOMNIA_TESTNET = 50312
}

export const networks: Record<ChainId, NetworkMetadata> = {
Expand Down Expand Up @@ -1129,6 +1132,24 @@ export const networks: Record<ChainId, NetworkMetadata> = {
name: 'MON',
decimals: 18
}
},

[ChainId.SOMNIA_TESTNET]: {
chainId: ChainId.SOMNIA_TESTNET,
type: NetworkType.TESTNET,
name: 'somnia-testnet',
title: 'SOMNIA Testnet',
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.SOMNIA_TESTNET}.webp`,
testnet: true,
blockExplorer: {
name: 'SOMNIA Testnet Explorer',
rootUrl: 'https://somnia-testnet.socialscan.io/'
},
nativeToken: {
symbol: 'STT',
name: 'STT',
decimals: 18
}
}
}

Expand Down

0 comments on commit 836ef0b

Please sign in to comment.