From d4b226b27b8b269f0b4719efbcda8ac8adff2573 Mon Sep 17 00:00:00 2001 From: rkalis Date: Mon, 11 Dec 2023 01:02:27 +0000 Subject: [PATCH] Update chains based on latest data from chainId.network --- package.json | 2 +- src/chains.ts | 320 ++++++++++++++++++++++++++++++++++++++++---------- src/enums.ts | 48 +++++--- 3 files changed, 291 insertions(+), 79 deletions(-) diff --git a/package.json b/package.json index 39eb3b9..5206dcd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@revoke.cash/chains", - "version": "25.0.0", + "version": "26.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 0bc7ce0..3d795be 100644 --- a/src/chains.ts +++ b/src/chains.ts @@ -3886,12 +3886,13 @@ export const chains: Chains = { ] }, 280: { - name: 'zkSync Era Testnet', + name: 'zkSync Era Goerli Testnet (deprecated)', + status: 'deprecated', chain: 'ETH', rpc: ['https://testnet.era.zksync.dev'], - faucets: ['https://goerli.portal.zksync.io/faucet'], + faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, - infoURL: 'https://era.zksync.io/docs/', + infoURL: 'https://zksync.io/', shortName: 'zksync-goerli', chainId: 280, networkId: 280, @@ -3907,7 +3908,7 @@ export const chains: Chains = { parent: { type: 'L2', chain: 'eip155-1', - bridges: [{ url: 'https://goerli.portal.zksync.io/bridge' }] + bridges: [{ url: 'https://bridge.zksync.io/' }] } }, 288: { @@ -4083,17 +4084,30 @@ export const chains: Chains = { explorers: [] }, 300: { - name: '(deprecated) Optimism on GC', - chain: 'OGC', - rpc: [], + name: 'zkSync Sepolia Testnet', + chain: 'ETH', + rpc: ['https://sepolia.era.zksync.dev'], faucets: [], - nativeCurrency: { name: 'xDAI', symbol: 'xDAI', decimals: 18 }, - shortName: 'ogc', + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://zksync.io/', + shortName: 'zksync-sepolia', chainId: 300, networkId: 300, - infoURL: 'https://docs.gnosischain.com', - explorers: [], - status: 'deprecated' + icon: 'zksync-era', + explorers: [ + { + name: 'zkSync Block Explorer', + url: 'https://sepolia.explorer.zksync.io', + icon: 'zksync-era', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://bridge.zksync.io/' }] + }, + redFlags: ['reusedChainId'] }, 301: { name: 'Bobaopera', @@ -4284,7 +4298,7 @@ export const chains: Chains = { ] }, 324: { - name: 'zkSync Era Mainnet', + name: 'zkSync Mainnet', chain: 'ETH', rpc: ['https://mainnet.era.zksync.io'], faucets: [], @@ -4859,6 +4873,25 @@ export const chains: Chains = { } ] }, + 463: { + name: 'Areon Network Mainnet', + chain: 'Areon', + icon: 'areon', + rpc: ['https://mainnet-rpc.areon.network'], + faucets: [], + nativeCurrency: { name: 'Areon', symbol: 'AREA', decimals: 18 }, + infoURL: 'https://areon.network', + shortName: 'area', + chainId: 463, + networkId: 463, + explorers: [ + { + name: 'AreonScan', + url: 'https://areonscan.com', + standard: 'none' + } + ] + }, 499: { name: 'Rupaya', chain: 'RUPX', @@ -5399,6 +5432,24 @@ export const chains: Chains = { } ] }, + 653: { + name: 'Kalichain Mainnet', + chain: 'Kalichain', + rpc: ['https://rpc.kalichain.com'], + faucets: [], + nativeCurrency: { name: 'kalis', symbol: 'KALIS', decimals: 18 }, + infoURL: 'https://kalichain.com', + shortName: 'kalichain', + chainId: 653, + networkId: 653, + explorers: [ + { + name: 'kalichain explorer', + url: 'https://explorer.kalichain.com', + standard: 'EIP3091' + } + ] + }, 666: { name: 'Pixie Chain Testnet', chain: 'PixieChain', @@ -5909,6 +5960,25 @@ export const chains: Chains = { } ] }, + 814: { + name: 'Firechain zkEVM', + title: 'Firechain zkEVM', + chain: 'Firechain', + rpc: ['https://rpc.zkevm.thefirechain.com'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://docs.thefirechain.com/', + shortName: 'firechan-zkEVM', + chainId: 814, + networkId: 814, + icon: 'firechain', + explorers: [], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://zkevm.bridge.rpc.thefirechain.com' }] + } + }, 818: { name: 'BeOne Chain Mainnet', chain: 'BOC', @@ -6398,14 +6468,22 @@ export const chains: Chains = { 970: { name: 'Oort Mainnet', chain: 'Oort Mainnet', - rpc: ['https://rpc.oortech.com'], + rpc: ['https://mainnet-rpc.oortech.com'], faucets: [], nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 }, infoURL: 'https://oortech.com', shortName: 'ccn', chainId: 970, networkId: 970, - icon: 'ccn' + icon: 'oort', + explorers: [ + { + name: 'Oort Mainnet Explorer', + url: 'https://mainnet-scan.oortech.com', + standard: 'none', + icon: 'oort' + } + ] }, 971: { name: 'Oort Huygens', @@ -6430,7 +6508,15 @@ export const chains: Chains = { shortName: 'Ascraeus', chainId: 972, networkId: 972, - icon: 'ccn' + icon: 'oort', + explorers: [ + { + name: 'Oort Ascraeus Explorer', + url: 'https://ascraeus-scan.oortech.com', + standard: 'none', + icon: 'oort' + } + ] }, 977: { name: 'Nepal Blockchain Network', @@ -10186,6 +10272,57 @@ export const chains: Chains = { } ] }, + 2458: { + name: 'Hybrid Chain Network Testnet', + chain: 'HYBRID', + rpc: ['https://rpc-testnet.hybridchain.ai/'], + faucets: ['https://faucet-testnet.hybridchain.ai'], + nativeCurrency: { + name: 'Hybrid Chain Native Token', + symbol: 'tHRC', + decimals: 18 + }, + infoURL: 'https://hybridchain.ai', + shortName: 'thrc', + chainId: 2458, + networkId: 2458, + icon: 'hybrid', + explorers: [ + { + name: 'Hybrid Chain Explorer Testnet', + icon: 'hybrid', + url: 'https://testnet.hybridscan.ai', + standard: 'none' + } + ] + }, + 2468: { + name: 'Hybrid Chain Network Mainnet', + chain: 'HYBRID', + rpc: [ + 'https://coredata-mainnet.hybridchain.ai/', + 'https://rpc-mainnet.hybridchain.ai' + ], + faucets: ['https://faucet-testnet.hybridchain.ai'], + nativeCurrency: { + name: 'Hybrid Chain Native Token', + symbol: 'HRC', + decimals: 18 + }, + infoURL: 'https://hybridchain.ai', + shortName: 'hrc', + chainId: 2468, + networkId: 2468, + icon: 'hybrid', + explorers: [ + { + name: 'Hybrid Chain Explorer Mainnet', + icon: 'hybrid', + url: 'https://hybridscan.ai', + standard: 'none' + } + ] + }, 2484: { name: 'Unicorn Ultra Nebulas Testnet', chain: 'u2u', @@ -10359,26 +10496,26 @@ export const chains: Chains = { ] }, 2710: { - name: 'Morphism Testnet', + name: 'Morph Testnet', chain: 'ETH', - rpc: ['https://rpc-testnet.morphism.xyz'], + rpc: ['https://rpc-testnet.morphl2.io'], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, - infoURL: 'https://morphism.xyz', + infoURL: 'https://morphl2.io', shortName: 'tmorph', chainId: 2710, networkId: 2710, explorers: [ { - name: 'Morphism Testnet Explorer', - url: 'https://explorer-testnet.morphism.xyz', + name: 'Morph Testnet Explorer', + url: 'https://explorer-testnet.morphl2.io', standard: 'EIP3091' } ], parent: { type: 'L2', chain: 'eip155-1', - bridges: [{ url: 'https://bridge-testnet.morphism.xyz' }] + bridges: [{ url: 'https://bridge-testnet.morphl2.io' }] } }, 2718: { @@ -11014,6 +11151,19 @@ export const chains: Chains = { } ] }, + 3885: { + name: 'Firechain zkEVM Ghostrider', + title: 'Firechain zkEVM Ghostrider', + chain: 'Firechain', + rpc: ['https://rpc.zkevm.ghostrider.thefirechain.com'], + faucets: ['zkevm-faucet.thefirechain.com'], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://docs.thefirechain.com/', + shortName: 'firechain-zkEVM-ghostrider', + chainId: 3885, + networkId: 3885, + explorers: [] + }, 3888: { name: 'KalyChain Mainnet', chain: 'KLC', @@ -11940,6 +12090,7 @@ export const chains: Chains = { shortName: 'hmnd', chainId: 5234, networkId: 5234, + icon: 'humanode', explorers: [ { name: 'Subscan', @@ -13713,7 +13864,7 @@ export const chains: Chains = { 8899: { name: 'JIBCHAIN L1', chain: 'JBC', - rpc: ['https://rpc-l1.jibchain.net'], + rpc: ['https://rpc-l1.jibchain.net', 'https://jib-rpc.inan.in.th'], faucets: [], features: [{ name: 'EIP155' }, { name: 'EIP1559' }], nativeCurrency: { name: 'JIBCOIN', symbol: 'JBC', decimals: 18 }, @@ -13965,14 +14116,22 @@ export const chains: Chains = { name: 'Oort MainnetDev', title: 'Oort MainnetDev', chain: 'MainnetDev', - rpc: [], + rpc: ['https://dev-rpc.oortech.com'], faucets: [], nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 }, infoURL: 'https://oortech.com', shortName: 'MainnetDev', chainId: 9700, networkId: 9700, - icon: 'ccn' + icon: 'oort', + explorers: [ + { + name: 'Oort MainnetDev Scan', + url: 'https://dev-scan.oortech.com', + standard: 'none', + icon: 'oort' + } + ] }, 9728: { name: 'Boba BNB Testnet', @@ -15110,6 +15269,7 @@ export const chains: Chains = { shortName: 'hmnd-t5', chainId: 14853, networkId: 14853, + icon: 'humanode', explorers: [] }, 15003: { @@ -15655,6 +15815,27 @@ export const chains: Chains = { } ] }, + 21912: { + name: 'BSL Mainnet', + chain: 'BSL', + rpc: [ + 'http://rpc-mainnet.nftruth.io:8545', + 'ws://rpc-mainnet.nftruth.io:8645' + ], + faucets: [], + nativeCurrency: { name: 'Origin NFT', symbol: 'ONF', decimals: 18 }, + infoURL: 'https://bsquarelab.com/', + shortName: 'onf', + chainId: 21912, + networkId: 21912, + explorers: [ + { + name: 'BSL Mainnet Explorer', + url: 'https://scan.nftruth.io', + standard: 'EIP3091' + } + ] + }, 22023: { name: 'Taycan', chain: 'Taycan', @@ -16742,6 +16923,27 @@ export const chains: Chains = { } ] }, + 43851: { + name: 'ZKFair Testnet', + chain: 'ETH', + rpc: ['https://testnet-rpc.zkfair.io'], + faucets: [], + nativeCurrency: { name: 'USDC Token', symbol: 'USDC', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://zkfair.io', + shortName: 'ZKFair-Testnet', + chainId: 43851, + networkId: 43851, + icon: 'zkfair', + explorers: [ + { + name: 'ZKFair Testnet Info', + url: 'https://testnet-scan.zkfair.io', + icon: 'zkfair', + standard: 'EIP3091' + } + ] + }, 44444: { name: 'Frenchain', chain: 'fren', @@ -20431,25 +20633,26 @@ export const chains: Chains = { ] }, 622277: { - name: 'Rethereum Mainnet', - chain: 'RTH', + name: 'Hypra Mainnet', + chain: 'HYP', rpc: [ + 'https://rpc.hypra.network', 'https://rpc.rethereum.org', 'https://rethereum.rpc.restratagem.com', 'https://rpc.rthcentral.org' ], faucets: [], - nativeCurrency: { name: 'Rethereum', symbol: 'RTH', decimals: 18 }, + nativeCurrency: { name: 'Hypra', symbol: 'HYP', decimals: 18 }, features: [{ name: 'EIP155' }, { name: 'EIP1559' }], - infoURL: 'https://www.rethereum.org', - shortName: 'rth', + infoURL: 'https://www.hypra.network', + shortName: 'hyp', chainId: 622277, networkId: 622277, icon: 'rethereum', explorers: [ { - name: 'rethereum', - url: 'https://explorer.rethereum.org', + name: 'hypra', + url: 'https://explorer.hypra.network', icon: 'blockscout', standard: 'EIP3091' } @@ -21538,6 +21741,25 @@ export const chains: Chains = { } ] }, + 11155420: { + name: 'OP Sepolia Testnet', + chain: 'ETH', + rpc: ['https://sepolia.optimism.io'], + faucets: ['https://app.optimism.io/faucet'], + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://optimism.io', + shortName: 'opsep', + chainId: 11155420, + networkId: 11155420, + explorers: [ + { + name: 'opscout', + url: 'https://optimism-sepolia.blockscout.com', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, 13371337: { name: 'PepChain Churchill', chain: 'PEP', @@ -21820,28 +22042,6 @@ export const chains: Chains = { networkId: 61717561, slip44: 61717561 }, - 65010000: { - name: 'Autonity Bakerloo (Thames) Testnet', - chain: 'AUT', - rpc: [ - 'https://rpc1.bakerloo.autonity.org/', - 'wss://rpc1.bakerloo.autonity.org/ws/' - ], - faucets: ['https://faucet.autonity.org/'], - nativeCurrency: { name: 'Bakerloo Auton', symbol: 'ATN', decimals: 18 }, - infoURL: 'https://autonity.org/', - shortName: 'bakerloo-0', - chainId: 65010000, - networkId: 65010000, - icon: 'autonity', - explorers: [ - { - name: 'autonity-blockscout', - url: 'https://bakerloo.autonity.org', - standard: 'EIP3091' - } - ] - }, 65100000: { name: 'Autonity Piccadilly (Thames) Testnet', chain: 'AUT', @@ -21957,7 +22157,7 @@ export const chains: Chains = { ] }, 245022926: { - name: 'Neon EVM DevNet', + name: 'Neon EVM Devnet', chain: 'Solana', rpc: ['https://devnet.neonevm.org'], faucets: ['https://neonfaucet.org'], @@ -21968,11 +22168,6 @@ export const chains: Chains = { chainId: 245022926, networkId: 245022926, explorers: [ - { - name: 'native', - url: 'https://devnet.explorer.neon-labs.org', - standard: 'EIP3091' - }, { name: 'neonscan', url: 'https://devnet.neonscan.org', @@ -21987,9 +22182,9 @@ export const chains: Chains = { ] }, 245022934: { - name: 'Neon EVM MainNet', + name: 'Neon EVM Mainnet', chain: 'Solana', - rpc: [], + rpc: ['https://neon-proxy-mainnet.solana.p2p.org'], faucets: [], icon: 'neon', nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 }, @@ -22012,6 +22207,7 @@ export const chains: Chains = { }, 245022940: { name: 'Neon EVM TestNet', + status: 'deprecated', chain: 'Solana', rpc: ['https://testnet.neonevm.org'], faucets: [], diff --git a/src/enums.ts b/src/enums.ts index c4aab6a..4cf2154 100644 --- a/src/enums.ts +++ b/src/enums.ts @@ -194,14 +194,14 @@ export enum ChainName { HighPerformanceBlockchain = 'High Performance Blockchain', EgonCoinMainnet = 'EgonCoin Mainnet', LaChain = 'LaChain', - ZkSyncEraTestnet = 'zkSync Era Testnet', + 'ZkSyncEraGoerliTestnet(deprecated)' = 'zkSync Era Goerli Testnet (deprecated)', BobaNetwork = 'Boba Network', OrderlyMainnet = 'Orderly Mainnet', HederaMainnet = 'Hedera Mainnet', HederaTestnet = 'Hedera Testnet', HederaPreviewnet = 'Hedera Previewnet', HederaLocalnet = 'Hedera Localnet', - '(deprecated)OptimismonGC' = '(deprecated) Optimism on GC', + ZkSyncSepoliaTestnet = 'zkSync Sepolia Testnet', Bobaopera = 'Bobaopera', NeurochainTestnet = 'Neurochain Testnet', WyzthTestnet = 'Wyzth Testnet', @@ -210,7 +210,7 @@ export enum ChainName { 'Filecoin-Mainnet' = 'Filecoin - Mainnet', KCCMainnet = 'KCC Mainnet', KCCTestnet = 'KCC Testnet', - ZkSyncEraMainnet = 'zkSync Era Mainnet', + ZkSyncMainnet = 'zkSync Mainnet', Web3QMainnet = 'Web3Q Mainnet', DFKChainTest = 'DFK Chain Test', Shiden = 'Shiden', @@ -237,6 +237,7 @@ export enum ChainName { SynapseChainTestnet = 'Synapse Chain Testnet', ARZIOChain = 'ARZIO Chain', AreonNetworkTestnet = 'Areon Network Testnet', + AreonNetworkMainnet = 'Areon Network Mainnet', Rupaya = 'Rupaya', 'CaminoC-Chain' = 'Camino C-Chain', ColumbusTestNetwork = 'Columbus Test Network', @@ -264,6 +265,7 @@ export enum ChainName { Avocado = 'Avocado', SXNetworkTestnet = 'SX Network Testnet', EnduranceSmartChainMainnet = 'Endurance Smart Chain Mainnet', + KalichainMainnet = 'Kalichain Mainnet', PixieChainTestnet = 'Pixie Chain Testnet', LAOSArrakis = 'LAOS Arrakis', JuncaChain = 'JuncaChain', @@ -290,6 +292,7 @@ export enum ChainName { Haic = 'Haic', PortalFantasyChainTest = 'Portal Fantasy Chain Test', Qitmeer = 'Qitmeer', + FirechainzkEVM = 'Firechain zkEVM', BeOneChainMainnet = 'BeOne Chain Mainnet', CallistoMainnet = 'Callisto Mainnet', CallistoTestnetDeprecated = 'Callisto Testnet Deprecated', @@ -510,6 +513,8 @@ export enum ChainName { BOMBChainTestnet = 'BOMB Chain Testnet', TCGVerseMainnet = 'TCG Verse Mainnet', XODEX = 'XODEX', + HybridChainNetworkTestnet = 'Hybrid Chain Network Testnet', + HybridChainNetworkMainnet = 'Hybrid Chain Network Mainnet', UnicornUltraNebulasTestnet = 'Unicorn Ultra Nebulas Testnet', FraxchainTestnet = 'Fraxchain Testnet', KorthoMainnet = 'Kortho Mainnet', @@ -519,7 +524,7 @@ export enum ChainName { 'EZChainC-ChainMainnet' = 'EZChain C-Chain Mainnet', 'EZChainC-ChainTestnet' = 'EZChain C-Chain Testnet', WhiteBITNetworkTestnet = 'WhiteBIT Network Testnet', - MorphismTestnet = 'Morphism Testnet', + MorphTestnet = 'Morph Testnet', 'K-LAOS' = 'K-LAOS', BobaNetworkGoerliTestnet = 'Boba Network Goerli Testnet', BitYuanMainnet = 'BitYuan Mainnet', @@ -555,6 +560,7 @@ export enum ChainName { XplaTestnet = 'Xpla Testnet', Crossbell = 'Crossbell', AlveyChainMainnet = 'AlveyChain Mainnet', + FirechainzkEVMGhostrider = 'Firechain zkEVM Ghostrider', KalyChainMainnet = 'KalyChain Mainnet', KalyChainTestnet = 'KalyChain Testnet', DRACNetwork = 'DRAC Network', @@ -785,6 +791,7 @@ export enum ChainName { P12Chain = 'P12 Chain', CENNZnetAzalea = 'CENNZnet Azalea', OmChainMainnet = 'omChain Mainnet', + BSLMainnet = 'BSL Mainnet', Taycan = 'Taycan', AirDAOTestnet = 'AirDAO Testnet', NautilusMainnet = 'Nautilus Mainnet', @@ -839,6 +846,7 @@ export enum ChainName { AvalancheFujiTestnet = 'Avalanche Fuji Testnet', 'AvalancheC-Chain' = 'Avalanche C-Chain', BobaAvax = 'Boba Avax', + ZKFairTestnet = 'ZKFair Testnet', Frenchain = 'Frenchain', CeloAlfajoresTestnet = 'Celo Alfajores Testnet', AutobahnNetwork = 'Autobahn Network', @@ -1024,7 +1032,7 @@ export enum ChainName { 'ScrollPre-AlphaTestnet' = 'Scroll Pre-Alpha Testnet', ShinariumBeta = 'Shinarium Beta', BeanEcoSmartChain = 'BeanEco SmartChain', - RethereumMainnet = 'Rethereum Mainnet', + HypraMainnet = 'Hypra Mainnet', BearNetworkChainMainnet = 'Bear Network Chain Mainnet', ALLMainnet = 'ALL Mainnet', 'Vision-VpioneerTestChain' = 'Vision - Vpioneer Test Chain', @@ -1078,6 +1086,7 @@ export enum ChainName { PlianTestnetSubchain1 = 'Plian Testnet Subchain 1', SoverunMainnet = 'Soverun Mainnet', Sepolia = 'Sepolia', + OPSepoliaTestnet = 'OP Sepolia Testnet', PepChainChurchill = 'PepChain Churchill', AnduschainMainnet = 'Anduschain Mainnet', PlianTestnetMain = 'Plian Testnet Main', @@ -1094,15 +1103,14 @@ export enum ChainName { JoysDigitalMainnet = 'Joys Digital Mainnet', Maistestsubnet = 'maistestsubnet', Aquachain = 'Aquachain', - 'AutonityBakerloo(Thames)Testnet' = 'Autonity Bakerloo (Thames) Testnet', 'AutonityPiccadilly(Thames)Testnet' = 'Autonity Piccadilly (Thames) Testnet', FrameTestnet = 'Frame Testnet', 'T.E.A.MBlockchain' = 'T.E.A.M Blockchain', JoysDigitalTestNet = 'Joys Digital TestNet', GatherMainnetNetwork = 'Gather Mainnet Network', Kanazawa = 'Kanazawa', - NeonEVMDevNet = 'Neon EVM DevNet', - NeonEVMMainNet = 'Neon EVM MainNet', + NeonEVMDevnet = 'Neon EVM Devnet', + NeonEVMMainnet = 'Neon EVM Mainnet', NeonEVMTestNet = 'Neon EVM TestNet', RazorSkaleChain = 'Razor Skale Chain', OneLedgerMainnet = 'OneLedger Mainnet', @@ -1344,14 +1352,14 @@ export enum ChainId { HighPerformanceBlockchain = 269, EgonCoinMainnet = 271, LaChain = 274, - ZkSyncEraTestnet = 280, + 'ZkSyncEraGoerliTestnet(deprecated)' = 280, BobaNetwork = 288, OrderlyMainnet = 291, HederaMainnet = 295, HederaTestnet = 296, HederaPreviewnet = 297, HederaLocalnet = 298, - '(deprecated)OptimismonGC' = 300, + ZkSyncSepoliaTestnet = 300, Bobaopera = 301, NeurochainTestnet = 303, WyzthTestnet = 309, @@ -1360,7 +1368,7 @@ export enum ChainId { 'Filecoin-Mainnet' = 314, KCCMainnet = 321, KCCTestnet = 322, - ZkSyncEraMainnet = 324, + ZkSyncMainnet = 324, Web3QMainnet = 333, DFKChainTest = 335, Shiden = 336, @@ -1387,6 +1395,7 @@ export enum ChainId { SynapseChainTestnet = 444, ARZIOChain = 456, AreonNetworkTestnet = 462, + AreonNetworkMainnet = 463, Rupaya = 499, 'CaminoC-Chain' = 500, ColumbusTestNetwork = 501, @@ -1414,6 +1423,7 @@ export enum ChainId { Avocado = 634, SXNetworkTestnet = 647, EnduranceSmartChainMainnet = 648, + KalichainMainnet = 653, PixieChainTestnet = 666, LAOSArrakis = 667, JuncaChain = 668, @@ -1440,6 +1450,7 @@ export enum ChainId { Haic = 803, PortalFantasyChainTest = 808, Qitmeer = 813, + FirechainzkEVM = 814, BeOneChainMainnet = 818, CallistoMainnet = 820, CallistoTestnetDeprecated = 821, @@ -1660,6 +1671,8 @@ export enum ChainId { BOMBChainTestnet = 2399, TCGVerseMainnet = 2400, XODEX = 2415, + HybridChainNetworkTestnet = 2458, + HybridChainNetworkMainnet = 2468, UnicornUltraNebulasTestnet = 2484, FraxchainTestnet = 2522, KorthoMainnet = 2559, @@ -1669,7 +1682,7 @@ export enum ChainId { 'EZChainC-ChainMainnet' = 2612, 'EZChainC-ChainTestnet' = 2613, WhiteBITNetworkTestnet = 2625, - MorphismTestnet = 2710, + MorphTestnet = 2710, 'K-LAOS' = 2718, BobaNetworkGoerliTestnet = 2888, BitYuanMainnet = 2999, @@ -1705,6 +1718,7 @@ export enum ChainId { XplaTestnet = 3701, Crossbell = 3737, AlveyChainMainnet = 3797, + FirechainzkEVMGhostrider = 3885, KalyChainMainnet = 3888, KalyChainTestnet = 3889, DRACNetwork = 3912, @@ -1935,6 +1949,7 @@ export enum ChainId { P12Chain = 20736, CENNZnetAzalea = 21337, OmChainMainnet = 21816, + BSLMainnet = 21912, Taycan = 22023, AirDAOTestnet = 22040, NautilusMainnet = 22222, @@ -1989,6 +2004,7 @@ export enum ChainId { AvalancheFujiTestnet = 43113, 'AvalancheC-Chain' = 43114, BobaAvax = 43288, + ZKFairTestnet = 43851, Frenchain = 44444, CeloAlfajoresTestnet = 44787, AutobahnNetwork = 45000, @@ -2174,7 +2190,7 @@ export enum ChainId { 'ScrollPre-AlphaTestnet' = 534354, ShinariumBeta = 534849, BeanEcoSmartChain = 535037, - RethereumMainnet = 622277, + HypraMainnet = 622277, BearNetworkChainMainnet = 641230, ALLMainnet = 651940, 'Vision-VpioneerTestChain' = 666666, @@ -2228,6 +2244,7 @@ export enum ChainId { PlianTestnetSubchain1 = 10067275, SoverunMainnet = 10101010, Sepolia = 11155111, + OPSepoliaTestnet = 11155420, PepChainChurchill = 13371337, AnduschainMainnet = 14288640, PlianTestnetMain = 16658437, @@ -2244,15 +2261,14 @@ export enum ChainId { JoysDigitalMainnet = 35855456, Maistestsubnet = 43214913, Aquachain = 61717561, - 'AutonityBakerloo(Thames)Testnet' = 65010000, 'AutonityPiccadilly(Thames)Testnet' = 65100000, FrameTestnet = 68840142, 'T.E.A.MBlockchain' = 88888888, JoysDigitalTestNet = 99415706, GatherMainnetNetwork = 192837465, Kanazawa = 222000222, - NeonEVMDevNet = 245022926, - NeonEVMMainNet = 245022934, + NeonEVMDevnet = 245022926, + NeonEVMMainnet = 245022934, NeonEVMTestNet = 245022940, RazorSkaleChain = 278611351, OneLedgerMainnet = 311752642,