Merge remote-tracking branch 'remotes/upstream/master' into ecredits

This commit is contained in:
Siegfried Skalla 2022-04-25 08:20:27 +02:00
commit 09449a7407
202 changed files with 2425 additions and 188 deletions

View File

@ -1,25 +0,0 @@
---
name: Add new chain / network ID
about: Adding a new chain and/or network ID by filing an issue
title: "[New Chain / Network]"
labels: ''
assignees: ''
---
> Fill out the following to add your chain / network id, OR propose a Pull Request making your edits to the ```_data/chains.json``` file directly
```
{
"name": "Ethereum Mainnet",
"shortName": "eth",
"chain": "ETH",
"network": "mainnet",
"chainId": 1,
"networkId": 1,
"rpc": ["https://mainnet.infura.io"],
"faucets": [],
"infoURL: "https://ethereum.org",
"nativeCurrency": {"name":"Ether","symbol":"ETH","decimals":18}
}
```

View File

@ -1,8 +0,0 @@
---
name: other
about: either an issue with ethereum-lists/chains or a suggestion
title: ""
labels: ''
assignees: ''
---

16
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue has no activity in a while - it will be closed soon.'
exempt-issue-labels: enhancement
stale-pr-message: 'This PR has no activity in a while - it will be closed soon.'
days-before-stale: 42
days-before-close: 7

View File

