merge master and resolve conflicts

This commit is contained in:
Pedro Gomes 2019-04-24 17:52:17 +02:00
commit 68d03e5a13
51 changed files with 479 additions and 295 deletions

View File

@ -16,6 +16,7 @@ assignees: ''
"chain": "ETH", "chain": "ETH",
"network": "mainnet", "network": "mainnet",
"chain_id": 1, "chain_id": 1,
"network_id": 1 "network_id": 1,
"rpc": ["https://mainnet.infura.io"]
} }
``` ```

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
_site _site
.sass-cache .sass-cache
.jekyll-metadata .jekyll-metadata
.DS_Store

1
CNAME Normal file
View File

@ -0,0 +1 @@
chainid.network

View File

@ -4,16 +4,21 @@ Listed by chainId according to EIP-155
Data source available on `_data/chains.json` Data source available on `_data/chains.json`
Example Format ## Example
```
```json
{ {
"name": "Ethereum Mainnet", "name": "Ethereum Mainnet",
"short_name": "eth", "short_name": "eth",
"chain": "ETH", "chain": "ETH",
"network": "mainnet", "network": "mainnet",
"chain_id": 1, "chain_id": 1,
"network_id": 1 "network_id": 1,
"rpc": [
"https://mainnet.infura.io/v3/${INFURA_API_KEY}",
"https://api.mycryptoapi.com/eth"
],
"faucets": [],
"info_url": "https://ethereum.org"
} }
``` ```

View File

@ -1,8 +1,10 @@
{ {
"name": "Akaroma", "name": "Akaroma",
"short_name": "aka", "short_name": "aka",
"chain": "AKA", "chain": "AKA",
"network": "mainnet", "network": "mainnet",
"chain_id": 200625, "chain_id": 200625,
"network_id": 200625 "network_id": 200625,
} "rpc": ["https://remote.akroma.io"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "ARTIS sigma1", "name": "ARTIS sigma1",
"short_name": "ats", "short_name": "ats",
"chain": "ARTIS", "chain": "ARTIS",
"network": "sigma1", "network": "sigma1",
"chain_id": 246529, "chain_id": 246529,
"network_id": 246529 "network_id": 246529,
} "rpc": ["https://rpc.sigma1.artis.network"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "ARTIS tau1", "name": "ARTIS tau1",
"short_name": "ats", "short_name": "ats",
"chain": "ARTIS", "chain": "ARTIS",
"network": "tau1", "network": "tau1",
"chain_id": 246785, "chain_id": 246785,
"network_id": 246785 "network_id": 246785,
} "rpc": ["https://rpc.tau1.artis.network"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Atheios", "name": "Atheios",
"short_name": "ath", "short_name": "ath",
"chain": "ATH", "chain": "ATH",
"network": "mainnet", "network": "mainnet",
"chain_id": 1620, "chain_id": 1620,
"network_id": 11235813 "network_id": 11235813,
} "rpc": ["https://wallet.atheios.com:8797"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Callisto Mainnet", "name": "Callisto Mainnet",
"short_name": "clo", "short_name": "clo",
"chain": "CLO", "chain": "CLO",
"network": "mainnet", "network": "mainnet",
"chain_id": 820, "chain_id": 820,
"network_id": 1 "network_id": 1,
} "rpc": ["https://clo-geth.0xinfra.com/"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Callisto Testnet", "name": "Callisto Testnet",
"short_name": "tclo", "short_name": "tclo",
"chain": "CLO", "chain": "CLO",
"network": "testnet", "network": "testnet",
"chain_id": 821, "chain_id": 821,
"network_id": 2 "network_id": 2,
} "rpc": [],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Ellaism", "name": "Ellaism",
"short_name": "ella", "short_name": "ella",
"chain": "ELLA", "chain": "ELLA",
"network": "mainnet", "network": "mainnet",
"chain_id": 64, "chain_id": 64,
"network_id": 64 "network_id": 1,
} "rpc": ["https://jsonrpc.ellaism.org"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "EOS Classic", "name": "EOS Classic",
"short_name": "eosc", "short_name": "eosc",
"chain": "EOSC", "chain": "EOSC",
"network": "mainnet", "network": "mainnet",
"chain_id": 2018, "chain_id": 2018,
"network_id": 1 "network_id": 1,
} "rpc": [],
"faucets": []
}

