Skip to content

Commit

Permalink
[AUTOMATED] Update constants.ts (#681)
Browse files Browse the repository at this point in the history
* [AUTOMATED] Update constants.ts

* [AUTOMATED] Update constants.ts

---------

Co-authored-by: andres-horizon <[email protected]>
  • Loading branch information
0xsequence-bot and andres-horizon authored Feb 26, 2025
1 parent cd90569 commit a181b69
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion packages/network/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,13 @@ export enum ChainId {

// MOONBEAM
MOONBEAM = 1284,
MOONBASE_ALPHA = 1287
MOONBASE_ALPHA = 1287,

//MONAD_TESTNET
MONAD_TESTNET = 10143,

//SOMNIA_TESTNET
SOMNIA_TESTNET = 50312
}

export const networks: Record<ChainId, NetworkMetadata> = {
Expand Down Expand Up @@ -1109,6 +1115,41 @@ export const networks: Record<ChainId, NetworkMetadata> = {
name: 'Tez',
decimals: 18
}
},
[ChainId.MONAD_TESTNET]: {
chainId: ChainId.MONAD_TESTNET,
type: NetworkType.TESTNET,
name: 'monad-testnet',
title: 'MONAD Testnet',
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.MONAD_TESTNET}.webp`,
testnet: true,
blockExplorer: {
name: 'MONAD Testnet Explorer',
rootUrl: 'https://testnet.monadexplorer.com/'
},
nativeToken: {
symbol: 'MON',
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 a181b69

Please sign in to comment.