@ -39,7 +39,7 @@ when an icon is used in either the network or a explorer there must be a json in
[
{
"url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt",
"url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt",
"width": 1000,
"height": 1628,
"format": "png"
@ -69,7 +69,7 @@ If the chain is an L2 or a shard of another chain you can link it to the parent
where you need to specify type 2 and the reference to an existing parent. The field about bridges is optional.
## Aggregation
## Aggregation
There are also aggregated json files with all chains automatically assembled:
* https://chainid.network/chains.json
@ -90,4 +90,16 @@ There are also aggregated json files with all chains automatically assembled:
* [EVM-BOX](https://github.com/izayl/evm-box)
* [FaucETH](https://github.com/komputing/FaucETH)
* [Sourcify playground](https://playground.sourcify.dev)
* [chaindirectory.xyz](https://www.chaindirectory.xyz)
* [chain-list.org](https://chain-list.org)
* [DefiLlama's chainlist](https://chainlist.defillama.com/)
* [chainlist.network](https://chainlist.network/)
* [evmchainlist.org](https://evmchainlist.org)
* [evmchainlist.com](https://evmchainlist.com)
* [thechainlist.io](https://thechainlist.io)
* [chainlist.info](https://chainlist.info)
* [chainmap.io](https://chainmap.io)
* [chainlist.in](https://www.chainlist.in)
* [chainz.me](https://chainz.me)
* [Otterscan](https://otterscan.io)
* Your project - contact us to add it here!

View File

@ -1,11 +1,11 @@
{
"name": "Optimistic Ethereum",
"name": "Optimism",
"chain": "ETH",
"rpc": ["https://mainnet.optimism.io/"],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "OETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://optimism.io",

View File

@ -1,16 +1,17 @@
{
"name": "Gnosis Chain (formerly xDai)",
"chain": "Gnosis",
"icon": "gnosis",
"rpc": [
"https://rpc.xdaichain.com",
"https://rpc.gnosischain.com",
"https://xdai.poanetwork.dev",
"wss://rpc.xdaichain.com/wss",
"wss://rpc.gnosischain.com/wss",
"wss://xdai.poanetwork.dev/wss",
"http://xdai.poanetwork.dev",
"https://dai.poa.network",
"ws://xdai.poanetwork.dev:8546"
],
"faucets": ["https://faucet.gimlu.com/gnosis", "https://stakely.io/faucet/xdai-chain", "https://faucet.prussia.dev/xdai"],
"faucets": ["https://faucet.gimlu.com/gnosis", "https://stakely.io/faucet/gnosis-chain-xdai", "https://faucet.prussia.dev/xdai"],
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",
@ -21,10 +22,10 @@
"chainId": 100,
"networkId": 100,
"slip44": 700,
"explorers": [{
"name": "blockscout",
"url": "https://blockscout.com/xdai/mainnet",
"icon": "blockscout",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,28 @@
{
"name":"Eurus Mainnet",
"chain":"EUN",
"network":"eurus",
"rpc":[
"https://mainnet.eurus.network/"
],
"faucets":[
],
"nativeCurrency":{
"name":"Eurus",
"symbol":"EUN",
"decimals":18
},
"infoURL":"https://eurus.network",
"shortName":"eun",
"chainId":1008,
"networkId":1008,
"icon":"eurus",
"explorers":[
{
"name":"eurusexplorer",
"url":"https://explorer.eurus.network",
"icon":"eurus",
"standard":"none"
}
]
}

View File

@ -1,6 +1,7 @@
{
"name": "Web3Games Testnet",
"chain": "Web3Games",
"icon": "web3games",
"rpc": ["https://testnet.web3games.org/evm"],
"faucets": [],
"nativeCurrency": {
@ -9,7 +10,7 @@
"decimals": 18
},
"infoURL": "https://web3games.org/",
"shortName": "w3g",
"shortName": "tw3g",
"chainId": 102,
"networkId": 102
}

View File

@ -1,18 +1,16 @@
{
"name": "Clover Mainnet",
"chain": "Clover",
"name": "CLV Parachain",
"chain": "CLV",
"rpc": [
"https://rpc-ivy.clover.finance",
"https://rpc-ivy-2.clover.finance",
"https://rpc-ivy-3.clover.finance"
"https://api-para.clover.finance"
],
"faucets": [],
"nativeCurrency": {
"name": "Clover",
"name": "CLV",
"symbol": "CLV",
"decimals": 18
},
"infoURL": "https://clover.finance",
"infoURL": "https://clv.org",
"shortName": "clv",
"chainId": 1024,
"networkId": 1024

View File

@ -1,6 +1,7 @@
{
"name": "Conflux Mainnet",
"name": "Conflux eSpace",
"chain": "Conflux",
"network": "mainnet",
"rpc": ["https://evm.confluxrpc.com"],
"faucets": [],
"nativeCurrency": {
@ -16,7 +17,7 @@
"explorers": [
{
"name": "Conflux Scan",
"url": "https://evm.confluxscan.io",
"url": "https://evm.confluxscan.net",
"standard": "none"
}
]

View File

@ -0,0 +1,21 @@
{
"name": "Web3Games Devnet",
"chain": "Web3Games",
"icon": "web3games",
"rpc": ["https://devnet.web3games.org/evm"],
"faucets": [],
"nativeCurrency": {
"name": "Web3Games",
"symbol": "W3G",
"decimals": 18
},
"infoURL": "https://web3games.org/",
"shortName": "dw3g",
"chainId": 105,
"networkId": 105,
"explorers": [{
"name": "Web3Games Explorer",
"url": "https://explorer-devnet.web3games.org",
"standard": "none"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Nebula Testnet",
"chain": "NTN",
"icon": "nebulatestnet",
"rpc": [
"https://testnet.rpc.novanetwork.io:9070"
],
"faucets": [],
"nativeCurrency": {
"name": "Nebula X",
"symbol": "NBX",
"decimals": 18
},
"infoURL": "https://novanetwork.io",
"shortName": "ntn",
"chainId": 107,
"networkId": 107,
"explorers": [{
"name": "nebulatestnet",
"url": "https://explorer.novanetwork.io",
"standard": "EIP3091"
}]
}

View File

@ -16,5 +16,11 @@
"shortName": "TT",
"chainId": 108,
"networkId": 108,
"slip44": 1001
}
"slip44": 1001,
"explorers": [{
"name": "ThundercoreScan",
"url": "https://scan.thundercore.com",
"standard": "none"
}]
}

View File

@ -0,0 +1,27 @@
{
"name": "CryptoCoinPay",
"chain": "CCP",
"rpc": [
"http://node106.cryptocoinpay.info:8545",
"ws://node106.cryptocoinpay.info:8546"
],
"faucets": [],
"icon": "ccp",
"nativeCurrency": {
"name": "CryptoCoinPay",
"symbol": "CCP",
"decimals": 18
},
"infoURL": "https://www.cryptocoinpay.co",
"shortName": "CCP",
"chainId": 10823,
"networkId": 10823,
"explorers": [
{
"name": "CCP Explorer",
"url": "https://cryptocoinpay.info",
"standard": "EIP3091"
}
]
}

View File

@ -0,0 +1,26 @@
{
"name": "BROChain Mainnet",
"chain": "BRO",
"network": "mainnet",
"rpc": [
"https://rpc.brochain.org",
"http://rpc.brochain.org",
"https://rpc.brochain.org/mainnet",
"http://rpc.brochain.org/mainnet"
],
"faucets": [],
"nativeCurrency": {
"name": "Brother",
"symbol": "BRO",
"decimals": 18
},
"infoURL": "https://brochain.org",
"shortName": "bro",
"chainId": 108801,
"networkId": 108801,
"explorers": [{
"name": "BROChain Explorer",
"url": "https://explorer.brochain.org",
"standard": "EIP3091"
}]
}

View File

@ -3,9 +3,11 @@
"chain": "WAGMI",
"icon": "wagmi",
"rpc": [
"https://api.trywagmi.xyz/rpc"
"https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc"
],
"faucets": [
"https://faucet.trywagmi.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "WAGMI",
"symbol": "WGM",
@ -18,8 +20,8 @@
"explorers": [
{
"name": "WAGMI Explorer",
"url": "https://trywagmi.xyz",
"standard": "none"
"url": "https://subnets.avax.network/wagmi/wagmi-chain-testnet/explorer",
"standard": "EIP3091"
}
]
}
}

View File

@ -0,0 +1,27 @@
{
"name": "Sepolia",
"title": "Ethereum Testnet Sepolia",
"chain": "ETH",
"network": "testnet",
"rpc": [
],
"faucets": [
"http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "SEP",
"decimals": 18
},
"infoURL": "https://sepolia.otterscan.io",
"shortName": "sep",
"chainId": 11155111,
"networkId": 11155111,
"explorers": [
{
"name": "otterscan-sepolia",
"url": "https://sepolia.otterscan.io",
"standard": "EIP3091"
}
]
}

View File

@ -1,7 +1,10 @@
{
"name": "Palm Testnet",
"chain": "Palm",
"rpc": [],
"icon": "palm",
"rpc": [
"https://palm-testnet.infura.io/v3/${INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "PALM",
@ -11,5 +14,11 @@
"infoURL": "https://palm.io",
"shortName": "tpalm",
"chainId": 11297108099,
"networkId": 11297108099
"networkId": 11297108099,
"explorers": [{
"name": "Palm Testnet Explorer",
"url": "https://explorer.palm-uat.xyz",
"standard": "EIP3091",
"icon": "palm"
}]
}

View File

@ -1,7 +1,10 @@
{
"name": "Palm",
"chain": "Palm",
"rpc": [],
"icon": "palm",
"rpc": [
"https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "PALM",
@ -11,5 +14,11 @@
"infoURL": "https://palm.io",
"shortName": "palm",
"chainId": 11297108109,
"networkId": 11297108109
"networkId": 11297108109,
"explorers": [{
"name": "Palm Explorer",
"url": "https://explorer.palm.io",
"standard": "EIP3091",
"icon": "palm"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Shyft Testnet",
"chain": "SHYFTT",
"icon": "shyft",
"rpc": [
"https://rpc.testnet.shyft.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Shyft Test Token",
"symbol": "SHYFTT",
"decimals": 18
},
"infoURL": "https://shyft.network",
"shortName": "shyftt",
"chainId": 11437,
"networkId": 11437,
"explorers": [{
"name": "Shyft Testnet BX",
"url": "https://bx.testnet.shyft.network",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "Iora Chain",
"chain": "IORA",
"network": "iorachain",
"icon": "iorachain",
"rpc": ["https://dataseed.iorachain.com"],
"faucets": [],
"nativeCurrency": {
"name": "Iora",
"symbol": "IORA",
"decimals": 18
},
"infoURL": "https://iorachain.com",
"shortName": "iora",
"chainId": 1197,
"networkId": 1197,
"explorers": [
{
"name": "ioraexplorer",
"url": "https://explorer.iorachain.com",
"standard": "EIP3091"
}
]
}

View File

@ -0,0 +1,18 @@
{
"name": "Evanesco Testnet",
"chain": "Evanesco Testnet",
"network": "avis",
"rpc": [
"https://seed5.evanesco.org:8547"
],
"faucets": [],
"nativeCurrency": {
"name": "AVIS",
"symbol": "AVIS",
"decimals": 18
},
"infoURL": "https://evanesco.org/",
"shortName": "avis",
"chainId": 1201,
"networkId": 1201
}

View File

@ -0,0 +1,25 @@
{
"name": "OYchain Testnet",
"chain": "OYchain",
"rpc": [
"https://rpc.testnet.oychain.io"
],
"faucets": [
"https://faucet.oychain.io"
],
"nativeCurrency": {
"name": "OYchain Token",
"symbol": "OY",
"decimals": 18
},
"infoURL": "https://www.oychain.io",
"shortName": "oychain testnet",
"chainId": 125,
"networkId": 125,
"slip44": 125,
"explorers": [{
"name": "OYchain Testnet Explorer",
"url": "https://explorer.testnet.oychain.io",
"standard": "none"
}]
}

View File

@ -1,26 +1,26 @@
{
"name": "OYchain Testnet",
"name": "OYchain Mainnet",
"chain": "OYchain",
"icon": "oychain",
"rpc": [
"https://rpc.cntop3.com"
"https://rpc.mainnet.oychain.io"
],
"faucets": [
"https://faucet.cntop3.com"
],
"faucets": [ ],
"nativeCurrency": {
"name": "OYchain Token",
"symbol": "OY",
"decimals": 18
},
"infoURL": "https://www.cntop3.com",
"shortName": "oychain",
"infoURL": "https://www.oychain.io",
"shortName": "oychain mainnet",
"chainId": 126,
"networkId": 126,
"slip44": 126,
"explorers": [{
"name": "OYchain Explorer",
"url": "https://scan.cntop3.com",
"name": "OYchain Mainnet Explorer",
"url": "https://explorer.oychain.io",
"standard": "none"
}]
}

View File

@ -16,11 +16,6 @@
"chainId": 1284,
"networkId": 1284,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.moonbeam.network",
"standard": "none"
},
{
"name": "moonscan",
"url": "https://moonbeam.moonscan.io",

View File

@ -2,8 +2,8 @@
"name": "Moonriver",
"chain": "MOON",
"rpc": [
"https://rpc.moonriver.moonbeam.network",
"wss://wss.moonriver.moonbeam.network"
"https://rpc.api.moonriver.moonbeam.network",
"wss://wss.api.moonriver.moonbeam.network"
],
"faucets": [],
"nativeCurrency": {

View File

@ -1,5 +1,5 @@
{
"name": "Moonrock",
"name": "Moonrock old",
"chain": "MOON",
"rpc": [],
"faucets": [],
@ -9,7 +9,8 @@
"decimals": 18
},
"infoURL": "",
"shortName": "mrock",
"shortName": "mrock-old",
"chainId": 1286,
"networkId": 1286
}
"networkId": 1286,
"deprecated": true
}

View File

@ -2,7 +2,7 @@
"name": "Etho Protocol",
"chain": "ETHO",
"rpc": [
"https://rpc.ether1.org"
"https://rpc.ethoprotocol.com"
],
"faucets": [],

View File

@ -1,5 +1,5 @@
{
"name": "Aurora MainNet",
"name": "Aurora Mainnet",
"chain": "NEAR",
"rpc": [
"https://mainnet.aurora.dev"
@ -7,7 +7,7 @@
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "aETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://aurora.dev",
@ -16,8 +16,8 @@
"networkId": 1313161554,
"explorers": [
{
"name": "explorer.aurora.dev",
"url": "https://explorer.mainnet.aurora.dev",
"name": "aurorascan.dev",
"url": "https://aurorascan.dev",
"standard": "EIP3091"
}
]

View File

@ -1,5 +1,5 @@
{
"name": "Aurora TestNet",
"name": "Aurora Testnet",
"chain": "NEAR",
"rpc": [
"https://testnet.aurora.dev/"
@ -7,7 +7,7 @@
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "aETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://aurora.dev",
@ -16,8 +16,8 @@
"networkId": 1313161555,
"explorers": [
{
"name": "explorer.aurora.dev",
"url": "https://explorer.testnet.aurora.dev",
"name": "aurorascan.dev",
"url": "https://testnet.aurorascan.dev",
"standard": "EIP3091"
}
]

View File

@ -1,5 +1,5 @@
{
"name": "Aurora BetaNet",
"name": "Aurora Betanet",
"chain": "NEAR",
"rpc": [
"https://betanet.aurora.dev/"
@ -7,7 +7,7 @@
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "aETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://aurora.dev",

View File

@ -0,0 +1,16 @@
{
"name": "CENNZnet old",
"chain": "CENNZnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "CPAY",
"symbol": "CPAY",
"decimals": 18
},
"infoURL": "https://cennz.net",
"shortName": "cennz-old",
"chainId": 1337,
"networkId": 1337,
"deprecated": true
}

View File

@ -0,0 +1,25 @@
{
"name": "Phoenix Mainnet",
"chain": "Phoenix",
"network": "mainnet",
"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",
"icon": "phoenixplorer",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,26 @@
{
"name": "Openpiece Testnet",
"chain": "OPENPIECE",
"icon": "openpiece",
"network": "testnet",
"rpc": [
"https://testnet.openpiece.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Belly",
"symbol": "BELLY",
"decimals": 18
},
"infoURL": "https://cryptopiece.online",
"shortName": "OPtest",
"chainId": 141,
"networkId": 141,
"explorers": [
{
"name": "Belly Scan",
"url": "https://testnet.bellyscan.com",
"standard": "none"
}
]
}

View File

@ -9,7 +9,7 @@
],
"nativeCurrency": {
"name": "MetaDot Token TestNet",
"symbol": "MTT-test",
"symbol": "MTTest",
"decimals": 18
},
"infoURL": "https://metadot.network",

View File

@ -2,7 +2,8 @@
"name": "Harmony Mainnet Shard 0",
"chain": "Harmony",
"rpc": [
"https://api.harmony.one"
"https://api.harmony.one",
"https://api.s0.t.hmny.io"
],
"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
"nativeCurrency": {

View File

@ -2,7 +2,7 @@
"name": "Harmony Mainnet Shard 1",
"chain": "Harmony",
"rpc": [
"https://s1.api.harmony.one"
"https://api.s1.t.hmny.io"
],
"faucets": [
],

View File

@ -2,7 +2,7 @@
"name": "Harmony Mainnet Shard 2",
"chain": "Harmony",
"rpc": [
"https://s2.api.harmony.one"
"https://api.s2.t.hmny.io"
],
"faucets": [
],

View File

@ -2,7 +2,7 @@
"name": "Harmony Mainnet Shard 3",
"chain": "Harmony",
"rpc": [
"https://s3.api.harmony.one"
"https://api.s3.t.hmny.io"
],
"faucets": [
],

View File

@ -0,0 +1,25 @@
{
"name": "AIOZ Network",
"chain": "AIOZ",
"network": "mainnet",
"icon": "aioz",
"rpc": [
"https://eth-dataseed.aioz.network"
],
"faucets": [],
"nativeCurrency": {
"name": "AIOZ",
"symbol": "AIOZ",
"decimals": 18
},
"infoURL": "https://aioz.network",
"shortName": "aioz",
"chainId": 168,
"networkId": 168,
"slip44": 60,
"explorers": [{
"name": "AIOZ Network Explorer",
"url": "https://explorer.aioz.network",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,18 @@
{
"name": "LUDAN Mainnet",
"chain": "LUDAN",
"rpc": [
"https://rpc.ludan.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "LUDAN",
"symbol": "LUDAN",
"decimals": 18
},
"infoURL": "https://www.ludan.org/",
"shortName": "LUDAN",
"icon": "ludan",
"chainId": 1688,
"networkId": 1688
}

View File

@ -15,5 +15,10 @@
"infoURL": "https://thundercore.com",
"shortName": "TST",
"chainId": 18,
"networkId": 18
}
"networkId": 18,
"explorers": [{
"name": "ThundercoreTestNetScanner",
"url": "https://scan-testnet.thundercore.com",
"standard": "none"
}]
}

View File

@ -0,0 +1,24 @@
{
"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
},
"infoURL": "https://boyanet.org",
"shortName": "boya",
"chainId": 1898,
"networkId": 1,
"explorers": [{
"name": "explorer",
"url": "https://explorer.boyanet.org:4001",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,28 @@
{
"name":"Eurus Testnet",
"chain":"EUN",
"network":"eurus-testnet",
"rpc":[
"https://testnet.eurus.network"
],
"faucets":[
],
"nativeCurrency":{
"name":"Eurus",
"symbol":"EUN",
"decimals":18
},
"infoURL":"https://eurus.network",
"shortName":"euntest",
"chainId":1984,
"networkId":1984,
"icon":"eurus",
"explorers":[
{
"name":"testnetexplorer",
"url":"https://testnetexplorer.eurus.network",
"icon":"eurus",
"standard":"none"
}
]
}

View File

@ -0,0 +1,27 @@
{
"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"
],
"faucets": [],
"nativeCurrency": {
"name": "milkAda",
"symbol": "mADA",
"decimals": 18
},
"infoURL": "https://milkomeda.com",
"shortName": "milkAda",
"chainId": 2001,
"networkId": 2001,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com",
"standard": "none"
}
]
}

View File

@ -0,0 +1,27 @@
{
"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"
],
"faucets": [],
"nativeCurrency": {
"name": "milkTAda",
"symbol": "mTAda",
"decimals": 18
},
"infoURL": "https://milkomeda.com",
"shortName": "milkTAda",
"chainId": 200101,
"networkId": 200101,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com",
"standard": "none"
}
]
}

View File

@ -3,7 +3,7 @@
"chain": "Alaya",
"rpc": [
"https://openapi.alaya.network/rpc",
"wss://openapi.alaya.network/ws"
"wss://openapi.alaya.network/ws"
],
"faucets": [],
"nativeCurrency": {

View File

@ -0,0 +1,22 @@
{
"name": "SmartMesh Mainnet",
"chain": "Spectrum",
"rpc": [
"https://jsonapi1.smartmesh.cn"
],
"faucets": [],
"nativeCurrency": {
"name": "SmartMesh Native Token",
"symbol": "SMT",
"decimals": 18
},
"infoURL": "https://smartmesh.io",
"shortName": "spectrum",
"chainId": 20180430,
"networkId": 1,
"explorers": [{
"name": "spectrum",
"url": "https://spectrum.pub",
"standard": "none"
}]
}

View File

@ -0,0 +1,27 @@
{
"name": "PlatON Mainnet",
"chain": "PlatON",
"network": "mainnet",
"rpc": [
"https://openapi2.platon.network/rpc",
"wss://openapi2.platon.network/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "LAT",
"symbol": "lat",
"decimals": 18
},
"infoURL": "https://www.platon.network",
"shortName": "platon",
"chainId": 210425,
"networkId": 1,
"icon": "platon",
"explorers": [
{
"name": "PlatON explorer",
"url": "https://scan.platon.network",
"standard": "none"
}
]
}

View File

@ -0,0 +1,24 @@
{
"name": "CENNZnet Azalea",
"chain": "CENNZnet",
"network": "azalea",
"rpc": [
"https://cennznet.unfrastructure.io/public"
],
"faucets": [],
"nativeCurrency": {
"name": "CPAY",
"symbol": "CPAY",
"decimals": 18
},
"infoURL": "https://cennz.net",
"shortName": "cennz-a",
"chainId": 21337,
"networkId": 21337,
"icon": "cennz",
"explorers": [{
"name": "UNcover",
"url": "https://uncoverexplorer.com",
"standard": "none"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Findora Mainnet",
"chain": "Findora",
"network": "mainnet",
"rpc": ["https://prod-mainnet.prod.findora.org:8545"],
"faucets": [],
"nativeCurrency": {
"name": "FRA",
"symbol": "FRA",
"decimals": 18
},
"infoURL": "https://findora.org/",
"shortName": "fra",
"chainId": 2152,
"networkId": 2152,
"explorers": [
{
"name": "findorascan",
"url": "https://evm.findorascan.io",
"standard": "EIP3091"
}
]
}

View File

@ -0,0 +1,23 @@
{
"name": "Findora Testnet",
"chain": "Testnet-anvil",
"network": "testnet",
"rpc": ["https://prod-testnet.prod.findora.org:8545/"],
"faucets": [],
"nativeCurrency": {
"name": "FRA",
"symbol": "FRA",
"decimals": 18
},
"infoURL": "https://findora.org/",
"shortName": "findora-testnet",
"chainId": 2153,
"networkId": 2153,
"explorers": [
{
"name": "findorascan",
"url": "https://testnet-anvil.evm.findorascan.io",
"standard": "EIP3091"
}
]
}

View File

@ -1,5 +1,5 @@
{
"name": "SoterOne Mainnet",
"name": "SoterOne Mainnet old",
"chain": "SOTER",
"rpc": [
"https://rpc.soter.one"
@ -12,7 +12,8 @@
"decimals": 18
},
"infoURL": "https://www.soterone.com",
"shortName": "SO1",
"shortName": "SO1-old",
"chainId": 218,
"networkId": 218
"networkId": 218,
"deprecated": true
}

View File

@ -0,0 +1,23 @@
{
"name": "omChain Mainnet",
"chain": "OML",
"icon": "omlira",
"rpc": [
"https://seed.omlira.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Omlira",
"symbol": "OML",
"decimals": 18
},
"infoURL": "https://omlira.com",
"shortName": "oml",
"chainId": 21816,
"networkId": 21816,
"explorers": [{
"name": "omChain Explorer",
"url": "https://explorer.omlira.com",
"standard": "EIP3091"
}]
}

View File

@ -2,8 +2,8 @@
"name": "PlatON Dev Testnet",
"chain": "PlatON",
"rpc": [
"https://devnetopenapi.platon.network/rpc",
"wss://devnetopenapi.platon.network/ws"
"https://devnetopenapi2.platon.network/rpc",
"wss://devnetopenapi2.platon.network/ws"
],
"faucets": [
"https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03"
@ -14,8 +14,8 @@
"decimals": 18
},
"infoURL": "https://www.platon.network",
"shortName": "PlatON",
"chainId": 210309,
"shortName": "platondev",
"chainId": 2203181,
"networkId": 1,
"icon": "platon",
"explorers": [

View File

@ -0,0 +1,26 @@
{
"name": "Evanesco Mainnet",
"chain": "EVA",
"network": "mainnet",
"rpc": [
"https://seed4.evanesco.org:8546"
],
"faucets": [],
"nativeCurrency": {
"name": "EVA",
"symbol": "EVA",
"decimals": 18
},
"infoURL": "https://evanesco.org/",
"shortName": "evanesco",
"chainId": 2213,
"networkId": 2213,
"icon": "evanesco",
"explorers": [
{
"name": "Evanesco Explorer",
"url": "https://explorer.evanesco.org",
"standard": "none"
}
]
}

View File

@ -0,0 +1,25 @@
{
"name": "Kava EVM Testnet",
"chain": "KAVA",
"network": "testnet",
"rpc": ["https://evm.evm-alpha.kava.io", "wss://evm-ws.evm-alpha.kava.io"],
"faucets": ["https://faucet.kava.io"],
"nativeCurrency": {
"name": "Kava",
"symbol": "KAVA",
"decimals": 18
},
"infoURL": "https://www.kava.io",
"shortName": "kava",
"chainId": 2221,
"networkId": 2221,
"icon": "kava",
"explorers": [
{
"name": "Kava Testnet Explorer",
"url": "https://explorer.evm-alpha.kava.io",
"standard": "EIP3091",
"icon": "kava"
}
]
}

View File

@ -0,0 +1,22 @@
{
"name": "VChain Mainnet",
"chain": "VChain",
"rpc": ["https://bc.vcex.xyz"],
"faucets": [],
"nativeCurrency": {
"name": "VNDT",
"symbol": "VNDT",
"decimals": 18
},
"infoURL": "https://bo.vcex.xyz/",
"shortName": "VChain",
"chainId": 2223,
"networkId": 2223,
"explorers": [
{
"name": "VChain Scan",
"url": "https://scan.vcex.xyz",
"standard": "EIP3091"
}
]
}

View File

@ -0,0 +1,23 @@
{
"name": "LACHAIN Mainnet",
"chain": "LA",
"icon": "lachain",
"rpc": [
"https://rpc-mainnet.lachain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "LA",
"symbol": "LA",
"decimals": 18
},
"infoURL": "https://lachain.io",
"shortName": "LA",
"chainId": 225,
"networkId": 225,
"explorers": [{
"name": "blockscout",
"url": "https://scan.lachain.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "LACHAIN Testnet",
"chain": "TLA",
"icon": "lachain",
"rpc": [
"https://rpc-testnet.lachain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TLA",
"symbol": "TLA",
"decimals": 18
},
"infoURL": "https://lachain.io",
"shortName": "TLA",
"chainId": 226,
"networkId": 226,
"explorers": [{
"name": "blockscout",
"url": "https://scan-test.lachain.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,19 @@
{
"name": "Haymo Testnet",
"chain": "tHYM",
"network": "testnet",
"rpc": [
"https://testnet1.haymo.network"
],
"faucets": [
],
"nativeCurrency": {
"name": "HAYMO",
"symbol": "HYM",
"decimals": 18
},
"infoURL": "https://haymoswap.web.app/",
"shortName": "hym",
"chainId": 234666,
"networkId": 234666
}

View File

@ -2,21 +2,21 @@
"name": "Cronos Mainnet Beta",
"chain": "CRO",
"rpc": [
"https://evm-cronos.crypto.org"
"https://evm.cronos.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Crypto.org Coin",
"name": "Cronos",
"symbol": "CRO",
"decimals": 18
},
"infoURL": "https://cronos.crypto.org",
"infoURL": "https://cronos.org/",
"shortName": "cro",
"chainId": 25,
"networkId": 25,
"explorers": [{
"name": "Cronos Explorer",
"url": "https://cronos.crypto.org/explorer",
"url": "https://cronos.org/explorer",
"standard": "none"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "TechPay Mainnet",
"chain": "TPC",
"network": "mainnet",
"rpc": [
"https://api.techpay.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "TechPay",
"symbol": "TPC",
"decimals": 18
},
"infoURL": "https://techpay.io/",
"shortName": "tpc",
"chainId": 2569,
"networkId": 2569,
"icon": "techpay",
"explorers": [{
"name": "tpcscan",
"url": "https://tpcscan.com",
"icon": "techpay",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,15 @@
{
"name": "Setheum",
"chain": "Setheum",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Setheum",
"symbol": "SETM",
"decimals": 18
},
"infoURL": "https://setheum.xyz",
"shortName": "setm",
"chainId": 258,
"networkId": 258
}

View File

@ -2,6 +2,7 @@
"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}"

View File

@ -0,0 +1,24 @@
{
"name": "Optimism on Gnosis Chain",
"chain": "OGC",
"rpc": [
"https://optimism.gnosischain.com",
"wss://optimism.gnosischain.com/wss"
],
"faucets": ["https://faucet.gimlu.com/gnosis"],
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",
"decimals": 18
},
"infoURL": "https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc",
"shortName": "ogc",
"chainId": 300,
"networkId": 300,
"explorers": [{
"name": "blockscout",
"url": "https://blockscout.com/xdai/optimism",
"icon": "blockscout",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,21 @@
{
"name": "CENNZnet Rata",
"chain": "CENNZnet",
"network": "rata",
"rpc": [
"https://rata.centrality.me/public"
],
"faucets": [
"https://app-faucet.centrality.me"
],
"nativeCurrency": {
"name": "CPAY",
"symbol": "CPAY",
"decimals": 18
},
"infoURL": "https://cennz.net",
"shortName": "cennz-r",
"chainId": 3000,
"networkId": 3000,
"icon": "cennz"
}

View File

@ -0,0 +1,26 @@
{
"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
},
"infoURL": "https://cennz.net",
"shortName": "cennz-n",
"chainId": 3001,
"networkId": 3001,
"icon": "cennz",
"explorers": [{
"name": "UNcover",
"url": "https://www.uncoverexplorer.com/?network=Nikau",
"standard": "none"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Web3Q Mainnet",
"chain": "Web3Q",
"rpc": [
"https://mainnet.web3q.io:8545"
],
"faucets": [
],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://web3q.io/home.w3q/",
"shortName": "w3q",
"chainId": 333,
"networkId": 333,
"explorers": [{
"name": "w3q-mainnet",
"url": "https://explorer.mainnet.web3q.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Web3Q Testnet",
"chain": "Web3Q",
"rpc": [
"https://testnet.web3q.io:8545"
],
"faucets": [
],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://testnet.web3q.io/home.w3q/",
"shortName": "w3q-t",
"chainId": 3333,
"networkId": 3333,
"explorers": [{
"name": "w3q-testnet",
"url": "https://explorer.testnet.web3q.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,23 @@
{
"name": "Web3Q Galileo",
"chain": "Web3Q",
"rpc": [
"https://galileo.web3q.io:8545"
],
"faucets": [
],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://galileo.web3q.io/home.w3q/",
"shortName": "w3q-g",
"chainId": 3334,
"networkId": 3334,
"explorers": [{
"name": "w3q-galileo",
"url": "https://explorer.galileo.web3q.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,27 @@
{
"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
},
"infoURL": "https://defikingdoms.com",
"shortName": "DFKTEST",
"chainId": 335,
"networkId": 335,
"explorers": [
{
"name": "ethernal",
"url": "https://explorer-test.dfkchain.com",
"icon": "ethereum",
"standard": "none"
}
]
}

View File

@ -0,0 +1,25 @@
{
"name": "Paribu Net Mainnet",
"chain": "PRB",
"network": "Paribu Net",
"rpc": [
"https://rpc.paribu.network"
],
"faucets": [],
"nativeCurrency": {
"name": "PRB",
"symbol": "PRB",
"decimals": 18
},
"infoURL": "https://net.paribu.com",
"shortName": "prb",
"chainId": 3400,
"networkId": 3400,
"icon": "prb",
"explorers": [{
"name": "Paribu Net Explorer",
"url": "https://explorer.paribu.network",
"icon": "explorer",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"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
},
"infoURL": "https://net.paribu.com",
"shortName": "prbtestnet",
"chainId": 3500,
"networkId": 3500,
"icon": "prb",
"explorers": [{
"name": "Paribu Net Testnet Explorer",
"url": "https://testnet.paribuscan.com",
"icon": "explorer",
"standard": "EIP3091"
}]
}

View File

@ -1,5 +1,5 @@
{
"name": "Gather Tesnet Network",
"name": "Gather Testnet Network",
"chain": "GTH",
"rpc": [
"https://testnet.gather.network"

View File

@ -6,8 +6,8 @@
"networkId": 369,
"infoURL": "https://pulsechain.com/",
"rpc": [
"https://rpc.mainnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}",
"wss://rpc.mainnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}"
"https://rpc.mainnet.pulsechain.com/",
"wss://rpc.mainnet.pulsechain.com/"
],
"faucets": [],
"nativeCurrency": {

View File

@ -9,11 +9,11 @@
],
"nativeCurrency": {
"name": "Lisinski Ether",
"symbol": "LISINSKI",
"symbol": "LISINS",
"decimals": 18
},
"infoURL": "https://lisinski.online",
"shortName": "lisinski",
"chainId": 385,
"networkId": 385
}
}

View File

@ -0,0 +1,24 @@
{
"name": "DYNO Mainnet",
"chain": "DYNO",
"rpc": [
"https://api.dynoprotocol.com"
],
"faucets": [
"https://faucet.dynoscan.io"
],
"nativeCurrency": {
"name": "DYNO Token",
"symbol": "DYNO",
"decimals": 18
},
"infoURL": "https://dynoprotocol.com",
"shortName": "dyno",
"chainId": 3966,
"networkId": 3966,
"explorers": [{
"name": "DYNO Explorer",
"url": "https://dynoscan.io",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,24 @@
{
"name": "DYNO Testnet",
"chain": "DYNO",
"rpc": [
"https://tapi.dynoprotocol.com"
],
"faucets": [
"https://faucet.dynoscan.io"
],
"nativeCurrency": {
"name": "DYNO Token",
"symbol": "tDYNO",
"decimals": 18
},
"infoURL": "https://dynoprotocol.com",
"shortName": "tdyno",
"chainId": 3967,
"networkId": 3967,
"explorers": [{
"name": "DYNO Explorer",
"url": "https://testnet.dynoscan.io",
"standard": "EIP3091"
}]
}

View File

@ -2,6 +2,7 @@
"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}"

View File

@ -0,0 +1,25 @@
{
"name": "AIOZ Network Testnet",
"chain": "AIOZ",
"network": "testnet",
"icon": "aioz",
"rpc": [
"https://eth-ds.testnet.aioz.network"
],
"faucets": [],
"nativeCurrency": {
"name": "testAIOZ",
"symbol": "AIOZ",
"decimals": 18
},
"infoURL": "https://aioz.network",
"shortName": "aioz-testnet",
"chainId": 4102,
"networkId": 4102,
"slip44": 60,
"explorers": [{
"name": "AIOZ Network Testnet Explorer",
"url": "https://testnet.explorer.aioz.network",
"standard": "EIP3091"
}]
}

View File

@ -2,6 +2,7 @@
"name": "Kovan",
"title": "Ethereum Testnet Kovan",
"chain": "ETH",
"network": "testnet",
"rpc": [
"https://kovan.poa.network",
"http://kovan.poa.network:8545",

View File

@ -6,7 +6,7 @@
"networkId": 42161,
"nativeCurrency": {
"name": "Ether",
"symbol": "AETH",
"symbol": "ETH",
"decimals": 18
},
"rpc": [

View File

@ -2,7 +2,7 @@
"name": "Darwinia Pangolin Testnet",
"chain": "pangolin",
"rpc": [
"http://pangolin-rpc.darwinia.network"
"https://pangolin-rpc.darwinia.network"
],
"faucets": [
"https://docs.crab.network/dvm/wallets/dvm-metamask#apply-for-the-test-token"

View File

@ -1,5 +1,5 @@
{
"name": "Avalanche Mainnet",
"name": "Avalanche C-Chain",
"chain": "AVAX",
"rpc": [
"https://api.avax.network/ext/bc/C/rpc"
@ -14,7 +14,7 @@
"shortName": "Avalanche",
"chainId": 43114,
"networkId": 43114,
"slip44": 9000,
"slip44": 9005,
"explorers": [
{
"name": "snowtrace",

View File

@ -2,7 +2,7 @@
"name": "Darwinia Crab Network",
"chain": "crab",
"rpc": [
"http://crab-rpc.darwinia.network"
"https://crab-rpc.darwinia.network"
],
"faucets": [],
"nativeCurrency": {

View File

@ -0,0 +1,24 @@
{
"name": "Weelink Testnet",
"chain": "WLK",
"rpc": [
"https://weelinknode1c.gw002.oneitfarm.com"
],
"faucets": [
"https://faucet.weelink.gw002.oneitfarm.com"
],
"nativeCurrency": {
"name": "Weelink Chain Token",
"symbol": "tWLK",
"decimals": 18
},
"infoURL": "https://weelink.cloud",
"shortName": "wlkt",
"chainId": 444900,
"networkId": 444900,
"explorers": [{
"name": "weelink-testnet",
"url": "https://weelink.cloud/#/blockView/overview",
"standard": "none"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "Autobahn Network",
"chain": "BNB",
"network": "mainnet",
"rpc": [
"https://rpc.autobahn.network"
],
"faucets": [],
"nativeCurrency": {
"name": "BNB",
"symbol": "BNB",
"decimals": 18
},
"infoURL": "https://autobahn.network",
"shortName": "autobahn",
"chainId": 45000,
"networkId": 45000,
"icon": "autobahn",
"explorers": [{
"name": "autobahn explorer",
"url": "https://explorer.autobahn.network",
"icon": "autobahn",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,20 @@
{
"name": "Venidium Testnet",
"chain": "XVM",
"rpc": ["https://rpc-evm-testnet.venidium.io"],
"faucets": [],
"nativeCurrency": {
"name": "Venidium",
"symbol": "XVM",
"decimals": 18
},
"infoURL": "https://venidium.io",
"shortName": "xvm",
"chainId": 4918,
"networkId": 4918,
"explorers": [{
"name": "Venidium EVM Testnet Explorer",
"url": "https://evm-testnet.venidiumexplorer.com",
"standard": "EIP3091"
}]
}

View File

@ -2,6 +2,7 @@
"name": "Görli",
"title": "Ethereum Testnet Görli",
"chain": "ETH",
"network": "testnet",
"rpc": [
"https://goerli.infura.io/v3/${INFURA_API_KEY}",
"wss://goerli.infura.io/v3/${INFURA_API_KEY}",

View File

@ -0,0 +1,24 @@
{
"name": "Double-A Chain Mainnet",
"chain": "AAC",
"rpc": [
"https://rpc.acuteangle.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Acuteangle Native Token",
"symbol": "AAC",
"decimals": 18
},
"infoURL": "https://www.acuteangle.com/",
"shortName": "aac",
"chainId": 512,
"networkId": 512,
"slip44": 1512,
"explorers": [{
"name": "aacscan",
"url": "https://scan.acuteangle.com",
"standard": "EIP3091"
}],
"icon": "aac"
}

View File

@ -0,0 +1,26 @@
{
"name": "CMP-Testnet",
"chain": "CMP",
"network": "testnet",
"rpc": [
"https://galaxy.block.caduceus.foundation",
"wss://galaxy.block.caduceus.foundation"
],
"faucets": [
"https://dev.caduceus.foundation/testNetwork"
],
"nativeCurrency": {
"name": "Caduceus Testnet Token",
"symbol": "CMP",
"decimals": 18
},
"infoURL": "https://caduceus.foundation/",
"shortName": "cmp",
"chainId": 512512,
"networkId": 512512,
"explorers": [{
"name": "Galaxy Scan",
"url": "https://galaxy.scan.caduceus.foundation",
"standard": "none"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "Double-A Chain Testnet",
"chain": "AAC",
"icon": "aac",
"rpc": [
"https://rpc-testnet.acuteangle.com"
],
"faucets": [
"https://scan-testnet.acuteangle.com/faucet"
],
"nativeCurrency": {
"name": "Acuteangle Native Token",
"symbol": "AAC",
"decimals": 18
},
"infoURL": "https://www.acuteangle.com/",
"shortName": "aact",
"chainId": 513,
"networkId": 513,
"explorers": [{
"name": "aacscan-testnet",
"url": "https://scan-testnet.acuteangle.com",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,27 @@
{
"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
},
"infoURL": "https://defikingdoms.com",
"shortName": "DFK",
"chainId": 53935,
"networkId": 53935,
"explorers": [
{
"name": "ethernal",
"url": "https://explorer.dfkchain.com",
"icon": "ethereum",
"standard": "none"
}
]
}

View File

@ -0,0 +1,26 @@
{
"name": "Openpiece Mainnet",
"chain": "OPENPIECE",
"icon": "openpiece",
"network": "mainnet",
"rpc": [
"https://mainnet.openpiece.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Belly",
"symbol": "BELLY",
"decimals": 18
},
"infoURL": "https://cryptopiece.online",
"shortName": "OP",
"chainId": 54,
"networkId": 54,
"explorers": [
{
"name": "Belly Scan",
"url": "https://bellyscan.com",
"standard": "none"
}
]
}

View File

@ -0,0 +1,24 @@
{
"name": "Vela1 Chain Mainnet",
"chain": "VELA1",
"rpc": [
"https://rpc.velaverse.io"
],
"faucets": [],
"nativeCurrency": {
"name": "CLASS COIN",
"symbol": "CLASS",
"decimals": 18
},
"infoURL": "https://velaverse.io",
"shortName": "CLASS",
"chainId": 555,
"networkId": 555,
"explorers": [
{
"name": "Vela1 Chain Mainnet Explorer",
"url": "https://exp.velaverse.io",
"standard": "EIP3091"
}
]
}

View File

@ -0,0 +1,32 @@
{
"name": "Nahmii Mainnet",
"chain": "Nahmii",
"network": "mainnet",
"rpc": [
"https://l2.nahmii.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://nahmii.io",
"shortName": "Nahmii",
"chainId": 5551,
"networkId": 5551,
"icon": "nahmii",
"explorers": [{
"name": "Nahmii mainnet explorer",
"url": "https://explorer.nahmii.io",
"icon": "nahmii",
"standard": "EIP3091"
}],
"parent": {
"type" : "L2",
"chain": "eip155-1",
"bridges": [{
"url":"https://bridge.nahmii.io"
}]
}
}

View File

@ -0,0 +1,32 @@
{
"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",
"chainId": 5553,
"networkId": 5553,
"icon": "nahmii",
"explorers": [{
"name": "blockscout",
"url": "https://explorer.testnet.nahmii.io",
"icon": "nahmii",
"standard": "EIP3091"
}],
"parent": {
"type" : "L2",
"chain": "eip155-3",
"bridges": [{
"url":"https://bridge.nahmii.io"
}]
}
}

View File

@ -0,0 +1,25 @@
{
"name": "REI Chain Mainnet",
"chain": "REI",
"icon": "reichain",
"rpc": [
"https://rei-rpc.moonrhythm.io"
],
"faucets": [
"http://kururu.finance/faucet?chainId=55555"
],
"nativeCurrency": {
"name": "Rei",
"symbol": "REI",
"decimals": 18
},
"infoURL": "https://reichain.io",
"shortName": "rei",
"chainId": 55555,
"networkId": 55555,
"explorers": [{
"name": "reiscan",
"url": "https://reiscan.com",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "REI Chain Testnet",
"chain": "REI",
"icon": "reichain",
"rpc": [
"https://rei-testnet-rpc.moonrhythm.io"
],
"faucets": [
"http://kururu.finance/faucet?chainId=55556"
],
"nativeCurrency": {
"name": "tRei",
"symbol": "tREI",
"decimals": 18
},
"infoURL": "https://reichain.io",
"shortName": "trei",
"chainId": 55556,
"networkId": 55556,
"explorers": [{
"name": "reiscan",
"url": "https://testnet.reiscan.com",
"standard": "EIP3091"
}]
}

Some files were not shown because too many files have changed in this diff Show More