View File

@ -1,8 +1,11 @@
{ {
"name": "Ethereum Classic Mainnet", "name": "Ethereum Classic Mainnet",
"short_name": "etc", "short_name": "etc",
"chain": "ETC", "chain": "ETC",
"network": "mainnet", "network": "mainnet",
"chain_id": 61, "chain_id": 61,
"network_id": 1 "network_id": 1,
} "rpc": ["https://ethereumclassic.network"],
"faucets": [],
"info_url": "https://ethereumclassic.org"
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Ethereum Classic Testnet", "name": "Ethereum Classic Testnet",
"short_name": "tetc", "short_name": "tetc",
"chain": "ETC", "chain": "ETC",
"network": "testnet", "network": "testnet",
"chain_id": 62, "chain_id": 62,
"network_id": 2 "network_id": 2,
} "rpc": [],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Ether-1", "name": "Ether-1",
"short_name": "etho", "short_name": "etho",
"chain": "ETHO", "chain": "ETHO",
"network": "mainnet", "network": "mainnet",
"chain_id": 1313114, "chain_id": 1313114,
"network_id": 1313114 "network_id": 1313114,
} "rpc": ["https://rpc.ether1.org"],
"faucets": []
}

View File

@ -4,5 +4,11 @@
"chain": "ETH", "chain": "ETH",
"network": "mainnet", "network": "mainnet",
"chain_id": 1, "chain_id": 1,
"network_id": 1 "network_id": 1,
"rpc": [
"https://mainnet.infura.io/v3/${INFURA_API_KEY}",
"https://api.mycryptoapi.com/eth"
],
"faucets": [],
"info_url": "https://ethereum.org"
} }

View File

@ -1,8 +1,10 @@
{ {
"name": "EtherGem", "name": "EtherGem",
"short_name": "egem", "short_name": "egem",
"chain": "EGEM", "chain": "EGEM",
"network": "mainnet", "network": "mainnet",
"chain_id": 1987, "chain_id": 1987,
"network_id": 1987 "network_id": 1987,
} "rpc": ["https://jsonrpc.egem.io/custom"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "EtherInc", "name": "EtherInc",
"short_name": "web", "short_name": "eti",
"chain": "WEB", "chain": "ETI",
"network": "mainnet", "network": "mainnet",
"chain_id": 101, "chain_id": 101,
"network_id": 1 "network_id": 1,
} "rpc": ["https://api.einc.io/jsonrpc/mainnet"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Ethersocial Network", "name": "Ethersocial Network",
"short_name": "esn", "short_name": "esn",
"chain": "ESN", "chain": "ESN",
"network": "mainnet", "network": "mainnet",
"chain_id": 31102, "chain_id": 31102,
"network_id": 1 "network_id": 1,
} "rpc": ["https://api.esn.gonspool.com"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Ethereum Social", "name": "Ethereum Social",
"short_name": "etsc", "short_name": "etsc",
"chain": "ETSC", "chain": "ETSC",
"network": "mainnet", "network": "mainnet",
"chain_id": 28, "chain_id": 28,
"network_id": 1 "network_id": 1,
} "rpc": [],
"faucets": []
}

View File

@ -1,8 +1,11 @@
{ {
"name": "Expanse Network", "name": "Expanse Network",
"short_name": "exp", "short_name": "exp",
"chain": "EXP", "chain": "EXP",
"network": "mainnet", "network": "mainnet",
"chain_id": 2, "chain_id": 2,
"network_id": 1 "network_id": 1,
} "rpc": ["https://node.expanse.tech"],
"faucets": [],
"info_url": "https://expanse.tech"
}

View File

