diff --git a/packages/network/src/config.ts b/packages/network/src/config.ts index 70a41d249..cff4cdf82 100644 --- a/packages/network/src/config.ts +++ b/packages/network/src/config.ts @@ -53,6 +53,9 @@ export enum ChainId { // HARDHAT TESTNETS HARDHAT = 31337, HARDHAT_2 = 31338, + + // HOMEVERSE + HOMEVERSE_TESTNET = 40875 } export interface NetworkConfig { @@ -326,6 +329,15 @@ export const networks: Record> = { chainId: ChainId.HARDHAT_2, name: 'hardhat2', title: 'Hardhat (local testnet)' + }, + [ChainId.HOMEVERSE_TESTNET]: { + chainId: ChainId.HOMEVERSE_TESTNET, + name: 'homeverse-testnet', + title: 'Homeverse Testnet', + blockExplorer: { + name: 'Homeverse Explorer (Testnet)', + rootUrl: 'https://explorer.oasys.homeverse.games/' + } } } @@ -422,6 +434,10 @@ export const allNetworks = validateAndSortNetworks([ ...networks[ChainId.BASE_GOERLI], ...genUrls('base-goerli') }, + { + ...networks[ChainId.HOMEVERSE_TESTNET], + ...genUrls('homeverse-testnet') + }, { ...networks[ChainId.HARDHAT], rpcUrl: 'http://localhost:8545',