2018-12-20 20:09:37 +00:00
---
layout: home
2019-01-25 18:28:05 +00:00
title: Home
nav_order: 1
2018-12-20 20:09:37 +00:00
---
# EVM Networks
2019-04-11 05:37:43 +00:00
A list of EVM networks. Wallets and Web3 middleware providers should be able to use the appropriate Chain ID and Network ID to connect to the correct chain.
2018-12-20 20:09:37 +00:00
This table is also available as a JSON feed at [chains.json ](/chains.json ).
< table >
< tr >
< th > Chain ID< / th >
< th > Name< / th >
< th > Short Name< / th >
< th > Chain< / th >
< th > Network< / th >
< th > Network ID< / th >
< / tr >
2019-04-11 05:37:43 +00:00
{% for json in site.data.chains %}
{% assign chain = json[1] %}
2018-12-20 20:09:37 +00:00
< tr >
< td > {{ chain.chain_id }}< / td >
< td > {{ chain.name }}< / td >
< td > {{ chain.short_name }}< / td >
< td > {{ chain.chain }}< / td >
< td > {{ chain.network }}< / td >
< td > {{ chain.network_id }}< / td >
< / tr >
{% endfor %}
2019-04-24 15:52:17 +00:00
< / table >