@ -1,8 +1,10 @@
{ {
"name": "GoChain", "name": "GoChain",
"short_name": "go", "short_name": "go",
"chain": "GO", "chain": "GO",
"network": "mainnet", "network": "mainnet",
"chain_id": 60, "chain_id": 60,
"network_id": 60 "network_id": 60,
} "rpc": ["https://rpc.gochain.io/"],
"faucets": []
}

View File

@ -1,8 +1,18 @@
{ {
"name": "Ethereum Testnet Görli", "name": "Ethereum Testnet Görli",
"short_name": "gor", "short_name": "gor",
"chain": "ETH", "chain": "ETH",
"network": "goerli", "network": "goerli",
"chain_id": 5, "chain_id": 5,
"network_id": 5 "network_id": 5,
} "rpc": [
"https://rpc.goerli.mudit.blog/",
"https://rpc.slock.it/goerli ",
"https://goerli.prylabs.net/"
],
"faucets": [
"https://goerli-faucet.slock.it/?address=${ADDRESS}",
"https://faucet.goerli.mudit.blog"
],
"info_url": "https://goerli.net/#about"
}

10
_data/chains/hpb.json Normal file
View File

@ -0,0 +1,10 @@
{
"name": "High Performance Blockchain",
"short_name": "hpb",
"chain": "HPB",
"network": "mainnet",
"chain_id": 269,
"network_id": 269,
"rpc": ["https://node.hpb.blue"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "IOLite", "name": "IOLite",
"short_name": "ilt", "short_name": "ilt",
"chain": "ILT", "chain": "ILT",
"network": "mainnet", "network": "mainnet",
"chain_id": 18289463, "chain_id": 18289463,
"network_id": 18289463 "network_id": 18289463,
} "rpc": ["https://net.iolite.io"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Ethereum Classic Testnet Kotti", "name": "Ethereum Classic Testnet Kotti",
"short_name": "kot", "short_name": "kot",
"chain": "ETC", "chain": "ETC",
"network": "kotti", "network": "kotti",
"chain_id": 6, "chain_id": 6,
"network_id": 6 "network_id": 6,
} "rpc": [],
"faucets": []
}

14
_data/chains/kovan.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "Ethereum Testnet Kovan",
"short_name": "kov",
"chain": "ETH",
"network": "kovan",
"chain_id": 42,
"network_id": 42,
"rpc": ["https://kovan.infura.io/v3/${INFURA_API_KEY}"],
"faucets": [
"https://faucet.kovan.network",
"https://gitter.im/kovan-testnet/faucet"
],
"info_url": "https://kovan-testnet.github.io/website"
}

View File

@ -0,0 +1,10 @@
{
"name": "Lisinski",
"short_name": "lisinski",
"chain": "CRO",
"network": "mainnet",
"chain_id": 385,
"network_id": 385,
"rpc": ["https://rpc-bitfalls1.lisinski.online"],
"faucets": ["https://pipa.lisinski.online"]
}

View File

@ -0,0 +1,10 @@
{
"name": "Metadium Mainnet",
"short_name": "meta",
"chain": "META",
"network": "mainnet",
"chain_id": 11,
"network_id": 11,
"rpc": ["https://api.metadium.com/prod"],
"faucets": []
}

View File

@ -0,0 +1,10 @@
{
"name": "Metadium Testnet",
"short_name": "kal",
"chain": "META",
"network": "testnet",
"chain_id": 12,
"network_id": 12,
"rpc": ["https://api.metadium.com/dev"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Mix", "name": "Mix",
"short_name": "mix", "short_name": "mix",
"chain": "MIX", "chain": "MIX",
"network": "mainnet", "network": "mainnet",
"chain_id": 76, "chain_id": 76,
"network_id": 76 "network_id": 1,
} "rpc": ["https://rpc2.mix-blockchain.org:8647"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Musicoin", "name": "Musicoin",
"short_name": "music", "short_name": "music",
"chain": "MUSIC", "chain": "MUSIC",
"network": "mainnet", "network": "mainnet",
"chain_id": 7762959, "chain_id": 7762959,
"network_id": 7762959 "network_id": 7762959,
} "rpc": ["https://mewapi.musicoin.tw"],
"faucets": []
}

