Merge branch 'ethereum-lists:master' into master

This commit is contained in:
ping-ke 2022-01-09 16:07:00 +08:00 committed by GitHub
commit a6e02b6b7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
362 changed files with 2500 additions and 455 deletions

7
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: gradle
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 3

3
.gitignore vendored
View File

@ -3,4 +3,5 @@ _site
.jekyll-metadata .jekyll-metadata
.DS_Store .DS_Store
.env .env
node_modules node_modules
.idea

View File

@ -87,4 +87,6 @@ There are also aggregated json files with all chains automatically assembled:
* [TREZOR](https://trezor.io) * [TREZOR](https://trezor.io)
* [networks.vercel.app](https://networks.vercel.app) * [networks.vercel.app](https://networks.vercel.app)
* [eth-chains](https://github.com/taylorjdawson/eth-chains) * [eth-chains](https://github.com/taylorjdawson/eth-chains)
* [EVM-BOX](https://github.com/izayl/evm-box)
* [FaucETH](https://github.com/komputing/FaucETH)
* Your project - contact us to add it here! * Your project - contact us to add it here!

View File

@ -1,7 +1,6 @@
{ {
"name": "Moonrock", "name": "Moonrock",
"chain": "MOON", "chain": "MOON",
"network": "moonrock",
"rpc": [], "rpc": [],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,7 +1,6 @@
{ {
"name": "SoterOne Mainnet", "name": "SoterOne Mainnet",
"chain": "SOTER", "chain": "SOTER",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.soter.one" "https://rpc.soter.one"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Ethereum Mainnet", "name": "Ethereum Mainnet",
"chain": "ETH", "chain": "ETH",
"network": "mainnet",
"icon": "ethereum", "icon": "ethereum",
"rpc": [ "rpc": [
"https://mainnet.infura.io/v3/${INFURA_API_KEY}", "https://mainnet.infura.io/v3/${INFURA_API_KEY}",

View File

@ -1,7 +1,6 @@
{ {
"name": "Optimistic Ethereum", "name": "Optimistic Ethereum",
"chain": "ETH", "chain": "ETH",
"network": "mainnet",
"rpc": ["https://mainnet.optimism.io/"], "rpc": ["https://mainnet.optimism.io/"],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {
@ -12,5 +11,11 @@
"infoURL": "https://optimism.io", "infoURL": "https://optimism.io",
"shortName": "oeth", "shortName": "oeth",
"chainId": 10, "chainId": 10,
"networkId": 10 "networkId": 10,
"explorers": [{
"name": "etherscan",
"url": "https://optimistic.etherscan.io",
"standard": "none"
}]
} }

View File

@ -1,7 +1,6 @@
{ {
"name": "xDAI Chain", "name": "Gnosis Chain (formerly xDai)",
"chain": "XDAI", "chain": "Gnosis",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.xdaichain.com", "https://rpc.xdaichain.com",
"https://xdai.poanetwork.dev", "https://xdai.poanetwork.dev",
@ -11,15 +10,21 @@
"https://dai.poa.network", "https://dai.poa.network",
"ws://xdai.poanetwork.dev:8546" "ws://xdai.poanetwork.dev:8546"
], ],
"faucets": [], "faucets": ["https://faucet.gimlu.com/gnosis", "https://stakely.io/faucet/xdai-chain", "https://faucet.prussia.dev/xdai"],
"nativeCurrency": { "nativeCurrency": {
"name": "xDAI", "name": "xDAI",
"symbol": "xDAI", "symbol": "xDAI",
"decimals": 18 "decimals": 18
}, },
"infoURL": "https://forum.poa.network/c/xdai-chain", "infoURL": "https://www.xdaichain.com/",
"shortName": "xdai", "shortName": "gno",
"chainId": 100, "chainId": 100,
"networkId": 100, "networkId": 100,
"slip44": 700 "slip44": 700,
"explorers": [{
"name": "blockscout",
"url": "https://blockscout.com/xdai/mainnet",
"standard": "EIP3091"
}]
} }

View File

@ -1,11 +1,11 @@
{ {
"name": "Smart Bitcoin Cash", "name": "Smart Bitcoin Cash",
"chain": "smartBCH", "chain": "smartBCH",
"network": "mainnet",
"rpc": [ "rpc": [
"https://smartbch.greyh.at", "https://smartbch.greyh.at",
"https://rpc-mainnet.smartbch.org", "https://rpc-mainnet.smartbch.org",
"https://smartbch.fountainhead.cash/mainnet" "https://smartbch.fountainhead.cash/mainnet",
"https://smartbch.devops.cash/mainnet"
], ],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Root", "name": "QuarkChain Mainnet Root",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://jrpc.mainnet.quarkchain.io:38391/" "http://jrpc.mainnet.quarkchain.io:38391/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 0", "name": "QuarkChain Mainnet Shard 0",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39000/" "http://eth-jrpc.mainnet.quarkchain.io:39000/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 1", "name": "QuarkChain Mainnet Shard 1",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39001/" "http://eth-jrpc.mainnet.quarkchain.io:39001/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 2", "name": "QuarkChain Mainnet Shard 2",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39002/" "http://eth-jrpc.mainnet.quarkchain.io:39002/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 3", "name": "QuarkChain Mainnet Shard 3",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39003/" "http://eth-jrpc.mainnet.quarkchain.io:39003/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 4", "name": "QuarkChain Mainnet Shard 4",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39004/" "http://eth-jrpc.mainnet.quarkchain.io:39004/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 5", "name": "QuarkChain Mainnet Shard 5",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39005/" "http://eth-jrpc.mainnet.quarkchain.io:39005/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 6", "name": "QuarkChain Mainnet Shard 6",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39006/" "http://eth-jrpc.mainnet.quarkchain.io:39006/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Mainnet Shard 7", "name": "QuarkChain Mainnet Shard 7",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "mainnet",
"rpc": [ "rpc": [
"http://eth-jrpc.mainnet.quarkchain.io:39007/" "http://eth-jrpc.mainnet.quarkchain.io:39007/"
], ],

View File

@ -1,9 +1,9 @@
{ {
"name": "Smart Bitcoin Cash Testnet", "name": "Smart Bitcoin Cash Testnet",
"chain": "smartBCHTest", "chain": "smartBCHTest",
"network": "testnet",
"rpc": [ "rpc": [
"https://rpc-testnet.smartbch.org" "https://rpc-testnet.smartbch.org",
"https://smartbch.devops.cash/testnet"
], ],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,9 +1,8 @@
{ {
"name": "Klaytn Testnet Baobab", "name": "Klaytn Testnet Baobab",
"chain": "KLAY", "chain": "KLAY",
"network": "baobab",
"rpc": [ "rpc": [
"https://node-api.klaytnapi.com/v1/klaytn" "https://api.baobab.klaytn.net:8651"
], ],
"faucets": [ "faucets": [
"https://baobab.wallet.klaytn.com/access?next=faucet" "https://baobab.wallet.klaytn.com/access?next=faucet"

View File

@ -1,7 +1,6 @@
{ {
"name": "Newton Testnet", "name": "Newton Testnet",
"chain": "NEW", "chain": "NEW",
"network": "testnet",
"rpc": [ "rpc": [
"https://rpc1.newchain.newtonproject.org" "https://rpc1.newchain.newtonproject.org"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "EtherInc", "name": "EtherInc",
"chain": "ETI", "chain": "ETI",
"network": "mainnet",
"rpc": [ "rpc": [
"https://api.einc.io/jsonrpc/mainnet" "https://api.einc.io/jsonrpc/mainnet"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Evrice Network", "name": "Evrice Network",
"chain": "EVC", "chain": "EVC",
"network": "Evrice",
"rpc": [ "rpc": [
"https://meta.evrice.com" "https://meta.evrice.com"
], ],
@ -14,5 +13,6 @@
"infoURL": "https://evrice.com", "infoURL": "https://evrice.com",
"shortName": "EVC", "shortName": "EVC",
"chainId": 1010, "chainId": 1010,
"networkId": 1010 "networkId": 1010,
"slip44": 1020
} }

View File

@ -1,7 +1,6 @@
{ {
"name": "Blockchain Genesis Mainnet", "name": "Blockchain Genesis Mainnet",
"chain": "GEN", "chain": "GEN",
"network": "mainnet",
"rpc": [ "rpc": [
"https://eu.mainnet.xixoio.com", "https://eu.mainnet.xixoio.com",
"https://us.mainnet.xixoio.com", "https://us.mainnet.xixoio.com",

View File

@ -1,7 +1,6 @@
{ {
"name": "Newton", "name": "Newton",
"chain": "NEW", "chain": "NEW",
"network": "mainnet",
"rpc": [ "rpc": [
"https://global.rpc.mainnet.newtonproject.org" "https://global.rpc.mainnet.newtonproject.org"
], ],

View File

@ -1,8 +1,7 @@
{ {
"name": "Web3Games Testnet", "name": "Web3Games Testnet",
"chain": "Web3Games", "chain": "Web3Games",
"network": "testnet", "rpc": ["https://testnet.web3games.org/evm"],
"rpc": ["https://substrate.org.cn"],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {
"name": "Web3Games", "name": "Web3Games",

View File

@ -1,7 +1,6 @@
{ {
"name": "Sakura", "name": "Sakura",
"chain": "Sakura", "chain": "Sakura",
"network": "sakura",
"rpc": [], "rpc": [],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,7 +1,6 @@
{ {
"name": "Clover Testnet", "name": "Clover Testnet",
"chain": "Clover", "chain": "Clover",
"network": "clover testnet",
"rpc": [], "rpc": [],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,7 +1,6 @@
{ {
"name": "Clover Mainnet", "name": "Clover Mainnet",
"chain": "Clover", "chain": "Clover",
"network": "clover mainnet",
"rpc": [ "rpc": [
"https://rpc-ivy.clover.finance", "https://rpc-ivy.clover.finance",
"https://rpc-ivy-2.clover.finance", "https://rpc-ivy-2.clover.finance",

View File

@ -0,0 +1,22 @@
{
"name": "BitTorrent Chain Testnet",
"chain": "BTTC",
"rpc": [
"https://testrpc.bittorrentchain.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BitTorrent",
"symbol": "BTT",
"decimals": 18
},
"infoURL": "https://bittorrentchain.io/",
"shortName": "tbtt",
"chainId": 1028,
"networkId": 1028,
"explorers": [{
"name": "testbttcscan",
"url": "https://testscan.bittorrentchain.io/",
"standard": "none"
}]
}

View File

@ -0,0 +1,22 @@
{
"name": "Conflux",
"chain": "Conflux",
"rpc": ["https://ethcore.confluxrpc.com"],
"faucets": [],
"nativeCurrency": {
"name": "CFX",
"symbol": "CFX",
"decimals": 18
},
"infoURL": "https://confluxnetwork.org",
"shortName": "cfx",
"chainId": 1030,
"networkId": 1030,
"explorers": [
{
"name": "Conflux Scan",
"url": "https://confluxscan.io",
"standard": "none"
}
]
}

View File

@ -0,0 +1,24 @@
{
"name": "Velas EVM Mainnet",
"chain": "Velas",
"icon": "velas",
"rpc": [
"https://evmexplorer.velas.com/rpc",
"https://explorer.velas.com/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Velas",
"symbol": "VLX",
"decimals": 18
},
"infoURL": "https://velas.com",
"shortName": "vlx",
"chainId": 106,
"networkId": 106,
"explorers": [{
"name": "Velas Explorer",
"url": "https://evmexplorer.velas.com",
"standard": "EIP3091"
}]
}

View File

@ -1,7 +1,6 @@
{ {
"name": "ThunderCore Mainnet", "name": "ThunderCore Mainnet",
"chain": "TT", "chain": "TT",
"network": "mainnet",
"rpc": [ "rpc": [
"https://mainnet-rpc.thundercore.com" "https://mainnet-rpc.thundercore.com"
], ],
@ -16,5 +15,6 @@
"infoURL": "https://thundercore.com", "infoURL": "https://thundercore.com",
"shortName": "TT", "shortName": "TT",
"chainId": 108, "chainId": 108,
"networkId": 108 "networkId": 108,
"slip44": 1001
} }

View File

@ -0,0 +1,27 @@
{
"name": "Metis Andromeda Mainnet",
"chain": "ETH",
"rpc": ["https://andromeda.metis.io/?owner=1088"],
"faucets": [],
"nativeCurrency": {
"name": "Metis",
"symbol": "METIS",
"decimals": 18
},
"infoURL": "https://www.metis.io",
"shortName": "metis-andromeda",
"chainId": 1088,
"networkId": 1088,
"explorers": [
{
"name": "blockscout",
"url": "https://andromeda-explorer.metis.io/",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [{ "url": "https://bridge.metis.io" }]
}
}

View File

@ -1,7 +1,6 @@
{ {
"name": "Metadium Mainnet", "name": "Metadium Mainnet",
"chain": "META", "chain": "META",
"network": "mainnet",
"rpc": [ "rpc": [
"https://api.metadium.com/prod" "https://api.metadium.com/prod"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Proton Testnet", "name": "Proton Testnet",
"chain": "XPR", "chain": "XPR",
"network": "testnet",
"rpc": [ "rpc": [
"https://protontestnet.greymass.com/" "https://protontestnet.greymass.com/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Root", "name": "QuarkChain Devnet Root",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://jrpc.devnet.quarkchain.io:38391/" "http://jrpc.devnet.quarkchain.io:38391/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 0", "name": "QuarkChain Devnet Shard 0",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39900/" "http://eth-jrpc.devnet.quarkchain.io:39900/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 1", "name": "QuarkChain Devnet Shard 1",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39901/" "http://eth-jrpc.devnet.quarkchain.io:39901/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 2", "name": "QuarkChain Devnet Shard 2",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39902/" "http://eth-jrpc.devnet.quarkchain.io:39902/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 3", "name": "QuarkChain Devnet Shard 3",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39903/" "http://eth-jrpc.devnet.quarkchain.io:39903/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 4", "name": "QuarkChain Devnet Shard 4",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39904/" "http://eth-jrpc.devnet.quarkchain.io:39904/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 5", "name": "QuarkChain Devnet Shard 5",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39905/" "http://eth-jrpc.devnet.quarkchain.io:39905/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 6", "name": "QuarkChain Devnet Shard 6",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39906/" "http://eth-jrpc.devnet.quarkchain.io:39906/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "QuarkChain Devnet Shard 7", "name": "QuarkChain Devnet Shard 7",
"chain": "QuarkChain", "chain": "QuarkChain",
"network": "devnet",
"rpc": [ "rpc": [
"http://eth-jrpc.devnet.quarkchain.io:39907/" "http://eth-jrpc.devnet.quarkchain.io:39907/"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "EtherLite Chain", "name": "EtherLite Chain",
"chain": "ETL", "chain": "ETL",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.etherlite.org" "https://rpc.etherlite.org"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "IPOS Network", "name": "IPOS Network",
"chain": "IPOS", "chain": "IPOS",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.iposlab.com", "https://rpc.iposlab.com",
"https://rpc2.iposlab.com" "https://rpc2.iposlab.com"

View File

@ -1,7 +1,6 @@
{ {
"name": "Palm Testnet", "name": "Palm Testnet",
"chain": "Palm", "chain": "Palm",
"network": "testnet",
"rpc": [], "rpc": [],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,7 +1,6 @@
{ {
"name": "Palm Mainnet", "name": "Palm Mainnet",
"chain": "Palm", "chain": "Palm",
"network": "mainnet",
"rpc": [], "rpc": [],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,8 +1,10 @@
{ {
"name": "MathChain", "name": "MathChain",
"chain": "MATH", "chain": "MATH",
"network": "mainnet", "rpc": [
"rpc": [], "https://mathchain-asia.maiziqianbao.net/rpc",
"https://mathchain-us.maiziqianbao.net/rpc"
],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {
"name": "MathChain", "name": "MathChain",
@ -13,4 +15,4 @@
"shortName": "MATH", "shortName": "MATH",
"chainId": 1139, "chainId": 1139,
"networkId": 1139 "networkId": 1139
} }

View File

@ -1,7 +1,6 @@
{ {
"name": "MathChain Testnet", "name": "MathChain Testnet",
"chain": "MATH", "chain": "MATH",
"network": "testnet",
"rpc": [ "rpc": [
"https://galois-hk.maiziqianbao.net/rpc" "https://galois-hk.maiziqianbao.net/rpc"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Metadium Testnet", "name": "Metadium Testnet",
"chain": "META", "chain": "META",
"network": "testnet",
"rpc": [ "rpc": [
"https://api.metadium.com/dev" "https://api.metadium.com/dev"
], ],

View File

@ -0,0 +1,23 @@
{
"name": "World Trade Technical Chain Mainnet",
"chain": "WTT",
"rpc": [
"https://rpc.cadaut.com",
"wss://rpc.cadaut.com/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "World Trade Token",
"symbol": "WTT",
"decimals": 18
},
"infoURL": "http://www.cadaut.com",
"shortName": "wtt",
"chainId": 1202,
"networkId": 2048,
"explorers": [{
"name": "WTTScout",
"url": "https://explorer.cadaut.com",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,24 @@
{
"name": "Singularity ZERO Testnet",
"chain": "ZERO",
"rpc": [
"https://betaenv.singularity.gold:18545"
],
"faucets": [
"https://nft.singularity.gold"
],
"nativeCurrency": {
"name": "ZERO",
"symbol": "tZERO",
"decimals": 18
},
"infoURL": "https://www.singularity.gold",
"shortName": "tZERO",
"chainId": 12051,
"networkId": 12051,
"explorers": [{
"name": "zeroscan",
"url": "https://betaenv.singularity.gold:18002",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,25 @@
{
"name": "Singularity ZERO Mainnet",
"chain": "ZERO",
"rpc": [
"https://zerorpc.singularity.gold"
],
"faucets": [
"https://zeroscan.singularity.gold"
],
"nativeCurrency": {
"name": "ZERO",
"symbol": "ZERO",
"decimals": 18
},
"infoURL": "https://www.singularity.gold",
"shortName": "ZERO",
"chainId": 12052,
"networkId": 12052,
"slip44": 621,
"explorers": [{
"name": "zeroscan",
"url": "https://zeroscan.singularity.gold",
"standard": "EIP3091"
}]
}

View File

@ -0,0 +1,24 @@
{
"name": "Popcateum Mainnet",
"chain": "POPCATEUM",
"rpc": [
"https://dataseed.popcateum.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Popcat",
"symbol": "POP",
"decimals": 18
},
"infoURL": "https://popcateum.org",
"shortName": "popcat",
"chainId": 1213,
"networkId": 1213,
"explorers": [
{
"name": "popcateum explorer",
"url": "https://explorer.popcateum.org",
"standard": "none"
}
]
}

View File

@ -1,7 +1,6 @@
{ {
"name": "Fuse Mainnet", "name": "Fuse Mainnet",
"chain": "FUSE", "chain": "FUSE",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.fuse.io" "https://rpc.fuse.io"
], ],

View File

@ -0,0 +1,17 @@
{
"name": "Fuse Sparknet",
"chain": "fuse",
"rpc": [
"https://rpc.fusespark.io"
],
"faucets": ["https://get.fusespark.io"],
"nativeCurrency": {
"name": "Spark",
"symbol": "SPARK",
"decimals": 18
},
"infoURL": "https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet",
"shortName": "spark",
"chainId": 123,
"networkId": 123
}

View File

@ -2,7 +2,6 @@
"name": "Decentralized Web Mainnet", "name": "Decentralized Web Mainnet",
"shortName": "dwu", "shortName": "dwu",
"chain": "DWU", "chain": "DWU",
"network": "mainnet",
"chainId": 124, "chainId": 124,
"networkId": 124, "networkId": 124,
"rpc": ["https://decentralized-web.tech/dw_rpc.php"], "rpc": ["https://decentralized-web.tech/dw_rpc.php"],

View File

@ -1,7 +1,6 @@
{ {
"name": "Factory 127 Mainnet", "name": "Factory 127 Mainnet",
"chain": "FETH", "chain": "FETH",
"network": "factory127 mainnet",
"rpc": [], "rpc": [],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,12 +1,11 @@
{ {
"name": "Huobi ECO Chain Mainnet", "name": "Huobi ECO Chain Mainnet",
"chain": "Heco", "chain": "Heco",
"network": "mainnet",
"rpc": [ "rpc": [
"https://http-mainnet.hecochain.com", "https://http-mainnet.hecochain.com",
"wss://ws-mainnet.hecochain.com" "wss://ws-mainnet.hecochain.com"
], ],
"faucets": [], "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
"nativeCurrency": { "nativeCurrency": {
"name": "Huobi ECO Chain Native Token", "name": "Huobi ECO Chain Native Token",
"symbol": "HT", "symbol": "HT",
@ -16,6 +15,7 @@
"shortName": "heco", "shortName": "heco",
"chainId": 128, "chainId": 128,
"networkId": 128, "networkId": 128,
"slip44": 1010,
"explorers": [{ "explorers": [{
"name": "hecoinfo", "name": "hecoinfo",
"url": "https://hecoinfo.com", "url": "https://hecoinfo.com",

View File

@ -0,0 +1,23 @@
{
"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"
}]
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Moonbeam", "name": "Moonbeam",
"chain": "MOON", "chain": "MOON",
"network": "moonbeam", "rpc": [
"rpc": [], "https://rpc.api.moonbeam.network",
"wss://wss.api.moonbeam.network"
],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {
"name": "Glimmer", "name": "Glimmer",
@ -12,5 +14,17 @@
"infoURL": "https://moonbeam.network/networks/moonbeam/", "infoURL": "https://moonbeam.network/networks/moonbeam/",
"shortName": "mbeam", "shortName": "mbeam",
"chainId": 1284, "chainId": 1284,
"networkId": 1284 "networkId": 1284,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.moonbeam.network/",
"standard": "none"
},
{
"name": "moonscan",
"url": "https://moonbeam.moonscan.io/",
"standard": "none"
}
]
} }

View File

@ -1,7 +1,6 @@
{ {
"name": "Moonriver", "name": "Moonriver",
"chain": "MOON", "chain": "MOON",
"network": "moonriver",
"rpc": [ "rpc": [
"https://rpc.moonriver.moonbeam.network", "https://rpc.moonriver.moonbeam.network",
"wss://wss.moonriver.moonbeam.network" "wss://wss.moonriver.moonbeam.network"
@ -15,5 +14,12 @@
"infoURL": "https://moonbeam.network/networks/moonriver/", "infoURL": "https://moonbeam.network/networks/moonriver/",
"shortName": "mriver", "shortName": "mriver",
"chainId": 1285, "chainId": 1285,
"networkId": 1285 "networkId": 1285,
"explorers": [
{
"name": "moonscan",
"url": "https://moonriver.moonscan.io/",
"standard": "none"
}
]
} }

View File

@ -1,10 +1,9 @@
{ {
"name": "Moonbase Alpha", "name": "Moonbase Alpha",
"chain": "MOON", "chain": "MOON",
"network": "moonbase",
"rpc": [ "rpc": [
"https://rpc.testnet.moonbeam.network", "https://rpc.api.moonbase.moonbeam.network",
"wss://wss.testnet.moonbeam.network" "wss://wss.api.moonbase.moonbeam.network"
], ],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {
@ -15,5 +14,12 @@
"infoURL": "https://docs.moonbeam.network/networks/testnet/", "infoURL": "https://docs.moonbeam.network/networks/testnet/",
"shortName": "mbase", "shortName": "mbase",
"chainId": 1287, "chainId": 1287,
"networkId": 1287 "networkId": 1287,
"explorers": [
{
"name": "moonscan",
"url": "https://moonbase.moonscan.io/",
"standard": "none"
}
]
} }

View File

@ -1,16 +1,18 @@
{ {
"name": "Moonshadow", "name": "Moonrock",
"chain": "MOON", "chain": "MOON",
"network": "moonshadow", "rpc": [
"rpc": [], "https://rpc.api.moonrock.moonbeam.network",
"faucets": [], "wss://wss.api.moonrock.moonbeam.network"
"nativeCurrency": { ],
"name": "Moonshadow", "faucets": [],
"symbol": "MSHD", "nativeCurrency": {
"decimals": 18 "name": "Rocs",
}, "symbol": "ROC",
"infoURL": "https://docs.moonbeam.network/networks/overview/", "decimals": 18
"shortName": "mshadow", },
"chainId": 1288, "infoURL": "https://docs.moonbeam.network/learn/platform/networks/overview/",
"networkId": 1288 "shortName": "mrock",
"chainId": 1288,
"networkId": 1288
} }

View File

@ -1,7 +1,6 @@
{ {
"name": "Diode Testnet Staging", "name": "Diode Testnet Staging",
"chain": "DIODE", "chain": "DIODE",
"network": "testnet",
"rpc": [ "rpc": [
"https://staging.diode.io:8443/", "https://staging.diode.io:8443/",
"wss://staging.diode.io:8443/ws" "wss://staging.diode.io:8443/ws"

View File

@ -1,19 +1,26 @@
{ {
"name": "Ether-1", "name": "Etho Protocol",
"chain": "ETHO", "chain": "ETHO",
"network": "mainnet", "rpc": [
"rpc": [ "https://rpc.ether1.org"
"https://rpc.ether1.org" ],
],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {
"name": "Ether-1 Ether", "name": "Etho Protocol",
"symbol": "ETHO", "symbol": "ETHO",
"decimals": 18 "decimals": 18
}, },
"infoURL": "https://ether1.org",
"shortName": "etho", "infoURL": "https://ethoprotocol.com",
"chainId": 1313114, "shortName": "etho",
"networkId": 1313114, "chainId": 1313114,
"slip44": 1313114 "networkId": 1313114,
} "slip44": 1313114,
"explorers": [{
"name": "blockscout",
"url": "https://explorer.ethoprotocol.com",
"standard": "none"
}]
}

View File

@ -1,9 +1,8 @@
{ {
"name": "Aurora MainNet", "name": "Aurora MainNet",
"chain": "NEAR", "chain": "NEAR",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.mainnet.aurora.dev:8545" "https://mainnet.aurora.dev"
], ],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,9 +1,8 @@
{ {
"name": "Aurora TestNet", "name": "Aurora TestNet",
"chain": "NEAR", "chain": "NEAR",
"network": "testnet",
"rpc": [ "rpc": [
"https://rpc.testnet.aurora.dev:8545" "https://testnet.aurora.dev/"
], ],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,9 +1,8 @@
{ {
"name": "Aurora BetaNet", "name": "Aurora BetaNet",
"chain": "NEAR", "chain": "NEAR",
"network": "betanet",
"rpc": [ "rpc": [
"https://rpc.betanet.aurora.dev:8545" "https://betanet.aurora.dev/"
], ],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {

View File

@ -1,7 +1,6 @@
{ {
"name": "Xerom", "name": "Xerom",
"chain": "XERO", "chain": "XERO",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.xerom.org" "https://rpc.xerom.org"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "PepChain Churchill", "name": "PepChain Churchill",
"chain": "PEP", "chain": "PEP",
"network": "testnet",
"rpc": [ "rpc": [
"https://churchill-rpc.pepchain.io" "https://churchill-rpc.pepchain.io"
], ],

View File

@ -0,0 +1,25 @@
{
"name": "Kintsugi",
"title": "Kintsugi merge testnet",
"chain": "ETH",
"rpc": [
"https://rpc.kintsugi.themerge.dev"
],
"faucets": [
"https://faucet.kintsugi.themerge.dev"
],
"nativeCurrency": {
"name": "kintsugi Ethere",
"symbol": "kiETH",
"decimals": 18
},
"infoURL": "https://kintsugi.themerge.dev/",
"shortName": "kintsugi",
"chainId": 1337702,
"networkId": 1337702,
"explorers": [{
"name": "kintsugi explorer",
"url": "https://explorer.kintsugi.themerge.dev/",
"standard": "EIP3091"
}]
}

View File

@ -1,26 +1,28 @@
{ {
"name": "Matic(Polygon) Mainnet", "name": "Polygon Mainnet",
"chain": "Matic(Polygon)", "chain": "Polygon",
"network": "mainnet",
"rpc": [ "rpc": [
"https://polygon-rpc.com/",
"https://rpc-mainnet.matic.network", "https://rpc-mainnet.matic.network",
"wss://ws-mainnet.matic.network", "https://matic-mainnet.chainstacklabs.com",
"https://rpc-mainnet.maticvigil.com",
"https://rpc-mainnet.matic.quiknode.pro", "https://rpc-mainnet.matic.quiknode.pro",
"https://matic-mainnet.chainstacklabs.com" "https://matic-mainnet-full-rpc.bwarelabs.com"
], ],
"faucets": [], "faucets": [],
"nativeCurrency": { "nativeCurrency": {
"name": "Matic", "name": "MATIC",
"symbol": "MATIC", "symbol": "MATIC",
"decimals": 18 "decimals": 18
}, },
"infoURL": "https://matic.network/", "infoURL": "https://polygon.technology/",
"shortName": "matic", "shortName": "MATIC",
"chainId": 137, "chainId": 137,
"networkId": 137, "networkId": 137,
"slip44": 966,
"explorers": [{ "explorers": [{
"name": "polygonscan", "name": "polygonscan",
"url": "https://polygonscan.com", "url": "https://polygonscan.com/",
"standard": "EIP3091" "standard": "EIP3091"
}] }]
} }

View File

@ -1,7 +1,6 @@
{ {
"name": "Flare Mainnet", "name": "Flare Mainnet",
"chain": "FLR", "chain": "FLR",
"network": "flare",
"rpc": [ "rpc": [
], ],
"faucets": [ "faucets": [

View File

@ -1,7 +1,6 @@
{ {
"name": "DAX CHAIN", "name": "DAX CHAIN",
"chain": "DAX", "chain": "DAX",
"network": "mainnet",
"rpc": [ "rpc": [
"https://rpc.prodax.io" "https://rpc.prodax.io"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Diode Prenet", "name": "Diode Prenet",
"chain": "DIODE", "chain": "DIODE",
"network": "mainnet",
"rpc": [ "rpc": [
"https://prenet.diode.io:8443/", "https://prenet.diode.io:8443/",
"wss://prenet.diode.io:8443/ws" "wss://prenet.diode.io:8443/ws"

View File

@ -1,7 +1,6 @@
{ {
"name": "Flare Testnet Coston", "name": "Flare Testnet Coston",
"chain": "FLR", "chain": "FLR",
"network": "coston",
"rpc": [ "rpc": [
], ],
"faucets": [ "faucets": [

View File

@ -1,7 +1,6 @@
{ {
"name": "MetaDot Mainnet", "name": "MetaDot Mainnet",
"chain": "MTT", "chain": "MTT",
"network": "mainnet",
"rpc": [ "rpc": [
"https://mainnet.metadot.network" "https://mainnet.metadot.network"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "MetaDot Testnet", "name": "MetaDot Testnet",
"chain": "MTTTest", "chain": "MTTTest",
"network": "devnet",
"rpc": [ "rpc": [
"https://testnet.metadot.network" "https://testnet.metadot.network"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Catecoin Chain Mainnet", "name": "Catecoin Chain Mainnet",
"chain": "Catechain", "chain": "Catechain",
"network": "mainnet",
"rpc": [ "rpc": [
"https://send.catechain.com" "https://send.catechain.com"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Lightstreams Testnet", "name": "Lightstreams Testnet",
"chain": "PHT", "chain": "PHT",
"network": "sirius",
"rpc": [ "rpc": [
"https://node.sirius.lightstreams.io" "https://node.sirius.lightstreams.io"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Atheios", "name": "Atheios",
"chain": "ATH", "chain": "ATH",
"network": "mainnet",
"rpc": [ "rpc": [
"https://wallet.atheios.com:8797" "https://wallet.atheios.com:8797"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Lightstreams Mainnet", "name": "Lightstreams Mainnet",
"chain": "PHT", "chain": "PHT",
"network": "mainnet",
"rpc": [ "rpc": [
"https://node.mainnet.lightstreams.io" "https://node.mainnet.lightstreams.io"
], ],

View File

@ -0,0 +1,17 @@
{
"name": "Btachain",
"chain": "btachain",
"rpc": [
"https://dataseed1.btachain.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcoin Asset",
"symbol": "BTA",
"decimals": 18
},
"infoURL": "https://bitcoinasset.io/",
"shortName": "bta",
"chainId": 1657,
"networkId": 1657
}

View File

@ -1,12 +1,10 @@
{ {
"name": "Harmony Mainnet Shard 0", "name": "Harmony Mainnet Shard 0",
"chain": "Harmony", "chain": "Harmony",
"network": "mainnet",
"rpc": [ "rpc": [
"https://api.harmony.one" "https://api.harmony.one"
], ],
"faucets": [ "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
],
"nativeCurrency": { "nativeCurrency": {
"name": "ONE", "name": "ONE",
"symbol": "ONE", "symbol": "ONE",

View File

@ -1,7 +1,6 @@
{ {
"name": "Harmony Mainnet Shard 1", "name": "Harmony Mainnet Shard 1",
"chain": "Harmony", "chain": "Harmony",
"network": "mainnet",
"rpc": [ "rpc": [
"https://s1.api.harmony.one" "https://s1.api.harmony.one"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Harmony Mainnet Shard 2", "name": "Harmony Mainnet Shard 2",
"chain": "Harmony", "chain": "Harmony",
"network": "mainnet",
"rpc": [ "rpc": [
"https://s2.api.harmony.one" "https://s2.api.harmony.one"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Harmony Mainnet Shard 3", "name": "Harmony Mainnet Shard 3",
"chain": "Harmony", "chain": "Harmony",
"network": "mainnet",
"rpc": [ "rpc": [
"https://s3.api.harmony.one" "https://s3.api.harmony.one"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Harmony Testnet Shard 0", "name": "Harmony Testnet Shard 0",
"chain": "Harmony", "chain": "Harmony",
"network": "testnet",
"rpc": [ "rpc": [
"https://api.s0.b.hmny.io" "https://api.s0.b.hmny.io"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Harmony Testnet Shard 1", "name": "Harmony Testnet Shard 1",
"chain": "Harmony", "chain": "Harmony",
"network": "testnet",
"rpc": [ "rpc": [
"https://api.s1.b.hmny.io" "https://api.s1.b.hmny.io"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Harmony Testnet Shard 2", "name": "Harmony Testnet Shard 2",
"chain": "Harmony", "chain": "Harmony",
"network": "testnet",
"rpc": [ "rpc": [
"https://api.s2.b.hmny.io" "https://api.s2.b.hmny.io"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Harmony Testnet Shard 3", "name": "Harmony Testnet Shard 3",
"chain": "Harmony", "chain": "Harmony",
"network": "testnet",
"rpc": [ "rpc": [
"https://api.s3.b.hmny.io" "https://api.s3.b.hmny.io"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "ThaiChain 2.0 ThaiFi", "name": "ThaiChain 2.0 ThaiFi",
"chain": "TCH", "chain": "TCH",
"network": "thaifi",
"rpc": [ "rpc": [
"https://rpc.thaifi.com" "https://rpc.thaifi.com"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "HOO Smart Chain Testnet", "name": "HOO Smart Chain Testnet",
"chain": "ETH", "chain": "ETH",
"network": "testnet",
"rpc": [ "rpc": [
"https://http-testnet.hoosmartchain.com" "https://http-testnet.hoosmartchain.com"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Latam-Blockchain Resil Testnet", "name": "Latam-Blockchain Resil Testnet",
"chain": "Resil", "chain": "Resil",
"network": "testnet",
"rpc": [ "rpc": [
"https://rpc.latam-blockchain.com", "https://rpc.latam-blockchain.com",
"wss://ws.latam-blockchain.com" "wss://ws.latam-blockchain.com"

View File

@ -1,7 +1,6 @@
{ {
"name": "ThunderCore Testnet", "name": "ThunderCore Testnet",
"chain": "TST", "chain": "TST",
"network": "testnet",
"rpc": [ "rpc": [
"https://testnet-rpc.thundercore.com" "https://testnet-rpc.thundercore.com"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "IOLite", "name": "IOLite",
"chain": "ILT", "chain": "ILT",
"network": "mainnet",
"rpc": [ "rpc": [
"https://net.iolite.io" "https://net.iolite.io"
], ],

View File

@ -1,7 +1,6 @@
{ {
"name": "Teslafunds", "name": "Teslafunds",
"chain": "TSF", "chain": "TSF",
"network": "mainnet",
"rpc": [ "rpc": [
"https://tsfapi.europool.me" "https://tsfapi.europool.me"
], ],

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