2018-12-20 20:09:37 +00:00
|
|
|
---
|
|
|
|
layout: none
|
|
|
|
permalink: chains.json
|
|
|
|
---
|
2021-02-11 10:23:40 +00:00
|
|
|
[{% assign chains = site.data.chains | sort %}{% for json in chains %}{% if json[0] != "deprecated" %}{% assign chain = json[1] %}
|
2019-04-11 05:37:43 +00:00
|
|
|
{
|
|
|
|
"name": "{{ chain.name }}",
|
2019-05-22 20:47:45 +00:00
|
|
|
"chainId": {{ chain.chainId }},
|
|
|
|
"shortName": "{{ chain.shortName }}",
|
2019-04-11 05:37:43 +00:00
|
|
|
"chain": "{{ chain.chain }}",
|
|
|
|
"network": "{{ chain.network }}",
|
2019-05-22 20:47:45 +00:00
|
|
|
"networkId": {{ chain.networkId }},
|
|
|
|
"nativeCurrency": {"name":"{{chain.nativeCurrency["name"]}}","symbol":"{{chain.nativeCurrency["symbol"]}}","decimals":{{chain.nativeCurrency["decimals"]}}},
|
|
|
|
"rpc": [{% for rpc in chain.rpc %}"{{ rpc }}"{% unless forloop.last %},{% endunless %}{%endfor%}],
|
2019-05-20 23:37:46 +00:00
|
|
|
"faucets": [{% for faucet in chain.faucets %}"{{ faucet }}"{% unless forloop.last %},{% endunless %}{%endfor%}],
|
2021-04-12 08:51:18 +00:00
|
|
|
"explorers": [{% for explorer in chain.explorers %}{"name":"{{explorer.name}}","url":"{{explorer.url}}"{% if explorer.icon != null %},"icon":"{{explorer.icon}}"{% endif %},"standard":"{{explorer.standard}}"}{% unless forloop.last %},{% endunless %}{%endfor%}],
|
2019-05-22 20:47:45 +00:00
|
|
|
"infoURL": "{{ chain.infoURL }}"
|
2021-02-11 10:23:40 +00:00
|
|
|
}{% unless forloop.last %},{% endunless %}{% endif %}{% endfor %}
|
2019-05-20 23:37:46 +00:00
|
|
|
]
|