View File

@ -0,0 +1,10 @@
{
"name": "PepChain Churchill",
"short_name": "tpep",
"chain": "PEP",
"network": "testnet",
"chain_id": 13371337,
"network_id": 13371337,
"rpc": ["https://churchill-rpc.pepchain.io/"],
"faucets": []
}

View File

@ -1,9 +1,10 @@
{ {
"name": "Pirl", "name": "Pirl",
"short_name": "pirl", "short_name": "pirl",
"chain": "PIRL", "chain": "PIRL",
"network": "mainnet", "network": "mainnet",
"chain_id": 3125659152, "chain_id": 3125659152,
"network_id": 3125659152 "network_id": 3125659152,
} "rpc": ["https://wallrpc.pirl.io"],
"faucets": []
}

View File

@ -1,8 +1,11 @@
{ {
"name": "POA Network Core", "name": "POA Network Core",
"short_name": "skl", "short_name": "skl",
"chain": "POA", "chain": "POA",
"network": "core", "network": "core",
"chain_id": 99, "chain_id": 99,
"network_id": 2 "network_id": 2,
} "rpc": ["https://core.poa.network"],
"faucets": [],
"info_url": "https://poa.network"
}

View File

@ -1,8 +1,11 @@
{ {
"name": "POA Network Sokol", "name": "POA Network Sokol",
"short_name": "poa", "short_name": "poa",
"chain": "POA", "chain": "POA",
"network": "sokol", "network": "sokol",
"chain_id": 77, "chain_id": 77,
"network_id": 1 "network_id": 1,
} "rpc": ["https://sokol.poa.network"],
"faucets": ["https://faucet-sokol.herokuapp.com"],
"info_url": "https://poa.network"
}

View File

@ -1,8 +1,11 @@
{ {
"name": "Ethereum Testnet Rinkeby", "name": "Ethereum Testnet Rinkeby",
"short_name": "rin", "short_name": "rin",
"chain": "ETH", "chain": "ETH",
"network": "rinkeby", "network": "rinkeby",
"chain_id": 4, "chain_id": 4,
"network_id": 4 "network_id": 4,
} "rpc": ["https://rinkeby.infura.io/v3/${INFURA_API_KEY}"],
"faucets": ["https://faucet.rinkeby.io"],
"info_url": "https://www.rinkeby.io"
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Rootstock Mainnet", "name": "RSK Mainnet",
"short_name": "rsk", "short_name": "rsk",
"chain": "RSK", "chain": "RSK",
"network": "mainnet", "network": "mainnet",
"chain_id": 30, "chain_id": 30,
"network_id": 1 "network_id": 775,
} "rpc": ["https://public-node.rsk.co/", "https://mycrypto.rsk.co/"],
"faucets": []
}

View File

@ -1,8 +1,13 @@
{ {
"name": "Rootstock Testnet", "name": "RSK Testnet",
"short_name": "trsk", "short_name": "trsk",
"chain": "RSK", "chain": "RSK",
"network": "testnet", "network": "testnet",
"chain_id": 30, "chain_id": 31,
"network_id": 2 "network_id": 8052,
} "rpc": [
"https://public-node.testnet.rsk.co/",
"https://mycrypto.testnet.rsk.co/"
],
"faucets": []
}

View File

@ -4,5 +4,8 @@
"chain": "ETH", "chain": "ETH",
"network": "ropsten", "network": "ropsten",
"chain_id": 3, "chain_id": 3,
"network_id": 3 "network_id": 3,
} "rpc": ["https://ropsten.infura.io/v3/${INFURA_API_KEY}"],
"faucets": ["https://faucet.ropsten.be?${ADDRESS}"],
"info_url": "https://github.com/ethereum/ropsten"
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Teslafunds", "name": "Teslafunds",
"short_name": "tsf", "short_name": "tsf",
"chain": "TSF", "chain": "TSF",
"network": "mainnet", "network": "mainnet",
"chain_id": 1856, "chain_id": 1856,
"network_id": 1856 "network_id": 1,
} "rpc": ["https://tsfapi.europool.me"],
"faucets": []
}

