From 839713d22f29bc3e2af6fa371385de51a08fd8a0 Mon Sep 17 00:00:00 2001 From: rkalis Date: Mon, 26 Feb 2024 00:58:39 +0000 Subject: [PATCH] Update chains based on latest data from chainId.network --- package.json | 2 +- src/chains.ts | 1740 ++++++++++++++++++++++++++++++++++++++++++++----- src/enums.ts | 180 ++++- 3 files changed, 1751 insertions(+), 171 deletions(-) diff --git a/package.json b/package.json index b372729..4c9a1c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@revoke.cash/chains", - "version": "31.0.0", + "version": "32.0.0", "description": "Helper module for getting EVM chains info.", "author": "Revoke.cash", "contributors": [ diff --git a/src/chains.ts b/src/chains.ts index 78c1fad..6f2d685 100644 --- a/src/chains.ts +++ b/src/chains.ts @@ -9,8 +9,8 @@ export const chains: Chains = { 'wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}', 'https://api.mycryptoapi.com/eth', 'https://cloudflare-eth.com', - 'https://ethereum.publicnode.com', - 'wss://ethereum.publicnode.com', + 'https://ethereum-rpc.publicnode.com', + 'wss://ethereum-rpc.publicnode.com', 'https://mainnet.gateway.tenderly.co', 'wss://mainnet.gateway.tenderly.co', 'https://rpc.blocknative.com/boost', @@ -128,8 +128,8 @@ export const chains: Chains = { 'https://goerli.infura.io/v3/${INFURA_API_KEY}', 'wss://goerli.infura.io/v3/${INFURA_API_KEY}', 'https://rpc.goerli.mudit.blog/', - 'https://ethereum-goerli.publicnode.com', - 'wss://ethereum-goerli.publicnode.com', + 'https://ethereum-goerli-rpc.publicnode.com', + 'wss://ethereum-goerli-rpc.publicnode.com', 'https://goerli.gateway.tenderly.co', 'wss://goerli.gateway.tenderly.co' ], @@ -233,8 +233,8 @@ export const chains: Chains = { chain: 'ETH', rpc: [ 'https://mainnet.optimism.io', - 'https://optimism.publicnode.com', - 'wss://optimism.publicnode.com', + 'https://optimism-rpc.publicnode.com', + 'wss://optimism-rpc.publicnode.com', 'https://optimism.gateway.tenderly.co', 'wss://optimism.gateway.tenderly.co' ], @@ -314,9 +314,14 @@ export const chains: Chains = { icon: 'flare', rpc: [ 'https://flare-api.flare.network/ext/C/rpc', - 'https://flare.public-rpc.com', - 'https://rpc.ftso.au/flare' + 'https://flare.rpc.thirdweb.com', + 'https://flare-bundler.etherspot.io', + 'https://rpc.ankr.com/flare', + 'https://rpc.ftso.au/flare', + 'https://flare.enosys.global/ext/C/rpc', + 'https://flare.solidifi.app/ext/C/rpc' ], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], faucets: [], nativeCurrency: { name: 'Flare', symbol: 'FLR', decimals: 18 }, infoURL: 'https://flare.network', @@ -331,7 +336,7 @@ export const chains: Chains = { }, { name: 'flarescan', - url: 'https://flarescan.com', + url: 'https://mainnet.flarescan.com', standard: 'EIP3091' } ] @@ -348,24 +353,32 @@ export const chains: Chains = { networkId: 15 }, 16: { - name: 'Flare Testnet Coston', - chain: 'FLR', + name: 'Songbird Testnet Coston', + chain: 'SGB', icon: 'coston', - rpc: ['https://coston-api.flare.network/ext/bc/C/rpc'], - faucets: [ - 'https://faucet.towolabs.com', - 'https://fauceth.komputing.org?chain=16&address=${ADDRESS}' + rpc: [ + 'https://coston-api.flare.network/ext/C/rpc', + 'https://flare-testnet-coston.rpc.thirdweb.com', + 'https://coston.enosys.global/ext/C/rpc' ], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: ['https://faucet.flare.network'], nativeCurrency: { name: 'Coston Flare', symbol: 'CFLR', decimals: 18 }, - infoURL: 'https://flare.xyz', + infoURL: 'https://flare.network', shortName: 'cflr', chainId: 16, networkId: 16, + slip44: 1, explorers: [ { name: 'blockscout', url: 'https://coston-explorer.flare.network', standard: 'EIP3091' + }, + { + name: 'flarescan', + url: 'https://coston.testnet.flarescan.com', + standard: 'EIP3091' } ] }, @@ -409,14 +422,14 @@ export const chains: Chains = { icon: 'songbird', rpc: [ 'https://songbird-api.flare.network/ext/C/rpc', - 'https://sgb.ftso.com.au/ext/bc/C/rpc', - 'https://sgb.lightft.so/rpc', - 'https://sgb-rpc.ftso.eu', - 'https://rpc.ftso.au/songbird' + 'https://rpc.ftso.au/songbird', + 'https://songbird.enosys.global/ext/C/rpc', + 'https://songbird.solidifi.app/ext/C/rpc' ], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], faucets: [], nativeCurrency: { name: 'Songbird', symbol: 'SGB', decimals: 18 }, - infoURL: 'https://flare.xyz', + infoURL: 'https://flare.network', shortName: 'sgb', chainId: 19, networkId: 19, @@ -425,6 +438,11 @@ export const chains: Chains = { name: 'blockscout', url: 'https://songbird-explorer.flare.network', standard: 'EIP3091' + }, + { + name: 'flarescan', + url: 'https://songbird.flarescan.com', + standard: 'EIP3091' } ] }, @@ -505,8 +523,8 @@ export const chains: Chains = { chain: 'CRO', rpc: [ 'https://evm.cronos.org', - 'https://cronos-evm.publicnode.com', - 'wss://cronos-evm.publicnode.com' + 'https://cronos-evm-rpc.publicnode.com', + 'wss://cronos-evm-rpc.publicnode.com' ], features: [{ name: 'EIP1559' }], faucets: [], @@ -866,7 +884,7 @@ export const chains: Chains = { { name: 'subscan', url: 'https://pangolin.subscan.io', - standard: 'none' + standard: 'EIP3091' } ] }, @@ -875,8 +893,7 @@ export const chains: Chains = { chain: 'crab', rpc: [ 'https://crab-rpc.darwinia.network', - 'https://crab-rpc.darwiniacommunitydao.xyz', - 'https://darwiniacrab-rpc.dwellir.com' + 'https://crab-rpc.darwiniacommunitydao.xyz' ], faucets: [], nativeCurrency: { @@ -892,7 +909,7 @@ export const chains: Chains = { { name: 'subscan', url: 'https://crab.subscan.io', - standard: 'none' + standard: 'EIP3091' } ] }, @@ -943,7 +960,7 @@ export const chains: Chains = { { name: 'subscan', url: 'https://darwinia.subscan.io', - standard: 'none' + standard: 'EIP3091' } ] }, @@ -1164,8 +1181,8 @@ export const chains: Chains = { 'https://bsc-dataseed2.ninicoin.io', 'https://bsc-dataseed3.ninicoin.io', 'https://bsc-dataseed4.ninicoin.io', - 'https://bsc.publicnode.com', - 'wss://bsc.publicnode.com', + 'https://bsc-rpc.publicnode.com', + 'wss://bsc-rpc.publicnode.com', 'wss://bsc-ws-node.nariox.org' ], faucets: [], @@ -1201,8 +1218,8 @@ export const chains: Chains = { 'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}', 'https://syscoin.public-rpc.com', 'wss://rpc.syscoin.org/wss', - 'https://syscoin-evm.publicnode.com', - 'wss://syscoin-evm.publicnode.com' + 'https://syscoin-evm-rpc.publicnode.com', + 'wss://syscoin-evm-rpc.publicnode.com' ], faucets: ['https://faucet.syscoin.org'], nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 }, @@ -2036,8 +2053,8 @@ export const chains: Chains = { 'https://data-seed-prebsc-2-s2.bnbchain.org:8545', 'https://data-seed-prebsc-1-s3.bnbchain.org:8545', 'https://data-seed-prebsc-2-s3.bnbchain.org:8545', - 'https://bsc-testnet.publicnode.com', - 'wss://bsc-testnet.publicnode.com' + 'https://bsc-testnet-rpc.publicnode.com', + 'wss://bsc-testnet-rpc.publicnode.com' ], faucets: ['https://testnet.bnbchain.org/faucet-smart'], nativeCurrency: { @@ -2117,8 +2134,8 @@ export const chains: Chains = { 'https://web3endpoints.com/gnosischain-mainnet', 'https://gnosis.oat.farm', 'wss://rpc.gnosischain.com/wss', - 'https://gnosis.publicnode.com', - 'wss://gnosis.publicnode.com' + 'https://gnosis-rpc.publicnode.com', + 'wss://gnosis-rpc.publicnode.com' ], faucets: [ 'https://gnosisfaucet.com', @@ -2399,10 +2416,16 @@ export const chains: Chains = { name: 'Flare Testnet Coston2', chain: 'FLR', icon: 'coston2', - rpc: ['https://coston2-api.flare.network/ext/bc/C/rpc'], - faucets: ['https://coston2-faucet.towolabs.com'], + rpc: [ + 'https://coston2-api.flare.network/ext/C/rpc', + 'https://flare-testnet-coston2.rpc.thirdweb.com', + 'https://flaretestnet-bundler.etherspot.io', + 'https://coston2.enosys.global/ext/C/rpc' + ], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: ['https://faucet.flare.network'], nativeCurrency: { name: 'Coston2 Flare', symbol: 'C2FLR', decimals: 18 }, - infoURL: 'https://flare.xyz', + infoURL: 'https://flare.network', shortName: 'c2flr', chainId: 114, networkId: 114, @@ -2412,6 +2435,11 @@ export const chains: Chains = { name: 'blockscout', url: 'https://coston2-explorer.flare.network', standard: 'EIP3091' + }, + { + name: 'flarescan', + url: 'https://coston2.testnet.flarescan.com', + standard: 'EIP3091' } ] }, @@ -2805,8 +2833,8 @@ export const chains: Chains = { 'https://rpc-mainnet.maticvigil.com', 'https://rpc-mainnet.matic.quiknode.pro', 'https://matic-mainnet-full-rpc.bwarelabs.com', - 'https://polygon-bor.publicnode.com', - 'wss://polygon-bor.publicnode.com', + 'https://polygon-bor-rpc.publicnode.com', + 'wss://polygon-bor-rpc.publicnode.com', 'https://polygon.gateway.tenderly.co', 'wss://polygon.gateway.tenderly.co' ], @@ -3079,6 +3107,25 @@ export const chains: Chains = { } ] }, + 157: { + name: 'Puppynet Shibarium', + chain: 'Puppynet Shibarium', + icon: 'shibarium', + rpc: ['https://puppynet.shibrpc.com'], + faucets: ['https://beta.shibariumtech.com/faucet'], + nativeCurrency: { name: 'BONE', symbol: 'BONE', decimals: 18 }, + infoURL: 'https://shibariumecosystem.com', + shortName: 'puppynet', + chainId: 157, + networkId: 157, + explorers: [ + { + name: 'puppyscan', + url: 'https://puppyscan.shib.io', + standard: 'none' + } + ] + }, 160: { name: 'Armonia Eva Chain Mainnet', chain: 'Eva', @@ -3486,8 +3533,8 @@ export const chains: Chains = { 'wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3', 'https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5', 'wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5', - 'https://opbnb.publicnode.com', - 'wss://opbnb.publicnode.com' + 'https://opbnb-rpc.publicnode.com', + 'wss://opbnb-rpc.publicnode.com' ], faucets: [], nativeCurrency: { @@ -3598,20 +3645,20 @@ export const chains: Chains = { networkId: 0 }, 212: { - name: 'MAP Makalu', - title: 'MAP Testnet Makalu', - chain: 'MAP', + name: 'MAPO Makalu', + title: 'MAPO Testnet Makalu', + chain: 'MAPO', rpc: ['https://testnet-rpc.maplabs.io'], - faucets: ['https://faucet.maplabs.io'], - nativeCurrency: { name: 'Makalu MAP', symbol: 'MAP', decimals: 18 }, - infoURL: 'https://maplabs.io', + faucets: ['https://faucet.mapprotocol.io'], + nativeCurrency: { name: 'Makalu MAPO', symbol: 'MAPO', decimals: 18 }, + infoURL: 'https://mapprotocol.io/', shortName: 'makalu', chainId: 212, networkId: 212, explorers: [ { - name: 'mapscan', - url: 'https://testnet.mapscan.io', + name: 'maposcan', + url: 'https://testnet.maposcan.io', standard: 'EIP3091' } ] @@ -3702,6 +3749,25 @@ export const chains: Chains = { slip44: 2221, status: 'deprecated' }, + 224: { + name: 'Viridis Testnet', + chain: 'VRD', + icon: 'viridis', + rpc: ['https://testnet-rpc.vrd.network'], + faucets: ['https://faucet.vrd.network'], + nativeCurrency: { name: 'Viridis Token', symbol: 'VRD', decimals: 18 }, + infoURL: 'https://viridis.network', + shortName: 'VRD-Testnet', + chainId: 224, + networkId: 224, + explorers: [ + { + name: 'Viridis Testnet', + url: 'https://testnet.vrd.network', + standard: 'EIP3091' + } + ] + }, 225: { name: 'LACHAIN Mainnet', chain: 'LA', @@ -3759,6 +3825,26 @@ export const chains: Chains = { } ] }, + 234: { + name: 'ProtoJumbo Testnet', + chain: 'Jumbo', + rpc: ['https://testnode.jumbochain.org'], + faucets: ['https://protojumbo.jumbochain.org/faucet-smart'], + nativeCurrency: { name: 'JNFTC', symbol: 'JNFTC', decimals: 18 }, + features: [{ name: 'EIP155' }], + infoURL: 'https://jumbochain.org', + shortName: 'ProtoJumbo', + chainId: 234, + networkId: 234, + slip44: 1, + explorers: [ + { + name: 'ProtoJumbo', + url: 'https://protojumbo.jumbochain.org', + standard: 'EIP3091' + } + ] + }, 236: { name: 'Deamchain Testnet', chain: 'Deamchain', @@ -3869,8 +3955,8 @@ export const chains: Chains = { chain: 'FTM', rpc: [ 'https://rpc.ftm.tools', - 'https://fantom.publicnode.com', - 'wss://fantom.publicnode.com' + 'https://fantom-rpc.publicnode.com', + 'wss://fantom-rpc.publicnode.com' ], faucets: [], nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 }, @@ -4054,7 +4140,7 @@ export const chains: Chains = { ], faucets: [], nativeCurrency: { name: 'LaCoin', symbol: 'LAC', decimals: 18 }, - features: [{ name: 'EIP155' }], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], infoURL: '', shortName: 'lachain', chainId: 274, @@ -4067,6 +4153,18 @@ export const chains: Chains = { } ] }, + 279: { + name: 'BPX Blockchain', + chain: 'BPX', + icon: 'bpx', + rpc: ['https://rpc.mainnet.bpxchain.cc', 'https://bpx-dataseed.infinex.cc'], + faucets: [], + nativeCurrency: { name: 'BPX', symbol: 'BPX', decimals: 18 }, + infoURL: 'https://bpxchain.cc', + shortName: 'bpx', + chainId: 279, + networkId: 279 + }, 280: { name: 'zkSync Era Goerli Testnet (deprecated)', status: 'deprecated', @@ -4336,6 +4434,46 @@ export const chains: Chains = { } ] }, + 305: { + name: 'ZKSats Mainnet', + title: 'ZKSats Mainnet', + chain: 'ZKSats', + rpc: ['https://mainnet.zksats.io'], + faucets: [], + nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 }, + infoURL: 'https://zksats.io', + shortName: 'ZKSats-Mainnet', + chainId: 305, + networkId: 305, + icon: 'zksats', + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.zksats.io', + icon: 'zksats', + standard: 'EIP3091' + } + ] + }, + 307: { + name: 'Lovely Network Testnet', + chain: 'Lovely', + icon: 'lovely', + rpc: ['https://trpc.lovely.network'], + faucets: ['https://faucet.lovely.network'], + nativeCurrency: { name: 'Lovely', symbol: 'LOVELY', decimals: 18 }, + infoURL: 'https://lovely.network', + shortName: 'LOVELY-Testnet', + chainId: 307, + networkId: 307, + explorers: [ + { + name: 'Lovely Network Testnet', + url: 'https://tscan.lovely.network', + standard: 'EIP3091' + } + ] + }, 309: { name: 'Wyzth Testnet', chain: 'WYZ', @@ -4484,6 +4622,25 @@ export const chains: Chains = { } ] }, + 323: { + name: 'Cosvm Mainnet', + chain: 'CVM', + rpc: ['https://rpc.cosvm.net'], + faucets: [], + nativeCurrency: { name: 'Cosvm', symbol: 'CVM', decimals: 18 }, + infoURL: 'https://cosvm.network', + shortName: 'cvm', + chainId: 323, + networkId: 323, + explorers: [ + { + name: 'Blockscout', + url: 'https://explorer.cosvm.net', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, 324: { name: 'zkSync Mainnet', chain: 'ETH', @@ -4685,8 +4842,8 @@ export const chains: Chains = { rpc: [ 'https://rpc.pulsechain.com', 'wss://rpc.pulsechain.com', - 'https://pulsechain.publicnode.com', - 'wss://pulsechain.publicnode.com', + 'https://pulsechain-rpc.publicnode.com', + 'wss://pulsechain-rpc.publicnode.com', 'https://rpc-pulsechain.g4mm4.io', 'wss://rpc-pulsechain.g4mm4.io' ], @@ -4926,8 +5083,8 @@ export const chains: Chains = { chain: 'ETH', rpc: [ 'https://goerli.optimism.io', - 'https://optimism-goerli.publicnode.com', - 'wss://optimism-goerli.publicnode.com', + 'https://optimism-goerli-rpc.publicnode.com', + 'wss://optimism-goerli-rpc.publicnode.com', 'https://optimism-goerli.gateway.tenderly.co', 'wss://optimism-goerli.gateway.tenderly.co' ], @@ -4947,6 +5104,25 @@ export const chains: Chains = { } ] }, + 422: { + name: 'Viridis Mainnet', + chain: 'VRD', + icon: 'viridis', + rpc: ['https://mainnet-rpc.vrd.network'], + faucets: [], + nativeCurrency: { name: 'Viridis Token', symbol: 'VRD', decimals: 18 }, + infoURL: 'https://viridis.network', + shortName: 'vrd', + chainId: 422, + networkId: 422, + explorers: [ + { + name: 'Viridis Mainnet', + url: 'https://explorer.vrd.network', + standard: 'EIP3091' + } + ] + }, 424: { name: 'PGN (Public Goods Network)', chain: 'ETH', @@ -5142,7 +5318,7 @@ export const chains: Chains = { rpc: [], faucets: [], nativeCurrency: { name: 'Rupaya', symbol: 'RUPX', decimals: 18 }, - infoURL: 'https://www.rupx.io', + infoURL: 'https://www.rupaya.io', shortName: 'rupx', chainId: 499, networkId: 499, @@ -5187,6 +5363,20 @@ export const chains: Chains = { } ] }, + 510: { + name: 'Syndicate Chain', + title: 'Syndicate Chain', + chain: 'Syndicate', + rpc: ['https://rpc-mainnet.syndicate.io'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://syndicate.io', + shortName: 'syndicate-chain-mainnet', + chainId: 510, + networkId: 510, + status: 'incubating', + icon: 'syndicate' + }, 512: { name: 'Double-A Chain Mainnet', chain: 'AAC', @@ -5283,7 +5473,7 @@ export const chains: Chains = { name: 'Firechain Mainnet', chain: 'FIRE', icon: 'firechain', - rpc: ['https://mainnet.rpc1.thefirechain.com'], + rpc: ['https://rpc-mainnet.thefirechain.com'], faucets: [], nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 }, infoURL: 'https://thefirechain.com', @@ -5952,6 +6142,35 @@ export const chains: Chains = { } ] }, + 713: { + name: 'Vrcscan Mainnet', + chain: 'VRC', + rpc: [ + 'https://rpc-mainnet-5.vrcscan.com', + 'https://rpc-mainnet-6.vrcscan.com', + 'https://rpc-mainnet-7.vrcscan.com', + 'https://rpc-mainnet-8.vrcscan.com' + ], + faucets: [], + nativeCurrency: { name: 'VRC Chain', symbol: 'VRC', decimals: 18 }, + infoURL: 'https://vrccoin.com', + shortName: 'vrc', + chainId: 713, + networkId: 713, + explorers: [ + { + name: 'vrcscan', + url: 'https://vrcscan.com', + standard: 'EIP3091' + }, + { + name: 'dxbscan', + url: 'https://dxb.vrcscan.com', + standard: 'EIP3091' + } + ], + icon: 'vrcscan' + }, 719: { name: 'Shibarium Beta', chain: 'Shibarium', @@ -6002,6 +6221,25 @@ export const chains: Chains = { networkId: 727, slip44: 727 }, + 730: { + name: 'Lovely Network Mainnet', + chain: 'Lovely', + icon: 'lovely', + rpc: ['https://rpc.lovely.network'], + faucets: [], + nativeCurrency: { name: 'Lovely', symbol: 'LOVELY', decimals: 18 }, + infoURL: 'https://lovely.network', + shortName: 'LOVELY', + chainId: 730, + networkId: 730, + explorers: [ + { + name: 'Lovely Network Mainnet', + url: 'https://scan.lovely.network', + standard: 'EIP3091' + } + ] + }, 740: { name: 'Canto Testnet', chain: 'Canto Tesnet', @@ -6202,6 +6440,25 @@ export const chains: Chains = { } ] }, + 799: { + name: 'Rupaya Testnet', + chain: 'Rupaya Testnet', + rpc: ['https://rpc.testnet.rupaya.io'], + faucets: ['https://faucet.testnet.rupaya.io'], + nativeCurrency: { name: 'Test Rupaya', symbol: 'TRUPX', decimals: 18 }, + infoURL: 'https://www.rupaya.io', + shortName: 'RupayaTestnet', + chainId: 799, + networkId: 799, + slip44: 1, + explorers: [ + { + name: 'rupayascan', + url: 'https://scan.testnet.rupaya.io', + standard: 'EIP3091' + } + ] + }, 800: { name: 'Lucid Blockchain', chain: 'Lucid', @@ -6307,7 +6564,7 @@ export const chains: Chains = { name: 'Firechain zkEVM', title: 'Firechain zkEVM', chain: 'Firechain', - rpc: ['https://rpc.zkevm.thefirechain.com'], + rpc: ['https://rpc-zkevm.thefirechain.com'], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://docs.thefirechain.com/', @@ -6319,7 +6576,7 @@ export const chains: Chains = { parent: { type: 'L2', chain: 'eip155-1', - bridges: [{ url: 'https://zkevm.bridge.rpc.thefirechain.com' }] + bridges: [{ url: 'https://zkevm-bridge-rpc.thefirechain.com' }] } }, 818: { @@ -6382,6 +6639,24 @@ export const chains: Chains = { slip44: 1, status: 'deprecated' }, + 831: { + name: 'CheckDot Blockchain Devnet', + chain: 'CDT Blockchain', + rpc: ['https://devnet.checkdot.io'], + faucets: [], + nativeCurrency: { name: 'CDT', symbol: 'CDT', decimals: 18 }, + infoURL: 'https://checkdot.io', + shortName: 'cdt', + chainId: 831, + networkId: 831, + explorers: [ + { + name: 'CDT Explorer', + url: 'https://explorer.checkdot.io', + standard: 'none' + } + ] + }, 841: { name: 'Taraxa Mainnet', chain: 'Tara', @@ -6649,7 +6924,7 @@ export const chains: Chains = { name: 'Rinia Testnet', chain: 'FIRE', icon: 'rinia', - rpc: ['https://rinia.rpc1.thefirechain.com'], + rpc: ['https://rinia-rpc1.thefirechain.com'], faucets: ['https://faucet.thefirechain.com'], nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 }, infoURL: 'https://thefirechain.com', @@ -6763,8 +7038,8 @@ export const chains: Chains = { rpc: [ 'https://rpc.v4.testnet.pulsechain.com', 'wss://rpc.v4.testnet.pulsechain.com', - 'https://pulsechain-testnet.publicnode.com', - 'wss://pulsechain-testnet.publicnode.com', + 'https://pulsechain-testnet-rpc.publicnode.com', + 'wss://pulsechain-testnet-rpc.publicnode.com', 'https://rpc-testnet-pulsechain.g4mm4.io', 'wss://rpc-testnet-pulsechain.g4mm4.io' ], @@ -7453,11 +7728,12 @@ export const chains: Chains = { chain: 'Humans', rpc: [ 'https://jsonrpc.humans.nodestake.top', - 'https://humans-mainnet-evm.itrocket.net:443', + 'https://humans-mainnet-evm.itrocket.net', 'https://humans-evm-rpc.staketab.org:443', 'https://evm.humans.stakepool.dev.br', 'https://mainnet-humans-evm.konsortech.xyz', - 'https://evm-rpc.mainnet.humans.zone' + 'https://evm-rpc.mainnet.humans.zone', + 'https://json-rpc.humans.bh.rocks' ], faucets: [], nativeCurrency: { name: 'HEART', symbol: 'HEART', decimals: 18 }, @@ -7495,6 +7771,25 @@ export const chains: Chains = { } ] }, + 1100: { + name: 'Dymension', + chain: 'Dymension', + rpc: [ + 'https://dymension-evm.blockpi.network/v1/rpc/public', + 'https://dymension-evm-rpc.publicnode.com', + 'wss://dymension-evm-rpc.publicnode.com' + ], + faucets: [], + nativeCurrency: { name: 'DYM', symbol: 'DYM', decimals: 18 }, + infoURL: 'https://dymension.xyz', + shortName: 'dymension', + icon: 'dymension', + chainId: 1100, + networkId: 1100, + explorers: [ + { name: 'dym.fyi', url: 'https://dym.fyi', standard: 'EIP3091' } + ] + }, 1101: { name: 'Polygon zkEVM', title: 'Polygon zkEVM', @@ -7919,6 +8214,25 @@ export const chains: Chains = { } ] }, + 1224: { + name: 'Hybrid Testnet', + chain: '$HYB', + icon: 'hybridIcon', + rpc: ['https://testnet-rpc.buildonhybrid.com'], + faucets: [], + nativeCurrency: { name: 'Hybrid', symbol: '$HYB', decimals: 18 }, + infoURL: 'https://buildonhybrid.com', + shortName: 'hyb', + chainId: 1224, + networkId: 1224, + explorers: [ + { + name: 'Hybrid Testnet', + url: 'https://alphatestnet.buildonhybrid.com', + standard: 'EIP3091' + } + ] + }, 1229: { name: 'Exzo Network Mainnet', chain: 'EXZO', @@ -8129,8 +8443,8 @@ export const chains: Chains = { rpc: [ 'https://rpc.api.moonbeam.network', 'wss://wss.api.moonbeam.network', - 'https://moonbeam.publicnode.com', - 'wss://moonbeam.publicnode.com' + 'https://moonbeam-rpc.publicnode.com', + 'wss://moonbeam-rpc.publicnode.com' ], faucets: [], nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 }, @@ -8152,8 +8466,8 @@ export const chains: Chains = { rpc: [ 'https://rpc.api.moonriver.moonbeam.network', 'wss://wss.api.moonriver.moonbeam.network', - 'https://moonriver.publicnode.com', - 'wss://moonriver.publicnode.com' + 'https://moonriver-rpc.publicnode.com', + 'wss://moonriver-rpc.publicnode.com' ], faucets: [], nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 }, @@ -8666,6 +8980,27 @@ export const chains: Chains = { } ] }, + 1453: { + name: 'MetaChain Istanbul', + title: 'MetaChain Testnet Istanbul', + chain: 'MTC', + icon: 'metachain', + rpc: ['https://istanbul-rpc.metachain.dev'], + faucets: ['https://istanbul-faucet.metachain.dev'], + nativeCurrency: { name: 'Metatime Coin', symbol: 'MTC', decimals: 18 }, + infoURL: 'https://metatime.com/en', + shortName: 'metatimeistanbul', + chainId: 1453, + networkId: 1453, + slip44: 1453, + explorers: [ + { + name: 'MetaExplorer', + url: 'https://istanbul-explorer.metachain.dev', + standard: 'EIP3091' + } + ] + }, 1455: { name: 'Ctex Scan Blockchain', chain: 'Ctex Scan Blockchain', @@ -8685,6 +9020,28 @@ export const chains: Chains = { } ] }, + 1490: { + name: 'Vitruveo Mainnet', + title: 'Vitruveo is a blockchain for Creators', + chain: 'Vitruveo', + rpc: ['https://rpc.vitruveo.xyz'], + faucets: [], + nativeCurrency: { name: 'Vitruveo Coin', symbol: 'VTRU', decimals: 18 }, + features: [{ name: 'EIP155' }], + infoURL: 'https://www.vitruveo.xyz', + shortName: 'vitruveo', + chainId: 1490, + networkId: 1490, + icon: 'vitruveo', + explorers: [ + { + name: 'Vitruveo Explorer', + url: 'https://explorer.vitruveo.xyz', + icon: 'vitruveo', + standard: 'EIP3091' + } + ] + }, 1501: { name: 'BEVM Canary', chain: 'ChainX', @@ -8862,6 +9219,31 @@ export const chains: Chains = { } ] }, + 1686: { + name: 'Mint Testnet', + chain: 'ETH', + rpc: ['https://testnet-rpc.mintchain.io'], + faucets: [], + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://www.mintchain.io', + shortName: 'minttest', + chainId: 1686, + networkId: 1686, + icon: 'mintTestnet', + explorers: [ + { + name: 'blockscout', + url: 'https://testnet-explorer.mintchain.io', + icon: 'mintTestnet', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://testnet-bridge.mintchain.io' }] + } + }, 1688: { name: 'LUDAN Mainnet', chain: 'LUDAN', @@ -9154,20 +9536,20 @@ export const chains: Chains = { networkId: 1 }, 1875: { - name: 'WhiteBIT Network', + name: 'Whitechain', chain: 'WBT', - rpc: ['https://rpc.whitebit.network'], + rpc: ['https://rpc.whitechain.io'], faucets: [], nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 }, - infoURL: 'https://whitebit.network', + infoURL: 'https://whitechain.io', shortName: 'wbt', chainId: 1875, networkId: 1875, - icon: 'whitebit', + icon: 'whitechain', explorers: [ { - name: 'wb-explorer', - url: 'https://explorer.whitebit.network', + name: 'whitechain-explorer', + url: 'https://explorer.whitechain.io', standard: 'EIP3091' } ] @@ -9410,6 +9792,21 @@ export const chains: Chains = { faucets: [], infoURL: '' }, + 1953: { + name: 'Selendra Network Testnet', + chain: 'tSEL', + rpc: [ + 'https://rpc0-testnet.selendra.org', + 'https://rpc1-testnet.selendra.org' + ], + faucets: [], + nativeCurrency: { name: 'Selendra', symbol: 'tSEL', decimals: 18 }, + infoURL: 'https://selendra.org', + shortName: 'tSEL', + chainId: 1953, + networkId: 1953, + icon: 'selendra' + }, 1954: { name: 'Dexilla Testnet', chain: 'Dexilla', @@ -9439,6 +9836,25 @@ export const chains: Chains = { bridges: [{ url: 'https://bridge.dexilla.com' }] } }, + 1961: { + name: 'Selendra Network Mainnet', + chain: 'SEL', + rpc: ['https://rpc0.selendra.org', 'https://rpc1.selendra.org'], + faucets: [], + nativeCurrency: { name: 'Selendra', symbol: 'SEL', decimals: 18 }, + infoURL: 'https://selendra.org', + shortName: 'SEL', + chainId: 1961, + networkId: 1961, + icon: 'selendra', + explorers: [ + { + name: 'Selendra Scan', + url: 'https://scan.selendra.org', + standard: 'none' + } + ] + }, 1967: { name: 'Eleanor', title: 'Metatime Testnet Eleanor', @@ -9973,6 +10389,17 @@ export const chains: Chains = { } ] }, + 2024: { + name: 'Swan Saturn Testnet', + chain: 'SWAN', + rpc: ['https://saturn-rpc.swanchain.io'], + faucets: [], + nativeCurrency: { name: 'SWANETH', symbol: 'SWAN', decimals: 18 }, + infoURL: 'https://swanchain.io/', + shortName: 'swan', + chainId: 2024, + networkId: 2024 + }, 2025: { name: 'Rangers Protocol Mainnet', chain: 'Rangers', @@ -10559,8 +10986,11 @@ export const chains: Chains = { 'https://kava-rpc.gateway.pokt.network', 'https://kava-evm.rpc.thirdweb.com', 'wss://wevm.kava.io', - 'https://kava-evm.publicnode.com', - 'wss://kava-evm.publicnode.com' + 'https://kava-evm-rpc.publicnode.com', + 'wss://kava-evm-rpc.publicnode.com', + 'https://evm.kava-rpc.com', + 'https://rpc.ankr.com/kava_evm', + 'wss://wevm.kava-rpc.com' ], faucets: [], nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 }, @@ -10835,6 +11265,26 @@ export const chains: Chains = { ], parent: { type: 'L2', chain: 'eip155-248' } }, + 2410: { + name: 'Karak Mainnet', + chain: 'Karak', + icon: 'karak', + rpc: ['https://rpc.karak.network'], + faucets: [], + nativeCurrency: { name: 'Karak', symbol: 'KRK', decimals: 18 }, + infoURL: 'https://karak.network', + shortName: 'karak-mainnet', + chainId: 2410, + networkId: 2410, + explorers: [ + { + name: 'Karak Mainnet Explorer', + url: 'https://explorer.karak.network', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-1' } + }, 2415: { name: 'XODEX', chain: 'XODEX', @@ -10859,6 +11309,31 @@ export const chains: Chains = { } ] }, + 2442: { + name: 'Polygon zkEVM Cardona Testnet', + title: 'Polygon zkEVM Cardona Testnet', + chain: 'Polygon', + rpc: ['https://rpc.cardona.zkevm-rpc.com'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://polygon.technology/polygon-zkevm', + shortName: 'zkevm-testnet-cardona', + chainId: 2442, + networkId: 2442, + icon: 'zkevm', + explorers: [ + { + name: 'polygonscan', + url: 'https://cardona-zkevm.polygonscan.com', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://bridge-ui.cardona.zkevm-rpc.com' }] + } + }, 2458: { name: 'Hybrid Chain Network Testnet', chain: 'HYBRID', @@ -10936,6 +11411,26 @@ export const chains: Chains = { } ] }, + 2511: { + name: 'Karak Testnet', + chain: 'Karak', + icon: 'karak', + rpc: ['https://goerli.node1.karak.network'], + faucets: [], + nativeCurrency: { name: 'Karak', symbol: 'KRK', decimals: 18 }, + infoURL: 'https://karak.network', + shortName: 'karak-testnet', + chainId: 2511, + networkId: 2511, + explorers: [ + { + name: 'Karak Testnet Explorer', + url: 'https://goerli.scan.karak.network', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-5' } + }, 2522: { name: 'Fraxtal Testnet', chain: 'FRAX', @@ -11068,21 +11563,21 @@ export const chains: Chains = { ] }, 2625: { - name: 'WhiteBIT Network Testnet', + name: 'Whitechain Testnet', chain: 'WBT', - rpc: ['https://rpc-testnet.whitebit.network'], - faucets: ['https://explorer.whitebit.network/testnet/faucet'], + rpc: ['https://rpc-testnet.whitechain.io'], + faucets: ['https://testnet.whitechain.io/faucet'], nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 }, - infoURL: 'https://whitebit.com/wbt', + infoURL: 'https://whitechain.io', shortName: 'twbt', chainId: 2625, networkId: 2625, slip44: 1, - icon: 'whitebit-testnet', + icon: 'whitechain-testnet', explorers: [ { - name: 'wb-explorer-testnet', - url: 'https://explorer.whitebit.network/testnet', + name: 'whitechain-testnet-explorer', + url: 'https://testnet.whitechain.io', standard: 'EIP3091' } ] @@ -11135,6 +11630,26 @@ export const chains: Chains = { } ] }, + 2731: { + name: 'Elizabeth Testnet', + chain: 'Elizabeth', + rpc: ['https://testnet-rpc.timenetwork.io'], + faucets: [], + nativeCurrency: { name: 'TIME', symbol: 'TIME', decimals: 18 }, + infoURL: 'https://whitepaper.anttime.net/overview/anttime', + shortName: 'TIME', + chainId: 2731, + networkId: 2731, + icon: 'timenet', + explorers: [ + { + name: 'Time Network Explorer', + url: 'https://testnet-scanner.timenetwork.io', + standard: 'none', + icon: 'timenet' + } + ] + }, 2888: { name: 'Boba Network Goerli Testnet', chain: 'ETH', @@ -11159,6 +11674,29 @@ export const chains: Chains = { bridges: [{ url: 'https://gateway.boba.network' }] } }, + 2941: { + name: 'Xenon Chain Testnet', + chain: 'XEN', + rpc: [ + 'https://testnet-chain.xenonchain.com/', + 'https://testnet-dev.xenonchain.com/' + ], + faucets: ['https://xfaucet.xenonchain.com'], + nativeCurrency: { name: 'Xenon Testnet', symbol: 'tXEN', decimals: 18 }, + infoURL: 'https://xenonchain.com', + shortName: 'xenon', + chainId: 2941, + networkId: 2941, + icon: 'xenon', + slip44: 1, + explorers: [ + { + name: 'Xenon testnet Explorer', + url: 'https://testnet.xenonchain.com', + standard: 'none' + } + ] + }, 2999: { name: 'BitYuan Mainnet', chain: 'BTY', @@ -11790,10 +12328,10 @@ export const chains: Chains = { ] }, 3885: { - name: 'Firechain zkEVM Ghostrider', + name: 'Firechain zkEVM Testnet', title: 'Firechain zkEVM Ghostrider', chain: 'Firechain', - rpc: ['https://rpc.zkevm.ghostrider.thefirechain.com'], + rpc: ['https://rpc-zkevm-ghostrider.thefirechain.com'], faucets: ['zkevm-faucet.thefirechain.com'], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://docs.thefirechain.com/', @@ -11921,6 +12459,31 @@ export const chains: Chains = { } ] }, + 3993: { + name: 'APEX Testnet', + chain: 'ETH', + rpc: ['https://exp-testnet.apexlayer.xyz'], + faucets: ['https://sepoliafaucet.com/'], + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://docs.apexlayer.xyz/', + shortName: 'apexsep', + chainId: 3993, + networkId: 3993, + slip44: 1, + icon: 'apextestnet', + explorers: [ + { + name: 'blockscout', + url: 'https://exp-testnet.apexlayer.xyz', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-11155111', + bridges: [{ url: 'https://apexlayer.xyz/bridge' }] + } + }, 3999: { name: 'YuanChain Mainnet', chain: 'YCC', @@ -11989,8 +12552,8 @@ export const chains: Chains = { chain: 'FTM', rpc: [ 'https://rpc.testnet.fantom.network', - 'https://fantom-testnet.publicnode.com', - 'wss://fantom-testnet.publicnode.com' + 'https://fantom-testnet-rpc.publicnode.com', + 'wss://fantom-testnet-rpc.publicnode.com' ], faucets: ['https://faucet.fantom.network'], nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 }, @@ -12253,11 +12816,32 @@ export const chains: Chains = { } ] }, - 4201: { - name: 'LUKSO Testnet', - chain: 'LUKSO Testnet', - icon: 'lukso', - rpc: [ + 4200: { + name: 'Merlin Mainnet', + title: 'Merlin Mainnet', + chain: 'Merlin', + rpc: ['https://rpc.merlinchain.io'], + faucets: [], + nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 }, + infoURL: 'https://merlinchain.io', + shortName: 'Merlin-Mainnet', + chainId: 4200, + networkId: 4200, + icon: 'merlin', + explorers: [ + { + name: 'blockscout', + url: 'https://scan.merlinchain.io', + icon: 'merlin', + standard: 'EIP3091' + } + ] + }, + 4201: { + name: 'LUKSO Testnet', + chain: 'LUKSO Testnet', + icon: 'lukso', + rpc: [ 'https://rpc.testnet.lukso.network', 'wss://ws-rpc.testnet.lukso.network' ], @@ -12277,6 +12861,26 @@ export const chains: Chains = { slip44: 1, features: [{ name: 'EIP155' }, { name: 'EIP1559' }] }, + 4202: { + name: 'Lisk Sepolia Testnet', + chain: 'ETH', + rpc: ['https://rpc.sepolia-api.lisk.com'], + faucets: [], + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://lisk.com', + shortName: 'lisksep', + chainId: 4202, + networkId: 4202, + slip44: 134, + explorers: [ + { + name: 'liskscout', + url: 'https://sepolia-blockscout.lisk.com', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, 4242: { name: 'Nexi Mainnet', chain: 'Nexi', @@ -12356,6 +12960,8 @@ export const chains: Chains = { name: 'Beam', chain: 'BEAM', rpc: [ + 'https://build.onbeam.com/rpc', + 'wss://build.onbeam.com/ws', 'https://subnets.avax.network/beam/mainnet/rpc', 'wss://subnets.avax.network/beam/mainnet/ws' ], @@ -12439,6 +13045,41 @@ export const chains: Chains = { } ] }, + 4544: { + name: 'Emoney Network Testnet', + chain: 'Emoney', + rpc: ['https://testnet.emoney.network/'], + faucets: ['https://faucet.emoney.network/faucet'], + nativeCurrency: { name: 'Emoney Network', symbol: 'EMYC', decimals: 18 }, + infoURL: 'https://emoney.network/', + shortName: 'emoney', + chainId: 4544, + networkId: 4544, + slip44: 118, + icon: 'emoney', + explorers: [ + { + name: 'EMoney ethscan', + url: 'https://ethscan.emoney.network', + icon: 'emoney', + standard: 'EIP3091' + } + ] + }, + 4653: { + name: 'Gold Chain', + title: 'Gold Chain', + chain: 'Gold', + rpc: ['https://chain-rpc.gold.dev'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://gold.dev', + shortName: 'gold', + chainId: 4653, + networkId: 4653, + status: 'incubating', + icon: 'gold' + }, 4689: { name: 'IoTeX Network Mainnet', chain: 'iotex.io', @@ -12608,8 +13249,8 @@ export const chains: Chains = { icon: 'mantle', rpc: [ 'https://rpc.mantle.xyz', - 'https://mantle.publicnode.com', - 'wss://mantle.publicnode.com' + 'https://mantle-rpc.publicnode.com', + 'wss://mantle-rpc.publicnode.com' ], faucets: [], nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 }, @@ -12721,6 +13362,34 @@ export const chains: Chains = { } ] }, + 5100: { + name: 'Syndicate Testnet', + title: 'Syndicate Testnet', + chain: 'Syndicate', + rpc: ['https://rpc-testnet.syndicate.io'], + faucets: [], + nativeCurrency: { name: 'S-Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://syndicate.io', + shortName: 'syndicate-chain-testnet', + chainId: 5100, + networkId: 5100, + status: 'incubating', + icon: 'syndicate' + }, + 5101: { + name: 'Syndicate Frame Chain', + title: 'Syndicate Frame Chain', + chain: 'Syndicate Frame', + rpc: ['https://rpc-frame.syndicate.io'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://syndicate.io', + shortName: 'syndicate-chain-frame', + chainId: 5101, + networkId: 5101, + status: 'incubating', + icon: 'syndicate' + }, 5165: { name: 'Bahamut', title: 'Bahamut mainnet', @@ -12731,8 +13400,8 @@ export const chains: Chains = { 'https://rpc2.bahamut.io', 'wss://ws1.sahara.bahamutchain.com', 'wss://ws2.sahara.bahamutchain.com', - 'https://bahamut.publicnode.com', - 'wss://bahamut.publicnode.com' + 'https://bahamut-rpc.publicnode.com', + 'wss://bahamut-rpc.publicnode.com' ], features: [{ name: 'EIP155' }, { name: 'EIP1559' }], faucets: [], @@ -12973,7 +13642,9 @@ export const chains: Chains = { 'https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3', 'wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3', 'https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5', - 'wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5' + 'wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5', + 'https://opbnb-testnet-rpc.publicnode.com', + 'wss://opbnb-testnet-rpc.publicnode.com' ], faucets: ['https://testnet.bnbchain.org/faucet-smart'], nativeCurrency: { @@ -13019,7 +13690,7 @@ export const chains: Chains = { 'wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network' ], faucets: [], - nativeCurrency: { name: 'Unit', symbol: 'Unit', decimals: 18 }, + nativeCurrency: { name: 'TANGO', symbol: 'TANGO', decimals: 18 }, infoURL: 'https://tanssi.network', shortName: 'TanssiCC', chainId: 5678, @@ -13032,8 +13703,8 @@ export const chains: Chains = { rpc: [ 'https://rpc.tanenbaum.io', 'wss://rpc.tanenbaum.io/wss', - 'https://syscoin-tanenbaum-evm.publicnode.com', - 'wss://syscoin-tanenbaum-evm.publicnode.com' + 'https://syscoin-tanenbaum-evm-rpc.publicnode.com', + 'wss://syscoin-tanenbaum-evm-rpc.publicnode.com' ], faucets: ['https://faucet.tanenbaum.io'], nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 }, @@ -13551,14 +14222,17 @@ export const chains: Chains = { name: 'ZetaChain Mainnet', chain: 'ZetaChain', icon: 'zetachain', - rpc: ['https://api.mainnet.zetachain.com/evm'], + rpc: [ + 'https://zetachain-evm.blockpi.network/v1/rpc/public', + 'https://zetachain-mainnet-archive.allthatnode.com:8545' + ], faucets: [], nativeCurrency: { name: 'Zeta', symbol: 'ZETA', decimals: 18 }, infoURL: 'https://zetachain.com/docs/', shortName: 'zetachain-mainnet', chainId: 7000, networkId: 7000, - status: 'incubating', + status: 'active', explorers: [ { name: 'ZetaChain Mainnet Explorer', @@ -14508,8 +15182,8 @@ export const chains: Chains = { 'https://developer-access-mainnet.base.org/', 'https://base.gateway.tenderly.co', 'wss://base.gateway.tenderly.co', - 'https://base.publicnode.com', - 'wss://base.publicnode.com' + 'https://base-rpc.publicnode.com', + 'wss://base-rpc.publicnode.com' ], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, @@ -14829,6 +15503,30 @@ export const chains: Chains = { chainId: 8889, networkId: 8889 }, + 8890: { + name: 'Orenium Testnet Protocol', + chain: 'ORE', + rpc: [ + 'https://rpc-dev-testnet.orenium.org/', + 'https://rpc-testnet.orenium.org/' + ], + nativeCurrency: { name: 'ORENIUM', symbol: 'tORE', decimals: 18 }, + infoURL: 'https://orenium.org', + shortName: 'tore', + chainId: 8890, + networkId: 8890, + slip44: 1, + icon: 'ore', + faucets: ['https://faucetcoin.orenium.org'], + explorers: [ + { + name: 'ORE Testnet Explorer', + icon: 'ore', + url: 'https://testnet.oreniumscan.org', + standard: 'none' + } + ] + }, 8898: { name: 'Mammoth Mainnet', title: 'Mammoth Chain', @@ -14980,19 +15678,47 @@ export const chains: Chains = { ] }, 9024: { - name: 'Nexa Block', - chain: 'Nexa', + name: 'Nexa Testnet Block', + chain: 'Nexa Testnet', rpc: ['https://rpc-testnet-nodes.nexablockscan.io'], - faucets: ['https://nexablockscan.io/faucet'], - nativeCurrency: { name: 'Nexa Token', symbol: 'NEXB', decimals: 18 }, - infoURL: 'https://www.nexablock.io/', - shortName: 'Nexa', + faucets: ['https://testnet.nexablockscan.io/faucet'], + nativeCurrency: { + name: 'Nexa Testnet Token', + symbol: 'NEXB', + decimals: 18 + }, + infoURL: 'https://www.nexablock.io', + shortName: 'NexaTestnet', chainId: 9024, networkId: 9024, icon: 'nexaChain', explorers: [ { - name: 'Nexablock Explorer', + name: 'Nexablock Testnet Explorer', + url: 'https://testnet.nexablockscan.io', + standard: 'none', + icon: 'nexaChain' + } + ] + }, + 9025: { + name: 'Nexa Mainnet Block', + chain: 'Nexa Mainnet', + rpc: ['https://rpc-nodes.nexablockscan.io'], + faucets: [], + nativeCurrency: { + name: 'Nexa Mainnet Token', + symbol: 'NEXB', + decimals: 18 + }, + infoURL: 'https://www.nexablock.io', + shortName: 'Nexa', + chainId: 9025, + networkId: 9025, + icon: 'nexaChain', + explorers: [ + { + name: 'Nexablock Mainnet Explorer', url: 'https://nexablockscan.io', standard: 'none', icon: 'nexaChain' @@ -15064,6 +15790,27 @@ export const chains: Chains = { } ] }, + 9393: { + name: 'Dela Sepolia Testnet', + chain: 'ETH', + rpc: ['https://sepolia-dela.deperp.com'], + faucets: [], + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://www.deperp.com/dela', + shortName: 'delasep', + chainId: 9393, + networkId: 9393, + slip44: 1, + icon: 'delaTestnet', + explorers: [ + { + name: 'basescout', + url: 'https://sepolia-delascan.deperp.com', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, 9395: { name: 'Evoke Mainnet', chain: 'MTHN', @@ -15586,8 +16333,8 @@ export const chains: Chains = { 'https://rpc.chiadochain.net', 'https://rpc.chiado.gnosis.gateway.fm', 'wss://rpc.chiadochain.net/wss', - 'https://gnosis-chiado.publicnode.com', - 'wss://gnosis-chiado.publicnode.com' + 'https://gnosis-chiado-rpc.publicnode.com', + 'wss://gnosis-chiado-rpc.publicnode.com' ], faucets: ['https://gnosisfaucet.com'], nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 }, @@ -15926,8 +16673,8 @@ export const chains: Chains = { chain: 'Haqq', rpc: [ 'https://rpc.eth.haqq.network', - 'https://haqq-evm.publicnode.com', - 'wss://haqq-evm.publicnode.com' + 'https://haqq-evm-rpc.publicnode.com', + 'wss://haqq-evm-rpc.publicnode.com' ], faucets: [], nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 }, @@ -15967,6 +16714,25 @@ export const chains: Chains = { } ] }, + 11503: { + name: 'BEVM Testnet', + chain: 'BEVM', + rpc: ['https://testnet.bevm.io/'], + faucets: [], + nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 }, + infoURL: 'https://bevm.io', + shortName: 'bevm', + chainId: 11503, + networkId: 11503, + icon: 'bevmcanary', + explorers: [ + { + name: 'bevm testnet scan', + url: 'https://scan-testnet.bevm.io', + standard: 'none' + } + ] + }, 11612: { name: 'Sardis Testnet', chain: 'SRDX', @@ -16049,6 +16815,26 @@ export const chains: Chains = { } ] }, + 12020: { + name: 'Aternos', + chain: 'Aternos', + icon: 'aternos', + rpc: ['https://rpc.aternoschain.com'], + faucets: ['https://faucet.aternoschain.com'], + nativeCurrency: { name: 'Aternos', symbol: 'ATR', decimals: 18 }, + infoURL: 'https://aternoschain.com', + shortName: 'ATR', + chainId: 12020, + networkId: 12020, + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.aternoschain.com', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, 12051: { name: 'Singularity ZERO Testnet', chain: 'ZERO', @@ -16284,6 +17070,8 @@ export const chains: Chains = { name: 'Beam Testnet', chain: 'BEAM', rpc: [ + 'https://build.onbeam.com/rpc/testnet', + 'wss://build.onbeam.com/ws/testnet', 'https://subnets.avax.network/beam/testnet/rpc', 'wss://subnets.avax.network/beam/testnet/ws' ], @@ -16406,6 +17194,32 @@ export const chains: Chains = { } ] }, + 14333: { + name: 'Vitruveo Testnet', + title: 'Vitruveo is a blockchain for Creators', + chain: 'Vitruveo', + rpc: ['https://test-rpc.vitruveo.xyz'], + faucets: ['https://faucet.vitruveo.xyz'], + nativeCurrency: { + name: 'Vitruveo Test Coin', + symbol: 'tVTRU', + decimals: 18 + }, + features: [{ name: 'EIP155' }], + infoURL: 'https://www.vitruveo.xyz', + shortName: 'vitruveo-test', + chainId: 14333, + networkId: 14333, + icon: 'vitruveo', + explorers: [ + { + name: 'Vitruveo Testnet Explorer', + url: 'https://test-explorer.vitruveo.xyz', + icon: 'vitruveo', + standard: 'EIP3091' + } + ] + }, 14853: { name: 'Humanode Testnet 5 Israfel', chain: 'Humanode Testnet 5', @@ -16615,8 +17429,8 @@ export const chains: Chains = { chain: 'ETH', rpc: [ 'https://rpc.holesky.ethpandaops.io', - 'https://ethereum-holesky.publicnode.com', - 'wss://ethereum-holesky.publicnode.com' + 'https://ethereum-holesky-rpc.publicnode.com', + 'wss://ethereum-holesky-rpc.publicnode.com' ], faucets: [ 'https://faucet.holesky.ethpandaops.io', @@ -16736,6 +17550,26 @@ export const chains: Chains = { } ] }, + 17217: { + name: 'KONET Mainnet', + chain: 'KONET', + rpc: ['https://api.kon-wallet.com'], + faucets: [], + nativeCurrency: { name: 'KONET', symbol: 'KONET', decimals: 18 }, + infoURL: 'https://konetmain.com', + shortName: 'KONET', + chainId: 17217, + networkId: 17217, + slip44: 1, + icon: 'konet', + explorers: [ + { + name: 'konet-explorer', + url: 'https://explorer.kon-wallet.com', + standard: 'EIP3091' + } + ] + }, 17777: { name: 'EOS EVM Network', chain: 'EOS', @@ -16847,6 +17681,36 @@ export const chains: Chains = { } ] }, + 18231: { + name: 'unreal', + title: 'unreal testnet for re.al', + chain: 'unreal', + rpc: [ + 'https://rpc.unreal.gelato.digital', + 'wss://ws.unreal.gelato.digital' + ], + nativeCurrency: { name: 'unreal Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://raas.gelato.network/rollups/details/public/unreal', + faucets: [], + shortName: 'unreal', + chainId: 18231, + networkId: 18231, + slip44: 60, + icon: 'unreal', + explorers: [ + { + name: 'blockscout', + url: 'https://unreal.blockscout.com', + icon: 'unreal', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-11155111', + bridges: [{ url: 'https://bridge.unreal.gelato.digital' }] + } + }, 18686: { name: 'MXC zkEVM Mainnet', chain: 'MXC zkEVM', @@ -16866,6 +17730,30 @@ export const chains: Chains = { } ] }, + 18889: { + name: 'Titan (TKX) Testnet', + chain: 'Titan (TKX)', + rpc: [ + 'https://titan-testnet-json-rpc-1.tokenize-dev.com', + 'https://titan-testnet-json-rpc-2.tokenize-dev.com' + ], + faucets: [], + nativeCurrency: { name: 'Titan tkx', symbol: 'TKX', decimals: 18 }, + infoURL: 'https://tokenize.exchange', + shortName: 'titan_tkx-testnet', + chainId: 18889, + networkId: 18889, + slip44: 1, + icon: 'titan_tkx', + explorers: [ + { + name: 'Titan Explorer', + url: 'https://titan-testnet-explorer-light.tokenize-dev.com', + standard: 'none', + icon: 'titan_tkx' + } + ] + }, 19011: { name: 'HOME Verse Mainnet', chain: 'HOME Verse', @@ -16987,6 +17875,44 @@ export const chains: Chains = { } ] }, + 21004: { + name: 'C4EI', + chain: 'C4EI', + rpc: ['https://rpc.c4ei.net'], + faucets: ['https://play.google.com/store/apps/details?id=net.c4ei.fps2'], + nativeCurrency: { name: 'C4EI', symbol: 'C4EI', decimals: 18 }, + infoURL: 'https://c4ei.net', + shortName: 'c4ei', + chainId: 21004, + networkId: 21004, + explorers: [ + { + name: 'C4EI sirato', + url: 'https://exp.c4ei.net', + icon: 'c4ei', + standard: 'none' + } + ] + }, + 21133: { + name: 'All About Healthy', + chain: 'AAH', + rpc: ['https://rpc.c4ex.net'], + faucets: ['https://t.me/c4eiAirdrop'], + nativeCurrency: { name: 'AAH', symbol: 'AAH', decimals: 18 }, + infoURL: 'https://c4ex.net', + shortName: 'aah', + chainId: 21133, + networkId: 21133, + explorers: [ + { + name: 'AAH Blockscout', + url: 'https://exp.c4ex.net', + icon: 'aah', + standard: 'EIP3091' + } + ] + }, 21337: { name: 'CENNZnet Azalea', chain: 'CENNZnet', @@ -17131,19 +18057,23 @@ export const chains: Chains = { ] }, 22776: { - name: 'MAP Mainnet', - chain: 'MAP', + name: 'MAP Protocol', + chain: 'MAPO', icon: 'map', rpc: ['https://rpc.maplabs.io'], faucets: [], nativeCurrency: { name: 'MAPO', symbol: 'MAPO', decimals: 18 }, - infoURL: 'https://maplabs.io', - shortName: 'map', + infoURL: 'https://mapprotocol.io/', + shortName: 'mapo', chainId: 22776, networkId: 22776, slip44: 60, explorers: [ - { name: 'mapscan', url: 'https://mapscan.io', standard: 'EIP3091' } + { + name: 'maposcan', + url: 'https://maposcan.io', + standard: 'EIP3091' + } ] }, 23006: { @@ -17293,6 +18223,26 @@ export const chains: Chains = { } ] }, + 25839: { + name: 'AlveyChain Testnet', + chain: 'tALV', + rpc: ['https://testnet-rpc.alvey.io'], + faucets: ['https://faucet.alveytestnet.com'], + nativeCurrency: { name: 'AlveyCoin Testnet', symbol: 'tALV', decimals: 18 }, + infoURL: 'https://alveychain.com/', + shortName: 'talv', + chainId: 25839, + networkId: 25839, + icon: 'alveychain', + explorers: [ + { + name: 'AlveyScan Testnet', + url: 'https://alveytestnet.com', + icon: 'alveychain', + standard: 'EIP3091' + } + ] + }, 25888: { name: 'Hammer Chain Mainnet', chain: 'HammerChain', @@ -17843,7 +18793,7 @@ export const chains: Chains = { chain: 'Q', rpc: ['https://rpc.q.org'], faucets: [], - nativeCurrency: { name: 'Q token', symbol: 'Q', decimals: 18 }, + nativeCurrency: { name: 'QGOV', symbol: 'QGOV', decimals: 18 }, infoURL: 'https://q.org', shortName: 'q', chainId: 35441, @@ -18227,8 +19177,8 @@ export const chains: Chains = { icon: 'avax', rpc: [ 'https://api.avax-test.network/ext/bc/C/rpc', - 'https://avalanche-fuji-c-chain.publicnode.com', - 'wss://avalanche-fuji-c-chain.publicnode.com' + 'https://avalanche-fuji-c-chain-rpc.publicnode.com', + 'wss://avalanche-fuji-c-chain-rpc.publicnode.com' ], faucets: ['https://faucet.avax-test.network/'], nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 }, @@ -18251,8 +19201,8 @@ export const chains: Chains = { icon: 'avax', rpc: [ 'https://api.avax.network/ext/bc/C/rpc', - 'https://avalanche-c-chain.publicnode.com', - 'wss://avalanche-c-chain.publicnode.com' + 'https://avalanche-c-chain-rpc.publicnode.com', + 'wss://avalanche-c-chain-rpc.publicnode.com' ], features: [{ name: 'EIP1559' }], faucets: [], @@ -18488,6 +19438,28 @@ export const chains: Chains = { } ] }, + 49321: { + name: 'GUNZ Testnet', + chain: 'tGUN', + rpc: [ + 'https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc' + ], + faucets: [], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + nativeCurrency: { name: 'GUN', symbol: 'GUN', decimals: 18 }, + icon: 'guntestnet', + infoURL: 'https://gunbygunz.com', + shortName: 'Stork', + chainId: 49321, + networkId: 49321, + explorers: [ + { + name: 'blockscout', + url: 'https://testnet.gunzscan.io', + standard: 'EIP3091' + } + ] + }, 49797: { name: 'Energi Testnet', chain: 'NRG', @@ -18638,6 +19610,27 @@ export const chains: Chains = { } ] }, + 53277: { + name: 'DOID', + chain: 'DOID', + rpc: ['https://rpc.doid.tech'], + faucets: [], + nativeCurrency: { name: 'DOID', symbol: 'DOID', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://doid.tech', + shortName: 'DOID', + chainId: 53277, + networkId: 53277, + icon: 'doid', + explorers: [ + { + name: 'DOID Scan', + url: 'https://scan.doid.tech', + icon: 'doid', + standard: 'EIP3091' + } + ] + }, 53935: { name: 'DFK Chain', chain: 'DFK', @@ -18807,6 +19800,27 @@ export const chains: Chains = { } ] }, + 56797: { + name: 'DOID Testnet', + chain: 'DOID', + rpc: ['https://rpc.testnet.doid.tech'], + faucets: [], + nativeCurrency: { name: 'DOID', symbol: 'DOID', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://doid.tech', + shortName: 'doidTestnet', + chainId: 56797, + networkId: 56797, + icon: 'doid', + explorers: [ + { + name: 'DOID Testnet Scan', + url: 'https://scan.testnet.doid.tech', + icon: 'doid', + standard: 'EIP3091' + } + ] + }, 57000: { name: 'Rollux Testnet', chain: 'SYS', @@ -19686,6 +20700,31 @@ export const chains: Chains = { } ] }, + 78600: { + name: 'Vanguard', + title: 'Vanar Testnet Vanguard', + chain: 'VANAR', + rpc: [ + 'https://rpc-vanguard.vanarchain.com', + 'wss://ws-vanguard.vanarchain.com' + ], + faucets: ['https://faucet.vanarchain.com'], + nativeCurrency: { name: 'Vanguard Vanry', symbol: 'VG', decimals: 18 }, + features: [{ name: 'EIP155' }], + infoURL: 'https://vanarchain.com', + shortName: 'vanguard', + chainId: 78600, + networkId: 78600, + icon: 'vanguard', + explorers: [ + { + name: 'Vanguard Explorer', + url: 'https://explorer-vanguard.vanarchain.com', + icon: 'vanguard', + standard: 'EIP3091' + } + ] + }, 79879: { name: 'Gold Smart Chain Testnet', chain: 'STAND', @@ -19713,8 +20752,8 @@ export const chains: Chains = { icon: 'polygon', rpc: [ 'https://rpc-mumbai.maticvigil.com', - 'https://polygon-mumbai-bor.publicnode.com', - 'wss://polygon-mumbai-bor.publicnode.com', + 'https://polygon-mumbai-bor-rpc.publicnode.com', + 'wss://polygon-mumbai-bor-rpc.publicnode.com', 'https://polygon-mumbai.gateway.tenderly.co', 'wss://polygon-mumbai.gateway.tenderly.co' ], @@ -19756,6 +20795,25 @@ export const chains: Chains = { } ] }, + 80096: { + name: 'Hizoco mainnet', + chain: 'HZC', + icon: 'hizoco', + rpc: ['https://hizoco.net/rpc'], + faucets: [], + nativeCurrency: { name: 'Hizoco', symbol: 'HZC', decimals: 18 }, + infoURL: 'http://hizoco.net', + shortName: 'hzc', + chainId: 80096, + networkId: 80096, + explorers: [ + { + name: 'blockscout', + url: 'https://hizoco.net:38443', + standard: 'none' + } + ] + }, 81041: { name: 'Nordek Mainnet', chain: 'Nordek', @@ -19895,6 +20953,21 @@ export const chains: Chains = { networkId: 81363, status: 'incubating' }, + 81457: { + name: 'Blast', + status: 'incubating', + chain: 'ETH', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://blast.io/', + shortName: 'blastmainnet', + chainId: 81457, + networkId: 81457, + icon: 'blast', + explorers: [], + parent: { type: 'L2', chain: 'eip155-1' } + }, 81720: { name: 'Quantum Chain Mainnet', chain: 'QNET', @@ -19939,8 +21012,8 @@ export const chains: Chains = { 'https://goerli.base.org', 'https://base-goerli.gateway.tenderly.co', 'wss://base-goerli.gateway.tenderly.co', - 'https://base-goerli.publicnode.com', - 'wss://base-goerli.publicnode.com' + 'https://base-goerli-rpc.publicnode.com', + 'wss://base-goerli-rpc.publicnode.com' ], faucets: ['https://www.coinbase.com/faucets/base-ethereum-goerli-faucet'], nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 }, @@ -19973,7 +21046,11 @@ export const chains: Chains = { 84532: { name: 'Base Sepolia Testnet', chain: 'ETH', - rpc: ['https://sepolia.base.org'], + rpc: [ + 'https://https://sepolia.base.org', + 'https://base-sepolia-rpc.publicnode.com', + 'wss://base-sepolia-rpc.publicnode.com' + ], faucets: [], nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://base.org', @@ -20130,6 +21207,26 @@ export const chains: Chains = { } ] }, + 91120: { + name: 'MetaDAP Enterprise Mainnet', + title: 'MetaDAP Enterprise Mainnet', + chain: 'MetaDAP', + icon: 'metadap', + faucets: [], + rpc: ['https://rpc.chain.metadap.io', 'wss://rpc-ws.chain.metadap.io'], + nativeCurrency: { name: 'DAP', symbol: 'DAP', decimals: 18 }, + infoURL: 'https://metadap.io/', + shortName: 'MetaDAP', + chainId: 91120, + networkId: 91120, + explorers: [ + { + name: 'MetaDAP Enterprise Mainnet explorer', + url: 'https://explorer.chain.metadap.io', + standard: 'none' + } + ] + }, 91715: { name: 'Combo Testnet', chain: 'Combo', @@ -20572,6 +21669,25 @@ export const chains: Chains = { } ] }, + 103454: { + name: 'Masa Testnet', + chain: 'MASA', + rpc: ['https://subnets.avax.network/masatestne/testnet/rpc'], + features: [{ name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'Masa Token', symbol: 'MASA', decimals: 18 }, + infoURL: 'https://masa.finance', + shortName: 'masa', + chainId: 103454, + networkId: 103454, + explorers: [ + { + name: 'Masa Testnet Explorer', + url: 'https://subnets-test.avax.network/masatestnet', + standard: 'EIP3091' + } + ] + }, 108801: { name: 'BROChain Mainnet', chain: 'BRO', @@ -20849,6 +21965,29 @@ export const chains: Chains = { } ] }, + 119139: { + name: 'MetaDAP Enterprise Testnet', + title: 'MetaDAP Enterprise Testnet', + chain: 'MetaDAP', + icon: 'metadap', + faucets: [], + rpc: [ + 'https://rpc.testnet.chain.metadap.io', + 'wss://rpc-ws.testnet.chain.metadap.io' + ], + nativeCurrency: { name: 'DAP', symbol: 'DAP', decimals: 18 }, + infoURL: 'https://metadap.io/', + shortName: 'MetaDAP-T', + chainId: 119139, + networkId: 119139, + explorers: [ + { + name: 'MetaDAP Enterprise Testnet explorer', + url: 'https://explorer.testnet.chain.metadap.io', + standard: 'none' + } + ] + }, 123456: { name: 'ADIL Devnet', chain: 'ADIL', @@ -21013,7 +22152,7 @@ export const chains: Chains = { chain: 'ETH', status: 'active', icon: 'taiko', - rpc: ['https://rpc.katla.taiko.xyz'], + rpc: ['https://rpc.katla.taiko.xyz', 'wss://rpc.katla.taiko.xyz'], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://taiko.xyz', @@ -21125,6 +22264,26 @@ export const chains: Chains = { networkId: 200625, slip44: 200625 }, + 200810: { + name: 'Bitlayer Testnet', + chain: 'Bitlayer', + rpc: ['https://testnet-rpc.bitlayer.org', 'wss://testnet-ws.bitlayer.org'], + faucets: ['https://www.bitlayer.org/faucet'], + nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 }, + infoURL: 'https://docs.bitlayer.org/', + shortName: 'Bitlayer', + chainId: 200810, + networkId: 200810, + slip44: 1, + icon: 'bitlayer', + explorers: [ + { + name: 'bitlayer testnet scan', + url: 'https://testnet-scan.bitlayer.org', + standard: 'none' + } + ] + }, 201018: { name: 'Alaya Mainnet', chain: 'Alaya', @@ -21613,6 +22772,25 @@ export const chains: Chains = { { name: 'Beryx', url: 'https://beryx.zondax.ch', standard: 'none' } ] }, + 323213: { + name: 'Bloom Genesis Testnet', + chain: 'Bloom', + icon: 'bloom', + rpc: ['https://testnet-rpc.bloomgenesis.com'], + faucets: ['https://faucet.bloomgenesis.com'], + nativeCurrency: { name: 'Bloom', symbol: 'BGBC', decimals: 18 }, + infoURL: 'https://www.bloomgenesis.com', + shortName: 'BGBC-Testnet', + chainId: 323213, + networkId: 323213, + explorers: [ + { + name: 'Bloom Genesis Testnet', + url: 'https://testnet.bloomgenesis.com', + standard: 'EIP3091' + } + ] + }, 330844: { name: 'TTcoin Smart Chain Mainnet', chain: 'TSC', @@ -21633,6 +22811,25 @@ export const chains: Chains = { } ] }, + 333313: { + name: 'Bloom Genesis Mainnet', + chain: 'Bloom', + icon: 'bloom', + rpc: ['https://mainnet-rpc.bloomgenesis.com'], + faucets: [], + nativeCurrency: { name: 'Bloom', symbol: 'BGBC', decimals: 18 }, + infoURL: 'https://www.bloomgenesis.com', + shortName: 'BGBC', + chainId: 333313, + networkId: 333313, + explorers: [ + { + name: 'Bloom Genesis Mainnet', + url: 'https://explorer.bloomgenesis.com', + standard: 'EIP3091' + } + ] + }, 333331: { name: 'Aves Testnet', chain: 'AVST', @@ -22087,6 +23284,30 @@ export const chains: Chains = { } ] }, + 444444: { + name: 'Syndr L3 Sepolia', + title: 'Syndr L3 Sepolia Rollup Testnet', + chain: 'SYNDRSEPOLIA', + rpc: ['https://sepolia.syndr.com/http', 'wss://sepolia.syndr.com/ws'], + faucets: [], + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://syndr.com', + shortName: 'syndr', + chainId: 444444, + networkId: 444444, + explorers: [ + { + name: 'Syndr L3 Sepolia Testnet Explorer', + url: 'https://sepolia-explorer.syndr.com', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-421614', + bridges: [{ url: 'https://sepolia-bridge.syndr.com' }] + } + }, 444900: { name: 'Weelink Testnet', chain: 'WLK', @@ -22455,6 +23676,36 @@ export const chains: Chains = { } ] }, + 713715: { + name: 'Sei Devnet', + chain: 'Sei', + rpc: [ + 'https://evm-rpc-arctic-1.sei-apis.com', + 'https://evm-rpc.arctic-1.seinetwork.io' + ], + faucets: [ + 'https://sei-faucet.nima.enterprises', + 'https://sei-evm.faucetme.pro' + ], + nativeCurrency: { name: 'Sei', symbol: 'SEI', decimals: 18 }, + infoURL: 'https://www.sei.io', + shortName: 'sei-devnet', + chainId: 713715, + networkId: 713715, + icon: 'sei', + explorers: [ + { + name: 'Seistream', + url: 'https://seistream.app', + standard: 'none' + }, + { + name: 'Seitrace', + url: 'https://seitrace.com', + standard: 'EIP3091' + } + ] + }, 751230: { name: 'Bear Network Chain Testnet', chain: 'BRNKCTEST', @@ -23541,8 +24792,8 @@ export const chains: Chains = { 'wss://sepolia.infura.io/v3/${INFURA_API_KEY}', 'https://sepolia.gateway.tenderly.co', 'wss://sepolia.gateway.tenderly.co', - 'https://ethereum-sepolia.publicnode.com', - 'wss://ethereum-sepolia.publicnode.com' + 'https://ethereum-sepolia-rpc.publicnode.com', + 'wss://ethereum-sepolia-rpc.publicnode.com' ], faucets: ['http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'], nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, @@ -23875,6 +25126,30 @@ export const chains: Chains = { chainId: 35855456, networkId: 35855456 }, + 37084624: { + name: 'SKALE Nebula Hub Testnet', + title: 'SKALE Nebula Hub Testnet', + chain: 'lanky-ill-funny-testnet', + icon: 'nebula', + rpc: [ + 'https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet', + 'wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet' + ], + faucets: ['https://www.sfuelstation.com/'], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://nebulachain.io/', + shortName: 'nebula-testnet', + chainId: 37084624, + networkId: 37084624, + slip44: 1, + explorers: [ + { + name: 'Blockscout', + url: 'https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com', + standard: 'EIP3091' + } + ] + }, 43214913: { name: 'maistestsubnet', chain: 'MAI', @@ -24048,6 +25323,37 @@ export const chains: Chains = { networkId: 99415706, slip44: 1 }, + 161221135: { + name: 'Plume Testnet', + title: 'Plume Sepolia Rollup Testnet', + chain: 'ETH', + rpc: ['https://plume-testnet.rpc.caldera.xyz/http'], + faucets: [], + nativeCurrency: { + name: 'Plume Sepolia Ether', + symbol: 'ETH', + decimals: 18 + }, + infoURL: 'https://www.plumenetwork.xyz/', + shortName: 'plume-testnet', + chainId: 161221135, + networkId: 161221135, + slip44: 1, + icon: 'plume', + explorers: [ + { + name: 'Blockscout', + url: 'https://plume-testnet.explorer.caldera.xyz', + icon: 'blockscout', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-11155111', + bridges: [{ url: 'https://plume-testnet.calderabridge.xyz' }] + } + }, 168587773: { name: 'Blast Sepolia Testnet', chain: 'ETH', @@ -24260,15 +25566,16 @@ export const chains: Chains = { ] }, 344106930: { - name: 'SKALE Calypso Hub Testnet', - title: 'Calypso NFT Hub Testnet', + name: 'Deprecated SKALE Calypso Hub Testnet', + title: 'Deprecated Calypso NFT Hub Testnet', + status: 'deprecated', chain: 'staging-utter-unripe-menkar', icon: 'calypso', rpc: ['https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar'], faucets: ['https://sfuel.dirtroad.dev/staging'], nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, infoURL: 'https://calypsohub.network/', - shortName: 'calypso-testnet', + shortName: 'deprected-calypso-testnet', chainId: 344106930, networkId: 344106930, slip44: 1, @@ -24303,15 +25610,16 @@ export const chains: Chains = { ] }, 476158412: { - name: 'SKALE Europa Hub Testnet', - title: 'Europa Hub Testnet', + name: 'Deprecated SKALE Europa Hub Testnet', + title: 'Deprecated Europa Hub Testnet', + status: 'deprecated', chain: 'staging-legal-crazy-castor', icon: 'europa', rpc: ['https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor'], faucets: ['https://sfuel.dirtroad.dev/staging'], nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, infoURL: 'https://europahub.network/', - shortName: 'europa-testnet', + shortName: 'deprecated-europa-testnet', chainId: 476158412, networkId: 476158412, slip44: 1, @@ -24343,8 +25651,9 @@ export const chains: Chains = { ] }, 503129905: { - name: 'SKALE Nebula Hub Testnet', + name: 'Deprecated SKALE Nebula Hub Testnet', chain: 'staging-faint-slimy-achird', + status: 'deprecated', icon: 'nebula', rpc: [ 'https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird', @@ -24353,7 +25662,7 @@ export const chains: Chains = { faucets: ['https://sfuel.dirtroad.dev/staging'], nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, infoURL: 'https://nebulachain.io/', - shortName: 'nebula-testnet', + shortName: 'deprecated-nebula-testnet', chainId: 503129905, networkId: 503129905, slip44: 1, @@ -24366,6 +25675,46 @@ export const chains: Chains = { } ] }, + 888888888: { + name: 'Ancient8', + chain: 'Ancient8', + icon: 'ancient8', + rpc: ['https://rpc.ancient8.gg'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://ancient8.gg/', + shortName: 'ancient8', + chainId: 888888888, + networkId: 888888888, + explorers: [ + { + name: 'Ancient8 Explorer', + url: 'https://scan.ancient8.gg', + standard: 'EIP3091' + } + ] + }, + 974399131: { + name: 'SKALE Calypso Hub Testnet', + title: 'SKALE Calypso Hub Testnet', + chain: 'giant-half-dual-testnet', + icon: 'calypso', + rpc: ['https://testnet.skalenodes.com/v1/giant-half-dual-testnet'], + faucets: ['https://www.sfuelstation.com/'], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://calypsohub.network/', + shortName: 'calypso-testnet', + chainId: 974399131, + networkId: 974399131, + slip44: 1, + explorers: [ + { + name: 'Blockscout', + url: 'https://giant-half-dual-testnet.explorer.testnet.skalenodes.com', + standard: 'EIP3091' + } + ] + }, 999999999: { name: 'Zora Sepolia Testnet', chain: 'ETH', @@ -24386,6 +25735,30 @@ export const chains: Chains = { } ] }, + 1020352220: { + name: 'SKALE Titan Hub Testnet', + title: 'SKALE Titan Hub Testnet', + chain: 'aware-fake-trim-testnet', + icon: 'titan', + rpc: [ + 'https://testnet.skalenodes.com/v1/aware-fake-trim-testnet', + 'wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet' + ], + faucets: ['https://www.sfuelstation.com/'], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: '', + shortName: 'titan-testnet', + chainId: 1020352220, + networkId: 1020352220, + slip44: 1, + explorers: [ + { + name: 'Blockscout', + url: 'https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com', + standard: 'EIP3091' + } + ] + }, 1122334455: { name: 'IPOS Network', chain: 'IPOS', @@ -24490,6 +25863,25 @@ export const chains: Chains = { chainId: 1313161556, networkId: 1313161556 }, + 1313161560: { + name: 'PowerGold', + chain: 'NEAR', + rpc: ['https://powergold.aurora.dev'], + icon: 'powergold', + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://www.powergold.tech', + shortName: 'powergold', + chainId: 1313161560, + networkId: 1313161560, + explorers: [ + { + name: 'PowerGold explorer', + url: 'https://explorer.powergold.aurora.dev', + standard: 'EIP3091' + } + ] + }, 1350216234: { name: 'SKALE Titan Hub', chain: 'parallel-stormy-spica', @@ -24555,6 +25947,27 @@ export const chains: Chains = { } ] }, + 1444673419: { + name: 'SKALE Europa Hub Testnet', + title: 'SKALE Europa Hub Testnet', + chain: 'juicy-low-small-testnet', + icon: 'europa', + rpc: ['https://testnet.skalenodes.com/v1/juicy-low-small-testnet'], + faucets: ['https://www.sfuelstation.com/'], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://europahub.network/', + shortName: 'europa-testnet', + chainId: 1444673419, + networkId: 1444673419, + slip44: 1, + explorers: [ + { + name: 'Blockscout', + url: 'https://juicy-low-small-testnet.explorer.testnet.skalenodes.com', + standard: 'EIP3091' + } + ] + }, 1482601649: { name: 'SKALE Nebula Hub', chain: 'green-giddy-denebola', @@ -24578,8 +25991,9 @@ export const chains: Chains = { ] }, 1517929550: { - name: 'SKALE Titan Hub Testnet', + name: 'Deprecated SKALE Titan Hub Testnet', chain: 'staging-aware-chief-gianfar', + status: 'deprecated', icon: 'titan', rpc: [ 'https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar', @@ -24588,7 +26002,7 @@ export const chains: Chains = { faucets: ['https://sfuel.dirtroad.dev/staging'], nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, infoURL: '', - shortName: 'titan-testnet', + shortName: 'deprecated-titan-testnet', chainId: 1517929550, networkId: 1517929550, slip44: 1, @@ -24916,6 +26330,36 @@ export const chains: Chains = { } ] }, + 28872323069: { + name: 'GitSwarm Test Network', + title: 'GitSwarm Test Network', + chain: 'ETH', + icon: 'gitswarm', + rpc: ['https://gitswarm.com:2096'], + faucets: [], + nativeCurrency: { name: 'GitSwarm Ether', symbol: 'GS-ETH', decimals: 18 }, + infoURL: 'https://gitswarm.com/', + shortName: 'GS-ETH', + chainId: 28872323069, + networkId: 28872323069, + slip44: 1, + explorers: [], + status: 'incubating' + }, + 107107114116: { + name: 'Kakarot Sepolia', + chain: 'ETH', + icon: 'kakarot', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://kakarot.org', + shortName: 'kkrt-sepolia', + chainId: 107107114116, + networkId: 107107114116, + explorers: [], + parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] } + }, 111222333444: { name: 'Alphabet Mainnet', chain: 'Alphabet Network', diff --git a/src/enums.ts b/src/enums.ts index 084f824..a4b96b0 100644 --- a/src/enums.ts +++ b/src/enums.ts @@ -14,7 +14,7 @@ export enum ChainName { DiodeTestnetStaging = 'Diode Testnet Staging', FlareMainnet = 'Flare Mainnet', DiodePrenet = 'Diode Prenet', - FlareTestnetCoston = 'Flare Testnet Coston', + SongbirdTestnetCoston = 'Songbird Testnet Coston', 'ThaiChain2.0ThaiFi' = 'ThaiChain 2.0 ThaiFi', ThunderCoreTestnet = 'ThunderCore Testnet', 'SongbirdCanary-Network' = 'Songbird Canary-Network', @@ -146,6 +146,7 @@ export enum ChainName { RedbellyNetworkTGE = 'Redbelly Network TGE', TenetTestnet = 'Tenet Testnet', OEBlockTestnet = 'OEBlock Testnet', + PuppynetShibarium = 'Puppynet Shibarium', ArmoniaEvaChainMainnet = 'Armonia Eva Chain Mainnet', ArmoniaEvaChainTestnet = 'Armonia Eva Chain Testnet', LightstreamsTestnet = 'Lightstreams Testnet', @@ -174,15 +175,17 @@ export enum ChainName { StructxMainnet = 'Structx Mainnet', Bitnet = 'Bitnet', FreightTrustNetwork = 'Freight Trust Network', - MAPMakalu = 'MAP Makalu', + MAPOMakalu = 'MAPO Makalu', ShinariumMainnet = 'Shinarium Mainnet', SiriusNetV2 = 'SiriusNet V2', SoterOneMainnetold = 'SoterOne Mainnet old', ScalindTestnet = 'Scalind Testnet', Permission = 'Permission', + ViridisTestnet = 'Viridis Testnet', LACHAINMainnet = 'LACHAIN Mainnet', LACHAINTestnet = 'LACHAIN Testnet', SwapDEX = 'SwapDEX', + ProtoJumboTestnet = 'ProtoJumbo Testnet', DeamchainTestnet = 'Deamchain Testnet', BlastMainnet = 'Blast Mainnet', PlingaMainnet = 'Plinga Mainnet', @@ -198,6 +201,7 @@ export enum ChainName { HighPerformanceBlockchain = 'High Performance Blockchain', EgonCoinMainnet = 'EgonCoin Mainnet', LaChain = 'LaChain', + BPXBlockchain = 'BPX Blockchain', 'ZkSyncEraGoerliTestnet(deprecated)' = 'zkSync Era Goerli Testnet (deprecated)', BobaNetwork = 'Boba Network', OrderlyMainnet = 'Orderly Mainnet', @@ -208,12 +212,15 @@ export enum ChainName { ZkSyncSepoliaTestnet = 'zkSync Sepolia Testnet', Bobaopera = 'Bobaopera', NeurochainTestnet = 'Neurochain Testnet', + ZKSatsMainnet = 'ZKSats Mainnet', + LovelyNetworkTestnet = 'Lovely Network Testnet', WyzthTestnet = 'Wyzth Testnet', OmaxMainnet = 'Omax Mainnet', NeurochainMainnet = 'Neurochain Mainnet', 'Filecoin-Mainnet' = 'Filecoin - Mainnet', KCCMainnet = 'KCC Mainnet', KCCTestnet = 'KCC Testnet', + CosvmMainnet = 'Cosvm Mainnet', ZkSyncMainnet = 'zkSync Mainnet', Web3QMainnet = 'Web3Q Mainnet', DFKChainTest = 'DFK Chain Test', @@ -235,6 +242,7 @@ export enum ChainName { SXNetworkMainnet = 'SX Network Mainnet', LaTestnet = 'LaTestnet', OptimismGoerliTestnet = 'Optimism Goerli Testnet', + ViridisMainnet = 'Viridis Mainnet', 'PGN(PublicGoodsNetwork)' = 'PGN (Public Goods Network)', ZeethChain = 'Zeeth Chain', GesoVerse = 'Geso Verse', @@ -246,6 +254,7 @@ export enum ChainName { Rupaya = 'Rupaya', 'CaminoC-Chain' = 'Camino C-Chain', ColumbusTestNetwork = 'Columbus Test Network', + SyndicateChain = 'Syndicate Chain', 'Double-AChainMainnet' = 'Double-A Chain Mainnet', 'Double-AChainTestnet' = 'Double-A Chain Testnet', GearZeroNetworkMainnet = 'Gear Zero Network Mainnet', @@ -283,9 +292,11 @@ export enum ChainName { BlockChainStationMainnet = 'BlockChain Station Mainnet', BlockChainStationTestnet = 'BlockChain Station Testnet', Highbury = 'Highbury', + VrcscanMainnet = 'Vrcscan Mainnet', ShibariumBeta = 'Shibarium Beta', LycanChain = 'Lycan Chain', Blucrates = 'Blucrates', + LovelyNetworkMainnet = 'Lovely Network Mainnet', CantoTestnet = 'Canto Testnet', VentionSmartChainTestnet = 'Vention Smart Chain Testnet', ScriptTestnet = 'Script Testnet', @@ -296,6 +307,7 @@ export enum ChainName { AcalaNetwork = 'Acala Network', AerochainTestnet = 'Aerochain Testnet', Patex = 'Patex', + RupayaTestnet = 'Rupaya Testnet', LucidBlockchain = 'Lucid Blockchain', Haic = 'Haic', PortalFantasyChainTest = 'Portal Fantasy Chain Test', @@ -305,6 +317,7 @@ export enum ChainName { BeOneChainMainnet = 'BeOne Chain Mainnet', CallistoMainnet = 'Callisto Mainnet', CallistoTestnetDeprecated = 'Callisto Testnet Deprecated', + CheckDotBlockchainDevnet = 'CheckDot Blockchain Devnet', TaraxaMainnet = 'Taraxa Mainnet', TaraxaTestnet = 'Taraxa Testnet', ZeethChainDev = 'Zeeth Chain Dev', @@ -364,6 +377,7 @@ export enum ChainName { MetisAndromedaMainnet = 'Metis Andromeda Mainnet', 'Humans.aiMainnet' = 'Humans.ai Mainnet', MOACmainnet = 'MOAC mainnet', + Dymension = 'Dymension', PolygonzkEVM = 'Polygon zkEVM', BLXqTestnet = 'BLXq Testnet', BLXqMainnet = 'BLXq Mainnet', @@ -386,6 +400,7 @@ export enum ChainName { WorldTradeTechnicalChainMainnet = 'World Trade Technical Chain Mainnet', PopcateumMainnet = 'Popcateum Mainnet', EnterChainMainnet = 'EnterChain Mainnet', + HybridTestnet = 'Hybrid Testnet', ExzoNetworkMainnet = 'Exzo Network Mainnet', UltronTestnet = 'Ultron Testnet', UltronMainnet = 'Ultron Mainnet', @@ -423,7 +438,9 @@ export enum ChainName { LivingAssetsMainnet = 'Living Assets Mainnet', PolygonzkEVMTestnet = 'Polygon zkEVM Testnet', GILTestnet = 'GIL Testnet', + MetaChainIstanbul = 'MetaChain Istanbul', CtexScanBlockchain = 'Ctex Scan Blockchain', + VitruveoMainnet = 'Vitruveo Mainnet', BEVMCanary = 'BEVM Canary', SherpaxMainnet = 'Sherpax Mainnet', SherpaxTestnet = 'Sherpax Testnet', @@ -434,6 +451,7 @@ export enum ChainName { Btachain = 'Btachain', Liquichain = 'Liquichain', HorizenGobiTestnet = 'Horizen Gobi Testnet', + MintTestnet = 'Mint Testnet', LUDANMainnet = 'LUDAN Mainnet', AnytypeEVMChain = 'Anytype EVM Chain', TBSIMainnet = 'TBSI Mainnet', @@ -447,7 +465,7 @@ export enum ChainName { CubeChainTestnet = 'Cube Chain Testnet', RubySmartChainMAINNET = 'Ruby Smart Chain MAINNET', Teslafunds = 'Teslafunds', - WhiteBITNetwork = 'WhiteBIT Network', + Whitechain = 'Whitechain', GitshockCartenzTestnet = 'Gitshock Cartenz Testnet', LightlinkPhoenixMainnet = 'Lightlink Phoenix Mainnet', LightlinkPegasusTestnet = 'Lightlink Pegasus Testnet', @@ -460,7 +478,9 @@ export enum ChainName { RubySmartChainTestnet = 'Ruby Smart Chain Testnet', ONUSChainTestnet = 'ONUS Chain Testnet', 'D-ChainMainnet' = 'D-Chain Mainnet', + SelendraNetworkTestnet = 'Selendra Network Testnet', DexillaTestnet = 'Dexilla Testnet', + SelendraNetworkMainnet = 'Selendra Network Mainnet', Eleanor = 'Eleanor', SuperSmartChainTestnet = 'Super Smart Chain Testnet', SuperSmartChainMainnet = 'Super Smart Chain Mainnet', @@ -486,6 +506,7 @@ export enum ChainName { EdgewareEdgeEVMMainnet = 'Edgeware EdgeEVM Mainnet', BeresheetBereEVMTestnet = 'Beresheet BereEVM Testnet', TaycanTestnet = 'Taycan Testnet', + SwanSaturnTestnet = 'Swan Saturn Testnet', RangersProtocolMainnet = 'Rangers Protocol Mainnet', Centrifuge = 'Centrifuge', Catalyst = 'Catalyst', @@ -529,10 +550,13 @@ export enum ChainName { KromaSepolia = 'Kroma Sepolia', BOMBChainTestnet = 'BOMB Chain Testnet', TCGVerseMainnet = 'TCG Verse Mainnet', + KarakMainnet = 'Karak Mainnet', XODEX = 'XODEX', + PolygonzkEVMCardonaTestnet = 'Polygon zkEVM Cardona Testnet', HybridChainNetworkTestnet = 'Hybrid Chain Network Testnet', HybridChainNetworkMainnet = 'Hybrid Chain Network Mainnet', UnicornUltraNebulasTestnet = 'Unicorn Ultra Nebulas Testnet', + KarakTestnet = 'Karak Testnet', FraxtalTestnet = 'Fraxtal Testnet', KorthoMainnet = 'Kortho Mainnet', TechPayMainnet = 'TechPay Mainnet', @@ -540,10 +564,12 @@ export enum ChainName { RedlightChainMainnet = 'Redlight Chain Mainnet', 'EZChainC-ChainMainnet' = 'EZChain C-Chain Mainnet', 'EZChainC-ChainTestnet' = 'EZChain C-Chain Testnet', - WhiteBITNetworkTestnet = 'WhiteBIT Network Testnet', + WhitechainTestnet = 'Whitechain Testnet', MorphTestnet = 'Morph Testnet', 'K-LAOS' = 'K-LAOS', + ElizabethTestnet = 'Elizabeth Testnet', BobaNetworkGoerliTestnet = 'Boba Network Goerli Testnet', + XenonChainTestnet = 'Xenon Chain Testnet', BitYuanMainnet = 'BitYuan Mainnet', CENNZnetRata = 'CENNZnet Rata', CENNZnetNikau = 'CENNZnet Nikau', @@ -578,13 +604,14 @@ export enum ChainName { Crossbell = 'Crossbell', AlveyChainMainnet = 'AlveyChain Mainnet', TangleTestnet = 'Tangle Testnet', - FirechainzkEVMGhostrider = 'Firechain zkEVM Ghostrider', + FirechainzkEVMTestnet = 'Firechain zkEVM Testnet', KalyChainMainnet = 'KalyChain Mainnet', KalyChainTestnet = 'KalyChain Testnet', DRACNetwork = 'DRAC Network', DOSTesnet = 'DOS Tesnet', DYNOMainnet = 'DYNO Mainnet', DYNOTestnet = 'DYNO Testnet', + APEXTestnet = 'APEX Testnet', YuanChainMainnet = 'YuanChain Mainnet', OzoneChainMainnet = 'Ozone Chain Mainnet', PeperiumChainTestnet = 'Peperium Chain Testnet', @@ -601,7 +628,9 @@ export enum ChainName { 'Humans.aiTestnet' = 'Humans.ai Testnet', TipboxcoinTestnet = 'Tipboxcoin Testnet', PHINetworkV1 = 'PHI Network V1', + MerlinMainnet = 'Merlin Mainnet', LUKSOTestnet = 'LUKSO Testnet', + LiskSepoliaTestnet = 'Lisk Sepolia Testnet', NexiMainnet = 'Nexi Mainnet', NexiV2Mainnet = 'Nexi V2 Mainnet', BobafujiTestnet = 'Bobafuji Testnet', @@ -609,6 +638,8 @@ export enum ChainName { CreditSmartChainMainnet = 'Credit Smart Chain Mainnet', HtmlcoinMainnet = 'Htmlcoin Mainnet', OrderlySepoliaTestnet = 'Orderly Sepolia Testnet', + EmoneyNetworkTestnet = 'Emoney Network Testnet', + GoldChain = 'Gold Chain', IoTeXNetworkMainnet = 'IoTeX Network Mainnet', IoTeXNetworkTestnet = 'IoTeX Network Testnet', MEVerseChainTestnet = 'MEVerse Chain Testnet', @@ -622,6 +653,8 @@ export enum ChainName { TreasurenetMainnetAlpha = 'Treasurenet Mainnet Alpha', MantleSepoliaTestnet = 'Mantle Sepolia Testnet', TreasurenetTestnet = 'Treasurenet Testnet', + SyndicateTestnet = 'Syndicate Testnet', + SyndicateFrameChain = 'Syndicate Frame Chain', Bahamut = 'Bahamut', SmartLayerNetwork = 'Smart Layer Network', TLChainNetworkMainnet = 'TLChain Network Mainnet', @@ -727,6 +760,7 @@ export enum ChainName { SapphirebyUnique = 'Sapphire by Unique', XANAChain = 'XANAChain', VyvoSmartChain = 'Vyvo Smart Chain', + OreniumTestnetProtocol = 'Orenium Testnet Protocol', MammothMainnet = 'Mammoth Mainnet', JIBCHAINL1 = 'JIBCHAIN L1', GiantMammothMainnet = 'Giant Mammoth Mainnet', @@ -734,11 +768,13 @@ export enum ChainName { EvmosTestnet = 'Evmos Testnet', Evmos = 'Evmos', BerylBitMainnet = 'BerylBit Mainnet', - NexaBlock = 'Nexa Block', + NexaTestnetBlock = 'Nexa Testnet Block', + NexaMainnetBlock = 'Nexa Mainnet Block', GenesisCoin = 'Genesis Coin', RiniaTestnetOld = 'Rinia Testnet Old', CodefinMainnet = 'Codefin Mainnet', DogcoinTestnet = 'Dogcoin Testnet', + DelaSepoliaTestnet = 'Dela Sepolia Testnet', EvokeMainnet = 'Evoke Mainnet', RangersProtocolTestnetRobin = 'Rangers Protocol Testnet Robin', QEasyWeb3Testnet = 'QEasyWeb3 Testnet', @@ -781,10 +817,12 @@ export enum ChainName { HashBitMainnet = 'HashBit Mainnet', HaqqNetwork = 'Haqq Network', ShyftTestnet = 'Shyft Testnet', + BEVMTestnet = 'BEVM Testnet', SardisTestnet = 'Sardis Testnet', SanRChain = 'SanR Chain', PolygonSupernetArianee = 'Polygon Supernet Arianee', SatoshiChainMainnet = 'SatoshiChain Mainnet', + Aternos = 'Aternos', SingularityZEROTestnet = 'Singularity ZERO Testnet', SingularityZEROMainnet = 'Singularity ZERO Mainnet', BRCChainMainnet = 'BRC Chain Mainnet', @@ -802,6 +840,7 @@ export enum ChainName { ImmutablezkEVMTestnet = 'Immutable zkEVM Testnet', Susono = 'Susono', SPSTestnet = 'SPS Testnet', + VitruveoTestnet = 'Vitruveo Testnet', HumanodeTestnet5Israfel = 'Humanode Testnet 5 Israfel', ImmutablezkEVMDevnet = 'Immutable zkEVM Devnet', LoopNetworkMainnet = 'LoopNetwork Mainnet', @@ -818,12 +857,15 @@ export enum ChainName { G8ChainMainnet = 'G8Chain Mainnet', EclipseSubnet = 'Eclipse Subnet', PaletteChainTestnet = 'Palette Chain Testnet', + KONETMainnet = 'KONET Mainnet', EOSEVMNetwork = 'EOS EVM Network', FrontierofDreamsTestnet = 'Frontier of Dreams Testnet', SmartTradeNetworks = 'Smart Trade Networks', ProofOfMemes = 'Proof Of Memes', G8ChainTestnet = 'G8Chain Testnet', + Unreal = 'unreal', MXCzkEVMMainnet = 'MXC zkEVM Mainnet', + 'Titan(TKX)Testnet' = 'Titan (TKX) Testnet', HOMEVerseMainnet = 'HOME Verse Mainnet', MagnetNetwork = 'Magnet Network', BTCIXNetwork = 'BTCIX Network', @@ -831,6 +873,8 @@ export enum ChainName { CallistoTestnet = 'Callisto Testnet', P12Chain = 'P12 Chain', Jono11Subnet = 'Jono11 Subnet', + C4EI = 'C4EI', + AllAboutHealthy = 'All About Healthy', CENNZnetAzalea = 'CENNZnet Azalea', OmChainMainnet = 'omChain Mainnet', BSLMainnet = 'BSL Mainnet', @@ -838,7 +882,7 @@ export enum ChainName { AirDAOTestnet = 'AirDAO Testnet', NautilusMainnet = 'Nautilus Mainnet', GoldXChainTestnet = 'GoldXChain Testnet', - MAPMainnet = 'MAP Mainnet', + MAPProtocol = 'MAP Protocol', AntofyTestnet = 'Antofy Testnet', OpsideTestnet = 'Opside Testnet', OasisSapphire = 'Oasis Sapphire', @@ -847,6 +891,7 @@ export enum ChainName { Webchain = 'Webchain', 'MintMe.comCoin' = 'MintMe.com Coin', LiquidLayerMainnet = 'LiquidLayer Mainnet', + AlveyChainTestnet = 'AlveyChain Testnet', HammerChainMainnet = 'Hammer Chain Mainnet', BitkubChainTestnet = 'Bitkub Chain Testnet', FerrumTestnet = 'Ferrum Testnet', @@ -904,6 +949,7 @@ export enum ChainName { REINetwork = 'REI Network', WireshapeFloripaTestnet = 'Wireshape Floripa Testnet', BifrostTestnet = 'Bifrost Testnet', + GUNZTestnet = 'GUNZ Testnet', EnergiTestnet = 'Energi Testnet', LiveplexOracleEVM = 'Liveplex OracleEVM', YooldoVerseMainnet = 'Yooldo Verse Mainnet', @@ -912,6 +958,7 @@ export enum ChainName { LumozTestnetAlpha = 'Lumoz Testnet Alpha', SardisMainnet = 'Sardis Mainnet', ElectroneumMainnet = 'Electroneum Mainnet', + DOID = 'DOID', DFKChain = 'DFK Chain', HaqqChainTestnet = 'Haqq Chain Testnet', ToronetTestnet = 'Toronet Testnet', @@ -920,6 +967,7 @@ export enum ChainName { REIChainTestnet = 'REI Chain Testnet', BobaBNBMainnet = 'Boba BNB Mainnet', VELOLabsMainnet = 'VELO Labs Mainnet', + DOIDTestnet = 'DOID Testnet', RolluxTestnet = 'Rollux Testnet', 'SepoliaPGN(PublicGoodsNetwork)' = 'Sepolia PGN (Public Goods Network)', LineaTestnet = 'Linea Testnet', @@ -962,9 +1010,11 @@ export enum ChainName { AmplifySubnet = 'Amplify Subnet', BulletinSubnet = 'Bulletin Subnet', ConduitSubnet = 'Conduit Subnet', + Vanguard = 'Vanguard', GoldSmartChainTestnet = 'Gold Smart Chain Testnet', Mumbai = 'Mumbai', BerachainArtio = 'Berachain Artio', + Hizocomainnet = 'Hizoco mainnet', NordekMainnet = 'Nordek Mainnet', AmanaTestnet = 'Amana Testnet', AmanaMixnet = 'Amana Mixnet', @@ -975,6 +1025,7 @@ export enum ChainName { MizanaTestnet = 'Mizana Testnet', MizanaMixnet = 'Mizana Mixnet', MizanaPrivnet = 'Mizana Privnet', + Blast = 'Blast', QuantumChainMainnet = 'Quantum Chain Mainnet', SmartLayerNetworkTestnet = 'Smart Layer Network Testnet', BaseGoerliTestnet = 'Base Goerli Testnet', @@ -986,6 +1037,7 @@ export enum ChainName { IVARChainMainnet = 'IVAR Chain Mainnet', BeverlyHills = 'Beverly Hills', NautilusTritionChain = 'Nautilus Trition Chain', + MetaDAPEnterpriseMainnet = 'MetaDAP Enterprise Mainnet', ComboTestnet = 'Combo Testnet', LambdaTestnet = 'Lambda Testnet', LiquidLayerTestnet = 'LiquidLayer Testnet', @@ -1008,6 +1060,7 @@ export enum ChainName { DeprecatedCHI = 'Deprecated CHI', SoverunTestnet = 'Soverun Testnet', Crystaleum = 'Crystaleum', + MasaTestnet = 'Masa Testnet', BROChainMainnet = 'BROChain Mainnet', QuarkChainDevnetRoot = 'QuarkChain Devnet Root', QuarkChainDevnetShard0 = 'QuarkChain Devnet Shard 0', @@ -1021,6 +1074,7 @@ export enum ChainName { SiberiumTestNetwork = 'Siberium Test Network', SiberiumNetwork = 'Siberium Network', MetachainOneMainnet = 'Metachain One Mainnet', + MetaDAPEnterpriseTestnet = 'MetaDAP Enterprise Testnet', ADILDevnet = 'ADIL Devnet', EtherlinkTestnet = 'Etherlink Testnet', ETNDChainMainnets = 'ETND Chain Mainnets', @@ -1035,6 +1089,7 @@ export enum ChainName { MilkomedaC1Testnet = 'Milkomeda C1 Testnet', MilkomedaA1Testnet = 'Milkomeda A1 Testnet', Akroma = 'Akroma', + BitlayerTestnet = 'Bitlayer Testnet', AlayaMainnet = 'Alaya Mainnet', AlayaDevTestnet = 'Alaya Dev Testnet', MythicalChain = 'Mythical Chain', @@ -1059,7 +1114,9 @@ export enum ChainName { EgonCoinTestnet = 'EgonCoin Testnet', SocialSmartChainMainnet = 'Social Smart Chain Mainnet', 'Filecoin-Calibrationtestnet' = 'Filecoin - Calibration testnet', + BloomGenesisTestnet = 'Bloom Genesis Testnet', TTcoinSmartChainMainnet = 'TTcoin Smart Chain Mainnet', + BloomGenesisMainnet = 'Bloom Genesis Mainnet', AvesTestnet = 'Aves Testnet', Nativ3Testnet = 'Nativ3 Testnet', OoneChainTestnet = 'Oone Chain Testnet', @@ -1082,6 +1139,7 @@ export enum ChainName { MarkrGo = 'Markr Go', DexalotSubnetTestnet = 'Dexalot Subnet Testnet', DexalotSubnet = 'Dexalot Subnet', + SyndrL3Sepolia = 'Syndr L3 Sepolia', WeelinkTestnet = 'Weelink Testnet', PatexSepoliaTestnet = 'Patex Sepolia Testnet', UltraProMainnet = 'Ultra Pro Mainnet', @@ -1099,6 +1157,7 @@ export enum ChainName { ALLMainnet = 'ALL Mainnet', 'Vision-VpioneerTestChain' = 'Vision - Vpioneer Test Chain', HelaOfficialRuntimeTestnet = 'Hela Official Runtime Testnet', + SeiDevnet = 'Sei Devnet', BearNetworkChainTestnet = 'Bear Network Chain Testnet', MiexsSmartchain = 'Miexs Smartchain', Modularium = 'Modularium', @@ -1170,6 +1229,7 @@ export enum ChainName { FlachainMainnet = 'Flachain Mainnet', 'Filecoin-Localtestnet' = 'Filecoin - Local testnet', JoysDigitalMainnet = 'Joys Digital Mainnet', + SKALENebulaHubTestnet = 'SKALE Nebula Hub Testnet', Maistestsubnet = 'maistestsubnet', Aquachain = 'Aquachain', 'AutonityBakerloo(Thames)Testnet' = 'Autonity Bakerloo (Thames) Testnet', @@ -1179,6 +1239,7 @@ export enum ChainName { FrameTestnet = 'Frame Testnet', 'T.E.A.MBlockchain' = 'T.E.A.M Blockchain', JoysDigitalTestNet = 'Joys Digital TestNet', + PlumeTestnet = 'Plume Testnet', BlastSepoliaTestnet = 'Blast Sepolia Testnet', GatherMainnetNetwork = 'Gather Mainnet Network', Kanazawa = 'Kanazawa', @@ -1188,23 +1249,28 @@ export enum ChainName { RazorSkaleChain = 'Razor Skale Chain', OneLedgerMainnet = 'OneLedger Mainnet', Meld = 'Meld', - SKALECalypsoHubTestnet = 'SKALE Calypso Hub Testnet', + DeprecatedSKALECalypsoHubTestnet = 'Deprecated SKALE Calypso Hub Testnet', GatherTestnetNetwork = 'Gather Testnet Network', - SKALEEuropaHubTestnet = 'SKALE Europa Hub Testnet', + DeprecatedSKALEEuropaHubTestnet = 'Deprecated SKALE Europa Hub Testnet', GatherDevnetNetwork = 'Gather Devnet Network', - SKALENebulaHubTestnet = 'SKALE Nebula Hub Testnet', + DeprecatedSKALENebulaHubTestnet = 'Deprecated SKALE Nebula Hub Testnet', + Ancient8 = 'Ancient8', + SKALECalypsoHubTestnet = 'SKALE Calypso Hub Testnet', ZoraSepoliaTestnet = 'Zora Sepolia Testnet', + SKALETitanHubTestnet = 'SKALE Titan Hub Testnet', IPOSNetwork = 'IPOS Network', CyberdeckNet = 'CyberdeckNet', HUMANProtocol = 'HUMAN Protocol', AuroraMainnet = 'Aurora Mainnet', AuroraTestnet = 'Aurora Testnet', AuroraBetanet = 'Aurora Betanet', + PowerGold = 'PowerGold', SKALETitanHub = 'SKALE Titan Hub', 'Chaos(SKALETestnet)' = 'Chaos (SKALE Testnet)', RaptorChain = 'RaptorChain', + SKALEEuropaHubTestnet = 'SKALE Europa Hub Testnet', SKALENebulaHub = 'SKALE Nebula Hub', - SKALETitanHubTestnet = 'SKALE Titan Hub Testnet', + DeprecatedSKALETitanHubTestnet = 'Deprecated SKALE Titan Hub Testnet', SKALECalypsoHub = 'SKALE Calypso Hub', HarmonyMainnetShard0 = 'Harmony Mainnet Shard 0', HarmonyMainnetShard1 = 'Harmony Mainnet Shard 1', @@ -1221,6 +1287,8 @@ export enum ChainName { OneLedgerTestnetFrankenstein = 'OneLedger Testnet Frankenstein', PalmTestnet = 'Palm Testnet', Palm = 'Palm', + GitSwarmTestNetwork = 'GitSwarm Test Network', + KakarotSepolia = 'Kakarot Sepolia', AlphabetMainnet = 'Alphabet Mainnet', NtityMainnet = 'Ntity Mainnet', HaradevTestnet = 'Haradev Testnet', @@ -1245,7 +1313,7 @@ export enum ChainId { DiodeTestnetStaging = 13, FlareMainnet = 14, DiodePrenet = 15, - FlareTestnetCoston = 16, + SongbirdTestnetCoston = 16, 'ThaiChain2.0ThaiFi' = 17, ThunderCoreTestnet = 18, 'SongbirdCanary-Network' = 19, @@ -1377,6 +1445,7 @@ export enum ChainId { RedbellyNetworkTGE = 154, TenetTestnet = 155, OEBlockTestnet = 156, + PuppynetShibarium = 157, ArmoniaEvaChainMainnet = 160, ArmoniaEvaChainTestnet = 161, LightstreamsTestnet = 162, @@ -1405,15 +1474,17 @@ export enum ChainId { StructxMainnet = 208, Bitnet = 210, FreightTrustNetwork = 211, - MAPMakalu = 212, + MAPOMakalu = 212, ShinariumMainnet = 214, SiriusNetV2 = 217, SoterOneMainnetold = 218, ScalindTestnet = 220, Permission = 222, + ViridisTestnet = 224, LACHAINMainnet = 225, LACHAINTestnet = 226, SwapDEX = 230, + ProtoJumboTestnet = 234, DeamchainTestnet = 236, BlastMainnet = 238, PlingaMainnet = 242, @@ -1429,6 +1500,7 @@ export enum ChainId { HighPerformanceBlockchain = 269, EgonCoinMainnet = 271, LaChain = 274, + BPXBlockchain = 279, 'ZkSyncEraGoerliTestnet(deprecated)' = 280, BobaNetwork = 288, OrderlyMainnet = 291, @@ -1439,12 +1511,15 @@ export enum ChainId { ZkSyncSepoliaTestnet = 300, Bobaopera = 301, NeurochainTestnet = 303, + ZKSatsMainnet = 305, + LovelyNetworkTestnet = 307, WyzthTestnet = 309, OmaxMainnet = 311, NeurochainMainnet = 313, 'Filecoin-Mainnet' = 314, KCCMainnet = 321, KCCTestnet = 322, + CosvmMainnet = 323, ZkSyncMainnet = 324, Web3QMainnet = 333, DFKChainTest = 335, @@ -1466,6 +1541,7 @@ export enum ChainId { SXNetworkMainnet = 416, LaTestnet = 418, OptimismGoerliTestnet = 420, + ViridisMainnet = 422, 'PGN(PublicGoodsNetwork)' = 424, ZeethChain = 427, GesoVerse = 428, @@ -1477,6 +1553,7 @@ export enum ChainId { Rupaya = 499, 'CaminoC-Chain' = 500, ColumbusTestNetwork = 501, + SyndicateChain = 510, 'Double-AChainMainnet' = 512, 'Double-AChainTestnet' = 513, GearZeroNetworkMainnet = 516, @@ -1514,9 +1591,11 @@ export enum ChainId { BlockChainStationMainnet = 707, BlockChainStationTestnet = 708, Highbury = 710, + VrcscanMainnet = 713, ShibariumBeta = 719, LycanChain = 721, Blucrates = 727, + LovelyNetworkMainnet = 730, CantoTestnet = 740, VentionSmartChainTestnet = 741, ScriptTestnet = 742, @@ -1527,6 +1606,7 @@ export enum ChainId { AcalaNetwork = 787, AerochainTestnet = 788, Patex = 789, + RupayaTestnet = 799, LucidBlockchain = 800, Haic = 803, PortalFantasyChainTest = 808, @@ -1536,6 +1616,7 @@ export enum ChainId { BeOneChainMainnet = 818, CallistoMainnet = 820, CallistoTestnetDeprecated = 821, + CheckDotBlockchainDevnet = 831, TaraxaMainnet = 841, TaraxaTestnet = 842, ZeethChainDev = 859, @@ -1595,6 +1676,7 @@ export enum ChainId { MetisAndromedaMainnet = 1088, 'Humans.aiMainnet' = 1089, MOACmainnet = 1099, + Dymension = 1100, PolygonzkEVM = 1101, BLXqTestnet = 1107, BLXqMainnet = 1108, @@ -1617,6 +1699,7 @@ export enum ChainId { WorldTradeTechnicalChainMainnet = 1202, PopcateumMainnet = 1213, EnterChainMainnet = 1214, + HybridTestnet = 1224, ExzoNetworkMainnet = 1229, UltronTestnet = 1230, UltronMainnet = 1231, @@ -1654,7 +1737,9 @@ export enum ChainId { LivingAssetsMainnet = 1440, PolygonzkEVMTestnet = 1442, GILTestnet = 1452, + MetaChainIstanbul = 1453, CtexScanBlockchain = 1455, + VitruveoMainnet = 1490, BEVMCanary = 1501, SherpaxMainnet = 1506, SherpaxTestnet = 1507, @@ -1665,6 +1750,7 @@ export enum ChainId { Btachain = 1657, Liquichain = 1662, HorizenGobiTestnet = 1663, + MintTestnet = 1686, LUDANMainnet = 1688, AnytypeEVMChain = 1701, TBSIMainnet = 1707, @@ -1678,7 +1764,7 @@ export enum ChainId { CubeChainTestnet = 1819, RubySmartChainMAINNET = 1821, Teslafunds = 1856, - WhiteBITNetwork = 1875, + Whitechain = 1875, GitshockCartenzTestnet = 1881, LightlinkPhoenixMainnet = 1890, LightlinkPegasusTestnet = 1891, @@ -1691,7 +1777,9 @@ export enum ChainId { RubySmartChainTestnet = 1912, ONUSChainTestnet = 1945, 'D-ChainMainnet' = 1951, + SelendraNetworkTestnet = 1953, DexillaTestnet = 1954, + SelendraNetworkMainnet = 1961, Eleanor = 1967, SuperSmartChainTestnet = 1969, SuperSmartChainMainnet = 1970, @@ -1717,6 +1805,7 @@ export enum ChainId { EdgewareEdgeEVMMainnet = 2021, BeresheetBereEVMTestnet = 2022, TaycanTestnet = 2023, + SwanSaturnTestnet = 2024, RangersProtocolMainnet = 2025, Centrifuge = 2031, Catalyst = 2032, @@ -1760,10 +1849,13 @@ export enum ChainId { KromaSepolia = 2358, BOMBChainTestnet = 2399, TCGVerseMainnet = 2400, + KarakMainnet = 2410, XODEX = 2415, + PolygonzkEVMCardonaTestnet = 2442, HybridChainNetworkTestnet = 2458, HybridChainNetworkMainnet = 2468, UnicornUltraNebulasTestnet = 2484, + KarakTestnet = 2511, FraxtalTestnet = 2522, KorthoMainnet = 2559, TechPayMainnet = 2569, @@ -1771,10 +1863,12 @@ export enum ChainId { RedlightChainMainnet = 2611, 'EZChainC-ChainMainnet' = 2612, 'EZChainC-ChainTestnet' = 2613, - WhiteBITNetworkTestnet = 2625, + WhitechainTestnet = 2625, MorphTestnet = 2710, 'K-LAOS' = 2718, + ElizabethTestnet = 2731, BobaNetworkGoerliTestnet = 2888, + XenonChainTestnet = 2941, BitYuanMainnet = 2999, CENNZnetRata = 3000, CENNZnetNikau = 3001, @@ -1809,13 +1903,14 @@ export enum ChainId { Crossbell = 3737, AlveyChainMainnet = 3797, TangleTestnet = 3799, - FirechainzkEVMGhostrider = 3885, + FirechainzkEVMTestnet = 3885, KalyChainMainnet = 3888, KalyChainTestnet = 3889, DRACNetwork = 3912, DOSTesnet = 3939, DYNOMainnet = 3966, DYNOTestnet = 3967, + APEXTestnet = 3993, YuanChainMainnet = 3999, OzoneChainMainnet = 4000, PeperiumChainTestnet = 4001, @@ -1832,7 +1927,9 @@ export enum ChainId { 'Humans.aiTestnet' = 4139, TipboxcoinTestnet = 4141, PHINetworkV1 = 4181, + MerlinMainnet = 4200, LUKSOTestnet = 4201, + LiskSepoliaTestnet = 4202, NexiMainnet = 4242, NexiV2Mainnet = 4243, BobafujiTestnet = 4328, @@ -1840,6 +1937,8 @@ export enum ChainId { CreditSmartChainMainnet = 4400, HtmlcoinMainnet = 4444, OrderlySepoliaTestnet = 4460, + EmoneyNetworkTestnet = 4544, + GoldChain = 4653, IoTeXNetworkMainnet = 4689, IoTeXNetworkTestnet = 4690, MEVerseChainTestnet = 4759, @@ -1853,6 +1952,8 @@ export enum ChainId { TreasurenetMainnetAlpha = 5002, MantleSepoliaTestnet = 5003, TreasurenetTestnet = 5005, + SyndicateTestnet = 5100, + SyndicateFrameChain = 5101, Bahamut = 5165, SmartLayerNetwork = 5169, TLChainNetworkMainnet = 5177, @@ -1958,6 +2059,7 @@ export enum ChainId { SapphirebyUnique = 8883, XANAChain = 8888, VyvoSmartChain = 8889, + OreniumTestnetProtocol = 8890, MammothMainnet = 8898, JIBCHAINL1 = 8899, GiantMammothMainnet = 8989, @@ -1965,11 +2067,13 @@ export enum ChainId { EvmosTestnet = 9000, Evmos = 9001, BerylBitMainnet = 9012, - NexaBlock = 9024, + NexaTestnetBlock = 9024, + NexaMainnetBlock = 9025, GenesisCoin = 9100, RiniaTestnetOld = 9170, CodefinMainnet = 9223, DogcoinTestnet = 9339, + DelaSepoliaTestnet = 9393, EvokeMainnet = 9395, RangersProtocolTestnetRobin = 9527, QEasyWeb3Testnet = 9528, @@ -2012,10 +2116,12 @@ export enum ChainId { HashBitMainnet = 11119, HaqqNetwork = 11235, ShyftTestnet = 11437, + BEVMTestnet = 11503, SardisTestnet = 11612, SanRChain = 11888, PolygonSupernetArianee = 11891, SatoshiChainMainnet = 12009, + Aternos = 12020, SingularityZEROTestnet = 12051, SingularityZEROMainnet = 12052, BRCChainMainnet = 12123, @@ -2033,6 +2139,7 @@ export enum ChainId { ImmutablezkEVMTestnet = 13473, Susono = 13812, SPSTestnet = 14000, + VitruveoTestnet = 14333, HumanodeTestnet5Israfel = 14853, ImmutablezkEVMDevnet = 15003, LoopNetworkMainnet = 15551, @@ -2049,12 +2156,15 @@ export enum ChainId { G8ChainMainnet = 17171, EclipseSubnet = 17172, PaletteChainTestnet = 17180, + KONETMainnet = 17217, EOSEVMNetwork = 17777, FrontierofDreamsTestnet = 18000, SmartTradeNetworks = 18122, ProofOfMemes = 18159, G8ChainTestnet = 18181, + Unreal = 18231, MXCzkEVMMainnet = 18686, + 'Titan(TKX)Testnet' = 18889, HOMEVerseMainnet = 19011, MagnetNetwork = 19527, BTCIXNetwork = 19845, @@ -2062,6 +2172,8 @@ export enum ChainId { CallistoTestnet = 20729, P12Chain = 20736, Jono11Subnet = 20765, + C4EI = 21004, + AllAboutHealthy = 21133, CENNZnetAzalea = 21337, OmChainMainnet = 21816, BSLMainnet = 21912, @@ -2069,7 +2181,7 @@ export enum ChainId { AirDAOTestnet = 22040, NautilusMainnet = 22222, GoldXChainTestnet = 22324, - MAPMainnet = 22776, + MAPProtocol = 22776, AntofyTestnet = 23006, OpsideTestnet = 23118, OasisSapphire = 23294, @@ -2078,6 +2190,7 @@ export enum ChainId { Webchain = 24484, 'MintMe.comCoin' = 24734, LiquidLayerMainnet = 25186, + AlveyChainTestnet = 25839, HammerChainMainnet = 25888, BitkubChainTestnet = 25925, FerrumTestnet = 26026, @@ -2135,6 +2248,7 @@ export enum ChainId { REINetwork = 47805, WireshapeFloripaTestnet = 49049, BifrostTestnet = 49088, + GUNZTestnet = 49321, EnergiTestnet = 49797, LiveplexOracleEVM = 50001, YooldoVerseMainnet = 50005, @@ -2143,6 +2257,7 @@ export enum ChainId { LumozTestnetAlpha = 51178, SardisMainnet = 51712, ElectroneumMainnet = 52014, + DOID = 53277, DFKChain = 53935, HaqqChainTestnet = 54211, ToronetTestnet = 54321, @@ -2151,6 +2266,7 @@ export enum ChainId { REIChainTestnet = 55556, BobaBNBMainnet = 56288, VELOLabsMainnet = 56789, + DOIDTestnet = 56797, RolluxTestnet = 57000, 'SepoliaPGN(PublicGoodsNetwork)' = 58008, LineaTestnet = 59140, @@ -2193,9 +2309,11 @@ export enum ChainId { AmplifySubnet = 78430, BulletinSubnet = 78431, ConduitSubnet = 78432, + Vanguard = 78600, GoldSmartChainTestnet = 79879, Mumbai = 80001, BerachainArtio = 80085, + Hizocomainnet = 80096, NordekMainnet = 81041, AmanaTestnet = 81341, AmanaMixnet = 81342, @@ -2206,6 +2324,7 @@ export enum ChainId { MizanaTestnet = 81361, MizanaMixnet = 81362, MizanaPrivnet = 81363, + Blast = 81457, QuantumChainMainnet = 81720, SmartLayerNetworkTestnet = 82459, BaseGoerliTestnet = 84531, @@ -2217,6 +2336,7 @@ export enum ChainId { IVARChainMainnet = 88888, BeverlyHills = 90210, NautilusTritionChain = 91002, + MetaDAPEnterpriseMainnet = 91120, ComboTestnet = 91715, LambdaTestnet = 92001, LiquidLayerTestnet = 93572, @@ -2239,6 +2359,7 @@ export enum ChainId { DeprecatedCHI = 100100, SoverunTestnet = 101010, Crystaleum = 103090, + MasaTestnet = 103454, BROChainMainnet = 108801, QuarkChainDevnetRoot = 110000, QuarkChainDevnetShard0 = 110001, @@ -2252,6 +2373,7 @@ export enum ChainId { SiberiumTestNetwork = 111000, SiberiumNetwork = 111111, MetachainOneMainnet = 112358, + MetaDAPEnterpriseTestnet = 119139, ADILDevnet = 123456, EtherlinkTestnet = 128123, ETNDChainMainnets = 131419, @@ -2266,6 +2388,7 @@ export enum ChainId { MilkomedaC1Testnet = 200101, MilkomedaA1Testnet = 200202, Akroma = 200625, + BitlayerTestnet = 200810, AlayaMainnet = 201018, AlayaDevTestnet = 201030, MythicalChain = 201804, @@ -2290,7 +2413,9 @@ export enum ChainId { EgonCoinTestnet = 271271, SocialSmartChainMainnet = 281121, 'Filecoin-Calibrationtestnet' = 314159, + BloomGenesisTestnet = 323213, TTcoinSmartChainMainnet = 330844, + BloomGenesisMainnet = 333313, AvesTestnet = 333331, Nativ3Testnet = 333333, OoneChainTestnet = 333666, @@ -2313,6 +2438,7 @@ export enum ChainId { MarkrGo = 431140, DexalotSubnetTestnet = 432201, DexalotSubnet = 432204, + SyndrL3Sepolia = 444444, WeelinkTestnet = 444900, PatexSepoliaTestnet = 471100, UltraProMainnet = 473861, @@ -2330,6 +2456,7 @@ export enum ChainId { ALLMainnet = 651940, 'Vision-VpioneerTestChain' = 666666, HelaOfficialRuntimeTestnet = 666888, + SeiDevnet = 713715, BearNetworkChainTestnet = 751230, MiexsSmartchain = 761412, Modularium = 776877, @@ -2401,6 +2528,7 @@ export enum ChainId { FlachainMainnet = 29032022, 'Filecoin-Localtestnet' = 31415926, JoysDigitalMainnet = 35855456, + SKALENebulaHubTestnet = 37084624, Maistestsubnet = 43214913, Aquachain = 61717561, 'AutonityBakerloo(Thames)Testnet' = 65010000, @@ -2410,6 +2538,7 @@ export enum ChainId { FrameTestnet = 68840142, 'T.E.A.MBlockchain' = 88888888, JoysDigitalTestNet = 99415706, + PlumeTestnet = 161221135, BlastSepoliaTestnet = 168587773, GatherMainnetNetwork = 192837465, Kanazawa = 222000222, @@ -2419,23 +2548,28 @@ export enum ChainId { RazorSkaleChain = 278611351, OneLedgerMainnet = 311752642, Meld = 333000333, - SKALECalypsoHubTestnet = 344106930, + DeprecatedSKALECalypsoHubTestnet = 344106930, GatherTestnetNetwork = 356256156, - SKALEEuropaHubTestnet = 476158412, + DeprecatedSKALEEuropaHubTestnet = 476158412, GatherDevnetNetwork = 486217935, - SKALENebulaHubTestnet = 503129905, + DeprecatedSKALENebulaHubTestnet = 503129905, + Ancient8 = 888888888, + SKALECalypsoHubTestnet = 974399131, ZoraSepoliaTestnet = 999999999, + SKALETitanHubTestnet = 1020352220, IPOSNetwork = 1122334455, CyberdeckNet = 1146703430, HUMANProtocol = 1273227453, AuroraMainnet = 1313161554, AuroraTestnet = 1313161555, AuroraBetanet = 1313161556, + PowerGold = 1313161560, SKALETitanHub = 1350216234, 'Chaos(SKALETestnet)' = 1351057110, RaptorChain = 1380996178, + SKALEEuropaHubTestnet = 1444673419, SKALENebulaHub = 1482601649, - SKALETitanHubTestnet = 1517929550, + DeprecatedSKALETitanHubTestnet = 1517929550, SKALECalypsoHub = 1564830818, HarmonyMainnetShard0 = 1666600000, HarmonyMainnetShard1 = 1666600001, @@ -2452,6 +2586,8 @@ export enum ChainId { OneLedgerTestnetFrankenstein = 4216137055, PalmTestnet = 11297108099, Palm = 11297108109, + GitSwarmTestNetwork = 28872323069, + KakarotSepolia = 107107114116, AlphabetMainnet = 111222333444, NtityMainnet = 197710212030, HaradevTestnet = 197710212031,