chains/index.md
ligi 150aa21bd1
Add nativeCurrency - closes #66 and add chains_mini.json
also improves #61 - at least now mainnet is on top again ;-)
2019-05-22 23:41:52 +02:00

35 lines
785 B
Markdown

---
layout: home
title: Home
nav_order: 1
---
# EVM Networks
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.
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>
{% assign chains = site.data.chains | sort %}
{% for json in chains %}
{% assign chain = json[1] %}
<tr>
<td>{{ chain.chainId }}</td>
<td>{{ chain.name }}</td>
<td>{{ chain.shortName }}</td>
<td>{{ chain.chain }}</td>
<td>{{ chain.network }}</td>
<td>{{ chain.networkId }}</td>
</tr>
{% endfor %}
</table>