View File

@ -0,0 +1,10 @@
{
"name": "ThunderCore Mainnet",
"short_name": "TT",
"chain": "TT",
"network": "mainnet",
"chain_id": 108,
"network_id": 108,
"rpc": ["https://mainnet-rpc.thundercore.com"],
"faucets": ["https://faucet-testnet.thundercore.com"]
}

View File

@ -0,0 +1,10 @@
{
"name": "ThunderCore Testnet",
"short_name": "TST",
"chain": "TST",
"network": "testnet",
"chain_id": 18,
"network_id": 18,
"rpc": ["https://testnet-rpc.thundercore.com:8544"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "TomoChain", "name": "TomoChain",
"short_name": "tomo", "short_name": "tomo",
"chain": "TOMO", "chain": "TOMO",
"network": "mainnet", "network": "mainnet",
"chain_id": 88, "chain_id": 88,
"network_id": 88 "network_id": 88,
} "rpc": ["https://core.tomocoin.io"],
"faucets": []
}

View File

@ -4,5 +4,7 @@
"chain": "UBQ", "chain": "UBQ",
"network": "mainnet", "network": "mainnet",
"chain_id": 8, "chain_id": 8,
"network_id": 1 "network_id": 1,
} "rpc": ["https://pyrus2.ubiqscan.io"],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Ubiq Network Testnet", "name": "Ubiq Network Testnet",
"short_name": "tubq", "short_name": "tubq",
"chain": "UBQ", "chain": "UBQ",
"network": "mainnet", "network": "mainnet",
"chain_id": 9, "chain_id": 9,
"network_id": 2 "network_id": 2,
} "rpc": [],
"faucets": []
}

View File

@ -1,8 +1,10 @@
{ {
"name": "Webchain", "name": "Webchain",
"short_name": "web", "short_name": "web",
"chain": "WEB", "chain": "WEB",
"network": "mainnet", "network": "mainnet",
"chain_id": 101, "chain_id": 24484,
"network_id": 37129 "network_id": 37129,
} "rpc": ["https://node1.webchain.network"],
"faucets": []
}

View File

@ -1,8 +1,11 @@
{ {
"name": "xDAI Chain", "name": "xDAI Chain",
"short_name": "dai", "short_name": "xdai",
"chain": "DAI", "chain": "XDAI",
"network": "mainnet", "network": "mainnet",
"chain_id": 100, "chain_id": 100,
"network_id": 1 "network_id": 1,
} "rpc": ["https://dai.poa.network"],
"faucets": [],
"info_url": "https://forum.poa.network/c/xdai-chain"
}

View File

@ -8,5 +8,3 @@ nav_order: 20
Information about all of the EVM powered networks. Information about all of the EVM powered networks.
Get involved in the [Github repo](https://github.com/ethereum-lists/chains) to add your network info and improve this resource. Get involved in the [Github repo](https://github.com/ethereum-lists/chains) to add your network info and improve this resource.
We are propsing that a link get added to [EIP-155](https://eips.ethereum.org/EIPS/eip-155) to this site. See [PR 1703](https://github.com/ethereum/EIPs/pull/1703).

View File

@ -12,6 +12,7 @@ List of chains in block format. You can link directly to each section using the
{% assign chain = json[1] %} {% assign chain = json[1] %}
{% assign chainlink = chain.name | downcase | replace: " ", "-" | append: "-" | append: chain.short_name | append: "-" | append: chain.network_id %} {% assign chainlink = chain.name | downcase | replace: " ", "-" | append: "-" | append: chain.short_name | append: "-" | append: chain.network_id %}
<a name="{{ chainlink }}"/> <a name="{{ chainlink }}"/>
<h2><a href="#{{ chainlink }}">{{ chain.name }} ({{ chain.short_name }})</a></h2> <h2><a href="#{{ chainlink }}">{{ chain.name }} ({{ chain.short_name }})</a></h2>
<ul> <ul>
<li>Short Name: {{ chain.short_name }}</li> <li>Short Name: {{ chain.short_name }}</li>