Skip to content

Commit

Permalink
add soneium-minato testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubhaankar-Sharma authored and attente committed Sep 26, 2024
1 parent 55a0a11 commit dd65398
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/network/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,6 @@ export const allNetworks = validateAndSortNetworks([
createNetworkConfig(ChainId.TELOS),
createNetworkConfig(ChainId.BORNE_TESTNET),
createNetworkConfig(ChainId.SKALE_NEBULA_TESTNET),
createNetworkConfig(ChainId.SONEIUM_MINATO),
...hardhatNetworks
])
20 changes: 20 additions & 0 deletions packages/network/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ export enum ChainId {
// Skale Testnet
SKALE_NEBULA_TESTNET = 37084624,

// Soneium Minato
SONEIUM_MINATO = 1946,

// HARDHAT TESTNETS
HARDHAT = 31337,
HARDHAT_2 = 31338
Expand Down Expand Up @@ -790,6 +793,23 @@ export const networks: Record<ChainId, NetworkMetadata> = {
decimals: 18
}
},
[ChainId.SONEIUM_MINATO]: {
chainId: ChainId.SONEIUM_MINATO,
type: NetworkType.TESTNET,
name: 'soneium-minato',
title: 'Soneium Minato (Testnet)',
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.SONEIUM_MINATO}.webp`,
testnet: true,
blockExplorer: {
name: 'Soneium Minato Explorer',
rootUrl: 'https://explorer-testnet.soneium.org/'
},
nativeToken: {
symbol: 'ETH',
name: 'Ether',
decimals: 18
}
},
[ChainId.HARDHAT]: {
chainId: ChainId.HARDHAT,
name: 'hardhat',
Expand Down

0 comments on commit dd65398

Please sign in to comment.