chains/chains.json

20 lines
1.1 KiB
JSON
Raw Normal View History

---
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] %}
{
"name": "{{ chain.name }}",
"chainId": {{ chain.chainId }},
"shortName": "{{ chain.shortName }}",
"chain": "{{ chain.chain }}",
"network": "{{ chain.network }}",
"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%}],
"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%}],
"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
]