diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 2cfebe9..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Publish -on: - workflow_dispatch: - release: - types: [published] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v2 - with: - node-version: '12.x' - registry-url: 'https://registry.npmjs.org' - - run: yarn - - run: yarn publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000..4889b0d --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,42 @@ +name: Update +on: + workflow_dispatch: + # Auto-update every week on midnight Monday + schedule: + - cron: '0 0 * * 1' +jobs: + update: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '12.x' + registry-url: 'https://registry.npmjs.org' + - name: Install dependencies + run: yarn + - name: Generate new files + run: yarn generate && yarn build + - name: Update version (major if there are deletions in enums.ts, otherwise minor) + run: git diff src/enums.ts | grep "^-[^-]" && yarn version --major --no-git-tag-version || yarn version --minor --no-git-tag-version + - name: Commit and push changes + uses: EndBug/add-and-commit@v9 + with: + default_author: 'github_actions' + message: 'Update chains based on latest data from chainId.network' + - name: Publish to npm + run: yarn publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Get package.json info + id: package_json + uses: jaywcjlove/github-action-package@main + - name: Create Release + id: create_release + uses: actions/create-release@latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: v${{ steps.package_json.outputs.version }} + release_name: v${{ steps.package_json.outputs.version }} + body: Update chains based on latest data from chainId.network diff --git a/package.json b/package.json index aa4a0e3..f57fc7d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eth-chains", - "version": "1.0.0", + "version": "3.0.0", "description": "Helper module for getting Ethereum chains info.", "author": "Taylor Dawson", "main": "dist/index.js", @@ -17,9 +17,9 @@ "prepack": "yarn build" }, "devDependencies": { - "got": "^11.8.2", "@types/node": "^14.14.37", "@types/prettier": "^2.2.3", + "got": "^11.8.2", "prettier": "^2.2.1", "ts-node": "^9.1.1", "typescript": "^4.2.3" diff --git a/src/chains.ts b/src/chains.ts index 19e06f5..fc746d8 100644 --- a/src/chains.ts +++ b/src/chains.ts @@ -8,8 +8,10 @@ export const chains: Chains = { 'https://mainnet.infura.io/v3/${INFURA_API_KEY}', 'wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}', 'https://api.mycryptoapi.com/eth', - 'https://cloudflare-eth.com' + 'https://cloudflare-eth.com', + 'https://ethereum.publicnode.com' ], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://ethereum.org', @@ -46,7 +48,6 @@ export const chains: Chains = { name: 'Ropsten', title: 'Ethereum Testnet Ropsten', chain: 'ETH', - network: 'testnet', rpc: [ 'https://ropsten.infura.io/v3/${INFURA_API_KEY}', 'wss://ropsten.infura.io/ws/v3/${INFURA_API_KEY}' @@ -55,7 +56,7 @@ export const chains: Chains = { 'http://fauceth.komputing.org?chain=3&address=${ADDRESS}', 'https://faucet.ropsten.be?${ADDRESS}' ], - nativeCurrency: { name: 'Ropsten Ether', symbol: 'ROP', decimals: 18 }, + nativeCurrency: { name: 'Ropsten Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://github.com/ethereum/ropsten', shortName: 'rop', chainId: 3, @@ -73,7 +74,6 @@ export const chains: Chains = { name: 'Rinkeby', title: 'Ethereum Testnet Rinkeby', chain: 'ETH', - network: 'testnet', rpc: [ 'https://rinkeby.infura.io/v3/${INFURA_API_KEY}', 'wss://rinkeby.infura.io/ws/v3/${INFURA_API_KEY}' @@ -82,7 +82,7 @@ export const chains: Chains = { 'http://fauceth.komputing.org?chain=4&address=${ADDRESS}', 'https://faucet.rinkeby.io' ], - nativeCurrency: { name: 'Rinkeby Ether', symbol: 'RIN', decimals: 18 }, + nativeCurrency: { name: 'Rinkeby Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://www.rinkeby.io', shortName: 'rin', chainId: 4, @@ -97,10 +97,9 @@ export const chains: Chains = { ] }, 5: { - name: 'Görli', - title: 'Ethereum Testnet Görli', + name: 'Goerli', + title: 'Ethereum Testnet Goerli', chain: 'ETH', - network: 'testnet', rpc: [ 'https://goerli.infura.io/v3/${INFURA_API_KEY}', 'wss://goerli.infura.io/v3/${INFURA_API_KEY}', @@ -111,7 +110,7 @@ export const chains: Chains = { 'https://goerli-faucet.slock.it?address=${ADDRESS}', 'https://faucet.goerli.mudit.blog' ], - nativeCurrency: { name: 'Görli Ether', symbol: 'GOR', decimals: 18 }, + nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://goerli.net/#about', shortName: 'gor', chainId: 5, @@ -139,13 +138,21 @@ export const chains: Chains = { 7: { name: 'ThaiChain', chain: 'TCH', - rpc: ['https://rpc.dome.cloud'], + rpc: ['https://rpc.dome.cloud', 'https://rpc.thaichain.org'], faucets: [], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], nativeCurrency: { name: 'ThaiChain Ether', symbol: 'TCH', decimals: 18 }, infoURL: 'https://thaichain.io', shortName: 'tch', chainId: 7, - networkId: 7 + networkId: 7, + explorers: [ + { + name: 'Thaichain Explorer', + url: 'https://exp.thaichain.org', + standard: 'EIP3091' + } + ] }, 8: { name: 'Ubiq', @@ -195,7 +202,7 @@ export const chains: Chains = { { name: 'etherscan', url: 'https://optimistic.etherscan.io', - standard: 'none' + standard: 'EIP3091' } ] }, @@ -245,13 +252,20 @@ export const chains: Chains = { name: 'Flare Mainnet', chain: 'FLR', icon: 'flare', - rpc: [], + rpc: ['https://flare-api.flare.network/ext/C/rpc'], faucets: [], - nativeCurrency: { name: 'Spark', symbol: 'FLR', decimals: 18 }, + nativeCurrency: { name: 'Flare', symbol: 'FLR', decimals: 18 }, infoURL: 'https://flare.xyz', shortName: 'flr', chainId: 14, - networkId: 14 + networkId: 14, + explorers: [ + { + name: 'blockscout', + url: 'https://flare-explorer.flare.network', + standard: 'EIP3091' + } + ] }, 15: { name: 'Diode Prenet', @@ -267,12 +281,13 @@ export const chains: Chains = { 16: { name: 'Flare Testnet Coston', chain: 'FLR', + icon: 'coston', rpc: ['https://coston-api.flare.network/ext/bc/C/rpc'], faucets: [ 'https://faucet.towolabs.com', 'https://fauceth.komputing.org?chain=16&address=${ADDRESS}' ], - nativeCurrency: { name: 'Coston Spark', symbol: 'CFLR', decimals: 18 }, + nativeCurrency: { name: 'Coston Flare', symbol: 'CFLR', decimals: 18 }, infoURL: 'https://flare.xyz', shortName: 'cflr', chainId: 16, @@ -323,7 +338,7 @@ export const chains: Chains = { chain: 'SGB', icon: 'songbird', rpc: [ - 'https://songbird.towolabs.com/rpc', + 'https://songbird-api.flare.network/ext/C/rpc', 'https://sgb.ftso.com.au/ext/bc/C/rpc', 'https://sgb.lightft.so/rpc', 'https://sgb-rpc.ftso.eu' @@ -349,27 +364,34 @@ export const chains: Chains = { faucets: ['https://faucet.elastos.org/'], nativeCurrency: { name: 'Elastos', symbol: 'ELA', decimals: 18 }, infoURL: 'https://www.elastos.org/', - shortName: 'elaeth', + shortName: 'esc', chainId: 20, networkId: 20, explorers: [ { - name: 'elastos eth explorer', - url: 'https://eth.elastos.io', + name: 'elastos esc explorer', + url: 'https://esc.elastos.io', standard: 'EIP3091' } ] }, 21: { - name: 'ELA-ETH-Sidechain Testnet', + name: 'Elastos Smart Chain Testnet', chain: 'ETH', - rpc: ['https://rpc.elaeth.io'], - faucets: ['https://faucet.elaeth.io/'], + rpc: ['https://api-testnet.elastos.io/eth'], + faucets: ['https://esc-faucet.elastos.io/'], nativeCurrency: { name: 'Elastos', symbol: 'tELA', decimals: 18 }, - infoURL: 'https://elaeth.io/', - shortName: 'elaetht', + infoURL: 'https://www.elastos.org/', + shortName: 'esct', chainId: 21, - networkId: 21 + networkId: 21, + explorers: [ + { + name: 'elastos esc explorer', + url: 'https://esc-testnet.elastos.io', + standard: 'EIP3091' + } + ] }, 22: { name: 'ELA-DID-Sidechain Mainnet', @@ -394,21 +416,23 @@ export const chains: Chains = { networkId: 23 }, 24: { - name: 'Dithereum Mainnet', - chain: 'DTH', - icon: 'dithereum', - rpc: ['https://node-mainnet.dithereum.io'], - faucets: ['https://faucet.dithereum.org'], - nativeCurrency: { name: 'Dither', symbol: 'DTH', decimals: 18 }, - infoURL: 'https://dithereum.org', - shortName: 'dthmainnet', + name: 'KardiaChain Mainnet', + chain: 'KAI', + icon: 'kardiachain', + rpc: ['https://rpc.kardiachain.io'], + faucets: [], + nativeCurrency: { name: 'KardiaChain', symbol: 'KAI', decimals: 18 }, + infoURL: 'https://kardiachain.io', + shortName: 'kardiachain', chainId: 24, - networkId: 24 + networkId: 0, + redFlags: ['reusedChainId'] }, 25: { name: 'Cronos Mainnet Beta', chain: 'CRO', - rpc: ['https://evm.cronos.org'], + rpc: ['https://evm.cronos.org', 'https://cronos-evm.publicnode.com'], + features: [{ name: 'EIP1559' }], faucets: [], nativeCurrency: { name: 'Cronos', symbol: 'CRO', decimals: 18 }, infoURL: 'https://cronos.org/', @@ -418,7 +442,7 @@ export const chains: Chains = { explorers: [ { name: 'Cronos Explorer', - url: 'https://cronos.org/explorer', + url: 'https://cronoscan.com', standard: 'none' } ] @@ -466,7 +490,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://boba.network', - shortName: 'Boba Rinkeby', + shortName: 'BobaRinkeby', chainId: 28, networkId: 28, explorers: [ @@ -504,8 +528,8 @@ export const chains: Chains = { name: 'RSK Mainnet', chain: 'RSK', rpc: ['https://public-node.rsk.co', 'https://mycrypto.rsk.co'], - faucets: ['https://free-online-app.com/faucet-for-eth-evm-chains/'], - nativeCurrency: { name: 'RSK Mainnet Ether', symbol: 'RBTC', decimals: 18 }, + faucets: ['https://faucet.rsk.co/'], + nativeCurrency: { name: 'Smart Bitcoin', symbol: 'RBTC', decimals: 18 }, infoURL: 'https://rsk.co', shortName: 'rsk', chainId: 30, @@ -513,7 +537,7 @@ export const chains: Chains = { slip44: 137, explorers: [ { - name: 'blockscout', + name: 'RSK Explorer', url: 'https://explorer.rsk.co', standard: 'EIP3091' } @@ -526,16 +550,23 @@ export const chains: Chains = { 'https://public-node.testnet.rsk.co', 'https://mycrypto.testnet.rsk.co' ], - faucets: ['https://faucet.testnet.rsk.co'], + faucets: ['https://faucet.rsk.co/'], nativeCurrency: { - name: 'RSK Testnet Ether', + name: 'Testnet Smart Bitcoin', symbol: 'tRBTC', decimals: 18 }, infoURL: 'https://rsk.co', shortName: 'trsk', chainId: 31, - networkId: 31 + networkId: 31, + explorers: [ + { + name: 'RSK Testnet Explorer', + url: 'https://explorer.testnet.rsk.co', + standard: 'EIP3091' + } + ] }, 32: { name: 'GoodData Testnet', @@ -590,6 +621,33 @@ export const chains: Chains = { chainId: 35, networkId: 35 }, + 36: { + name: 'Dxchain Mainnet', + chain: 'Dxchain', + icon: 'dx', + rpc: ['https://mainnet.dxchain.com'], + faucets: [], + nativeCurrency: { name: 'Dxchain', symbol: 'DX', decimals: 18 }, + infoURL: 'https://www.dxchain.com/', + shortName: 'dx', + chainId: 36, + networkId: 36, + explorers: [ + { name: 'dxscan', url: 'https://dxscan.io', standard: 'EIP3091' } + ] + }, + 37: { + name: 'SeedCoin-Network', + chain: 'SeedCoin-Network', + rpc: ['https://node.seedcoin.network'], + faucets: [], + nativeCurrency: { name: 'SeedCoin', symbol: 'SEED', decimals: 18 }, + infoURL: 'https://www.seedcoin.network/', + shortName: 'SEED', + icon: 'seedcoin', + chainId: 37, + networkId: 37 + }, 38: { name: 'Valorbit', chain: 'VAL', @@ -602,6 +660,26 @@ export const chains: Chains = { networkId: 38, slip44: 538 }, + 39: { + name: 'Unicorn Ultra Testnet', + chain: 'u2u', + rpc: ['https://rpc-testnet.uniultra.xyz'], + faucets: ['https://faucet.uniultra.xyz'], + nativeCurrency: { name: 'Unicorn Ultra', symbol: 'U2U', decimals: 18 }, + infoURL: 'https://uniultra.xyz', + shortName: 'u2u', + chainId: 39, + networkId: 39, + icon: 'u2u', + explorers: [ + { + icon: 'u2u', + name: 'U2U Explorer', + url: 'https://testnet.uniultra.xyz', + standard: 'EIP3091' + } + ] + }, 40: { name: 'Telos EVM Mainnet', chain: 'TLOS', @@ -609,7 +687,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'Telos', symbol: 'TLOS', decimals: 18 }, infoURL: 'https://telos.net', - shortName: 'Telos EVM', + shortName: 'TelosEVM', chainId: 40, networkId: 40, explorers: [ @@ -627,7 +705,7 @@ export const chains: Chains = { faucets: ['https://app.telos.net/testnet/developers'], nativeCurrency: { name: 'Telos', symbol: 'TLOS', decimals: 18 }, infoURL: 'https://telos.net', - shortName: 'Telos EVM Testnet', + shortName: 'TelosEVMTestnet', chainId: 41, networkId: 41 }, @@ -635,7 +713,6 @@ export const chains: Chains = { name: 'Kovan', title: 'Ethereum Testnet Kovan', chain: 'ETH', - network: 'testnet', rpc: [ 'https://kovan.poa.network', 'http://kovan.poa.network:8545', @@ -648,7 +725,7 @@ export const chains: Chains = { 'https://faucet.kovan.network', 'https://gitter.im/kovan-testnet/faucet' ], - nativeCurrency: { name: 'Kovan Ether', symbol: 'KOV', decimals: 18 }, + nativeCurrency: { name: 'Kovan Ether', symbol: 'ETH', decimals: 18 }, explorers: [ { name: 'etherscan', @@ -669,7 +746,7 @@ export const chains: Chains = { 'https://docs.crab.network/dvm/wallets/dvm-metamask#apply-for-the-test-token' ], nativeCurrency: { - name: 'Pangolin Network Native Token”', + name: 'Pangolin Network Native Token', symbol: 'PRING', decimals: 18 }, @@ -710,10 +787,10 @@ export const chains: Chains = { 45: { name: 'Darwinia Pangoro Testnet', chain: 'pangoro', - rpc: ['http://pangoro-rpc.darwinia.network'], + rpc: ['https://pangoro-rpc.darwinia.network'], faucets: [], nativeCurrency: { - name: 'Pangoro Network Native Token”', + name: 'Pangoro Network Native Token', symbol: 'ORING', decimals: 18 }, @@ -729,27 +806,122 @@ export const chains: Chains = { } ] }, + 46: { + name: 'Darwinia Network', + chain: 'darwinia', + rpc: ['https://rpc.darwinia.network'], + faucets: [], + nativeCurrency: { + name: 'Darwinia Network Native Token', + symbol: 'RING', + decimals: 18 + }, + infoURL: 'https://darwinia.network/', + shortName: 'darwinia', + chainId: 46, + networkId: 46, + explorers: [ + { + name: 'subscan', + url: 'https://darwinia.subscan.io', + standard: 'none' + } + ] + }, + 48: { + name: 'Ennothem Mainnet Proterozoic', + chain: 'ETMP', + rpc: ['https://rpc.etm.network'], + faucets: [], + nativeCurrency: { name: 'Ennothem', symbol: 'ETMP', decimals: 18 }, + infoURL: 'https://etm.network', + shortName: 'etmp', + chainId: 48, + networkId: 48, + icon: 'etmp', + explorers: [ + { + name: 'etmpscan', + url: 'https://etmscan.network', + icon: 'etmp', + standard: 'EIP3091' + } + ] + }, + 49: { + name: 'Ennothem Testnet Pioneer', + chain: 'ETMP', + rpc: ['https://rpc.pioneer.etm.network'], + faucets: [], + nativeCurrency: { name: 'Ennothem', symbol: 'ETMP', decimals: 18 }, + infoURL: 'https://etm.network', + shortName: 'etmpTest', + chainId: 49, + networkId: 49, + icon: 'etmp', + explorers: [ + { + name: 'etmp', + url: 'https://pioneer.etmscan.network', + standard: 'EIP3091' + } + ] + }, 50: { - name: 'XinFin Network Mainnet', + name: 'XinFin XDC Network', chain: 'XDC', - rpc: ['https://rpc.xinfin.network'], + rpc: [ + 'https://erpc.xinfin.network', + 'https://rpc.xinfin.network', + 'https://rpc1.xinfin.network' + ], faucets: [], nativeCurrency: { name: 'XinFin', symbol: 'XDC', decimals: 18 }, infoURL: 'https://xinfin.org', shortName: 'xdc', chainId: 50, - networkId: 50 + networkId: 50, + icon: 'xdc', + explorers: [ + { + name: 'xdcscan', + url: 'https://xdcscan.io', + icon: 'blocksscan', + standard: 'EIP3091' + }, + { + name: 'blocksscan', + url: 'https://xdc.blocksscan.io', + icon: 'blocksscan', + standard: 'EIP3091' + } + ] }, 51: { - name: 'XinFin Apothem Testnet', - chain: 'TXDC', - rpc: ['https://rpc.apothem.network'], - faucets: [], - nativeCurrency: { name: 'XinFinTest', symbol: 'TXDC', decimals: 18 }, + name: 'XDC Apothem Network', + chain: 'XDC', + rpc: ['https://rpc.apothem.network', 'https://erpc.apothem.network'], + faucets: ['https://faucet.apothem.network'], + nativeCurrency: { name: 'XinFin', symbol: 'TXDC', decimals: 18 }, infoURL: 'https://xinfin.org', - shortName: 'TXDC', + shortName: 'txdc', chainId: 51, - networkId: 51 + networkId: 51, + icon: 'xdc', + explorers: [ + { + name: 'xdcscan', + url: 'https://apothem.xinfinscan.com', + icon: 'blocksscan', + standard: 'EIP3091' + }, + { + name: 'blocksscan', + url: 'https://apothem.blocksscan.io', + icon: 'blocksscan', + standard: 'EIP3091' + } + ] }, 52: { name: 'CoinEx Smart Chain Mainnet', @@ -799,7 +971,6 @@ export const chains: Chains = { name: 'Openpiece Mainnet', chain: 'OPENPIECE', icon: 'openpiece', - network: 'mainnet', rpc: ['https://mainnet.openpiece.io'], faucets: [], nativeCurrency: { name: 'Belly', symbol: 'BELLY', decimals: 18 }, @@ -852,6 +1023,7 @@ export const chains: Chains = { 'https://bsc-dataseed2.ninicoin.io', 'https://bsc-dataseed3.ninicoin.io', 'https://bsc-dataseed4.ninicoin.io', + 'https://bsc.publicnode.com', 'wss://bsc-ws-node.nariox.org' ], faucets: ['https://free-online-app.com/faucet-for-eth-evm-chains/'], @@ -894,6 +1066,7 @@ export const chains: Chains = { 58: { name: 'Ontology Mainnet', chain: 'Ontology', + icon: 'ontology', rpc: [ 'http://dappnode1.ont.io:20339', 'http://dappnode2.ont.io:20339', @@ -907,7 +1080,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'ONG', symbol: 'ONG', decimals: 18 }, infoURL: 'https://ont.io/', - shortName: 'Ontology Mainnet', + shortName: 'OntologyMainnet', chainId: 58, networkId: 58, explorers: [ @@ -925,7 +1098,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'EOS', symbol: 'EOS', decimals: 18 }, infoURL: 'https://eoscommunity.org/', - shortName: 'EOS Mainnet', + shortName: 'EOSMainnet', chainId: 59, networkId: 59, explorers: [ @@ -1015,7 +1188,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'Ellaism Ether', symbol: 'ELLA', decimals: 18 }, infoURL: 'https://ellaism.org', - shortName: 'ella', + shortName: 'ellaism', chainId: 64, networkId: 64, slip44: 163 @@ -1099,7 +1272,7 @@ export const chains: Chains = { chain: 'ETH', rpc: ['https://kovan.optimism.io/'], faucets: ['http://fauceth.komputing.org?chain=69&address=${ADDRESS}'], - nativeCurrency: { name: 'Kovan Ether', symbol: 'KOR', decimals: 18 }, + nativeCurrency: { name: 'Kovan Ether', symbol: 'ETH', decimals: 18 }, explorers: [ { name: 'etherscan', @@ -1143,7 +1316,6 @@ export const chains: Chains = { 71: { name: 'Conflux eSpace (Testnet)', chain: 'Conflux', - network: 'testnet', rpc: ['https://evmtestnet.confluxrpc.com'], faucets: ['https://faucet.confluxnetwork.org'], nativeCurrency: { name: 'CFX', symbol: 'CFX', decimals: 18 }, @@ -1160,10 +1332,40 @@ export const chains: Chains = { } ] }, + 72: { + name: 'DxChain Testnet', + chain: 'DxChain', + rpc: ['https://testnet-http.dxchain.com'], + faucets: ['https://faucet.dxscan.io'], + nativeCurrency: { name: 'DxChain Testnet', symbol: 'DX', decimals: 18 }, + infoURL: 'https://testnet.dxscan.io/', + shortName: 'dxc', + chainId: 72, + networkId: 72 + }, + 73: { + name: 'FNCY', + chain: 'FNCY', + rpc: ['https://fncy-seed1.fncy.world'], + faucets: ['https://faucet-testnet.fncy.world'], + nativeCurrency: { name: 'FNCY', symbol: 'FNCY', decimals: 18 }, + infoURL: 'https://fncyscan.fncy.world', + shortName: 'FNCY', + chainId: 73, + networkId: 73, + icon: 'fncy', + explorers: [ + { + name: 'fncy scan', + url: 'https://fncyscan.fncy.world', + icon: 'fncy', + standard: 'EIP3091' + } + ] + }, 74: { name: 'IDChain Mainnet', chain: 'IDChain', - network: 'mainnet', rpc: ['https://idchain.one/rpc/', 'wss://idchain.one/ws/'], faucets: [], nativeCurrency: { name: 'EIDI', symbol: 'EIDI', decimals: 18 }, @@ -1176,7 +1378,27 @@ export const chains: Chains = { { name: 'explorer', url: 'https://explorer.idchain.one', - icon: 'etherscan', + standard: 'EIP3091' + } + ] + }, + 75: { + name: 'Decimal Smart Chain Mainnet', + chain: 'DSC', + rpc: ['https://node.decimalchain.com/web3'], + faucets: [], + nativeCurrency: { name: 'Decimal', symbol: 'DEL', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://decimalchain.com', + shortName: 'DSC', + chainId: 75, + networkId: 75, + icon: 'dsc', + explorers: [ + { + name: 'DSC Explorer Mainnet', + url: 'https://explorer.decimalchain.com', + icon: 'dsc', standard: 'EIP3091' } ] @@ -1410,7 +1632,6 @@ export const chains: Chains = { 90: { name: 'Garizon Stage0', chain: 'GAR', - network: 'mainnet', icon: 'garizon', rpc: ['https://s0.garizon.net/rpc'], faucets: [], @@ -1431,7 +1652,6 @@ export const chains: Chains = { 91: { name: 'Garizon Stage1', chain: 'GAR', - network: 'mainnet', icon: 'garizon', rpc: ['https://s1.garizon.net/rpc'], faucets: [], @@ -1453,7 +1673,6 @@ export const chains: Chains = { 92: { name: 'Garizon Stage2', chain: 'GAR', - network: 'mainnet', icon: 'garizon', rpc: ['https://s2.garizon.net/rpc'], faucets: [], @@ -1475,7 +1694,6 @@ export const chains: Chains = { 93: { name: 'Garizon Stage3', chain: 'GAR', - network: 'mainnet', icon: 'garizon', rpc: ['https://s3.garizon.net/rpc'], faucets: [], @@ -1501,7 +1719,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'EOS', symbol: 'EOS', decimals: 18 }, infoURL: 'https://www.cryptokylin.io/', - shortName: 'Kylin Testnet', + shortName: 'KylinTestnet', chainId: 95, networkId: 95, explorers: [ @@ -1513,22 +1731,25 @@ export const chains: Chains = { ] }, 96: { - name: 'NEXT Smart Chain', - chain: 'NSC', - rpc: ['https://rpc.nextsmartchain.com'], - faucets: ['https://faucet.nextsmartchain.com'], - nativeCurrency: { name: 'NEXT', symbol: 'NEXT', decimals: 18 }, - infoURL: 'https://www.nextsmartchain.com/', - shortName: 'nsc', + name: 'Bitkub Chain', + chain: 'BKC', + icon: 'bkc', + rpc: ['https://rpc.bitkubchain.io', 'wss://wss.bitkubchain.io'], + faucets: [], + nativeCurrency: { name: 'Bitkub Coin', symbol: 'KUB', decimals: 18 }, + infoURL: 'https://www.bitkubchain.com/', + shortName: 'bkc', chainId: 96, networkId: 96, explorers: [ { - name: 'Next Smart Chain Explorer', - url: 'https://explorer.nextsmartchain.com', - standard: 'none' + name: 'Bitkub Chain Explorer', + url: 'https://bkcscan.com', + standard: 'none', + icon: 'bkc' } - ] + ], + redFlags: ['reusedChainId'] }, 97: { name: 'Binance Smart Chain Testnet', @@ -1562,12 +1783,7 @@ export const chains: Chains = { 99: { name: 'POA Network Core', chain: 'POA', - rpc: [ - 'https://core.poanetwork.dev', - 'http://core.poanetwork.dev:8545', - 'https://core.poa.network', - 'ws://core.poanetwork.dev:8546' - ], + rpc: ['https://core.poa.network'], faucets: [], nativeCurrency: { name: 'POA Network Core Ether', @@ -1589,7 +1805,7 @@ export const chains: Chains = { }, 100: { name: 'Gnosis', - chain: 'Gnosis', + chain: 'GNO', icon: 'gnosis', rpc: [ 'https://rpc.gnosischain.com', @@ -1599,17 +1815,23 @@ export const chains: Chains = { 'wss://rpc.gnosischain.com/wss' ], faucets: [ + 'https://gnosisfaucet.com', 'https://faucet.gimlu.com/gnosis', 'https://stakely.io/faucet/gnosis-chain-xdai', 'https://faucet.prussia.dev/xdai' ], nativeCurrency: { name: 'xDAI', symbol: 'xDAI', decimals: 18 }, - infoURL: 'https://developers.gnosischain.com', + infoURL: 'https://docs.gnosischain.com', shortName: 'gno', chainId: 100, networkId: 100, slip44: 700, explorers: [ + { + name: 'gnosisscan', + url: 'https://gnosisscan.io', + standard: 'EIP3091' + }, { name: 'blockscout', url: 'https://blockscout.com/xdai/mainnet', @@ -1634,7 +1856,11 @@ export const chains: Chains = { name: 'Web3Games Testnet', chain: 'Web3Games', icon: 'web3games', - rpc: ['https://testnet.web3games.org/evm'], + rpc: [ + 'https://testnet-rpc-0.web3games.org/evm', + 'https://testnet-rpc-1.web3games.org/evm', + 'https://testnet-rpc-2.web3games.org/evm' + ], faucets: [], nativeCurrency: { name: 'Web3Games', symbol: 'W3G', decimals: 18 }, infoURL: 'https://web3games.org/', @@ -1642,6 +1868,30 @@ export const chains: Chains = { chainId: 102, networkId: 102 }, + 104: { + name: 'Kaiba Lightning Chain Testnet', + chain: 'tKLC', + rpc: ['https://klc.live/'], + faucets: [], + nativeCurrency: { + name: 'Kaiba Testnet Token', + symbol: 'tKAIBA', + decimals: 18 + }, + infoURL: 'https://kaibadefi.com', + shortName: 'tklc', + chainId: 104, + networkId: 104, + icon: 'kaiba', + explorers: [ + { + name: 'kaibascan', + url: 'https://kaibascan.io', + icon: 'kaibascan', + standard: 'EIP3091' + } + ] + }, 105: { name: 'Web3Games Devnet', chain: 'Web3Games', @@ -1688,7 +1938,7 @@ export const chains: Chains = { chain: 'NTN', icon: 'nebulatestnet', rpc: ['https://testnet.rpc.novanetwork.io:9070'], - faucets: [], + faucets: ['https://faucet.novanetwork.io'], nativeCurrency: { name: 'Nebula X', symbol: 'NBX', decimals: 18 }, infoURL: 'https://novanetwork.io', shortName: 'ntn', @@ -1748,6 +1998,162 @@ export const chains: Chains = { networkId: 111, icon: 'etherlite' }, + 113: { + name: 'Dehvo', + chain: 'Dehvo', + rpc: [ + 'https://connect.dehvo.com', + 'https://rpc.dehvo.com', + 'https://rpc1.dehvo.com', + 'https://rpc2.dehvo.com' + ], + faucets: ['https://buy.dehvo.com'], + nativeCurrency: { name: 'Dehvo', symbol: 'Deh', decimals: 18 }, + infoURL: 'https://dehvo.com', + shortName: 'deh', + chainId: 113, + networkId: 113, + slip44: 714, + explorers: [ + { + name: 'Dehvo Explorer', + url: 'https://explorer.dehvo.com', + standard: 'EIP3091' + } + ] + }, + 114: { + name: 'Flare Testnet Coston2', + chain: 'FLR', + icon: 'coston2', + rpc: ['https://coston2-api.flare.network/ext/bc/C/rpc'], + faucets: ['https://coston2-faucet.towolabs.com'], + nativeCurrency: { name: 'Coston2 Flare', symbol: 'C2FLR', decimals: 18 }, + infoURL: 'https://flare.xyz', + shortName: 'c2flr', + chainId: 114, + networkId: 114, + explorers: [ + { + name: 'blockscout', + url: 'https://coston2-explorer.flare.network', + standard: 'EIP3091' + } + ] + }, + 115: { + name: 'DeBank Testnet', + chain: 'DeBank', + rpc: [], + faucets: [], + icon: 'debank', + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://debank.com', + shortName: 'debank-testnet', + chainId: 115, + networkId: 115, + explorers: [] + }, + 116: { + name: 'DeBank Mainnet', + chain: 'DeBank', + rpc: [], + faucets: [], + icon: 'debank', + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://debank.com', + shortName: 'debank-mainnet', + chainId: 116, + networkId: 116, + explorers: [] + }, + 118: { + name: 'Arcology Testnet', + chain: 'Arcology', + icon: 'acolicon', + rpc: ['https://testnet.arcology.network/rpc'], + faucets: [], + nativeCurrency: { name: 'Arcology Coin', symbol: 'Acol', decimals: 18 }, + infoURL: 'https://arcology.network/', + shortName: 'arcology', + chainId: 118, + networkId: 118, + explorers: [ + { + name: 'arcology', + url: 'https://testnet.arcology.network/explorer', + standard: 'none' + } + ] + }, + 119: { + name: 'ENULS Mainnet', + chain: 'ENULS', + rpc: ['https://evmapi.nuls.io', 'https://evmapi2.nuls.io'], + faucets: [], + nativeCurrency: { name: 'NULS', symbol: 'NULS', decimals: 18 }, + infoURL: 'https://nuls.io', + shortName: 'enuls', + chainId: 119, + networkId: 119, + icon: 'enuls', + explorers: [ + { + name: 'enulsscan', + url: 'https://evmscan.nuls.io', + icon: 'enuls', + standard: 'EIP3091' + } + ] + }, + 120: { + name: 'ENULS Testnet', + chain: 'ENULS', + rpc: ['https://beta.evmapi.nuls.io', 'https://beta.evmapi2.nuls.io'], + faucets: ['http://faucet.nuls.io'], + nativeCurrency: { name: 'NULS', symbol: 'NULS', decimals: 18 }, + infoURL: 'https://nuls.io', + shortName: 'enulst', + chainId: 120, + networkId: 120, + icon: 'enuls', + explorers: [ + { + name: 'enulsscan', + url: 'https://beta.evmscan.nuls.io', + icon: 'enuls', + standard: 'EIP3091' + } + ] + }, + 121: { + name: 'Realchain Mainnet', + chain: 'REAL', + rpc: [ + 'https://rcl-dataseed1.rclsidechain.com', + 'https://rcl-dataseed2.rclsidechain.com', + 'https://rcl-dataseed3.rclsidechain.com', + 'https://rcl-dataseed4.rclsidechain.com', + 'wss://rcl-dataseed1.rclsidechain.com/v1/', + 'wss://rcl-dataseed2.rclsidechain.com/v1/', + 'wss://rcl-dataseed3.rclsidechain.com/v1/', + 'wss://rcl-dataseed4.rclsidechain.com/v1/' + ], + faucets: ['https://faucet.rclsidechain.com'], + nativeCurrency: { name: 'Realchain', symbol: 'REAL', decimals: 18 }, + infoURL: 'https://www.rclsidechain.com/', + shortName: 'REAL', + chainId: 121, + networkId: 121, + slip44: 714, + explorers: [ + { + name: 'realscan', + url: 'https://rclscan.com', + standard: 'EIP3091' + } + ] + }, 122: { name: 'Fuse Mainnet', chain: 'FUSE', @@ -1793,7 +2199,7 @@ export const chains: Chains = { faucets: ['https://faucet.oychain.io'], nativeCurrency: { name: 'OYchain Token', symbol: 'OY', decimals: 18 }, infoURL: 'https://www.oychain.io', - shortName: 'oychain testnet', + shortName: 'OYchainTestnet', chainId: 125, networkId: 125, slip44: 125, @@ -1813,7 +2219,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'OYchain Token', symbol: 'OY', decimals: 18 }, infoURL: 'https://www.oychain.io', - shortName: 'oychain mainnet', + shortName: 'OYchainMainnet', chainId: 126, networkId: 126, slip44: 126, @@ -1863,21 +2269,66 @@ export const chains: Chains = { } ] }, + 134: { + name: 'iExec Sidechain', + chain: 'Bellecour', + icon: 'rlc', + rpc: ['https://bellecour.iex.ec'], + faucets: [], + nativeCurrency: { name: 'xRLC', symbol: 'xRLC', decimals: 18 }, + infoURL: 'https://iex.ec', + shortName: 'rlc', + chainId: 134, + networkId: 134, + explorers: [ + { + name: 'blockscout', + url: 'https://blockscout.bellecour.iex.ec', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, + 135: { + name: 'Alyx Chain Testnet', + chain: 'Alyx Chain Testnet', + rpc: ['https://testnet-rpc.alyxchain.com'], + faucets: ['https://faucet.alyxchain.com'], + nativeCurrency: { + name: 'Alyx Testnet Native Token', + symbol: 'ALYX', + decimals: 18 + }, + infoURL: 'https://www.alyxchain.com', + shortName: 'AlyxTestnet', + chainId: 135, + networkId: 135, + explorers: [ + { + name: 'alyx testnet scan', + url: 'https://testnet.alyxscan.com', + standard: 'EIP3091' + } + ], + icon: 'alyx' + }, 137: { name: 'Polygon Mainnet', chain: 'Polygon', + icon: 'polygon', rpc: [ 'https://polygon-rpc.com/', 'https://rpc-mainnet.matic.network', 'https://matic-mainnet.chainstacklabs.com', 'https://rpc-mainnet.maticvigil.com', 'https://rpc-mainnet.matic.quiknode.pro', - 'https://matic-mainnet-full-rpc.bwarelabs.com' + 'https://matic-mainnet-full-rpc.bwarelabs.com', + 'https://polygon-bor.publicnode.com' ], faucets: [], nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 }, infoURL: 'https://polygon.technology/', - shortName: 'MATIC', + shortName: 'matic', chainId: 137, networkId: 137, slip44: 966, @@ -1893,7 +2344,6 @@ export const chains: Chains = { name: 'Openpiece Testnet', chain: 'OPENPIECE', icon: 'openpiece', - network: 'testnet', rpc: ['https://testnet.openpiece.io'], faucets: [], nativeCurrency: { name: 'Belly', symbol: 'BELLY', decimals: 18 }, @@ -1920,6 +2370,64 @@ export const chains: Chains = { chainId: 142, networkId: 142 }, + 144: { + name: 'PHI Network v2', + chain: 'PHI', + rpc: ['https://connect.phi.network'], + faucets: [], + nativeCurrency: { name: 'PHI', symbol: 'Φ', decimals: 18 }, + infoURL: 'https://phi.network', + shortName: 'PHI', + chainId: 144, + networkId: 144, + icon: 'phi', + explorers: [ + { + name: 'Phiscan', + url: 'https://phiscan.com', + icon: 'phi', + standard: 'none' + } + ] + }, + 160: { + name: 'Armonia Eva Chain Mainnet', + chain: 'Eva', + rpc: ['https://evascan.io/api/eth-rpc/'], + faucets: [], + nativeCurrency: { + name: 'Armonia Multichain Native Token', + symbol: 'AMAX', + decimals: 18 + }, + infoURL: 'https://amax.network', + shortName: 'eva', + chainId: 160, + networkId: 160, + status: 'incubating' + }, + 161: { + name: 'Armonia Eva Chain Testnet', + chain: 'Wall-e', + rpc: ['https://testnet.evascan.io/api/eth-rpc/'], + faucets: [], + nativeCurrency: { + name: 'Armonia Multichain Native Token', + symbol: 'AMAX', + decimals: 18 + }, + infoURL: 'https://amax.network', + shortName: 'wall-e', + chainId: 161, + networkId: 161, + explorers: [ + { + name: 'blockscout - evascan', + url: 'https://testnet.evascan.io', + standard: 'EIP3091' + } + ] + }, 162: { name: 'Lightstreams Testnet', chain: 'PHT', @@ -1942,10 +2450,28 @@ export const chains: Chains = { chainId: 163, networkId: 163 }, + 167: { + name: 'Atoshi Testnet', + chain: 'ATOSHI', + icon: 'atoshi', + rpc: ['https://node.atoshi.io/'], + faucets: [], + nativeCurrency: { name: 'ATOSHI', symbol: 'ATOS', decimals: 18 }, + infoURL: 'https://atoshi.org', + shortName: 'atoshi', + chainId: 167, + networkId: 167, + explorers: [ + { + name: 'atoshiscan', + url: 'https://scan.atoverse.info', + standard: 'EIP3091' + } + ] + }, 168: { name: 'AIOZ Network', chain: 'AIOZ', - network: 'mainnet', icon: 'aioz', rpc: ['https://eth-dataseed.aioz.network'], faucets: [], @@ -2079,6 +2605,42 @@ export const chains: Chains = { } ] }, + 195: { + name: 'OKBChain Testnet', + chain: 'okbchain', + rpc: [], + faucets: [], + nativeCurrency: { + name: 'OKBChain Global Utility Token in testnet', + symbol: 'OKB', + decimals: 18 + }, + features: [], + infoURL: 'https://www.okex.com/okc', + shortName: 'tokb', + chainId: 195, + networkId: 195, + explorers: [], + status: 'incubating' + }, + 196: { + name: 'OKBChain Mainnet', + chain: 'okbchain', + rpc: [], + faucets: [], + nativeCurrency: { + name: 'OKBChain Global Utility Token', + symbol: 'OKB', + decimals: 18 + }, + features: [], + infoURL: 'https://www.okex.com/okc', + shortName: 'okb', + chainId: 196, + networkId: 196, + explorers: [], + status: 'incubating' + }, 199: { name: 'BitTorrent Chain Mainnet', chain: 'BTTC', @@ -2116,9 +2678,27 @@ export const chains: Chains = { ], parent: { chain: 'eip155-100', type: 'L2' } }, - 211: { - name: 'Freight Trust Network', - chain: 'EDI', + 201: { + name: 'MOAC testnet', + chain: 'MOAC', + rpc: ['https://gateway.moac.io/testnet'], + faucets: [], + nativeCurrency: { name: 'MOAC', symbol: 'mc', decimals: 18 }, + infoURL: 'https://moac.io', + shortName: 'moactest', + chainId: 201, + networkId: 201, + explorers: [ + { + name: 'moac testnet explorer', + url: 'https://testnet.moac.io', + standard: 'none' + } + ] + }, + 211: { + name: 'Freight Trust Network', + chain: 'EDI', rpc: [ 'http://13.57.207.168:3435', 'https://app.freighttrust.net/ftn/${API_KEY}' @@ -2134,6 +2714,44 @@ export const chains: Chains = { chainId: 211, networkId: 0 }, + 212: { + name: 'MAP Makalu', + title: 'MAP Testnet Makalu', + chain: 'MAP', + rpc: ['https://testnet-rpc.maplabs.io'], + faucets: ['https://faucet.maplabs.io'], + nativeCurrency: { name: 'Makalu MAP', symbol: 'MAP', decimals: 18 }, + infoURL: 'https://maplabs.io', + shortName: 'makalu', + chainId: 212, + networkId: 212, + explorers: [ + { + name: 'mapscan', + url: 'https://testnet.mapscan.io', + standard: 'EIP3091' + } + ] + }, + 217: { + name: 'SiriusNet V2', + chain: 'SIN2', + faucets: [], + rpc: ['https://rpc2.siriusnet.io'], + icon: 'siriusnet', + nativeCurrency: { name: 'MCD', symbol: 'MCD', decimals: 18 }, + infoURL: 'https://siriusnet.io', + shortName: 'SIN2', + chainId: 217, + networkId: 217, + explorers: [ + { + name: 'siriusnet explorer', + url: 'https://scan.siriusnet.io', + standard: 'none' + } + ] + }, 218: { name: 'SoterOne Mainnet old', chain: 'SOTER', @@ -2160,7 +2778,8 @@ export const chains: Chains = { shortName: 'ASK', chainId: 222, networkId: 2221, - slip44: 2221 + slip44: 2221, + status: 'deprecated' }, 225: { name: 'LACHAIN Mainnet', @@ -2200,25 +2819,6 @@ export const chains: Chains = { } ] }, - 239: { - name: 'Aitd Testnet', - chain: 'AITD', - icon: 'aitd', - rpc: ['http://http-testnet.aitd.io'], - faucets: ['https://aitd-faucet-pre.aitdcoin.com/'], - nativeCurrency: { name: 'AITD Testnet', symbol: 'AITD', decimals: 18 }, - infoURL: 'https://www.aitd.io/', - shortName: 'AITD', - chainId: 239, - networkId: 239, - explorers: [ - { - name: 'AITD Chain Explorer', - url: 'https://aitd-explorer-pre.aitdcoin.com', - standard: 'EIP3091' - } - ] - }, 246: { name: 'Energy Web Chain', chain: 'Energy Web Chain', @@ -2241,10 +2841,29 @@ export const chains: Chains = { } ] }, + 248: { + name: 'Oasys Mainnet', + chain: 'Oasys', + icon: 'oasys', + rpc: ['https://rpc.mainnet.oasys.games'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://oasys.games', + shortName: 'OAS', + chainId: 248, + networkId: 248, + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.oasys.games', + standard: 'EIP3091' + } + ] + }, 250: { name: 'Fantom Opera', chain: 'FTM', - rpc: ['https://rpc.ftm.tools'], + rpc: ['https://rpc.ftm.tools', 'https://fantom.publicnode.com'], faucets: ['https://free-online-app.com/faucet-for-eth-evm-chains/'], nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 }, infoURL: 'https://fantom.foundation', @@ -2329,6 +2948,31 @@ export const chains: Chains = { { name: 'hscan', url: 'https://hscan.org', standard: 'EIP3091' } ] }, + 280: { + name: 'zkSync Era Testnet', + chain: 'ETH', + rpc: ['https://zksync2-testnet.zksync.dev'], + faucets: ['https://goerli.portal.zksync.io/faucet'], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://era.zksync.io/docs/', + shortName: 'zksync-goerli', + chainId: 280, + networkId: 280, + icon: 'zksync-era', + explorers: [ + { + name: 'zkSync Era Block Explorer', + url: 'https://goerli.explorer.zksync.io', + icon: 'zksync-era', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://goerli.portal.zksync.io/bridge' }] + } + }, 288: { name: 'Boba Network', chain: 'ETH', @@ -2340,6 +2984,7 @@ export const chains: Chains = { chainId: 288, networkId: 288, explorers: [ + { name: 'Bobascan', url: 'https://bobascan.com', standard: 'none' }, { name: 'Blockscout', url: 'https://blockexplorer.boba.network', @@ -2352,8 +2997,126 @@ export const chains: Chains = { bridges: [{ url: 'https://gateway.boba.network' }] } }, + 295: { + name: 'Hedera Mainnet', + chain: 'Hedera', + icon: 'hedera', + rpc: ['https://mainnet.hashio.io/api'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 }, + infoURL: 'https://hedera.com', + shortName: 'hedera-mainnet', + chainId: 295, + networkId: 295, + slip44: 3030, + explorers: [ + { + name: 'HashScan', + url: 'https://hashscan.io/mainnet/dashboard', + standard: 'none' + }, + { + name: 'Arkhia Explorer', + url: 'https://explorer.arkhia.io', + standard: 'none' + }, + { + name: 'DragonGlass', + url: 'https://app.dragonglass.me', + standard: 'none' + }, + { + name: 'Hedera Explorer', + url: 'https://hederaexplorer.io', + standard: 'none' + }, + { + name: 'Ledger Works Explore', + url: 'https://explore.lworks.io', + standard: 'none' + } + ] + }, + 296: { + name: 'Hedera Testnet', + chain: 'Hedera', + icon: 'hedera', + rpc: ['https://testnet.hashio.io/api'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: ['https://portal.hedera.com'], + nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 }, + infoURL: 'https://hedera.com', + shortName: 'hedera-testnet', + chainId: 296, + networkId: 296, + slip44: 3030, + explorers: [ + { + name: 'HashScan', + url: 'https://hashscan.io/testnet/dashboard', + standard: 'none' + }, + { + name: 'Arkhia Explorer', + url: 'https://explorer.arkhia.io', + standard: 'none' + }, + { + name: 'DragonGlass', + url: 'https://app.dragonglass.me', + standard: 'none' + }, + { + name: 'Hedera Explorer', + url: 'https://hederaexplorer.io', + standard: 'none' + }, + { + name: 'Ledger Works Explore', + url: 'https://explore.lworks.io', + standard: 'none' + } + ] + }, + 297: { + name: 'Hedera Previewnet', + chain: 'Hedera', + icon: 'hedera', + rpc: ['https://previewnet.hashio.io/api'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: ['https://portal.hedera.com'], + nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 }, + infoURL: 'https://hedera.com', + shortName: 'hedera-previewnet', + chainId: 297, + networkId: 297, + slip44: 3030, + explorers: [ + { + name: 'HashScan', + url: 'https://hashscan.io/previewnet/dashboard', + standard: 'none' + } + ] + }, + 298: { + name: 'Hedera Localnet', + chain: 'Hedera', + icon: 'hedera', + rpc: [], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 }, + infoURL: 'https://hedera.com', + shortName: 'hedera-localnet', + chainId: 298, + networkId: 298, + slip44: 3030, + explorers: [] + }, 300: { - name: 'Optimism on Gnosis Chain', + name: 'Optimism on Gnosis', chain: 'OGC', rpc: [ 'https://optimism.gnosischain.com', @@ -2375,19 +3138,104 @@ export const chains: Chains = { } ] }, + 301: { + name: 'Bobaopera', + chain: 'Bobaopera', + rpc: [ + 'https://bobaopera.boba.network', + 'wss://wss.bobaopera.boba.network', + 'https://replica.bobaopera.boba.network', + 'wss://replica-wss.bobaopera.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'Bobaopera', + chainId: 301, + networkId: 301, + explorers: [ + { + name: 'Bobaopera block explorer', + url: 'https://blockexplorer.bobaopera.boba.network', + standard: 'none' + } + ] + }, + 311: { + name: 'Omax Mainnet', + chain: 'OMAX Chain', + rpc: ['https://mainapi.omaxray.com'], + faucets: ['https://faucet.omaxray.com/'], + nativeCurrency: { name: 'OMAX COIN', symbol: 'OMAX', decimals: 18 }, + infoURL: 'https://www.omaxcoin.com/', + shortName: 'omax', + chainId: 311, + networkId: 311, + icon: 'omaxchain', + explorers: [ + { + name: 'Omax Chain Explorer', + url: 'https://omaxray.com', + icon: 'omaxray', + standard: 'EIP3091' + } + ] + }, + 314: { + name: 'Filecoin - Mainnet', + chain: 'FIL', + icon: 'filecoin', + rpc: [ + 'https://api.node.glif.io/', + 'https://rpc.ankr.com/filecoin', + 'https://filecoin-mainnet.chainstacklabs.com/rpc/v1' + ], + faucets: [], + nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 }, + infoURL: 'https://filecoin.io', + shortName: 'filecoin', + chainId: 314, + networkId: 314, + slip44: 461, + explorers: [ + { name: 'Filfox', url: 'https://filfox.info/en', standard: 'none' }, + { name: 'Beryx', url: 'https://beryx.zondax.ch', standard: 'none' }, + { + name: 'Glif Explorer', + url: 'https://explorer.glif.io', + standard: 'EIP3091' + }, + { + name: 'Dev.storage', + url: 'https://dev.storage', + standard: 'none' + }, + { name: 'Filscan', url: 'https://filscan.io', standard: 'none' }, + { + name: 'Filscout', + url: 'https://filscout.io/en', + standard: 'none' + } + ] + }, 321: { name: 'KCC Mainnet', chain: 'KCC', rpc: [ 'https://rpc-mainnet.kcc.network', - 'wss://rpc-ws-mainnet.kcc.network' + 'https://kcc.mytokenpocket.vip', + 'https://public-rpc.blockpi.io/http/kcc' + ], + faucets: [ + 'https://faucet.kcc.io/', + 'https://free-online-app.com/faucet-for-eth-evm-chains/' ], - faucets: [], nativeCurrency: { name: 'KuCoin Token', symbol: 'KCS', decimals: 18 }, infoURL: 'https://kcc.io', shortName: 'kcs', chainId: 321, - networkId: 1, + networkId: 321, + slip44: 641, explorers: [ { name: 'KCC Explorer', @@ -2399,10 +3247,7 @@ export const chains: Chains = { 322: { name: 'KCC Testnet', chain: 'KCC', - rpc: [ - 'https://rpc-testnet.kcc.network', - 'wss://rpc-ws-testnet.kcc.network' - ], + rpc: ['https://rpc-testnet.kcc.network'], faucets: ['https://faucet-testnet.kcc.network'], nativeCurrency: { name: 'KuCoin Testnet Token', @@ -2415,12 +3260,37 @@ export const chains: Chains = { networkId: 322, explorers: [ { - name: 'kcc-scan', + name: 'kcc-scan-testnet', url: 'https://scan-testnet.kcc.network', standard: 'EIP3091' } ] }, + 324: { + name: 'zkSync Era Mainnet', + chain: 'ETH', + rpc: ['https://zksync2-mainnet.zksync.io'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://zksync.io/', + shortName: 'zksync', + chainId: 324, + networkId: 324, + icon: 'zksync-era', + explorers: [ + { + name: 'zkSync Era Block Explorer', + url: 'https://explorer.zksync.io', + icon: 'zksync-era', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://portal.zksync.io/bridge' }] + } + }, 333: { name: 'Web3Q Mainnet', chain: 'Web3Q', @@ -2443,7 +3313,6 @@ export const chains: Chains = { name: 'DFK Chain Test', chain: 'DFK', icon: 'dfk', - network: 'testnet', rpc: ['https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc'], faucets: [], nativeCurrency: { name: 'Jewel', symbol: 'JEWEL', decimals: 18 }, @@ -2464,8 +3333,12 @@ export const chains: Chains = { name: 'Shiden', chain: 'SDN', rpc: [ - 'https://rpc.shiden.astar.network:8545', - 'wss://shiden.api.onfinality.io/public-ws' + 'https://shiden.api.onfinality.io/public', + 'https://shiden-rpc.dwellir.com', + 'https://shiden.public.blastapi.io', + 'wss://shiden.api.onfinality.io/public-ws', + 'wss://shiden.public.blastapi.io', + 'wss://shiden-rpc.dwellir.com' ], faucets: [], nativeCurrency: { name: 'Shiden', symbol: 'SDN', decimals: 18 }, @@ -2486,24 +3359,17 @@ export const chains: Chains = { 338: { name: 'Cronos Testnet', chain: 'CRO', - rpc: [ - 'https://cronos-testnet-3.crypto.org:8545', - 'wss://cronos-testnet-3.crypto.org:8546' - ], - faucets: ['https://cronos.crypto.org/faucet'], - nativeCurrency: { - name: 'Crypto.org Test Coin', - symbol: 'TCRO', - decimals: 18 - }, - infoURL: 'https://cronos.crypto.org', + rpc: ['https://evm-t3.cronos.org'], + faucets: ['https://cronos.org/faucet'], + nativeCurrency: { name: 'Cronos Test Coin', symbol: 'TCRO', decimals: 18 }, + infoURL: 'https://cronos.org', shortName: 'tcro', chainId: 338, networkId: 338, explorers: [ { name: 'Cronos Testnet Explorer', - url: 'https://cronos.crypto.org/explorer/testnet3', + url: 'https://testnet.cronoscan.com', standard: 'none' } ] @@ -2594,6 +3460,25 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'Pulse', symbol: 'PLS', decimals: 18 } }, + 371: { + name: 'Consta Testnet', + chain: 'tCNT', + rpc: ['https://rpc-testnet.theconsta.com'], + faucets: [], + nativeCurrency: { name: 'tCNT', symbol: 'tCNT', decimals: 18 }, + infoURL: 'http://theconsta.com', + shortName: 'tCNT', + chainId: 371, + networkId: 371, + icon: 'constachain', + explorers: [ + { + name: 'blockscout', + url: 'https://explorer-testnet.theconsta.com', + standard: 'EIP3091' + } + ] + }, 385: { name: 'Lisinski', chain: 'CRO', @@ -2605,11 +3490,30 @@ export const chains: Chains = { chainId: 385, networkId: 385 }, + 400: { + name: 'HyperonChain TestNet', + chain: 'HPN', + icon: 'hyperonchain', + rpc: ['https://testnet-rpc.hyperonchain.com'], + faucets: ['https://faucet.hyperonchain.com'], + nativeCurrency: { name: 'HyperonChain', symbol: 'HPN', decimals: 18 }, + infoURL: 'https://docs.hyperonchain.com', + shortName: 'hpn', + chainId: 400, + networkId: 400, + explorers: [ + { + name: 'blockscout', + url: 'https://testnet.hyperonchain.com', + icon: 'hyperonchain', + standard: 'EIP3091' + } + ] + }, 416: { name: 'SX Network Mainnet', chain: 'SX', icon: 'SX', - network: 'mainnet', rpc: ['https://rpc.sx.technology'], faucets: [], nativeCurrency: { name: 'SX Network', symbol: 'SX', decimals: 18 }, @@ -2625,17 +3529,68 @@ export const chains: Chains = { } ] }, + 418: { + name: 'LA Testnet', + chain: 'LATestnet', + rpc: ['https://rpc.testnet.lachain.network'], + faucets: [], + nativeCurrency: { name: 'Test La Coin', symbol: 'TLA', decimals: 18 }, + features: [{ name: 'EIP155' }], + infoURL: '', + shortName: 'latestnet', + chainId: 418, + networkId: 418, + explorers: [] + }, 420: { - name: 'Optimistic Ethereum Testnet Goerli', + name: 'Optimism Goerli Testnet', chain: 'ETH', rpc: ['https://goerli.optimism.io/'], faucets: [], - nativeCurrency: { name: 'Görli Ether', symbol: 'GOR', decimals: 18 }, + nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://optimism.io', shortName: 'ogor', chainId: 420, networkId: 420 }, + 427: { + name: 'Zeeth Chain', + chain: 'ZeethChain', + rpc: ['https://rpc.zeeth.io'], + faucets: [], + nativeCurrency: { name: 'Zeeth Token', symbol: 'ZTH', decimals: 18 }, + infoURL: '', + shortName: 'zeeth', + chainId: 427, + networkId: 427, + explorers: [ + { + name: 'Zeeth Explorer', + url: 'https://explorer.zeeth.io', + standard: 'none' + } + ] + }, + 444: { + name: 'Frenchain Testnet', + chain: 'tfren', + rpc: ['https://rpc-01tn.frenchain.app'], + faucets: [], + nativeCurrency: { name: 'tFREN', symbol: 'FtREN', decimals: 18 }, + infoURL: 'https://frenchain.app', + shortName: 'tFREN', + chainId: 444, + networkId: 444, + icon: 'fren', + explorers: [ + { + name: 'blockscout', + url: 'https://testnet.frenscan.io', + icon: 'fren', + standard: 'EIP3091' + } + ] + }, 499: { name: 'Rupaya', chain: 'RUPX', @@ -2648,6 +3603,44 @@ export const chains: Chains = { networkId: 499, slip44: 499 }, + 500: { + name: 'Camino C-Chain', + chain: 'CAM', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 }, + infoURL: 'https://camino.foundation/', + shortName: 'Camino', + chainId: 500, + networkId: 1000, + icon: 'camino', + explorers: [ + { + name: 'blockexplorer', + url: 'https://explorer.camino.foundation/mainnet', + standard: 'none' + } + ] + }, + 501: { + name: 'Columbus Test Network', + chain: 'CAM', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Camino', symbol: 'CAM', decimals: 18 }, + infoURL: 'https://camino.foundation/', + shortName: 'Columbus', + chainId: 501, + networkId: 1001, + icon: 'camino', + explorers: [ + { + name: 'blockexplorer', + url: 'https://explorer.camino.foundation', + standard: 'none' + } + ] + }, 512: { name: 'Double-A Chain Mainnet', chain: 'AAC', @@ -2695,6 +3688,23 @@ export const chains: Chains = { } ] }, + 516: { + name: 'Gear Zero Network Mainnet', + chain: 'GearZero', + rpc: ['https://gzn.linksme.info'], + faucets: [], + nativeCurrency: { + name: 'Gear Zero Network Native Token', + symbol: 'GZN', + decimals: 18 + }, + infoURL: 'https://token.gearzero.ca/mainnet', + shortName: 'gz-mainnet', + chainId: 516, + networkId: 516, + slip44: 516, + explorers: [] + }, 520: { name: 'XT Smart Chain Mainnet', chain: 'XSC', @@ -2722,6 +3732,39 @@ export const chains: Chains = { } ] }, + 529: { + name: 'Firechain Mainnet', + chain: 'FIRE', + icon: 'firechain', + rpc: ['https://mainnet.rpc1.thefirechain.com'], + faucets: [], + nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 }, + infoURL: 'https://thefirechain.com', + shortName: 'fire', + chainId: 529, + networkId: 529, + explorers: [], + status: 'incubating' + }, + 530: { + name: 'F(x)Core Mainnet Network', + chain: 'Fxcore', + rpc: ['https://fx-json-web3.functionx.io:8545'], + faucets: [], + nativeCurrency: { name: 'Function X', symbol: 'FX', decimals: 18 }, + infoURL: 'https://functionx.io/', + shortName: 'FxCore', + chainId: 530, + networkId: 530, + icon: 'fxcore', + explorers: [ + { + name: 'FunctionX Explorer', + url: 'https://fx-evm.functionx.io', + standard: 'EIP3091' + } + ] + }, 534: { name: 'Candle', chain: 'Candle', @@ -2775,6 +3818,25 @@ export const chains: Chains = { chainId: 558, networkId: 558 }, + 568: { + name: 'Dogechain Testnet', + chain: 'DC', + icon: 'dogechain', + rpc: ['https://rpc-testnet.dogechain.dog'], + faucets: ['https://faucet.dogechain.dog'], + nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 }, + infoURL: 'https://dogechain.dog', + shortName: 'dct', + chainId: 568, + networkId: 568, + explorers: [ + { + name: 'dogechain testnet explorer', + url: 'https://explorer-testnet.dogechain.dog', + standard: 'EIP3091' + } + ] + }, 588: { name: 'Metis Stardust Testnet', chain: 'ETH', @@ -2796,7 +3858,8 @@ export const chains: Chains = { type: 'L2', chain: 'eip155-4', bridges: [{ url: 'https://bridge.metis.io' }] - } + }, + status: 'deprecated' }, 592: { name: 'Astar', @@ -2857,6 +3920,29 @@ export const chains: Chains = { networkId: 597, slip44: 597 }, + 599: { + name: 'Metis Goerli Testnet', + chain: 'ETH', + rpc: ['https://goerli.gateway.metisdevops.link'], + faucets: ['https://goerli.faucet.metisdevops.link'], + nativeCurrency: { name: 'Goerli Metis', symbol: 'METIS', decimals: 18 }, + infoURL: 'https://www.metis.io', + shortName: 'metis-goerli', + chainId: 599, + networkId: 599, + explorers: [ + { + name: 'blockscout', + url: 'https://goerli.explorer.metisdevops.link', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-4', + bridges: [{ url: 'https://testnet-bridge.metis.io' }] + } + }, 600: { name: 'Meshnyan testnet', chain: 'MeshTestChain', @@ -2872,11 +3958,28 @@ export const chains: Chains = { chainId: 600, networkId: 600 }, + 614: { + name: 'Graphlinq Blockchain Mainnet', + chain: 'GLQ Blockchain', + rpc: ['https://glq-dataseed.graphlinq.io'], + faucets: [], + nativeCurrency: { name: 'GLQ', symbol: 'GLQ', decimals: 18 }, + infoURL: 'https://graphlinq.io', + shortName: 'glq', + chainId: 614, + networkId: 614, + explorers: [ + { + name: 'GLQ Explorer', + url: 'https://explorer.graphlinq.io', + standard: 'none' + } + ] + }, 647: { name: 'SX Network Testnet', chain: 'SX', icon: 'SX', - network: 'testnet', rpc: ['https://rpc.toronto.sx.technology'], faucets: ['https://faucet.toronto.sx.technology'], nativeCurrency: { name: 'SX Network', symbol: 'SX', decimals: 18 }, @@ -2892,8 +3995,30 @@ export const chains: Chains = { } ] }, - 666: { - name: 'Pixie Chain Testnet', + 648: { + name: 'Endurance Smart Chain Mainnet', + chain: 'ACE', + rpc: ['https://rpc-endurance.fusionist.io/'], + faucets: [], + nativeCurrency: { + name: 'Endurance Chain Native Token', + symbol: 'ACE', + decimals: 18 + }, + infoURL: 'https://ace.fusionist.io/', + shortName: 'ace', + chainId: 648, + networkId: 648, + explorers: [ + { + name: 'Endurance Scan', + url: 'https://explorer.endurance.fusionist.io', + standard: 'EIP3091' + } + ] + }, + 666: { + name: 'Pixie Chain Testnet', chain: 'PixieChain', rpc: [ 'https://http-testnet.chain.pixie.xyz', @@ -2977,24 +4102,86 @@ export const chains: Chains = { ] }, 721: { - name: 'Factory 127 Testnet', - chain: 'FETH', - rpc: [], + name: 'Lycan Chain', + chain: 'LYC', + rpc: ['https://rpc.lycanchain.com/'], faucets: [], - nativeCurrency: { name: 'Factory 127 Token', symbol: 'FETH', decimals: 18 }, - infoURL: 'https://www.factory127.com', - shortName: 'tfeth', + nativeCurrency: { name: 'Lycan', symbol: 'LYC', decimals: 18 }, + infoURL: 'https://lycanchain.com', + shortName: 'LYC', chainId: 721, networkId: 721, - slip44: 721 + icon: 'lycanchain', + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.lycanchain.com', + standard: 'EIP3091' + } + ] + }, + 740: { + name: 'Canto Testnet', + chain: 'Canto Tesnet', + rpc: ['https://eth.plexnode.wtf/'], + faucets: [], + nativeCurrency: { name: 'Canto', symbol: 'CANTO', decimals: 18 }, + infoURL: 'https://canto.io', + shortName: 'tcanto', + chainId: 740, + networkId: 740, + explorers: [ + { + name: 'Canto Tesnet Explorer (Neobase)', + url: 'http://testnet-explorer.canto.neobase.one', + standard: 'none' + } + ] + }, + 741: { + name: 'Vention Smart Chain Testnet', + chain: 'VSCT', + icon: 'ventionTestnet', + rpc: ['https://node-testnet.vention.network'], + faucets: ['https://faucet.vention.network'], + nativeCurrency: { name: 'VNT', symbol: 'VNT', decimals: 18 }, + infoURL: 'https://testnet.ventionscan.io', + shortName: 'vsct', + chainId: 741, + networkId: 741, + explorers: [ + { + name: 'ventionscan', + url: 'https://testnet.ventionscan.io', + standard: 'EIP3091' + } + ] + }, + 766: { + name: 'QL1', + chain: 'QOM', + status: 'incubating', + rpc: ['https://rpc.qom.one'], + faucets: [], + nativeCurrency: { name: 'Shiba Predator', symbol: 'QOM', decimals: 18 }, + infoURL: 'https://qom.one', + shortName: 'qom', + chainId: 766, + networkId: 766, + icon: 'qom', + explorers: [ + { + name: 'QL1 Mainnet Explorer', + url: 'https://mainnet.qom.one', + icon: 'qom', + standard: 'EIP3091' + } + ] }, 776: { name: 'OpenChain Testnet', chain: 'OpenChain Testnet', - rpc: [ - 'http://mainnet.openchain.info:8545', - 'https://mainnet1.openchain.info' - ], + rpc: [], faucets: ['https://faucet.openchain.info/'], nativeCurrency: { name: 'Openchain Testnet', symbol: 'TOPC', decimals: 18 }, infoURL: 'https://testnet.openchain.info/', @@ -3035,7 +4222,6 @@ export const chains: Chains = { 788: { name: 'Aerochain Testnet', chain: 'Aerochain', - network: 'testnet', rpc: ['https://testnet-rpc.aerochain.id/'], faucets: ['https://faucet.aerochain.id/'], nativeCurrency: { @@ -3055,6 +4241,25 @@ export const chains: Chains = { } ] }, + 800: { + name: 'Lucid Blockchain', + chain: 'Lucid Blockchain', + icon: 'lucid', + rpc: ['https://rpc.lucidcoin.io'], + faucets: ['https://faucet.lucidcoin.io'], + nativeCurrency: { name: 'LUCID', symbol: 'LUCID', decimals: 18 }, + infoURL: 'https://lucidcoin.io', + shortName: 'LUCID', + chainId: 800, + networkId: 800, + explorers: [ + { + name: 'Lucid Explorer', + url: 'https://explorer.lucidcoin.io', + standard: 'none' + } + ] + }, 803: { name: 'Haic', chain: 'Haic', @@ -3066,16 +4271,56 @@ export const chains: Chains = { chainId: 803, networkId: 803 }, - 820: { - name: 'Callisto Mainnet', - chain: 'CLO', - rpc: ['https://clo-geth.0xinfra.com'], + 808: { + name: 'Portal Fantasy Chain Test', + chain: 'PF', + icon: 'pf', + rpc: ['https://subnets.avax.network/portal-fantasy/testnet/rpc'], faucets: [], nativeCurrency: { - name: 'Callisto Mainnet Ether', - symbol: 'CLO', + name: 'Portal Fantasy Token', + symbol: 'PFT', decimals: 18 }, + infoURL: 'https://portalfantasy.io', + shortName: 'PFTEST', + chainId: 808, + networkId: 808, + explorers: [] + }, + 813: { + name: 'Qitmeer', + chain: 'MEER', + rpc: [ + 'https://evm-dataseed1.meerscan.io', + 'https://evm-dataseed2.meerscan.io', + 'https://evm-dataseed3.meerscan.io', + 'https://evm-dataseed.meerscan.com', + 'https://evm-dataseed1.meerscan.com', + 'https://evm-dataseed2.meerscan.com' + ], + faucets: [], + nativeCurrency: { name: 'Qitmeer', symbol: 'MEER', decimals: 18 }, + infoURL: 'https://github.com/Qitmeer', + shortName: 'meer', + chainId: 813, + networkId: 813, + slip44: 813, + icon: 'meer', + explorers: [ + { + name: 'meerscan', + url: 'https://evm.meerscan.com', + standard: 'none' + } + ] + }, + 820: { + name: 'Callisto Mainnet', + chain: 'CLO', + rpc: ['https://rpc.callisto.network/'], + faucets: [], + nativeCurrency: { name: 'Callisto', symbol: 'CLO', decimals: 18 }, infoURL: 'https://callisto.network', shortName: 'clo', chainId: 820, @@ -3083,7 +4328,7 @@ export const chains: Chains = { slip44: 820 }, 821: { - name: 'Callisto Testnet', + name: 'Callisto Testnet Deprecated', chain: 'CLO', rpc: [], faucets: [], @@ -3095,7 +4340,124 @@ export const chains: Chains = { infoURL: 'https://callisto.network', shortName: 'tclo', chainId: 821, - networkId: 2 + networkId: 2, + status: 'deprecated' + }, + 841: { + name: 'Taraxa Mainnet', + chain: 'Tara', + icon: 'taraxa', + rpc: ['https://rpc.mainnet.taraxa.io/'], + faucets: [], + nativeCurrency: { name: 'Tara', symbol: 'TARA', decimals: 18 }, + infoURL: 'https://taraxa.io', + shortName: 'tara', + chainId: 841, + networkId: 841, + explorers: [ + { + name: 'Taraxa Explorer', + url: 'https://explorer.mainnet.taraxa.io', + standard: 'none' + } + ] + }, + 842: { + name: 'Taraxa Testnet', + chain: 'Tara', + icon: 'taraxa', + rpc: ['https://rpc.testnet.taraxa.io/'], + faucets: [], + nativeCurrency: { name: 'Tara', symbol: 'TARA', decimals: 18 }, + infoURL: 'https://taraxa.io', + shortName: 'taratest', + chainId: 842, + networkId: 842, + explorers: [ + { + name: 'Taraxa Explorer', + url: 'https://explorer.testnet.taraxa.io', + standard: 'none' + } + ] + }, + 859: { + name: 'Zeeth Chain Dev', + chain: 'ZeethChainDev', + rpc: ['https://rpc.dev.zeeth.io'], + faucets: [], + nativeCurrency: { name: 'Zeeth Token', symbol: 'ZTH', decimals: 18 }, + infoURL: '', + shortName: 'zeethdev', + chainId: 859, + networkId: 859, + explorers: [ + { + name: 'Zeeth Explorer Dev', + url: 'https://explorer.dev.zeeth.io', + standard: 'none' + } + ] + }, + 868: { + name: 'Fantasia Chain Mainnet', + chain: 'FSC', + rpc: [ + 'https://mainnet-data1.fantasiachain.com/', + 'https://mainnet-data2.fantasiachain.com/', + 'https://mainnet-data3.fantasiachain.com/' + ], + faucets: [], + nativeCurrency: { name: 'FST', symbol: 'FST', decimals: 18 }, + infoURL: 'https://fantasia.technology/', + shortName: 'FSCMainnet', + chainId: 868, + networkId: 868, + explorers: [ + { + name: 'FSCScan', + url: 'https://explorer.fantasiachain.com', + standard: 'EIP3091' + } + ] + }, + 876: { + name: 'Bandai Namco Research Verse Mainnet', + chain: 'Bandai Namco Research Verse', + icon: 'bnken', + rpc: ['https://rpc.main.oasvrs.bnken.net'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://www.bandainamco-mirai.com/en/', + shortName: 'BNKEN', + chainId: 876, + networkId: 876, + explorers: [ + { + name: 'Bandai Namco Research Verse Explorer', + url: 'https://explorer.main.oasvrs.bnken.net', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-248' } + }, + 877: { + name: 'Dexit Network', + chain: 'DXT', + rpc: ['https://dxt.dexit.network'], + faucets: ['https://faucet.dexit.network'], + nativeCurrency: { name: 'Dexit network', symbol: 'DXT', decimals: 18 }, + infoURL: 'https://dexit.network', + shortName: 'DXT', + chainId: 877, + networkId: 877, + explorers: [ + { + name: 'dxtscan', + url: 'https://dxtscan.com', + standard: 'EIP3091' + } + ] }, 880: { name: 'Ambros Chain Mainnet', @@ -3130,7 +4492,6 @@ export const chains: Chains = { 900: { name: 'Garizon Testnet Stage0', chain: 'GAR', - network: 'testnet', icon: 'garizon', rpc: ['https://s0-testnet.garizon.net/rpc'], faucets: ['https://faucet-testnet.garizon.com'], @@ -3151,7 +4512,6 @@ export const chains: Chains = { 901: { name: 'Garizon Testnet Stage1', chain: 'GAR', - network: 'testnet', icon: 'garizon', rpc: ['https://s1-testnet.garizon.net/rpc'], faucets: ['https://faucet-testnet.garizon.com'], @@ -3173,7 +4533,6 @@ export const chains: Chains = { 902: { name: 'Garizon Testnet Stage2', chain: 'GAR', - network: 'testnet', icon: 'garizon', rpc: ['https://s2-testnet.garizon.net/rpc'], faucets: ['https://faucet-testnet.garizon.com'], @@ -3195,7 +4554,6 @@ export const chains: Chains = { 903: { name: 'Garizon Testnet Stage3', chain: 'GAR', - network: 'testnet', icon: 'garizon', rpc: ['https://s3-testnet.garizon.net/rpc'], faucets: ['https://faucet-testnet.garizon.com'], @@ -3214,6 +4572,38 @@ export const chains: Chains = { ], parent: { chain: 'eip155-900', type: 'shard' } }, + 909: { + name: 'Portal Fantasy Chain', + chain: 'PF', + icon: 'pf', + rpc: [], + faucets: [], + nativeCurrency: { + name: 'Portal Fantasy Token', + symbol: 'PFT', + decimals: 18 + }, + infoURL: 'https://portalfantasy.io', + shortName: 'PF', + chainId: 909, + networkId: 909, + explorers: [], + status: 'incubating' + }, + 917: { + name: 'Rinia Testnet', + chain: 'FIRE', + icon: 'rinia', + rpc: ['https://rinia.rpc1.thefirechain.com'], + faucets: ['https://faucet.thefirechain.com'], + nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 }, + infoURL: 'https://thefirechain.com', + shortName: 'tfire', + chainId: 917, + networkId: 917, + explorers: [], + status: 'incubating' + }, 940: { name: 'PulseChain Testnet', shortName: 'tpls', @@ -3232,7 +4622,6 @@ export const chains: Chains = { name: 'PulseChain Testnet v2b', shortName: 't2bpls', chain: 't2bPLS', - network: 'testnet-2b', chainId: 941, networkId: 941, infoURL: 'https://pulsechain.com/', @@ -3247,7 +4636,6 @@ export const chains: Chains = { name: 'PulseChain Testnet v3', shortName: 't3pls', chain: 't3PLS', - network: 'testnet-3', chainId: 942, networkId: 942, infoURL: 'https://pulsechain.com/', @@ -3258,6 +4646,54 @@ export const chains: Chains = { faucets: ['https://faucet.v3.testnet.pulsechain.com/'], nativeCurrency: { name: 'Test Pulse', symbol: 'tPLS', decimals: 18 } }, + 956: { + name: 'muNode Testnet', + chain: 'munode', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://munode.dev/', + shortName: 'munode', + chainId: 956, + networkId: 956 + }, + 970: { + name: 'Oort Mainnet', + chain: 'Oort Mainnet', + rpc: ['https://rpc.oortech.com'], + faucets: [], + nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 }, + infoURL: 'https://oortech.com', + shortName: 'ccn', + chainId: 970, + networkId: 970, + icon: 'ccn' + }, + 971: { + name: 'Oort Huygens', + chain: 'Huygens', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 }, + infoURL: 'https://oortech.com', + shortName: 'Huygens', + chainId: 971, + networkId: 971, + icon: 'ccn' + }, + 972: { + name: 'Oort Ascraeus', + title: 'Oort Ascraeus', + chain: 'Ascraeus', + rpc: ['https://ascraeus-rpc.oortech.com'], + faucets: [], + nativeCurrency: { name: 'Oort', symbol: 'CCNA', decimals: 18 }, + infoURL: 'https://oortech.com', + shortName: 'Ascraeus', + chainId: 972, + networkId: 972, + icon: 'ccn' + }, 977: { name: 'Nepal Blockchain Network', chain: 'YETI', @@ -3280,7 +4716,7 @@ export const chains: Chains = { name: 'TOP Mainnet EVM', chain: 'TOP', icon: 'top', - rpc: ['ethapi.topnetwork.org'], + rpc: ['https://ethapi.topnetwork.org'], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://www.topnetwork.org/', @@ -3295,11 +4731,31 @@ export const chains: Chains = { } ] }, + 985: { + name: 'Memo Smart Chain Mainnet', + chain: 'MEMO', + rpc: ['https://chain.metamemo.one:8501', 'wss://chain.metamemo.one:16801'], + faucets: ['https://faucet.metamemo.one/'], + nativeCurrency: { name: 'Memo', symbol: 'CMEMO', decimals: 18 }, + infoURL: 'www.memolabs.org', + shortName: 'memochain', + chainId: 985, + networkId: 985, + icon: 'memo', + explorers: [ + { + name: 'Memo Mainnet Explorer', + url: 'https://scan.metamemo.one:8080', + icon: 'memo', + standard: 'EIP3091' + } + ] + }, 989: { name: 'TOP Mainnet', chain: 'TOP', icon: 'top', - rpc: ['topapi.topnetwork.org'], + rpc: [], faucets: [], nativeCurrency: { name: 'TOP', symbol: 'TOP', decimals: 6 }, infoURL: 'https://www.topnetwork.org/', @@ -3349,6 +4805,25 @@ export const chains: Chains = { chainId: 999, networkId: 999 }, + 1000: { + name: 'GTON Mainnet', + chain: 'GTON', + rpc: ['https://rpc.gton.network/'], + faucets: [], + nativeCurrency: { name: 'GCD', symbol: 'GCD', decimals: 18 }, + infoURL: 'https://gton.capital', + shortName: 'gton', + chainId: 1000, + networkId: 1000, + explorers: [ + { + name: 'GTON Network Explorer', + url: 'https://explorer.gton.network', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-1' } + }, 1001: { name: 'Klaytn Testnet Baobab', chain: 'KLAY', @@ -3360,6 +4835,27 @@ export const chains: Chains = { chainId: 1001, networkId: 1001 }, + 1004: { + name: 'T-EKTA', + title: 'EKTA Testnet T-EKTA', + chain: 'T-EKTA', + rpc: ['https://test.ekta.io:8545'], + faucets: [], + nativeCurrency: { name: 'T-EKTA', symbol: 'T-EKTA', decimals: 18 }, + infoURL: 'https://www.ekta.io', + shortName: 't-ekta', + chainId: 1004, + networkId: 1004, + icon: 'ekta', + explorers: [ + { + name: 'test-ektascan', + url: 'https://test.ektascan.io', + icon: 'ekta', + standard: 'EIP3091' + } + ] + }, 1007: { name: 'Newton Testnet', chain: 'NEW', @@ -3374,7 +4870,6 @@ export const chains: Chains = { 1008: { name: 'Eurus Mainnet', chain: 'EUN', - network: 'eurus', rpc: ['https://mainnet.eurus.network/'], faucets: [], nativeCurrency: { name: 'Eurus', symbol: 'EUN', decimals: 18 }, @@ -3469,7 +4964,6 @@ export const chains: Chains = { 1030: { name: 'Conflux eSpace', chain: 'Conflux', - network: 'mainnet', rpc: ['https://evm.confluxrpc.com'], faucets: [], nativeCurrency: { name: 'CFX', symbol: 'CFX', decimals: 18 }, @@ -3486,6 +4980,64 @@ export const chains: Chains = { } ] }, + 1031: { + name: 'Proxy Network Testnet', + chain: 'Proxy Network', + rpc: ['http://128.199.94.183:8041'], + faucets: [], + nativeCurrency: { name: 'PRX', symbol: 'PRX', decimals: 18 }, + infoURL: 'https://theproxy.network', + shortName: 'prx', + chainId: 1031, + networkId: 1031, + explorers: [ + { + name: 'proxy network testnet', + url: 'http://testnet-explorer.theproxy.network', + standard: 'EIP3091' + } + ] + }, + 1038: { + name: 'Bronos Testnet', + chain: 'Bronos', + rpc: ['https://evm-testnet.bronos.org'], + faucets: ['https://faucet.bronos.org'], + nativeCurrency: { name: 'tBRO', symbol: 'tBRO', decimals: 18 }, + infoURL: 'https://bronos.org', + shortName: 'bronos-testnet', + chainId: 1038, + networkId: 1038, + icon: 'bronos', + explorers: [ + { + name: 'Bronos Testnet Explorer', + url: 'https://tbroscan.bronos.org', + standard: 'none', + icon: 'bronos' + } + ] + }, + 1039: { + name: 'Bronos Mainnet', + chain: 'Bronos', + rpc: [], + faucets: [], + nativeCurrency: { name: 'BRO', symbol: 'BRO', decimals: 18 }, + infoURL: 'https://bronos.org', + shortName: 'bronos-mainnet', + chainId: 1039, + networkId: 1039, + icon: 'bronos', + explorers: [ + { + name: 'Bronos Explorer', + url: 'https://broscan.bronos.org', + standard: 'none', + icon: 'bronos' + } + ] + }, 1088: { name: 'Metis Andromeda Mainnet', chain: 'ETH', @@ -3509,6 +5061,176 @@ export const chains: Chains = { bridges: [{ url: 'https://bridge.metis.io' }] } }, + 1099: { + name: 'MOAC mainnet', + chain: 'MOAC', + rpc: [], + faucets: [], + nativeCurrency: { name: 'MOAC', symbol: 'mc', decimals: 18 }, + infoURL: 'https://moac.io', + shortName: 'moac', + chainId: 1099, + networkId: 1099, + slip44: 314, + explorers: [ + { + name: 'moac explorer', + url: 'https://explorer.moac.io', + standard: 'none' + } + ] + }, + 1111: { + name: 'WEMIX3.0 Mainnet', + chain: 'WEMIX', + rpc: ['https://api.wemix.com', 'wss://ws.wemix.com'], + faucets: [], + nativeCurrency: { name: 'WEMIX', symbol: 'WEMIX', decimals: 18 }, + infoURL: 'https://wemix.com', + shortName: 'wemix', + chainId: 1111, + networkId: 1111, + explorers: [ + { + name: 'WEMIX Block Explorer', + url: 'https://explorer.wemix.com', + standard: 'EIP3091' + } + ] + }, + 1112: { + name: 'WEMIX3.0 Testnet', + chain: 'TWEMIX', + rpc: ['https://api.test.wemix.com', 'wss://ws.test.wemix.com'], + faucets: ['https://wallet.test.wemix.com/faucet'], + nativeCurrency: { name: 'TestnetWEMIX', symbol: 'tWEMIX', decimals: 18 }, + infoURL: 'https://wemix.com', + shortName: 'twemix', + chainId: 1112, + networkId: 1112, + explorers: [ + { + name: 'WEMIX Testnet Microscope', + url: 'https://microscope.test.wemix.com', + standard: 'EIP3091' + } + ] + }, + 1115: { + name: 'Core Blockchain Testnet', + chain: 'Core', + icon: 'core', + rpc: ['https://rpc.test.btcs.network/'], + faucets: ['https://scan.test.btcs.network/faucet'], + nativeCurrency: { + name: 'Core Blockchain Testnet Native Token', + symbol: 'tCORE', + decimals: 18 + }, + infoURL: 'https://www.coredao.org', + shortName: 'tcore', + chainId: 1115, + networkId: 1115, + explorers: [ + { + name: 'Core Scan Testnet', + url: 'https://scan.test.btcs.network', + icon: 'core', + standard: 'EIP3091' + } + ] + }, + 1116: { + name: 'Core Blockchain Mainnet', + chain: 'Core', + icon: 'core', + rpc: ['https://rpc.coredao.org/', 'https://rpc-core.icecreamswap.com'], + faucets: [], + nativeCurrency: { + name: 'Core Blockchain Native Token', + symbol: 'CORE', + decimals: 18 + }, + infoURL: 'https://www.coredao.org', + shortName: 'core', + chainId: 1116, + networkId: 1116, + explorers: [ + { + name: 'Core Scan', + url: 'https://scan.coredao.org', + icon: 'core', + standard: 'EIP3091' + } + ] + }, + 1117: { + name: 'Dogcoin Mainnet', + chain: 'DOGS', + icon: 'dogs', + rpc: ['https://mainnet-rpc.dogcoin.me'], + faucets: ['https://faucet.dogcoin.network'], + nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 }, + infoURL: 'https://dogcoin.network', + shortName: 'DOGSm', + chainId: 1117, + networkId: 1117, + explorers: [ + { + name: 'Dogcoin', + url: 'https://explorer.dogcoin.network', + standard: 'EIP3091' + } + ] + }, + 1130: { + name: 'DeFiChain EVM Network Mainnet', + chain: 'defichain-evm', + status: 'incubating', + rpc: [], + faucets: [], + nativeCurrency: { name: 'DeFiChain', symbol: 'DFI', decimals: 18 }, + infoURL: 'https://meta.defichain.com/', + shortName: 'DFI', + chainId: 1130, + networkId: 1130, + slip44: 1130, + icon: 'defichain-network', + explorers: [] + }, + 1131: { + name: 'DeFiChain EVM Network Testnet', + chain: 'defichain-evm-testnet', + status: 'incubating', + rpc: [], + faucets: [], + nativeCurrency: { name: 'DeFiChain', symbol: 'DFI', decimals: 18 }, + infoURL: 'https://meta.defichain.com/', + shortName: 'DFI-T', + chainId: 1131, + networkId: 1131, + icon: 'defichain-network', + explorers: [] + }, + 1138: { + name: 'AmStar Testnet', + chain: 'AmStar', + icon: 'amstar', + rpc: ['https://testnet-rpc.amstarscan.com'], + faucets: [], + nativeCurrency: { name: 'SINSO', symbol: 'SINSO', decimals: 18 }, + infoURL: 'https://sinso.io', + shortName: 'ASARt', + chainId: 1138, + networkId: 1138, + explorers: [ + { + name: 'amstarscan-testnet', + url: 'https://testnet.amstarscan.com', + standard: 'EIP3091' + } + ] + }, 1139: { name: 'MathChain', chain: 'MATH', @@ -3534,10 +5256,34 @@ export const chains: Chains = { chainId: 1140, networkId: 1140 }, + 1177: { + name: 'Smart Host Teknoloji TESTNET', + chain: 'SHT', + rpc: ['https://s2.tl.web.tr:4041'], + faucets: [], + nativeCurrency: { + name: 'Smart Host Teknoloji TESTNET', + symbol: 'tSHT', + decimals: 18 + }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://smart-host.com.tr', + shortName: 'sht', + chainId: 1177, + networkId: 1177, + icon: 'smarthost', + explorers: [ + { + name: 'Smart Host Teknoloji TESTNET Explorer', + url: 'https://s2.tl.web.tr:4000', + icon: 'smarthost', + standard: 'EIP3091' + } + ] + }, 1197: { name: 'Iora Chain', chain: 'IORA', - network: 'iorachain', icon: 'iorachain', rpc: ['https://dataseed.iorachain.com'], faucets: [], @@ -3557,7 +5303,6 @@ export const chains: Chains = { 1201: { name: 'Evanesco Testnet', chain: 'Evanesco Testnet', - network: 'avis', rpc: ['https://seed5.evanesco.org:8547'], faucets: [], nativeCurrency: { name: 'AVIS', symbol: 'AVIS', decimals: 18 }, @@ -3605,7 +5350,6 @@ export const chains: Chains = { 1214: { name: 'EnterChain Mainnet', chain: 'ENTER', - network: 'mainnet', rpc: ['https://tapi.entercoin.net/'], faucets: [], nativeCurrency: { name: 'EnterCoin', symbol: 'ENTER', decimals: 18 }, @@ -3623,25 +5367,152 @@ export const chains: Chains = { } ] }, - 1280: { - name: 'HALO Mainnet', - chain: 'HALO', - rpc: ['https://nodes.halo.land'], + 1229: { + name: 'Exzo Network Mainnet', + chain: 'EXZO', + icon: 'exzo', + rpc: ['https://mainnet.exzo.technology'], faucets: [], - nativeCurrency: { name: 'HALO', symbol: 'HO', decimals: 18 }, - infoURL: 'https://halo.land/#/', - shortName: 'HO', - chainId: 1280, - networkId: 1280, + nativeCurrency: { name: 'Exzo', symbol: 'XZO', decimals: 18 }, + infoURL: 'https://exzo.network', + shortName: 'xzo', + chainId: 1229, + networkId: 1229, explorers: [ { - name: 'HALOexplorer', - url: 'https://browser.halo.land', - standard: 'none' + name: 'blockscout', + url: 'https://exzoscan.io', + standard: 'EIP3091' } ] }, - 1284: { + 1230: { + name: 'Ultron Testnet', + chain: 'Ultron', + icon: 'ultron', + rpc: ['https://ultron-dev.io'], + faucets: [], + nativeCurrency: { name: 'Ultron', symbol: 'ULX', decimals: 18 }, + infoURL: 'https://ultron.foundation', + shortName: 'UltronTestnet', + chainId: 1230, + networkId: 1230, + explorers: [ + { + name: 'Ultron Testnet Explorer', + url: 'https://explorer.ultron-dev.io', + icon: 'ultron', + standard: 'none' + } + ] + }, + 1231: { + name: 'Ultron Mainnet', + chain: 'Ultron', + icon: 'ultron', + rpc: ['https://ultron-rpc.net'], + faucets: [], + nativeCurrency: { name: 'Ultron', symbol: 'ULX', decimals: 18 }, + infoURL: 'https://ultron.foundation', + shortName: 'UtronMainnet', + chainId: 1231, + networkId: 1231, + explorers: [ + { + name: 'Ultron Explorer', + url: 'https://ulxscan.com', + icon: 'ultron', + standard: 'none' + } + ] + }, + 1234: { + name: 'Step Network', + title: 'Step Main Network', + chain: 'STEP', + icon: 'step', + rpc: ['https://rpc.step.network'], + faucets: [], + nativeCurrency: { name: 'FITFI', symbol: 'FITFI', decimals: 18 }, + infoURL: 'https://step.network', + shortName: 'step', + chainId: 1234, + networkId: 1234, + explorers: [ + { + name: 'StepScan', + url: 'https://stepscan.io', + icon: 'step', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-43114', + bridges: [{ url: 'https://bridge.step.network' }] + } + }, + 1246: { + name: 'OM Platform Mainnet', + chain: 'omplatform', + rpc: ['https://rpc-cnx.omplatform.com/'], + faucets: [], + nativeCurrency: { name: 'OMCOIN', symbol: 'OM', decimals: 18 }, + infoURL: 'https://omplatform.com/', + shortName: 'om', + chainId: 1246, + networkId: 1246, + explorers: [ + { + name: 'OMSCAN - Expenter', + url: 'https://omscan.omplatform.com', + standard: 'none' + } + ] + }, + 1252: { + name: 'CIC Chain Testnet', + chain: 'CICT', + rpc: ['https://testapi.cicscan.com'], + faucets: ['https://cicfaucet.com'], + nativeCurrency: { + name: 'Crazy Internet Coin', + symbol: 'CICT', + decimals: 18 + }, + infoURL: 'https://www.cicchain.net', + shortName: 'CICT', + chainId: 1252, + networkId: 1252, + icon: 'cicchain', + explorers: [ + { + name: 'CICscan', + url: 'https://testnet.cicscan.com', + icon: 'cicchain', + standard: 'EIP3091' + } + ] + }, + 1280: { + name: 'HALO Mainnet', + chain: 'HALO', + rpc: ['https://nodes.halo.land'], + faucets: [], + nativeCurrency: { name: 'HALO', symbol: 'HO', decimals: 18 }, + infoURL: 'https://halo.land/#/', + shortName: 'HO', + chainId: 1280, + networkId: 1280, + explorers: [ + { + name: 'HALOexplorer', + url: 'https://browser.halo.land', + standard: 'none' + } + ] + }, + 1284: { name: 'Moonbeam', chain: 'MOON', rpc: ['https://rpc.api.moonbeam.network', 'wss://wss.api.moonbeam.network'], @@ -3727,18 +5598,323 @@ export const chains: Chains = { chainId: 1288, networkId: 1288 }, + 1294: { + name: 'Bobabeam', + chain: 'Bobabeam', + rpc: [ + 'https://bobabeam.boba.network', + 'wss://wss.bobabeam.boba.network', + 'https://replica.bobabeam.boba.network', + 'wss://replica-wss.bobabeam.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'Bobabeam', + chainId: 1294, + networkId: 1294, + explorers: [ + { + name: 'Bobabeam block explorer', + url: 'https://blockexplorer.bobabeam.boba.network', + standard: 'none' + } + ] + }, + 1297: { + name: 'Bobabase Testnet', + chain: 'Bobabase Testnet', + rpc: [ + 'https://bobabase.boba.network', + 'wss://wss.bobabase.boba.network', + 'https://replica.bobabase.boba.network', + 'wss://replica-wss.bobabase.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'Bobabase', + chainId: 1297, + networkId: 1297, + explorers: [ + { + name: 'Bobabase block explorer', + url: 'https://blockexplorer.bobabase.boba.network', + standard: 'none' + } + ] + }, + 1311: { + name: 'Dos Fuji Subnet', + chain: 'DOS', + rpc: ['https://test.doschain.com/jsonrpc'], + faucets: [], + nativeCurrency: { name: 'Dos Native Token', symbol: 'DOS', decimals: 18 }, + infoURL: 'http://doschain.io/', + shortName: 'DOS', + chainId: 1311, + networkId: 1311, + explorers: [ + { + name: 'dos-testnet', + url: 'https://test.doscan.io', + standard: 'EIP3091' + } + ] + }, + 1314: { + name: 'Alyx Mainnet', + chain: 'ALYX', + rpc: ['https://rpc.alyxchain.com'], + faucets: [], + nativeCurrency: { + name: 'Alyx Chain Native Token', + symbol: 'ALYX', + decimals: 18 + }, + infoURL: 'https://www.alyxchain.com', + shortName: 'alyx', + chainId: 1314, + networkId: 1314, + explorers: [ + { + name: 'alyxscan', + url: 'https://www.alyxscan.com', + standard: 'EIP3091' + } + ], + icon: 'alyx' + }, + 1319: { + name: 'Aitd Mainnet', + chain: 'AITD', + icon: 'aitd', + rpc: ['https://walletrpc.aitd.io', 'https://node.aitd.io'], + faucets: [], + nativeCurrency: { name: 'AITD Mainnet', symbol: 'AITD', decimals: 18 }, + infoURL: 'https://www.aitd.io/', + shortName: 'aitd', + chainId: 1319, + networkId: 1319, + explorers: [ + { + name: 'AITD Chain Explorer Mainnet', + url: 'https://aitd-explorer-new.aitd.io', + standard: 'EIP3091' + } + ] + }, + 1320: { + name: 'Aitd Testnet', + chain: 'AITD', + icon: 'aitd', + rpc: ['http://http-testnet.aitd.io'], + faucets: ['https://aitd-faucet-pre.aitdcoin.com/'], + nativeCurrency: { name: 'AITD Testnet', symbol: 'AITD', decimals: 18 }, + infoURL: 'https://www.aitd.io/', + shortName: 'aitdtestnet', + chainId: 1320, + networkId: 1320, + explorers: [ + { + name: 'AITD Chain Explorer Testnet', + url: 'https://block-explorer-testnet.aitd.io', + standard: 'EIP3091' + } + ] + }, 1337: { - name: 'CENNZnet old', - chain: 'CENNZnet', - rpc: [], + name: 'Geth Testnet', + title: 'Go Ethereum (Geth) Private Testnet', + chain: 'ETH', + rpc: ['http://127.0.0.1:8545'], faucets: [], - nativeCurrency: { name: 'CPAY', symbol: 'CPAY', decimals: 18 }, - infoURL: 'https://cennz.net', - shortName: 'cennz-old', + nativeCurrency: { name: 'Geth Testnet Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://geth.ethereum.org', + shortName: 'geth', chainId: 1337, - networkId: 1337, + networkId: 1337 + }, + 1338: { + name: 'Elysium Testnet', + title: + 'An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged', + chain: 'Elysium', + rpc: ['https://elysium-test-rpc.vulcanforged.com'], + faucets: [], + nativeCurrency: { name: 'LAVA', symbol: 'LAVA', decimals: 18 }, + infoURL: 'https://elysiumscan.vulcanforged.com', + shortName: 'ELST', + chainId: 1338, + networkId: 1338, + explorers: [ + { + name: 'Elysium testnet explorer', + url: 'https://elysium-explorer.vulcanforged.com', + standard: 'none' + } + ] + }, + 1339: { + name: 'Elysium Mainnet', + title: + 'An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged', + chain: 'Elysium', + rpc: ['https://rpc.elysiumchain.tech/'], + faucets: [], + nativeCurrency: { name: 'LAVA', symbol: 'LAVA', decimals: 18 }, + infoURL: 'https://elysiumscan.vulcanforged.com', + shortName: 'ELSM', + chainId: 1339, + networkId: 1339, + explorers: [ + { + name: 'Elysium mainnet explorer', + url: 'https://explorer.elysiumchain.tech', + standard: 'none' + } + ] + }, + 1353: { + name: 'CIC Chain Mainnet', + chain: 'CIC', + rpc: ['https://xapi.cicscan.com'], + faucets: [], + nativeCurrency: { + name: 'Crazy Internet Coin', + symbol: 'CIC', + decimals: 18 + }, + infoURL: 'https://www.cicchain.net', + shortName: 'CIC', + chainId: 1353, + networkId: 1353, + icon: 'cicchain', + explorers: [ + { + name: 'CICscan', + url: 'https://cicscan.com', + icon: 'cicchain', + standard: 'EIP3091' + } + ] + }, + 1388: { + name: 'AmStar Mainnet', + chain: 'AmStar', + icon: 'amstar', + rpc: ['https://mainnet-rpc.amstarscan.com'], + faucets: [], + nativeCurrency: { name: 'SINSO', symbol: 'SINSO', decimals: 18 }, + infoURL: 'https://sinso.io', + shortName: 'ASAR', + chainId: 1388, + networkId: 1388, + explorers: [ + { + name: 'amstarscan', + url: 'https://mainnet.amstarscan.com', + standard: 'EIP3091' + } + ] + }, + 1402: { + name: 'Polygon zkEVM Testnet old', + title: 'Polygon zkEVM Testnet', + chain: 'Polygon', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://polygon.technology/solutions/polygon-zkevm/', + shortName: 'zkevmtest', + chainId: 1402, + networkId: 1402, + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.public.zkevm-test.net', + standard: 'EIP3091' + } + ], + status: 'deprecated' + }, + 1422: { + name: 'Polygon zkEVM Testnet Pre Audit-Upgraded', + title: 'Polygon zkEVM Testnet Pre Audit-Upgraded', + chain: 'Polygon', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://polygon.technology/solutions/polygon-zkevm/', + shortName: 'testnet-zkEVM-mango-pre-audit-upgraded', + chainId: 1422, + networkId: 1422, + explorers: [ + { + name: 'Polygon zkEVM explorer', + url: 'https://explorer.public.zkevm-test.net', + standard: 'EIP3091' + } + ], status: 'deprecated' }, + 1433: { + name: 'Rikeza Network Mainnet', + title: 'Rikeza Network Mainnet', + chain: 'Rikeza', + rpc: ['https://rpc.rikscan.com'], + faucets: [], + nativeCurrency: { name: 'Rikeza', symbol: 'RIK', decimals: 18 }, + infoURL: 'https://rikeza.io', + shortName: 'RIK', + chainId: 1433, + networkId: 1433, + explorers: [ + { + name: 'Rikeza Blockchain explorer', + url: 'https://rikscan.com', + standard: 'EIP3091' + } + ] + }, + 1442: { + name: 'Polygon zkEVM Testnet', + title: 'Polygon zkEVM Testnet', + chain: 'Polygon', + rpc: ['https://rpc.public.zkevm-test.net'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://polygon.technology/solutions/polygon-zkevm/', + shortName: 'testnet-zkEVM-mango', + chainId: 1442, + networkId: 1442, + explorers: [ + { + name: 'Polygon zkEVM explorer', + url: 'https://explorer.public.zkevm-test.net', + standard: 'EIP3091' + } + ] + }, + 1455: { + name: 'Ctex Scan Blockchain', + chain: 'Ctex Scan Blockchain', + icon: 'ctex', + rpc: ['https://mainnet-rpc.ctexscan.com/'], + faucets: ['https://faucet.ctexscan.com'], + nativeCurrency: { name: 'CTEX', symbol: 'CTEX', decimals: 18 }, + infoURL: 'https://ctextoken.io', + shortName: 'CTEX', + chainId: 1455, + networkId: 1455, + explorers: [ + { + name: 'Ctex Scan Explorer', + url: 'https://ctexscan.com', + standard: 'none' + } + ] + }, 1506: { name: 'Sherpax Mainnet', chain: 'Sherpax Mainnet', @@ -3764,7 +5940,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'KSX', symbol: 'KSX', decimals: 18 }, infoURL: 'https://sherpax.io/', - shortName: 'Sherpax Testnet', + shortName: 'SherpaxTestnet', chainId: 1507, networkId: 1507, explorers: [ @@ -3775,6 +5951,24 @@ export const chains: Chains = { } ] }, + 1515: { + name: 'Beagle Messaging Chain', + chain: 'BMC', + rpc: ['https://beagle.chat/eth'], + faucets: ['https://faucet.beagle.chat/'], + nativeCurrency: { name: 'Beagle', symbol: 'BG', decimals: 18 }, + infoURL: 'https://beagle.chat/', + shortName: 'beagle', + chainId: 1515, + networkId: 1515, + explorers: [ + { + name: 'Beagle Messaging Chain Explorer', + url: 'https://eth.beagle.chat', + standard: 'EIP3091' + } + ] + }, 1618: { name: 'Catecoin Chain Mainnet', chain: 'Catechain', @@ -3809,6 +6003,28 @@ export const chains: Chains = { chainId: 1657, networkId: 1657 }, + 1662: { + name: 'Horizen Yuma Testnet', + shortName: 'Yuma', + chain: 'Yuma', + icon: 'eon', + rpc: ['https://yuma-testnet.horizenlabs.io/ethv1'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: ['https://yuma-testnet-faucet.horizen.io'], + nativeCurrency: { name: 'Testnet Zen', symbol: 'tZEN', decimals: 18 }, + infoURL: 'https://horizen.io/', + chainId: 1662, + networkId: 1662, + slip44: 121, + explorers: [ + { + name: 'Yuma Testnet Block Explorer', + url: 'https://yuma-explorer.horizen.io', + icon: 'eon', + standard: 'EIP3091' + } + ] + }, 1688: { name: 'LUDAN Mainnet', chain: 'LUDAN', @@ -3821,6 +6037,123 @@ export const chains: Chains = { chainId: 1688, networkId: 1688 }, + 1701: { + name: 'Anytype EVM Chain', + chain: 'ETH', + icon: 'any', + rpc: ['https://geth.anytype.io'], + faucets: ['https://evm.anytype.io/faucet'], + nativeCurrency: { name: 'ANY', symbol: 'ANY', decimals: 18 }, + infoURL: 'https://evm.anytype.io', + shortName: 'AnytypeChain', + chainId: 1701, + networkId: 1701, + explorers: [ + { + name: 'Anytype Explorer', + url: 'https://explorer.anytype.io', + icon: 'any', + standard: 'EIP3091' + } + ] + }, + 1707: { + name: 'TBSI Mainnet', + title: 'Thai Blockchain Service Infrastructure Mainnet', + chain: 'TBSI', + rpc: ['https://rpc.blockchain.or.th'], + faucets: [], + nativeCurrency: { name: 'Jinda', symbol: 'JINDA', decimals: 18 }, + infoURL: 'https://blockchain.or.th', + shortName: 'TBSI', + chainId: 1707, + networkId: 1707 + }, + 1708: { + name: 'TBSI Testnet', + title: 'Thai Blockchain Service Infrastructure Testnet', + chain: 'TBSI', + rpc: ['https://rpc.testnet.blockchain.or.th'], + faucets: ['https://faucet.blockchain.or.th'], + nativeCurrency: { name: 'Jinda', symbol: 'JINDA', decimals: 18 }, + infoURL: 'https://blockchain.or.th', + shortName: 'tTBSI', + chainId: 1708, + networkId: 1708 + }, + 1718: { + name: 'Palette Chain Mainnet', + chain: 'PLT', + rpc: ['https://palette-rpc.com:22000'], + faucets: [], + nativeCurrency: { name: 'Palette Token', symbol: 'PLT', decimals: 18 }, + features: [], + infoURL: 'https://hashpalette.com/', + shortName: 'PaletteChain', + chainId: 1718, + networkId: 1718, + icon: 'PLT', + explorers: [ + { + name: 'Palettescan', + url: 'https://palettescan.com', + icon: 'PLT', + standard: 'none' + } + ] + }, + 1804: { + name: 'Kerleano', + title: 'Proof of Carbon Reduction testnet', + chain: 'CRC', + status: 'active', + rpc: [ + 'https://cacib-saturn-test.francecentral.cloudapp.azure.com', + 'wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443' + ], + faucets: [ + 'https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md' + ], + nativeCurrency: { + name: 'Carbon Reduction Coin', + symbol: 'CRC', + decimals: 18 + }, + infoURL: 'https://github.com/ethereum-pocr/kerleano', + shortName: 'kerleano', + chainId: 1804, + networkId: 1804, + explorers: [ + { + name: 'Lite Explorer', + url: 'https://ethereum-pocr.github.io/explorer/kerleano', + standard: 'EIP3091' + } + ] + }, + 1807: { + name: 'Rabbit Analog Testnet Chain', + chain: 'rAna', + icon: 'rabbit', + rpc: ['https://rabbit.analog-rpc.com'], + faucets: ['https://analogfaucet.com'], + nativeCurrency: { + name: 'Rabbit Analog Test Chain Native Token ', + symbol: 'rAna', + decimals: 18 + }, + infoURL: 'https://rabbit.analogscan.com', + shortName: 'rAna', + chainId: 1807, + networkId: 1807, + explorers: [ + { + name: 'blockscout', + url: 'https://rabbit.analogscan.com', + standard: 'none' + } + ] + }, 1818: { name: 'Cube Chain Mainnet', chain: 'Cube', @@ -3896,10 +6229,29 @@ export const chains: Chains = { chainId: 1856, networkId: 1 }, + 1881: { + name: 'Gitshock Cartenz Testnet', + chain: 'Gitshock Cartenz', + icon: 'gitshockchain', + rpc: ['https://rpc.cartenz.works'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'Gitshock Cartenz', symbol: 'tGTFX', decimals: 18 }, + infoURL: 'https://gitshock.com', + shortName: 'gitshockchain', + chainId: 1881, + networkId: 1881, + explorers: [ + { + name: 'blockscout', + url: 'https://scan.cartenz.works', + standard: 'EIP3091' + } + ] + }, 1898: { name: 'BON Network', chain: 'BON', - network: 'testnet', rpc: ['http://rpc.boyanet.org:8545', 'ws://rpc.boyanet.org:8546'], faucets: [], nativeCurrency: { name: 'BOYACoin', symbol: 'BOY', decimals: 18 }, @@ -3915,10 +6267,133 @@ export const chains: Chains = { } ] }, + 1907: { + name: 'Bitcichain Mainnet', + chain: 'BITCI', + icon: 'bitci', + rpc: ['https://rpc.bitci.com'], + faucets: [], + nativeCurrency: { name: 'Bitci', symbol: 'BITCI', decimals: 18 }, + infoURL: 'https://www.bitcichain.com', + shortName: 'bitci', + chainId: 1907, + networkId: 1907, + explorers: [ + { + name: 'Bitci Explorer', + url: 'https://bitciexplorer.com', + standard: 'EIP3091' + } + ] + }, + 1908: { + name: 'Bitcichain Testnet', + chain: 'TBITCI', + icon: 'bitci', + rpc: ['https://testnet.bitcichain.com'], + faucets: ['https://faucet.bitcichain.com'], + nativeCurrency: { name: 'Test Bitci', symbol: 'TBITCI', decimals: 18 }, + infoURL: 'https://www.bitcichain.com', + shortName: 'tbitci', + chainId: 1908, + networkId: 1908, + explorers: [ + { + name: 'Bitci Explorer Testnet', + url: 'https://testnet.bitciexplorer.com', + standard: 'EIP3091' + } + ] + }, + 1945: { + name: 'ONUS Chain Testnet', + title: 'ONUS Chain Testnet', + chain: 'onus', + rpc: ['https://rpc-testnet.onuschain.io'], + faucets: [], + nativeCurrency: { name: 'ONUS', symbol: 'ONUS', decimals: 18 }, + infoURL: 'https://onuschain.io', + shortName: 'onus-testnet', + chainId: 1945, + networkId: 1945, + explorers: [ + { + name: 'Onus explorer testnet', + url: 'https://explorer-testnet.onuschain.io', + icon: 'onus', + standard: 'EIP3091' + } + ] + }, + 1951: { + name: 'D-Chain Mainnet', + chain: 'D-Chain', + rpc: [ + 'https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc' + ], + nativeCurrency: { name: 'DOINX', symbol: 'DOINX', decimals: 18 }, + shortName: 'dchain-mainnet', + chainId: 1951, + networkId: 1951, + icon: 'dchain', + faucets: [], + infoURL: '' + }, + 1967: { + name: 'Eleanor', + title: 'Metatime Testnet Eleanor', + chain: 'MTC', + rpc: ['https://rpc.metatime.com/eleanor', 'wss://ws.metatime.com/eleanor'], + faucets: ['https://faucet.metatime.com/eleanor'], + nativeCurrency: { name: 'Eleanor Metacoin', symbol: 'MTC', decimals: 18 }, + infoURL: 'https://eleanor.metatime.com', + shortName: 'mtc', + chainId: 1967, + networkId: 1967, + explorers: [ + { + name: 'metaexplorer-eleanor', + url: 'https://explorer.metatime.com/eleanor', + standard: 'EIP3091' + } + ] + }, + 1971: { + name: 'Atelier', + title: 'Atelier Test Network', + chain: 'ALTR', + rpc: ['https://1971.network/atlr', 'wss://1971.network/atlr'], + faucets: [], + nativeCurrency: { name: 'ATLR', symbol: 'ATLR', decimals: 18 }, + infoURL: 'https://1971.network/', + shortName: 'atlr', + chainId: 1971, + networkId: 1971, + icon: 'atlr' + }, + 1975: { + name: 'ONUS Chain Mainnet', + title: 'ONUS Chain Mainnet', + chain: 'onus', + rpc: ['https://rpc.onuschain.io', 'wss://ws.onuschain.io'], + faucets: [], + nativeCurrency: { name: 'ONUS', symbol: 'ONUS', decimals: 18 }, + infoURL: 'https://onuschain.io', + shortName: 'onus-mainnet', + chainId: 1975, + networkId: 1975, + explorers: [ + { + name: 'Onus explorer mainnet', + url: 'https://explorer.onuschain.io', + icon: 'onus', + standard: 'EIP3091' + } + ] + }, 1984: { name: 'Eurus Testnet', chain: 'EUN', - network: 'eurus-testnet', rpc: ['https://testnet.eurus.network'], faucets: [], nativeCurrency: { name: 'Eurus', symbol: 'EUN', decimals: 18 }, @@ -3948,11 +6423,75 @@ export const chains: Chains = { networkId: 1987, slip44: 1987 }, + 1994: { + name: 'Ekta', + chain: 'EKTA', + rpc: ['https://main.ekta.io'], + faucets: [], + nativeCurrency: { name: 'EKTA', symbol: 'EKTA', decimals: 18 }, + infoURL: 'https://www.ekta.io', + shortName: 'ekta', + chainId: 1994, + networkId: 1994, + icon: 'ekta', + explorers: [ + { + name: 'ektascan', + url: 'https://ektascan.io', + icon: 'ekta', + standard: 'EIP3091' + } + ] + }, + 1995: { + name: 'edeXa Testnet', + chain: 'edeXa TestNetwork', + rpc: [ + 'https://testnet.edexa.com/rpc', + 'https://io-dataseed1.testnet.edexa.io-market.com/rpc' + ], + faucets: ['https://faucet.edexa.com/'], + nativeCurrency: { name: 'EDEXA', symbol: 'EDX', decimals: 18 }, + infoURL: 'https://edexa.com/', + shortName: 'edx', + chainId: 1995, + networkId: 1995, + icon: 'edexa', + explorers: [ + { + name: 'edexa-testnet', + url: 'https://explorer.edexa.com', + standard: 'EIP3091' + } + ] + }, + 2000: { + name: 'Dogechain Mainnet', + chain: 'DC', + icon: 'dogechain', + rpc: [ + 'https://rpc.dogechain.dog', + 'https://rpc-us.dogechain.dog', + 'https://rpc01.dogechain.dog' + ], + faucets: [], + nativeCurrency: { name: 'Dogecoin', symbol: 'DOGE', decimals: 18 }, + infoURL: 'https://dogechain.dog', + shortName: 'dc', + chainId: 2000, + networkId: 2000, + explorers: [ + { + name: 'dogechain explorer', + url: 'https://explorer.dogechain.dog', + standard: 'EIP3091' + } + ] + }, 2001: { name: 'Milkomeda C1 Mainnet', chain: 'milkAda', icon: 'milkomeda', - network: 'mainnet', rpc: [ 'https://rpc-mainnet-cardano-evm.c1.milkomeda.com', 'wss://rpc-mainnet-cardano-evm.c1.milkomeda.com' @@ -3971,6 +6510,28 @@ export const chains: Chains = { } ] }, + 2002: { + name: 'Milkomeda A1 Mainnet', + chain: 'milkALGO', + icon: 'milkomeda', + rpc: [ + 'https://rpc-mainnet-algorand-rollup.a1.milkomeda.com', + 'wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws' + ], + faucets: [], + nativeCurrency: { name: 'milkALGO', symbol: 'mALGO', decimals: 18 }, + infoURL: 'https://milkomeda.com', + shortName: 'milkALGO', + chainId: 2002, + networkId: 2002, + explorers: [ + { + name: 'Blockscout', + url: 'https://explorer-mainnet-algorand-rollup.a1.milkomeda.com', + standard: 'none' + } + ] + }, 2008: { name: 'CloudWalk Testnet', chain: 'CloudWalk Testnet', @@ -4015,38 +6576,143 @@ export const chains: Chains = { } ] }, - 2020: { - name: '420coin', - chain: '420', - rpc: [], + 2016: { + name: 'MainnetZ Mainnet', + chain: 'NetZ', + icon: 'mainnetz', + rpc: ['https://mainnet-rpc.mainnetz.io'], + faucets: ['https://faucet.mainnetz.io'], + nativeCurrency: { name: 'MainnetZ', symbol: 'NetZ', decimals: 18 }, + infoURL: 'https://mainnetz.io', + shortName: 'NetZm', + chainId: 2016, + networkId: 2016, + explorers: [ + { + name: 'MainnetZ', + url: 'https://explorer.mainnetz.io', + standard: 'EIP3091' + } + ] + }, + 2018: { + name: 'PublicMint Devnet', + title: 'Public Mint Devnet', + chain: 'PublicMint', + rpc: ['https://rpc.dev.publicmint.io:8545'], faucets: [], - nativeCurrency: { name: 'Fourtwenty', symbol: '420', decimals: 18 }, - infoURL: 'https://420integrated.com', - shortName: '420', + nativeCurrency: { name: 'USD', symbol: 'USD', decimals: 18 }, + infoURL: 'https://publicmint.com', + shortName: 'pmint_dev', + chainId: 2018, + networkId: 2018, + slip44: 60, + explorers: [ + { + name: 'PublicMint Explorer', + url: 'https://explorer.dev.publicmint.io', + standard: 'EIP3091' + } + ] + }, + 2019: { + name: 'PublicMint Testnet', + title: 'Public Mint Testnet', + chain: 'PublicMint', + rpc: ['https://rpc.tst.publicmint.io:8545'], + faucets: [], + nativeCurrency: { name: 'USD', symbol: 'USD', decimals: 18 }, + infoURL: 'https://publicmint.com', + shortName: 'pmint_test', + chainId: 2019, + networkId: 2019, + slip44: 60, + explorers: [ + { + name: 'PublicMint Explorer', + url: 'https://explorer.tst.publicmint.io', + standard: 'EIP3091' + } + ] + }, + 2020: { + name: 'PublicMint Mainnet', + title: 'Public Mint Mainnet', + chain: 'PublicMint', + rpc: ['https://rpc.publicmint.io:8545'], + faucets: [], + nativeCurrency: { name: 'USD', symbol: 'USD', decimals: 18 }, + infoURL: 'https://publicmint.com', + shortName: 'pmint', chainId: 2020, - networkId: 2020 + networkId: 2020, + slip44: 60, + explorers: [ + { + name: 'PublicMint Explorer', + url: 'https://explorer.publicmint.io', + standard: 'EIP3091' + } + ] }, 2021: { - name: 'Edgeware Mainnet', + name: 'Edgeware EdgeEVM Mainnet', chain: 'EDG', - rpc: ['https://mainnet1.edgewa.re'], + icon: 'edgeware', + rpc: [ + 'https://edgeware-evm.jelliedowl.net', + 'https://mainnet2.edgewa.re/evm', + 'https://mainnet3.edgewa.re/evm', + 'https://mainnet4.edgewa.re/evm', + 'https://mainnet5.edgewa.re/evm', + 'wss://edgeware.jelliedowl.net', + 'wss://mainnet2.edgewa.re', + 'wss://mainnet3.edgewa.re', + 'wss://mainnet4.edgewa.re', + 'wss://mainnet5.edgewa.re' + ], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], faucets: [], - nativeCurrency: { name: 'Edge', symbol: 'EDG', decimals: 18 }, - infoURL: 'http://edgewa.re', + nativeCurrency: { name: 'Edgeware', symbol: 'EDG', decimals: 18 }, + infoURL: 'https://edgeware.io', shortName: 'edg', chainId: 2021, - networkId: 2021 + networkId: 2021, + slip44: 523, + explorers: [ + { + name: 'Edgscan by Bharathcoorg', + url: 'https://edgscan.live', + standard: 'EIP3091' + }, + { + name: 'Subscan', + url: 'https://edgeware.subscan.io', + standard: 'none', + icon: 'subscan' + } + ] }, 2022: { - name: 'Beresheet Testnet', + name: 'Beresheet BereEVM Testnet', chain: 'EDG', - rpc: ['https://beresheet1.edgewa.re'], + rpc: [ + 'https://beresheet-evm.jelliedowl.net', + 'wss://beresheet.jelliedowl.net' + ], faucets: [], - nativeCurrency: { name: 'Testnet Edge', symbol: 'tEDG', decimals: 18 }, - infoURL: 'http://edgewa.re', + nativeCurrency: { name: 'Testnet EDG', symbol: 'tEDG', decimals: 18 }, + infoURL: 'https://edgeware.io/build', shortName: 'edgt', chainId: 2022, - networkId: 2022 + networkId: 2022, + explorers: [ + { + name: 'Edgscan by Bharathcoorg', + url: 'https://testnet.edgscan.live', + standard: 'EIP3091' + } + ] }, 2023: { name: 'Taycan Testnet', @@ -4058,16 +6724,19 @@ export const chains: Chains = { shortName: 'taycan-testnet', chainId: 2023, networkId: 2023, + icon: 'shuffle', explorers: [ { name: 'Taycan Explorer(Blockscout)', url: 'https://evmscan-test.hupayx.io', - standard: 'none' + standard: 'none', + icon: 'shuffle' }, { name: 'Taycan Cosmos Explorer', url: 'https://cosmoscan-test.hupayx.io', - standard: 'none' + standard: 'none', + icon: 'shuffle' } ] }, @@ -4095,6 +6764,77 @@ export const chains: Chains = { } ] }, + 2043: { + name: 'OriginTrail Parachain', + chain: 'OTP', + rpc: [ + 'https://astrosat.origintrail.network', + 'wss://parachain-rpc.origin-trail.network' + ], + faucets: [], + nativeCurrency: { + name: 'OriginTrail Parachain Token', + symbol: 'OTP', + decimals: 12 + }, + infoURL: 'https://parachain.origintrail.io', + shortName: 'otp', + chainId: 2043, + networkId: 2043 + }, + 2047: { + name: 'Stratos Testnet', + chain: 'STOS', + rpc: ['https://web3-testnet-rpc.thestratos.org'], + faucets: [], + nativeCurrency: { name: 'STOS', symbol: 'STOS', decimals: 18 }, + infoURL: 'https://www.thestratos.org', + shortName: 'stos-testnet', + chainId: 2047, + networkId: 2047, + explorers: [ + { + name: 'Stratos EVM Explorer (Blockscout)', + url: 'https://web3-testnet-explorer.thestratos.org', + standard: 'none' + }, + { + name: 'Stratos Cosmos Explorer (BigDipper)', + url: 'https://big-dipper-dev.thestratos.org', + standard: 'none' + } + ] + }, + 2048: { + name: 'Stratos Mainnet', + chain: 'STOS', + rpc: [], + faucets: [], + nativeCurrency: { name: 'STOS', symbol: 'STOS', decimals: 18 }, + infoURL: 'https://www.thestratos.org', + shortName: 'stos-mainnet', + chainId: 2048, + networkId: 2048, + status: 'incubating' + }, + 2077: { + name: 'Quokkacoin Mainnet', + chain: 'Qkacoin', + rpc: ['https://rpc.qkacoin.org'], + faucets: [], + nativeCurrency: { name: 'Qkacoin', symbol: 'QKA', decimals: 18 }, + infoURL: 'https://qkacoin.org', + shortName: 'QKA', + chainId: 2077, + networkId: 2077, + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.qkacoin.org', + standard: 'EIP3091' + } + ] + }, 2100: { name: 'Ecoball Mainnet', chain: 'ECO', @@ -4131,11 +6871,71 @@ export const chains: Chains = { } ] }, + 2109: { + name: 'Exosama Network', + chain: 'EXN', + rpc: ['https://rpc.exosama.com', 'wss://rpc.exosama.com'], + faucets: [], + nativeCurrency: { name: 'Sama Token', symbol: 'SAMA', decimals: 18 }, + infoURL: 'https://moonsama.com', + shortName: 'exn', + chainId: 2109, + networkId: 2109, + slip44: 2109, + icon: 'exn', + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.exosama.com', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, + 2122: { + name: 'Metaplayerone Mainnet', + chain: 'METAD', + icon: 'metad', + rpc: ['https://rpc.metaplayer.one/'], + faucets: [], + nativeCurrency: { name: 'METAD', symbol: 'METAD', decimals: 18 }, + infoURL: 'https://docs.metaplayer.one/', + shortName: 'Metad', + chainId: 2122, + networkId: 2122, + explorers: [ + { + name: 'Metad Scan', + url: 'https://scan.metaplayer.one', + icon: 'metad', + standard: 'EIP3091' + } + ] + }, + 2151: { + name: 'BOSagora Mainnet', + chain: 'ETH', + rpc: ['https://mainnet.bosagora.org', 'https://rpc.bosagora.org'], + faucets: [], + nativeCurrency: { name: 'BOSAGORA', symbol: 'BOA', decimals: 18 }, + infoURL: 'https://docs.bosagora.org', + shortName: 'boa', + chainId: 2151, + networkId: 2151, + icon: 'agora', + explorers: [ + { + name: 'BOASCAN', + url: 'https://boascan.io', + icon: 'agora', + standard: 'EIP3091' + } + ] + }, 2152: { name: 'Findora Mainnet', chain: 'Findora', - network: 'mainnet', - rpc: ['https://prod-mainnet.prod.findora.org:8545'], + rpc: ['https://rpc-mainnet.findora.org'], faucets: [], nativeCurrency: { name: 'FRA', symbol: 'FRA', decimals: 18 }, infoURL: 'https://findora.org/', @@ -4153,7 +6953,6 @@ export const chains: Chains = { 2153: { name: 'Findora Testnet', chain: 'Testnet-anvil', - network: 'testnet', rpc: ['https://prod-testnet.prod.findora.org:8545/'], faucets: [], nativeCurrency: { name: 'FRA', symbol: 'FRA', decimals: 18 }, @@ -4169,10 +6968,47 @@ export const chains: Chains = { } ] }, + 2154: { + name: 'Findora Forge', + chain: 'Testnet-forge', + rpc: ['https://prod-forge.prod.findora.org:8545/'], + faucets: [], + nativeCurrency: { name: 'FRA', symbol: 'FRA', decimals: 18 }, + infoURL: 'https://findora.org/', + shortName: 'findora-forge', + chainId: 2154, + networkId: 2154, + explorers: [ + { + name: 'findorascan', + url: 'https://testnet-forge.evm.findorascan.io', + standard: 'EIP3091' + } + ] + }, + 2203: { + name: 'Bitcoin EVM', + chain: 'Bitcoin EVM', + rpc: ['https://connect.bitcoinevm.com'], + faucets: [], + nativeCurrency: { name: 'Bitcoin', symbol: 'eBTC', decimals: 18 }, + infoURL: 'https://bitcoinevm.com', + shortName: 'eBTC', + chainId: 2203, + networkId: 2203, + icon: 'ebtc', + explorers: [ + { + name: 'Explorer', + url: 'https://explorer.bitcoinevm.com', + icon: 'ebtc', + standard: 'none' + } + ] + }, 2213: { name: 'Evanesco Mainnet', chain: 'EVA', - network: 'mainnet', rpc: ['https://seed4.evanesco.org:8546'], faucets: [], nativeCurrency: { name: 'EVA', symbol: 'EVA', decimals: 18 }, @@ -4192,8 +7028,7 @@ export const chains: Chains = { 2221: { name: 'Kava EVM Testnet', chain: 'KAVA', - network: 'testnet', - rpc: ['https://evm.evm-alpha.kava.io', 'wss://evm-ws.evm-alpha.kava.io'], + rpc: ['https://evm.testnet.kava.io', 'wss://wevm.testnet.kava.io'], faucets: ['https://faucet.kava.io'], nativeCurrency: { name: 'TKava', symbol: 'TKAVA', decimals: 18 }, infoURL: 'https://www.kava.io', @@ -4204,7 +7039,7 @@ export const chains: Chains = { explorers: [ { name: 'Kava Testnet Explorer', - url: 'https://explorer.evm-alpha.kava.io', + url: 'https://explorer.testnet.kava.io', standard: 'EIP3091', icon: 'kava' } @@ -4213,7 +7048,6 @@ export const chains: Chains = { 2222: { name: 'Kava EVM', chain: 'KAVA', - network: 'mainnet', rpc: [ 'https://evm.kava.io', 'https://evm2.kava.io', @@ -4254,6 +7088,124 @@ export const chains: Chains = { } ] }, + 2300: { + name: 'BOMB Chain', + chain: 'BOMB', + rpc: ['https://rpc.bombchain.com'], + faucets: [], + nativeCurrency: { name: 'BOMB Token', symbol: 'BOMB', decimals: 18 }, + infoURL: 'https://www.bombchain.com', + shortName: 'bomb', + chainId: 2300, + networkId: 2300, + icon: 'bomb', + explorers: [ + { + name: 'bombscan', + icon: 'bomb', + url: 'https://bombscan.com', + standard: 'EIP3091' + } + ] + }, + 2309: { + name: 'Arevia', + chain: 'Arevia', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Arev', symbol: 'ARÉV', decimals: 18 }, + infoURL: '', + shortName: 'arevia', + chainId: 2309, + networkId: 2309, + explorers: [], + status: 'incubating' + }, + 2330: { + name: 'Altcoinchain', + chain: 'mainnet', + rpc: ['https://rpc0.altcoinchain.org/rpc'], + faucets: [], + nativeCurrency: { name: 'Altcoin', symbol: 'ALT', decimals: 18 }, + infoURL: 'https://altcoinchain.org', + shortName: 'alt', + chainId: 2330, + networkId: 2330, + icon: 'altcoinchain', + status: 'active', + explorers: [ + { + name: 'expedition', + url: 'http://expedition.altcoinchain.org', + icon: 'altcoinchain', + standard: 'none' + } + ] + }, + 2399: { + name: 'BOMB Chain Testnet', + chain: 'BOMB', + rpc: ['https://bombchain-testnet.ankr.com/bas_full_rpc_1'], + faucets: ['https://faucet.bombchain-testnet.ankr.com/'], + nativeCurrency: { name: 'BOMB Token', symbol: 'tBOMB', decimals: 18 }, + infoURL: 'https://www.bombmoney.com', + shortName: 'bombt', + chainId: 2399, + networkId: 2399, + icon: 'bomb', + explorers: [ + { + name: 'bombscan-testnet', + icon: 'bomb', + url: 'https://explorer.bombchain-testnet.ankr.com', + standard: 'EIP3091' + } + ] + }, + 2400: { + name: 'TCG Verse Mainnet', + chain: 'TCG Verse', + icon: 'tcg_verse', + rpc: ['https://rpc.tcgverse.xyz'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://tcgverse.xyz/', + shortName: 'TCGV', + chainId: 2400, + networkId: 2400, + explorers: [ + { + name: 'TCG Verse Explorer', + url: 'https://explorer.tcgverse.xyz', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-248' } + }, + 2415: { + name: 'XODEX', + chain: 'XODEX', + rpc: ['https://mainnet.xo-dex.com/rpc', 'https://xo-dex.io'], + faucets: [], + nativeCurrency: { + name: 'XODEX Native Token', + symbol: 'XODEX', + decimals: 18 + }, + infoURL: 'https://xo-dex.com', + shortName: 'xodex', + chainId: 2415, + networkId: 10, + icon: 'xodex', + explorers: [ + { + name: 'XODEX Explorer', + url: 'https://explorer.xo-dex.com', + standard: 'EIP3091', + icon: 'xodex' + } + ] + }, 2559: { name: 'Kortho Mainnet', chain: 'Kortho Chain', @@ -4268,7 +7220,6 @@ export const chains: Chains = { 2569: { name: 'TechPay Mainnet', chain: 'TPC', - network: 'mainnet', rpc: ['https://api.techpay.io/'], faucets: [], nativeCurrency: { name: 'TechPay', symbol: 'TPC', decimals: 18 }, @@ -4286,6 +7237,51 @@ export const chains: Chains = { } ] }, + 2606: { + name: 'PoCRNet', + title: 'Proof of Carbon Reduction mainnet', + chain: 'CRC', + status: 'active', + rpc: [ + 'https://pocrnet.westeurope.cloudapp.azure.com/http', + 'wss://pocrnet.westeurope.cloudapp.azure.com/ws' + ], + faucets: [], + nativeCurrency: { + name: 'Carbon Reduction Coin', + symbol: 'CRC', + decimals: 18 + }, + infoURL: 'https://github.com/ethereum-pocr/pocrnet', + shortName: 'pocrnet', + chainId: 2606, + networkId: 2606, + explorers: [ + { + name: 'Lite Explorer', + url: 'https://ethereum-pocr.github.io/explorer/pocrnet', + standard: 'EIP3091' + } + ] + }, + 2611: { + name: 'Redlight Chain Mainnet', + chain: 'REDLC', + rpc: ['https://dataseed2.redlightscan.finance'], + faucets: [], + nativeCurrency: { name: 'Redlight Coin', symbol: 'REDLC', decimals: 18 }, + infoURL: 'https://redlight.finance/', + shortName: 'REDLC', + chainId: 2611, + networkId: 2611, + explorers: [ + { + name: 'REDLC Explorer', + url: 'https://redlightscan.finance', + standard: 'EIP3091' + } + ] + }, 2612: { name: 'EZChain C-Chain Mainnet', chain: 'EZC', @@ -4324,11 +7320,52 @@ export const chains: Chains = { } ] }, + 2888: { + name: 'Boba Network Goerli Testnet', + chain: 'ETH', + rpc: ['https://goerli.boba.network/'], + faucets: [], + nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'Bobagoerli', + chainId: 2888, + networkId: 2888, + explorers: [ + { + name: 'Blockscout', + url: 'https://testnet.bobascan.com', + standard: 'none' + } + ], + parent: { + type: 'L2', + chain: 'eip155-5', + bridges: [{ url: 'https://gateway.goerli.boba.network' }] + } + }, + 2999: { + name: 'BitYuan Mainnet', + chain: 'BTY', + rpc: ['https://mainnet.bityuan.com/eth'], + faucets: [], + nativeCurrency: { name: 'BTY', symbol: 'BTY', decimals: 18 }, + infoURL: 'https://www.bityuan.com', + shortName: 'bty', + chainId: 2999, + networkId: 2999, + icon: 'bty', + explorers: [ + { + name: 'BitYuan Block Chain Explorer', + url: 'https://mainnet.bityuan.com', + standard: 'none' + } + ] + }, 3000: { name: 'CENNZnet Rata', chain: 'CENNZnet', - network: 'rata', - rpc: ['https://rata.centrality.me/public'], + rpc: [], faucets: ['https://app-faucet.centrality.me'], nativeCurrency: { name: 'CPAY', symbol: 'CPAY', decimals: 18 }, infoURL: 'https://cennz.net', @@ -4340,7 +7377,6 @@ export const chains: Chains = { 3001: { name: 'CENNZnet Nikau', chain: 'CENNZnet', - network: 'nikau', rpc: ['https://nikau.centrality.me/public'], faucets: ['https://app-faucet.centrality.me'], nativeCurrency: { name: 'CPAY', symbol: 'CPAY', decimals: 18 }, @@ -4357,6 +7393,108 @@ export const chains: Chains = { } ] }, + 3031: { + name: 'Orlando Chain', + chain: 'ORL', + rpc: ['https://rpc-testnet.orlchain.com'], + faucets: [], + nativeCurrency: { name: 'Orlando', symbol: 'ORL', decimals: 18 }, + infoURL: 'https://orlchain.com', + shortName: 'ORL', + chainId: 3031, + networkId: 3031, + icon: 'orl', + explorers: [ + { + name: 'Orlando (ORL) Explorer', + url: 'https://orlscan.com', + icon: 'orl', + standard: 'EIP3091' + } + ] + }, + 3068: { + name: 'Bifrost Mainnet', + title: 'The Bifrost Mainnet network', + chain: 'BFC', + rpc: [ + 'https://public-01.mainnet.thebifrost.io/rpc', + 'https://public-02.mainnet.thebifrost.io/rpc' + ], + faucets: [], + nativeCurrency: { name: 'Bifrost', symbol: 'BFC', decimals: 18 }, + infoURL: 'https://thebifrost.io', + shortName: 'bfc', + chainId: 3068, + networkId: 3068, + icon: 'bifrost', + explorers: [ + { + name: 'explorer-thebifrost', + url: 'https://explorer.mainnet.thebifrost.io', + standard: 'EIP3091' + } + ] + }, + 3141: { + name: 'Filecoin - Hyperspace testnet', + chain: 'FIL', + icon: 'filecoin', + rpc: [ + 'https://api.hyperspace.node.glif.io/rpc/v1', + 'https://rpc.ankr.com/filecoin_testnet', + 'https://filecoin-hyperspace.chainstacklabs.com/rpc/v1' + ], + faucets: ['https://hyperspace.yoga/#faucet'], + nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 }, + infoURL: 'https://filecoin.io', + shortName: 'filecoin-hyperspace', + chainId: 3141, + networkId: 3141, + slip44: 1, + explorers: [ + { + name: 'Filfox - Hyperspace', + url: 'https://hyperspace.filfox.info/en', + standard: 'none' + }, + { + name: 'Glif Explorer - Hyperspace', + url: 'https://explorer.glif.io/?network=hyperspace', + standard: 'none' + }, + { name: 'Beryx', url: 'https://beryx.zondax.ch', standard: 'none' }, + { + name: 'Dev.storage', + url: 'https://dev.storage', + standard: 'none' + }, + { + name: 'Filscan - Hyperspace', + url: 'https://hyperspace.filscan.io', + standard: 'none' + } + ] + }, + 3306: { + name: 'Debounce Subnet Testnet', + chain: 'Debounce Network', + icon: 'debounce', + rpc: ['https://dev-rpc.debounce.network'], + faucets: [], + nativeCurrency: { name: 'Debounce Network', symbol: 'DB', decimals: 18 }, + infoURL: 'https://debounce.network', + shortName: 'debounce-devnet', + chainId: 3306, + networkId: 3306, + explorers: [ + { + name: 'Debounce Devnet Explorer', + url: 'https://explorer.debounce.network', + standard: 'EIP3091' + } + ] + }, 3331: { name: 'ZCore Testnet', chain: 'Beach', @@ -4408,7 +7546,6 @@ export const chains: Chains = { 3400: { name: 'Paribu Net Mainnet', chain: 'PRB', - network: 'Paribu Net', rpc: ['https://rpc.paribu.network'], faucets: [], nativeCurrency: { name: 'PRB', symbol: 'PRB', decimals: 18 }, @@ -4421,7 +7558,6 @@ export const chains: Chains = { { name: 'Paribu Net Explorer', url: 'https://explorer.paribu.network', - icon: 'explorer', standard: 'EIP3091' } ] @@ -4429,7 +7565,6 @@ export const chains: Chains = { 3500: { name: 'Paribu Net Testnet', chain: 'PRB', - network: 'Paribu Net', rpc: ['https://rpc.testnet.paribuscan.com'], faucets: ['https://faucet.paribuscan.com'], nativeCurrency: { name: 'PRB', symbol: 'PRB', decimals: 18 }, @@ -4442,7 +7577,80 @@ export const chains: Chains = { { name: 'Paribu Net Testnet Explorer', url: 'https://testnet.paribuscan.com', - icon: 'explorer', + standard: 'EIP3091' + } + ] + }, + 3501: { + name: 'JFIN Chain', + chain: 'JFIN', + rpc: ['https://rpc.jfinchain.com'], + faucets: [], + nativeCurrency: { name: 'JFIN Coin', symbol: 'jfin', decimals: 18 }, + infoURL: 'https://jfinchain.com', + shortName: 'jfin', + chainId: 3501, + networkId: 3501, + explorers: [ + { + name: 'JFIN Chain Explorer', + url: 'https://exp.jfinchain.com', + standard: 'EIP3091' + } + ] + }, + 3601: { + name: 'PandoProject Mainnet', + chain: 'PandoProject', + icon: 'pando', + rpc: ['https://eth-rpc-api.pandoproject.org/rpc'], + faucets: [], + nativeCurrency: { name: 'pando-token', symbol: 'PTX', decimals: 18 }, + infoURL: 'https://www.pandoproject.org/', + shortName: 'pando-mainnet', + chainId: 3601, + networkId: 3601, + explorers: [ + { + name: 'Pando Mainnet Explorer', + url: 'https://explorer.pandoproject.org', + standard: 'none' + } + ] + }, + 3602: { + name: 'PandoProject Testnet', + chain: 'PandoProject', + icon: 'pando', + rpc: ['https://testnet.ethrpc.pandoproject.org/rpc'], + faucets: [], + nativeCurrency: { name: 'pando-token', symbol: 'PTX', decimals: 18 }, + infoURL: 'https://www.pandoproject.org/', + shortName: 'pando-testnet', + chainId: 3602, + networkId: 3602, + explorers: [ + { + name: 'Pando Testnet Explorer', + url: 'https://testnet.explorer.pandoproject.org', + standard: 'none' + } + ] + }, + 3666: { + name: 'Metacodechain', + chain: 'metacode', + rpc: ['https://j.blockcoach.com:8503'], + faucets: [], + nativeCurrency: { name: 'J', symbol: 'J', decimals: 18 }, + infoURL: 'https://j.blockcoach.com:8089', + shortName: 'metacode', + chainId: 3666, + networkId: 3666, + explorers: [ + { + name: 'meta', + url: 'https://j.blockcoach.com:8089', standard: 'EIP3091' } ] @@ -4457,20 +7665,35 @@ export const chains: Chains = { shortName: 'btx', chainId: 3690, networkId: 3690, - icon: 'ethereum', explorers: [ { name: 'bittexscan', url: 'https://bittexscan.com', - icon: 'etherscan', standard: 'EIP3091' } ] }, + 3693: { + name: 'Empire Network', + chain: 'EMPIRE', + rpc: ['https://rpc.empirenetwork.io'], + faucets: [], + nativeCurrency: { name: 'Empire', symbol: 'EMPIRE', decimals: 18 }, + infoURL: 'https://www.empirenetwork.io/', + shortName: 'empire', + chainId: 3693, + networkId: 3693, + explorers: [ + { + name: 'Empire Explorer', + url: 'https://explorer.empirenetwork.io', + standard: 'none' + } + ] + }, 3737: { name: 'Crossbell', chain: 'Crossbell', - network: 'mainnet', rpc: ['https://rpc.crossbell.io'], faucets: ['https://faucet.crossbell.io'], nativeCurrency: { name: 'Crossbell Token', symbol: 'CSB', decimals: 18 }, @@ -4487,6 +7710,26 @@ export const chains: Chains = { } ] }, + 3912: { + name: 'DRAC Network', + chain: 'DRAC', + rpc: ['https://www.dracscan.com/rpc'], + faucets: ['https://www.dracscan.io/faucet'], + nativeCurrency: { name: 'DRAC', symbol: 'DRAC', decimals: 18 }, + infoURL: 'https://drac.io/', + shortName: 'drac', + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + chainId: 3912, + networkId: 3912, + icon: 'drac', + explorers: [ + { + name: 'DRAC_Network Scan', + url: 'https://www.dracscan.io', + standard: 'EIP3091' + } + ] + }, 3966: { name: 'DYNO Mainnet', chain: 'DYNO', @@ -4526,7 +7769,6 @@ export const chains: Chains = { 3999: { name: 'YuanChain Mainnet', chain: 'YCC', - network: 'mainnet', rpc: ['https://mainnet.yuan.org/eth'], faucets: [], nativeCurrency: { name: 'YCC', symbol: 'YCC', decimals: 18 }, @@ -4564,10 +7806,113 @@ export const chains: Chains = { } ] }, + 4051: { + name: 'Bobaopera Testnet', + chain: 'Bobaopera Testnet', + rpc: [ + 'https://testnet.bobaopera.boba.network', + 'wss://wss.testnet.bobaopera.boba.network', + 'https://replica.testnet.bobaopera.boba.network', + 'wss://replica-wss.testnet.bobaopera.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'BobaoperaTestnet', + chainId: 4051, + networkId: 4051, + explorers: [ + { + name: 'Bobaopera Testnet block explorer', + url: 'https://blockexplorer.testnet.bobaopera.boba.network', + standard: 'none' + } + ] + }, + 4061: { + name: 'Nahmii 3 Mainnet', + chain: 'Nahmii', + rpc: [], + status: 'incubating', + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://nahmii.io', + shortName: 'Nahmii3Mainnet', + chainId: 4061, + networkId: 4061, + icon: 'nahmii', + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://bridge.nahmii.io' }] + } + }, + 4062: { + name: 'Nahmii 3 Testnet', + chain: 'Nahmii', + rpc: ['https://ngeth.testnet.n3.nahmii.io'], + faucets: [], + nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://nahmii.io', + shortName: 'Nahmii3Testnet', + chainId: 4062, + networkId: 4062, + icon: 'nahmii', + explorers: [ + { + name: 'Nahmii 3 Testnet Explorer', + url: 'https://explorer.testnet.n3.nahmii.io', + icon: 'nahmii', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-3', + bridges: [{ url: 'https://bridge.testnet.n3.nahmii.io' }] + } + }, + 4096: { + name: 'Bitindi Testnet', + chain: 'BNI', + icon: 'bitindiTestnet', + rpc: ['https://testnet-rpc.bitindi.org'], + faucets: ['https://faucet.bitindi.org'], + nativeCurrency: { name: 'BNI', symbol: '$BNI', decimals: 18 }, + infoURL: 'https://bitindi.org', + shortName: 'BNIt', + chainId: 4096, + networkId: 4096, + explorers: [ + { + name: 'Bitindi', + url: 'https://testnet.bitindiscan.com', + standard: 'EIP3091' + } + ] + }, + 4099: { + name: 'Bitindi Mainnet', + chain: 'BNI', + icon: 'bitindi', + rpc: ['https://mainnet-rpc.bitindi.org'], + faucets: ['https://faucet.bitindi.org'], + nativeCurrency: { name: 'BNI', symbol: '$BNI', decimals: 18 }, + infoURL: 'https://bitindi.org', + shortName: 'BNIm', + chainId: 4099, + networkId: 4099, + explorers: [ + { + name: 'Bitindi', + url: 'https://bitindiscan.com', + standard: 'EIP3091' + } + ] + }, 4102: { name: 'AIOZ Network Testnet', chain: 'AIOZ', - network: 'testnet', icon: 'aioz', rpc: ['https://eth-ds.testnet.aioz.network'], faucets: [], @@ -4585,15 +7930,33 @@ export const chains: Chains = { } ] }, + 4141: { + name: 'Tipboxcoin Testnet', + chain: 'TPBX', + icon: 'tipboxcoinIcon', + rpc: ['https://testnet-rpc.tipboxcoin.net'], + faucets: ['https://faucet.tipboxcoin.net'], + nativeCurrency: { name: 'Tipboxcoin', symbol: 'TPBX', decimals: 18 }, + infoURL: 'https://tipboxcoin.net', + shortName: 'TPBXt', + chainId: 4141, + networkId: 4141, + explorers: [ + { + name: 'Tipboxcoin', + url: 'https://testnet.tipboxcoin.net', + standard: 'EIP3091' + } + ] + }, 4181: { - name: 'PHI Network', - chain: 'PHI', - network: 'mainnet', + name: 'PHI Network V1', + chain: 'PHI V1', rpc: ['https://rpc1.phi.network', 'https://rpc2.phi.network'], faucets: [], nativeCurrency: { name: 'PHI', symbol: 'Φ', decimals: 18 }, infoURL: 'https://phi.network', - shortName: 'PHI', + shortName: 'PHIv1', chainId: 4181, networkId: 4181, icon: 'phi', @@ -4606,6 +7969,50 @@ export const chains: Chains = { } ] }, + 4328: { + name: 'Bobafuji Testnet', + chain: 'Bobafuji Testnet', + rpc: [ + 'https://testnet.avax.boba.network', + 'wss://wss.testnet.avax.boba.network', + 'https://replica.testnet.avax.boba.network', + 'wss://replica-wss.testnet.avax.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'BobaFujiTestnet', + chainId: 4328, + networkId: 4328, + explorers: [ + { + name: 'Bobafuji Testnet block explorer', + url: 'https://blockexplorer.testnet.avax.boba.network', + standard: 'none' + } + ] + }, + 4444: { + name: 'Htmlcoin Mainnet', + chain: 'mainnet', + rpc: ['https://janus.htmlcoin.com/api/'], + faucets: ['https://gruvin.me/htmlcoin'], + nativeCurrency: { name: 'Htmlcoin', symbol: 'HTML', decimals: 8 }, + infoURL: 'https://htmlcoin.com', + shortName: 'html', + chainId: 4444, + networkId: 4444, + icon: 'htmlcoin', + status: 'active', + explorers: [ + { + name: 'htmlcoin', + url: 'https://explorer.htmlcoin.com', + icon: 'htmlcoin', + standard: 'none' + } + ] + }, 4689: { name: 'IoTeX Network Mainnet', chain: 'iotex.io', @@ -4642,6 +8049,31 @@ export const chains: Chains = { } ] }, + 4777: { + name: 'BlackFort Exchange Network Testnet', + chain: 'TBXN', + rpc: ['https://testnet.blackfort.network/rpc'], + faucets: [], + nativeCurrency: { + name: 'BlackFort Testnet Token', + symbol: 'TBXN', + decimals: 18 + }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://blackfort.exchange', + shortName: 'TBXN', + chainId: 4777, + networkId: 4777, + icon: 'bxn', + explorers: [ + { + name: 'blockscout', + url: 'https://testnet-explorer.blackfort.network', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, 4918: { name: 'Venidium Testnet', chain: 'XVM', @@ -4679,6 +8111,68 @@ export const chains: Chains = { } ] }, + 4999: { + name: 'BlackFort Exchange Network', + chain: 'BXN', + rpc: [ + 'https://mainnet.blackfort.network/rpc', + 'https://mainnet-1.blackfort.network/rpc', + 'https://mainnet-2.blackfort.network/rpc', + 'https://mainnet-3.blackfort.network/rpc' + ], + faucets: [], + nativeCurrency: { name: 'BlackFort Token', symbol: 'BXN', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://blackfort.exchange', + shortName: 'BXN', + chainId: 4999, + networkId: 4999, + icon: 'bxn', + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.blackfort.network', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, + 5000: { + name: 'Mantle', + chain: 'ETH', + rpc: ['https://rpc.mantle.xyz'], + faucets: [], + nativeCurrency: { name: 'BitDAO', symbol: 'BIT', decimals: 18 }, + infoURL: 'https://mantle.xyz', + shortName: 'mantle', + chainId: 5000, + networkId: 5000, + explorers: [ + { + name: 'Mantle Explorer', + url: 'https://explorer.mantle.xyz', + standard: 'EIP3091' + } + ] + }, + 5001: { + name: 'Mantle Testnet', + chain: 'ETH', + rpc: ['https://rpc.testnet.mantle.xyz'], + faucets: ['https://faucet.testnet.mantle.xyz'], + nativeCurrency: { name: 'Testnet BitDAO', symbol: 'BIT', decimals: 18 }, + infoURL: 'https://mantle.xyz', + shortName: 'mantle-testnet', + chainId: 5001, + networkId: 5001, + explorers: [ + { + name: 'Mantle Testnet Explorer', + url: 'https://explorer.testnet.mantle.xyz', + standard: 'EIP3091' + } + ] + }, 5177: { name: 'TLChain Network Mainnet', chain: 'TLC', @@ -4713,6 +8207,32 @@ export const chains: Chains = { chainId: 5197, networkId: 5197 }, + 5234: { + name: 'Humanode Mainnet', + chain: 'HMND', + rpc: ['https://explorer-rpc-http.mainnet.stages.humanode.io'], + faucets: [], + nativeCurrency: { name: 'HMND', symbol: 'HMND', decimals: 18 }, + infoURL: 'https://humanode.io', + shortName: 'hmnd', + chainId: 5234, + networkId: 5234, + explorers: [] + }, + 5290: { + name: 'Firechain Mainnet Old', + chain: 'FIRE', + icon: 'firechain', + rpc: ['https://mainnet.rpc1.thefirechain.com'], + faucets: [], + nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 }, + infoURL: 'https://thefirechain.com', + shortName: '_old_fire', + chainId: 5290, + networkId: 5290, + explorers: [], + status: 'deprecated' + }, 5315: { name: 'Uzmi Network Mainnet', chain: 'UZMI', @@ -4727,7 +8247,6 @@ export const chains: Chains = { 5551: { name: 'Nahmii Mainnet', chain: 'Nahmii', - network: 'mainnet', rpc: ['https://l2.nahmii.io'], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, @@ -4753,12 +8272,11 @@ export const chains: Chains = { 5553: { name: 'Nahmii Testnet', chain: 'Nahmii', - network: 'testnet', rpc: ['https://l2.testnet.nahmii.io'], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://nahmii.io', - shortName: 'Nahmii testnet', + shortName: 'NahmiiTestnet', chainId: 5553, networkId: 5553, icon: 'nahmii', @@ -4776,6 +8294,25 @@ export const chains: Chains = { bridges: [{ url: 'https://bridge.nahmii.io' }] } }, + 5555: { + name: 'Chain Verse Mainnet', + chain: 'CVERSE', + icon: 'chain_verse', + rpc: ['https://rpc.chainverse.info'], + faucets: [], + nativeCurrency: { name: 'Oasys', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://chainverse.info', + shortName: 'cverse', + chainId: 5555, + networkId: 5555, + explorers: [ + { + name: 'Chain Verse Explorer', + url: 'https://explorer.chainverse.info', + standard: 'EIP3091' + } + ] + }, 5700: { name: 'Syscoin Tanenbaum Testnet', chain: 'SYS', @@ -4794,28 +8331,44 @@ export const chains: Chains = { } ] }, - 5777: { - name: 'Digest Swarm Chain', - chain: 'DSC', - icon: 'swarmchain', - rpc: ['https://rpc.digestgroup.ltd'], + 5729: { + name: 'Hika Network Testnet', + title: 'Hika Network Testnet', + chain: 'HIK', + icon: 'hik', + rpc: ['https://rpc-testnet.hika.network/'], faucets: [], - nativeCurrency: { name: 'DigestCoin', symbol: 'DGCC', decimals: 18 }, - infoURL: 'https://digestgroup.ltd', - shortName: 'dgcc', - chainId: 5777, - networkId: 5777, + nativeCurrency: { name: 'Hik Token', symbol: 'HIK', decimals: 18 }, + infoURL: 'https://hika.network/', + shortName: 'hik', + chainId: 5729, + networkId: 5729, explorers: [ { - name: 'swarmexplorer', - url: 'https://explorer.digestgroup.ltd', - standard: 'EIP3091' + name: 'Hika Network Testnet Explorer', + url: 'https://scan-testnet.hika.network', + standard: 'none' } ] }, + 5777: { + name: 'Ganache', + title: 'Ganache GUI Ethereum Testnet', + chain: 'ETH', + icon: 'ganache', + rpc: ['https://127.0.0.1:7545'], + faucets: [], + nativeCurrency: { name: 'Ganache Test Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://trufflesuite.com/ganache/', + shortName: 'ggui', + chainId: 5777, + networkId: 5777, + explorers: [] + }, 5851: { name: 'Ontology Testnet', chain: 'Ontology', + icon: 'ontology', rpc: [ 'http://polaris1.ont.io:20339', 'http://polaris2.ont.io:20339', @@ -4829,7 +8382,7 @@ export const chains: Chains = { faucets: ['https://developer.ont.io/'], nativeCurrency: { name: 'ONG', symbol: 'ONG', decimals: 18 }, infoURL: 'https://ont.io/', - shortName: 'Ontology Testnet', + shortName: 'OntologyTestnet', chainId: 5851, networkId: 5851, explorers: [ @@ -4858,6 +8411,65 @@ export const chains: Chains = { } ] }, + 6065: { + name: 'Tres Testnet', + chain: 'TresLeches', + rpc: ['https://rpc-test.tresleches.finance/'], + faucets: ['http://faucet.tresleches.finance:8080'], + nativeCurrency: { name: 'TRES', symbol: 'TRES', decimals: 18 }, + infoURL: 'https://treschain.com', + shortName: 'TRESTEST', + chainId: 6065, + networkId: 6065, + icon: 'tresleches', + explorers: [ + { + name: 'treslechesexplorer', + url: 'https://explorer-test.tresleches.finance', + icon: 'treslechesexplorer', + standard: 'EIP3091' + } + ] + }, + 6066: { + name: 'Tres Mainnet', + chain: 'TresLeches', + rpc: ['https://rpc.tresleches.finance/', 'https://rpc.treschain.io/'], + faucets: [], + nativeCurrency: { name: 'TRES', symbol: 'TRES', decimals: 18 }, + infoURL: 'https://treschain.com', + shortName: 'TRESMAIN', + chainId: 6066, + networkId: 6066, + icon: 'tresleches', + explorers: [ + { + name: 'treslechesexplorer', + url: 'https://explorer.tresleches.finance', + icon: 'treslechesexplorer', + standard: 'EIP3091' + } + ] + }, + 6552: { + name: 'Scolcoin WeiChain Testnet', + chain: 'SCOLWEI-testnet', + rpc: ['https://testnet-rpc.scolcoin.com'], + faucets: ['https://faucet.scolcoin.com'], + nativeCurrency: { name: 'Scolcoin', symbol: 'SCOL', decimals: 18 }, + infoURL: 'https://scolcoin.com', + shortName: 'SRC-test', + chainId: 6552, + networkId: 6552, + icon: 'scolcoin', + explorers: [ + { + name: 'Scolscan Testnet Explorer', + url: 'https://testnet-explorer.scolcoin.com', + standard: 'EIP3091' + } + ] + }, 6626: { name: 'Pixie Chain Mainnet', chain: 'PixieChain', @@ -4883,6 +8495,103 @@ export const chains: Chains = { } ] }, + 6789: { + name: 'Gold Smart Chain Mainnet', + chain: 'STAND', + icon: 'stand', + rpc: ['https://rpc-mainnet.goldsmartchain.com'], + faucets: ['https://faucet.goldsmartchain.com'], + nativeCurrency: { name: 'Standard in Gold', symbol: 'STAND', decimals: 18 }, + infoURL: 'https://goldsmartchain.com', + shortName: 'STANDm', + chainId: 6789, + networkId: 6789, + explorers: [ + { + name: 'Gold Smart Chain', + url: 'https://mainnet.goldsmartchain.com', + standard: 'EIP3091' + } + ] + }, + 6969: { + name: 'Tomb Chain Mainnet', + chain: 'Tomb Chain', + rpc: ['https://rpc.tombchain.com/'], + faucets: [], + nativeCurrency: { name: 'Tomb', symbol: 'TOMB', decimals: 18 }, + infoURL: 'https://tombchain.com/', + shortName: 'tombchain', + chainId: 6969, + networkId: 6969, + explorers: [ + { + name: 'tombscout', + url: 'https://tombscout.com', + standard: 'none' + } + ], + parent: { + type: 'L2', + chain: 'eip155-250', + bridges: [{ url: 'https://lif3.com/bridge' }] + } + }, + 6999: { + name: 'PolySmartChain', + chain: 'PSC', + rpc: [ + 'https://seed0.polysmartchain.com/', + 'https://seed1.polysmartchain.com/', + 'https://seed2.polysmartchain.com/' + ], + faucets: [], + nativeCurrency: { name: 'PSC', symbol: 'PSC', decimals: 18 }, + infoURL: 'https://www.polysmartchain.com/', + shortName: 'psc', + chainId: 6999, + networkId: 6999 + }, + 7000: { + name: 'ZetaChain Mainnet', + chain: 'ZetaChain', + icon: 'zetachain', + rpc: ['https://api.mainnet.zetachain.com/evm'], + faucets: [], + nativeCurrency: { name: 'Zeta', symbol: 'ZETA', decimals: 18 }, + infoURL: 'https://docs.zetachain.com/', + shortName: 'zetachain-mainnet', + chainId: 7000, + networkId: 7000, + status: 'incubating', + explorers: [ + { + name: 'ZetaChain Mainnet Explorer', + url: 'https://explorer.mainnet.zetachain.com', + standard: 'none' + } + ] + }, + 7001: { + name: 'ZetaChain Athens Testnet', + chain: 'ZetaChain', + icon: 'zetachain', + rpc: ['https://api.athens2.zetachain.com/evm'], + faucets: ['https://labs.zetachain.com/get-zeta'], + nativeCurrency: { name: 'Zeta', symbol: 'aZETA', decimals: 18 }, + infoURL: 'https://docs.zetachain.com/', + shortName: 'zetachain-athens', + chainId: 7001, + networkId: 7001, + status: 'active', + explorers: [ + { + name: 'ZetaChain Athens Testnet Explorer', + url: 'https://explorer.athens.zetachain.com', + standard: 'none' + } + ] + }, 7027: { name: 'Ella the heart', chain: 'ella', @@ -4898,6 +8607,48 @@ export const chains: Chains = { { name: 'Ella', url: 'https://ella.network', standard: 'EIP3091' } ] }, + 7070: { + name: 'Planq Mainnet', + chain: 'Planq', + icon: 'planq', + rpc: ['https://evm-rpc.planq.network'], + faucets: [], + nativeCurrency: { name: 'Planq', symbol: 'PLQ', decimals: 18 }, + infoURL: 'https://planq.network', + shortName: 'planq', + chainId: 7070, + networkId: 7070, + explorers: [ + { + name: 'Planq EVM Explorer (Blockscout)', + url: 'https://evm.planq.network', + standard: 'none' + }, + { + name: 'Planq Cosmos Explorer (BigDipper)', + url: 'https://explorer.planq.network', + standard: 'none' + } + ] + }, + 7331: { + name: 'KLYNTAR', + chain: 'KLY', + rpc: [ + 'https://evm.klyntar.org/kly_evm_rpc', + 'https://evm.klyntarscan.org/kly_evm_rpc' + ], + faucets: [], + nativeCurrency: { name: 'KLYNTAR', symbol: 'KLY', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://klyntar.org', + shortName: 'kly', + chainId: 7331, + networkId: 7331, + icon: 'klyntar', + explorers: [], + status: 'incubating' + }, 7341: { name: 'Shyft Mainnet', chain: 'SHYFT', @@ -4918,6 +8669,38 @@ export const chains: Chains = { } ] }, + 7700: { + name: 'Canto', + chain: 'Canto', + rpc: [ + 'https://canto.slingshot.finance', + 'https://canto.neobase.one', + 'https://mainnode.plexnode.org:8545' + ], + faucets: [], + nativeCurrency: { name: 'Canto', symbol: 'CANTO', decimals: 18 }, + infoURL: 'https://canto.io', + shortName: 'canto', + chainId: 7700, + networkId: 7700, + explorers: [ + { + name: 'Canto EVM Explorer (Blockscout)', + url: 'https://evm.explorer.canto.io', + standard: 'none' + }, + { + name: 'Canto Cosmos Explorer', + url: 'https://cosmos-explorers.neobase.one', + standard: 'none' + }, + { + name: 'Canto EVM Explorer (Blockscout)', + url: 'https://tuber.build', + standard: 'none' + } + ] + }, 7777: { name: 'Rise of the Warbots Testnet', chain: 'nmactest', @@ -4931,7 +8714,7 @@ export const chains: Chains = { faucets: [], nativeCurrency: { name: 'Nano Machines', symbol: 'NMAC', decimals: 18 }, infoURL: 'https://riseofthewarbots.com/', - shortName: 'Rise of the Warbots Testnet', + shortName: 'RiseOfTheWarbotsTestnet', chainId: 7777, networkId: 7777, explorers: [ @@ -5028,20 +8811,122 @@ export const chains: Chains = { networkId: 8029 }, 8080: { - name: 'GeneChain Adenine Testnet', - chain: 'GeneChain', - rpc: ['https://rpc-testnet.genechain.io'], - faucets: ['https://faucet.genechain.io'], - nativeCurrency: { name: 'Testnet RNA', symbol: 'tRNA', decimals: 18 }, - infoURL: 'https://scan-testnet.genechain.io/', - shortName: 'GeneChainAdn', + name: 'Shardeum Liberty 1.X', + chain: 'Shardeum', + icon: 'shardeum', + rpc: ['https://liberty10.shardeum.org/'], + faucets: ['https://faucet.liberty10.shardeum.org'], + nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 }, + infoURL: 'https://docs.shardeum.org/', + shortName: 'Liberty10', chainId: 8080, networkId: 8080, explorers: [ { - name: 'GeneChain Adenine Testnet Scan', - url: 'https://scan-testnet.genechain.io', - standard: 'EIP3091' + name: 'Shardeum Scan', + url: 'https://explorer-liberty10.shardeum.org', + standard: 'none' + } + ], + redFlags: ['reusedChainId'] + }, + 8081: { + name: 'Shardeum Liberty 2.X', + chain: 'Shardeum', + icon: 'shardeum', + rpc: ['https://liberty20.shardeum.org/'], + faucets: ['https://faucet.liberty20.shardeum.org'], + nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 }, + infoURL: 'https://docs.shardeum.org/', + shortName: 'Liberty20', + chainId: 8081, + networkId: 8081, + explorers: [ + { + name: 'Shardeum Scan', + url: 'https://explorer-liberty20.shardeum.org', + standard: 'none' + } + ], + redFlags: ['reusedChainId'] + }, + 8082: { + name: 'Shardeum Sphinx 1.X', + chain: 'Shardeum', + icon: 'shardeum', + rpc: ['https://sphinx.shardeum.org/'], + faucets: ['https://faucet-sphinx.shardeum.org/'], + nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 }, + infoURL: 'https://docs.shardeum.org/', + shortName: 'Sphinx10', + chainId: 8082, + networkId: 8082, + explorers: [ + { + name: 'Shardeum Scan', + url: 'https://explorer-sphinx.shardeum.org', + standard: 'none' + } + ], + redFlags: ['reusedChainId'] + }, + 8098: { + name: 'StreamuX Blockchain', + chain: 'StreamuX', + rpc: [ + 'https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/' + ], + faucets: [], + nativeCurrency: { name: 'StreamuX', symbol: 'SmuX', decimals: 18 }, + infoURL: 'https://www.streamux.cloud', + shortName: 'StreamuX', + chainId: 8098, + networkId: 8098 + }, + 8131: { + name: 'Qitmeer Network Testnet', + chain: 'MEER', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Qitmeer Testnet', symbol: 'MEER-T', decimals: 18 }, + infoURL: 'https://github.com/Qitmeer', + shortName: 'meertest', + chainId: 8131, + networkId: 8131, + icon: 'meer', + explorers: [ + { + name: 'meerscan testnet', + url: 'https://testnet.qng.meerscan.io', + standard: 'none' + } + ] + }, + 8181: { + name: 'BeOne Chain Testnet', + chain: 'BOC', + rpc: [ + 'https://pre-boc1.beonechain.com', + 'https://pre-boc2.beonechain.com', + 'https://pre-boc3.beonechain.com' + ], + faucets: ['https://testnet.beonescan.com/faucet'], + nativeCurrency: { + name: 'BeOne Chain Testnet', + symbol: 'BOC', + decimals: 18 + }, + infoURL: 'https://testnet.beonescan.com', + shortName: 'tBOC', + chainId: 8181, + networkId: 8181, + icon: 'beonechain', + explorers: [ + { + name: 'BeOne Chain Testnet', + url: 'https://testnet.beonescan.com', + icon: 'beonechain', + standard: 'none' } ] }, @@ -5064,6 +8949,25 @@ export const chains: Chains = { } ] }, + 8272: { + name: 'Blockton Blockchain', + chain: 'Blockton Blockchain', + icon: 'bton', + rpc: ['https://rpc.blocktonscan.com/'], + faucets: ['https://faucet.blocktonscan.com/'], + nativeCurrency: { name: 'BLOCKTON', symbol: 'BTON', decimals: 18 }, + infoURL: 'https://blocktoncoin.com', + shortName: 'BTON', + chainId: 8272, + networkId: 8272, + explorers: [ + { + name: 'Blockton Explorer', + url: 'https://blocktonscan.com', + standard: 'none' + } + ] + }, 8285: { name: 'KorthoTest', chain: 'Kortho', @@ -5075,6 +8979,62 @@ export const chains: Chains = { chainId: 8285, networkId: 8285 }, + 8387: { + name: 'Dracones Financial Services', + title: 'The Dracones Mainnet', + chain: 'FUCK', + rpc: ['https://api.dracones.net/'], + faucets: [], + nativeCurrency: { + name: 'Functionally Universal Coin Kind', + symbol: 'FUCK', + decimals: 18 + }, + infoURL: 'https://wolfery.com', + shortName: 'fuck', + chainId: 8387, + networkId: 8387, + icon: 'dracones', + explorers: [] + }, + 8453: { + name: 'Base', + chain: 'ETH', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://base.org', + shortName: 'base', + chainId: 8453, + networkId: 8453, + status: 'incubating' + }, + 8654: { + name: 'Toki Network', + chain: 'TOKI', + rpc: ['https://mainnet.buildwithtoki.com/v0/rpc'], + faucets: [], + nativeCurrency: { name: 'Toki', symbol: 'TOKI', decimals: 18 }, + infoURL: 'https://www.buildwithtoki.com', + shortName: 'toki', + chainId: 8654, + networkId: 8654, + icon: 'toki', + explorers: [] + }, + 8655: { + name: 'Toki Testnet', + chain: 'TOKI', + rpc: ['https://testnet.buildwithtoki.com/v0/rpc'], + faucets: [], + nativeCurrency: { name: 'Toki', symbol: 'TOKI', decimals: 18 }, + infoURL: 'https://www.buildwithtoki.com', + shortName: 'toki-testnet', + chainId: 8655, + networkId: 8655, + icon: 'toki', + explorers: [] + }, 8723: { name: 'TOOL Global Mainnet', chain: 'OLO', @@ -5106,23 +9066,182 @@ export const chains: Chains = { networkId: 8724, slip44: 479 }, + 8738: { + name: 'Alph Network', + chain: 'ALPH', + rpc: ['https://rpc.alph.network', 'wss://rpc.alph.network'], + faucets: [], + nativeCurrency: { name: 'Alph Network', symbol: 'ALPH', decimals: 18 }, + infoURL: 'https://alph.network', + shortName: 'alph', + chainId: 8738, + networkId: 8738, + explorers: [ + { + name: 'alphscan', + url: 'https://explorer.alph.network', + standard: 'EIP3091' + } + ] + }, + 8768: { + name: 'TMY Chain', + chain: 'TMY', + icon: 'tmychain', + rpc: ['https://node1.tmyblockchain.org/rpc'], + faucets: ['https://faucet.tmychain.org/'], + nativeCurrency: { name: 'TMY', symbol: 'TMY', decimals: 18 }, + infoURL: 'https://tmychain.org/', + shortName: 'tmy', + chainId: 8768, + networkId: 8768 + }, + 8848: { + name: 'MARO Blockchain Mainnet', + chain: 'MARO Blockchain', + icon: 'MARO', + rpc: ['https://rpc-mainnet.ma.ro'], + faucets: [], + nativeCurrency: { name: 'MARO', symbol: 'MARO', decimals: 18 }, + infoURL: 'https://ma.ro/', + shortName: 'maro', + chainId: 8848, + networkId: 8848, + explorers: [ + { + name: 'MARO Scan', + url: 'https://scan.ma.ro/#', + standard: 'none' + } + ] + }, + 8880: { + name: 'Unique', + icon: 'unique', + chain: 'UNQ', + rpc: [ + 'https://rpc.unique.network', + 'https://eu-rpc.unique.network', + 'https://asia-rpc.unique.network', + 'https://us-rpc.unique.network' + ], + faucets: [], + nativeCurrency: { name: 'Unique', symbol: 'UNQ', decimals: 18 }, + infoURL: 'https://unique.network', + shortName: 'unq', + chainId: 8880, + networkId: 8880, + explorers: [ + { + name: 'Unique Scan', + url: 'https://uniquescan.io/unique', + standard: 'none' + } + ] + }, + 8881: { + name: 'Quartz by Unique', + icon: 'quartz', + chain: 'UNQ', + rpc: [ + 'https://rpc-quartz.unique.network', + 'https://quartz.api.onfinality.io/public-ws', + 'https://eu-rpc-quartz.unique.network', + 'https://asia-rpc-quartz.unique.network', + 'https://us-rpc-quartz.unique.network' + ], + faucets: [], + nativeCurrency: { name: 'Quartz', symbol: 'QTZ', decimals: 18 }, + infoURL: 'https://unique.network', + shortName: 'qtz', + chainId: 8881, + networkId: 8881, + explorers: [ + { + name: 'Unique Scan / Quartz', + url: 'https://uniquescan.io/quartz', + standard: 'none' + } + ] + }, + 8882: { + name: 'Opal testnet by Unique', + icon: 'opal', + chain: 'UNQ', + rpc: [ + 'https://rpc-opal.unique.network', + 'https://us-rpc-opal.unique.network', + 'https://eu-rpc-opal.unique.network', + 'https://asia-rpc-opal.unique.network' + ], + faucets: ['https://t.me/unique2faucet_opal_bot'], + nativeCurrency: { name: 'Opal', symbol: 'UNQ', decimals: 18 }, + infoURL: 'https://unique.network', + shortName: 'opl', + chainId: 8882, + networkId: 8882, + explorers: [ + { + name: 'Unique Scan / Opal', + url: 'https://uniquescan.io/opal', + standard: 'none' + } + ] + }, + 8883: { + name: 'Sapphire by Unique', + icon: 'sapphire', + chain: 'UNQ', + rpc: [ + 'https://rpc-sapphire.unique.network', + 'https://us-rpc-sapphire.unique.network', + 'https://eu-rpc-sapphire.unique.network', + 'https://asia-rpc-sapphire.unique.network' + ], + faucets: [], + nativeCurrency: { name: 'Quartz', symbol: 'QTZ', decimals: 18 }, + infoURL: 'https://unique.network', + shortName: 'sph', + chainId: 8883, + networkId: 8883, + explorers: [ + { + name: 'Unique Scan / Sapphire', + url: 'https://uniquescan.io/sapphire', + standard: 'none' + } + ] + }, 8888: { - name: 'Ambros Chain Testnet', - chain: 'ambroschain', - rpc: ['https://api.testnet.ambros.network'], + name: 'XANAChain', + chain: 'XANAChain', + rpc: ['https://mainnet.xana.net/rpc'], faucets: [], - nativeCurrency: { name: 'AMBROS', symbol: 'AMBROS', decimals: 18 }, - infoURL: 'https://test.ambros.network', - shortName: 'ambrostestnet', + nativeCurrency: { name: 'XETA', symbol: 'XETA', decimals: 18 }, + infoURL: 'https://xanachain.xana.net/', + shortName: 'XANAChain', chainId: 8888, networkId: 8888, + icon: 'xeta', explorers: [ { - name: 'Ambros Chain Explorer', - url: 'https://testnet.ambrosscan.com', - standard: 'none' + name: 'XANAChain', + url: 'https://xanachain.xana.net', + standard: 'EIP3091' } - ] + ], + redFlags: ['reusedChainId'] + }, + 8889: { + name: 'Vyvo Smart Chain', + chain: 'VSC', + rpc: ['https://vsc-dataseed.vyvo.org:8889'], + faucets: [], + nativeCurrency: { name: 'VSC', symbol: 'VSC', decimals: 18 }, + infoURL: 'https://vsc-dataseed.vyvo.org', + shortName: 'vsc', + chainId: 8889, + networkId: 8889 }, 8898: { name: 'Mammoth Mainnet', @@ -5149,6 +9268,50 @@ export const chains: Chains = { } ] }, + 8899: { + name: 'JIBCHAIN L1', + chain: 'JBC', + rpc: ['https://rpc-l1.jibchain.net'], + faucets: [], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + nativeCurrency: { name: 'JIBCOIN', symbol: 'JBC', decimals: 18 }, + infoURL: 'https://jibchain.net', + shortName: 'jbc', + chainId: 8899, + networkId: 8899, + explorers: [ + { + name: 'JIBCHAIN Explorer', + url: 'https://exp-l1.jibchain.net', + standard: 'EIP3091' + } + ] + }, + 8989: { + name: 'Giant Mammoth Mainnet', + title: 'Giant Mammoth Chain', + chain: 'GMMT', + rpc: ['https://rpc-asia.gmmtchain.io'], + faucets: [], + nativeCurrency: { + name: 'Giant Mammoth Coin', + symbol: 'GMMT', + decimals: 18 + }, + infoURL: 'https://gmmtchain.io/', + shortName: 'gmmt', + chainId: 8989, + networkId: 8989, + icon: 'gmmt', + explorers: [ + { + name: 'gmmtscan', + url: 'https://scan.gmmtchain.io', + standard: 'EIP3091', + icon: 'gmmt' + } + ] + }, 8995: { name: 'bloxberg', chain: 'bloxberg', @@ -5189,7 +9352,7 @@ export const chains: Chains = { 9001: { name: 'Evmos', chain: 'Evmos', - rpc: ['https://eth.bd.evmos.org:8545'], + rpc: ['https://eth.bd.evmos.org:8545', 'https://evmos-evm.publicnode.com'], faucets: [], nativeCurrency: { name: 'Evmos', symbol: 'EVMOS', decimals: 18 }, infoURL: 'https://evmos.org', @@ -5199,8 +9362,8 @@ export const chains: Chains = { icon: 'evmos', explorers: [ { - name: 'Evmos EVM Explorer (Blockscout)', - url: 'https://evm.evmos.org', + name: 'Evmos EVM Explorer (Escan)', + url: 'https://escan.live', standard: 'none', icon: 'evmos' }, @@ -5212,6 +9375,29 @@ export const chains: Chains = { } ] }, + 9012: { + name: 'BerylBit Mainnet', + chain: 'BRB', + rpc: ['https://mainnet.berylbit.io'], + faucets: ['https://t.me/BerylBit'], + nativeCurrency: { + name: 'BerylBit Chain Native Token', + symbol: 'BRB', + decimals: 18 + }, + infoURL: 'https://www.beryl-bit.com', + shortName: 'brb', + chainId: 9012, + networkId: 9012, + icon: 'berylbit', + explorers: [ + { + name: 'berylbit-explorer', + url: 'https://explorer.berylbit.io', + standard: 'EIP3091' + } + ] + }, 9100: { name: 'Genesis Coin', chain: 'Genesis', @@ -5223,6 +9409,39 @@ export const chains: Chains = { chainId: 9100, networkId: 9100 }, + 9170: { + name: 'Rinia Testnet Old', + chain: 'FIRE', + icon: 'rinia', + rpc: [], + faucets: ['https://faucet.thefirechain.com'], + nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 }, + infoURL: 'https://thefirechain.com', + shortName: '_old_tfire', + chainId: 9170, + networkId: 9170, + explorers: [], + status: 'deprecated' + }, + 9339: { + name: 'Dogcoin Testnet', + chain: 'DOGS', + icon: 'dogs', + rpc: ['https://testnet-rpc.dogcoin.me'], + faucets: ['https://faucet.dogcoin.network'], + nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 }, + infoURL: 'https://dogcoin.network', + shortName: 'DOGSt', + chainId: 9339, + networkId: 9339, + explorers: [ + { + name: 'Dogcoin', + url: 'https://testnet.dogcoin.network', + standard: 'EIP3091' + } + ] + }, 9527: { name: 'Rangers Protocol Testnet Robin', chain: 'Rangers', @@ -5246,6 +9465,79 @@ export const chains: Chains = { } ] }, + 9528: { + name: 'QEasyWeb3 Testnet', + chain: 'QET', + rpc: ['https://qeasyweb3.com'], + faucets: ['http://faucet.qeasyweb3.com'], + nativeCurrency: { name: 'QET', symbol: 'QET', decimals: 18 }, + infoURL: 'https://www.qeasyweb3.com', + shortName: 'QETTest', + chainId: 9528, + networkId: 9528, + explorers: [ + { + name: 'QEasyWeb3 Explorer', + url: 'https://www.qeasyweb3.com', + standard: 'EIP3091' + } + ] + }, + 9700: { + name: 'Oort MainnetDev', + title: 'Oort MainnetDev', + chain: 'MainnetDev', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Oort', symbol: 'CCN', decimals: 18 }, + infoURL: 'https://oortech.com', + shortName: 'MainnetDev', + chainId: 9700, + networkId: 9700, + icon: 'ccn' + }, + 9728: { + name: 'Boba BNB Testnet', + chain: 'Boba BNB Testnet', + rpc: [ + 'https://testnet.bnb.boba.network', + 'wss://wss.testnet.bnb.boba.network', + 'https://replica.testnet.bnb.boba.network', + 'wss://replica-wss.testnet.bnb.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'BobaBnbTestnet', + chainId: 9728, + networkId: 9728, + explorers: [ + { + name: 'Boba BNB Testnet block explorer', + url: 'https://blockexplorer.testnet.bnb.boba.network', + standard: 'none' + } + ] + }, + 9768: { + name: 'MainnetZ Testnet', + chain: 'NetZ', + icon: 'mainnetzTestnet', + rpc: ['https://testnet-rpc.mainnetz.io'], + faucets: ['https://faucet.mainnetz.io'], + nativeCurrency: { name: 'MainnetZ', symbol: 'NetZ', decimals: 18 }, + infoURL: 'https://testnet.mainnetz.io', + shortName: 'NetZt', + chainId: 9768, + networkId: 9768, + explorers: [ + { + name: 'MainnetZ', + url: 'https://testnet.mainnetz.io', + standard: 'EIP3091' + } + ] + }, 9999: { name: 'myOwn Testnet', chain: 'myOwn', @@ -5291,6 +9583,39 @@ export const chains: Chains = { chainId: 10001, networkId: 10001 }, + 10024: { + name: 'Gon Chain', + chain: 'GonChain', + icon: 'gonchain', + rpc: [ + 'https://node1.testnet.gaiaopen.network', + 'http://database1.gaiaopen.network' + ], + faucets: [], + nativeCurrency: { name: 'Gon Token', symbol: 'GT', decimals: 18 }, + infoURL: '', + shortName: 'gon', + chainId: 10024, + networkId: 10024, + explorers: [ + { + name: 'Gon Explorer', + url: 'https://gonscan.com', + standard: 'none' + } + ] + }, + 10086: { + name: 'SJATSH', + chain: 'ETH', + rpc: ['http://geth.free.idcfengye.com'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://sjis.me', + shortName: 'SJ', + chainId: 10086, + networkId: 10086 + }, 10101: { name: 'Blockchain Genesis Mainnet', chain: 'GEN', @@ -5306,6 +9631,88 @@ export const chains: Chains = { chainId: 10101, networkId: 10101 }, + 10200: { + name: 'Chiado Testnet', + chain: 'CHI', + icon: 'gnosis', + rpc: [ + 'https://rpc.chiadochain.net', + 'https://rpc.eu-central-2.gateway.fm/v3/gnosis/archival/chiado' + ], + faucets: ['https://gnosisfaucet.com'], + nativeCurrency: { name: 'Chiado xDAI', symbol: 'xDAI', decimals: 18 }, + infoURL: 'https://docs.gnosischain.com', + shortName: 'chi', + chainId: 10200, + networkId: 10200, + explorers: [ + { + name: 'blockscout', + url: 'https://blockscout.chiadochain.net', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, + 10248: { + name: '0XTade', + chain: '0XTade Chain', + rpc: ['https://node.0xtchain.com'], + faucets: [], + nativeCurrency: { name: '0XT', symbol: '0XT', decimals: 18 }, + infoURL: 'https://www.0xtrade.finance/', + shortName: '0xt', + chainId: 10248, + networkId: 10248, + explorers: [ + { + name: '0xtrade Scan', + url: 'https://www.0xtscan.com', + standard: 'none' + } + ] + }, + 10507: { + name: 'Numbers Mainnet', + chain: 'NUM', + icon: 'num', + rpc: ['https://mainnetrpc.num.network'], + faucets: [], + nativeCurrency: { name: 'NUM Token', symbol: 'NUM', decimals: 18 }, + infoURL: 'https://numbersprotocol.io', + shortName: 'Jade', + chainId: 10507, + networkId: 10507, + explorers: [ + { + name: 'ethernal', + url: 'https://mainnet.num.network', + standard: 'EIP3091' + } + ] + }, + 10508: { + name: 'Numbers Testnet', + chain: 'NUM', + icon: 'num', + rpc: ['https://testnetrpc.num.network'], + faucets: [ + 'https://faucet.avax.network/?subnet=num', + 'https://faucet.num.network' + ], + nativeCurrency: { name: 'NUM Token', symbol: 'NUM', decimals: 18 }, + infoURL: 'https://numbersprotocol.io', + shortName: 'Snow', + chainId: 10508, + networkId: 10508, + explorers: [ + { + name: 'ethernal', + url: 'https://testnet.num.network', + standard: 'EIP3091' + } + ] + }, 10823: { name: 'CryptoCoinPay', chain: 'CCP', @@ -5331,7 +9738,6 @@ export const chains: Chains = { 10946: { name: 'Quadrans Blockchain', chain: 'QDC', - network: 'mainnet', icon: 'quadrans', rpc: [ 'https://rpc.quadrans.io', @@ -5356,7 +9762,6 @@ export const chains: Chains = { 10947: { name: 'Quadrans Blockchain Testnet', chain: 'tQDC', - network: 'testnet', icon: 'quadrans', rpc: ['https://rpctest.quadrans.io', 'https://rpctest2.quadrans.io'], faucets: ['https://faucetpage.quadrans.io'], @@ -5378,21 +9783,113 @@ export const chains: Chains = { } ] }, + 11110: { + name: 'Astra', + chain: 'Astra', + rpc: ['https://rpc.astranaut.io', 'https://rpc1.astranaut.io'], + faucets: [], + nativeCurrency: { name: 'Astra', symbol: 'ASA', decimals: 18 }, + infoURL: 'https://astranaut.io', + shortName: 'astra', + chainId: 11110, + networkId: 11110, + icon: 'astra', + explorers: [ + { + name: 'Astra EVM Explorer (Blockscout)', + url: 'https://explorer.astranaut.io', + standard: 'none', + icon: 'astra' + }, + { + name: 'Astra PingPub Explorer', + url: 'https://ping.astranaut.io/astra', + standard: 'none', + icon: 'astra' + } + ] + }, 11111: { name: 'WAGMI', chain: 'WAGMI', icon: 'wagmi', rpc: ['https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc'], - faucets: ['https://faucet.trywagmi.xyz'], + faucets: ['https://faucet.avax.network/?subnet=wagmi'], nativeCurrency: { name: 'WAGMI', symbol: 'WGM', decimals: 18 }, - infoURL: 'https://trywagmi.xyz', + infoURL: 'https://subnets-test.avax.network/wagmi/details', shortName: 'WAGMI', chainId: 11111, networkId: 11111, explorers: [ { - name: 'WAGMI Explorer', - url: 'https://subnets.avax.network/wagmi/wagmi-chain-testnet/explorer', + name: 'Avalanche Subnet Explorer', + url: 'https://subnets-test.avax.network/wagmi', + standard: 'EIP3091' + } + ] + }, + 11115: { + name: 'Astra Testnet', + chain: 'Astra', + rpc: ['https://rpc.astranaut.dev'], + faucets: ['https://faucet.astranaut.dev'], + nativeCurrency: { name: 'test-Astra', symbol: 'tASA', decimals: 18 }, + infoURL: 'https://astranaut.io', + shortName: 'astra-testnet', + chainId: 11115, + networkId: 11115, + icon: 'astra', + explorers: [ + { + name: 'Astra EVM Explorer', + url: 'https://explorer.astranaut.dev', + standard: 'EIP3091', + icon: 'astra' + }, + { + name: 'Astra PingPub Explorer', + url: 'https://ping.astranaut.dev/astra', + standard: 'none', + icon: 'astra' + } + ] + }, + 11119: { + name: 'HashBit Mainnet', + chain: 'HBIT', + rpc: ['https://mainnet-rpc.hashbit.org', 'https://rpc.hashbit.org'], + faucets: ['https://free-online-app.com/faucet-for-eth-evm-chains/'], + nativeCurrency: { + name: 'HashBit Native Token', + symbol: 'HBIT', + decimals: 18 + }, + infoURL: 'https://hashbit.org', + shortName: 'hbit', + chainId: 11119, + networkId: 11119, + explorers: [ + { + name: 'hashbitscan', + url: 'https://explorer.hashbit.org', + standard: 'EIP3091' + } + ] + }, + 11235: { + name: 'Haqq Network', + chain: 'Haqq', + rpc: ['https://rpc.eth.haqq.network'], + faucets: [], + nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 }, + infoURL: 'https://islamiccoin.net', + shortName: 'ISLM', + chainId: 11235, + networkId: 11235, + explorers: [ + { + name: 'Mainnet HAQQ Explorer', + url: 'https://explorer.haqq.network', standard: 'EIP3091' } ] @@ -5401,7 +9898,7 @@ export const chains: Chains = { name: 'Shyft Testnet', chain: 'SHYFTT', icon: 'shyft', - rpc: ['https://rpc.testnet.shyft.network/'], + rpc: [], faucets: [], nativeCurrency: { name: 'Shyft Test Token', @@ -5420,6 +9917,49 @@ export const chains: Chains = { } ] }, + 11612: { + name: 'Sardis Testnet', + chain: 'SRDX', + icon: 'sardisTestnet', + rpc: ['https://testnet-rpc.sardisnetwork.com'], + faucets: ['https://faucet.sardisnetwork.com'], + nativeCurrency: { name: 'Sardis', symbol: 'SRDX', decimals: 18 }, + infoURL: 'https://mysardis.com', + shortName: 'SRDXt', + chainId: 11612, + networkId: 11612, + explorers: [ + { + name: 'Sardis', + url: 'https://testnet.sardisnetwork.com', + standard: 'EIP3091' + } + ] + }, + 11888: { + name: 'SanR Chain', + chain: 'SanRChain', + rpc: ['https://sanrchain-node.santiment.net'], + faucets: [], + nativeCurrency: { name: 'nSAN', symbol: 'nSAN', decimals: 18 }, + infoURL: 'https://sanr.app', + shortName: 'SAN', + chainId: 11888, + networkId: 11888, + icon: 'sanrchain', + parent: { + chain: 'eip155-1', + type: 'L2', + bridges: [{ url: 'https://sanr.app' }] + }, + explorers: [ + { + name: 'SanR Chain Explorer', + url: 'https://sanrchain-explorer.santiment.net', + standard: 'none' + } + ] + }, 12051: { name: 'Singularity ZERO Testnet', chain: 'ZERO', @@ -5457,23 +9997,210 @@ export const chains: Chains = { } ] }, - 13381: { - name: 'Phoenix Mainnet', - chain: 'Phoenix', - network: 'mainnet', - rpc: ['https://rpc.phoenixplorer.com/'], + 12306: { + name: 'Fibonacci Mainnet', + chain: 'FIBO', + icon: 'fibonacci', + rpc: ['https://node1.fibo-api.asia'], + faucets: [], + nativeCurrency: { + name: 'FIBONACCI UTILITY TOKEN', + symbol: 'FIBO', + decimals: 18 + }, + infoURL: 'https://fibochain.org', + shortName: 'fibo', + chainId: 12306, + networkId: 1230, + explorers: [ + { + name: 'fiboscan', + url: 'https://scan.fibochain.org', + standard: 'EIP3091' + } + ] + }, + 12321: { + name: 'BLG Testnet', + chain: 'BLG', + icon: 'blg', + rpc: ['https://rpc.blgchain.com'], + faucets: ['https://faucet.blgchain.com'], + nativeCurrency: { name: 'Blg', symbol: 'BLG', decimals: 18 }, + infoURL: 'https://blgchain.com', + shortName: 'blgchain', + chainId: 12321, + networkId: 12321 + }, + 12345: { + name: 'Step Testnet', + title: 'Step Test Network', + chain: 'STEP', + icon: 'step', + rpc: ['https://rpc.testnet.step.network'], + faucets: ['https://faucet.step.network'], + nativeCurrency: { name: 'FITFI', symbol: 'FITFI', decimals: 18 }, + infoURL: 'https://step.network', + shortName: 'steptest', + chainId: 12345, + networkId: 12345, + explorers: [ + { + name: 'StepScan', + url: 'https://testnet.stepscan.io', + icon: 'step', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-43113' } + }, + 12715: { + name: 'Rikeza Network Testnet', + title: 'Rikeza Network Testnet', + chain: 'Rikeza', + rpc: ['https://testnet-rpc.rikscan.com'], + faucets: [], + nativeCurrency: { name: 'Rikeza', symbol: 'RIK', decimals: 18 }, + infoURL: 'https://rikeza.io', + shortName: 'tRIK', + chainId: 12715, + networkId: 12715, + explorers: [ + { + name: 'Rikeza Blockchain explorer', + url: 'https://testnet.rikscan.com', + standard: 'EIP3091' + } + ] + }, + 13000: { + name: 'SPS', + chain: 'SPS', + rpc: ['https://rpc.ssquad.games'], + faucets: [], + nativeCurrency: { name: 'ECG', symbol: 'ECG', decimals: 18 }, + infoURL: 'https://ssquad.games/', + shortName: 'SPS', + chainId: 13000, + networkId: 13000, + explorers: [ + { + name: 'SPS Explorer', + url: 'http://spsscan.ssquad.games', + standard: 'EIP3091' + } + ] + }, + 13308: { + name: 'Credit Smartchain Mainnet', + chain: 'CREDIT', + rpc: ['https://mainnet-rpc.cscscan.io'], + faucets: [], + nativeCurrency: { name: 'Credit', symbol: 'CREDIT', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://creditsmartchain.com', + shortName: 'Credit', + chainId: 13308, + networkId: 1, + icon: 'credit', + explorers: [ + { + name: 'CSC Scan', + url: 'https://explorer.cscscan.io', + icon: 'credit', + standard: 'EIP3091' + } + ] + }, + 13381: { + name: 'Phoenix Mainnet', + chain: 'Phoenix', + rpc: ['https://rpc.phoenixplorer.com/'], + faucets: [], + nativeCurrency: { name: 'Phoenix', symbol: 'PHX', decimals: 18 }, + infoURL: 'https://cryptophoenix.org/phoenix', + shortName: 'Phoenix', + chainId: 13381, + networkId: 13381, + icon: 'phoenix', + explorers: [ + { + name: 'phoenixplorer', + url: 'https://phoenixplorer.com', + standard: 'EIP3091' + } + ] + }, + 13812: { + name: 'Susono', + chain: 'SUS', + rpc: [ + 'https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc' + ], + faucets: [], + nativeCurrency: { name: 'Susono', symbol: 'OPN', decimals: 18 }, + infoURL: '', + shortName: 'sus', + chainId: 13812, + networkId: 13812, + explorers: [ + { + name: 'Susono', + url: 'http://explorer.opn.network', + standard: 'none' + } + ] + }, + 14000: { + name: 'SPS Testnet', + chain: 'SPS-Testnet', + rpc: ['https://www.3sps.net'], + faucets: [], + nativeCurrency: { name: 'ECG', symbol: 'ECG', decimals: 18 }, + infoURL: 'https://ssquad.games/', + shortName: 'SPS-Test', + chainId: 14000, + networkId: 14000, + explorers: [ + { + name: 'SPS Test Explorer', + url: 'https://explorer.3sps.net', + standard: 'EIP3091' + } + ] + }, + 15551: { + name: 'LoopNetwork Mainnet', + chain: 'LoopNetwork', + rpc: ['https://api.mainnetloop.com'], faucets: [], - nativeCurrency: { name: 'Phoenix', symbol: 'PHX', decimals: 18 }, - infoURL: 'https://cryptophoenix.org/phoenix', - shortName: 'Phoenix', - chainId: 13381, - networkId: 13381, - icon: 'phoenix', + nativeCurrency: { name: 'LOOP', symbol: 'LOOP', decimals: 18 }, + infoURL: 'http://theloopnetwork.org/', + shortName: 'loop', + chainId: 15551, + networkId: 15551, explorers: [ { - name: 'phoenixplorer', - url: 'https://phoenixplorer.com', - icon: 'phoenixplorer', + name: 'loopscan', + url: 'http://explorer.mainnetloop.com', + standard: 'none' + } + ] + }, + 15555: { + name: 'Trust EVM Testnet', + chain: 'Trust EVM Testnet', + rpc: ['https://api.testnet-dev.trust.one'], + faucets: ['https://faucet.testnet-dev.trust.one/'], + nativeCurrency: { name: 'Trust EVM', symbol: 'EVM', decimals: 18 }, + infoURL: 'https://www.trust.one/', + shortName: 'TrustTestnet', + chainId: 15555, + networkId: 15555, + explorers: [ + { + name: 'Trust EVM Explorer', + url: 'https://trustscan.one', standard: 'EIP3091' } ] @@ -5504,6 +10231,25 @@ export const chains: Chains = { chainId: 16001, networkId: 16001 }, + 16718: { + name: 'AirDAO Mainnet', + chain: 'ambnet', + icon: 'airdao', + rpc: ['https://network.ambrosus.io'], + faucets: [], + nativeCurrency: { name: 'Amber', symbol: 'AMB', decimals: 18 }, + infoURL: 'https://airdao.io', + shortName: 'airdao', + chainId: 16718, + networkId: 16718, + explorers: [ + { + name: 'AirDAO Network Explorer', + url: 'https://airdao.io/explorer', + standard: 'none' + } + ] + }, 16888: { name: 'IVAR Chain Testnet', chain: 'IVAR', @@ -5523,6 +10269,69 @@ export const chains: Chains = { } ] }, + 18000: { + name: 'Frontier of Dreams Testnet', + chain: 'Game Network', + rpc: ['https://rpc.fod.games/'], + nativeCurrency: { name: 'ZKST', symbol: 'ZKST', decimals: 18 }, + faucets: [], + shortName: 'ZKST', + chainId: 18000, + networkId: 18000, + infoURL: 'https://goexosphere.com', + explorers: [ + { + name: 'Game Network', + url: 'https://explorer.fod.games', + standard: 'EIP3091' + } + ] + }, + 18159: { + name: 'Proof Of Memes', + title: 'Proof Of Memes Mainnet', + chain: 'POM', + icon: 'pom', + rpc: [ + 'https://mainnet-rpc.memescan.io', + 'https://mainnet-rpc2.memescan.io', + 'https://mainnet-rpc3.memescan.io', + 'https://mainnet-rpc4.memescan.io' + ], + faucets: [], + nativeCurrency: { name: 'Proof Of Memes', symbol: 'POM', decimals: 18 }, + infoURL: 'https://proofofmemes.org', + shortName: 'pom', + chainId: 18159, + networkId: 18159, + explorers: [ + { + name: 'explorer-proofofmemes', + url: 'https://memescan.io', + standard: 'EIP3091' + } + ] + }, + 19011: { + name: 'HOME Verse Mainnet', + chain: 'HOME Verse', + icon: 'home_verse', + rpc: ['https://rpc.mainnet.oasys.homeverse.games/'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://www.homeverse.games/', + shortName: 'HMV', + chainId: 19011, + networkId: 19011, + explorers: [ + { + name: 'HOME Verse Explorer', + url: 'https://explorer.oasys.homeverse.games', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-248' } + }, 19845: { name: 'BTCIX Network', chain: 'BTCIX', @@ -5541,10 +10350,40 @@ export const chains: Chains = { } ] }, + 20729: { + name: 'Callisto Testnet', + chain: 'CLO', + rpc: ['https://testnet-rpc.callisto.network/'], + faucets: ['https://faucet.callisto.network/'], + nativeCurrency: { name: 'Callisto', symbol: 'CLO', decimals: 18 }, + infoURL: 'https://callisto.network', + shortName: 'CLOTestnet', + chainId: 20729, + networkId: 79 + }, + 20736: { + name: 'P12 Chain', + chain: 'P12', + icon: 'p12', + rpc: ['https://rpc-chain.p12.games'], + faucets: [], + nativeCurrency: { name: 'Hooked P2', symbol: 'hP2', decimals: 18 }, + infoURL: 'https://p12.network', + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + shortName: 'p12', + chainId: 20736, + networkId: 20736, + explorers: [ + { + name: 'P12 Chain Explorer', + url: 'https://explorer.p12.games', + standard: 'EIP3091' + } + ] + }, 21337: { name: 'CENNZnet Azalea', chain: 'CENNZnet', - network: 'azalea', rpc: ['https://cennznet.unfrastructure.io/public'], faucets: [], nativeCurrency: { name: 'CPAY', symbol: 'CPAY', decimals: 18 }, @@ -5583,7 +10422,6 @@ export const chains: Chains = { 22023: { name: 'Taycan', chain: 'Taycan', - network: 'mainnet', rpc: ['https://taycan-rpc.hupayx.io:8545'], faucets: [], nativeCurrency: { name: 'shuffle', symbol: 'SFL', decimals: 18 }, @@ -5591,23 +10429,125 @@ export const chains: Chains = { shortName: 'SFL', chainId: 22023, networkId: 22023, + icon: 'shuffle', explorers: [ { name: 'Taycan Explorer(Blockscout)', url: 'https://taycan-evmscan.hupayx.io', - standard: 'none' + standard: 'none', + icon: 'shuffle' }, { name: 'Taycan Cosmos Explorer(BigDipper)', url: 'https://taycan-cosmoscan.hupayx.io', + standard: 'none', + icon: 'shuffle' + } + ] + }, + 22040: { + name: 'AirDAO Testnet', + chain: 'ambnet-test', + icon: 'airdao', + rpc: ['https://network.ambrosus-test.io'], + faucets: [], + nativeCurrency: { name: 'Amber', symbol: 'AMB', decimals: 18 }, + infoURL: 'https://testnet.airdao.io', + shortName: 'airdao-test', + chainId: 22040, + networkId: 22040, + explorers: [ + { + name: 'AirDAO Network Explorer', + url: 'https://testnet.airdao.io/explorer', standard: 'none' } ] }, + 22776: { + name: 'MAP Mainnet', + chain: 'MAP', + icon: 'map', + rpc: ['https://rpc.maplabs.io'], + faucets: [], + nativeCurrency: { name: 'MAP', symbol: 'MAP', decimals: 18 }, + infoURL: 'https://maplabs.io', + shortName: 'map', + chainId: 22776, + networkId: 22776, + slip44: 60, + explorers: [ + { name: 'mapscan', url: 'https://mapscan.io', standard: 'EIP3091' } + ] + }, + 23118: { + name: 'Opside Testnet', + chain: 'Opside', + rpc: ['https://testrpc.opside.network'], + faucets: ['https://faucet.opside.network'], + nativeCurrency: { name: 'IDE', symbol: 'IDE', decimals: 18 }, + infoURL: 'https://opside.network', + shortName: 'opside', + chainId: 23118, + networkId: 23118, + icon: 'opside', + explorers: [ + { + name: 'opsideInfo', + url: 'https://opside.info', + standard: 'EIP3091' + } + ] + }, + 23294: { + name: 'Oasis Sapphire', + chain: 'Sapphire', + icon: 'oasis', + rpc: ['https://sapphire.oasis.io', 'wss://sapphire.oasis.io/ws'], + faucets: [], + nativeCurrency: { name: 'Sapphire Rose', symbol: 'ROSE', decimals: 18 }, + infoURL: 'https://docs.oasis.io/dapp/sapphire', + shortName: 'sapphire', + chainId: 23294, + networkId: 23294, + explorers: [ + { + name: 'Oasis Sapphire Explorer', + url: 'https://explorer.sapphire.oasis.io', + standard: 'EIP3091' + } + ] + }, + 23295: { + name: 'Oasis Sapphire Testnet', + chain: 'Sapphire', + icon: 'oasis', + rpc: [ + 'https://testnet.sapphire.oasis.dev', + 'wss://testnet.sapphire.oasis.dev/ws' + ], + faucets: [], + nativeCurrency: { + name: 'Sapphire Test Rose', + symbol: 'TEST', + decimals: 18 + }, + infoURL: 'https://docs.oasis.io/dapp/sapphire', + shortName: 'sapphire-testnet', + chainId: 23295, + networkId: 23295, + explorers: [ + { + name: 'Oasis Sapphire Testnet Explorer', + url: 'https://testnet.explorer.sapphire.oasis.dev', + standard: 'EIP3091' + } + ] + }, 24484: { name: 'Webchain', chain: 'WEB', - rpc: ['https://node1.webchain.network'], + rpc: [], faucets: [], nativeCurrency: { name: 'Webchain Ether', symbol: 'WEB', decimals: 18 }, infoURL: 'https://webchain.network', @@ -5627,6 +10567,68 @@ export const chains: Chains = { chainId: 24734, networkId: 37480 }, + 25888: { + name: 'Hammer Chain Mainnet', + chain: 'HammerChain', + rpc: ['https://www.hammerchain.io/rpc'], + faucets: [], + nativeCurrency: { name: 'GOLDT', symbol: 'GOLDT', decimals: 18 }, + infoURL: 'https://www.hammerchain.io', + shortName: 'GOLDT', + chainId: 25888, + networkId: 25888, + explorers: [ + { + name: 'Hammer Chain Explorer', + url: 'https://www.hammerchain.io', + standard: 'none' + } + ] + }, + 25925: { + name: 'Bitkub Chain Testnet', + chain: 'BKC', + icon: 'bkc', + rpc: [ + 'https://rpc-testnet.bitkubchain.io', + 'wss://wss-testnet.bitkubchain.io' + ], + faucets: ['https://faucet.bitkubchain.com'], + nativeCurrency: { name: 'Bitkub Coin', symbol: 'tKUB', decimals: 18 }, + infoURL: 'https://www.bitkubchain.com/', + shortName: 'bkct', + chainId: 25925, + networkId: 25925, + explorers: [ + { + name: 'bkcscan-testnet', + url: 'https://testnet.bkcscan.com', + standard: 'none', + icon: 'bkc' + } + ] + }, + 26600: { + name: 'Hertz Network Mainnet', + chain: 'HTZ', + rpc: ['https://mainnet-rpc.hertzscan.com'], + faucets: [], + nativeCurrency: { name: 'Hertz', symbol: 'HTZ', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://www.hertz-network.com', + shortName: 'HTZ', + chainId: 26600, + networkId: 26600, + icon: 'hertz-network', + explorers: [ + { + name: 'Hertz Scan', + url: 'https://hertzscan.com', + icon: 'hertz-network', + standard: 'EIP3091' + } + ] + }, 26863: { name: 'OasisChain Mainnet', chain: 'OasisChain', @@ -5649,6 +10651,29 @@ export const chains: Chains = { } ] }, + 28528: { + name: 'Optimism Bedrock (Goerli Alpha Testnet)', + chain: 'ETH', + rpc: [ + 'https://alpha-1-replica-0.bedrock-goerli.optimism.io', + 'https://alpha-1-replica-1.bedrock-goerli.optimism.io', + 'https://alpha-1-replica-2.bedrock-goerli.optimism.io', + 'https://alpha-1-replica-2.bedrock-goerli.optimism.io' + ], + faucets: [], + nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://community.optimism.io/docs/developers/bedrock', + shortName: 'obgor', + chainId: 28528, + networkId: 28528, + explorers: [ + { + name: 'blockscout', + url: 'https://blockscout.com/optimism/bedrock-alpha', + standard: 'EIP3091' + } + ] + }, 30067: { name: 'Piece testnet', chain: 'PieceNetwork', @@ -5684,6 +10709,44 @@ export const chains: Chains = { networkId: 1, slip44: 31102 }, + 31223: { + name: 'CloudTx Mainnet', + chain: 'CLD', + icon: 'cloudtx', + rpc: ['https://mainnet-rpc.cloudtx.finance'], + faucets: [], + nativeCurrency: { name: 'CloudTx', symbol: 'CLD', decimals: 18 }, + infoURL: 'https://cloudtx.finance', + shortName: 'CLDTX', + chainId: 31223, + networkId: 31223, + explorers: [ + { + name: 'cloudtxscan', + url: 'https://scan.cloudtx.finance', + standard: 'EIP3091' + } + ] + }, + 31224: { + name: 'CloudTx Testnet', + chain: 'CloudTx', + icon: 'cloudtx', + rpc: ['https://testnet-rpc.cloudtx.finance'], + faucets: ['https://faucet.cloudtx.finance'], + nativeCurrency: { name: 'CloudTx', symbol: 'CLD', decimals: 18 }, + infoURL: 'https://cloudtx.finance/', + shortName: 'CLD', + chainId: 31224, + networkId: 31224, + explorers: [ + { + name: 'cloudtxexplorer', + url: 'https://explorer.cloudtx.finance', + standard: 'EIP3091' + } + ] + }, 31337: { name: 'GoChain Testnet', chain: 'GO', @@ -5703,10 +10766,25 @@ export const chains: Chains = { } ] }, + 31415: { + name: 'Filecoin - Wallaby testnet', + chain: 'FIL', + icon: 'filecoin', + rpc: ['https://wallaby.node.glif.io/rpc/v1'], + faucets: ['https://wallaby.yoga/#faucet'], + nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 }, + infoURL: 'https://filecoin.io', + shortName: 'filecoin-wallaby', + chainId: 31415, + networkId: 31415, + slip44: 1, + explorers: [] + }, 32520: { name: 'Bitgert Mainnet', chain: 'Brise', rpc: [ + 'https://rpc.icecreamswap.com', 'https://mainnet-rpc.brisescan.com', 'https://chainrpc.com', 'https://serverrpc.com' @@ -5730,13 +10808,123 @@ export const chains: Chains = { 32659: { name: 'Fusion Mainnet', chain: 'FSN', - rpc: ['https://mainnet.anyswap.exchange', 'https://fsn.dev/api'], + icon: 'fusion', + rpc: ['https://mainnet.fusionnetwork.io', 'wss://mainnet.fusionnetwork.io'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], faucets: [], nativeCurrency: { name: 'Fusion', symbol: 'FSN', decimals: 18 }, - infoURL: 'https://www.fusion.org/', + infoURL: 'https://fusion.org', shortName: 'fsn', chainId: 32659, - networkId: 32659 + networkId: 32659, + slip44: 288, + explorers: [ + { + name: 'fsnscan', + url: 'https://fsnscan.com', + icon: 'fsnscan', + standard: 'EIP3091' + } + ] + }, + 33101: { + name: 'Zilliqa EVM Testnet', + chain: 'ZIL', + rpc: ['https://dev-api.zilliqa.com'], + faucets: ['https://dev-wallet.zilliqa.com/faucet?network=testnet'], + nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 }, + infoURL: 'https://www.zilliqa.com/', + shortName: 'zil-testnet', + chainId: 33101, + networkId: 33101, + explorers: [ + { + name: 'Zilliqa EVM Explorer', + url: 'https://evmx.zilliqa.com', + standard: 'none' + } + ] + }, + 33333: { + name: 'Aves Mainnet', + chain: 'AVS', + rpc: ['https://rpc.avescoin.io'], + faucets: [], + nativeCurrency: { name: 'Aves', symbol: 'AVS', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://avescoin.io', + shortName: 'avs', + chainId: 33333, + networkId: 33333, + icon: 'aves', + explorers: [ + { + name: 'avescan', + url: 'https://avescan.io', + icon: 'avescan', + standard: 'EIP3091' + } + ] + }, + 35011: { + name: 'J2O Taro', + chain: 'TARO', + rpc: ['https://rpc.j2o.io'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'TARO Coin', symbol: 'taro', decimals: 18 }, + infoURL: 'https://j2o.io', + shortName: 'j2o', + chainId: 35011, + networkId: 35011, + explorers: [ + { + name: 'J2O Taro Explorer', + url: 'https://exp.j2o.io', + icon: 'j2otaro', + standard: 'EIP3091' + } + ] + }, + 35441: { + name: 'Q Mainnet', + chain: 'Q', + rpc: ['https://rpc.q.org'], + faucets: [], + nativeCurrency: { name: 'Q token', symbol: 'Q', decimals: 18 }, + infoURL: 'https://q.org', + shortName: 'q', + chainId: 35441, + networkId: 35441, + icon: 'q', + explorers: [ + { + name: 'Q explorer', + url: 'https://explorer.q.org', + icon: 'q', + standard: 'EIP3091' + } + ] + }, + 35443: { + name: 'Q Testnet', + chain: 'Q', + rpc: ['https://rpc.qtestnet.org'], + faucets: [], + nativeCurrency: { name: 'Q token', symbol: 'Q', decimals: 18 }, + infoURL: 'https://q.org/', + shortName: 'q-testnet', + chainId: 35443, + networkId: 35443, + icon: 'q', + explorers: [ + { + name: 'Q explorer', + url: 'https://explorer.qtestnet.org', + icon: 'q', + standard: 'EIP3091' + } + ] }, 39797: { name: 'Energi Mainnet', @@ -5750,6 +10938,44 @@ export const chains: Chains = { networkId: 39797, slip44: 39797 }, + 39815: { + name: 'OHO Mainnet', + chain: 'OHO', + rpc: ['https://mainnet.oho.ai'], + faucets: [], + nativeCurrency: { name: 'OHO', symbol: 'OHO', decimals: 18 }, + infoURL: 'https://oho.ai', + shortName: 'oho', + chainId: 39815, + networkId: 39815, + icon: 'oho', + explorers: [ + { + name: 'ohoscan', + url: 'https://ohoscan.com', + icon: 'ohoscan', + standard: 'EIP3091' + } + ] + }, + 41500: { + name: 'Opulent-X BETA', + chainId: 41500, + shortName: 'ox-beta', + chain: 'Opulent-X', + networkId: 41500, + nativeCurrency: { name: 'Oxyn Gas', symbol: 'OXYN', decimals: 18 }, + rpc: ['https://connect.opulent-x.com'], + faucets: [], + infoURL: 'https://beta.opulent-x.com', + explorers: [ + { + name: 'Opulent-X BETA Explorer', + url: 'https://explorer.opulent-x.com', + standard: 'none' + } + ] + }, 42069: { name: 'pegglecoin', chain: '42069', @@ -5793,10 +11019,34 @@ export const chains: Chains = { bridges: [{ url: 'https://bridge.arbitrum.io' }] } }, + 42170: { + name: 'Arbitrum Nova', + chainId: 42170, + shortName: 'arb-nova', + chain: 'ETH', + networkId: 42170, + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + rpc: ['https://nova.arbitrum.io/rpc'], + faucets: [], + explorers: [ + { + name: 'Arbitrum Nova Chain Explorer', + url: 'https://nova-explorer.arbitrum.io', + icon: 'blockscout', + standard: 'EIP3091' + } + ], + infoURL: 'https://arbitrum.io', + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://bridge.arbitrum.io' }] + } + }, 42220: { name: 'Celo Mainnet', chainId: 42220, - shortName: 'CELO', + shortName: 'celo', chain: 'CELO', networkId: 42220, nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 }, @@ -5804,6 +11054,11 @@ export const chains: Chains = { faucets: ['https://free-online-app.com/faucet-for-eth-evm-chains/'], infoURL: 'https://docs.celo.org/', explorers: [ + { + name: 'Celoscan', + url: 'https://celoscan.io', + standard: 'EIP3091' + }, { name: 'blockscout', url: 'https://explorer.celo.org', @@ -5812,41 +11067,41 @@ export const chains: Chains = { ] }, 42261: { - name: 'Emerald Paratime Testnet', + name: 'Oasis Emerald Testnet', chain: 'Emerald', icon: 'oasis', rpc: [ 'https://testnet.emerald.oasis.dev/', 'wss://testnet.emerald.oasis.dev/ws' ], - faucets: [], + faucets: ['https://faucet.testnet.oasis.dev/'], nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 }, - infoURL: 'https://docs.oasis.dev/general/developer-resources/overview', - shortName: 'emerald', + infoURL: 'https://docs.oasis.io/dapp/emerald', + shortName: 'emerald-testnet', chainId: 42261, networkId: 42261, explorers: [ { - name: 'Emerald Paratime Testnet Explorer', + name: 'Oasis Emerald Testnet Explorer', url: 'https://testnet.explorer.emerald.oasis.dev', standard: 'EIP3091' } ] }, 42262: { - name: 'Emerald Paratime Mainnet', + name: 'Oasis Emerald', chain: 'Emerald', icon: 'oasis', rpc: ['https://emerald.oasis.dev', 'wss://emerald.oasis.dev/ws'], faucets: [], nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 }, - infoURL: 'https://docs.oasis.dev/general/developer-resources/overview', - shortName: 'oasis', + infoURL: 'https://docs.oasis.io/dapp/emerald', + shortName: 'emerald', chainId: 42262, networkId: 42262, explorers: [ { - name: 'Emerald Paratime Mainnet Explorer', + name: 'Oasis Emerald Explorer', url: 'https://explorer.emerald.oasis.dev', standard: 'EIP3091' } @@ -5866,6 +11121,7 @@ export const chains: Chains = { 43113: { name: 'Avalanche Fuji Testnet', chain: 'AVAX', + icon: 'avax', rpc: ['https://api.avax-test.network/ext/bc/C/rpc'], faucets: ['https://faucet.avax-test.network/'], nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 }, @@ -5884,11 +11140,16 @@ export const chains: Chains = { 43114: { name: 'Avalanche C-Chain', chain: 'AVAX', - rpc: ['https://api.avax.network/ext/bc/C/rpc'], + icon: 'avax', + rpc: [ + 'https://api.avax.network/ext/bc/C/rpc', + 'https://avalanche-c-chain.publicnode.com' + ], + features: [{ name: 'EIP1559' }], faucets: ['https://free-online-app.com/faucet-for-eth-evm-chains/'], nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 }, infoURL: 'https://www.avax.network/', - shortName: 'Avalanche', + shortName: 'avax', chainId: 43114, networkId: 43114, slip44: 9005, @@ -5900,6 +11161,49 @@ export const chains: Chains = { } ] }, + 43288: { + name: 'Boba Avax', + chain: 'Boba Avax', + rpc: [ + 'https://avax.boba.network', + 'wss://wss.avax.boba.network', + 'https://replica.avax.boba.network', + 'wss://replica-wss.avax.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://docs.boba.network/for-developers/network-avalanche', + shortName: 'bobaavax', + chainId: 43288, + networkId: 43288, + explorers: [ + { + name: 'Boba Avax Explorer', + url: 'https://blockexplorer.avax.boba.network', + standard: 'none' + } + ] + }, + 44444: { + name: 'Frenchain', + chain: 'fren', + rpc: ['https://rpc-02.frenscan.io'], + faucets: [], + nativeCurrency: { name: 'FREN', symbol: 'FREN', decimals: 18 }, + infoURL: 'https://frenchain.app', + shortName: 'FREN', + chainId: 44444, + networkId: 44444, + icon: 'fren', + explorers: [ + { + name: 'blockscout', + url: 'https://frenscan.io', + icon: 'fren', + standard: 'EIP3091' + } + ] + }, 44787: { name: 'Celo Alfajores Testnet', chainId: 44787, @@ -5915,17 +11219,23 @@ export const chains: Chains = { 'https://celo.org/developers/faucet', 'https://cauldron.pretoriaresearchlab.io/alfajores-faucet' ], - infoURL: 'https://docs.celo.org/' + infoURL: 'https://docs.celo.org/', + explorers: [ + { + name: 'Celoscan', + url: 'https://celoscan.io', + standard: 'EIP3091' + } + ] }, 45000: { name: 'Autobahn Network', chain: 'TXL', - network: 'mainnet', rpc: ['https://rpc.autobahn.network'], faucets: [], nativeCurrency: { name: 'TXL', symbol: 'TXL', decimals: 18 }, infoURL: 'https://autobahn.network', - shortName: 'Autobahn Network', + shortName: 'AutobahnNetwork', chainId: 45000, networkId: 45000, icon: 'autobahn', @@ -5938,6 +11248,28 @@ export const chains: Chains = { } ] }, + 46688: { + name: 'Fusion Testnet', + chain: 'FSN', + icon: 'fusion', + rpc: ['https://testnet.fusionnetwork.io', 'wss://testnet.fusionnetwork.io'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'Testnet Fusion', symbol: 'T-FSN', decimals: 18 }, + infoURL: 'https://fusion.org', + shortName: 'tfsn', + chainId: 46688, + networkId: 46688, + slip44: 288, + explorers: [ + { + name: 'fsnscan', + url: 'https://testnet.fsnscan.com', + icon: 'fsnscan', + standard: 'EIP3091' + } + ] + }, 47805: { name: 'REI Network', chain: 'REI', @@ -5956,6 +11288,48 @@ export const chains: Chains = { } ] }, + 49049: { + name: 'Floripa', + title: 'Wireshape Testnet Floripa', + chain: 'Wireshape', + rpc: ['https://rpc-floripa.wireshape.org'], + faucets: [], + nativeCurrency: { name: 'WIRE', symbol: 'WIRE', decimals: 18 }, + infoURL: 'https://wireshape.org', + shortName: 'floripa', + chainId: 49049, + networkId: 49049, + explorers: [ + { + name: 'Wire Explorer', + url: 'https://floripa-explorer.wireshape.org', + standard: 'EIP3091' + } + ] + }, + 49088: { + name: 'Bifrost Testnet', + title: 'The Bifrost Testnet network', + chain: 'BFC', + rpc: [ + 'https://public-01.testnet.thebifrost.io/rpc', + 'https://public-02.testnet.thebifrost.io/rpc' + ], + faucets: [], + nativeCurrency: { name: 'Bifrost', symbol: 'BFC', decimals: 18 }, + infoURL: 'https://thebifrost.io', + shortName: 'tbfc', + chainId: 49088, + networkId: 49088, + icon: 'bifrost', + explorers: [ + { + name: 'explorer-thebifrost', + url: 'https://explorer.testnet.thebifrost.io', + standard: 'EIP3091' + } + ] + }, 49797: { name: 'Energi Testnet', chain: 'NRG', @@ -5968,11 +11342,60 @@ export const chains: Chains = { networkId: 49797, slip44: 49797 }, + 50001: { + name: 'Liveplex OracleEVM', + chain: 'Liveplex OracleEVM Network', + rpc: ['https://rpc.oracle.liveplex.io'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: '', + shortName: 'LOE', + chainId: 50001, + networkId: 50001, + explorers: [] + }, + 50021: { + name: 'GTON Testnet', + chain: 'GTON Testnet', + rpc: ['https://testnet.gton.network/'], + faucets: [], + nativeCurrency: { name: 'GCD', symbol: 'GCD', decimals: 18 }, + infoURL: 'https://gton.capital', + shortName: 'tgton', + chainId: 50021, + networkId: 50021, + explorers: [ + { + name: 'GTON Testnet Network Explorer', + url: 'https://explorer.testnet.gton.network', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-3' } + }, + 51712: { + name: 'Sardis Mainnet', + chain: 'SRDX', + icon: 'sardis', + rpc: ['https://mainnet-rpc.sardisnetwork.com'], + faucets: ['https://faucet.sardisnetwork.com'], + nativeCurrency: { name: 'Sardis', symbol: 'SRDX', decimals: 18 }, + infoURL: 'https://mysardis.com', + shortName: 'SRDXm', + chainId: 51712, + networkId: 51712, + explorers: [ + { + name: 'Sardis', + url: 'https://contract-mainnet.sardisnetwork.com', + standard: 'EIP3091' + } + ] + }, 53935: { name: 'DFK Chain', chain: 'DFK', icon: 'dfk', - network: 'mainnet', rpc: ['https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc'], faucets: [], nativeCurrency: { name: 'Jewel', symbol: 'JEWEL', decimals: 18 }, @@ -5989,6 +11412,24 @@ export const chains: Chains = { } ] }, + 54211: { + name: 'Haqq Chain Testnet', + chain: 'TestEdge2', + rpc: ['https://rpc.eth.testedge2.haqq.network'], + faucets: ['https://testedge2.haqq.network'], + nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLMT', decimals: 18 }, + infoURL: 'https://islamiccoin.net', + shortName: 'ISLMT', + chainId: 54211, + networkId: 54211, + explorers: [ + { + name: 'TestEdge HAQQ Explorer', + url: 'https://explorer.testedge2.haqq.network', + standard: 'EIP3091' + } + ] + }, 55555: { name: 'REI Chain Mainnet', chain: 'REI', @@ -5997,7 +11438,7 @@ export const chains: Chains = { faucets: ['http://kururu.finance/faucet?chainId=55555'], nativeCurrency: { name: 'Rei', symbol: 'REI', decimals: 18 }, infoURL: 'https://reichain.io', - shortName: 'rei', + shortName: 'reichain', chainId: 55555, networkId: 55555, explorers: [ @@ -6027,6 +11468,29 @@ export const chains: Chains = { } ] }, + 56288: { + name: 'Boba BNB Mainnet', + chain: 'Boba BNB Mainnet', + rpc: [ + 'https://bnb.boba.network', + 'wss://wss.bnb.boba.network', + 'https://replica.bnb.boba.network', + 'wss://replica-wss.bnb.boba.network' + ], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'BobaBnb', + chainId: 56288, + networkId: 56288, + explorers: [ + { + name: 'Boba BNB block explorer', + url: 'https://blockexplorer.bnb.boba.network', + standard: 'none' + } + ] + }, 60000: { name: 'Thinkium Testnet Chain 0', chain: 'Thinkium', @@ -6099,6 +11563,57 @@ export const chains: Chains = { } ] }, + 61803: { + name: 'Etica Mainnet', + chain: 'Etica Protocol (ETI/EGAZ)', + icon: 'etica', + rpc: [ + 'https://eticamainnet.eticascan.org', + 'https://eticamainnet.eticaprotocol.org' + ], + faucets: ['http://faucet.etica-stats.org/'], + nativeCurrency: { name: 'EGAZ', symbol: 'EGAZ', decimals: 18 }, + infoURL: 'https://eticaprotocol.org', + shortName: 'Etica', + chainId: 61803, + networkId: 61803, + explorers: [ + { + name: 'eticascan', + url: 'https://eticascan.org', + standard: 'EIP3091' + }, + { + name: 'eticastats', + url: 'http://explorer.etica-stats.org', + standard: 'EIP3091' + } + ] + }, + 61916: { + name: 'DoKEN Super Chain Mainnet', + chain: 'DoKEN Super Chain', + rpc: [ + 'https://sgrpc.doken.dev', + 'https://nyrpc.doken.dev', + 'https://ukrpc.doken.dev' + ], + faucets: [], + nativeCurrency: { name: 'DoKEN', symbol: 'DKN', decimals: 18 }, + infoURL: 'https://doken.dev/', + shortName: 'DoKEN', + chainId: 61916, + networkId: 61916, + icon: 'doken', + explorers: [ + { + name: 'DSC Scan', + url: 'https://explore.doken.dev', + icon: 'doken', + standard: 'EIP3091' + } + ] + }, 62320: { name: 'Celo Baklava Testnet', chainId: 62320, @@ -6135,7 +11650,6 @@ export const chains: Chains = { 63000: { name: 'eCredits Mainnet', chain: 'ECS', - network: 'mainnet', rpc: ['https://rpc.ecredits.com'], faucets: [], nativeCurrency: { name: 'eCredits', symbol: 'ECS', decimals: 18 }, @@ -6156,7 +11670,6 @@ export const chains: Chains = { 63001: { name: 'eCredits Testnet', chain: 'ECS', - network: 'testnet', rpc: ['https://rpc.tst.ecredits.com'], faucets: ['https://faucet.tst.ecredits.com'], nativeCurrency: { name: 'eCredits', symbol: 'ECS', decimals: 18 }, @@ -6174,6 +11687,46 @@ export const chains: Chains = { } ] }, + 65450: { + name: 'Scolcoin Mainnet', + chain: 'SCOLWEI', + rpc: ['https://mainnet-rpc.scolcoin.com'], + faucets: [], + nativeCurrency: { name: 'Scolcoin', symbol: 'SCOL', decimals: 18 }, + infoURL: 'https://scolcoin.com', + shortName: 'SRC', + chainId: 65450, + networkId: 65450, + icon: 'scolcoin', + explorers: [ + { + name: 'Scolscan Explorer', + url: 'https://explorer.scolcoin.com', + standard: 'EIP3091' + } + ] + }, + 67390: { + name: 'SiriusNet', + chain: 'SIN', + status: 'deprecated', + rpc: [ + 'https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/' + ], + faucets: [], + nativeCurrency: { name: 'MCD', symbol: 'MCD', decimals: 18 }, + infoURL: 'https://macaucasinolisboa.xyz', + shortName: 'mcl', + chainId: 67390, + networkId: 67390, + explorers: [ + { + name: 'siriusnetscan', + url: 'https://siriusnet.tryethernal.com', + standard: 'EIP3091' + } + ] + }, 69420: { name: 'Condrieu', title: 'Ethereum Verkle Testnet Condrieu', @@ -6285,19 +11838,27 @@ export const chains: Chains = { networkId: 1 }, 71401: { - name: 'Godwoken Testnet (V1.1)', + name: 'Godwoken Testnet v1', chain: 'GWT', - rpc: ['https://godwoken-testnet-v1.ckbapp.dev'], + rpc: [ + 'https://godwoken-testnet-v1.ckbapp.dev', + 'https://v1.testnet.godwoken.io/rpc' + ], faucets: ['https://testnet.bridge.godwoken.io'], - nativeCurrency: { name: 'CKB', symbol: 'CKB', decimals: 18 }, + nativeCurrency: { name: 'pCKB', symbol: 'pCKB', decimals: 18 }, infoURL: 'https://www.nervos.org', shortName: 'gw-testnet-v1', chainId: 71401, networkId: 71401, explorers: [ + { + name: 'GWScout Explorer', + url: 'https://gw-testnet-explorer.nervosdao.community', + standard: 'none' + }, { name: 'GWScan Block Explorer', - url: 'https://v1.aggron.gwscan.com', + url: 'https://v1.testnet.gwscan.com', standard: 'none' } ] @@ -6305,17 +11866,22 @@ export const chains: Chains = { 71402: { name: 'Godwoken Mainnet', chain: 'GWT', - rpc: ['https://godwoken-testnet-v1.ckbapp.dev'], - faucets: ['https://testnet.bridge.godwoken.io'], - nativeCurrency: { name: 'CKB', symbol: 'CKB', decimals: 18 }, + rpc: ['https://v1.mainnet.godwoken.io/rpc'], + faucets: [], + nativeCurrency: { name: 'pCKB', symbol: 'pCKB', decimals: 18 }, infoURL: 'https://www.nervos.org', shortName: 'gw-mainnet-v1', chainId: 71402, networkId: 71402, explorers: [ + { + name: 'GWScout Explorer', + url: 'https://gw-mainnet-explorer.nervosdao.community', + standard: 'none' + }, { name: 'GWScan Block Explorer', - url: 'https://v1.aggron.gwscan.com', + url: 'https://v1.gwscan.com', standard: 'none' } ] @@ -6337,10 +11903,9 @@ export const chains: Chains = { 73927: { name: 'Mixin Virtual Machine', chain: 'MVM', - network: 'mainnet', rpc: ['https://geth.mvm.dev'], faucets: [], - nativeCurrency: { name: 'Mixin', symbol: 'XIN', decimals: 8 }, + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://mvm.dev', shortName: 'mvm', chainId: 73927, @@ -6355,6 +11920,44 @@ export const chains: Chains = { } ] }, + 75000: { + name: 'ResinCoin Mainnet', + chain: 'RESIN', + icon: 'resincoin', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'RESIN', decimals: 18 }, + infoURL: 'https://resincoin.dev', + shortName: 'resin', + chainId: 75000, + networkId: 75000, + explorers: [ + { + name: 'ResinScan', + url: 'https://explorer.resincoin.dev', + standard: 'none' + } + ] + }, + 77612: { + name: 'Vention Smart Chain Mainnet', + chain: 'VSC', + icon: 'vention', + rpc: ['https://mainnet-rpc.vention.network'], + faucets: ['https://faucet.vention.network'], + nativeCurrency: { name: 'VNT', symbol: 'VNT', decimals: 18 }, + infoURL: 'https://ventionscan.io', + shortName: 'vscm', + chainId: 77612, + networkId: 77612, + explorers: [ + { + name: 'ventionscan', + url: 'https://ventionscan.io', + standard: 'EIP3091' + } + ] + }, 78110: { name: 'Firenze test network', chain: 'ETH', @@ -6366,10 +11969,30 @@ export const chains: Chains = { chainId: 78110, networkId: 78110 }, + 79879: { + name: 'Gold Smart Chain Testnet', + chain: 'STAND', + icon: 'standTestnet', + rpc: ['https://rpc-testnet.goldsmartchain.com'], + faucets: ['https://faucet.goldsmartchain.com'], + nativeCurrency: { name: 'Standard in Gold', symbol: 'STAND', decimals: 18 }, + infoURL: 'https://goldsmartchain.com', + shortName: 'STANDt', + chainId: 79879, + networkId: 79879, + explorers: [ + { + name: 'Gold Smart Chain', + url: 'https://testnet.goldsmartchain.com', + standard: 'EIP3091' + } + ] + }, 80001: { name: 'Mumbai', title: 'Polygon Testnet Mumbai', chain: 'Polygon', + icon: 'polygon', rpc: [ 'https://matic-mumbai.chainstacklabs.com', 'https://rpc-mumbai.maticvigil.com', @@ -6389,6 +12012,48 @@ export const chains: Chains = { } ] }, + 84531: { + name: 'Base Goerli Testnet', + chain: 'ETH', + rpc: ['https://goerli.base.org'], + faucets: ['https://www.coinbase.com/faucets/base-ethereum-goerli-faucet'], + nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://base.org', + shortName: 'basegor', + chainId: 84531, + networkId: 84531, + explorers: [ + { + name: 'basescan', + url: 'https://goerli.basescan.org', + standard: 'none' + }, + { + name: 'basescout', + url: 'https://base-goerli.blockscout.com', + standard: 'none' + } + ] + }, + 88880: { + name: 'Chiliz Scoville Testnet', + chain: 'CHZ', + rpc: ['https://scoville-rpc.chiliz.com'], + faucets: ['https://scoville-faucet.chiliz.com'], + nativeCurrency: { name: 'Chiliz', symbol: 'CHZ', decimals: 18 }, + icon: 'chiliz', + infoURL: 'https://www.chiliz.com/en/chain', + shortName: 'chz', + chainId: 88880, + networkId: 88880, + explorers: [ + { + name: 'scoville-explorer', + url: 'https://scoville-explorer.chiliz.com', + standard: 'none' + } + ] + }, 88888: { name: 'IVAR Chain Mainnet', chain: 'IVAR', @@ -6408,10 +12073,72 @@ export const chains: Chains = { } ] }, + 90210: { + name: 'Beverly Hills', + title: 'Ethereum multi-client Verkle Testnet Beverly Hills', + chain: 'ETH', + rpc: ['https://rpc.beverlyhills.ethdevops.io:8545'], + faucets: ['https://faucet.beverlyhills.ethdevops.io'], + nativeCurrency: { + name: 'Beverly Hills Testnet Ether', + symbol: 'BVE', + decimals: 18 + }, + infoURL: 'https://beverlyhills.ethdevops.io', + shortName: 'bvhl', + chainId: 90210, + networkId: 90210, + status: 'incubating', + explorers: [ + { + name: 'Beverly Hills explorer', + url: 'https://explorer.beverlyhills.ethdevops.io', + standard: 'none' + } + ] + }, + 92001: { + name: 'Lambda Testnet', + chain: 'Lambda', + rpc: ['https://evm.lambda.top/'], + faucets: ['https://faucet.lambda.top'], + nativeCurrency: { name: 'test-Lamb', symbol: 'LAMB', decimals: 18 }, + infoURL: 'https://lambda.im', + shortName: 'lambda-testnet', + chainId: 92001, + networkId: 92001, + icon: 'lambda', + explorers: [ + { + name: 'Lambda EVM Explorer', + url: 'https://explorer.lambda.top', + standard: 'EIP3091', + icon: 'lambda' + } + ] + }, + 97288: { + name: 'Boba BNB Mainnet Old', + chain: 'Boba BNB Mainnet', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 }, + infoURL: 'https://boba.network', + shortName: 'BobaBnbOld', + chainId: 97288, + networkId: 97288, + explorers: [ + { + name: 'Boba BNB block explorer', + url: 'https://blockexplorer.bnb.boba.network', + standard: 'none' + } + ], + status: 'deprecated' + }, 99998: { name: 'UB Smart Chain(testnet)', chain: 'USC', - network: 'testnet', rpc: ['https://testnet.rpc.uschain.network'], faucets: [], nativeCurrency: { name: 'UBC', symbol: 'UBC', decimals: 18 }, @@ -6423,7 +12150,6 @@ export const chains: Chains = { 99999: { name: 'UB Smart Chain', chain: 'USC', - network: 'mainnet', rpc: ['https://rpc.uschain.network'], faucets: [], nativeCurrency: { name: 'UBC', symbol: 'UBC', decimals: 18 }, @@ -6619,10 +12345,90 @@ export const chains: Chains = { } ] }, + 100009: { + name: 'VeChain', + chain: 'VeChain', + rpc: [], + faucets: [], + nativeCurrency: { name: 'VeChain', symbol: 'VET', decimals: 18 }, + infoURL: 'https://vechain.org', + shortName: 'vechain', + chainId: 100009, + networkId: 100009, + explorers: [ + { + name: 'VeChain Stats', + url: 'https://vechainstats.com', + standard: 'none' + }, + { + name: 'VeChain Explorer', + url: 'https://explore.vechain.org', + standard: 'none' + } + ] + }, + 100010: { + name: 'VeChain Testnet', + chain: 'VeChain', + rpc: [], + faucets: ['https://faucet.vecha.in'], + nativeCurrency: { name: 'VeChain', symbol: 'VET', decimals: 18 }, + infoURL: 'https://vechain.org', + shortName: 'vechain-testnet', + chainId: 100010, + networkId: 100010, + explorers: [ + { + name: 'VeChain Explorer', + url: 'https://explore-testnet.vechain.org', + standard: 'none' + } + ] + }, + 100100: { + name: 'Deprecated Chiado Testnet', + chain: 'CHI1', + icon: 'gnosis', + rpc: ['https://rpc-chiado.gnosistestnet.com'], + faucets: ['https://gnosisfaucet.com'], + nativeCurrency: { name: 'Chiado xDAI', symbol: 'xDAI', decimals: 18 }, + infoURL: 'https://docs.gnosischain.com', + shortName: 'chi1', + chainId: 100100, + networkId: 100100, + explorers: [ + { + name: 'blockscout', + url: 'https://blockscout-chiado.gnosistestnet.com', + icon: 'blockscout', + standard: 'EIP3091' + } + ], + status: 'deprecated' + }, + 101010: { + name: 'Soverun Testnet', + chain: 'SVRN', + icon: 'soverunTestnet', + rpc: ['https://testnet-rpc.soverun.com'], + faucets: ['https://faucet.soverun.com'], + nativeCurrency: { name: 'Soverun', symbol: 'SVRN', decimals: 18 }, + infoURL: 'https://soverun.com', + shortName: 'SVRNt', + chainId: 101010, + networkId: 101010, + explorers: [ + { + name: 'Soverun', + url: 'https://testnet.soverun.com', + standard: 'EIP3091' + } + ] + }, 103090: { name: 'Crystaleum', chain: 'crystal', - network: 'mainnet', rpc: ['https://evm.cryptocurrencydevs.org', 'https://rpc.crystaleum.org'], faucets: [], nativeCurrency: { name: 'CRFI', symbol: '◈', decimals: 18 }, @@ -6643,7 +12449,6 @@ export const chains: Chains = { 108801: { name: 'BROChain Mainnet', chain: 'BRO', - network: 'mainnet', rpc: [ 'https://rpc.brochain.org', 'http://rpc.brochain.org', @@ -6851,11 +12656,79 @@ export const chains: Chains = { } ] }, + 111111: { + name: 'Siberium Network', + chain: 'SBR', + rpc: ['https://rpc.main.siberium.net', 'https://rpc.main.siberium.net.ru'], + faucets: [], + nativeCurrency: { name: 'Siberium', symbol: 'SBR', decimals: 18 }, + infoURL: 'https://siberium.net', + shortName: 'sbr', + chainId: 111111, + networkId: 111111, + icon: 'siberium', + explorers: [ + { + name: 'Siberium Mainnet Explorer - blockscout - 1', + url: 'https://explorer.main.siberium.net', + icon: 'siberium', + standard: 'EIP3091' + }, + { + name: 'Siberium Mainnet Explorer - blockscout - 2', + url: 'https://explorer.main.siberium.net.ru', + icon: 'siberium', + standard: 'EIP3091' + } + ] + }, + 131419: { + name: 'ETND Chain Mainnets', + chain: 'ETND', + rpc: ['https://rpc.node1.etnd.pro/'], + faucets: [], + nativeCurrency: { name: 'ETND', symbol: 'ETND', decimals: 18 }, + infoURL: 'https://www.etnd.pro', + shortName: 'ETND', + chainId: 131419, + networkId: 131419, + icon: 'ETND', + explorers: [ + { + name: 'etndscan', + url: 'https://scan.etnd.pro', + icon: 'ETND', + standard: 'none' + } + ] + }, + 188881: { + name: 'Condor Test Network', + chain: 'CONDOR', + icon: 'condor', + rpc: ['https://testnet.condor.systems/rpc'], + faucets: ['https://faucet.condor.systems'], + nativeCurrency: { + name: 'Condor Native Token', + symbol: 'CONDOR', + decimals: 18 + }, + infoURL: 'https://condor.systems', + shortName: 'condor', + chainId: 188881, + networkId: 188881, + explorers: [ + { + name: 'CondorScan', + url: 'https://explorer.condor.systems', + standard: 'none' + } + ] + }, 200101: { name: 'Milkomeda C1 Testnet', chain: 'milkTAda', icon: 'milkomeda', - network: 'testnet', rpc: [ 'https://rpc-devnet-cardano-evm.c1.milkomeda.com', 'wss://rpc-devnet-cardano-evm.c1.milkomeda.com' @@ -6874,6 +12747,25 @@ export const chains: Chains = { } ] }, + 200202: { + name: 'Milkomeda A1 Testnet', + chain: 'milkTAlgo', + icon: 'milkomeda', + rpc: ['https://rpc-devnet-algorand-rollup.a1.milkomeda.com'], + faucets: [], + nativeCurrency: { name: 'milkTAlgo', symbol: 'mTAlgo', decimals: 18 }, + infoURL: 'https://milkomeda.com', + shortName: 'milkTAlgo', + chainId: 200202, + networkId: 200202, + explorers: [ + { + name: 'Blockscout', + url: 'https://explorer-devnet-algorand-rollup.a1.milkomeda.com', + standard: 'none' + } + ] + }, 200625: { name: 'Akroma', chain: 'AKA', @@ -6932,10 +12824,72 @@ export const chains: Chains = { } ] }, + 201804: { + name: 'Mythical Chain', + chain: 'MYTH', + rpc: ['https://chain-rpc.mythicalgames.com'], + faucets: [], + nativeCurrency: { name: 'Mythos', symbol: 'MYTH', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://mythicalgames.com/', + shortName: 'myth', + chainId: 201804, + networkId: 201804, + icon: 'mythical', + explorers: [ + { + name: 'Mythical Chain Explorer', + url: 'https://explorer.mythicalgames.com', + icon: 'mythical', + standard: 'EIP3091' + } + ] + }, + 202020: { + name: 'Decimal Smart Chain Testnet', + chain: 'tDSC', + rpc: ['https://testnet-val.decimalchain.com/web3'], + faucets: [], + nativeCurrency: { name: 'Decimal', symbol: 'tDEL', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://decimalchain.com', + shortName: 'tDSC', + chainId: 202020, + networkId: 202020, + icon: 'dsc', + explorers: [ + { + name: 'DSC Explorer Testnet', + url: 'https://testnet.explorer.decimalchain.com', + icon: 'dsc', + standard: 'EIP3091' + } + ] + }, + 202624: { + name: 'Jellie', + title: 'Twala Testnet Jellie', + shortName: 'twl-jellie', + chain: 'ETH', + chainId: 202624, + networkId: 202624, + icon: 'twala', + nativeCurrency: { name: 'Twala Coin', symbol: 'TWL', decimals: 18 }, + rpc: ['https://jellie-rpc.twala.io/', 'wss://jellie-rpc-wss.twala.io/'], + faucets: [], + infoURL: 'https://twala.io/', + explorers: [ + { + name: 'Jellie Blockchain Explorer', + url: 'https://jellie.twala.io', + standard: 'EIP3091', + icon: 'twala' + } + ] + }, 210425: { name: 'PlatON Mainnet', chain: 'PlatON', - network: 'mainnet', rpc: [ 'https://openapi2.platon.network/rpc', 'wss://openapi2.platon.network/ws' @@ -6955,10 +12909,29 @@ export const chains: Chains = { } ] }, + 220315: { + name: 'Mas Mainnet', + chain: 'MAS', + rpc: ['http://node.masnet.ai:8545'], + faucets: [], + nativeCurrency: { name: 'Master Bank', symbol: 'MAS', decimals: 18 }, + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + infoURL: 'https://masterbank.org', + shortName: 'mas', + chainId: 220315, + networkId: 220315, + icon: 'mas', + explorers: [ + { + name: 'explorer masnet', + url: 'https://explorer.masnet.ai', + standard: 'EIP3091' + } + ] + }, 234666: { name: 'Haymo Testnet', chain: 'tHYM', - network: 'testnet', rpc: ['https://testnet1.haymo.network'], faucets: [], nativeCurrency: { name: 'HAYMO', symbol: 'HYM', decimals: 18 }, @@ -6990,6 +12963,63 @@ export const chains: Chains = { chainId: 246785, networkId: 246785 }, + 247253: { + name: 'Saakuru Testnet', + chain: 'Saakuru', + icon: 'saakuru', + rpc: ['https://rpc-testnet.saakuru.network'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://saakuru.network', + shortName: 'saakuru-testnet', + chainId: 247253, + networkId: 247253, + explorers: [ + { + name: 'saakuru-explorer-testnet', + url: 'https://explorer-testnet.saakuru.network', + standard: 'EIP3091' + } + ] + }, + 256256: { + name: 'CMP-Mainnet', + chain: 'CMP', + rpc: [ + 'https://mainnet.block.caduceus.foundation', + 'wss://mainnet.block.caduceus.foundation' + ], + faucets: [], + nativeCurrency: { name: 'Caduceus Token', symbol: 'CMP', decimals: 18 }, + infoURL: 'https://caduceus.foundation/', + shortName: 'cmp-mainnet', + chainId: 256256, + networkId: 256256, + explorers: [ + { + name: 'Mainnet Scan', + url: 'https://mainnet.scan.caduceus.foundation', + standard: 'none' + } + ] + }, + 266256: { + name: 'Gear Zero Network Testnet', + chain: 'GearZero', + rpc: ['https://gzn-test.linksme.info'], + faucets: [], + nativeCurrency: { + name: 'Gear Zero Network Native Token', + symbol: 'GZN', + decimals: 18 + }, + infoURL: 'https://token.gearzero.ca/testnet', + shortName: 'gz-testnet', + chainId: 266256, + networkId: 266256, + slip44: 266256, + explorers: [] + }, 281121: { name: 'Social Smart Chain Mainnet', chain: 'SoChain', @@ -7002,6 +13032,54 @@ export const chains: Chains = { networkId: 281121, explorers: [] }, + 314159: { + name: 'Filecoin - Calibration testnet', + chain: 'FIL', + icon: 'filecoin', + rpc: ['https://api.calibration.node.glif.io/rpc/v1'], + faucets: ['https://faucet.calibration.fildev.network/'], + nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 }, + infoURL: 'https://filecoin.io', + shortName: 'filecoin-calibration', + chainId: 314159, + networkId: 314159, + slip44: 1, + explorers: [ + { + name: 'Filscan - Calibration', + url: 'https://calibration.filscan.io', + standard: 'none' + }, + { + name: 'Filscout - Calibration', + url: 'https://calibration.filscout.com/en', + standard: 'none' + }, + { + name: 'Filfox - Calibration', + url: 'https://calibration.filfox.info', + standard: 'none' + } + ] + }, + 333777: { + name: 'Oone Chain Testnet', + chain: 'OONE', + rpc: ['https://blockchain-test.adigium.world'], + faucets: ['https://apps-test.adigium.com/faucet'], + nativeCurrency: { name: 'Oone', symbol: 'tOONE', decimals: 18 }, + infoURL: 'https://oone.world', + shortName: 'oonetest', + chainId: 333777, + networkId: 333777, + explorers: [ + { + name: 'expedition', + url: 'https://explorer-test.adigium.world', + standard: 'none' + } + ] + }, 333888: { name: 'Polis Testnet', chain: 'Sparta', @@ -7026,6 +13104,123 @@ export const chains: Chains = { chainId: 333999, networkId: 333999 }, + 373737: { + name: 'HAPchain Testnet', + chain: 'HAPchain', + rpc: ['https://jsonrpc-test.hap.land'], + faucets: [], + nativeCurrency: { name: 'HAP', symbol: 'HAP', decimals: 18 }, + infoURL: 'https://hap.land', + shortName: 'hap-testnet', + chainId: 373737, + networkId: 373737, + icon: 'hap', + explorers: [ + { + name: 'HAP EVM Explorer (Blockscout)', + url: 'https://blockscout-test.hap.land', + standard: 'none', + icon: 'hap' + } + ] + }, + 381931: { + name: 'Metal C-Chain', + chain: 'Metal', + rpc: ['https://api.metalblockchain.org/ext/bc/C/rpc'], + faucets: [], + nativeCurrency: { name: 'Metal', symbol: 'METAL', decimals: 18 }, + infoURL: 'https://www.metalblockchain.org/', + shortName: 'metal', + chainId: 381931, + networkId: 381931, + slip44: 9005, + explorers: [ + { + name: 'metalscan', + url: 'https://metalscan.io', + standard: 'EIP3091' + } + ] + }, + 381932: { + name: 'Metal Tahoe C-Chain', + chain: 'Metal', + rpc: ['https://tahoe.metalblockchain.org/ext/bc/C/rpc'], + faucets: [], + nativeCurrency: { name: 'Metal', symbol: 'METAL', decimals: 18 }, + infoURL: 'https://www.metalblockchain.org/', + shortName: 'Tahoe', + chainId: 381932, + networkId: 381932, + slip44: 9005, + explorers: [ + { + name: 'metalscan', + url: 'https://tahoe.metalscan.io', + standard: 'EIP3091' + } + ] + }, + 404040: { + name: 'Tipboxcoin Mainnet', + chain: 'TPBX', + icon: 'tipboxcoinIcon', + rpc: ['https://mainnet-rpc.tipboxcoin.net'], + faucets: ['https://faucet.tipboxcoin.net'], + nativeCurrency: { name: 'Tipboxcoin', symbol: 'TPBX', decimals: 18 }, + infoURL: 'https://tipboxcoin.net', + shortName: 'TPBXm', + chainId: 404040, + networkId: 404040, + explorers: [ + { + name: 'Tipboxcoin', + url: 'https://tipboxcoin.net', + standard: 'EIP3091' + } + ] + }, + 420420: { + name: 'Kekchain', + chain: 'kek', + rpc: ['https://mainnet.kekchain.com'], + faucets: [], + nativeCurrency: { name: 'KEK', symbol: 'KEK', decimals: 18 }, + infoURL: 'https://kekchain.com', + shortName: 'KEK', + chainId: 420420, + networkId: 103090, + icon: 'kek', + explorers: [ + { + name: 'blockscout', + url: 'https://mainnet-explorer.kekchain.com', + icon: 'kek', + standard: 'EIP3091' + } + ] + }, + 420666: { + name: 'Kekchain (kektest)', + chain: 'kek', + rpc: ['https://testnet.kekchain.com'], + faucets: [], + nativeCurrency: { name: 'tKEK', symbol: 'tKEK', decimals: 18 }, + infoURL: 'https://kekchain.com', + shortName: 'tKEK', + chainId: 420666, + networkId: 1, + icon: 'kek', + explorers: [ + { + name: 'blockscout', + url: 'https://testnet-explorer.kekchain.com', + icon: 'kek', + standard: 'EIP3091' + } + ] + }, 421611: { name: 'Arbitrum Rinkeby', title: 'Arbitrum Testnet Rinkeby', @@ -7035,7 +13230,7 @@ export const chains: Chains = { networkId: 421611, nativeCurrency: { name: 'Arbitrum Rinkeby Ether', - symbol: 'ARETH', + symbol: 'ETH', decimals: 18 }, rpc: ['https://rinkeby.arbitrum.io/rpc'], @@ -7059,21 +13254,88 @@ export const chains: Chains = { bridges: [{ url: 'https://bridge.arbitrum.io' }] } }, + 421613: { + name: 'Arbitrum Goerli', + title: 'Arbitrum Goerli Rollup Testnet', + chainId: 421613, + shortName: 'arb-goerli', + chain: 'ETH', + networkId: 421613, + nativeCurrency: { + name: 'Arbitrum Goerli Ether', + symbol: 'AGOR', + decimals: 18 + }, + rpc: ['https://goerli-rollup.arbitrum.io/rpc/'], + faucets: [], + infoURL: 'https://arbitrum.io/', + explorers: [ + { + name: 'Arbitrum Goerli Rollup Explorer', + url: 'https://goerli-rollup-explorer.arbitrum.io', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-5', + bridges: [{ url: 'https://bridge.arbitrum.io/' }] + } + }, + 424242: { + name: 'Fastex Chain testnet', + chain: 'FTN', + title: 'Fastex Chain testnet', + rpc: ['https://rpc.testnet.fastexchain.com'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 }, + infoURL: 'https://fastex.com', + shortName: 'ftn', + chainId: 424242, + networkId: 424242, + explorers: [ + { + name: 'blockscout', + url: 'https://testnet.ftnscan.com', + standard: 'none' + } + ] + }, 432201: { - name: 'Dexalot Testnet', + name: 'Dexalot Subnet Testnet', chain: 'DEXALOT', - network: 'testnet', + icon: 'dexalot', rpc: ['https://subnets.avax.network/dexalot/testnet/rpc'], - faucets: ['https://sfaucet.dexalot-test.com'], + faucets: ['https://faucet.avax.network/?subnet=dexalot'], nativeCurrency: { name: 'Dexalot', symbol: 'ALOT', decimals: 18 }, infoURL: 'https://dexalot.com', - shortName: 'Dexalot', + shortName: 'dexalot-testnet', chainId: 432201, networkId: 432201, + explorers: [ + { + name: 'Avalanche Subnet Testnet Explorer', + url: 'https://subnets-test.avax.network/dexalot', + standard: 'EIP3091' + } + ] + }, + 432204: { + name: 'Dexalot Subnet', + chain: 'DEXALOT', + icon: 'dexalot', + rpc: ['https://subnets.avax.network/dexalot/mainnet/rpc'], + faucets: [], + nativeCurrency: { name: 'Dexalot', symbol: 'ALOT', decimals: 18 }, + infoURL: 'https://dexalot.com', + shortName: 'dexalot', + chainId: 432204, + networkId: 432204, explorers: [ { name: 'Avalanche Subnet Explorer', - url: 'https://subnets.avax.network/dexalot/testnet/explorer', + url: 'https://subnets.avax.network/dexalot', standard: 'EIP3091' } ] @@ -7121,7 +13383,6 @@ export const chains: Chains = { 512512: { name: 'CMP-Testnet', chain: 'CMP', - network: 'testnet', rpc: [ 'https://galaxy.block.caduceus.foundation', 'wss://galaxy.block.caduceus.foundation' @@ -7144,6 +13405,124 @@ export const chains: Chains = { } ] }, + 513100: { + name: 'ethereum Fair', + chainId: 513100, + networkId: 513100, + shortName: 'etf', + chain: 'ETF', + nativeCurrency: { name: 'EthereumFair', symbol: 'ETHF', decimals: 18 }, + rpc: ['https://rpc.etherfair.org'], + faucets: [], + explorers: [ + { + name: 'etherfair', + url: 'https://explorer.etherfair.org', + standard: 'EIP3091' + } + ], + infoURL: 'https://etherfair.org' + }, + 534352: { + name: 'Scroll', + chain: 'ETH', + rpc: [], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://scroll.io', + shortName: 'scr', + chainId: 534352, + networkId: 534352, + explorers: [], + parent: { type: 'L2', chain: 'eip155-1', bridges: [] } + }, + 534353: { + name: 'Scroll Alpha Testnet', + chain: 'ETH', + status: 'incubating', + rpc: ['https://alpha-rpc.scroll.io/l2'], + faucets: [], + nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://scroll.io', + shortName: 'scr-alpha', + chainId: 534353, + networkId: 534353, + explorers: [ + { + name: 'Scroll Alpha Testnet Block Explorer', + url: 'https://blockscout.scroll.io', + standard: 'EIP3091' + } + ], + parent: { type: 'L2', chain: 'eip155-5', bridges: [] } + }, + 534354: { + name: 'Scroll Pre-Alpha Testnet', + chain: 'ETH', + rpc: ['https://prealpha-rpc.scroll.io/l2'], + faucets: ['https://prealpha.scroll.io/faucet'], + nativeCurrency: { name: 'Ether', symbol: 'TSETH', decimals: 18 }, + infoURL: 'https://scroll.io', + shortName: 'scr-prealpha', + chainId: 534354, + networkId: 534354, + explorers: [ + { + name: 'Scroll L2 Block Explorer', + url: 'https://l2scan.scroll.io', + standard: 'EIP3091' + } + ] + }, + 535037: { + name: 'BeanEco SmartChain', + title: 'BESC Mainnet', + chain: 'BESC', + rpc: ['https://mainnet-rpc.bescscan.io'], + faucets: ['faucet.bescscan.ion'], + nativeCurrency: { + name: 'BeanEco SmartChain', + symbol: 'BESC', + decimals: 18 + }, + infoURL: 'besceco.finance', + shortName: 'BESC', + chainId: 535037, + networkId: 535037, + explorers: [ + { + name: 'bescscan', + url: 'https://Bescscan.io', + standard: 'EIP3091' + } + ] + }, + 641230: { + name: 'Bear Network Chain Mainnet', + chain: 'BRNKC', + icon: 'brnkc', + rpc: [ + 'https://brnkc-mainnet.bearnetwork.net', + 'https://brnkc-mainnet1.bearnetwork.net' + ], + faucets: [], + nativeCurrency: { + name: 'Bear Network Chain Native Token', + symbol: 'BRNKC', + decimals: 18 + }, + infoURL: 'https://bearnetwork.net', + shortName: 'BRNKC', + chainId: 641230, + networkId: 641230, + explorers: [ + { + name: 'brnkscan', + url: 'https://brnkscan.bearnetwork.net', + standard: 'EIP3091' + } + ] + }, 666666: { name: 'Vision - Vpioneer Test Chain', chain: 'Vision-Vpioneer', @@ -7156,6 +13535,60 @@ export const chains: Chains = { networkId: 666666, slip44: 60 }, + 751230: { + name: 'Bear Network Chain Testnet', + chain: 'BRNKCTEST', + icon: 'brnkc', + rpc: ['https://brnkc-test.bearnetwork.net'], + faucets: ['https://faucet.bearnetwork.net'], + nativeCurrency: { + name: 'Bear Network Chain Testnet Token', + symbol: 'tBRNKC', + decimals: 18 + }, + infoURL: 'https://bearnetwork.net', + shortName: 'BRNKCTEST', + chainId: 751230, + networkId: 751230, + explorers: [ + { + name: 'brnktestscan', + url: 'https://brnktest-scan.bearnetwork.net', + standard: 'EIP3091' + } + ] + }, + 800001: { + name: 'OctaSpace', + chain: 'OCTA', + rpc: ['https://rpc.octa.space', 'wss://rpc.octa.space'], + faucets: [], + nativeCurrency: { name: 'OctaSpace', symbol: 'OCTA', decimals: 18 }, + infoURL: 'https://octa.space', + shortName: 'octa', + chainId: 800001, + networkId: 800001, + icon: 'octaspace', + explorers: [ + { + name: 'blockscout', + url: 'https://explorer.octa.space', + icon: 'blockscout', + standard: 'EIP3091' + } + ] + }, + 846000: { + name: '4GoodNetwork', + chain: '4GN', + rpc: ['https://chain.deptofgood.com'], + faucets: [], + nativeCurrency: { name: 'APTA', symbol: 'APTA', decimals: 18 }, + infoURL: 'https://bloqs4good.com', + shortName: 'bloqs4good', + chainId: 846000, + networkId: 846000 + }, 888888: { name: 'Vision - Mainnet', chain: 'Vision', @@ -7175,6 +13608,114 @@ export const chains: Chains = { networkId: 888888, slip44: 60 }, + 900000: { + name: 'Posichain Mainnet Shard 0', + chain: 'PSC', + rpc: ['https://api.posichain.org', 'https://api.s0.posichain.org'], + faucets: ['https://faucet.posichain.org/'], + nativeCurrency: { + name: 'Posichain Native Token', + symbol: 'POSI', + decimals: 18 + }, + infoURL: 'https://posichain.org', + shortName: 'psc-s0', + chainId: 900000, + networkId: 900000, + explorers: [ + { + name: 'Posichain Explorer', + url: 'https://explorer.posichain.org', + standard: 'EIP3091' + } + ] + }, + 910000: { + name: 'Posichain Testnet Shard 0', + chain: 'PSC', + rpc: ['https://api.s0.t.posichain.org'], + faucets: ['https://faucet.posichain.org/'], + nativeCurrency: { + name: 'Posichain Native Token', + symbol: 'POSI', + decimals: 18 + }, + infoURL: 'https://posichain.org', + shortName: 'psc-t-s0', + chainId: 910000, + networkId: 910000, + explorers: [ + { + name: 'Posichain Explorer Testnet', + url: 'https://explorer-testnet.posichain.org', + standard: 'EIP3091' + } + ] + }, + 920000: { + name: 'Posichain Devnet Shard 0', + chain: 'PSC', + rpc: ['https://api.s0.d.posichain.org'], + faucets: ['https://faucet.posichain.org/'], + nativeCurrency: { + name: 'Posichain Native Token', + symbol: 'POSI', + decimals: 18 + }, + infoURL: 'https://posichain.org', + shortName: 'psc-d-s0', + chainId: 920000, + networkId: 920000, + explorers: [ + { + name: 'Posichain Explorer Devnet', + url: 'https://explorer-devnet.posichain.org', + standard: 'EIP3091' + } + ] + }, + 920001: { + name: 'Posichain Devnet Shard 1', + chain: 'PSC', + rpc: ['https://api.s1.d.posichain.org'], + faucets: ['https://faucet.posichain.org/'], + nativeCurrency: { + name: 'Posichain Native Token', + symbol: 'POSI', + decimals: 18 + }, + infoURL: 'https://posichain.org', + shortName: 'psc-d-s1', + chainId: 920001, + networkId: 920001, + explorers: [ + { + name: 'Posichain Explorer Devnet', + url: 'https://explorer-devnet.posichain.org', + standard: 'EIP3091' + } + ] + }, + 923018: { + name: 'FNCY Testnet', + chain: 'FNCY', + rpc: ['https://fncy-testnet-seed.fncy.world'], + faucets: ['https://faucet-testnet.fncy.world'], + nativeCurrency: { name: 'FNCY', symbol: 'FNCY', decimals: 18 }, + infoURL: 'https://fncyscan-testnet.fncy.world', + shortName: 'tFNCY', + chainId: 923018, + networkId: 923018, + icon: 'fncy', + explorers: [ + { + name: 'fncy scan testnet', + url: 'https://fncyscan-testnet.fncy.world', + icon: 'fncy', + standard: 'EIP3091' + } + ] + }, 955305: { name: 'Eluvio Content Fabric', chain: 'Eluvio', @@ -7260,7 +13801,6 @@ export const chains: Chains = { 1337802: { name: 'Kiln', chain: 'ETH', - network: 'testnet', rpc: ['https://rpc.kiln.themerge.dev'], faucets: [ 'https://faucet.kiln.themerge.dev', @@ -7275,29 +13815,69 @@ export const chains: Chains = { icon: 'ethereum', explorers: [ { - name: 'Kiln Explorer', - url: 'https://explorer.kiln.themerge.dev', - icon: 'ethereum', + name: 'Kiln Explorer', + url: 'https://explorer.kiln.themerge.dev', + icon: 'ethereum', + standard: 'EIP3091' + } + ] + }, + 1337803: { + name: 'Zhejiang', + chain: 'ETH', + rpc: ['https://rpc.zhejiang.ethpandaops.io'], + faucets: [ + 'https://faucet.zhejiang.ethpandaops.io', + 'https://zhejiang-faucet.pk910.de' + ], + nativeCurrency: { name: 'Testnet ETH', symbol: 'ETH', decimals: 18 }, + infoURL: 'https://zhejiang.ethpandaops.io', + shortName: 'zhejiang', + chainId: 1337803, + networkId: 1337803, + icon: 'ethereum', + explorers: [ + { + name: 'Zhejiang Explorer', + url: 'https://zhejiang.beaconcha.in', + icon: 'ethereum', + standard: 'EIP3091' + } + ] + }, + 2099156: { + name: 'Plian Mainnet Main', + chain: 'Plian', + rpc: ['https://mainnet.plian.io/pchain'], + faucets: [], + nativeCurrency: { name: 'Plian Token', symbol: 'PI', decimals: 18 }, + infoURL: 'https://plian.org/', + shortName: 'plian-mainnet', + chainId: 2099156, + networkId: 2099156, + explorers: [ + { + name: 'piscan', + url: 'https://piscan.plian.org/pchain', standard: 'EIP3091' } ] }, 2203181: { - name: 'PlatON Dev Testnet', + name: 'PlatON Dev Testnet Deprecated', chain: 'PlatON', rpc: [ 'https://devnetopenapi2.platon.network/rpc', 'wss://devnetopenapi2.platon.network/ws' ], - faucets: [ - 'https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03' - ], + faucets: ['https://devnet2faucet.platon.network/faucet'], nativeCurrency: { name: 'LAT', symbol: 'lat', decimals: 18 }, infoURL: 'https://www.platon.network', shortName: 'platondev', chainId: 2203181, networkId: 1, icon: 'platon', + status: 'deprecated', explorers: [ { name: 'PlatON explorer', @@ -7328,6 +13908,138 @@ export const chains: Chains = { } ] }, + 3141592: { + name: 'Filecoin - Butterfly testnet', + chain: 'FIL', + status: 'incubating', + rpc: [], + faucets: ['https://faucet.butterfly.fildev.network'], + nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 }, + infoURL: 'https://filecoin.io', + shortName: 'filecoin-butterfly', + icon: 'filecoin', + chainId: 3141592, + networkId: 3141592, + slip44: 1, + explorers: [] + }, + 5555555: { + name: 'Imversed Mainnet', + chain: 'Imversed', + rpc: [ + 'https://jsonrpc.imversed.network', + 'https://ws-jsonrpc.imversed.network' + ], + faucets: [], + nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 }, + infoURL: 'https://imversed.com', + shortName: 'imversed', + chainId: 5555555, + networkId: 5555555, + icon: 'imversed', + explorers: [ + { + name: 'Imversed EVM explorer (Blockscout)', + url: 'https://txe.imversed.network', + icon: 'imversed', + standard: 'EIP3091' + }, + { + name: 'Imversed Cosmos Explorer (Big Dipper)', + url: 'https://tex-c.imversed.com', + icon: 'imversed', + standard: 'none' + } + ] + }, + 5555558: { + name: 'Imversed Testnet', + chain: 'Imversed', + rpc: [ + 'https://jsonrpc-test.imversed.network', + 'https://ws-jsonrpc-test.imversed.network' + ], + faucets: [], + nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 }, + infoURL: 'https://imversed.com', + shortName: 'imversed-testnet', + chainId: 5555558, + networkId: 5555558, + icon: 'imversed', + explorers: [ + { + name: 'Imversed EVM Explorer (Blockscout)', + url: 'https://txe-test.imversed.network', + icon: 'imversed', + standard: 'EIP3091' + }, + { + name: 'Imversed Cosmos Explorer (Big Dipper)', + url: 'https://tex-t.imversed.com', + icon: 'imversed', + standard: 'none' + } + ] + }, + 7225878: { + name: 'Saakuru Mainnet', + chain: 'Saakuru', + icon: 'saakuru', + rpc: ['https://rpc.saakuru.network'], + faucets: [], + nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 }, + infoURL: 'https://saakuru.network', + shortName: 'saakuru', + chainId: 7225878, + networkId: 7225878, + explorers: [ + { + name: 'saakuru-explorer', + url: 'https://explorer.saakuru.network', + standard: 'EIP3091' + } + ] + }, + 7355310: { + name: 'OpenVessel', + chain: 'VSL', + icon: 'vsl', + rpc: ['https://mainnet-external.openvessel.io'], + faucets: [], + nativeCurrency: { name: 'Vessel ETH', symbol: 'VETH', decimals: 18 }, + infoURL: 'https://www.openvessel.io', + shortName: 'vsl', + chainId: 7355310, + networkId: 7355310, + explorers: [ + { + name: 'openvessel-mainnet', + url: 'https://mainnet-explorer.openvessel.io', + standard: 'none' + } + ] + }, + 7668378: { + name: 'QL1 Testnet', + chain: 'QOM', + status: 'incubating', + rpc: ['https://rpc.testnet.qom.one'], + faucets: ['https://faucet.qom.one'], + nativeCurrency: { name: 'Shiba Predator', symbol: 'QOM', decimals: 18 }, + infoURL: 'https://qom.one', + shortName: 'tqom', + chainId: 7668378, + networkId: 7668378, + icon: 'qom', + explorers: [ + { + name: 'QL1 Testnet Explorer', + url: 'https://testnet.qom.one', + icon: 'qom', + standard: 'EIP3091' + } + ] + }, 7762959: { name: 'Musicoin', chain: 'MUSIC', @@ -7340,19 +14052,104 @@ export const chains: Chains = { networkId: 7762959, slip44: 184 }, + 8007736: { + name: 'Plian Mainnet Subchain 1', + chain: 'Plian', + rpc: ['https://mainnet.plian.io/child_0'], + faucets: [], + nativeCurrency: { name: 'Plian Token', symbol: 'PI', decimals: 18 }, + infoURL: 'https://plian.org', + shortName: 'plian-mainnet-l2', + chainId: 8007736, + networkId: 8007736, + explorers: [ + { + name: 'piscan', + url: 'https://piscan.plian.org/child_0', + standard: 'EIP3091' + } + ], + parent: { chain: 'eip155-2099156', type: 'L2' } + }, + 8794598: { + name: 'HAPchain', + chain: 'HAPchain', + rpc: ['https://jsonrpc.hap.land'], + faucets: [], + nativeCurrency: { name: 'HAP', symbol: 'HAP', decimals: 18 }, + infoURL: 'https://hap.land', + shortName: 'hap', + chainId: 8794598, + networkId: 8794598, + icon: 'hap', + explorers: [ + { + name: 'HAP EVM Explorer (Blockscout)', + url: 'https://blockscout.hap.land', + standard: 'none', + icon: 'hap' + } + ] + }, + 10067275: { + name: 'Plian Testnet Subchain 1', + chain: 'Plian', + rpc: ['https://testnet.plian.io/child_test'], + faucets: [], + nativeCurrency: { name: 'Plian Token', symbol: 'TPI', decimals: 18 }, + infoURL: 'https://plian.org/', + shortName: 'plian-testnet-l2', + chainId: 10067275, + networkId: 10067275, + explorers: [ + { + name: 'piscan', + url: 'https://testnet.plian.org/child_test', + standard: 'EIP3091' + } + ], + parent: { chain: 'eip155-16658437', type: 'L2' } + }, + 10101010: { + name: 'Soverun Mainnet', + chain: 'SVRN', + icon: 'soverun', + rpc: ['https://mainnet-rpc.soverun.com'], + faucets: ['https://faucet.soverun.com'], + nativeCurrency: { name: 'Soverun', symbol: 'SVRN', decimals: 18 }, + infoURL: 'https://soverun.com', + shortName: 'SVRNm', + chainId: 10101010, + networkId: 10101010, + explorers: [ + { + name: 'Soverun', + url: 'https://explorer.soverun.com', + standard: 'EIP3091' + } + ] + }, 11155111: { name: 'Sepolia', title: 'Ethereum Testnet Sepolia', chain: 'ETH', - network: 'testnet', - rpc: [], + rpc: [ + 'https://rpc.sepolia.org', + 'https://rpc2.sepolia.org', + 'https://rpc-sepolia.rockx.com' + ], faucets: ['http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'], - nativeCurrency: { name: 'Sepolia Ether', symbol: 'SEP', decimals: 18 }, + nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://sepolia.otterscan.io', shortName: 'sep', chainId: 11155111, networkId: 11155111, explorers: [ + { + name: 'etherscan-sepolia', + url: 'https://sepolia.etherscan.io', + standard: 'EIP3091' + }, { name: 'otterscan-sepolia', url: 'https://sepolia.otterscan.io', @@ -7375,6 +14172,47 @@ export const chains: Chains = { chainId: 13371337, networkId: 13371337 }, + 14288640: { + name: 'Anduschain Mainnet', + chain: 'anduschain', + rpc: ['https://rpc.anduschain.io/rpc', 'wss://rpc.anduschain.io/ws'], + faucets: [], + nativeCurrency: { name: 'DAON', symbol: 'DEB', decimals: 18 }, + infoURL: 'https://anduschain.io/', + shortName: 'anduschain-mainnet', + chainId: 14288640, + networkId: 14288640, + explorers: [ + { + name: 'anduschain explorer', + url: 'https://explorer.anduschain.io', + icon: 'daon', + standard: 'none' + } + ] + }, + 16658437: { + name: 'Plian Testnet Main', + chain: 'Plian', + rpc: ['https://testnet.plian.io/testnet'], + faucets: [], + nativeCurrency: { + name: 'Plian Testnet Token', + symbol: 'TPI', + decimals: 18 + }, + infoURL: 'https://plian.org', + shortName: 'plian-testnet', + chainId: 16658437, + networkId: 16658437, + explorers: [ + { + name: 'piscan', + url: 'https://testnet.plian.org/testnet', + standard: 'EIP3091' + } + ] + }, 18289463: { name: 'IOLite', chain: 'ILT', @@ -7419,6 +14257,65 @@ export const chains: Chains = { chainId: 20181205, networkId: 20181205 }, + 22052002: { + name: 'Excelon Mainnet', + chain: 'XLON', + icon: 'xlon', + rpc: ['https://edgewallet1.xlon.org/'], + faucets: [], + nativeCurrency: { name: 'Excelon', symbol: 'xlon', decimals: 18 }, + infoURL: 'https://xlon.org', + shortName: 'xlon', + chainId: 22052002, + networkId: 22052002, + explorers: [ + { + name: 'Excelon explorer', + url: 'https://explorer.excelon.io', + standard: 'EIP3091' + } + ] + }, + 27082017: { + name: 'Excoincial Chain Volta-Testnet', + chain: 'TEXL', + icon: 'exl', + rpc: ['https://testnet-rpc.exlscan.com'], + faucets: ['https://faucet.exlscan.com'], + nativeCurrency: { name: 'TExlcoin', symbol: 'TEXL', decimals: 18 }, + infoURL: '', + shortName: 'exlvolta', + chainId: 27082017, + networkId: 27082017, + explorers: [ + { + name: 'exlscan', + url: 'https://testnet-explorer.exlscan.com', + icon: 'exl', + standard: 'EIP3091' + } + ] + }, + 27082022: { + name: 'Excoincial Chain Mainnet', + chain: 'EXL', + icon: 'exl', + rpc: ['https://rpc.exlscan.com'], + faucets: [], + nativeCurrency: { name: 'Exlcoin', symbol: 'EXL', decimals: 18 }, + infoURL: '', + shortName: 'exl', + chainId: 27082022, + networkId: 27082022, + explorers: [ + { + name: 'exlscan', + url: 'https://exlscan.com', + icon: 'exl', + standard: 'EIP3091' + } + ] + }, 28945486: { name: 'Auxilium Network Mainnet', chain: 'AUX', @@ -7431,6 +14328,41 @@ export const chains: Chains = { networkId: 28945486, slip44: 344 }, + 29032022: { + name: 'Flachain Mainnet', + chain: 'FLX', + icon: 'flacoin', + rpc: ['https://flachain.flaexchange.top/'], + features: [{ name: 'EIP155' }, { name: 'EIP1559' }], + faucets: [], + nativeCurrency: { name: 'Flacoin', symbol: 'FLA', decimals: 18 }, + infoURL: 'https://www.flaexchange.top', + shortName: 'fla', + chainId: 29032022, + networkId: 29032022, + explorers: [ + { + name: 'FLXExplorer', + url: 'https://explorer.flaexchange.top', + standard: 'EIP3091' + } + ] + }, + 31415926: { + name: 'Filecoin - Local testnet', + chain: 'FIL', + status: 'incubating', + rpc: [], + faucets: [], + nativeCurrency: { name: 'testnet filecoin', symbol: 'tFIL', decimals: 18 }, + infoURL: 'https://filecoin.io', + shortName: 'filecoin-local', + icon: 'filecoin', + chainId: 31415926, + networkId: 31415926, + slip44: 1, + explorers: [] + }, 35855456: { name: 'Joys Digital Mainnet', chain: 'JOYS', @@ -7442,6 +14374,26 @@ export const chains: Chains = { chainId: 35855456, networkId: 35855456 }, + 43214913: { + name: 'maistestsubnet', + chain: 'MAI', + rpc: [ + 'http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc' + ], + faucets: [], + nativeCurrency: { name: 'maistestsubnet', symbol: 'MAI', decimals: 18 }, + infoURL: '', + shortName: 'mais', + chainId: 43214913, + networkId: 43214913, + explorers: [ + { + name: 'maistesntet', + url: 'http://174.138.9.169:3006/?network=maistesntet', + standard: 'none' + } + ] + }, 61717561: { name: 'Aquachain', chain: 'AQUA', @@ -7454,6 +14406,50 @@ export const chains: Chains = { networkId: 61717561, slip44: 61717561 }, + 65010000: { + name: 'Autonity Bakerloo (Thames) Testnet', + chain: 'AUT', + rpc: [ + 'https://rpc1.bakerloo.autonity.org/', + 'wss://rpc1.bakerloo.autonity.org/ws/' + ], + faucets: ['https://faucet.autonity.org/'], + nativeCurrency: { name: 'Bakerloo Auton', symbol: 'ATN', decimals: 18 }, + infoURL: 'https://autonity.org/', + shortName: 'bakerloo-0', + chainId: 65010000, + networkId: 65010000, + icon: 'autonity', + explorers: [ + { + name: 'autonity-blockscout', + url: 'https://bakerloo.autonity.org', + standard: 'EIP3091' + } + ] + }, + 65100000: { + name: 'Autonity Piccadilly (Thames) Testnet', + chain: 'AUT', + rpc: [ + 'https://rpc1.piccadilly.autonity.org/', + 'wss://rpc1.piccadilly.autonity.org/ws/' + ], + faucets: ['https://faucet.autonity.org/'], + nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 }, + infoURL: 'https://autonity.org/', + shortName: 'piccadilly-0', + chainId: 65100000, + networkId: 65100000, + icon: 'autonity', + explorers: [ + { + name: 'autonity-blockscout', + url: 'https://piccadilly.autonity.org', + standard: 'EIP3091' + } + ] + }, 99415706: { name: 'Joys Digital TestNet', chain: 'TOYS', @@ -7486,8 +14482,8 @@ export const chains: Chains = { 245022926: { name: 'Neon EVM DevNet', chain: 'Solana', - rpc: ['https://proxy.devnet.neonlabs.org/solana'], - faucets: ['https://neonswap.live/#/get-tokens'], + rpc: ['https://devnet.neonevm.org'], + faucets: ['https://neonfaucet.org'], icon: 'neon', nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 }, infoURL: 'https://neon-labs.org', @@ -7510,7 +14506,7 @@ export const chains: Chains = { 245022934: { name: 'Neon EVM MainNet', chain: 'Solana', - rpc: ['https://proxy.mainnet.neonlabs.org/solana'], + rpc: ['https://mainnet.neonevm.org'], faucets: [], icon: 'neon', nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 }, @@ -7534,7 +14530,7 @@ export const chains: Chains = { 245022940: { name: 'Neon EVM TestNet', chain: 'Solana', - rpc: ['https://proxy.testnet.neonlabs.org/solana'], + rpc: ['https://testnet.neonevm.org'], faucets: [], icon: 'neon', nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 }, @@ -7574,6 +14570,27 @@ export const chains: Chains = { } ] }, + 344106930: { + name: 'Calypso NFT Hub (SKALE Testnet)', + title: 'Calypso NFT Hub Testnet', + chain: 'staging-utter-unripe-menkar', + rpc: ['https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar'], + faucets: ['https://sfuel.dirtroad.dev/staging'], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://calypsohub.network/', + shortName: 'calypso-testnet', + chainId: 344106930, + networkId: 344106930, + explorers: [ + { + name: 'Blockscout', + url: + 'https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com', + icon: 'calypso', + standard: 'EIP3091' + } + ] + }, 356256156: { name: 'Gather Testnet Network', chain: 'GTH', @@ -7610,6 +14627,29 @@ export const chains: Chains = { } ] }, + 503129905: { + name: 'Nebula Staging', + chain: 'staging-faint-slimy-achird', + rpc: [ + 'https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird', + 'wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird' + ], + faucets: [], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://nebulachain.io/', + shortName: 'nebula-staging', + chainId: 503129905, + networkId: 503129905, + explorers: [ + { + name: 'nebula', + url: + 'https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com', + icon: 'nebula', + standard: 'EIP3091' + } + ] + }, 1122334455: { name: 'IPOS Network', chain: 'IPOS', @@ -7625,6 +14665,47 @@ export const chains: Chains = { chainId: 1122334455, networkId: 1122334455 }, + 1146703430: { + name: 'CyberdeckNet', + chain: 'cyberdeck', + rpc: ['http://cybeth1.cyberdeck.eu:8545'], + faucets: [], + nativeCurrency: { name: 'Cyb', symbol: 'CYB', decimals: 18 }, + infoURL: 'https://cyberdeck.eu', + shortName: 'cyb', + chainId: 1146703430, + networkId: 1146703430, + icon: 'cyberdeck', + status: 'active', + explorers: [ + { + name: 'CybEthExplorer', + url: 'http://cybeth1.cyberdeck.eu:8000', + icon: 'cyberdeck', + standard: 'none' + } + ] + }, + 1273227453: { + name: 'HUMAN Protocol', + title: 'HUMAN Protocol', + chain: 'wan-red-ain', + rpc: ['https://mainnet.skalenodes.com/v1/wan-red-ain'], + faucets: ['https://dashboard.humanprotocol.org/faucet'], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://www.humanprotocol.org', + shortName: 'human-mainnet', + chainId: 1273227453, + networkId: 1273227453, + explorers: [ + { + name: 'Blockscout', + url: 'https://wan-red-ain.explorer.mainnet.skalenodes.com', + icon: 'human', + standard: 'EIP3091' + } + ] + }, 1313161554: { name: 'Aurora Mainnet', chain: 'NEAR', @@ -7664,7 +14745,7 @@ export const chains: Chains = { 1313161556: { name: 'Aurora Betanet', chain: 'NEAR', - rpc: ['https://betanet.aurora.dev/'], + rpc: [], faucets: [], nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, infoURL: 'https://aurora.dev', @@ -7672,6 +14753,49 @@ export const chains: Chains = { chainId: 1313161556, networkId: 1313161556 }, + 1482601649: { + name: 'Nebula Mainnet', + chain: 'green-giddy-denebola', + rpc: [ + 'https://mainnet.skalenodes.com/v1/green-giddy-denebola', + 'wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola' + ], + faucets: [], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://nebulachain.io/', + shortName: 'nebula-mainnet', + chainId: 1482601649, + networkId: 1482601649, + explorers: [ + { + name: 'nebula', + url: 'https://green-giddy-denebola.explorer.mainnet.skalenodes.com', + icon: 'nebula', + standard: 'EIP3091' + } + ] + }, + 1564830818: { + name: 'Calypso NFT Hub (SKALE)', + title: 'Calypso NFT Hub Mainnet', + chain: 'honorable-steel-rasalhague', + rpc: ['https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague'], + faucets: ['https://sfuel.dirtroad.dev'], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://calypsohub.network/', + shortName: 'calypso-mainnet', + chainId: 1564830818, + networkId: 1564830818, + explorers: [ + { + name: 'Blockscout', + url: + 'https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com', + icon: 'calypso', + standard: 'EIP3091' + } + ] + }, 1666600000: { name: 'Harmony Mainnet Shard 0', chain: 'Harmony', @@ -7774,6 +14898,24 @@ export const chains: Chains = { chainId: 1666700003, networkId: 1666700003 }, + 1666900000: { + name: 'Harmony Devnet Shard 0', + chain: 'Harmony', + rpc: ['https://api.s1.ps.hmny.io', 'https://api.s1.ps.hmny.io'], + faucets: ['http://dev.faucet.easynode.one/'], + nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 }, + infoURL: 'https://www.harmony.one/', + shortName: 'hmy-ps-s0', + chainId: 1666900000, + networkId: 1666900000, + explorers: [ + { + name: 'Harmony Block Explorer', + url: 'https://explorer.ps.hmny.io', + standard: 'EIP3091' + } + ] + }, 2021121117: { name: 'DataHopper', chain: 'HOP', @@ -7785,6 +14927,36 @@ export const chains: Chains = { chainId: 2021121117, networkId: 2021121117 }, + 2046399126: { + name: 'Europa SKALE Chain', + chain: 'europa', + icon: 'europa', + rpc: [ + 'https://mainnet.skalenodes.com/v1/elated-tan-skat', + 'wss://mainnet.skalenodes.com/v1/elated-tan-skat' + ], + faucets: [ + 'https://ruby.exchange/faucet.html', + 'https://sfuel.mylilius.com/' + ], + nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 }, + infoURL: 'https://europahub.network/', + shortName: 'europa', + chainId: 2046399126, + networkId: 2046399126, + explorers: [ + { + name: 'Blockscout', + url: 'https://elated-tan-skat.explorer.mainnet.skalenodes.com', + standard: 'EIP3091' + } + ], + parent: { + type: 'L2', + chain: 'eip155-1', + bridges: [{ url: 'https://ruby.exchange/bridge.html' }] + } + }, 3125659152: { name: 'Pirl', chain: 'PIRL', @@ -7819,7 +14991,6 @@ export const chains: Chains = { 11297108099: { name: 'Palm Testnet', chain: 'Palm', - icon: 'palm', rpc: ['https://palm-testnet.infura.io/v3/${INFURA_API_KEY}'], faucets: [], nativeCurrency: { name: 'PALM', symbol: 'PALM', decimals: 18 }, @@ -7831,15 +15002,13 @@ export const chains: Chains = { { name: 'Palm Testnet Explorer', url: 'https://explorer.palm-uat.xyz', - standard: 'EIP3091', - icon: 'palm' + standard: 'EIP3091' } ] }, 11297108109: { name: 'Palm', chain: 'Palm', - icon: 'palm', rpc: ['https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}'], faucets: [], nativeCurrency: { name: 'PALM', symbol: 'PALM', decimals: 18 }, @@ -7851,8 +15020,7 @@ export const chains: Chains = { { name: 'Palm Explorer', url: 'https://explorer.palm.io', - standard: 'EIP3091', - icon: 'palm' + standard: 'EIP3091' } ] }, @@ -7896,6 +15064,42 @@ export const chains: Chains = { } ] }, + 383414847825: { + name: 'Zeniq', + chain: 'ZENIQ', + rpc: ['https://smart.zeniq.network:9545'], + faucets: ['https://faucet.zeniq.net/'], + nativeCurrency: { name: 'Zeniq', symbol: 'ZENIQ', decimals: 18 }, + infoURL: 'https://www.zeniq.dev/', + shortName: 'zeniq', + chainId: 383414847825, + networkId: 383414847825, + explorers: [ + { + name: 'zeniq-smart-chain-explorer', + url: 'https://smart.zeniq.net', + standard: 'EIP3091' + } + ] + }, + 666301171999: { + name: 'PDC Mainnet', + chain: 'IPDC', + rpc: ['https://mainnet.ipdc.io/'], + faucets: [], + nativeCurrency: { name: 'PDC', symbol: 'PDC', decimals: 18 }, + infoURL: 'https://ipdc.io', + shortName: 'ipdc', + chainId: 666301171999, + networkId: 666301171999, + explorers: [ + { + name: 'ipdcscan', + url: 'https://scan.ipdc.io', + standard: 'EIP3091' + } + ] + }, 6022140761023: { name: 'Molereum Network', chain: 'ETH', diff --git a/src/enums.ts b/src/enums.ts index 80f9761..47e1c78 100644 --- a/src/enums.ts +++ b/src/enums.ts @@ -3,7 +3,7 @@ export enum ChainName { ExpanseNetwork = 'Expanse Network', Ropsten = 'Ropsten', Rinkeby = 'Rinkeby', - Goerli = 'Görli', + Goerli = 'Goerli', EthereumClassicTestnetKotti = 'Ethereum Classic Testnet Kotti', ThaiChain = 'ThaiChain', Ubiq = 'Ubiq', @@ -19,10 +19,10 @@ export enum ChainName { ThunderCoreTestnet = 'ThunderCore Testnet', 'SongbirdCanary-Network' = 'Songbird Canary-Network', ElastosSmartChain = 'Elastos Smart Chain', - 'ELA-ETH-SidechainTestnet' = 'ELA-ETH-Sidechain Testnet', + ElastosSmartChainTestnet = 'Elastos Smart Chain Testnet', 'ELA-DID-SidechainMainnet' = 'ELA-DID-Sidechain Mainnet', 'ELA-DID-SidechainTestnet' = 'ELA-DID-Sidechain Testnet', - DithereumMainnet = 'Dithereum Mainnet', + KardiaChainMainnet = 'KardiaChain Mainnet', CronosMainnetBeta = 'Cronos Mainnet Beta', GenesisL1testnet = 'Genesis L1 testnet', ShibaChain = 'ShibaChain', @@ -34,15 +34,21 @@ export enum ChainName { GoodDataMainnet = 'GoodData Mainnet', DithereumTestnet = 'Dithereum Testnet', TBWGChain = 'TBWG Chain', + DxchainMainnet = 'Dxchain Mainnet', + 'SeedCoin-Network' = 'SeedCoin-Network', Valorbit = 'Valorbit', + UnicornUltraTestnet = 'Unicorn Ultra Testnet', TelosEVMMainnet = 'Telos EVM Mainnet', TelosEVMTestnet = 'Telos EVM Testnet', Kovan = 'Kovan', DarwiniaPangolinTestnet = 'Darwinia Pangolin Testnet', DarwiniaCrabNetwork = 'Darwinia Crab Network', DarwiniaPangoroTestnet = 'Darwinia Pangoro Testnet', - XinFinNetworkMainnet = 'XinFin Network Mainnet', - XinFinApothemTestnet = 'XinFin Apothem Testnet', + DarwiniaNetwork = 'Darwinia Network', + EnnothemMainnetProterozoic = 'Ennothem Mainnet Proterozoic', + EnnothemTestnetPioneer = 'Ennothem Testnet Pioneer', + XinFinXDCNetwork = 'XinFin XDC Network', + XDCApothemNetwork = 'XDC Apothem Network', CoinExSmartChainMainnet = 'CoinEx Smart Chain Mainnet', CoinExSmartChainTestnet = 'CoinEx Smart Chain Testnet', OpenpieceMainnet = 'Openpiece Mainnet', @@ -63,7 +69,10 @@ export enum ChainName { OptimismKovan = 'Optimism Kovan', HooSmartChain = 'Hoo Smart Chain', 'ConfluxeSpace(Testnet)' = 'Conflux eSpace (Testnet)', + DxChainTestnet = 'DxChain Testnet', + FNCY = 'FNCY', IDChainMainnet = 'IDChain Mainnet', + DecimalSmartChainMainnet = 'Decimal Smart Chain Mainnet', Mix = 'Mix', POANetworkSokol = 'POA Network Sokol', PrimusChainmainnet = 'PrimusChain mainnet', @@ -82,18 +91,27 @@ export enum ChainName { GarizonStage2 = 'Garizon Stage2', GarizonStage3 = 'Garizon Stage3', CryptoKylinTestnet = 'CryptoKylin Testnet', - NEXTSmartChain = 'NEXT Smart Chain', + BitkubChain = 'Bitkub Chain', BinanceSmartChainTestnet = 'Binance Smart Chain Testnet', POANetworkCore = 'POA Network Core', Gnosis = 'Gnosis', EtherInc = 'EtherInc', Web3GamesTestnet = 'Web3Games Testnet', + KaibaLightningChainTestnet = 'Kaiba Lightning Chain Testnet', Web3GamesDevnet = 'Web3Games Devnet', VelasEVMMainnet = 'Velas EVM Mainnet', NebulaTestnet = 'Nebula Testnet', ThunderCoreMainnet = 'ThunderCore Mainnet', ProtonTestnet = 'Proton Testnet', EtherLiteChain = 'EtherLite Chain', + Dehvo = 'Dehvo', + FlareTestnetCoston2 = 'Flare Testnet Coston2', + DeBankTestnet = 'DeBank Testnet', + DeBankMainnet = 'DeBank Mainnet', + ArcologyTestnet = 'Arcology Testnet', + ENULSMainnet = 'ENULS Mainnet', + ENULSTestnet = 'ENULS Testnet', + RealchainMainnet = 'Realchain Mainnet', FuseMainnet = 'Fuse Mainnet', FuseSparknet = 'Fuse Sparknet', DecentralizedWebMainnet = 'Decentralized Web Mainnet', @@ -101,11 +119,17 @@ export enum ChainName { OYchainMainnet = 'OYchain Mainnet', Factory127Mainnet = 'Factory 127 Mainnet', HuobiECOChainMainnet = 'Huobi ECO Chain Mainnet', + IExecSidechain = 'iExec Sidechain', + AlyxChainTestnet = 'Alyx Chain Testnet', PolygonMainnet = 'Polygon Mainnet', OpenpieceTestnet = 'Openpiece Testnet', DAXCHAIN = 'DAX CHAIN', + PHINetworkv2 = 'PHI Network v2', + ArmoniaEvaChainMainnet = 'Armonia Eva Chain Mainnet', + ArmoniaEvaChainTestnet = 'Armonia Eva Chain Testnet', LightstreamsTestnet = 'Lightstreams Testnet', LightstreamsMainnet = 'Lightstreams Mainnet', + AtoshiTestnet = 'Atoshi Testnet', AIOZNetwork = 'AIOZ Network', HOOSmartChainTestnet = 'HOO Smart Chain Testnet', 'Latam-BlockchainResilTestnet' = 'Latam-Blockchain Resil Testnet', @@ -114,24 +138,38 @@ export enum ChainName { BMCMainnet = 'BMC Mainnet', BMCTestnet = 'BMC Testnet', CryptoEmergency = 'Crypto Emergency', + OKBChainTestnet = 'OKBChain Testnet', + OKBChainMainnet = 'OKBChain Mainnet', BitTorrentChainMainnet = 'BitTorrent Chain Mainnet', ArbitrumonxDai = 'Arbitrum on xDai', + MOACtestnet = 'MOAC testnet', FreightTrustNetwork = 'Freight Trust Network', + MAPMakalu = 'MAP Makalu', + SiriusNetV2 = 'SiriusNet V2', SoterOneMainnetold = 'SoterOne Mainnet old', Permission = 'Permission', LACHAINMainnet = 'LACHAIN Mainnet', LACHAINTestnet = 'LACHAIN Testnet', - AitdTestnet = 'Aitd Testnet', EnergyWebChain = 'Energy Web Chain', + OasysMainnet = 'Oasys Mainnet', FantomOpera = 'Fantom Opera', HuobiECOChainTestnet = 'Huobi ECO Chain Testnet', Setheum = 'Setheum', SURBlockchainNetwork = 'SUR Blockchain Network', HighPerformanceBlockchain = 'High Performance Blockchain', + ZkSyncEraTestnet = 'zkSync Era Testnet', BobaNetwork = 'Boba Network', - OptimismonGnosisChain = 'Optimism on Gnosis Chain', + HederaMainnet = 'Hedera Mainnet', + HederaTestnet = 'Hedera Testnet', + HederaPreviewnet = 'Hedera Previewnet', + HederaLocalnet = 'Hedera Localnet', + OptimismonGnosis = 'Optimism on Gnosis', + Bobaopera = 'Bobaopera', + OmaxMainnet = 'Omax Mainnet', + 'Filecoin-Mainnet' = 'Filecoin - Mainnet', KCCMainnet = 'KCC Mainnet', KCCTestnet = 'KCC Testnet', + ZkSyncEraMainnet = 'zkSync Era Mainnet', Web3QMainnet = 'Web3Q Mainnet', DFKChainTest = 'DFK Chain Test', Shiden = 'Shiden', @@ -141,51 +179,86 @@ export enum ChainName { ThetaAmberTestnet = 'Theta Amber Testnet', ThetaTestnet = 'Theta Testnet', PulseChainMainnet = 'PulseChain Mainnet', + ConstaTestnet = 'Consta Testnet', Lisinski = 'Lisinski', + HyperonChainTestNet = 'HyperonChain TestNet', SXNetworkMainnet = 'SX Network Mainnet', - OptimisticEthereumTestnetGoerli = 'Optimistic Ethereum Testnet Goerli', + LATestnet = 'LA Testnet', + OptimismGoerliTestnet = 'Optimism Goerli Testnet', + ZeethChain = 'Zeeth Chain', + FrenchainTestnet = 'Frenchain Testnet', Rupaya = 'Rupaya', + 'CaminoC-Chain' = 'Camino C-Chain', + ColumbusTestNetwork = 'Columbus Test Network', 'Double-AChainMainnet' = 'Double-A Chain Mainnet', 'Double-AChainTestnet' = 'Double-A Chain Testnet', + GearZeroNetworkMainnet = 'Gear Zero Network Mainnet', XTSmartChainMainnet = 'XT Smart Chain Mainnet', + FirechainMainnet = 'Firechain Mainnet', + 'F(x)CoreMainnetNetwork' = 'F(x)Core Mainnet Network', Candle = 'Candle', Vela1ChainMainnet = 'Vela1 Chain Mainnet', TaoNetwork = 'Tao Network', + DogechainTestnet = 'Dogechain Testnet', MetisStardustTestnet = 'Metis Stardust Testnet', Astar = 'Astar', AcalaMandalaTestnet = 'Acala Mandala Testnet', KaruraNetworkTestnet = 'Karura Network Testnet', AcalaNetworkTestnet = 'Acala Network Testnet', + MetisGoerliTestnet = 'Metis Goerli Testnet', Meshnyantestnet = 'Meshnyan testnet', + GraphlinqBlockchainMainnet = 'Graphlinq Blockchain Mainnet', SXNetworkTestnet = 'SX Network Testnet', + EnduranceSmartChainMainnet = 'Endurance Smart Chain Mainnet', PixieChainTestnet = 'Pixie Chain Testnet', KaruraNetwork = 'Karura Network', StarSocialTestnet = 'Star Social Testnet', BlockChainStationMainnet = 'BlockChain Station Mainnet', BlockChainStationTestnet = 'BlockChain Station Testnet', - Factory127Testnet = 'Factory 127 Testnet', + LycanChain = 'Lycan Chain', + CantoTestnet = 'Canto Testnet', + VentionSmartChainTestnet = 'Vention Smart Chain Testnet', + QL1 = 'QL1', OpenChainTestnet = 'OpenChain Testnet', CheapETH = 'cheapETH', AcalaNetwork = 'Acala Network', AerochainTestnet = 'Aerochain Testnet', + LucidBlockchain = 'Lucid Blockchain', Haic = 'Haic', + PortalFantasyChainTest = 'Portal Fantasy Chain Test', + Qitmeer = 'Qitmeer', CallistoMainnet = 'Callisto Mainnet', - CallistoTestnet = 'Callisto Testnet', + CallistoTestnetDeprecated = 'Callisto Testnet Deprecated', + TaraxaMainnet = 'Taraxa Mainnet', + TaraxaTestnet = 'Taraxa Testnet', + ZeethChainDev = 'Zeeth Chain Dev', + FantasiaChainMainnet = 'Fantasia Chain Mainnet', + BandaiNamcoResearchVerseMainnet = 'Bandai Namco Research Verse Mainnet', + DexitNetwork = 'Dexit Network', AmbrosChainMainnet = 'Ambros Chain Mainnet', Wanchain = 'Wanchain', GarizonTestnetStage0 = 'Garizon Testnet Stage0', GarizonTestnetStage1 = 'Garizon Testnet Stage1', GarizonTestnetStage2 = 'Garizon Testnet Stage2', GarizonTestnetStage3 = 'Garizon Testnet Stage3', + PortalFantasyChain = 'Portal Fantasy Chain', + RiniaTestnet = 'Rinia Testnet', PulseChainTestnet = 'PulseChain Testnet', PulseChainTestnetv2b = 'PulseChain Testnet v2b', PulseChainTestnetv3 = 'PulseChain Testnet v3', + MuNodeTestnet = 'muNode Testnet', + OortMainnet = 'Oort Mainnet', + OortHuygens = 'Oort Huygens', + OortAscraeus = 'Oort Ascraeus', NepalBlockchainNetwork = 'Nepal Blockchain Network', TOPMainnetEVM = 'TOP Mainnet EVM', + MemoSmartChainMainnet = 'Memo Smart Chain Mainnet', TOPMainnet = 'TOP Mainnet', LuckyNetwork = 'Lucky Network', WanchainTestnet = 'Wanchain Testnet', + GTONMainnet = 'GTON Mainnet', KlaytnTestnetBaobab = 'Klaytn Testnet Baobab', + 'T-EKTA' = 'T-EKTA', NewtonTestnet = 'Newton Testnet', EurusMainnet = 'Eurus Mainnet', EvriceNetwork = 'Evrice Network', @@ -195,165 +268,375 @@ export enum ChainName { CLVParachain = 'CLV Parachain', BitTorrentChainTestnet = 'BitTorrent Chain Testnet', ConfluxeSpace = 'Conflux eSpace', + ProxyNetworkTestnet = 'Proxy Network Testnet', + BronosTestnet = 'Bronos Testnet', + BronosMainnet = 'Bronos Mainnet', MetisAndromedaMainnet = 'Metis Andromeda Mainnet', + MOACmainnet = 'MOAC mainnet', + 'WEMIX3.0Mainnet' = 'WEMIX3.0 Mainnet', + 'WEMIX3.0Testnet' = 'WEMIX3.0 Testnet', + CoreBlockchainTestnet = 'Core Blockchain Testnet', + CoreBlockchainMainnet = 'Core Blockchain Mainnet', + DogcoinMainnet = 'Dogcoin Mainnet', + DeFiChainEVMNetworkMainnet = 'DeFiChain EVM Network Mainnet', + DeFiChainEVMNetworkTestnet = 'DeFiChain EVM Network Testnet', + AmStarTestnet = 'AmStar Testnet', MathChain = 'MathChain', MathChainTestnet = 'MathChain Testnet', + SmartHostTeknolojiTESTNET = 'Smart Host Teknoloji TESTNET', IoraChain = 'Iora Chain', EvanescoTestnet = 'Evanesco Testnet', WorldTradeTechnicalChainMainnet = 'World Trade Technical Chain Mainnet', PopcateumMainnet = 'Popcateum Mainnet', EnterChainMainnet = 'EnterChain Mainnet', + ExzoNetworkMainnet = 'Exzo Network Mainnet', + UltronTestnet = 'Ultron Testnet', + UltronMainnet = 'Ultron Mainnet', + StepNetwork = 'Step Network', + OMPlatformMainnet = 'OM Platform Mainnet', + CICChainTestnet = 'CIC Chain Testnet', HALOMainnet = 'HALO Mainnet', Moonbeam = 'Moonbeam', Moonriver = 'Moonriver', Moonrockold = 'Moonrock old', MoonbaseAlpha = 'Moonbase Alpha', Moonrock = 'Moonrock', - CENNZnetold = 'CENNZnet old', + Bobabeam = 'Bobabeam', + BobabaseTestnet = 'Bobabase Testnet', + DosFujiSubnet = 'Dos Fuji Subnet', + AlyxMainnet = 'Alyx Mainnet', + AitdMainnet = 'Aitd Mainnet', + AitdTestnet = 'Aitd Testnet', + GethTestnet = 'Geth Testnet', + ElysiumTestnet = 'Elysium Testnet', + ElysiumMainnet = 'Elysium Mainnet', + CICChainMainnet = 'CIC Chain Mainnet', + AmStarMainnet = 'AmStar Mainnet', + PolygonzkEVMTestnetold = 'Polygon zkEVM Testnet old', + 'PolygonzkEVMTestnetPreAudit-Upgraded' = 'Polygon zkEVM Testnet Pre Audit-Upgraded', + RikezaNetworkMainnet = 'Rikeza Network Mainnet', + PolygonzkEVMTestnet = 'Polygon zkEVM Testnet', + CtexScanBlockchain = 'Ctex Scan Blockchain', SherpaxMainnet = 'Sherpax Mainnet', SherpaxTestnet = 'Sherpax Testnet', + BeagleMessagingChain = 'Beagle Messaging Chain', CatecoinChainMainnet = 'Catecoin Chain Mainnet', Atheios = 'Atheios', Btachain = 'Btachain', + HorizenYumaTestnet = 'Horizen Yuma Testnet', LUDANMainnet = 'LUDAN Mainnet', + AnytypeEVMChain = 'Anytype EVM Chain', + TBSIMainnet = 'TBSI Mainnet', + TBSITestnet = 'TBSI Testnet', + PaletteChainMainnet = 'Palette Chain Mainnet', + Kerleano = 'Kerleano', + RabbitAnalogTestnetChain = 'Rabbit Analog Testnet Chain', CubeChainMainnet = 'Cube Chain Mainnet', CubeChainTestnet = 'Cube Chain Testnet', Teslafunds = 'Teslafunds', + GitshockCartenzTestnet = 'Gitshock Cartenz Testnet', BONNetwork = 'BON Network', + BitcichainMainnet = 'Bitcichain Mainnet', + BitcichainTestnet = 'Bitcichain Testnet', + ONUSChainTestnet = 'ONUS Chain Testnet', + 'D-ChainMainnet' = 'D-Chain Mainnet', + Eleanor = 'Eleanor', + Atelier = 'Atelier', + ONUSChainMainnet = 'ONUS Chain Mainnet', EurusTestnet = 'Eurus Testnet', EtherGem = 'EtherGem', + Ekta = 'Ekta', + EdeXaTestnet = 'edeXa Testnet', + DogechainMainnet = 'Dogechain Mainnet', MilkomedaC1Mainnet = 'Milkomeda C1 Mainnet', + MilkomedaA1Mainnet = 'Milkomeda A1 Mainnet', CloudWalkTestnet = 'CloudWalk Testnet', CloudWalkMainnet = 'CloudWalk Mainnet', - '420coin' = '420coin', - EdgewareMainnet = 'Edgeware Mainnet', - BeresheetTestnet = 'Beresheet Testnet', + MainnetZMainnet = 'MainnetZ Mainnet', + PublicMintDevnet = 'PublicMint Devnet', + PublicMintTestnet = 'PublicMint Testnet', + PublicMintMainnet = 'PublicMint Mainnet', + EdgewareEdgeEVMMainnet = 'Edgeware EdgeEVM Mainnet', + BeresheetBereEVMTestnet = 'Beresheet BereEVM Testnet', TaycanTestnet = 'Taycan Testnet', RangersProtocolMainnet = 'Rangers Protocol Mainnet', + OriginTrailParachain = 'OriginTrail Parachain', + StratosTestnet = 'Stratos Testnet', + StratosMainnet = 'Stratos Mainnet', + QuokkacoinMainnet = 'Quokkacoin Mainnet', EcoballMainnet = 'Ecoball Mainnet', EcoballTestnetEspuma = 'Ecoball Testnet Espuma', + ExosamaNetwork = 'Exosama Network', + MetaplayeroneMainnet = 'Metaplayerone Mainnet', + BOSagoraMainnet = 'BOSagora Mainnet', FindoraMainnet = 'Findora Mainnet', FindoraTestnet = 'Findora Testnet', + FindoraForge = 'Findora Forge', + BitcoinEVM = 'Bitcoin EVM', EvanescoMainnet = 'Evanesco Mainnet', KavaEVMTestnet = 'Kava EVM Testnet', KavaEVM = 'Kava EVM', VChainMainnet = 'VChain Mainnet', + BOMBChain = 'BOMB Chain', + Arevia = 'Arevia', + Altcoinchain = 'Altcoinchain', + BOMBChainTestnet = 'BOMB Chain Testnet', + TCGVerseMainnet = 'TCG Verse Mainnet', + XODEX = 'XODEX', KorthoMainnet = 'Kortho Mainnet', TechPayMainnet = 'TechPay Mainnet', + PoCRNet = 'PoCRNet', + RedlightChainMainnet = 'Redlight Chain Mainnet', 'EZChainC-ChainMainnet' = 'EZChain C-Chain Mainnet', 'EZChainC-ChainTestnet' = 'EZChain C-Chain Testnet', + BobaNetworkGoerliTestnet = 'Boba Network Goerli Testnet', + BitYuanMainnet = 'BitYuan Mainnet', CENNZnetRata = 'CENNZnet Rata', CENNZnetNikau = 'CENNZnet Nikau', + OrlandoChain = 'Orlando Chain', + BifrostMainnet = 'Bifrost Mainnet', + 'Filecoin-Hyperspacetestnet' = 'Filecoin - Hyperspace testnet', + DebounceSubnetTestnet = 'Debounce Subnet Testnet', ZCoreTestnet = 'ZCore Testnet', Web3QTestnet = 'Web3Q Testnet', Web3QGalileo = 'Web3Q Galileo', ParibuNetMainnet = 'Paribu Net Mainnet', ParibuNetTestnet = 'Paribu Net Testnet', + JFINChain = 'JFIN Chain', + PandoProjectMainnet = 'PandoProject Mainnet', + PandoProjectTestnet = 'PandoProject Testnet', + Metacodechain = 'Metacodechain', BittexMainnet = 'Bittex Mainnet', + EmpireNetwork = 'Empire Network', Crossbell = 'Crossbell', + DRACNetwork = 'DRAC Network', DYNOMainnet = 'DYNO Mainnet', DYNOTestnet = 'DYNO Testnet', YuanChainMainnet = 'YuanChain Mainnet', FantomTestnet = 'Fantom Testnet', + BobaoperaTestnet = 'Bobaopera Testnet', + Nahmii3Mainnet = 'Nahmii 3 Mainnet', + Nahmii3Testnet = 'Nahmii 3 Testnet', + BitindiTestnet = 'Bitindi Testnet', + BitindiMainnet = 'Bitindi Mainnet', AIOZNetworkTestnet = 'AIOZ Network Testnet', - PHINetwork = 'PHI Network', + TipboxcoinTestnet = 'Tipboxcoin Testnet', + PHINetworkV1 = 'PHI Network V1', + BobafujiTestnet = 'Bobafuji Testnet', + HtmlcoinMainnet = 'Htmlcoin Mainnet', IoTeXNetworkMainnet = 'IoTeX Network Mainnet', IoTeXNetworkTestnet = 'IoTeX Network Testnet', + BlackFortExchangeNetworkTestnet = 'BlackFort Exchange Network Testnet', VenidiumTestnet = 'Venidium Testnet', VenidiumMainnet = 'Venidium Mainnet', + BlackFortExchangeNetwork = 'BlackFort Exchange Network', + Mantle = 'Mantle', + MantleTestnet = 'Mantle Testnet', TLChainNetworkMainnet = 'TLChain Network Mainnet', EraSwapMainnet = 'EraSwap Mainnet', + HumanodeMainnet = 'Humanode Mainnet', + FirechainMainnetOld = 'Firechain Mainnet Old', UzmiNetworkMainnet = 'Uzmi Network Mainnet', NahmiiMainnet = 'Nahmii Mainnet', NahmiiTestnet = 'Nahmii Testnet', + ChainVerseMainnet = 'Chain Verse Mainnet', SyscoinTanenbaumTestnet = 'Syscoin Tanenbaum Testnet', - DigestSwarmChain = 'Digest Swarm Chain', + HikaNetworkTestnet = 'Hika Network Testnet', + Ganache = 'Ganache', OntologyTestnet = 'Ontology Testnet', WegochainRubidiumMainnet = 'Wegochain Rubidium Mainnet', + TresTestnet = 'Tres Testnet', + TresMainnet = 'Tres Mainnet', + ScolcoinWeiChainTestnet = 'Scolcoin WeiChain Testnet', PixieChainMainnet = 'Pixie Chain Mainnet', + GoldSmartChainMainnet = 'Gold Smart Chain Mainnet', + TombChainMainnet = 'Tomb Chain Mainnet', + PolySmartChain = 'PolySmartChain', + ZetaChainMainnet = 'ZetaChain Mainnet', + ZetaChainAthensTestnet = 'ZetaChain Athens Testnet', Ellatheheart = 'Ella the heart', + PlanqMainnet = 'Planq Mainnet', + KLYNTAR = 'KLYNTAR', ShyftMainnet = 'Shyft Mainnet', + Canto = 'Canto', RiseoftheWarbotsTestnet = 'Rise of the Warbots Testnet', HazlorTestnet = 'Hazlor Testnet', Teleport = 'Teleport', TeleportTestnet = 'Teleport Testnet', MDGLTestnet = 'MDGL Testnet', - GeneChainAdenineTestnet = 'GeneChain Adenine Testnet', + 'ShardeumLiberty1.X' = 'Shardeum Liberty 1.X', + 'ShardeumLiberty2.X' = 'Shardeum Liberty 2.X', + 'ShardeumSphinx1.X' = 'Shardeum Sphinx 1.X', + StreamuXBlockchain = 'StreamuX Blockchain', + QitmeerNetworkTestnet = 'Qitmeer Network Testnet', + BeOneChainTestnet = 'BeOne Chain Testnet', KlaytnMainnetCypress = 'Klaytn Mainnet Cypress', + BlocktonBlockchain = 'Blockton Blockchain', KorthoTest = 'KorthoTest', + DraconesFinancialServices = 'Dracones Financial Services', + Base = 'Base', + TokiNetwork = 'Toki Network', + TokiTestnet = 'Toki Testnet', TOOLGlobalMainnet = 'TOOL Global Mainnet', TOOLGlobalTestnet = 'TOOL Global Testnet', - AmbrosChainTestnet = 'Ambros Chain Testnet', + AlphNetwork = 'Alph Network', + TMYChain = 'TMY Chain', + MAROBlockchainMainnet = 'MARO Blockchain Mainnet', + Unique = 'Unique', + QuartzbyUnique = 'Quartz by Unique', + OpaltestnetbyUnique = 'Opal testnet by Unique', + SapphirebyUnique = 'Sapphire by Unique', + XANAChain = 'XANAChain', + VyvoSmartChain = 'Vyvo Smart Chain', MammothMainnet = 'Mammoth Mainnet', + JIBCHAINL1 = 'JIBCHAIN L1', + GiantMammothMainnet = 'Giant Mammoth Mainnet', Bloxberg = 'bloxberg', EvmosTestnet = 'Evmos Testnet', Evmos = 'Evmos', + BerylBitMainnet = 'BerylBit Mainnet', GenesisCoin = 'Genesis Coin', + RiniaTestnetOld = 'Rinia Testnet Old', + DogcoinTestnet = 'Dogcoin Testnet', RangersProtocolTestnetRobin = 'Rangers Protocol Testnet Robin', + QEasyWeb3Testnet = 'QEasyWeb3 Testnet', + OortMainnetDev = 'Oort MainnetDev', + BobaBNBTestnet = 'Boba BNB Testnet', + MainnetZTestnet = 'MainnetZ Testnet', MyOwnTestnet = 'myOwn Testnet', SmartBitcoinCash = 'Smart Bitcoin Cash', SmartBitcoinCashTestnet = 'Smart Bitcoin Cash Testnet', + GonChain = 'Gon Chain', + SJATSH = 'SJATSH', BlockchainGenesisMainnet = 'Blockchain Genesis Mainnet', + ChiadoTestnet = 'Chiado Testnet', + '0XTade' = '0XTade', + NumbersMainnet = 'Numbers Mainnet', + NumbersTestnet = 'Numbers Testnet', CryptoCoinPay = 'CryptoCoinPay', QuadransBlockchain = 'Quadrans Blockchain', QuadransBlockchainTestnet = 'Quadrans Blockchain Testnet', + Astra = 'Astra', WAGMI = 'WAGMI', + AstraTestnet = 'Astra Testnet', + HashBitMainnet = 'HashBit Mainnet', + HaqqNetwork = 'Haqq Network', ShyftTestnet = 'Shyft Testnet', + SardisTestnet = 'Sardis Testnet', + SanRChain = 'SanR Chain', SingularityZEROTestnet = 'Singularity ZERO Testnet', SingularityZEROMainnet = 'Singularity ZERO Mainnet', + FibonacciMainnet = 'Fibonacci Mainnet', + BLGTestnet = 'BLG Testnet', + StepTestnet = 'Step Testnet', + RikezaNetworkTestnet = 'Rikeza Network Testnet', + SPS = 'SPS', + CreditSmartchainMainnet = 'Credit Smartchain Mainnet', PhoenixMainnet = 'Phoenix Mainnet', + Susono = 'Susono', + SPSTestnet = 'SPS Testnet', + LoopNetworkMainnet = 'LoopNetwork Mainnet', + TrustEVMTestnet = 'Trust EVM Testnet', MetaDotMainnet = 'MetaDot Mainnet', MetaDotTestnet = 'MetaDot Testnet', + AirDAOMainnet = 'AirDAO Mainnet', IVARChainTestnet = 'IVAR Chain Testnet', + FrontierofDreamsTestnet = 'Frontier of Dreams Testnet', + ProofOfMemes = 'Proof Of Memes', + HOMEVerseMainnet = 'HOME Verse Mainnet', BTCIXNetwork = 'BTCIX Network', + CallistoTestnet = 'Callisto Testnet', + P12Chain = 'P12 Chain', CENNZnetAzalea = 'CENNZnet Azalea', OmChainMainnet = 'omChain Mainnet', Taycan = 'Taycan', + AirDAOTestnet = 'AirDAO Testnet', + MAPMainnet = 'MAP Mainnet', + OpsideTestnet = 'Opside Testnet', + OasisSapphire = 'Oasis Sapphire', + OasisSapphireTestnet = 'Oasis Sapphire Testnet', Webchain = 'Webchain', 'MintMe.comCoin' = 'MintMe.com Coin', + HammerChainMainnet = 'Hammer Chain Mainnet', + BitkubChainTestnet = 'Bitkub Chain Testnet', + HertzNetworkMainnet = 'Hertz Network Mainnet', OasisChainMainnet = 'OasisChain Mainnet', + 'OptimismBedrock(GoerliAlphaTestnet)' = 'Optimism Bedrock (Goerli Alpha Testnet)', Piecetestnet = 'Piece testnet', EthersocialNetwork = 'Ethersocial Network', + CloudTxMainnet = 'CloudTx Mainnet', + CloudTxTestnet = 'CloudTx Testnet', GoChainTestnet = 'GoChain Testnet', + 'Filecoin-Wallabytestnet' = 'Filecoin - Wallaby testnet', BitgertMainnet = 'Bitgert Mainnet', FusionMainnet = 'Fusion Mainnet', + ZilliqaEVMTestnet = 'Zilliqa EVM Testnet', + AvesMainnet = 'Aves Mainnet', + J2OTaro = 'J2O Taro', + QMainnet = 'Q Mainnet', + QTestnet = 'Q Testnet', EnergiMainnet = 'Energi Mainnet', + OHOMainnet = 'OHO Mainnet', + 'Opulent-XBETA' = 'Opulent-X BETA', Pegglecoin = 'pegglecoin', ArbitrumOne = 'Arbitrum One', + ArbitrumNova = 'Arbitrum Nova', CeloMainnet = 'Celo Mainnet', - EmeraldParatimeTestnet = 'Emerald Paratime Testnet', - EmeraldParatimeMainnet = 'Emerald Paratime Mainnet', + OasisEmeraldTestnet = 'Oasis Emerald Testnet', + OasisEmerald = 'Oasis Emerald', Athereum = 'Athereum', AvalancheFujiTestnet = 'Avalanche Fuji Testnet', 'AvalancheC-Chain' = 'Avalanche C-Chain', + BobaAvax = 'Boba Avax', + Frenchain = 'Frenchain', CeloAlfajoresTestnet = 'Celo Alfajores Testnet', AutobahnNetwork = 'Autobahn Network', + FusionTestnet = 'Fusion Testnet', REINetwork = 'REI Network', + Floripa = 'Floripa', + BifrostTestnet = 'Bifrost Testnet', EnergiTestnet = 'Energi Testnet', + LiveplexOracleEVM = 'Liveplex OracleEVM', + GTONTestnet = 'GTON Testnet', + SardisMainnet = 'Sardis Mainnet', DFKChain = 'DFK Chain', + HaqqChainTestnet = 'Haqq Chain Testnet', REIChainMainnet = 'REI Chain Mainnet', REIChainTestnet = 'REI Chain Testnet', + BobaBNBMainnet = 'Boba BNB Mainnet', ThinkiumTestnetChain0 = 'Thinkium Testnet Chain 0', ThinkiumTestnetChain1 = 'Thinkium Testnet Chain 1', ThinkiumTestnetChain2 = 'Thinkium Testnet Chain 2', ThinkiumTestnetChain103 = 'Thinkium Testnet Chain 103', + EticaMainnet = 'Etica Mainnet', + DoKENSuperChainMainnet = 'DoKEN Super Chain Mainnet', CeloBaklavaTestnet = 'Celo Baklava Testnet', MultiVACMainnet = 'MultiVAC Mainnet', ECreditsMainnet = 'eCredits Mainnet', ECreditsTestnet = 'eCredits Testnet', + ScolcoinMainnet = 'Scolcoin Mainnet', + SiriusNet = 'SiriusNet', Condrieu = 'Condrieu', ThinkiumMainnetChain0 = 'Thinkium Mainnet Chain 0', ThinkiumMainnetChain1 = 'Thinkium Mainnet Chain 1', ThinkiumMainnetChain2 = 'Thinkium Mainnet Chain 2', ThinkiumMainnetChain103 = 'Thinkium Mainnet Chain 103', PolyjuiceTestnet = 'Polyjuice Testnet', - 'GodwokenTestnet(V1.1)' = 'Godwoken Testnet (V1.1)', + GodwokenTestnetv1 = 'Godwoken Testnet v1', GodwokenMainnet = 'Godwoken Mainnet', EnergyWebVoltaTestnet = 'Energy Web Volta Testnet', MixinVirtualMachine = 'Mixin Virtual Machine', + ResinCoinMainnet = 'ResinCoin Mainnet', + VentionSmartChainMainnet = 'Vention Smart Chain Mainnet', Firenzetestnetwork = 'Firenze test network', + GoldSmartChainTestnet = 'Gold Smart Chain Testnet', Mumbai = 'Mumbai', + BaseGoerliTestnet = 'Base Goerli Testnet', + ChilizScovilleTestnet = 'Chiliz Scoville Testnet', IVARChainMainnet = 'IVAR Chain Mainnet', + BeverlyHills = 'Beverly Hills', + LambdaTestnet = 'Lambda Testnet', + BobaBNBMainnetOld = 'Boba BNB Mainnet Old', 'UBSmartChain(testnet)' = 'UB Smart Chain(testnet)', UBSmartChain = 'UB Smart Chain', QuarkChainMainnetRoot = 'QuarkChain Mainnet Root', @@ -365,6 +648,10 @@ export enum ChainName { QuarkChainMainnetShard5 = 'QuarkChain Mainnet Shard 5', QuarkChainMainnetShard6 = 'QuarkChain Mainnet Shard 6', QuarkChainMainnetShard7 = 'QuarkChain Mainnet Shard 7', + VeChain = 'VeChain', + VeChainTestnet = 'VeChain Testnet', + DeprecatedChiadoTestnet = 'Deprecated Chiado Testnet', + SoverunTestnet = 'Soverun Testnet', Crystaleum = 'Crystaleum', BROChainMainnet = 'BROChain Mainnet', QuarkChainDevnetRoot = 'QuarkChain Devnet Root', @@ -376,52 +663,116 @@ export enum ChainName { QuarkChainDevnetShard5 = 'QuarkChain Devnet Shard 5', QuarkChainDevnetShard6 = 'QuarkChain Devnet Shard 6', QuarkChainDevnetShard7 = 'QuarkChain Devnet Shard 7', + SiberiumNetwork = 'Siberium Network', + ETNDChainMainnets = 'ETND Chain Mainnets', + CondorTestNetwork = 'Condor Test Network', MilkomedaC1Testnet = 'Milkomeda C1 Testnet', + MilkomedaA1Testnet = 'Milkomeda A1 Testnet', Akroma = 'Akroma', AlayaMainnet = 'Alaya Mainnet', AlayaDevTestnet = 'Alaya Dev Testnet', + MythicalChain = 'Mythical Chain', + DecimalSmartChainTestnet = 'Decimal Smart Chain Testnet', + Jellie = 'Jellie', PlatONMainnet = 'PlatON Mainnet', + MasMainnet = 'Mas Mainnet', HaymoTestnet = 'Haymo Testnet', ARTISsigma1 = 'ARTIS sigma1', ARTISTestnettau1 = 'ARTIS Testnet tau1', + SaakuruTestnet = 'Saakuru Testnet', + 'CMP-Mainnet' = 'CMP-Mainnet', + GearZeroNetworkTestnet = 'Gear Zero Network Testnet', SocialSmartChainMainnet = 'Social Smart Chain Mainnet', + 'Filecoin-Calibrationtestnet' = 'Filecoin - Calibration testnet', + OoneChainTestnet = 'Oone Chain Testnet', PolisTestnet = 'Polis Testnet', PolisMainnet = 'Polis Mainnet', + HAPchainTestnet = 'HAPchain Testnet', + 'MetalC-Chain' = 'Metal C-Chain', + 'MetalTahoeC-Chain' = 'Metal Tahoe C-Chain', + TipboxcoinMainnet = 'Tipboxcoin Mainnet', + Kekchain = 'Kekchain', + 'Kekchain(kektest)' = 'Kekchain (kektest)', ArbitrumRinkeby = 'Arbitrum Rinkeby', - DexalotTestnet = 'Dexalot Testnet', + ArbitrumGoerli = 'Arbitrum Goerli', + FastexChaintestnet = 'Fastex Chain testnet', + DexalotSubnetTestnet = 'Dexalot Subnet Testnet', + DexalotSubnet = 'Dexalot Subnet', WeelinkTestnet = 'Weelink Testnet', OpenChainMainnet = 'OpenChain Mainnet', 'CMP-Testnet' = 'CMP-Testnet', + EthereumFair = 'ethereum Fair', + Scroll = 'Scroll', + ScrollAlphaTestnet = 'Scroll Alpha Testnet', + 'ScrollPre-AlphaTestnet' = 'Scroll Pre-Alpha Testnet', + BeanEcoSmartChain = 'BeanEco SmartChain', + BearNetworkChainMainnet = 'Bear Network Chain Mainnet', 'Vision-VpioneerTestChain' = 'Vision - Vpioneer Test Chain', + BearNetworkChainTestnet = 'Bear Network Chain Testnet', + OctaSpace = 'OctaSpace', + '4GoodNetwork' = '4GoodNetwork', 'Vision-Mainnet' = 'Vision - Mainnet', + PosichainMainnetShard0 = 'Posichain Mainnet Shard 0', + PosichainTestnetShard0 = 'Posichain Testnet Shard 0', + PosichainDevnetShard0 = 'Posichain Devnet Shard 0', + PosichainDevnetShard1 = 'Posichain Devnet Shard 1', + FNCYTestnet = 'FNCY Testnet', EluvioContentFabric = 'Eluvio Content Fabric', EthoProtocol = 'Etho Protocol', Xerom = 'Xerom', Kintsugi = 'Kintsugi', Kiln = 'Kiln', - PlatONDevTestnet = 'PlatON Dev Testnet', + Zhejiang = 'Zhejiang', + PlianMainnetMain = 'Plian Mainnet Main', + PlatONDevTestnetDeprecated = 'PlatON Dev Testnet Deprecated', PlatONDevTestnet2 = 'PlatON Dev Testnet2', + 'Filecoin-Butterflytestnet' = 'Filecoin - Butterfly testnet', + ImversedMainnet = 'Imversed Mainnet', + ImversedTestnet = 'Imversed Testnet', + SaakuruMainnet = 'Saakuru Mainnet', + OpenVessel = 'OpenVessel', + QL1Testnet = 'QL1 Testnet', Musicoin = 'Musicoin', + PlianMainnetSubchain1 = 'Plian Mainnet Subchain 1', + HAPchain = 'HAPchain', + PlianTestnetSubchain1 = 'Plian Testnet Subchain 1', + SoverunMainnet = 'Soverun Mainnet', Sepolia = 'Sepolia', PepChainChurchill = 'PepChain Churchill', + AnduschainMainnet = 'Anduschain Mainnet', + PlianTestnetMain = 'Plian Testnet Main', IOLite = 'IOLite', SmartMeshMainnet = 'SmartMesh Mainnet', Quarkblockchain = 'quarkblockchain', + ExcelonMainnet = 'Excelon Mainnet', + 'ExcoincialChainVolta-Testnet' = 'Excoincial Chain Volta-Testnet', + ExcoincialChainMainnet = 'Excoincial Chain Mainnet', AuxiliumNetworkMainnet = 'Auxilium Network Mainnet', + FlachainMainnet = 'Flachain Mainnet', + 'Filecoin-Localtestnet' = 'Filecoin - Local testnet', JoysDigitalMainnet = 'Joys Digital Mainnet', + Maistestsubnet = 'maistestsubnet', Aquachain = 'Aquachain', + 'AutonityBakerloo(Thames)Testnet' = 'Autonity Bakerloo (Thames) Testnet', + 'AutonityPiccadilly(Thames)Testnet' = 'Autonity Piccadilly (Thames) Testnet', JoysDigitalTestNet = 'Joys Digital TestNet', GatherMainnetNetwork = 'Gather Mainnet Network', NeonEVMDevNet = 'Neon EVM DevNet', NeonEVMMainNet = 'Neon EVM MainNet', NeonEVMTestNet = 'Neon EVM TestNet', OneLedgerMainnet = 'OneLedger Mainnet', + 'CalypsoNFTHub(SKALETestnet)' = 'Calypso NFT Hub (SKALE Testnet)', GatherTestnetNetwork = 'Gather Testnet Network', GatherDevnetNetwork = 'Gather Devnet Network', + NebulaStaging = 'Nebula Staging', IPOSNetwork = 'IPOS Network', + CyberdeckNet = 'CyberdeckNet', + HUMANProtocol = 'HUMAN Protocol', AuroraMainnet = 'Aurora Mainnet', AuroraTestnet = 'Aurora Testnet', AuroraBetanet = 'Aurora Betanet', + NebulaMainnet = 'Nebula Mainnet', + 'CalypsoNFTHub(SKALE)' = 'Calypso NFT Hub (SKALE)', HarmonyMainnetShard0 = 'Harmony Mainnet Shard 0', HarmonyMainnetShard1 = 'Harmony Mainnet Shard 1', HarmonyMainnetShard2 = 'Harmony Mainnet Shard 2', @@ -430,13 +781,17 @@ export enum ChainName { HarmonyTestnetShard1 = 'Harmony Testnet Shard 1', HarmonyTestnetShard2 = 'Harmony Testnet Shard 2', HarmonyTestnetShard3 = 'Harmony Testnet Shard 3', + HarmonyDevnetShard0 = 'Harmony Devnet Shard 0', DataHopper = 'DataHopper', + EuropaSKALEChain = 'Europa SKALE Chain', Pirl = 'Pirl', OneLedgerTestnetFrankenstein = 'OneLedger Testnet Frankenstein', PalmTestnet = 'Palm Testnet', Palm = 'Palm', NtityMainnet = 'Ntity Mainnet', HaradevTestnet = 'Haradev Testnet', + Zeniq = 'Zeniq', + PDCMainnet = 'PDC Mainnet', MolereumNetwork = 'Molereum Network', 'GodwokenTestnet(V1)' = 'Godwoken Testnet (V1)' } @@ -461,10 +816,10 @@ export enum ChainId { ThunderCoreTestnet = 18, 'SongbirdCanary-Network' = 19, ElastosSmartChain = 20, - 'ELA-ETH-SidechainTestnet' = 21, + ElastosSmartChainTestnet = 21, 'ELA-DID-SidechainMainnet' = 22, 'ELA-DID-SidechainTestnet' = 23, - DithereumMainnet = 24, + KardiaChainMainnet = 24, CronosMainnetBeta = 25, GenesisL1testnet = 26, ShibaChain = 27, @@ -476,15 +831,21 @@ export enum ChainId { GoodDataMainnet = 33, DithereumTestnet = 34, TBWGChain = 35, + DxchainMainnet = 36, + 'SeedCoin-Network' = 37, Valorbit = 38, + UnicornUltraTestnet = 39, TelosEVMMainnet = 40, TelosEVMTestnet = 41, Kovan = 42, DarwiniaPangolinTestnet = 43, DarwiniaCrabNetwork = 44, DarwiniaPangoroTestnet = 45, - XinFinNetworkMainnet = 50, - XinFinApothemTestnet = 51, + DarwiniaNetwork = 46, + EnnothemMainnetProterozoic = 48, + EnnothemTestnetPioneer = 49, + XinFinXDCNetwork = 50, + XDCApothemNetwork = 51, CoinExSmartChainMainnet = 52, CoinExSmartChainTestnet = 53, OpenpieceMainnet = 54, @@ -505,7 +866,10 @@ export enum ChainId { OptimismKovan = 69, HooSmartChain = 70, 'ConfluxeSpace(Testnet)' = 71, + DxChainTestnet = 72, + FNCY = 73, IDChainMainnet = 74, + DecimalSmartChainMainnet = 75, Mix = 76, POANetworkSokol = 77, PrimusChainmainnet = 78, @@ -524,18 +888,27 @@ export enum ChainId { GarizonStage2 = 92, GarizonStage3 = 93, CryptoKylinTestnet = 95, - NEXTSmartChain = 96, + BitkubChain = 96, BinanceSmartChainTestnet = 97, POANetworkCore = 99, Gnosis = 100, EtherInc = 101, Web3GamesTestnet = 102, + KaibaLightningChainTestnet = 104, Web3GamesDevnet = 105, VelasEVMMainnet = 106, NebulaTestnet = 107, ThunderCoreMainnet = 108, ProtonTestnet = 110, EtherLiteChain = 111, + Dehvo = 113, + FlareTestnetCoston2 = 114, + DeBankTestnet = 115, + DeBankMainnet = 116, + ArcologyTestnet = 118, + ENULSMainnet = 119, + ENULSTestnet = 120, + RealchainMainnet = 121, FuseMainnet = 122, FuseSparknet = 123, DecentralizedWebMainnet = 124, @@ -543,11 +916,17 @@ export enum ChainId { OYchainMainnet = 126, Factory127Mainnet = 127, HuobiECOChainMainnet = 128, + IExecSidechain = 134, + AlyxChainTestnet = 135, PolygonMainnet = 137, OpenpieceTestnet = 141, DAXCHAIN = 142, + PHINetworkv2 = 144, + ArmoniaEvaChainMainnet = 160, + ArmoniaEvaChainTestnet = 161, LightstreamsTestnet = 162, LightstreamsMainnet = 163, + AtoshiTestnet = 167, AIOZNetwork = 168, HOOSmartChainTestnet = 170, 'Latam-BlockchainResilTestnet' = 172, @@ -556,24 +935,38 @@ export enum ChainId { BMCMainnet = 188, BMCTestnet = 189, CryptoEmergency = 193, + OKBChainTestnet = 195, + OKBChainMainnet = 196, BitTorrentChainMainnet = 199, ArbitrumonxDai = 200, + MOACtestnet = 201, FreightTrustNetwork = 211, + MAPMakalu = 212, + SiriusNetV2 = 217, SoterOneMainnetold = 218, Permission = 222, LACHAINMainnet = 225, LACHAINTestnet = 226, - AitdTestnet = 239, EnergyWebChain = 246, + OasysMainnet = 248, FantomOpera = 250, HuobiECOChainTestnet = 256, Setheum = 258, SURBlockchainNetwork = 262, HighPerformanceBlockchain = 269, + ZkSyncEraTestnet = 280, BobaNetwork = 288, - OptimismonGnosisChain = 300, + HederaMainnet = 295, + HederaTestnet = 296, + HederaPreviewnet = 297, + HederaLocalnet = 298, + OptimismonGnosis = 300, + Bobaopera = 301, + OmaxMainnet = 311, + 'Filecoin-Mainnet' = 314, KCCMainnet = 321, KCCTestnet = 322, + ZkSyncEraMainnet = 324, Web3QMainnet = 333, DFKChainTest = 335, Shiden = 336, @@ -583,51 +976,86 @@ export enum ChainId { ThetaAmberTestnet = 364, ThetaTestnet = 365, PulseChainMainnet = 369, + ConstaTestnet = 371, Lisinski = 385, + HyperonChainTestNet = 400, SXNetworkMainnet = 416, - OptimisticEthereumTestnetGoerli = 420, + LATestnet = 418, + OptimismGoerliTestnet = 420, + ZeethChain = 427, + FrenchainTestnet = 444, Rupaya = 499, + 'CaminoC-Chain' = 500, + ColumbusTestNetwork = 501, 'Double-AChainMainnet' = 512, 'Double-AChainTestnet' = 513, + GearZeroNetworkMainnet = 516, XTSmartChainMainnet = 520, + FirechainMainnet = 529, + 'F(x)CoreMainnetNetwork' = 530, Candle = 534, Vela1ChainMainnet = 555, TaoNetwork = 558, + DogechainTestnet = 568, MetisStardustTestnet = 588, Astar = 592, AcalaMandalaTestnet = 595, KaruraNetworkTestnet = 596, AcalaNetworkTestnet = 597, + MetisGoerliTestnet = 599, Meshnyantestnet = 600, + GraphlinqBlockchainMainnet = 614, SXNetworkTestnet = 647, + EnduranceSmartChainMainnet = 648, PixieChainTestnet = 666, KaruraNetwork = 686, StarSocialTestnet = 700, BlockChainStationMainnet = 707, BlockChainStationTestnet = 708, - Factory127Testnet = 721, + LycanChain = 721, + CantoTestnet = 740, + VentionSmartChainTestnet = 741, + QL1 = 766, OpenChainTestnet = 776, CheapETH = 777, AcalaNetwork = 787, AerochainTestnet = 788, + LucidBlockchain = 800, Haic = 803, + PortalFantasyChainTest = 808, + Qitmeer = 813, CallistoMainnet = 820, - CallistoTestnet = 821, + CallistoTestnetDeprecated = 821, + TaraxaMainnet = 841, + TaraxaTestnet = 842, + ZeethChainDev = 859, + FantasiaChainMainnet = 868, + BandaiNamcoResearchVerseMainnet = 876, + DexitNetwork = 877, AmbrosChainMainnet = 880, Wanchain = 888, GarizonTestnetStage0 = 900, GarizonTestnetStage1 = 901, GarizonTestnetStage2 = 902, GarizonTestnetStage3 = 903, + PortalFantasyChain = 909, + RiniaTestnet = 917, PulseChainTestnet = 940, PulseChainTestnetv2b = 941, PulseChainTestnetv3 = 942, + MuNodeTestnet = 956, + OortMainnet = 970, + OortHuygens = 971, + OortAscraeus = 972, NepalBlockchainNetwork = 977, TOPMainnetEVM = 980, + MemoSmartChainMainnet = 985, TOPMainnet = 989, LuckyNetwork = 998, WanchainTestnet = 999, + GTONMainnet = 1000, KlaytnTestnetBaobab = 1001, + 'T-EKTA' = 1004, NewtonTestnet = 1007, EurusMainnet = 1008, EvriceNetwork = 1010, @@ -637,165 +1065,375 @@ export enum ChainId { CLVParachain = 1024, BitTorrentChainTestnet = 1028, ConfluxeSpace = 1030, + ProxyNetworkTestnet = 1031, + BronosTestnet = 1038, + BronosMainnet = 1039, MetisAndromedaMainnet = 1088, + MOACmainnet = 1099, + 'WEMIX3.0Mainnet' = 1111, + 'WEMIX3.0Testnet' = 1112, + CoreBlockchainTestnet = 1115, + CoreBlockchainMainnet = 1116, + DogcoinMainnet = 1117, + DeFiChainEVMNetworkMainnet = 1130, + DeFiChainEVMNetworkTestnet = 1131, + AmStarTestnet = 1138, MathChain = 1139, MathChainTestnet = 1140, + SmartHostTeknolojiTESTNET = 1177, IoraChain = 1197, EvanescoTestnet = 1201, WorldTradeTechnicalChainMainnet = 1202, PopcateumMainnet = 1213, EnterChainMainnet = 1214, + ExzoNetworkMainnet = 1229, + UltronTestnet = 1230, + UltronMainnet = 1231, + StepNetwork = 1234, + OMPlatformMainnet = 1246, + CICChainTestnet = 1252, HALOMainnet = 1280, Moonbeam = 1284, Moonriver = 1285, Moonrockold = 1286, MoonbaseAlpha = 1287, Moonrock = 1288, - CENNZnetold = 1337, + Bobabeam = 1294, + BobabaseTestnet = 1297, + DosFujiSubnet = 1311, + AlyxMainnet = 1314, + AitdMainnet = 1319, + AitdTestnet = 1320, + GethTestnet = 1337, + ElysiumTestnet = 1338, + ElysiumMainnet = 1339, + CICChainMainnet = 1353, + AmStarMainnet = 1388, + PolygonzkEVMTestnetold = 1402, + 'PolygonzkEVMTestnetPreAudit-Upgraded' = 1422, + RikezaNetworkMainnet = 1433, + PolygonzkEVMTestnet = 1442, + CtexScanBlockchain = 1455, SherpaxMainnet = 1506, SherpaxTestnet = 1507, + BeagleMessagingChain = 1515, CatecoinChainMainnet = 1618, Atheios = 1620, Btachain = 1657, + HorizenYumaTestnet = 1662, LUDANMainnet = 1688, + AnytypeEVMChain = 1701, + TBSIMainnet = 1707, + TBSITestnet = 1708, + PaletteChainMainnet = 1718, + Kerleano = 1804, + RabbitAnalogTestnetChain = 1807, CubeChainMainnet = 1818, CubeChainTestnet = 1819, Teslafunds = 1856, + GitshockCartenzTestnet = 1881, BONNetwork = 1898, + BitcichainMainnet = 1907, + BitcichainTestnet = 1908, + ONUSChainTestnet = 1945, + 'D-ChainMainnet' = 1951, + Eleanor = 1967, + Atelier = 1971, + ONUSChainMainnet = 1975, EurusTestnet = 1984, EtherGem = 1987, + Ekta = 1994, + EdeXaTestnet = 1995, + DogechainMainnet = 2000, MilkomedaC1Mainnet = 2001, + MilkomedaA1Mainnet = 2002, CloudWalkTestnet = 2008, CloudWalkMainnet = 2009, - '420coin' = 2020, - EdgewareMainnet = 2021, - BeresheetTestnet = 2022, + MainnetZMainnet = 2016, + PublicMintDevnet = 2018, + PublicMintTestnet = 2019, + PublicMintMainnet = 2020, + EdgewareEdgeEVMMainnet = 2021, + BeresheetBereEVMTestnet = 2022, TaycanTestnet = 2023, RangersProtocolMainnet = 2025, + OriginTrailParachain = 2043, + StratosTestnet = 2047, + StratosMainnet = 2048, + QuokkacoinMainnet = 2077, EcoballMainnet = 2100, EcoballTestnetEspuma = 2101, + ExosamaNetwork = 2109, + MetaplayeroneMainnet = 2122, + BOSagoraMainnet = 2151, FindoraMainnet = 2152, FindoraTestnet = 2153, + FindoraForge = 2154, + BitcoinEVM = 2203, EvanescoMainnet = 2213, KavaEVMTestnet = 2221, KavaEVM = 2222, VChainMainnet = 2223, + BOMBChain = 2300, + Arevia = 2309, + Altcoinchain = 2330, + BOMBChainTestnet = 2399, + TCGVerseMainnet = 2400, + XODEX = 2415, KorthoMainnet = 2559, TechPayMainnet = 2569, + PoCRNet = 2606, + RedlightChainMainnet = 2611, 'EZChainC-ChainMainnet' = 2612, 'EZChainC-ChainTestnet' = 2613, + BobaNetworkGoerliTestnet = 2888, + BitYuanMainnet = 2999, CENNZnetRata = 3000, CENNZnetNikau = 3001, + OrlandoChain = 3031, + BifrostMainnet = 3068, + 'Filecoin-Hyperspacetestnet' = 3141, + DebounceSubnetTestnet = 3306, ZCoreTestnet = 3331, Web3QTestnet = 3333, Web3QGalileo = 3334, ParibuNetMainnet = 3400, ParibuNetTestnet = 3500, + JFINChain = 3501, + PandoProjectMainnet = 3601, + PandoProjectTestnet = 3602, + Metacodechain = 3666, BittexMainnet = 3690, + EmpireNetwork = 3693, Crossbell = 3737, + DRACNetwork = 3912, DYNOMainnet = 3966, DYNOTestnet = 3967, YuanChainMainnet = 3999, FantomTestnet = 4002, + BobaoperaTestnet = 4051, + Nahmii3Mainnet = 4061, + Nahmii3Testnet = 4062, + BitindiTestnet = 4096, + BitindiMainnet = 4099, AIOZNetworkTestnet = 4102, - PHINetwork = 4181, + TipboxcoinTestnet = 4141, + PHINetworkV1 = 4181, + BobafujiTestnet = 4328, + HtmlcoinMainnet = 4444, IoTeXNetworkMainnet = 4689, IoTeXNetworkTestnet = 4690, + BlackFortExchangeNetworkTestnet = 4777, VenidiumTestnet = 4918, VenidiumMainnet = 4919, + BlackFortExchangeNetwork = 4999, + Mantle = 5000, + MantleTestnet = 5001, TLChainNetworkMainnet = 5177, EraSwapMainnet = 5197, + HumanodeMainnet = 5234, + FirechainMainnetOld = 5290, UzmiNetworkMainnet = 5315, NahmiiMainnet = 5551, NahmiiTestnet = 5553, + ChainVerseMainnet = 5555, SyscoinTanenbaumTestnet = 5700, - DigestSwarmChain = 5777, + HikaNetworkTestnet = 5729, + Ganache = 5777, OntologyTestnet = 5851, WegochainRubidiumMainnet = 5869, + TresTestnet = 6065, + TresMainnet = 6066, + ScolcoinWeiChainTestnet = 6552, PixieChainMainnet = 6626, + GoldSmartChainMainnet = 6789, + TombChainMainnet = 6969, + PolySmartChain = 6999, + ZetaChainMainnet = 7000, + ZetaChainAthensTestnet = 7001, Ellatheheart = 7027, + PlanqMainnet = 7070, + KLYNTAR = 7331, ShyftMainnet = 7341, + Canto = 7700, RiseoftheWarbotsTestnet = 7777, HazlorTestnet = 7878, Teleport = 8000, TeleportTestnet = 8001, MDGLTestnet = 8029, - GeneChainAdenineTestnet = 8080, + 'ShardeumLiberty1.X' = 8080, + 'ShardeumLiberty2.X' = 8081, + 'ShardeumSphinx1.X' = 8082, + StreamuXBlockchain = 8098, + QitmeerNetworkTestnet = 8131, + BeOneChainTestnet = 8181, KlaytnMainnetCypress = 8217, + BlocktonBlockchain = 8272, KorthoTest = 8285, + DraconesFinancialServices = 8387, + Base = 8453, + TokiNetwork = 8654, + TokiTestnet = 8655, TOOLGlobalMainnet = 8723, TOOLGlobalTestnet = 8724, - AmbrosChainTestnet = 8888, + AlphNetwork = 8738, + TMYChain = 8768, + MAROBlockchainMainnet = 8848, + Unique = 8880, + QuartzbyUnique = 8881, + OpaltestnetbyUnique = 8882, + SapphirebyUnique = 8883, + XANAChain = 8888, + VyvoSmartChain = 8889, MammothMainnet = 8898, + JIBCHAINL1 = 8899, + GiantMammothMainnet = 8989, Bloxberg = 8995, EvmosTestnet = 9000, Evmos = 9001, + BerylBitMainnet = 9012, GenesisCoin = 9100, + RiniaTestnetOld = 9170, + DogcoinTestnet = 9339, RangersProtocolTestnetRobin = 9527, + QEasyWeb3Testnet = 9528, + OortMainnetDev = 9700, + BobaBNBTestnet = 9728, + MainnetZTestnet = 9768, MyOwnTestnet = 9999, SmartBitcoinCash = 10000, SmartBitcoinCashTestnet = 10001, + GonChain = 10024, + SJATSH = 10086, BlockchainGenesisMainnet = 10101, + ChiadoTestnet = 10200, + '0XTade' = 10248, + NumbersMainnet = 10507, + NumbersTestnet = 10508, CryptoCoinPay = 10823, QuadransBlockchain = 10946, QuadransBlockchainTestnet = 10947, + Astra = 11110, WAGMI = 11111, + AstraTestnet = 11115, + HashBitMainnet = 11119, + HaqqNetwork = 11235, ShyftTestnet = 11437, + SardisTestnet = 11612, + SanRChain = 11888, SingularityZEROTestnet = 12051, SingularityZEROMainnet = 12052, + FibonacciMainnet = 12306, + BLGTestnet = 12321, + StepTestnet = 12345, + RikezaNetworkTestnet = 12715, + SPS = 13000, + CreditSmartchainMainnet = 13308, PhoenixMainnet = 13381, + Susono = 13812, + SPSTestnet = 14000, + LoopNetworkMainnet = 15551, + TrustEVMTestnet = 15555, MetaDotMainnet = 16000, MetaDotTestnet = 16001, + AirDAOMainnet = 16718, IVARChainTestnet = 16888, + FrontierofDreamsTestnet = 18000, + ProofOfMemes = 18159, + HOMEVerseMainnet = 19011, BTCIXNetwork = 19845, + CallistoTestnet = 20729, + P12Chain = 20736, CENNZnetAzalea = 21337, OmChainMainnet = 21816, Taycan = 22023, + AirDAOTestnet = 22040, + MAPMainnet = 22776, + OpsideTestnet = 23118, + OasisSapphire = 23294, + OasisSapphireTestnet = 23295, Webchain = 24484, 'MintMe.comCoin' = 24734, + HammerChainMainnet = 25888, + BitkubChainTestnet = 25925, + HertzNetworkMainnet = 26600, OasisChainMainnet = 26863, + 'OptimismBedrock(GoerliAlphaTestnet)' = 28528, Piecetestnet = 30067, EthersocialNetwork = 31102, + CloudTxMainnet = 31223, + CloudTxTestnet = 31224, GoChainTestnet = 31337, + 'Filecoin-Wallabytestnet' = 31415, BitgertMainnet = 32520, FusionMainnet = 32659, + ZilliqaEVMTestnet = 33101, + AvesMainnet = 33333, + J2OTaro = 35011, + QMainnet = 35441, + QTestnet = 35443, EnergiMainnet = 39797, + OHOMainnet = 39815, + 'Opulent-XBETA' = 41500, Pegglecoin = 42069, ArbitrumOne = 42161, + ArbitrumNova = 42170, CeloMainnet = 42220, - EmeraldParatimeTestnet = 42261, - EmeraldParatimeMainnet = 42262, + OasisEmeraldTestnet = 42261, + OasisEmerald = 42262, Athereum = 43110, AvalancheFujiTestnet = 43113, 'AvalancheC-Chain' = 43114, + BobaAvax = 43288, + Frenchain = 44444, CeloAlfajoresTestnet = 44787, AutobahnNetwork = 45000, + FusionTestnet = 46688, REINetwork = 47805, + Floripa = 49049, + BifrostTestnet = 49088, EnergiTestnet = 49797, + LiveplexOracleEVM = 50001, + GTONTestnet = 50021, + SardisMainnet = 51712, DFKChain = 53935, + HaqqChainTestnet = 54211, REIChainMainnet = 55555, REIChainTestnet = 55556, + BobaBNBMainnet = 56288, ThinkiumTestnetChain0 = 60000, ThinkiumTestnetChain1 = 60001, ThinkiumTestnetChain2 = 60002, ThinkiumTestnetChain103 = 60103, + EticaMainnet = 61803, + DoKENSuperChainMainnet = 61916, CeloBaklavaTestnet = 62320, MultiVACMainnet = 62621, ECreditsMainnet = 63000, ECreditsTestnet = 63001, + ScolcoinMainnet = 65450, + SiriusNet = 67390, Condrieu = 69420, ThinkiumMainnetChain0 = 70000, ThinkiumMainnetChain1 = 70001, ThinkiumMainnetChain2 = 70002, ThinkiumMainnetChain103 = 70103, PolyjuiceTestnet = 71393, - 'GodwokenTestnet(V1.1)' = 71401, + GodwokenTestnetv1 = 71401, GodwokenMainnet = 71402, EnergyWebVoltaTestnet = 73799, MixinVirtualMachine = 73927, + ResinCoinMainnet = 75000, + VentionSmartChainMainnet = 77612, Firenzetestnetwork = 78110, + GoldSmartChainTestnet = 79879, Mumbai = 80001, + BaseGoerliTestnet = 84531, + ChilizScovilleTestnet = 88880, IVARChainMainnet = 88888, + BeverlyHills = 90210, + LambdaTestnet = 92001, + BobaBNBMainnetOld = 97288, 'UBSmartChain(testnet)' = 99998, UBSmartChain = 99999, QuarkChainMainnetRoot = 100000, @@ -807,6 +1445,10 @@ export enum ChainId { QuarkChainMainnetShard5 = 100006, QuarkChainMainnetShard6 = 100007, QuarkChainMainnetShard7 = 100008, + VeChain = 100009, + VeChainTestnet = 100010, + DeprecatedChiadoTestnet = 100100, + SoverunTestnet = 101010, Crystaleum = 103090, BROChainMainnet = 108801, QuarkChainDevnetRoot = 110000, @@ -818,52 +1460,116 @@ export enum ChainId { QuarkChainDevnetShard5 = 110006, QuarkChainDevnetShard6 = 110007, QuarkChainDevnetShard7 = 110008, + SiberiumNetwork = 111111, + ETNDChainMainnets = 131419, + CondorTestNetwork = 188881, MilkomedaC1Testnet = 200101, + MilkomedaA1Testnet = 200202, Akroma = 200625, AlayaMainnet = 201018, AlayaDevTestnet = 201030, + MythicalChain = 201804, + DecimalSmartChainTestnet = 202020, + Jellie = 202624, PlatONMainnet = 210425, + MasMainnet = 220315, HaymoTestnet = 234666, ARTISsigma1 = 246529, ARTISTestnettau1 = 246785, + SaakuruTestnet = 247253, + 'CMP-Mainnet' = 256256, + GearZeroNetworkTestnet = 266256, SocialSmartChainMainnet = 281121, + 'Filecoin-Calibrationtestnet' = 314159, + OoneChainTestnet = 333777, PolisTestnet = 333888, PolisMainnet = 333999, + HAPchainTestnet = 373737, + 'MetalC-Chain' = 381931, + 'MetalTahoeC-Chain' = 381932, + TipboxcoinMainnet = 404040, + Kekchain = 420420, + 'Kekchain(kektest)' = 420666, ArbitrumRinkeby = 421611, - DexalotTestnet = 432201, + ArbitrumGoerli = 421613, + FastexChaintestnet = 424242, + DexalotSubnetTestnet = 432201, + DexalotSubnet = 432204, WeelinkTestnet = 444900, OpenChainMainnet = 474142, 'CMP-Testnet' = 512512, + EthereumFair = 513100, + Scroll = 534352, + ScrollAlphaTestnet = 534353, + 'ScrollPre-AlphaTestnet' = 534354, + BeanEcoSmartChain = 535037, + BearNetworkChainMainnet = 641230, 'Vision-VpioneerTestChain' = 666666, + BearNetworkChainTestnet = 751230, + OctaSpace = 800001, + '4GoodNetwork' = 846000, 'Vision-Mainnet' = 888888, + PosichainMainnetShard0 = 900000, + PosichainTestnetShard0 = 910000, + PosichainDevnetShard0 = 920000, + PosichainDevnetShard1 = 920001, + FNCYTestnet = 923018, EluvioContentFabric = 955305, EthoProtocol = 1313114, Xerom = 1313500, Kintsugi = 1337702, Kiln = 1337802, - PlatONDevTestnet = 2203181, + Zhejiang = 1337803, + PlianMainnetMain = 2099156, + PlatONDevTestnetDeprecated = 2203181, PlatONDevTestnet2 = 2206132, + 'Filecoin-Butterflytestnet' = 3141592, + ImversedMainnet = 5555555, + ImversedTestnet = 5555558, + SaakuruMainnet = 7225878, + OpenVessel = 7355310, + QL1Testnet = 7668378, Musicoin = 7762959, + PlianMainnetSubchain1 = 8007736, + HAPchain = 8794598, + PlianTestnetSubchain1 = 10067275, + SoverunMainnet = 10101010, Sepolia = 11155111, PepChainChurchill = 13371337, + AnduschainMainnet = 14288640, + PlianTestnetMain = 16658437, IOLite = 18289463, SmartMeshMainnet = 20180430, Quarkblockchain = 20181205, + ExcelonMainnet = 22052002, + 'ExcoincialChainVolta-Testnet' = 27082017, + ExcoincialChainMainnet = 27082022, AuxiliumNetworkMainnet = 28945486, + FlachainMainnet = 29032022, + 'Filecoin-Localtestnet' = 31415926, JoysDigitalMainnet = 35855456, + Maistestsubnet = 43214913, Aquachain = 61717561, + 'AutonityBakerloo(Thames)Testnet' = 65010000, + 'AutonityPiccadilly(Thames)Testnet' = 65100000, JoysDigitalTestNet = 99415706, GatherMainnetNetwork = 192837465, NeonEVMDevNet = 245022926, NeonEVMMainNet = 245022934, NeonEVMTestNet = 245022940, OneLedgerMainnet = 311752642, + 'CalypsoNFTHub(SKALETestnet)' = 344106930, GatherTestnetNetwork = 356256156, GatherDevnetNetwork = 486217935, + NebulaStaging = 503129905, IPOSNetwork = 1122334455, + CyberdeckNet = 1146703430, + HUMANProtocol = 1273227453, AuroraMainnet = 1313161554, AuroraTestnet = 1313161555, AuroraBetanet = 1313161556, + NebulaMainnet = 1482601649, + 'CalypsoNFTHub(SKALE)' = 1564830818, HarmonyMainnetShard0 = 1666600000, HarmonyMainnetShard1 = 1666600001, HarmonyMainnetShard2 = 1666600002, @@ -872,13 +1578,17 @@ export enum ChainId { HarmonyTestnetShard1 = 1666700001, HarmonyTestnetShard2 = 1666700002, HarmonyTestnetShard3 = 1666700003, + HarmonyDevnetShard0 = 1666900000, DataHopper = 2021121117, + EuropaSKALEChain = 2046399126, Pirl = 3125659152, OneLedgerTestnetFrankenstein = 4216137055, PalmTestnet = 11297108099, Palm = 11297108109, NtityMainnet = 197710212030, HaradevTestnet = 197710212031, + Zeniq = 383414847825, + PDCMainnet = 666301171999, MolereumNetwork = 6022140761023, 'GodwokenTestnet(V1)' = 868455272153094 } diff --git a/src/types.ts b/src/types.ts index af2ccf2..82400e0 100644 --- a/src/types.ts +++ b/src/types.ts @@ -9,13 +9,15 @@ export interface Chain { nativeCurrency: NativeCurrency rpc: string[] explorers?: Explorer[] + features?: Feature[] faucets: string[] infoURL: string icon?: string slip44?: number parent?: Parent ens?: { registry: string } - status?: 'deprecated' + status?: 'active' | 'deprecated' | 'incubating' + redFlags?: string[] } export interface NativeCurrency { @@ -34,7 +36,11 @@ export interface Explorer { export interface Parent { chain: string type: 'L2' | 'shard' - bridges?: [{ url: string }] + bridges?: Array<{ url: string }> +} + +export interface Feature { + name: string; } export interface Chains {