mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
20 lines
1.1 KiB
JSON
20 lines
1.1 KiB
JSON
---
|
|
layout: none
|
|
permalink: chains.json
|
|
---
|
|
[{% 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%}],
|
|
"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 }}"
|
|
}{% unless forloop.last %},{% endunless %}{% endif %}{% endfor %}
|
|
]
|