diff --git a/package.json b/package.json index 5206dcd..931c0a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@revoke.cash/chains", - "version": "26.0.0", + "version": "27.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 3d795be..aaa028e 100644 --- a/src/chains.ts +++ b/src/chains.ts @@ -83,6 +83,7 @@ export const chains: Chains = { shortName: 'rop', chainId: 3, networkId: 3, + slip44: 1, ens: { registry: '0x112234455c3a32fd11230c42e7bccd4a84e02010' }, explorers: [ { @@ -109,6 +110,7 @@ export const chains: Chains = { shortName: 'rin', chainId: 4, networkId: 4, + slip44: 1, ens: { registry: '0xe7410170f87102df0055eb195163a03b7f2bff4a' }, explorers: [ { @@ -141,6 +143,7 @@ export const chains: Chains = { shortName: 'gor', chainId: 5, networkId: 5, + slip44: 1, ens: { registry: '0x112234455c3a32fd11230c42e7bccd4a84e02010' }, explorers: [ { @@ -157,16 +160,19 @@ export const chains: Chains = { ] }, 6: { - name: 'Ethereum Classic Testnet Kotti', + name: 'Kotti Testnet', + title: 'Ethereum Classic Kotti Testnet', status: 'deprecated', chain: 'ETC', - rpc: ['https://www.ethercluster.com/kotti'], + icon: 'ethereumclassictestnet', + rpc: [], faucets: [], nativeCurrency: { name: 'Kotti Ether', symbol: 'KOT', decimals: 18 }, - infoURL: 'https://explorer.jade.builders/?network=kotti', + infoURL: 'https://ethereumclassic.org/development/testnets', shortName: 'kot', chainId: 6, - networkId: 6 + networkId: 6, + slip44: 1 }, 7: { name: 'ThaiChain', @@ -219,7 +225,8 @@ export const chains: Chains = { infoURL: 'https://ethersocial.org', shortName: 'tubq', chainId: 9, - networkId: 2 + networkId: 2, + slip44: 1 }, 10: { name: 'OP Mainnet', @@ -286,7 +293,8 @@ export const chains: Chains = { infoURL: 'https://metadium.com', shortName: 'kal', chainId: 12, - networkId: 12 + networkId: 12, + slip44: 1 }, 13: { name: 'Diode Testnet Staging', @@ -297,7 +305,8 @@ export const chains: Chains = { infoURL: 'https://diode.io/staging', shortName: 'dstg', chainId: 13, - networkId: 13 + networkId: 13, + slip44: 1 }, 14: { name: 'Flare Mainnet', @@ -385,6 +394,7 @@ export const chains: Chains = { shortName: 'TST', chainId: 18, networkId: 18, + slip44: 1, explorers: [ { name: 'thundercore-blockscout-testnet', @@ -474,7 +484,8 @@ export const chains: Chains = { infoURL: 'https://elaeth.io/', shortName: 'eladidt', chainId: 23, - networkId: 23 + networkId: 23, + slip44: 1 }, 24: { name: 'KardiaChain Mainnet', @@ -522,6 +533,7 @@ export const chains: Chains = { shortName: 'L1test', chainId: 26, networkId: 26, + slip44: 1, explorers: [ { name: 'Genesis L1 testnet explorer', @@ -558,6 +570,7 @@ export const chains: Chains = { shortName: 'BobaRinkeby', chainId: 28, networkId: 28, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -633,6 +646,7 @@ export const chains: Chains = { shortName: 'trsk', chainId: 31, networkId: 31, + slip44: 1, explorers: [ { name: 'RSK Testnet Explorer', @@ -654,7 +668,8 @@ export const chains: Chains = { infoURL: 'https://www.goodata.org', shortName: 'GooDT', chainId: 32, - networkId: 32 + networkId: 32, + slip44: 1 }, 33: { name: 'GoodData Mainnet', @@ -797,6 +812,7 @@ export const chains: Chains = { shortName: 'TelosEVMTestnet', chainId: 41, networkId: 41, + slip44: 1, explorers: [ { name: 'teloscan', @@ -845,6 +861,7 @@ export const chains: Chains = { shortName: 'pangolin', chainId: 43, networkId: 43, + slip44: 1, explorers: [ { name: 'subscan', @@ -895,6 +912,7 @@ export const chains: Chains = { shortName: 'pangoro', chainId: 45, networkId: 45, + slip44: 1, explorers: [ { name: 'subscan', @@ -978,6 +996,7 @@ export const chains: Chains = { shortName: 'etmpTest', chainId: 49, networkId: 49, + slip44: 1, icon: 'etmp', explorers: [ { @@ -1080,6 +1099,7 @@ export const chains: Chains = { shortName: 'tcet', chainId: 53, networkId: 53, + slip44: 1, explorers: [ { name: 'coinexscan', @@ -1259,20 +1279,24 @@ export const chains: Chains = { ] }, 61: { - name: 'Ethereum Classic Mainnet', + name: 'Ethereum Classic', + title: 'Ethereum Classic Mainnet', + status: 'active', chain: 'ETC', + icon: 'ethereumclassic', rpc: [ 'https://etc.rivet.link', + 'https://besu-at.etc-network.info', + 'https://besu-de.etc-network.info', + 'https://geth-at.etc-network.info', + 'https://geth-de.etc-network.info', 'https://etc.etcdesktop.com', + 'https://rpc.etcinscribe.com', 'https://etc.mytokenpocket.vip' ], features: [{ name: 'EIP155' }], faucets: [], - nativeCurrency: { - name: 'Ethereum Classic Ether', - symbol: 'ETC', - decimals: 18 - }, + nativeCurrency: { name: 'Ether', symbol: 'ETC', decimals: 18 }, infoURL: 'https://ethereumclassic.org', shortName: 'etc', chainId: 61, @@ -1280,51 +1304,89 @@ export const chains: Chains = { slip44: 61, explorers: [ { - name: 'blockscout', - url: 'https://blockscout.com/etc/mainnet', + name: 'blockscout-ethereum-classic', + url: 'https://etc.blockscout.com', + standard: 'EIP3091' + }, + { + name: 'etcnetworkinfo-blockscout-ethereum-classic', + url: 'https://explorer-blockscout.etc-network.info', + standard: 'none' + }, + { + name: 'etcnetworkinfo-alethio-ethereum-classic', + url: 'https://explorer-alethio.etc-network.info', + standard: 'none' + }, + { + name: 'etcnetworkinfo-expedition-ethereum-classic', + url: 'https://explorer-expedition.etc-network.info', + standard: 'none' + }, + { + name: 'hebeblock-ethereum-classic', + url: 'https://etcerscan.com', + standard: 'EIP3091' + }, + { + name: 'oklink-ethereum-classic', + url: 'https://www.oklink.com/etc', + standard: 'EIP3091' + }, + { + name: 'tokenview-ethereum-classic', + url: 'https://etc.tokenview.io', standard: 'EIP3091' } ] }, 62: { - name: 'Ethereum Classic Testnet Morden', + name: 'Morden Testnet', + title: 'Ethereum Classic Morden Testnet', + status: 'deprecated', chain: 'ETC', + icon: 'ethereumclassictestnet', rpc: [], faucets: [], - nativeCurrency: { - name: 'Ethereum Classic Testnet Ether', - symbol: 'TETC', - decimals: 18 - }, - infoURL: 'https://ethereumclassic.org', + nativeCurrency: { name: 'Morden Ether', symbol: 'TETC', decimals: 18 }, + infoURL: 'https://ethereumclassic.org/development/testnets', shortName: 'tetc', chainId: 62, - networkId: 2 + networkId: 2, + slip44: 1 }, 63: { - name: 'Ethereum Classic Testnet Mordor', + name: 'Mordor Testnet', + title: 'Ethereum Classic Mordor Testnet', + status: 'active', chain: 'ETC', - rpc: ['https://rpc.mordor.etccooperative.org'], + icon: 'ethereumclassictestnet', + rpc: [ + 'https://rpc.mordor.etccooperative.org', + 'https://geth-mordor.etc-network.info' + ], features: [{ name: 'EIP155' }], faucets: [ - 'https://mordor.canhaz.net/', - 'https://easy.hebeswap.com/#/faucet' + 'https://easy.hebeswap.com/#/faucet', + 'https://faucet.mordortest.net' ], - nativeCurrency: { - name: 'Mordor Classic Testnet Ether', - symbol: 'METC', - decimals: 18 - }, - infoURL: 'https://github.com/eth-classic/mordor/', + nativeCurrency: { name: 'Mordor Ether', symbol: 'METC', decimals: 18 }, + infoURL: 'https://ethereumclassic.org/development/testnets', shortName: 'metc', chainId: 63, networkId: 7, - slip44: 63, + slip44: 1, explorers: [ { - name: 'blockscout', - url: 'https://blockscout.com/etc/mordor', + name: 'blockscout-mordor', + url: 'https://etc-mordor.blockscout.com', standard: 'EIP3091' + }, + { + name: 'etcnetworkinfo-expedition-mordor', + url: + 'https://explorer-expedition.etc-network.info/?network=Ethereum+Classic+at+etc-network.info+GETH+Mordor', + standard: 'none' } ] }, @@ -1354,6 +1416,7 @@ export const chains: Chains = { shortName: 'tokt', chainId: 65, networkId: 65, + slip44: 1, explorers: [ { name: 'OKLink', @@ -1396,7 +1459,8 @@ export const chains: Chains = { infoURL: 'http://test.dbmbp.com', shortName: 'dbm', chainId: 67, - networkId: 67 + networkId: 67, + slip44: 1 }, 68: { name: 'SoterOne Mainnet', @@ -1430,7 +1494,8 @@ export const chains: Chains = { infoURL: 'https://optimism.io', shortName: 'okov', chainId: 69, - networkId: 69 + networkId: 69, + slip44: 1 }, 70: { name: 'Hoo Smart Chain', @@ -1488,7 +1553,8 @@ export const chains: Chains = { infoURL: 'https://testnet.dxscan.io/', shortName: 'dxc', chainId: 72, - networkId: 72 + networkId: 72, + slip44: 1 }, 73: { name: 'FNCY', @@ -1702,6 +1768,7 @@ export const chains: Chains = { shortName: 'MeterTest', chainId: 83, networkId: 83, + slip44: 1, explorers: [ { name: 'Meter Testnet Scan', @@ -1734,6 +1801,7 @@ export const chains: Chains = { shortName: 'gttest', chain: 'GTTEST', networkId: 85, + slip44: 1, nativeCurrency: { name: 'GateToken', symbol: 'GT', decimals: 18 }, rpc: ['https://testnet.gatenode.cc'], faucets: ['https://www.gatescan.org/testnet/faucet'], @@ -1809,7 +1877,7 @@ export const chains: Chains = { shortName: 'tomot', chainId: 89, networkId: 89, - slip44: 889 + slip44: 1 }, 90: { name: 'Garizon Stage0', @@ -1981,6 +2049,7 @@ export const chains: Chains = { shortName: 'bnbt', chainId: 97, networkId: 97, + slip44: 1, explorers: [ { name: 'bscscan-testnet', @@ -2108,7 +2177,8 @@ export const chains: Chains = { infoURL: 'https://web3games.org/', shortName: 'tw3g', chainId: 102, - networkId: 102 + networkId: 102, + slip44: 1 }, 103: { name: 'Worldland Mainnet', @@ -2143,6 +2213,7 @@ export const chains: Chains = { shortName: 'tklc', chainId: 104, networkId: 104, + slip44: 1, icon: 'kaiba', explorers: [ { @@ -2205,6 +2276,7 @@ export const chains: Chains = { shortName: 'ntn', chainId: 107, networkId: 107, + slip44: 1, explorers: [ { name: 'nebulatestnet', @@ -2264,7 +2336,8 @@ export const chains: Chains = { infoURL: 'https://protonchain.com', shortName: 'xpr', chainId: 110, - networkId: 110 + networkId: 110, + slip44: 1 }, 111: { name: 'EtherLite Chain', @@ -2333,6 +2406,7 @@ export const chains: Chains = { shortName: 'c2flr', chainId: 114, networkId: 114, + slip44: 1, explorers: [ { name: 'blockscout', @@ -2353,6 +2427,7 @@ export const chains: Chains = { shortName: 'debank-testnet', chainId: 115, networkId: 115, + slip44: 1, explorers: [] }, 116: { @@ -2400,6 +2475,7 @@ export const chains: Chains = { shortName: 'arcology', chainId: 118, networkId: 118, + slip44: 1, explorers: [ { name: 'arcology', @@ -2438,6 +2514,7 @@ export const chains: Chains = { shortName: 'enulst', chainId: 120, networkId: 120, + slip44: 1, icon: 'enuls', explorers: [ { @@ -2533,7 +2610,7 @@ export const chains: Chains = { shortName: 'OYchainTestnet', chainId: 125, networkId: 125, - slip44: 125, + slip44: 1, explorers: [ { name: 'OYchain Testnet Explorer', @@ -2600,6 +2677,34 @@ export const chains: Chains = { } ] }, + 131: { + name: 'Engram Testnet', + chain: 'tGRAM', + icon: 'engram', + rpc: [ + 'https://tokioswift.engram.tech', + 'https://tokio-archive.engram.tech' + ], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { + name: 'Engram Tokio Testnet', + symbol: 'tGRAM', + decimals: 18 + }, + infoURL: 'https://engramnet.io', + shortName: 'tgram', + chainId: 131, + networkId: 131, + explorers: [ + { + name: 'blockscout', + url: 'https://tokioscan-v2.engram.tech', + icon: 'engram', + standard: 'EIP3091' + } + ] + }, 134: { name: 'iExec Sidechain', chain: 'Bellecour', @@ -2634,6 +2739,7 @@ export const chains: Chains = { shortName: 'AlyxTestnet', chainId: 135, networkId: 135, + slip44: 1, explorers: [ { name: 'alyx testnet scan', @@ -2760,6 +2866,7 @@ export const chains: Chains = { shortName: 'OPtest', chainId: 141, networkId: 141, + slip44: 1, explorers: [ { name: 'Belly Scan', @@ -2882,6 +2989,7 @@ export const chains: Chains = { chain: 'RBN', chainId: 153, networkId: 153, + slip44: 1, rpc: [], faucets: [], infoURL: 'https://redbelly.network', @@ -2919,6 +3027,7 @@ export const chains: Chains = { shortName: 'tenet-testnet', chainId: 155, networkId: 155, + slip44: 1, explorers: [ { name: 'TenetScan Testnet', @@ -2939,6 +3048,7 @@ export const chains: Chains = { shortName: 'obe', chainId: 156, networkId: 156, + slip44: 1, icon: 'oescan', explorers: [ { @@ -2978,6 +3088,7 @@ export const chains: Chains = { shortName: 'wall-e', chainId: 161, networkId: 161, + slip44: 1, explorers: [ { name: 'blockscout - evascan', @@ -2995,7 +3106,8 @@ export const chains: Chains = { infoURL: 'https://explorer.sirius.lightstreams.io', shortName: 'tpht', chainId: 162, - networkId: 162 + networkId: 162, + slip44: 1 }, 163: { name: 'Lightstreams Mainnet', @@ -3019,6 +3131,7 @@ export const chains: Chains = { shortName: 'omni_testnet', chainId: 165, networkId: 165, + slip44: 1, explorers: [ { name: 'Omni Explorer', @@ -3038,6 +3151,7 @@ export const chains: Chains = { shortName: 'atoshi', chainId: 167, networkId: 167, + slip44: 1, explorers: [ { name: 'atoshiscan', @@ -3095,7 +3209,8 @@ export const chains: Chains = { infoURL: 'https://www.hoosmartchain.com', shortName: 'hoosmartchain', chainId: 170, - networkId: 170 + networkId: 170, + slip44: 1 }, 172: { name: 'Latam-Blockchain Resil Testnet', @@ -3110,7 +3225,8 @@ export const chains: Chains = { infoURL: 'https://latam-blockchain.com', shortName: 'resil', chainId: 172, - networkId: 172 + networkId: 172, + slip44: 1 }, 180: { name: 'AME Chain Mainnet', @@ -3176,6 +3292,7 @@ export const chains: Chains = { shortName: 'BMCT', chainId: 189, networkId: 189, + slip44: 1, explorers: [ { name: 'Blockmeta', @@ -3217,6 +3334,7 @@ export const chains: Chains = { shortName: 'tokb', chainId: 195, networkId: 195, + slip44: 1, explorers: [ { name: 'OKLink', @@ -3254,6 +3372,7 @@ export const chains: Chains = { shortName: 'NEUTR', chainId: 197, networkId: 197, + slip44: 1, explorers: [ { name: 'blockscout', @@ -3327,6 +3446,7 @@ export const chains: Chains = { shortName: 'moactest', chainId: 201, networkId: 201, + slip44: 1, explorers: [ { name: 'moac testnet explorer', @@ -3377,6 +3497,7 @@ export const chains: Chains = { shortName: 'VCTEST', chainId: 206, networkId: 206, + slip44: 1, icon: 'vitainu-testnet', explorers: [ { @@ -3528,6 +3649,25 @@ export const chains: Chains = { networkId: 218, status: 'deprecated' }, + 220: { + name: 'Scalind Testnet', + chain: 'ETH', + icon: 'scalind', + rpc: ['https://rpc-sepolia.scalind.com'], + faucets: ['https://faucet.scalind.com'], + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://scalind.com', + shortName: 'sepscal', + chainId: 220, + networkId: 220, + explorers: [ + { + name: 'scalind', + url: 'https://explorer-sepolia.scalind.com', + standard: 'EIP3091' + } + ] + }, 222: { name: 'Permission', chain: 'ASK', @@ -3571,6 +3711,7 @@ export const chains: Chains = { shortName: 'TLA', chainId: 226, networkId: 226, + slip44: 1, explorers: [ { name: 'blockscout', @@ -3612,6 +3753,7 @@ export const chains: Chains = { shortName: 'deamtest', chainId: 236, networkId: 236, + slip44: 1, explorers: [ { name: 'Deamchain Testnet Explorer', @@ -3621,6 +3763,25 @@ export const chains: Chains = { } ] }, + 238: { + name: 'Blast Mainnet', + chain: 'ETH', + icon: 'blastIcon', + rpc: ['https://rpc.blastblockchain.com'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://docs.blastblockchain.com', + shortName: 'blast', + chainId: 238, + networkId: 238, + explorers: [ + { + name: 'Blast Mainnet', + url: 'https://scan.blastblockchain.com', + standard: 'EIP3091' + } + ] + }, 242: { name: 'Plinga Mainnet', chain: 'Plinga', @@ -3896,6 +4057,7 @@ export const chains: Chains = { shortName: 'zksync-goerli', chainId: 280, networkId: 280, + slip44: 1, icon: 'zksync-era', explorers: [ { @@ -4018,7 +4180,7 @@ export const chains: Chains = { shortName: 'hedera-testnet', chainId: 296, networkId: 296, - slip44: 3030, + slip44: 1, explorers: [ { name: 'HashScan', @@ -4093,6 +4255,7 @@ export const chains: Chains = { shortName: 'zksync-sepolia', chainId: 300, networkId: 300, + slip44: 1, icon: 'zksync-era', explorers: [ { @@ -4143,6 +4306,7 @@ export const chains: Chains = { shortName: 'ncnt', chainId: 303, networkId: 303, + slip44: 1, explorers: [ { name: 'neuroscan', @@ -4162,6 +4326,7 @@ export const chains: Chains = { shortName: 'wyz', chainId: 309, networkId: 309, + slip44: 1, icon: 'wyzth_icon', explorers: [ { @@ -4289,6 +4454,7 @@ export const chains: Chains = { shortName: 'kcst', chainId: 322, networkId: 322, + slip44: 1, explorers: [ { name: 'kcc-scan-testnet', @@ -4351,6 +4517,7 @@ export const chains: Chains = { shortName: 'DFKTEST', chainId: 335, networkId: 335, + slip44: 1, explorers: [ { name: 'ethernal', @@ -4403,6 +4570,7 @@ export const chains: Chains = { shortName: 'tcro', chainId: 338, networkId: 338, + slip44: 1, explorers: [ { name: 'Cronos Testnet Explorer', @@ -4411,26 +4579,6 @@ export const chains: Chains = { } ] }, - 345: { - name: 'Yooldo Verse Mainnet', - chain: 'Yooldo Verse', - icon: 'yooldo_verse', - rpc: ['https://rpc.yooldo-verse.xyz/'], - faucets: [], - nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, - infoURL: 'https://yooldo.gg/', - shortName: 'YVM', - chainId: 345, - networkId: 345, - explorers: [ - { - name: 'Yooldo Verse Explorer', - url: 'https://explorer.yooldo-verse.xyz', - standard: 'EIP3091' - } - ], - parent: { type: 'L2', chain: 'eip155-248' } - }, 361: { name: 'Theta Mainnet', chain: 'Theta', @@ -4459,6 +4607,7 @@ export const chains: Chains = { shortName: 'theta-sapphire', chainId: 363, networkId: 363, + slip44: 1, explorers: [ { name: 'Theta Sapphire Testnet Explorer', @@ -4477,6 +4626,7 @@ export const chains: Chains = { shortName: 'theta-amber', chainId: 364, networkId: 364, + slip44: 1, explorers: [ { name: 'Theta Amber Testnet Explorer', @@ -4495,6 +4645,7 @@ export const chains: Chains = { shortName: 'theta-testnet', chainId: 365, networkId: 365, + slip44: 1, explorers: [ { name: 'Theta Testnet Explorer', @@ -4548,6 +4699,7 @@ export const chains: Chains = { shortName: 'tCNT', chainId: 371, networkId: 371, + slip44: 1, icon: 'constachain', explorers: [ { @@ -4603,6 +4755,7 @@ export const chains: Chains = { shortName: 'hpn', chainId: 400, networkId: 400, + slip44: 1, explorers: [ { name: 'blockscout', @@ -4622,6 +4775,7 @@ export const chains: Chains = { shortName: 'ozo_tst', chainId: 401, networkId: 401, + slip44: 1, icon: 'ozonechain', explorers: [ { @@ -4709,6 +4863,7 @@ export const chains: Chains = { shortName: 'ogor', chainId: 420, networkId: 420, + slip44: 1, explorers: [ { name: 'blockscout', @@ -4788,6 +4943,7 @@ export const chains: Chains = { shortName: 'obs-testnet', chain: 'ETH', networkId: 443, + slip44: 1, nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, rpc: ['https://testnet.obscu.ro'], faucets: [], @@ -4816,6 +4972,7 @@ export const chains: Chains = { shortName: 'synapse-sepolia', chainId: 444, networkId: 444, + slip44: 1, redFlags: ['reusedChainId'], explorers: [ { @@ -4858,13 +5015,20 @@ export const chains: Chains = { name: 'Areon Network Testnet', chain: 'Areon', icon: 'areon', - rpc: ['https://testnet-rpc.areon.network'], + rpc: [ + 'https://testnet-rpc.areon.network', + 'https://testnet-rpc2.areon.network', + 'https://testnet-rpc3.areon.network', + 'https://testnet-rpc4.areon.network', + 'https://testnet-rpc5.areon.network' + ], faucets: [], nativeCurrency: { name: 'Areon', symbol: 'TAREA', decimals: 18 }, infoURL: 'https://areon.network', shortName: 'tarea', chainId: 462, networkId: 462, + slip44: 1, explorers: [ { name: 'AreonScan', @@ -4933,6 +5097,7 @@ export const chains: Chains = { shortName: 'Columbus', chainId: 501, networkId: 1001, + slip44: 1, icon: 'camino', explorers: [ { @@ -4981,6 +5146,7 @@ export const chains: Chains = { shortName: 'aact', chainId: 513, networkId: 513, + slip44: 1, explorers: [ { name: 'aacscan-testnet', @@ -5095,6 +5261,7 @@ export const chains: Chains = { shortName: 'PAW', chainId: 542, networkId: 542, + slip44: 1, explorers: [ { name: 'PAWCHAIN Testnet', @@ -5148,6 +5315,7 @@ export const chains: Chains = { shortName: 'dct', chainId: 568, networkId: 568, + slip44: 1, explorers: [ { name: 'dogechain testnet explorer', @@ -5184,6 +5352,7 @@ export const chains: Chains = { shortName: 'metis-stardust', chainId: 588, networkId: 588, + slip44: 1, explorers: [ { name: 'blockscout', @@ -5242,7 +5411,7 @@ export const chains: Chains = { shortName: 'maca', chainId: 595, networkId: 595, - slip44: 595, + slip44: 1, explorers: [ { name: 'blockscout', @@ -5264,7 +5433,7 @@ export const chains: Chains = { shortName: 'tkar', chainId: 596, networkId: 596, - slip44: 596, + slip44: 1, explorers: [ { name: 'blockscout', @@ -5286,7 +5455,7 @@ export const chains: Chains = { shortName: 'taca', chainId: 597, networkId: 597, - slip44: 597, + slip44: 1, explorers: [ { name: 'blockscout', @@ -5305,6 +5474,7 @@ export const chains: Chains = { shortName: 'metis-goerli', chainId: 599, networkId: 599, + slip44: 1, explorers: [ { name: 'blockscout', @@ -5331,25 +5501,26 @@ export const chains: Chains = { infoURL: '', shortName: 'mesh-chain-testnet', chainId: 600, - networkId: 600 + networkId: 600, + slip44: 1 }, 601: { - name: 'PEER Testnet', - chain: 'PEER', - rpc: ['http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com'], - faucets: ['https://testnet.peer.inc'], - nativeCurrency: { name: 'PEER Token', symbol: 'PEER', decimals: 18 }, - infoURL: 'https://peer.inc', - shortName: 'PEER', + name: 'Vine Testnet', + chain: 'VINE', + rpc: ['https://rpc-testnet.vne.network'], + faucets: ['https://vne.network/rose'], + nativeCurrency: { name: 'VINE', symbol: 'VNE', decimals: 18 }, + infoURL: 'https://www.peer.inc', + shortName: 'VINE', chainId: 601, networkId: 601, - icon: 'peer', + icon: 'vine', explorers: [ { - name: 'PEER Explorer', - url: 'https://testnet.peer.inc', + name: 'Vine Explorer', + url: 'https://vne.network/rose', standard: 'none', - icon: 'peer' + icon: 'vine' } ] }, @@ -5402,6 +5573,7 @@ export const chains: Chains = { shortName: 'SX-Testnet', chainId: 647, networkId: 647, + slip44: 1, explorers: [ { name: 'SX Network Toronto Explorer', @@ -5466,7 +5638,8 @@ export const chains: Chains = { infoURL: 'https://scan-testnet.chain.pixie.xyz', shortName: 'pixie-chain-testnet', chainId: 666, - networkId: 666 + networkId: 666, + slip44: 1 }, 667: { name: 'LAOS Arrakis', @@ -5531,6 +5704,7 @@ export const chains: Chains = { shortName: 'juncat', chainId: 669, networkId: 669, + slip44: 1, explorers: [ { name: 'JuncaScan', @@ -5572,6 +5746,7 @@ export const chains: Chains = { shortName: 'SNS', chainId: 700, networkId: 700, + slip44: 1, explorers: [ { name: 'starscan', @@ -5608,6 +5783,7 @@ export const chains: Chains = { shortName: 'tbcs', chainId: 708, networkId: 708, + slip44: 1, explorers: [ { name: 'BlockChain Station Explorer', @@ -5696,6 +5872,7 @@ export const chains: Chains = { shortName: 'tcanto', chainId: 740, networkId: 740, + slip44: 1, explorers: [ { name: 'Canto Tesnet Explorer (Neobase)', @@ -5716,6 +5893,7 @@ export const chains: Chains = { shortName: 'vsct', chainId: 741, networkId: 741, + slip44: 1, explorers: [ { name: 'ventionscan', @@ -5734,6 +5912,7 @@ export const chains: Chains = { shortName: 'SPAY', chainId: 742, networkId: 742, + slip44: 1, explorers: [ { name: 'Script Explorer', @@ -5773,6 +5952,7 @@ export const chains: Chains = { shortName: 'opc', chainId: 776, networkId: 776, + slip44: 1, explorers: [ { name: 'OPEN CHAIN TESTNET', @@ -5852,6 +6032,7 @@ export const chains: Chains = { shortName: 'taero', chainId: 788, networkId: 788, + slip44: 1, explorers: [ { name: 'aeroscan', @@ -5926,6 +6107,7 @@ export const chains: Chains = { shortName: 'PFTEST', chainId: 808, networkId: 808, + slip44: 1, explorers: [] }, 813: { @@ -6036,6 +6218,7 @@ export const chains: Chains = { shortName: 'tclo', chainId: 821, networkId: 2, + slip44: 1, status: 'deprecated' }, 841: { @@ -6068,6 +6251,7 @@ export const chains: Chains = { shortName: 'taratest', chainId: 842, networkId: 842, + slip44: 1, explorers: [ { name: 'Taraxa Explorer', @@ -6215,6 +6399,7 @@ export const chains: Chains = { shortName: 'gar-test-s1', chainId: 901, networkId: 901, + slip44: 1, explorers: [ { name: 'explorer', @@ -6236,6 +6421,7 @@ export const chains: Chains = { shortName: 'gar-test-s2', chainId: 902, networkId: 902, + slip44: 1, explorers: [ { name: 'explorer', @@ -6257,6 +6443,7 @@ export const chains: Chains = { shortName: 'gar-test-s3', chainId: 903, networkId: 903, + slip44: 1, explorers: [ { name: 'explorer', @@ -6294,7 +6481,8 @@ export const chains: Chains = { infoURL: 'https://decentrabone.com', shortName: 'DBONE', chainId: 910, - networkId: 910 + networkId: 910, + slip44: 1 }, 917: { name: 'Rinia Testnet', @@ -6307,6 +6495,7 @@ export const chains: Chains = { shortName: 'tfire', chainId: 917, networkId: 917, + slip44: 1, explorers: [], status: 'incubating' }, @@ -6320,6 +6509,7 @@ export const chains: Chains = { shortName: 'modesep', chainId: 919, networkId: 919, + slip44: 1, icon: 'modeTestnet', explorers: [ { @@ -6359,6 +6549,7 @@ export const chains: Chains = { chain: 'tPLS', chainId: 940, networkId: 940, + slip44: 1, infoURL: 'https://pulsechain.com/', rpc: [ 'https://rpc.v2.testnet.pulsechain.com/', @@ -6374,6 +6565,7 @@ export const chains: Chains = { chain: 't2bPLS', chainId: 941, networkId: 941, + slip44: 1, infoURL: 'https://pulsechain.com/', rpc: [ 'https://rpc.v2b.testnet.pulsechain.com/', @@ -6389,6 +6581,7 @@ export const chains: Chains = { chain: 't3PLS', chainId: 942, networkId: 942, + slip44: 1, infoURL: 'https://pulsechain.com/', rpc: [ 'https://rpc.v3.testnet.pulsechain.com/', @@ -6418,7 +6611,7 @@ export const chains: Chains = { faucets: ['https://faucet.v4.testnet.pulsechain.com/'], ens: { registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' }, status: 'active', - slip44: 60, + slip44: 1, nativeCurrency: { name: 'Test Pulse', symbol: 'tPLS', decimals: 18 }, explorers: [ { @@ -6443,7 +6636,29 @@ export const chains: Chains = { infoURL: 'https://munode.dev/', shortName: 'munode', chainId: 956, - networkId: 956 + networkId: 956, + slip44: 1 + }, + 957: { + name: 'Lyra Chain', + chain: 'Lyra', + rpc: ['https://rpc.lyra.finance'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://lyra.finance', + shortName: 'lyra', + chainId: 957, + networkId: 957, + icon: 'lyra', + explorers: [ + { + name: 'Lyra Explorer', + url: 'https://explorer.lyra.finance', + icon: 'lyra', + standard: 'EIP3091' + } + ] }, 963: { name: 'BTC20 Smart Chain', @@ -6666,7 +6881,8 @@ export const chains: Chains = { infoURL: 'https://testnet.wanscan.org', shortName: 'twan', chainId: 999, - networkId: 999 + networkId: 999, + slip44: 1 }, 1000: { name: 'GTON Mainnet', @@ -6697,6 +6913,7 @@ export const chains: Chains = { shortName: 'Baobab', chainId: 1001, networkId: 1001, + slip44: 1, explorers: [ { name: 'klaytnscope', @@ -6754,7 +6971,8 @@ export const chains: Chains = { infoURL: 'https://www.newtonproject.org/', shortName: 'tnew', chainId: 1007, - networkId: 1007 + networkId: 1007, + slip44: 1 }, 1008: { name: 'Eurus Mainnet', @@ -6819,7 +7037,8 @@ export const chains: Chains = { infoURL: 'https://clover.finance', shortName: 'tclv', chainId: 1023, - networkId: 1023 + networkId: 1023, + slip44: 1 }, 1024: { name: 'CLV Parachain', @@ -6842,6 +7061,7 @@ export const chains: Chains = { shortName: 'tbtt', chainId: 1028, networkId: 1028, + slip44: 1, explorers: [ { name: 'testbttcscan', @@ -6879,6 +7099,7 @@ export const chains: Chains = { shortName: 'prx', chainId: 1031, networkId: 1031, + slip44: 1, explorers: [ { name: 'proxy network testnet', @@ -6897,6 +7118,7 @@ export const chains: Chains = { shortName: 'bronos-testnet', chainId: 1038, networkId: 1038, + slip44: 1, icon: 'bronos', explorers: [ { @@ -6942,6 +7164,7 @@ export const chains: Chains = { shortName: 'shimmerevm-testnet-deprecated', chainId: 1071, networkId: 1071, + slip44: 1, explorers: [ { name: 'explorer', @@ -6966,6 +7189,7 @@ export const chains: Chains = { shortName: 'shimmerevm-testnet-deprecated-1072', chainId: 1072, networkId: 1072, + slip44: 1, explorers: [ { name: 'explorer', @@ -6990,6 +7214,7 @@ export const chains: Chains = { shortName: 'shimmerevm-testnet', chainId: 1073, networkId: 1073, + slip44: 1, explorers: [ { name: 'explorer', @@ -7010,6 +7235,7 @@ export const chains: Chains = { shortName: 'mintara-testnet', chainId: 1079, networkId: 1079, + slip44: 1, explorers: [ { name: 'explorer', @@ -7145,6 +7371,7 @@ export const chains: Chains = { shortName: 'tblxq', chainId: 1107, networkId: 1107, + slip44: 1, explorers: [ { name: 'BLXq Explorer', @@ -7202,6 +7429,7 @@ export const chains: Chains = { shortName: 'twemix', chainId: 1112, networkId: 1112, + slip44: 1, explorers: [ { name: 'WEMIX Testnet Microscope', @@ -7225,6 +7453,7 @@ export const chains: Chains = { shortName: 'tcore', chainId: 1115, networkId: 1115, + slip44: 1, explorers: [ { name: 'Core Scan Testnet', @@ -7303,17 +7532,21 @@ export const chains: Chains = { shortName: 'DFI-T', chainId: 1131, networkId: 1131, + slip44: 1, icon: 'defichain-network', explorers: [] }, 1133: { - name: 'DeFiMetaChain', - icon: 'changi', + name: 'DeFiMetaChain Changi Testnet', + icon: 'defichain-network', chain: 'DFI', - rpc: ['https://testnet-dmc.mydefichain.com:20551'], + rpc: [ + 'https://dmc.mydefichain.com/changi', + 'https://testnet-dmc.mydefichain.com:20551' + ], faucets: ['http://tc04.mydefichain.com/faucet'], nativeCurrency: { name: 'DeFiChain Token', symbol: 'DFI', decimals: 18 }, - infoURL: 'https://defichain.com', + infoURL: 'https://meta.defichain.com', shortName: 'changi', chainId: 1133, networkId: 1133, @@ -7336,6 +7569,7 @@ export const chains: Chains = { shortName: 'ASARt', chainId: 1138, networkId: 1138, + slip44: 1, explorers: [ { name: 'amstarscan-testnet', @@ -7367,7 +7601,8 @@ export const chains: Chains = { infoURL: 'https://mathchain.org', shortName: 'tMATH', chainId: 1140, - networkId: 1140 + networkId: 1140, + slip44: 1 }, 1149: { name: 'Symplexia Smart Chain', @@ -7399,6 +7634,7 @@ export const chains: Chains = { shortName: 'auoc', chainId: 1170, networkId: 1170, + slip44: 1, icon: 'origin', explorers: [ { @@ -7424,6 +7660,7 @@ export const chains: Chains = { shortName: 'sht', chainId: 1177, networkId: 1177, + slip44: 1, icon: 'smarthost', explorers: [ { @@ -7462,7 +7699,8 @@ export const chains: Chains = { infoURL: 'https://evanesco.org/', shortName: 'avis', chainId: 1201, - networkId: 1201 + networkId: 1201, + slip44: 1 }, 1202: { name: 'World Trade Technical Chain Mainnet', @@ -7550,6 +7788,7 @@ export const chains: Chains = { shortName: 'UltronTestnet', chainId: 1230, networkId: 1230, + slip44: 1, explorers: [ { name: 'Ultron Testnet Explorer', @@ -7635,6 +7874,7 @@ export const chains: Chains = { shortName: 'TARC', chainId: 1244, networkId: 1244, + slip44: 1, explorers: [ { name: 'archiescan', @@ -7675,6 +7915,7 @@ export const chains: Chains = { shortName: 'CICT', chainId: 1252, networkId: 1252, + slip44: 1, icon: 'cicchain', explorers: [ { @@ -7774,6 +8015,7 @@ export const chains: Chains = { shortName: 'mbase', chainId: 1287, networkId: 1287, + slip44: 1, explorers: [ { name: 'moonscan', @@ -7807,6 +8049,7 @@ export const chains: Chains = { shortName: 'swtr', chainId: 1291, networkId: 1291, + slip44: 1, icon: 'swisstronik', explorers: [ { @@ -7854,6 +8097,7 @@ export const chains: Chains = { shortName: 'Bobabase', chainId: 1297, networkId: 1297, + slip44: 1, explorers: [ { name: 'Bobabase block explorer', @@ -7939,6 +8183,7 @@ export const chains: Chains = { shortName: 'aiatestnet', chainId: 1320, networkId: 1320, + slip44: 1, explorers: [ { name: 'AIA Chain Explorer Testnet', @@ -7957,7 +8202,8 @@ export const chains: Chains = { infoURL: 'https://geth.ethereum.org', shortName: 'geth', chainId: 1337, - networkId: 1337 + networkId: 1337, + slip44: 1 }, 1338: { name: 'Elysium Testnet', @@ -7971,6 +8217,7 @@ export const chains: Chains = { shortName: 'ELST', chainId: 1338, networkId: 1338, + slip44: 1, explorers: [ { name: 'Elysium testnet explorer', @@ -8134,6 +8381,7 @@ export const chains: Chains = { shortName: 'zkevmtest', chainId: 1402, networkId: 1402, + slip44: 1, explorers: [ { name: 'blockscout', @@ -8154,6 +8402,7 @@ export const chains: Chains = { shortName: 'testnet-zkEVM-mango-pre-audit-upgraded', chainId: 1422, networkId: 1422, + slip44: 1, explorers: [ { name: 'Polygon zkEVM explorer', @@ -8209,6 +8458,7 @@ export const chains: Chains = { shortName: 'testnet-zkEVM-mango', chainId: 1442, networkId: 1442, + slip44: 1, explorers: [ { name: 'Polygon zkEVM explorer', @@ -8228,6 +8478,7 @@ export const chains: Chains = { shortName: 'gil', chainId: 1452, networkId: 1452, + slip44: 1, explorers: [ { name: 'GIL Explorer', @@ -8301,6 +8552,7 @@ export const chains: Chains = { shortName: 'SherpaxTestnet', chainId: 1507, networkId: 1507, + slip44: 1, explorers: [ { name: 'Sherpax Testnet Explorer', @@ -8420,7 +8672,7 @@ export const chains: Chains = { infoURL: 'https://horizen.io/', chainId: 1663, networkId: 1663, - slip44: 121, + slip44: 1, explorers: [ { name: 'Gobi Testnet Block Explorer', @@ -8492,6 +8744,7 @@ export const chains: Chains = { shortName: 'tTBSI', chainId: 1708, networkId: 1708, + slip44: 1, explorers: [ { name: 'blockscout', @@ -8582,6 +8835,7 @@ export const chains: Chains = { shortName: 'kerleano', chainId: 1804, networkId: 1804, + slip44: 1, icon: 'pocr', explorers: [ { @@ -8607,6 +8861,7 @@ export const chains: Chains = { shortName: 'rAna', chainId: 1807, networkId: 1807, + slip44: 1, explorers: [ { name: 'blockscout', @@ -8670,7 +8925,7 @@ export const chains: Chains = { shortName: 'cubet', chainId: 1819, networkId: 1819, - slip44: 1819, + slip44: 1, explorers: [ { name: 'cubetest-scan', @@ -8721,6 +8976,7 @@ export const chains: Chains = { shortName: 'gitshockchain', chainId: 1881, networkId: 1881, + slip44: 1, explorers: [ { name: 'blockscout', @@ -8733,10 +8989,7 @@ export const chains: Chains = { name: 'Lightlink Phoenix Mainnet', chain: 'Lightlink Phoenix Mainnet', icon: 'lightlink', - rpc: [ - 'https://replicator-01.phoenix.lightlink.io/rpc/v1', - 'https://replicator-02.phoenix.lightlink.io/rpc/v1' - ], + rpc: ['https://replicator.phoenix.lightlink.io/rpc/v1'], features: [{ name: 'EIP155' }], faucets: [], nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 }, @@ -8757,17 +9010,15 @@ export const chains: Chains = { name: 'Lightlink Pegasus Testnet', chain: 'Lightlink Pegasus Testnet', icon: 'lightlink', - rpc: [ - 'https://replicator-01.pegasus.lightlink.io/rpc/v1', - 'https://replicator-02.pegasus.lightlink.io/rpc/v1' - ], + rpc: ['https://replicator.pegasus.lightlink.io/rpc/v1'], features: [{ name: 'EIP155' }], - faucets: ['https://pegasus-faucet-react.vercel.app'], + faucets: ['https://faucet.pegasus.lightlink.io/'], nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 }, infoURL: 'https://lightlink.io', shortName: 'lightlink_pegasus', chainId: 1891, networkId: 1891, + slip44: 1, explorers: [ { name: 'pegasus', @@ -8844,6 +9095,7 @@ export const chains: Chains = { shortName: 'tbitci', chainId: 1908, networkId: 1908, + slip44: 1, explorers: [ { name: 'Bitci Explorer Testnet', @@ -8871,6 +9123,25 @@ export const chains: Chains = { } ] }, + 1911: { + name: 'Scalind', + chain: 'ETH', + icon: 'scalind', + rpc: ['https://rpc.scalind.com'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://scalind.com', + shortName: 'scal', + chainId: 1911, + networkId: 1911, + explorers: [ + { + name: 'scalind', + url: 'https://explorer.scalind.com', + standard: 'EIP3091' + } + ] + }, 1945: { name: 'ONUS Chain Testnet', title: 'ONUS Chain Testnet', @@ -8882,6 +9153,7 @@ export const chains: Chains = { shortName: 'onus-testnet', chainId: 1945, networkId: 1945, + slip44: 1, explorers: [ { name: 'Onus explorer testnet', @@ -8920,6 +9192,7 @@ export const chains: Chains = { shortName: 'Dexilla', chainId: 1954, networkId: 1954, + slip44: 1, explorers: [ { name: 'dos-mainnet', @@ -8944,6 +9217,7 @@ export const chains: Chains = { shortName: 'mtc', chainId: 1967, networkId: 1967, + slip44: 1, explorers: [ { name: 'metaexplorer-eleanor', @@ -8966,6 +9240,7 @@ export const chains: Chains = { shortName: 'tscs', chainId: 1969, networkId: 1969, + slip44: 1, icon: 'super', explorers: [ { @@ -9009,8 +9284,27 @@ export const chains: Chains = { shortName: 'atlr', chainId: 1971, networkId: 1971, + slip44: 1, icon: 'atlr' }, + 1972: { + name: 'RedeCoin', + chain: 'REDEV2', + rpc: ['https://rpc2.redecoin.eu'], + faucets: [], + nativeCurrency: { name: 'RedeCoin', symbol: 'REDEV2', decimals: 18 }, + infoURL: 'https://www.redecoin.eu', + shortName: 'rede', + chainId: 1972, + networkId: 1972, + explorers: [ + { + name: 'RedeCoin Explorer', + url: 'https://explorer3.redecoin.eu', + standard: 'none' + } + ] + }, 1975: { name: 'ONUS Chain Mainnet', title: 'ONUS Chain Mainnet', @@ -9041,6 +9335,7 @@ export const chains: Chains = { shortName: 'euntest', chainId: 1984, networkId: 1984, + slip44: 1, icon: 'eurus', explorers: [ { @@ -9081,6 +9376,7 @@ export const chains: Chains = { shortName: 'satoshie_testnet', chainId: 1986, networkId: 1986, + slip44: 1, icon: 'satoshie', explorers: [ { @@ -9136,6 +9432,7 @@ export const chains: Chains = { shortName: 'edx', chainId: 1995, networkId: 1995, + slip44: 1, icon: 'edexa', explorers: [ { @@ -9145,6 +9442,26 @@ export const chains: Chains = { } ] }, + 1998: { + name: 'Kyoto Testnet', + chain: 'KYOTO', + rpc: ['https://rpc.testnet.kyotoprotocol.io:8545'], + faucets: ['https://faucet.kyotoprotocol.io'], + nativeCurrency: { name: 'Kyoto', symbol: 'KYOTO', decimals: 18 }, + features: [{ name: 'EIP155' }], + infoURL: 'https://kyotoprotocol.io', + shortName: 'kyoto-testnet', + chainId: 1998, + networkId: 1998, + slip44: 1, + explorers: [ + { + name: 'Kyotoscan', + url: 'https://testnet.kyotoscan.io', + standard: 'EIP3091' + } + ] + }, 2000: { name: 'Dogechain Mainnet', chain: 'DC', @@ -9226,6 +9543,7 @@ export const chains: Chains = { shortName: 'cloudwalk_testnet', chainId: 2008, networkId: 2008, + slip44: 1, explorers: [ { name: 'CloudWalk Testnet Explorer', @@ -9262,7 +9580,7 @@ export const chains: Chains = { icon: 'mainnetz', rpc: ['https://mainnet-rpc.mainnetz.io', 'https://eu-rpc.mainnetz.io'], faucets: ['https://faucet.mainnetz.io'], - nativeCurrency: { name: 'MainnetZ', symbol: 'NetZ', decimals: 18 }, + nativeCurrency: { name: 'mainnetz', symbol: 'NetZ', decimals: 18 }, infoURL: 'https://mainnetz.io', shortName: 'NetZm', chainId: 2016, @@ -9306,7 +9624,7 @@ export const chains: Chains = { shortName: 'pmint_test', chainId: 2019, networkId: 2019, - slip44: 60, + slip44: 1, explorers: [ { name: 'PublicMint Explorer', @@ -9386,6 +9704,7 @@ export const chains: Chains = { shortName: 'edgt', chainId: 2022, networkId: 2022, + slip44: 1, explorers: [ { name: 'Edgscan by Bharathcoorg', @@ -9404,6 +9723,7 @@ export const chains: Chains = { shortName: 'taycan-testnet', chainId: 2023, networkId: 2023, + slip44: 1, icon: 'shuffle', explorers: [ { @@ -9486,6 +9806,7 @@ export const chains: Chains = { shortName: 'kiwi', chainId: 2037, networkId: 2037, + slip44: 1, explorers: [ { name: 'KIWI Explorer', @@ -9505,6 +9826,7 @@ export const chains: Chains = { shortName: 'shraptest', chainId: 2038, networkId: 2038, + slip44: 1, explorers: [ { name: 'SHRAPNEL Explorer', @@ -9556,6 +9878,7 @@ export const chains: Chains = { shortName: 'stos-testnet', chainId: 2047, networkId: 2047, + slip44: 1, explorers: [ { name: 'Stratos EVM Explorer (Blockscout)', @@ -9687,6 +10010,7 @@ export const chains: Chains = { shortName: 'esp', chainId: 2101, networkId: 2101, + slip44: 1, explorers: [ { name: 'Ecoball Testnet Explorer', @@ -9746,6 +10070,7 @@ export const chains: Chains = { shortName: 'MEU', chainId: 2124, networkId: 2124, + slip44: 1, explorers: [ { name: 'MP1Scan', @@ -9781,7 +10106,7 @@ export const chains: Chains = { shortName: 'dfio-meta-test', chainId: 2138, networkId: 21, - slip44: 60, + slip44: 1, ens: { registry: '0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85' }, explorers: [ { @@ -9839,6 +10164,7 @@ export const chains: Chains = { shortName: 'findora-testnet', chainId: 2153, networkId: 2153, + slip44: 1, explorers: [ { name: 'findorascan', @@ -9857,6 +10183,7 @@ export const chains: Chains = { shortName: 'findora-forge', chainId: 2154, networkId: 2154, + slip44: 1, explorers: [ { name: 'findorascan', @@ -10098,6 +10425,7 @@ export const chains: Chains = { shortName: 'sma', chainId: 2323, networkId: 2323, + slip44: 1, icon: 'soma', explorers: [ { @@ -10162,6 +10490,7 @@ export const chains: Chains = { shortName: 'deprecated-kroma-sepolia', chain: 'ETH', networkId: 2357, + slip44: 1, nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, rpc: ['https://api.sepolia-deprecated.kroma.network'], faucets: [], @@ -10189,6 +10518,7 @@ export const chains: Chains = { shortName: 'kroma-sepolia', chain: 'ETH', networkId: 2358, + slip44: 1, nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, rpc: ['https://api.sepolia.kroma.network'], faucets: [], @@ -10218,6 +10548,7 @@ export const chains: Chains = { shortName: 'bombt', chainId: 2399, networkId: 2399, + slip44: 1, icon: 'bomb', explorers: [ { @@ -10286,6 +10617,7 @@ export const chains: Chains = { shortName: 'thrc', chainId: 2458, networkId: 2458, + slip44: 1, icon: 'hybrid', explorers: [ { @@ -10337,6 +10669,7 @@ export const chains: Chains = { shortName: 'u2u_nebulas', chainId: 2484, networkId: 2484, + slip44: 1, icon: 'u2u_nebulas', explorers: [ { @@ -10357,6 +10690,7 @@ export const chains: Chains = { shortName: 'fraxchain-testnet', chainId: 2522, networkId: 2522, + slip44: 1, explorers: [], status: 'active' }, @@ -10467,6 +10801,7 @@ export const chains: Chains = { shortName: 'Fuji-EZChain', chainId: 2613, networkId: 2613, + slip44: 1, icon: 'ezchain', explorers: [ { @@ -10486,6 +10821,7 @@ export const chains: Chains = { shortName: 'twbt', chainId: 2625, networkId: 2625, + slip44: 1, icon: 'whitebit-testnet', explorers: [ { @@ -10505,6 +10841,7 @@ export const chains: Chains = { shortName: 'tmorph', chainId: 2710, networkId: 2710, + slip44: 1, explorers: [ { name: 'Morph Testnet Explorer', @@ -10552,6 +10889,7 @@ export const chains: Chains = { shortName: 'BobaGoerli', chainId: 2888, networkId: 2888, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -10763,7 +11101,8 @@ export const chains: Chains = { infoURL: 'https://arabianchain.org', shortName: 'testdubx', chainId: 3270, - networkId: 3270 + networkId: 3270, + slip44: 1 }, 3306: { name: 'Debounce Subnet Testnet', @@ -10776,6 +11115,7 @@ export const chains: Chains = { shortName: 'debounce-devnet', chainId: 3306, networkId: 3306, + slip44: 1, explorers: [ { name: 'Debounce Devnet Explorer', @@ -10794,7 +11134,8 @@ export const chains: Chains = { infoURL: 'https://zcore.cash', shortName: 'zcrbeach', chainId: 3331, - networkId: 3331 + networkId: 3331, + slip44: 1 }, 3333: { name: 'Web3Q Testnet', @@ -10806,6 +11147,7 @@ export const chains: Chains = { shortName: 'w3q-t', chainId: 3333, networkId: 3333, + slip44: 1, explorers: [ { name: 'w3q-testnet', @@ -10862,6 +11204,7 @@ export const chains: Chains = { shortName: 'SCAIt', chainId: 3434, networkId: 3434, + slip44: 1, explorers: [ { name: 'SecureChain', @@ -10880,6 +11223,7 @@ export const chains: Chains = { shortName: 'prbtestnet', chainId: 3500, networkId: 3500, + slip44: 1, icon: 'prb', explorers: [ { @@ -10894,9 +11238,9 @@ export const chains: Chains = { chain: 'JFIN', rpc: ['https://rpc.jfinchain.com'], faucets: [], - nativeCurrency: { name: 'JFIN Coin', symbol: 'jfin', decimals: 18 }, + nativeCurrency: { name: 'JFIN Coin', symbol: 'JFIN', decimals: 18 }, infoURL: 'https://jfinchain.com', - shortName: 'jfin', + shortName: 'JFIN', chainId: 3501, networkId: 3501, explorers: [ @@ -10937,6 +11281,7 @@ export const chains: Chains = { shortName: 'pando-testnet', chainId: 3602, networkId: 3602, + slip44: 1, explorers: [ { name: 'Pando Testnet Explorer', @@ -10956,6 +11301,7 @@ export const chains: Chains = { shortName: 'BTNX', chainId: 3636, networkId: 3636, + slip44: 1, explorers: [ { name: '3xpl', @@ -11066,6 +11412,7 @@ export const chains: Chains = { shortName: 'SPCt', chainId: 3698, networkId: 3698, + slip44: 1, explorers: [ { name: 'SenjePowers', @@ -11103,6 +11450,7 @@ export const chains: Chains = { shortName: 'xplatest', chainId: 3701, networkId: 3701, + slip44: 1, icon: 'xpla', explorers: [ { @@ -11196,6 +11544,7 @@ export const chains: Chains = { shortName: 'kalytestnet', chainId: 3889, networkId: 3889, + slip44: 1, explorers: [ { name: 'KalyScan', @@ -11234,6 +11583,7 @@ export const chains: Chains = { shortName: 'dost', chainId: 3939, networkId: 3939, + slip44: 1, icon: 'doschain', explorers: [ { @@ -11272,6 +11622,7 @@ export const chains: Chains = { shortName: 'tdyno', chainId: 3967, networkId: 3967, + slip44: 1, explorers: [ { name: 'DYNO Explorer', @@ -11332,6 +11683,7 @@ export const chains: Chains = { shortName: 'PERIUM', chainId: 4001, networkId: 4001, + slip44: 1, icon: 'peperium', explorers: [ { @@ -11357,6 +11709,7 @@ export const chains: Chains = { shortName: 'tftm', chainId: 4002, networkId: 4002, + slip44: 1, icon: 'fantom', explorers: [ { @@ -11377,6 +11730,7 @@ export const chains: Chains = { shortName: 'x1-fastnet', chainId: 4003, networkId: 4003, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -11401,6 +11755,7 @@ export const chains: Chains = { shortName: 'BobaoperaTestnet', chainId: 4051, networkId: 4051, + slip44: 1, explorers: [ { name: 'Bobaopera Testnet block explorer', @@ -11437,6 +11792,7 @@ export const chains: Chains = { shortName: 'Nahmii3Testnet', chainId: 4062, networkId: 4062, + slip44: 1, icon: 'nahmii', explorers: [ { @@ -11452,6 +11808,26 @@ export const chains: Chains = { bridges: [{ url: 'https://bridge.testnet.n3.nahmii.io' }] } }, + 4078: { + name: 'Muster Mainnet', + chainId: 4078, + shortName: 'muster', + chain: 'Muster', + icon: 'muster', + networkId: 4078, + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + rpc: ['https://muster.alt.technology'], + faucets: [], + explorers: [ + { + name: 'Musterscan', + url: 'https://muster-explorer.alt.technology', + standard: 'EIP3091' + } + ], + infoURL: '', + parent: { type: 'L2', chain: 'eip155-42161', bridges: [] } + }, 4090: { name: 'Fastex Chain (Bahamut) Oasis Testnet', title: 'Bahamut testnet Oasis', @@ -11465,6 +11841,7 @@ export const chains: Chains = { shortName: 'Oasis', chainId: 4090, networkId: 4090, + slip44: 1, explorers: [ { name: 'blockscout', @@ -11484,6 +11861,7 @@ export const chains: Chains = { shortName: 'BNIt', chainId: 4096, networkId: 4096, + slip44: 1, explorers: [ { name: 'Bitindi', @@ -11522,7 +11900,7 @@ export const chains: Chains = { shortName: 'aioz-testnet', chainId: 4102, networkId: 4102, - slip44: 60, + slip44: 1, explorers: [ { name: 'AIOZ Network Testnet Explorer', @@ -11542,6 +11920,7 @@ export const chains: Chains = { shortName: 'humans_testnet', chainId: 4139, networkId: 4139, + slip44: 1, icon: 'humans-dark' }, 4141: { @@ -11555,6 +11934,7 @@ export const chains: Chains = { shortName: 'TPBXt', chainId: 4141, networkId: 4141, + slip44: 1, explorers: [ { name: 'Tipboxcoin', @@ -11604,6 +11984,7 @@ export const chains: Chains = { shortName: 'lukso-testnet', chainId: 4201, networkId: 4201, + slip44: 1, features: [{ name: 'EIP155' }, { name: 'EIP1559' }] }, 4242: { @@ -11644,6 +12025,7 @@ export const chains: Chains = { shortName: 'BobaFujiTestnet', chainId: 4328, networkId: 4328, + slip44: 1, explorers: [ { name: 'Bobafuji Testnet block explorer', @@ -11732,6 +12114,7 @@ export const chains: Chains = { shortName: 'orderlyl2', chainId: 4460, networkId: 4460, + slip44: 1, icon: 'orderlyTestnet', explorers: [ { @@ -11771,6 +12154,7 @@ export const chains: Chains = { shortName: 'iotex-testnet', chainId: 4690, networkId: 4690, + slip44: 1, explorers: [ { name: 'testnet iotexscan', @@ -11789,6 +12173,7 @@ export const chains: Chains = { shortName: 'TESTMEV', chainId: 4759, networkId: 4759, + slip44: 1, icon: 'meverse', explorers: [ { @@ -11814,6 +12199,7 @@ export const chains: Chains = { shortName: 'TBXN', chainId: 4777, networkId: 4777, + slip44: 1, icon: 'bxn', explorers: [ { @@ -11849,6 +12235,7 @@ export const chains: Chains = { shortName: 'txvm', chainId: 4918, networkId: 4918, + slip44: 1, explorers: [ { name: 'Venidium EVM Testnet Explorer', @@ -11940,6 +12327,7 @@ export const chains: Chains = { shortName: 'mantle-testnet', chainId: 5001, networkId: 5001, + slip44: 1, explorers: [ { name: 'Mantle Testnet Explorer', @@ -11984,6 +12372,7 @@ export const chains: Chains = { shortName: 'mnt-sep', chainId: 5003, networkId: 5003, + slip44: 1, explorers: [ { name: 'blockscout', @@ -12009,6 +12398,7 @@ export const chains: Chains = { shortName: 'tntest', chainId: 5005, networkId: 5005, + slip44: 1, explorers: [ { name: 'Treasurenet EVM BlockExplorer', @@ -12142,6 +12532,7 @@ export const chains: Chains = { shortName: 'ttrn', chainId: 5353, networkId: 5353, + slip44: 1, icon: 'tritanium', explorers: [ { @@ -12163,6 +12554,7 @@ export const chains: Chains = { shortName: 'VEX', chainId: 5522, networkId: 5522, + slip44: 1, explorers: [ { name: 'Vexascan-EVM-TestNet', @@ -12206,6 +12598,7 @@ export const chains: Chains = { shortName: 'NahmiiTestnet', chainId: 5553, networkId: 5553, + slip44: 1, icon: 'nahmii', explorers: [ { @@ -12261,6 +12654,7 @@ export const chains: Chains = { shortName: 'obnbt', chainId: 5611, networkId: 5611, + slip44: 1, explorers: [ { name: 'bscscan-opbnb-testnet', @@ -12283,7 +12677,8 @@ export const chains: Chains = { infoURL: 'https://arcturuschain.io', shortName: 'ARCT', chainId: 5616, - networkId: 5616 + networkId: 5616, + slip44: 1 }, 5678: { name: 'Tanssi EVM ContainerChain', @@ -12315,6 +12710,7 @@ export const chains: Chains = { shortName: 'tsys', chainId: 5700, networkId: 5700, + slip44: 1, explorers: [ { name: 'Syscoin Testnet Block Explorer', @@ -12354,6 +12750,7 @@ export const chains: Chains = { shortName: 'satst', chainId: 5758, networkId: 5758, + slip44: 1, explorers: [ { name: 'SatoshiChain Testnet Explorer', @@ -12374,6 +12771,7 @@ export const chains: Chains = { shortName: 'ggui', chainId: 5777, networkId: 5777, + slip44: 1, explorers: [] }, 5851: { @@ -12396,6 +12794,7 @@ export const chains: Chains = { shortName: 'OntologyTestnet', chainId: 5851, networkId: 5851, + slip44: 1, explorers: [ { name: 'explorer', @@ -12432,6 +12831,7 @@ export const chains: Chains = { shortName: 'TRESTEST', chainId: 6065, networkId: 6065, + slip44: 1, icon: 'tresleches', explorers: [ { @@ -12500,6 +12900,7 @@ export const chains: Chains = { shortName: 'UPTN-TEST', chainId: 6118, networkId: 6118, + slip44: 1, explorers: [ { name: 'UPTN Testnet Explorer', @@ -12562,6 +12963,7 @@ export const chains: Chains = { shortName: 'SRC-test', chainId: 6552, networkId: 6552, + slip44: 1, icon: 'scolcoin', explorers: [ { @@ -12585,6 +12987,7 @@ export const chains: Chains = { shortName: 'fox', chainId: 6565, networkId: 6565, + slip44: 1, icon: 'fox', explorers: [ { @@ -12620,6 +13023,77 @@ export const chains: Chains = { } ] }, + 6660: { + name: 'Latest Chain Testnet', + chain: 'LATEST', + icon: 'latestChain', + rpc: ['https://testnet-rpc.latestcoin.io'], + faucets: ['http://faucet.latestchain.io'], + nativeCurrency: { name: 'Latest', symbol: 'LATEST', decimals: 18 }, + infoURL: 'https://latestcoin.io', + shortName: 'LATESTt', + chainId: 6660, + networkId: 6660, + explorers: [ + { + name: 'Latest Chain', + url: 'http://testnet.latestchain.io', + standard: 'EIP3091' + } + ] + }, + 6661: { + name: 'Cybria Mainnet', + chain: 'CYBA', + rpc: ['https://rpc-mainnet.cybria.io'], + faucets: [], + nativeCurrency: { name: 'Cybria', symbol: 'CYBA', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://cybria.io', + shortName: 'cyba', + chainId: 6661, + networkId: 6661, + icon: 'cybria', + explorers: [ + { + name: 'Cybria Explorer', + url: 'https://cybascan.io', + icon: 'cybascan', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-11155420', + bridges: [{ url: 'https://app.optimism.io/bridge' }] + } + }, + 6666: { + name: 'Cybria Testnet', + chain: 'CYBA', + rpc: ['https://l2-rpc.cybascan.io'], + faucets: ['https://faucet.cybascan.io'], + nativeCurrency: { name: 'Cybria', symbol: 'CYBA', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://cybria.io', + shortName: 'tcyba', + chainId: 6666, + networkId: 6666, + icon: 'cybria', + explorers: [ + { + name: 'Cybria Explorer', + url: 'https://explorer.cybascan.io', + icon: 'cybascan', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-11155420', + bridges: [{ url: 'https://app.optimism.io/bridge' }] + } + }, 6688: { name: 'IRIShub', chain: 'IRIShub', @@ -12645,6 +13119,26 @@ export const chains: Chains = { } ] }, + 6779: { + name: 'Compverse Mainnet', + chain: 'CPV', + icon: 'compverse', + rpc: ['https://rpc.compverse.io/', 'https://rpc-useast1.compverse.io/'], + faucets: [], + nativeCurrency: { name: 'compverse', symbol: 'CPV', decimals: 18 }, + infoURL: 'https://compverse.io', + shortName: 'compverse', + chainId: 6779, + networkId: 6779, + slip44: 7779, + explorers: [ + { + name: 'cpvscan', + url: 'https://scan.compverse.io', + standard: 'EIP3091' + } + ] + }, 6789: { name: 'Gold Smart Chain Mainnet', chain: 'STAND', @@ -12733,6 +13227,7 @@ export const chains: Chains = { shortName: 'zetachain-athens', chainId: 7001, networkId: 7001, + slip44: 1, status: 'active', explorers: [ { @@ -12787,6 +13282,27 @@ export const chains: Chains = { } ] }, + 7100: { + name: 'Nume', + title: 'Nume', + chain: 'Nume', + rpc: ['https://rpc.numecrypto.com'], + faucets: [], + nativeCurrency: { name: 'Dai Stablecoin', symbol: 'DAI', decimals: 18 }, + infoURL: 'https://numecrypto.com', + shortName: 'nume', + chainId: 7100, + networkId: 7100, + icon: 'nume', + explorers: [ + { + name: 'numeexplorer', + url: 'https://explorer.numecrypto.com', + icon: 'nume', + standard: 'none' + } + ] + }, 7171: { name: 'Bitrock Mainnet', chain: 'Bitrock', @@ -12919,6 +13435,7 @@ export const chains: Chains = { shortName: 'tadil', chainId: 7575, networkId: 7575, + slip44: 1, explorers: [ { name: 'ADIL Testnet Explorer', @@ -12980,6 +13497,7 @@ export const chains: Chains = { shortName: 'trn-porcini', chainId: 7672, networkId: 7672, + slip44: 1, explorers: [ { name: 'rootnet', @@ -13042,6 +13560,7 @@ export const chains: Chains = { shortName: 'TestnetCanto', chainId: 7701, networkId: 7701, + slip44: 1, explorers: [ { name: 'Canto Testnet EVM Explorer (Blockscout)', @@ -13067,6 +13586,7 @@ export const chains: Chains = { shortName: 'tbitrock', chainId: 7771, networkId: 7771, + slip44: 1, explorers: [ { name: 'Bitrock Testnet Explorer', @@ -13091,6 +13611,7 @@ export const chains: Chains = { shortName: 'RiseOfTheWarbotsTestnet', chainId: 7777, networkId: 7777, + slip44: 1, explorers: [ { name: 'avascan', @@ -13111,6 +13632,7 @@ export const chains: Chains = { shortName: 'maal-test', chainId: 7860, networkId: 7860, + slip44: 1, explorers: [ { name: 'maalscan testnet', @@ -13132,6 +13654,7 @@ export const chains: Chains = { shortName: 'tscas', chainId: 7878, networkId: 7878, + slip44: 1, explorers: [ { name: 'Hazlor Testnet Explorer', @@ -13216,6 +13739,7 @@ export const chains: Chains = { shortName: 'teleport-testnet', chainId: 8001, networkId: 8001, + slip44: 1, icon: 'teleport', explorers: [ { @@ -13241,7 +13765,8 @@ export const chains: Chains = { infoURL: 'https://mdgl.io', shortName: 'mdgl', chainId: 8029, - networkId: 8029 + networkId: 8029, + slip44: 1 }, 8080: { name: 'Shardeum Liberty 1.X', @@ -13315,6 +13840,18 @@ export const chains: Chains = { networkId: 8086, explorers: [] }, + 8087: { + name: 'E-Dollar', + chain: 'USD', + rpc: ['https://rpc.e-dollar.org'], + faucets: [], + nativeCurrency: { name: 'E-Dollar', symbol: 'USD', decimals: 18 }, + infoURL: 'https://e-dollar.org', + shortName: 'E-Dollar', + chainId: 8087, + networkId: 8087, + explorers: [] + }, 8098: { name: 'StreamuX Blockchain', chain: 'StreamuX', @@ -13342,6 +13879,7 @@ export const chains: Chains = { shortName: 'meertest', chainId: 8131, networkId: 8131, + slip44: 1, icon: 'meer', explorers: [ { @@ -13431,6 +13969,7 @@ export const chains: Chains = { shortName: 'tBOC', chainId: 8181, networkId: 8181, + slip44: 1, icon: 'beonechain', explorers: [ { @@ -13472,6 +14011,7 @@ export const chains: Chains = { shortName: 'ttqf', chainId: 8194, networkId: 8194, + slip44: 1, explorers: [ { name: 'blockscout', @@ -13528,7 +14068,8 @@ export const chains: Chains = { infoURL: 'https://www.kortho.io/', shortName: 'Kortho', chainId: 8285, - networkId: 8285 + networkId: 8285, + slip44: 1 }, 8387: { name: 'Dracones Financial Services', @@ -13606,6 +14147,7 @@ export const chains: Chains = { shortName: 'toki-testnet', chainId: 8655, networkId: 8655, + slip44: 1, icon: 'toki', explorers: [] }, @@ -13657,7 +14199,7 @@ export const chains: Chains = { shortName: 'tolo', chainId: 8724, networkId: 8724, - slip44: 479 + slip44: 1 }, 8738: { name: 'Alph Network', @@ -13773,6 +14315,7 @@ export const chains: Chains = { shortName: 'opl', chainId: 8882, networkId: 8882, + slip44: 1, explorers: [ { name: 'Unique Scan / Opal', @@ -13866,6 +14409,7 @@ export const chains: Chains = { chain: 'JBC', rpc: ['https://rpc-l1.jibchain.net', 'https://jib-rpc.inan.in.th'], faucets: [], + icon: 'jbc', features: [{ name: 'EIP155' }, { name: 'EIP1559' }], nativeCurrency: { name: 'JIBCOIN', symbol: 'JBC', decimals: 18 }, infoURL: 'https://jibchain.net', @@ -13926,6 +14470,7 @@ export const chains: Chains = { shortName: 'evmos-testnet', chainId: 9000, networkId: 9000, + slip44: 1, icon: 'evmos', explorers: [ { @@ -14006,6 +14551,7 @@ export const chains: Chains = { shortName: '_old_tfire', chainId: 9170, networkId: 9170, + slip44: 1, explorers: [], status: 'deprecated' }, @@ -14039,6 +14585,7 @@ export const chains: Chains = { shortName: 'DOGSt', chainId: 9339, networkId: 9339, + slip44: 1, explorers: [ { name: 'Dogcoin', @@ -14062,6 +14609,7 @@ export const chains: Chains = { shortName: 'trpg', chainId: 9527, networkId: 9527, + slip44: 1, explorers: [ { name: 'rangersscan-robin', @@ -14080,6 +14628,7 @@ export const chains: Chains = { shortName: 'QETTest', chainId: 9528, networkId: 9528, + slip44: 1, explorers: [ { name: 'QEasyWeb3 Explorer', @@ -14102,6 +14651,7 @@ export const chains: Chains = { shortName: 'testneon', chainId: 9559, networkId: 9559, + slip44: 1, icon: 'neonlink', explorers: [ { @@ -14150,6 +14700,7 @@ export const chains: Chains = { shortName: 'BobaBnbTestnet', chainId: 9728, networkId: 9728, + slip44: 1, explorers: [ { name: 'Boba BNB Testnet block explorer', @@ -14174,6 +14725,7 @@ export const chains: Chains = { shortName: 'NetZt', chainId: 9768, networkId: 9768, + slip44: 1, explorers: [ { name: 'MainnetZ', @@ -14226,6 +14778,7 @@ export const chains: Chains = { shortName: 'carbon-testnet', chainId: 9792, networkId: 9792, + slip44: 1, explorers: [] }, 9818: { @@ -14241,6 +14794,7 @@ export const chains: Chains = { shortName: 'tIMP', chainId: 9818, networkId: 9818, + slip44: 1, icon: 'timp', explorers: [ { @@ -14288,6 +14842,7 @@ export const chains: Chains = { shortName: 'tMIND', chainId: 9977, networkId: 9977, + slip44: 1, explorers: [ { name: 'Mind Chain explorer', @@ -14296,6 +14851,29 @@ export const chains: Chains = { } ] }, + 9980: { + name: 'Combo Mainnet', + chain: 'Combo', + icon: 'combo', + rpc: ['https://rpc.combonetwork.io'], + faucets: [], + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'BNB', + decimals: 18 + }, + infoURL: 'https://combonetwork.io', + shortName: 'combo-mainnet', + chainId: 9980, + networkId: 9980, + explorers: [ + { + name: 'combotrace explorer', + url: 'https://combotrace.nodereal.io', + standard: 'EIP3091' + } + ] + }, 9990: { name: 'Agung Network', chain: 'Agung', @@ -14329,6 +14907,7 @@ export const chains: Chains = { 'https://rpc-msc.mindchain.info/', 'https://seednode.mindchain.info', 'https://archive.mindchain.info/', + 'https://mind-smart-chain.rpc.thirdweb.com', 'wss://archive.mindchain.info/ws', 'wss://seednode.mindchain.info/ws' ], @@ -14357,6 +14936,7 @@ export const chains: Chains = { shortName: 'alt-testnet', chainId: 9997, networkId: 9997, + slip44: 1, icon: 'altlayer', explorers: [ { @@ -14376,7 +14956,8 @@ export const chains: Chains = { infoURL: 'https://docs.bccloud.net/', shortName: 'myn', chainId: 9999, - networkId: 9999 + networkId: 9999, + slip44: 1 }, 10000: { name: 'Smart Bitcoin Cash', @@ -14410,7 +14991,8 @@ export const chains: Chains = { infoURL: 'http://smartbch.org/', shortName: 'smartbchtest', chainId: 10001, - networkId: 10001 + networkId: 10001, + slip44: 1 }, 10024: { name: 'Gon Chain', @@ -14454,6 +15036,7 @@ export const chains: Chains = { shortName: 'joct', chainId: 10081, networkId: 10081, + slip44: 1, explorers: [ { name: 'Testnet Block Explorer', @@ -14505,6 +15088,7 @@ export const chains: Chains = { shortName: 'chi', chainId: 10200, networkId: 10200, + slip44: 1, explorers: [ { name: 'blockscout-chiadochain', @@ -14554,6 +15138,7 @@ export const chains: Chains = { shortName: 'aa', chainId: 10243, networkId: 10243, + slip44: 1, explorers: [ { name: 'blockscout', @@ -14592,6 +15177,7 @@ export const chains: Chains = { shortName: 'TWLC', chainId: 10395, networkId: 10395, + slip44: 1, explorers: [ { name: 'Worldland Explorer', @@ -14633,6 +15219,7 @@ export const chains: Chains = { shortName: 'Snow', chainId: 10508, networkId: 10508, + slip44: 1, explorers: [ { name: 'ethernal', @@ -14702,6 +15289,7 @@ export const chains: Chains = { shortName: 'quadranstestnet', chainId: 10947, networkId: 10947, + slip44: 1, explorers: [ { name: 'explorer', @@ -14766,6 +15354,7 @@ export const chains: Chains = { shortName: 'astra-testnet', chainId: 11115, networkId: 11115, + slip44: 1, icon: 'astra', explorers: [ { @@ -14841,6 +15430,7 @@ export const chains: Chains = { shortName: 'shyftt', chainId: 11437, networkId: 11437, + slip44: 1, explorers: [ { name: 'Shyft Testnet BX', @@ -14860,6 +15450,7 @@ export const chains: Chains = { shortName: 'SRDXt', chainId: 11612, networkId: 11612, + slip44: 1, explorers: [ { name: 'Sardis', @@ -14940,6 +15531,7 @@ export const chains: Chains = { shortName: 'tZERO', chainId: 12051, networkId: 12051, + slip44: 1, explorers: [ { name: 'zeroscan', @@ -15038,7 +15630,8 @@ export const chains: Chains = { infoURL: 'https://blgchain.com', shortName: 'blgchain', chainId: 12321, - networkId: 12321 + networkId: 12321, + slip44: 1 }, 12345: { name: 'Step Testnet', @@ -15052,6 +15645,7 @@ export const chains: Chains = { shortName: 'steptest', chainId: 12345, networkId: 12345, + slip44: 1, explorers: [ { name: 'StepScan', @@ -15090,6 +15684,7 @@ export const chains: Chains = { shortName: 'tRIK', chainId: 12715, networkId: 12715, + slip44: 1, explorers: [ { name: 'Rikeza Blockchain explorer', @@ -15109,6 +15704,7 @@ export const chains: Chains = { shortName: 'tqnet', chainId: 12890, networkId: 12890, + slip44: 1, explorers: [ { name: 'Quantum Scan Testnet', @@ -15174,6 +15770,7 @@ export const chains: Chains = { icon: 'beam', chainId: 13337, networkId: 13337, + slip44: 1, explorers: [ { name: 'Beam Explorer', @@ -15182,6 +15779,26 @@ export const chains: Chains = { } ] }, + 13371: { + name: 'Immutable zkEVM', + chain: 'Immutable zkEVM', + rpc: ['https://rpc.immutable.com'], + faucets: ['https://docs.immutable.com/docs/zkEVM/guides/faucet'], + nativeCurrency: { name: 'IMX', symbol: 'IMX', decimals: 18 }, + infoURL: 'https://www.immutable.com', + shortName: 'imx', + chainId: 13371, + networkId: 13371, + icon: 'immutable', + explorers: [ + { + name: 'Immutable explorer', + url: 'https://explorer.immutable.com', + standard: 'EIP3091', + icon: 'immutable' + } + ] + }, 13381: { name: 'Phoenix Mainnet', chain: 'Phoenix', @@ -15211,6 +15828,7 @@ export const chains: Chains = { shortName: 'imx-testnet', chainId: 13473, networkId: 13473, + slip44: 1, icon: 'immutable', explorers: [ { @@ -15251,6 +15869,7 @@ export const chains: Chains = { shortName: 'SPS-Test', chainId: 14000, networkId: 14000, + slip44: 1, explorers: [ { name: 'SPS Test Explorer', @@ -15269,6 +15888,7 @@ export const chains: Chains = { shortName: 'hmnd-t5', chainId: 14853, networkId: 14853, + slip44: 1, icon: 'humanode', explorers: [] }, @@ -15320,6 +15940,7 @@ export const chains: Chains = { shortName: 'TrustTestnet', chainId: 15555, networkId: 15555, + slip44: 1, explorers: [ { name: 'Trust EVM Explorer', @@ -15339,6 +15960,7 @@ export const chains: Chains = { shortName: 'eos-testnet', chainId: 15557, networkId: 15557, + slip44: 1, explorers: [ { name: 'EOS EVM Explorer', @@ -15376,7 +15998,8 @@ export const chains: Chains = { infoURL: 'https://metadot.network', shortName: 'mtttest', chainId: 16001, - networkId: 16001 + networkId: 16001, + slip44: 1 }, 16507: { name: 'Genesys Mainnet', @@ -15408,6 +16031,7 @@ export const chains: Chains = { shortName: 'nyancat', chainId: 16688, networkId: 16688, + slip44: 1, icon: 'nyancat', explorers: [ { @@ -15448,6 +16072,7 @@ export const chains: Chains = { shortName: 'tivar', chainId: 16888, networkId: 16888, + slip44: 1, explorers: [ { name: 'ivarscan', @@ -15474,6 +16099,7 @@ export const chains: Chains = { shortName: 'holesky', chainId: 17000, networkId: 17000, + slip44: 1, icon: 'ethereum', status: 'incubating', explorers: [ @@ -15511,6 +16137,7 @@ export const chains: Chains = { shortName: 'redstone', chainId: 17001, networkId: 17001, + slip44: 1, icon: 'redstone', explorers: [ { @@ -15551,6 +16178,7 @@ export const chains: Chains = { shortName: 'PCT', chainId: 17180, networkId: 17180, + slip44: 1, icon: 'PLT', explorers: [ { @@ -15597,6 +16225,7 @@ export const chains: Chains = { shortName: 'ZKST', chainId: 18000, networkId: 18000, + slip44: 1, infoURL: 'https://goexosphere.com', explorers: [ { @@ -15662,6 +16291,7 @@ export const chains: Chains = { shortName: 'G8Ct', chainId: 18181, networkId: 18181, + slip44: 1, explorers: [ { name: 'G8Chain', @@ -15755,7 +16385,8 @@ export const chains: Chains = { infoURL: 'https://callisto.network', shortName: 'CLOTestnet', chainId: 20729, - networkId: 79 + networkId: 79, + slip44: 1 }, 20736: { name: 'P12 Chain', @@ -15873,6 +16504,7 @@ export const chains: Chains = { shortName: 'airdao-test', chainId: 22040, networkId: 22040, + slip44: 1, explorers: [ { name: 'AirDAO Network Explorer', @@ -15928,6 +16560,7 @@ export const chains: Chains = { shortName: 'ABNt', chainId: 23006, networkId: 23006, + slip44: 1, explorers: [ { name: 'Antofy Testnet', @@ -15946,6 +16579,7 @@ export const chains: Chains = { shortName: 'opside', chainId: 23118, networkId: 23118, + slip44: 1, icon: 'opside', explorers: [ { @@ -15992,6 +16626,7 @@ export const chains: Chains = { shortName: 'sapphire-testnet', chainId: 23295, networkId: 23295, + slip44: 1, explorers: [ { name: 'Oasis Sapphire Testnet Explorer', @@ -16000,6 +16635,25 @@ export const chains: Chains = { } ] }, + 23888: { + name: 'Blast Testnet', + chain: 'ETH', + icon: 'blastIcon', + rpc: ['http://testnet-rpc.blastblockchain.com'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://docs.blastblockchain.com', + shortName: 'blastT', + chainId: 23888, + networkId: 23888, + explorers: [ + { + name: 'Blast Testnet', + url: 'http://testnet-explorer.blastblockchain.com', + standard: 'EIP3091' + } + ] + }, 24484: { name: 'Webchain', chain: 'WEB', @@ -16055,6 +16709,7 @@ export const chains: Chains = { shortName: 'bkct', chainId: 25925, networkId: 25925, + slip44: 1, explorers: [ { name: 'bkcscan-testnet', @@ -16075,6 +16730,7 @@ export const chains: Chains = { shortName: 'frm', chainId: 26026, networkId: 26026, + slip44: 1, explorers: [ { name: 'polkadotjs', @@ -16142,6 +16798,7 @@ export const chains: Chains = { shortName: 'obgor', chainId: 28528, networkId: 28528, + slip44: 1, explorers: [ { name: 'blockscout', @@ -16181,6 +16838,7 @@ export const chains: Chains = { shortName: 'Piece', chainId: 30067, networkId: 30067, + slip44: 1, explorers: [ { name: 'Piece Scan', @@ -16200,6 +16858,7 @@ export const chains: Chains = { shortName: 'ceri', chainId: 30103, networkId: 30103, + slip44: 1, explorers: [ { name: 'canxium explorer', @@ -16254,6 +16913,7 @@ export const chains: Chains = { shortName: 'CLD', chainId: 31224, networkId: 31224, + slip44: 1, explorers: [ { name: 'cloudtxexplorer', @@ -16272,7 +16932,7 @@ export const chains: Chains = { shortName: 'got', chainId: 31337, networkId: 31337, - slip44: 6060, + slip44: 1, explorers: [ { name: 'GoChain Testnet Explorer', @@ -16392,6 +17052,7 @@ export const chains: Chains = { shortName: 'zil-testnet', chainId: 33101, networkId: 33101, + slip44: 1, explorers: [ { name: 'Zilliqa EVM Explorer', @@ -16547,6 +17208,7 @@ export const chains: Chains = { shortName: 'q-testnet', chainId: 35443, networkId: 35443, + slip44: 1, icon: 'q', explorers: [ { @@ -16775,6 +17437,7 @@ export const chains: Chains = { shortName: 'emerald-testnet', chainId: 42261, networkId: 42261, + slip44: 1, explorers: [ { name: 'Oasis Emerald Testnet Explorer', @@ -16802,6 +17465,32 @@ export const chains: Chains = { } ] }, + 42766: { + name: 'ZKFair Mainnet', + title: 'ZKFair Mainnet', + chain: 'ZKFair', + rpc: ['https://rpc.zkfair.io'], + faucets: [], + nativeCurrency: { name: 'USDC Token', symbol: 'USDC', decimals: 18 }, + infoURL: 'https://zkfair.io', + shortName: 'ZKFair-Mainnet', + chainId: 42766, + networkId: 42766, + icon: 'zkfair', + explorers: [ + { + name: 'blockscout', + url: 'https://scan.zkfair.io', + icon: 'zkfair', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://wallet.zkfair.io' }] + } + }, 42801: { name: 'Gesoten Verse Testnet', chain: 'Gesoten Verse', @@ -16813,6 +17502,7 @@ export const chains: Chains = { icon: 'gesoten', chainId: 42801, networkId: 42801, + slip44: 1, explorers: [ { name: 'Gesoten Verse Testnet Explorer', @@ -16833,6 +17523,7 @@ export const chains: Chains = { shortName: 'keth', chainId: 42888, networkId: 42888, + slip44: 1, explorers: [ { name: 'kintoscan', @@ -16867,6 +17558,7 @@ export const chains: Chains = { shortName: 'Fuji', chainId: 43113, networkId: 1, + slip44: 1, explorers: [ { name: 'snowtrace', @@ -16934,6 +17626,7 @@ export const chains: Chains = { shortName: 'ZKFair-Testnet', chainId: 43851, networkId: 43851, + slip44: 1, icon: 'zkfair', explorers: [ { @@ -16970,6 +17663,7 @@ export const chains: Chains = { shortName: 'ALFA', chain: 'CELO', networkId: 44787, + slip44: 1, nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 }, rpc: [ 'https://alfajores-forno.celo-testnet.org', @@ -17020,7 +17714,7 @@ export const chains: Chains = { shortName: 'tfsn', chainId: 46688, networkId: 46688, - slip44: 288, + slip44: 1, explorers: [ { name: 'fsnscan', @@ -17063,6 +17757,7 @@ export const chains: Chains = { shortName: 'floripa', chainId: 49049, networkId: 49049, + slip44: 1, explorers: [ { name: 'Wire Explorer', @@ -17085,6 +17780,7 @@ export const chains: Chains = { shortName: 'tbfc', chainId: 49088, networkId: 49088, + slip44: 1, icon: 'bifrost', explorers: [ { @@ -17104,7 +17800,7 @@ export const chains: Chains = { shortName: 'tnrg', chainId: 49797, networkId: 49797, - slip44: 49797 + slip44: 1 }, 50001: { name: 'Liveplex OracleEVM', @@ -17118,6 +17814,47 @@ export const chains: Chains = { networkId: 50001, explorers: [] }, + 50005: { + name: 'Yooldo Verse Mainnet', + chain: 'Yooldo Verse', + icon: 'yooldo_verse', + rpc: ['https://rpc.yooldo-verse.xyz/'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://yooldo.gg/', + shortName: 'YVM', + chainId: 50005, + networkId: 50005, + explorers: [ + { + name: 'Yooldo Verse Explorer', + url: 'https://explorer.yooldo-verse.xyz', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-248' } + }, + 50006: { + name: 'Yooldo Verse Testnet', + chain: 'Yooldo Verse', + icon: 'yooldo_verse', + rpc: ['https://rpc.testnet.yooldo-verse.xyz/'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://yooldo.gg/', + shortName: 'YVT', + chainId: 50006, + networkId: 50006, + slip44: 1, + explorers: [ + { + name: 'Yooldo Verse Explorer', + url: 'https://explorer.testnet.yooldo-verse.xyz', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-248' } + }, 50021: { name: 'GTON Testnet', chain: 'GTON Testnet', @@ -17128,6 +17865,7 @@ export const chains: Chains = { shortName: 'tgton', chainId: 50021, networkId: 50021, + slip44: 1, explorers: [ { name: 'GTON Testnet Network Explorer', @@ -17151,6 +17889,7 @@ export const chains: Chains = { shortName: 'Lumoz-Testnet', chainId: 51178, networkId: 51178, + slip44: 1, icon: 'opside-new', explorers: [ { @@ -17231,6 +17970,7 @@ export const chains: Chains = { shortName: 'ISLMT', chainId: 54211, networkId: 54211, + slip44: 1, explorers: [ { name: 'TestEdge HAQQ Explorer', @@ -17250,6 +17990,7 @@ export const chains: Chains = { shortName: 'ToronetTestnet', chainId: 54321, networkId: 54321, + slip44: 1, ens: { registry: '0x059C474f26D65B0458F9da10A649a7322aB02C09' }, explorers: [ { @@ -17310,6 +18051,7 @@ export const chains: Chains = { shortName: 'trei', chainId: 55556, networkId: 55556, + slip44: 1, explorers: [ { name: 'reiscan', @@ -17381,6 +18123,7 @@ export const chains: Chains = { shortName: 'tsys-rollux', chainId: 57000, networkId: 57000, + slip44: 1, explorers: [ { name: 'Rollux Testnet Explorer', @@ -17431,6 +18174,7 @@ export const chains: Chains = { shortName: 'linea-testnet', chainId: 59140, networkId: 59140, + slip44: 1, icon: 'linea', parent: { type: 'L2', @@ -17532,6 +18276,7 @@ export const chains: Chains = { shortName: 'TKM-test0', chainId: 60000, networkId: 60000, + slip44: 1, explorers: [ { name: 'thinkiumscan', @@ -17550,6 +18295,7 @@ export const chains: Chains = { shortName: 'TKM-test1', chainId: 60001, networkId: 60001, + slip44: 1, explorers: [ { name: 'thinkiumscan', @@ -17568,6 +18314,7 @@ export const chains: Chains = { shortName: 'TKM-test2', chainId: 60002, networkId: 60002, + slip44: 1, explorers: [ { name: 'thinkiumscan', @@ -17586,6 +18333,7 @@ export const chains: Chains = { shortName: 'TKM-test103', chainId: 60103, networkId: 60103, + slip44: 1, explorers: [ { name: 'thinkiumscan', @@ -17670,6 +18418,7 @@ export const chains: Chains = { shortName: 'BKLV', chain: 'CELO', networkId: 62320, + slip44: 1, nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 }, rpc: ['https://baklava-forno.celo-testnet.org'], faucets: [ @@ -17727,6 +18476,7 @@ export const chains: Chains = { shortName: 'ecs-testnet', chainId: 63001, networkId: 63001, + slip44: 1, icon: 'ecredits', explorers: [ { @@ -17767,6 +18517,7 @@ export const chains: Chains = { shortName: 'janusnetwork-testnet', chainId: 66988, networkId: 66988, + slip44: 1, status: 'active', explorers: [ { @@ -17843,6 +18594,7 @@ export const chains: Chains = { shortName: 'cndr', chainId: 69420, networkId: 69420, + slip44: 1, explorers: [ { name: 'Condrieu explorer', @@ -17960,7 +18712,8 @@ export const chains: Chains = { infoURL: 'https://github.com/nervosnetwork/godwoken', shortName: 'ckb', chainId: 71393, - networkId: 1 + networkId: 1, + slip44: 1 }, 71401: { name: 'Godwoken Testnet v1', @@ -17975,6 +18728,7 @@ export const chains: Chains = { shortName: 'gw-testnet-v1', chainId: 71401, networkId: 71401, + slip44: 1, explorers: [ { name: 'GWScan Block Explorer', @@ -18001,6 +18755,25 @@ export const chains: Chains = { } ] }, + 72992: { + name: 'Grok Chain Mainnet', + chain: 'Grok', + icon: 'grokicon', + rpc: ['https://mainnet-rpc.grokchain.dev'], + faucets: [], + nativeCurrency: { name: 'Groc', symbol: 'GROC', decimals: 18 }, + infoURL: 'https://grokchain.dev', + shortName: 'GrokChain', + chainId: 72992, + networkId: 72992, + explorers: [ + { + name: 'GrokScan', + url: 'https://mainnet-explorer.grokchain.dev', + standard: 'none' + } + ] + }, 73799: { name: 'Energy Web Volta Testnet', chain: 'Volta', @@ -18013,7 +18786,8 @@ export const chains: Chains = { infoURL: 'https://energyweb.org', shortName: 'vt', chainId: 73799, - networkId: 73799 + networkId: 73799, + slip44: 1 }, 73927: { name: 'Mixin Virtual Machine', @@ -18069,6 +18843,7 @@ export const chains: Chains = { shortName: 'fnc', chainId: 77238, networkId: 77238, + slip44: 1, explorers: [ { name: 'Foundry Scan Testnet', @@ -18125,7 +18900,8 @@ export const chains: Chains = { infoURL: 'https://primusmoney.com', shortName: 'firenze', chainId: 78110, - networkId: 78110 + networkId: 78110, + slip44: 1 }, 78281: { name: 'Dragonfly Mainnet (Hexapod)', @@ -18163,6 +18939,7 @@ export const chains: Chains = { shortName: 'amplify', chainId: 78430, networkId: 78430, + slip44: 1, explorers: [ { name: 'AMPLIFY Explorer', @@ -18182,6 +18959,7 @@ export const chains: Chains = { shortName: 'bulletin', chainId: 78431, networkId: 78431, + slip44: 1, explorers: [ { name: 'BULLETIN Explorer', @@ -18201,6 +18979,7 @@ export const chains: Chains = { shortName: 'conduit', chainId: 78432, networkId: 78432, + slip44: 1, explorers: [ { name: 'CONDUIT Explorer', @@ -18220,6 +18999,7 @@ export const chains: Chains = { shortName: 'STANDt', chainId: 79879, networkId: 79879, + slip44: 1, explorers: [ { name: 'Gold Smart Chain', @@ -18246,6 +19026,7 @@ export const chains: Chains = { shortName: 'maticmum', chainId: 80001, networkId: 80001, + slip44: 1, explorers: [ { name: 'polygonscan', @@ -18257,6 +19038,7 @@ export const chains: Chains = { 81041: { name: 'Nordek Mainnet', chain: 'Nordek', + icon: 'nordek', rpc: ['https://mainnet-rpc.nordekscan.com'], faucets: [], nativeCurrency: { name: 'NRK', symbol: 'NRK', decimals: 18 }, @@ -18283,6 +19065,7 @@ export const chains: Chains = { icon: 'meer', chainId: 81341, networkId: 81341, + slip44: 1, status: 'incubating' }, 81342: { @@ -18322,6 +19105,7 @@ export const chains: Chains = { icon: 'meer', chainId: 81351, networkId: 81351, + slip44: 1, status: 'incubating' }, 81352: { @@ -18361,6 +19145,7 @@ export const chains: Chains = { icon: 'meer', chainId: 81361, networkId: 81361, + slip44: 1, status: 'incubating' }, 81362: { @@ -18424,6 +19209,7 @@ export const chains: Chains = { shortName: 'basegor', chainId: 84531, networkId: 84531, + slip44: 1, icon: 'baseTestnet', explorers: [ { @@ -18455,6 +19241,7 @@ export const chains: Chains = { shortName: 'basesep', chainId: 84532, networkId: 84532, + slip44: 1, icon: 'baseTestnet', explorers: [ { @@ -18507,6 +19294,7 @@ export const chains: Chains = { shortName: 'NAUTTest', chainId: 88002, networkId: 88002, + slip44: 1, explorers: [ { name: 'Nautscan', @@ -18527,6 +19315,7 @@ export const chains: Chains = { shortName: 'chz', chainId: 88880, networkId: 88880, + slip44: 1, explorers: [ { name: 'scoville-explorer', @@ -18602,6 +19391,29 @@ export const chains: Chains = { } ] }, + 91715: { + name: 'Combo Testnet', + chain: 'Combo', + icon: 'combo', + rpc: ['https://test-rpc.combonetwork.io'], + faucets: [], + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'tcBNB', + decimals: 18 + }, + infoURL: 'https://combonetwork.io', + shortName: 'combo-testnet', + chainId: 91715, + networkId: 91715, + explorers: [ + { + name: 'combotrace explorer', + url: 'https://combotrace-testnet.nodereal.io', + standard: 'EIP3091' + } + ] + }, 92001: { name: 'Lambda Testnet', chain: 'Lambda', @@ -18612,6 +19424,7 @@ export const chains: Chains = { shortName: 'lambda-testnet', chainId: 92001, networkId: 92001, + slip44: 1, icon: 'lambda', explorers: [ { @@ -18642,6 +19455,7 @@ export const chains: Chains = { shortName: 'mantis', chainId: 96970, networkId: 96970, + slip44: 1, explorers: [ { name: 'Mantis Blockscout', @@ -18681,6 +19495,7 @@ export const chains: Chains = { shortName: 'ELt', chainId: 99099, networkId: 99099, + slip44: 1, explorers: [ { name: 'eLiberty Testnet', @@ -18698,7 +19513,8 @@ export const chains: Chains = { infoURL: 'https://www.ubchain.site', shortName: 'usctest', chainId: 99998, - networkId: 99998 + networkId: 99998, + slip44: 1 }, 99999: { name: 'UB Smart Chain', @@ -18931,6 +19747,7 @@ export const chains: Chains = { shortName: 'vechain-testnet', chainId: 100010, networkId: 100010, + slip44: 1, explorers: [ { name: 'VeChain Explorer', @@ -18964,6 +19781,7 @@ export const chains: Chains = { shortName: 'SVRNt', chainId: 101010, networkId: 101010, + slip44: 1, explorers: [ { name: 'Soverun', @@ -19212,6 +20030,7 @@ export const chains: Chains = { shortName: 'testsbr', chainId: 111000, networkId: 111000, + slip44: 1, icon: 'siberium', explorers: [ { @@ -19338,6 +20157,7 @@ export const chains: Chains = { shortName: 'taiko-a2', chainId: 167004, networkId: 167004, + slip44: 1, explorers: [ { name: 'blockscout', @@ -19439,6 +20259,7 @@ export const chains: Chains = { shortName: 'condor', chainId: 188881, networkId: 188881, + slip44: 1, explorers: [ { name: 'CondorScan', @@ -19461,6 +20282,7 @@ export const chains: Chains = { shortName: 'milkTAda', chainId: 200101, networkId: 200101, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -19480,6 +20302,7 @@ export const chains: Chains = { shortName: 'milkTAlgo', chainId: 200202, networkId: 200202, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -19537,6 +20360,7 @@ export const chains: Chains = { shortName: 'alayadev', chainId: 201030, networkId: 1, + slip44: 1, icon: 'alaya', explorers: [ { @@ -19578,6 +20402,7 @@ export const chains: Chains = { shortName: 'tDSC', chainId: 202020, networkId: 202020, + slip44: 1, icon: 'dsc', explorers: [ { @@ -19614,6 +20439,7 @@ export const chains: Chains = { chain: 'ETH', chainId: 202624, networkId: 202624, + slip44: 1, icon: 'twala', nativeCurrency: { name: 'Twala Coin', symbol: 'TWL', decimals: 18 }, rpc: ['https://jellie-rpc.twala.io/', 'wss://jellie-rpc-wss.twala.io/'], @@ -19721,6 +20547,7 @@ export const chains: Chains = { shortName: 'reap-testnet', chainId: 221231, networkId: 221231, + slip44: 1, icon: 'reapchain', explorers: [ { @@ -19754,6 +20581,48 @@ export const chains: Chains = { } ] }, + 224422: { + name: 'CONET Sebolia Testnet', + chain: 'CONET', + rpc: ['https://rpc1.conet.network'], + faucets: [], + nativeCurrency: { name: 'CONET Sebolia', symbol: 'CONET', decimals: 18 }, + features: [{ name: 'EIP155' }], + infoURL: 'https://conet.network', + shortName: 'conet-sebolia', + chainId: 224422, + networkId: 224422, + slip44: 1, + icon: 'conet', + explorers: [ + { + name: 'CONET Scan', + url: 'https://scan.conet.network', + standard: 'EIP3091' + } + ] + }, + 224433: { + name: 'CONET Holesky', + chain: 'CONET Holesky', + rpc: ['https://holeskyrpc1.conet.network'], + faucets: [], + nativeCurrency: { name: 'CONET Holesky', symbol: 'CONET', decimals: 18 }, + features: [{ name: 'EIP155' }], + infoURL: 'https://conet.network', + shortName: 'conet-holesky', + chainId: 224433, + networkId: 224433, + slip44: 2147708081, + icon: 'conet', + explorers: [ + { + name: 'CONET Holesky Scan', + url: 'https://scan.conet.network', + standard: 'EIP3091' + } + ] + }, 230315: { name: 'HashKey Chain Testnet', chain: 'HashKey', @@ -19764,6 +20633,7 @@ export const chains: Chains = { shortName: 'hsktest', chainId: 230315, networkId: 230315, + slip44: 1, icon: 'hsk', explorers: [ { @@ -19782,7 +20652,8 @@ export const chains: Chains = { infoURL: 'https://haymoswap.web.app/', shortName: 'hym', chainId: 234666, - networkId: 234666 + networkId: 234666, + slip44: 1 }, 246529: { name: 'ARTIS sigma1', @@ -19805,7 +20676,8 @@ export const chains: Chains = { infoURL: 'https://artis.network', shortName: 'atstau', chainId: 246785, - networkId: 246785 + networkId: 246785, + slip44: 1 }, 247253: { name: 'Saakuru Testnet', @@ -19818,6 +20690,7 @@ export const chains: Chains = { shortName: 'saakuru-testnet', chainId: 247253, networkId: 247253, + slip44: 1, explorers: [ { name: 'saakuru-explorer-testnet', @@ -19861,7 +20734,7 @@ export const chains: Chains = { shortName: 'gz-testnet', chainId: 266256, networkId: 266256, - slip44: 266256, + slip44: 1, explorers: [] }, 271271: { @@ -19875,6 +20748,7 @@ export const chains: Chains = { shortName: 'EGONt', chainId: 271271, networkId: 271271, + slip44: 1, explorers: [ { name: 'EgonCoin Testnet', @@ -19968,6 +20842,7 @@ export const chains: Chains = { shortName: 'avst', chainId: 333331, networkId: 333331, + slip44: 1, icon: 'aves', explorers: [ { @@ -19985,6 +20860,7 @@ export const chains: Chains = { chain: 'N3-Test', icon: 'nativ3', networkId: 333333, + slip44: 1, nativeCurrency: { name: 'USNT', symbol: 'USNT', decimals: 18 }, rpc: ['https://rpctest.nativ3.network', 'wss://wstest.nativ3.network'], faucets: [], @@ -20012,6 +20888,7 @@ export const chains: Chains = { shortName: 'oonetest', chainId: 333666, networkId: 333666, + slip44: 1, explorers: [ { name: 'blockscout', @@ -20048,7 +20925,8 @@ export const chains: Chains = { infoURL: 'https://polis.tech', shortName: 'sparta', chainId: 333888, - networkId: 333888 + networkId: 333888, + slip44: 1 }, 333999: { name: 'Polis Mainnet', @@ -20072,6 +20950,7 @@ export const chains: Chains = { shortName: 'Bitfinity', chainId: 355113, networkId: 355113, + slip44: 1, explorers: [ { name: 'Bitfinity Block Explorer', @@ -20103,6 +20982,7 @@ export const chains: Chains = { shortName: 'hap-testnet', chainId: 373737, networkId: 373737, + slip44: 1, icon: 'hap', explorers: [ { @@ -20200,6 +21080,7 @@ export const chains: Chains = { shortName: 'tKEK', chainId: 420666, networkId: 1, + slip44: 1, icon: 'kek', explorers: [ { @@ -20221,6 +21102,7 @@ export const chains: Chains = { shortName: 'alterium', chainId: 420692, networkId: 420692, + slip44: 1, parent: { type: 'L2', chain: 'eip155-5', @@ -20241,6 +21123,7 @@ export const chains: Chains = { shortName: 'arb-rinkeby', chain: 'ETH', networkId: 421611, + slip44: 1, nativeCurrency: { name: 'Arbitrum Rinkeby Ether', symbol: 'ETH', @@ -20274,6 +21157,7 @@ export const chains: Chains = { shortName: 'arb-goerli', chain: 'ETH', networkId: 421613, + slip44: 1, nativeCurrency: { name: 'Arbitrum Goerli Ether', symbol: 'AGOR', @@ -20303,13 +21187,17 @@ export const chains: Chains = { name: 'Arbitrum Sepolia', title: 'Arbitrum Sepolia Rollup Testnet', chain: 'ETH', - rpc: ['https://sepolia-rollup.arbitrum.io/rpc'], + rpc: [ + 'https://sepolia-rollup.arbitrum.io/rpc', + 'https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}' + ], faucets: [], nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://arbitrum.io', shortName: 'arb-sep', chainId: 421614, networkId: 421614, + slip44: 1, explorers: [ { name: 'Arbitrum Sepolia Rollup Testnet Explorer', @@ -20335,6 +21223,7 @@ export const chains: Chains = { shortName: 'fastexTestnet', chainId: 424242, networkId: 424242, + slip44: 1, explorers: [ { name: 'blockscout', @@ -20368,6 +21257,7 @@ export const chains: Chains = { shortName: 'dexalot-testnet', chainId: 432201, networkId: 432201, + slip44: 1, explorers: [ { name: 'Avalanche Subnet Testnet Explorer', @@ -20409,6 +21299,7 @@ export const chains: Chains = { shortName: 'wlkt', chainId: 444900, networkId: 444900, + slip44: 1, explorers: [ { name: 'weelink-testnet', @@ -20426,7 +21317,29 @@ export const chains: Chains = { infoURL: 'https://patex.io/', shortName: 'psep', chainId: 471100, - networkId: 471100 + networkId: 471100, + slip44: 1 + }, + 473861: { + name: 'Ultra Pro Mainnet', + chain: 'ultrapro', + icon: 'ultrapro', + rpc: ['https://mainnet-rpc.ultraproscan.io'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'Ultra Pro', symbol: 'UPRO', decimals: 18 }, + infoURL: 'https://ultrapro.info', + shortName: 'ultrapro', + chainId: 473861, + networkId: 473861, + explorers: [ + { + name: 'ultraproscan', + url: 'https://ultraproscan.io', + icon: 'ultrapro', + standard: 'EIP3091' + } + ] }, 474142: { name: 'OpenChain Mainnet', @@ -20463,6 +21376,7 @@ export const chains: Chains = { shortName: 'cmp', chainId: 512512, networkId: 512512, + slip44: 1, explorers: [ { name: 'Galaxy Scan', @@ -20505,6 +21419,7 @@ export const chains: Chains = { shortName: 'scr-sepolia', chainId: 534351, networkId: 534351, + slip44: 1, explorers: [ { name: 'Scroll Sepolia Etherscan', @@ -20568,6 +21483,7 @@ export const chains: Chains = { shortName: 'scr-alpha', chainId: 534353, networkId: 534353, + slip44: 1, explorers: [ { name: 'Scroll Alpha Testnet Block Explorer', @@ -20588,6 +21504,7 @@ export const chains: Chains = { shortName: 'scr-prealpha', chainId: 534354, networkId: 534354, + slip44: 1, explorers: [] }, 534849: { @@ -20639,7 +21556,8 @@ export const chains: Chains = { 'https://rpc.hypra.network', 'https://rpc.rethereum.org', 'https://rethereum.rpc.restratagem.com', - 'https://rpc.rthcentral.org' + 'https://rpc.rthcentral.org', + 'https://hypra.rpc.thirdweb.com' ], faucets: [], nativeCurrency: { name: 'Hypra', symbol: 'HYP', decimals: 18 }, @@ -20713,7 +21631,7 @@ export const chains: Chains = { shortName: 'vpioneer', chainId: 666666, networkId: 666666, - slip44: 60 + slip44: 1 }, 666888: { name: 'Hela Official Runtime Testnet', @@ -20726,6 +21644,7 @@ export const chains: Chains = { shortName: 'hela-testnet', chainId: 666888, networkId: 666888, + slip44: 1, explorers: [ { name: 'Hela Official Runtime Testnet Explorer', @@ -20749,6 +21668,7 @@ export const chains: Chains = { shortName: 'BRNKCTEST', chainId: 751230, networkId: 751230, + slip44: 1, explorers: [ { name: 'brnktestscan', @@ -20932,6 +21852,25 @@ export const chains: Chains = { } ] }, + 912559: { + name: 'Astria EVM Dusknet', + chain: 'RIA', + icon: 'astria', + chainId: 912559, + networkId: 912559, + infoURL: 'https://docs.astria.org', + shortName: 'ria-dev', + nativeCurrency: { name: 'RIA', symbol: 'RIA', decimals: 18 }, + rpc: ['https://rpc.evm.dusk-2.devnet.astria.org'], + faucets: ['https://faucet.evm.dusk-2.devnet.astria.org/'], + explorers: [ + { + name: 'Astria EVM Dusknet Explorer', + url: 'https://explorer.evm.dusk-2.devnet.astria.org', + standard: 'EIP3091' + } + ] + }, 920000: { name: 'Posichain Devnet Shard 0', chain: 'PSC', @@ -20986,6 +21925,7 @@ export const chains: Chains = { shortName: 'tFNCY', chainId: 923018, networkId: 923018, + slip44: 1, icon: 'fncy', explorers: [ { @@ -21211,6 +22151,7 @@ export const chains: Chains = { shortName: 'dbk', chainId: 2021398, networkId: 2021398, + slip44: 1, explorers: [ { name: 'DeBank Chain Explorer', @@ -21250,6 +22191,7 @@ export const chains: Chains = { shortName: 'platondev', chainId: 2203181, networkId: 1, + slip44: 1, icon: 'platon', status: 'deprecated', explorers: [ @@ -21273,6 +22215,7 @@ export const chains: Chains = { shortName: 'platondev2', chainId: 2206132, networkId: 1, + slip44: 1, icon: 'platon', explorers: [ { @@ -21319,6 +22262,7 @@ export const chains: Chains = { shortName: 'mantaTestnet', chainId: 3441005, networkId: 3441005, + slip44: 1, icon: 'manta', explorers: [ { @@ -21378,6 +22322,7 @@ export const chains: Chains = { shortName: 'MXC', chainId: 5167003, networkId: 5167003, + slip44: 1, explorers: [ { name: 'MXC Wannsee zkEVM Testnet', @@ -21397,6 +22342,7 @@ export const chains: Chains = { shortName: 'etn-testnet', chainId: 5201420, networkId: 5201420, + slip44: 1, icon: 'electroneum', explorers: [ { @@ -21449,6 +22395,7 @@ export const chains: Chains = { shortName: 'imversed-testnet', chainId: 5555558, networkId: 5555558, + slip44: 1, icon: 'imversed', explorers: [ { @@ -21514,6 +22461,7 @@ export const chains: Chains = { shortName: 'tqom', chainId: 7668378, networkId: 7668378, + slip44: 1, icon: 'qom', explorers: [ { @@ -21574,6 +22522,25 @@ export const chains: Chains = { ], parent: { chain: 'eip155-2099156', type: 'L2' } }, + 8080808: { + name: 'Hokum', + chain: 'Hokum', + icon: 'hokum', + rpc: ['https://mainnet.hokum.gg'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://hokum.gg', + shortName: 'hokum', + chainId: 8080808, + networkId: 8080808, + explorers: [ + { + name: 'Hokum Explorer', + url: 'https://explorer.hokum.gg', + standard: 'EIP3091' + } + ] + }, 8794598: { name: 'HAPchain', chain: 'HAPchain', @@ -21605,6 +22572,7 @@ export const chains: Chains = { shortName: 'quarix-testnet', chainId: 8888881, networkId: 8888881, + slip44: 1, icon: 'quarix', explorers: [] }, @@ -21678,6 +22646,7 @@ export const chains: Chains = { shortName: 'plian-testnet-l2', chainId: 10067275, networkId: 10067275, + slip44: 1, explorers: [ { name: 'piscan', @@ -21728,6 +22697,7 @@ export const chains: Chains = { shortName: 'sep', chainId: 11155111, networkId: 11155111, + slip44: 1, explorers: [ { name: 'etherscan-sepolia', @@ -21751,6 +22721,7 @@ export const chains: Chains = { shortName: 'opsep', chainId: 11155420, networkId: 11155420, + slip44: 1, explorers: [ { name: 'opscout', @@ -21808,6 +22779,7 @@ export const chains: Chains = { shortName: 'plian-testnet', chainId: 16658437, networkId: 16658437, + slip44: 1, explorers: [ { name: 'piscan', @@ -21893,6 +22865,25 @@ export const chains: Chains = { } ] }, + 20482050: { + name: 'Hokum Testnet', + chain: 'HokumTestnet', + icon: 'hokum', + rpc: ['https://testnet.hokum.gg'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://hokum.gg', + shortName: 'hokum-testnet', + chainId: 20482050, + networkId: 20482050, + explorers: [ + { + name: 'Hokum Explorer', + url: 'https://testnet-explorer.hokum.gg', + standard: 'EIP3091' + } + ] + }, 22052002: { name: 'Excelon Mainnet', chain: 'XLON', @@ -21923,6 +22914,7 @@ export const chains: Chains = { shortName: 'exlvolta', chainId: 27082017, networkId: 27082017, + slip44: 1, explorers: [ { name: 'exlscan', @@ -22022,6 +23014,7 @@ export const chains: Chains = { shortName: 'mais', chainId: 43214913, networkId: 43214913, + slip44: 1, explorers: [ { name: 'maistesntet', @@ -22042,19 +23035,85 @@ export const chains: Chains = { networkId: 61717561, slip44: 61717561 }, - 65100000: { - name: 'Autonity Piccadilly (Thames) Testnet', + 65010000: { + name: 'Autonity Bakerloo (Thames) Testnet', + status: 'deprecated', + chain: 'AUT', + rpc: [], + faucets: ['https://faucet.autonity.org/'], + nativeCurrency: { name: 'Bakerloo Auton', symbol: 'ATN', decimals: 18 }, + infoURL: 'https://autonity.org/', + shortName: 'bakerloo-0', + chainId: 65010000, + networkId: 65010000, + slip44: 1, + icon: 'autonity', + explorers: [ + { + name: 'autonity-blockscout', + url: 'https://bakerloo.autonity.org', + standard: 'EIP3091' + } + ] + }, + 65010001: { + name: 'Autonity Bakerloo (Barada) Testnet', chain: 'AUT', rpc: [ - 'https://rpc1.piccadilly.autonity.org/', - 'wss://rpc1.piccadilly.autonity.org/ws/' + '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-01', + chainId: 65010001, + networkId: 65010001, + slip44: 1, + icon: 'autonity', + explorers: [ + { + name: 'autonity-blockscout', + url: 'https://bakerloo.autonity.org', + standard: 'EIP3091' + } + ] + }, + 65100000: { + name: 'Autonity Piccadilly (Thames) Testnet', + status: 'deprecated', + chain: 'AUT', + rpc: [], + faucets: ['https://faucet.autonity.org/'], nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 }, infoURL: 'https://autonity.org/', shortName: 'piccadilly-0', chainId: 65100000, networkId: 65100000, + slip44: 1, + icon: 'autonity', + explorers: [ + { + name: 'autonity-blockscout', + url: 'https://piccadilly.autonity.org', + standard: 'EIP3091' + } + ] + }, + 65100001: { + name: 'Autonity Piccadilly (Barada) Testnet', + chain: 'AUT', + rpc: [ + 'https://rpc1.piccadilly.autonity.org/', + 'wss://rpc1.piccadilly.autonity.org/ws/' + ], + faucets: [], + nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 }, + infoURL: 'https://autonity.org/', + shortName: 'piccadilly-01', + chainId: 65100001, + networkId: 65100001, + slip44: 1, icon: 'autonity', explorers: [ { @@ -22075,6 +23134,7 @@ export const chains: Chains = { shortName: 'frametest', chainId: 68840142, networkId: 68840142, + slip44: 1, explorers: [ { name: 'Frame Testnet Explorer', @@ -22112,7 +23172,8 @@ export const chains: Chains = { infoURL: 'https://joys.digital', shortName: 'TOYS', chainId: 99415706, - networkId: 99415706 + networkId: 99415706, + slip44: 1 }, 192837465: { name: 'Gather Mainnet Network', @@ -22147,6 +23208,7 @@ export const chains: Chains = { shortName: 'kanazawa', chainId: 222000222, networkId: 222000222, + slip44: 1, explorers: [ { name: 'explorer', @@ -22217,6 +23279,7 @@ export const chains: Chains = { shortName: 'neonevm-testnet', chainId: 245022940, networkId: 245022940, + slip44: 1, explorers: [ { name: 'native', @@ -22302,6 +23365,7 @@ export const chains: Chains = { shortName: 'calypso-testnet', chainId: 344106930, networkId: 344106930, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -22321,6 +23385,7 @@ export const chains: Chains = { shortName: 'tGTH', chainId: 356256156, networkId: 356256156, + slip44: 1, icon: 'gather', explorers: [ { @@ -22343,6 +23408,7 @@ export const chains: Chains = { shortName: 'europa-testnet', chainId: 476158412, networkId: 476158412, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -22384,6 +23450,7 @@ export const chains: Chains = { shortName: 'nebula-testnet', chainId: 503129905, networkId: 503129905, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -22404,6 +23471,7 @@ export const chains: Chains = { shortName: 'zsep', chainId: 999999999, networkId: 999999999, + slip44: 1, explorers: [ { name: 'Zora Sepolia Testnet Network Explorer', @@ -22496,6 +23564,7 @@ export const chains: Chains = { shortName: 'aurora-testnet', chainId: 1313161555, networkId: 1313161555, + slip44: 1, explorers: [ { name: 'aurorascan.dev', @@ -22548,6 +23617,7 @@ export const chains: Chains = { shortName: 'chaos-tenet', chainId: 1351057110, networkId: 1351057110, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -22615,6 +23685,7 @@ export const chains: Chains = { shortName: 'titan-testnet', chainId: 1517929550, networkId: 1517929550, + slip44: 1, explorers: [ { name: 'Blockscout', @@ -22842,6 +23913,7 @@ export const chains: Chains = { shortName: 'a8', chainId: 2863311531, networkId: 2863311531, + slip44: 1, explorers: [ { name: 'a8scan-testnet', @@ -22873,6 +23945,7 @@ export const chains: Chains = { shortName: 'frankenstein', chainId: 4216137055, networkId: 4216137055, + slip44: 1, explorers: [ { name: 'OneLedger Block Explorer', @@ -22892,6 +23965,7 @@ export const chains: Chains = { shortName: 'tpalm', chainId: 11297108099, networkId: 11297108099, + slip44: 1, explorers: [ { name: 'Palm Testnet Explorer', @@ -22973,6 +24047,7 @@ export const chains: Chains = { shortName: 'ntt-haradev', chainId: 197710212031, networkId: 197710212031, + slip44: 1, icon: 'ntity', explorers: [ { @@ -23040,6 +24115,7 @@ export const chains: Chains = { shortName: 'gw-testnet-v1-deprecated', chainId: 868455272153094, networkId: 868455272153094, + slip44: 1, status: 'deprecated', explorers: [ { diff --git a/src/enums.ts b/src/enums.ts index 4cf2154..116a28c 100644 --- a/src/enums.ts +++ b/src/enums.ts @@ -4,7 +4,7 @@ export enum ChainName { Ropsten = 'Ropsten', Rinkeby = 'Rinkeby', Goerli = 'Goerli', - EthereumClassicTestnetKotti = 'Ethereum Classic Testnet Kotti', + KottiTestnet = 'Kotti Testnet', ThaiChain = 'ThaiChain', Ubiq = 'Ubiq', UbiqNetworkTestnet = 'Ubiq Network Testnet', @@ -59,9 +59,9 @@ export enum ChainName { OntologyMainnet = 'Ontology Mainnet', EOSEVMLegacy = 'EOS EVM Legacy', GoChain = 'GoChain', - EthereumClassicMainnet = 'Ethereum Classic Mainnet', - EthereumClassicTestnetMorden = 'Ethereum Classic Testnet Morden', - EthereumClassicTestnetMordor = 'Ethereum Classic Testnet Mordor', + EthereumClassic = 'Ethereum Classic', + MordenTestnet = 'Morden Testnet', + MordorTestnet = 'Mordor Testnet', Ellaism = 'Ellaism', OKExChainTestnet = 'OKExChain Testnet', OKXChainMainnet = 'OKXChain Mainnet', @@ -127,6 +127,7 @@ export enum ChainName { OYchainMainnet = 'OYchain Mainnet', Factory127Mainnet = 'Factory 127 Mainnet', HuobiECOChainMainnet = 'Huobi ECO Chain Mainnet', + EngramTestnet = 'Engram Testnet', IExecSidechain = 'iExec Sidechain', AlyxChainTestnet = 'Alyx Chain Testnet', DeamchainMainnet = 'Deamchain Mainnet', @@ -176,11 +177,13 @@ export enum ChainName { ShinariumMainnet = 'Shinarium Mainnet', SiriusNetV2 = 'SiriusNet V2', SoterOneMainnetold = 'SoterOne Mainnet old', + ScalindTestnet = 'Scalind Testnet', Permission = 'Permission', LACHAINMainnet = 'LACHAIN Mainnet', LACHAINTestnet = 'LACHAIN Testnet', SwapDEX = 'SwapDEX', DeamchainTestnet = 'Deamchain Testnet', + BlastMainnet = 'Blast Mainnet', PlingaMainnet = 'Plinga Mainnet', EnergyWebChain = 'Energy Web Chain', OasysMainnet = 'Oasys Mainnet', @@ -215,7 +218,6 @@ export enum ChainName { DFKChainTest = 'DFK Chain Test', Shiden = 'Shiden', CronosTestnet = 'Cronos Testnet', - YooldoVerseMainnet = 'Yooldo Verse Mainnet', ThetaMainnet = 'Theta Mainnet', ThetaSapphireTestnet = 'Theta Sapphire Testnet', ThetaAmberTestnet = 'Theta Amber Testnet', @@ -260,7 +262,7 @@ export enum ChainName { AcalaNetworkTestnet = 'Acala Network Testnet', MetisGoerliTestnet = 'Metis Goerli Testnet', Meshnyantestnet = 'Meshnyan testnet', - PEERTestnet = 'PEER Testnet', + VineTestnet = 'Vine Testnet', GraphlinqBlockchainMainnet = 'Graphlinq Blockchain Mainnet', Avocado = 'Avocado', SXNetworkTestnet = 'SX Network Testnet', @@ -318,6 +320,7 @@ export enum ChainName { PulseChainTestnetv3 = 'PulseChain Testnet v3', PulseChainTestnetv4 = 'PulseChain Testnet v4', MuNodeTestnet = 'muNode Testnet', + LyraChain = 'Lyra Chain', BTC20SmartChain = 'BTC20 Smart Chain', OortMainnet = 'Oort Mainnet', OortHuygens = 'Oort Huygens', @@ -364,7 +367,7 @@ export enum ChainName { DogcoinMainnet = 'Dogcoin Mainnet', DeFiChainEVMNetworkMainnet = 'DeFiChain EVM Network Mainnet', DeFiChainEVMNetworkTestnet = 'DeFiChain EVM Network Testnet', - DeFiMetaChain = 'DeFiMetaChain', + DeFiMetaChainChangiTestnet = 'DeFiMetaChain Changi Testnet', AmStarTestnet = 'AmStar Testnet', MathChain = 'MathChain', MathChainTestnet = 'MathChain Testnet', @@ -444,6 +447,7 @@ export enum ChainName { BitcichainMainnet = 'Bitcichain Mainnet', BitcichainTestnet = 'Bitcichain Testnet', MerkleScan = 'Merkle Scan', + Scalind = 'Scalind', ONUSChainTestnet = 'ONUS Chain Testnet', 'D-ChainMainnet' = 'D-Chain Mainnet', DexillaTestnet = 'Dexilla Testnet', @@ -451,6 +455,7 @@ export enum ChainName { SuperSmartChainTestnet = 'Super Smart Chain Testnet', SuperSmartChainMainnet = 'Super Smart Chain Mainnet', Atelier = 'Atelier', + RedeCoin = 'RedeCoin', ONUSChainMainnet = 'ONUS Chain Mainnet', EurusTestnet = 'Eurus Testnet', SatoshIE = 'SatoshIE', @@ -458,6 +463,7 @@ export enum ChainName { EtherGem = 'EtherGem', Ekta = 'Ekta', EdeXaTestnet = 'edeXa Testnet', + KyotoTestnet = 'Kyoto Testnet', DogechainMainnet = 'Dogechain Mainnet', MilkomedaC1Mainnet = 'Milkomeda C1 Mainnet', MilkomedaA1Mainnet = 'Milkomeda A1 Mainnet', @@ -575,6 +581,7 @@ export enum ChainName { BobaoperaTestnet = 'Bobaopera Testnet', Nahmii3Mainnet = 'Nahmii 3 Mainnet', Nahmii3Testnet = 'Nahmii 3 Testnet', + MusterMainnet = 'Muster Mainnet', 'FastexChain(Bahamut)OasisTestnet' = 'Fastex Chain (Bahamut) Oasis Testnet', BitindiTestnet = 'Bitindi Testnet', BitindiMainnet = 'Bitindi Mainnet', @@ -632,7 +639,11 @@ export enum ChainName { ScolcoinWeiChainTestnet = 'Scolcoin WeiChain Testnet', FoxTestnetNetwork = 'Fox Testnet Network', PixieChainMainnet = 'Pixie Chain Mainnet', + LatestChainTestnet = 'Latest Chain Testnet', + CybriaMainnet = 'Cybria Mainnet', + CybriaTestnet = 'Cybria Testnet', IRIShub = 'IRIShub', + CompverseMainnet = 'Compverse Mainnet', GoldSmartChainMainnet = 'Gold Smart Chain Mainnet', TombChainMainnet = 'Tomb Chain Mainnet', PolySmartChain = 'PolySmartChain', @@ -640,6 +651,7 @@ export enum ChainName { ZetaChainAthens3Testnet = 'ZetaChain Athens 3 Testnet', Ellatheheart = 'Ella the heart', PlanqMainnet = 'Planq Mainnet', + Nume = 'Nume', BitrockMainnet = 'Bitrock Mainnet', KLYNTAR = 'KLYNTAR', HorizenEONMainnet = 'Horizen EON Mainnet', @@ -665,6 +677,7 @@ export enum ChainName { 'ShardeumLiberty2.X' = 'Shardeum Liberty 2.X', 'ShardeumSphinx1.X' = 'Shardeum Sphinx 1.X', BitEth = 'BitEth', + 'E-Dollar' = 'E-Dollar', StreamuXBlockchain = 'StreamuX Blockchain', QitmeerNetworkTestnet = 'Qitmeer Network Testnet', QitmeerNetworkMixnet = 'Qitmeer Network Mixnet', @@ -717,6 +730,7 @@ export enum ChainName { IMPERIUMTESTNET = 'IMPERIUM TESTNET', IMPERIUMMAINNET = 'IMPERIUM MAINNET', MindSmartChainTestnet = 'Mind Smart Chain Testnet', + ComboMainnet = 'Combo Mainnet', AgungNetwork = 'Agung Network', MindSmartChainMainnet = 'Mind Smart Chain Mainnet', AltLayerTestnet = 'AltLayer Testnet', @@ -759,6 +773,7 @@ export enum ChainName { SPS = 'SPS', CreditSmartChain = 'Credit Smart Chain', BeamTestnet = 'Beam Testnet', + ImmutablezkEVM = 'Immutable zkEVM', PhoenixMainnet = 'Phoenix Mainnet', ImmutablezkEVMTestnet = 'Immutable zkEVM Testnet', Susono = 'Susono', @@ -800,6 +815,7 @@ export enum ChainName { OpsideTestnet = 'Opside Testnet', OasisSapphire = 'Oasis Sapphire', OasisSapphireTestnet = 'Oasis Sapphire Testnet', + BlastTestnet = 'Blast Testnet', Webchain = 'Webchain', 'MintMe.comCoin' = 'MintMe.com Coin', HammerChainMainnet = 'Hammer Chain Mainnet', @@ -840,6 +856,7 @@ export enum ChainName { CeloMainnet = 'Celo Mainnet', OasisEmeraldTestnet = 'Oasis Emerald Testnet', OasisEmerald = 'Oasis Emerald', + ZKFairMainnet = 'ZKFair Mainnet', GesotenVerseTestnet = 'Gesoten Verse Testnet', KintoTestnet = 'Kinto Testnet', Athereum = 'Athereum', @@ -856,6 +873,8 @@ export enum ChainName { BifrostTestnet = 'Bifrost Testnet', EnergiTestnet = 'Energi Testnet', LiveplexOracleEVM = 'Liveplex OracleEVM', + YooldoVerseMainnet = 'Yooldo Verse Mainnet', + YooldoVerseTestnet = 'Yooldo Verse Testnet', GTONTestnet = 'GTON Testnet', LumozTestnetAlpha = 'Lumoz Testnet Alpha', SardisMainnet = 'Sardis Mainnet', @@ -898,6 +917,7 @@ export enum ChainName { PolyjuiceTestnet = 'Polyjuice Testnet', GodwokenTestnetv1 = 'Godwoken Testnet v1', GodwokenMainnet = 'Godwoken Mainnet', + GrokChainMainnet = 'Grok Chain Mainnet', EnergyWebVoltaTestnet = 'Energy Web Volta Testnet', MixinVirtualMachine = 'Mixin Virtual Machine', ResinCoinMainnet = 'ResinCoin Mainnet', @@ -931,6 +951,7 @@ export enum ChainName { IVARChainMainnet = 'IVAR Chain Mainnet', BeverlyHills = 'Beverly Hills', NautilusTritionChain = 'Nautilus Trition Chain', + ComboTestnet = 'Combo Testnet', LambdaTestnet = 'Lambda Testnet', 'MantisTestnet(Hexapod)' = 'Mantis Testnet (Hexapod)', BobaBNBMainnetOld = 'Boba BNB Mainnet Old', @@ -988,6 +1009,8 @@ export enum ChainName { ReapchainMainnet = 'Reapchain Mainnet', ReapchainTestnet = 'Reapchain Testnet', TafECOChainMainnet = 'Taf ECO Chain Mainnet', + CONETSeboliaTestnet = 'CONET Sebolia Testnet', + CONETHolesky = 'CONET Holesky', HashKeyChainTestnet = 'HashKey Chain Testnet', HaymoTestnet = 'Haymo Testnet', ARTISsigma1 = 'ARTIS sigma1', @@ -1023,6 +1046,7 @@ export enum ChainName { DexalotSubnet = 'Dexalot Subnet', WeelinkTestnet = 'Weelink Testnet', PatexSepoliaTestnet = 'Patex Sepolia Testnet', + UltraProMainnet = 'Ultra Pro Mainnet', OpenChainMainnet = 'OpenChain Mainnet', 'CMP-Testnet' = 'CMP-Testnet', EthereumFair = 'ethereum Fair', @@ -1047,6 +1071,7 @@ export enum ChainName { 'Vision-Mainnet' = 'Vision - Mainnet', PosichainMainnetShard0 = 'Posichain Mainnet Shard 0', PosichainTestnetShard0 = 'Posichain Testnet Shard 0', + AstriaEVMDusknet = 'Astria EVM Dusknet', PosichainDevnetShard0 = 'Posichain Devnet Shard 0', PosichainDevnetShard1 = 'Posichain Devnet Shard 1', FNCYTestnet = 'FNCY Testnet', @@ -1078,6 +1103,7 @@ export enum ChainName { Musicoin = 'Musicoin', Zora = 'Zora', PlianMainnetSubchain1 = 'Plian Mainnet Subchain 1', + Hokum = 'Hokum', HAPchain = 'HAPchain', QuarixTestnet = 'Quarix Testnet', Quarix = 'Quarix', @@ -1094,6 +1120,7 @@ export enum ChainName { SmartMeshMainnet = 'SmartMesh Mainnet', Quarkblockchain = 'quarkblockchain', PegoNetwork = 'Pego Network', + HokumTestnet = 'Hokum Testnet', ExcelonMainnet = 'Excelon Mainnet', 'ExcoincialChainVolta-Testnet' = 'Excoincial Chain Volta-Testnet', ExcoincialChainMainnet = 'Excoincial Chain Mainnet', @@ -1103,7 +1130,10 @@ export enum ChainName { JoysDigitalMainnet = 'Joys Digital Mainnet', Maistestsubnet = 'maistestsubnet', Aquachain = 'Aquachain', + 'AutonityBakerloo(Thames)Testnet' = 'Autonity Bakerloo (Thames) Testnet', + 'AutonityBakerloo(Barada)Testnet' = 'Autonity Bakerloo (Barada) Testnet', 'AutonityPiccadilly(Thames)Testnet' = 'Autonity Piccadilly (Thames) Testnet', + 'AutonityPiccadilly(Barada)Testnet' = 'Autonity Piccadilly (Barada) Testnet', FrameTestnet = 'Frame Testnet', 'T.E.A.MBlockchain' = 'T.E.A.M Blockchain', JoysDigitalTestNet = 'Joys Digital TestNet', @@ -1162,7 +1192,7 @@ export enum ChainId { Ropsten = 3, Rinkeby = 4, Goerli = 5, - EthereumClassicTestnetKotti = 6, + KottiTestnet = 6, ThaiChain = 7, Ubiq = 8, UbiqNetworkTestnet = 9, @@ -1217,9 +1247,9 @@ export enum ChainId { OntologyMainnet = 58, EOSEVMLegacy = 59, GoChain = 60, - EthereumClassicMainnet = 61, - EthereumClassicTestnetMorden = 62, - EthereumClassicTestnetMordor = 63, + EthereumClassic = 61, + MordenTestnet = 62, + MordorTestnet = 63, Ellaism = 64, OKExChainTestnet = 65, OKXChainMainnet = 66, @@ -1285,6 +1315,7 @@ export enum ChainId { OYchainMainnet = 126, Factory127Mainnet = 127, HuobiECOChainMainnet = 128, + EngramTestnet = 131, IExecSidechain = 134, AlyxChainTestnet = 135, DeamchainMainnet = 136, @@ -1334,11 +1365,13 @@ export enum ChainId { ShinariumMainnet = 214, SiriusNetV2 = 217, SoterOneMainnetold = 218, + ScalindTestnet = 220, Permission = 222, LACHAINMainnet = 225, LACHAINTestnet = 226, SwapDEX = 230, DeamchainTestnet = 236, + BlastMainnet = 238, PlingaMainnet = 242, EnergyWebChain = 246, OasysMainnet = 248, @@ -1373,7 +1406,6 @@ export enum ChainId { DFKChainTest = 335, Shiden = 336, CronosTestnet = 338, - YooldoVerseMainnet = 345, ThetaMainnet = 361, ThetaSapphireTestnet = 363, ThetaAmberTestnet = 364, @@ -1418,7 +1450,7 @@ export enum ChainId { AcalaNetworkTestnet = 597, MetisGoerliTestnet = 599, Meshnyantestnet = 600, - PEERTestnet = 601, + VineTestnet = 601, GraphlinqBlockchainMainnet = 614, Avocado = 634, SXNetworkTestnet = 647, @@ -1476,6 +1508,7 @@ export enum ChainId { PulseChainTestnetv3 = 942, PulseChainTestnetv4 = 943, MuNodeTestnet = 956, + LyraChain = 957, BTC20SmartChain = 963, OortMainnet = 970, OortHuygens = 971, @@ -1522,7 +1555,7 @@ export enum ChainId { DogcoinMainnet = 1117, DeFiChainEVMNetworkMainnet = 1130, DeFiChainEVMNetworkTestnet = 1131, - DeFiMetaChain = 1133, + DeFiMetaChainChangiTestnet = 1133, AmStarTestnet = 1138, MathChain = 1139, MathChainTestnet = 1140, @@ -1602,6 +1635,7 @@ export enum ChainId { BitcichainMainnet = 1907, BitcichainTestnet = 1908, MerkleScan = 1909, + Scalind = 1911, ONUSChainTestnet = 1945, 'D-ChainMainnet' = 1951, DexillaTestnet = 1954, @@ -1609,6 +1643,7 @@ export enum ChainId { SuperSmartChainTestnet = 1969, SuperSmartChainMainnet = 1970, Atelier = 1971, + RedeCoin = 1972, ONUSChainMainnet = 1975, EurusTestnet = 1984, SatoshIE = 1985, @@ -1616,6 +1651,7 @@ export enum ChainId { EtherGem = 1987, Ekta = 1994, EdeXaTestnet = 1995, + KyotoTestnet = 1998, DogechainMainnet = 2000, MilkomedaC1Mainnet = 2001, MilkomedaA1Mainnet = 2002, @@ -1733,6 +1769,7 @@ export enum ChainId { BobaoperaTestnet = 4051, Nahmii3Mainnet = 4061, Nahmii3Testnet = 4062, + MusterMainnet = 4078, 'FastexChain(Bahamut)OasisTestnet' = 4090, BitindiTestnet = 4096, BitindiMainnet = 4099, @@ -1790,7 +1827,11 @@ export enum ChainId { ScolcoinWeiChainTestnet = 6552, FoxTestnetNetwork = 6565, PixieChainMainnet = 6626, + LatestChainTestnet = 6660, + CybriaMainnet = 6661, + CybriaTestnet = 6666, IRIShub = 6688, + CompverseMainnet = 6779, GoldSmartChainMainnet = 6789, TombChainMainnet = 6969, PolySmartChain = 6999, @@ -1798,6 +1839,7 @@ export enum ChainId { ZetaChainAthens3Testnet = 7001, Ellatheheart = 7027, PlanqMainnet = 7070, + Nume = 7100, BitrockMainnet = 7171, KLYNTAR = 7331, HorizenEONMainnet = 7332, @@ -1823,6 +1865,7 @@ export enum ChainId { 'ShardeumLiberty2.X' = 8081, 'ShardeumSphinx1.X' = 8082, BitEth = 8086, + 'E-Dollar' = 8087, StreamuXBlockchain = 8098, QitmeerNetworkTestnet = 8131, QitmeerNetworkMixnet = 8132, @@ -1875,6 +1918,7 @@ export enum ChainId { IMPERIUMTESTNET = 9818, IMPERIUMMAINNET = 9819, MindSmartChainTestnet = 9977, + ComboMainnet = 9980, AgungNetwork = 9990, MindSmartChainMainnet = 9996, AltLayerTestnet = 9997, @@ -1917,6 +1961,7 @@ export enum ChainId { SPS = 13000, CreditSmartChain = 13308, BeamTestnet = 13337, + ImmutablezkEVM = 13371, PhoenixMainnet = 13381, ImmutablezkEVMTestnet = 13473, Susono = 13812, @@ -1958,6 +2003,7 @@ export enum ChainId { OpsideTestnet = 23118, OasisSapphire = 23294, OasisSapphireTestnet = 23295, + BlastTestnet = 23888, Webchain = 24484, 'MintMe.comCoin' = 24734, HammerChainMainnet = 25888, @@ -1998,6 +2044,7 @@ export enum ChainId { CeloMainnet = 42220, OasisEmeraldTestnet = 42261, OasisEmerald = 42262, + ZKFairMainnet = 42766, GesotenVerseTestnet = 42801, KintoTestnet = 42888, Athereum = 43110, @@ -2014,6 +2061,8 @@ export enum ChainId { BifrostTestnet = 49088, EnergiTestnet = 49797, LiveplexOracleEVM = 50001, + YooldoVerseMainnet = 50005, + YooldoVerseTestnet = 50006, GTONTestnet = 50021, LumozTestnetAlpha = 51178, SardisMainnet = 51712, @@ -2056,6 +2105,7 @@ export enum ChainId { PolyjuiceTestnet = 71393, GodwokenTestnetv1 = 71401, GodwokenMainnet = 71402, + GrokChainMainnet = 72992, EnergyWebVoltaTestnet = 73799, MixinVirtualMachine = 73927, ResinCoinMainnet = 75000, @@ -2089,6 +2139,7 @@ export enum ChainId { IVARChainMainnet = 88888, BeverlyHills = 90210, NautilusTritionChain = 91002, + ComboTestnet = 91715, LambdaTestnet = 92001, 'MantisTestnet(Hexapod)' = 96970, BobaBNBMainnetOld = 97288, @@ -2146,6 +2197,8 @@ export enum ChainId { ReapchainMainnet = 221230, ReapchainTestnet = 221231, TafECOChainMainnet = 224168, + CONETSeboliaTestnet = 224422, + CONETHolesky = 224433, HashKeyChainTestnet = 230315, HaymoTestnet = 234666, ARTISsigma1 = 246529, @@ -2181,6 +2234,7 @@ export enum ChainId { DexalotSubnet = 432204, WeelinkTestnet = 444900, PatexSepoliaTestnet = 471100, + UltraProMainnet = 473861, OpenChainMainnet = 474142, 'CMP-Testnet' = 512512, EthereumFair = 513100, @@ -2205,6 +2259,7 @@ export enum ChainId { 'Vision-Mainnet' = 888888, PosichainMainnetShard0 = 900000, PosichainTestnetShard0 = 910000, + AstriaEVMDusknet = 912559, PosichainDevnetShard0 = 920000, PosichainDevnetShard1 = 920001, FNCYTestnet = 923018, @@ -2236,6 +2291,7 @@ export enum ChainId { Musicoin = 7762959, Zora = 7777777, PlianMainnetSubchain1 = 8007736, + Hokum = 8080808, HAPchain = 8794598, QuarixTestnet = 8888881, Quarix = 8888888, @@ -2252,6 +2308,7 @@ export enum ChainId { SmartMeshMainnet = 20180430, Quarkblockchain = 20181205, PegoNetwork = 20201022, + HokumTestnet = 20482050, ExcelonMainnet = 22052002, 'ExcoincialChainVolta-Testnet' = 27082017, ExcoincialChainMainnet = 27082022, @@ -2261,7 +2318,10 @@ export enum ChainId { JoysDigitalMainnet = 35855456, Maistestsubnet = 43214913, Aquachain = 61717561, + 'AutonityBakerloo(Thames)Testnet' = 65010000, + 'AutonityBakerloo(Barada)Testnet' = 65010001, 'AutonityPiccadilly(Thames)Testnet' = 65100000, + 'AutonityPiccadilly(Barada)Testnet' = 65100001, FrameTestnet = 68840142, 'T.E.A.MBlockchain' = 88888888, JoysDigitalTestNet = 99415706,