Skip to content

Commit

Permalink
Adding SKALE Nebula Gaming Hub Testnet (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook authored Sep 11, 2024
1 parent e831e70 commit 730f6b4
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 @@ -124,5 +124,6 @@ export const allNetworks = validateAndSortNetworks([
createNetworkConfig(ChainId.BLAST_SEPOLIA),
createNetworkConfig(ChainId.TELOS),
createNetworkConfig(ChainId.BORNE_TESTNET),
createNetworkConfig(ChainId.SKALE_NEBULA_TESTNET),
...hardhatNetworks
])
20 changes: 20 additions & 0 deletions packages/network/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ export enum ChainId {
// Borne
BORNE_TESTNET = 94984,

// Skale Testnet
SKALE_NEBULA_TESTNET = 37084624,

// HARDHAT TESTNETS
HARDHAT = 31337,
HARDHAT_2 = 31338
Expand Down Expand Up @@ -770,6 +773,23 @@ export const networks: Record<ChainId, NetworkMetadata> = {
decimals: 18
}
},
[ChainId.SKALE_NEBULA_TESTNET]: {
chainId: ChainId.SKALE_NEBULA_TESTNET,
type: NetworkType.TESTNET,
name: 'skale-nebula-testnet',
title: 'Skale Nebula Gaming Hub Testnet',
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.SKALE_NEBULA_TESTNET}.webp`,
testnet: true,
blockExplorer: {
name: 'Skale Nebula Gaming Hub Testnet Explorer',
rootUrl: 'https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com/'
},
nativeToken: {
symbol: 'sFUEL',
name: 'SKALE Fuel',
decimals: 18
}
},
[ChainId.HARDHAT]: {
chainId: ChainId.HARDHAT,
name: 'hardhat',
Expand Down

0 comments on commit 730f6b4

Please sign in to comment.