mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
Merge branch 'ethereum-lists:master' into master
This commit is contained in:
commit
1c59849153
7
.github/dependabot.yml
vendored
Normal file
7
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: gradle
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
open-pull-requests-limit: 3
|
35
.github/workflows/build_and_deploy.yml
vendored
Normal file
35
.github/workflows/build_and_deploy.yml
vendored
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
name: Build and Deploy
|
||||||
|
on: [push, pull_request]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2.3.1
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
./gradlew run
|
||||||
|
|
||||||
|
# deploy to github pages only when on master
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: build
|
||||||
|
steps:
|
||||||
|
- name: Extract branch name
|
||||||
|
shell: bash
|
||||||
|
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
|
||||||
|
id: extract_branch
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2.3.1
|
||||||
|
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
./gradlew run
|
||||||
|
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
||||||
|
- name: Deploy
|
||||||
|
uses: JamesIves/github-pages-deploy-action@4.1.4
|
||||||
|
with:
|
||||||
|
branch: gh-pages
|
||||||
|
folder: output
|
||||||
|
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ _site
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.env
|
.env
|
||||||
node_modules
|
node_modules
|
||||||
|
.idea
|
||||||
|
|
24
404.html
24
404.html
|
@ -1,24 +0,0 @@
|
||||||
---
|
|
||||||
layout: default
|
|
||||||
---
|
|
||||||
|
|
||||||
<style type="text/css" media="screen">
|
|
||||||
.container {
|
|
||||||
margin: 10px auto;
|
|
||||||
max-width: 600px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
margin: 30px 0;
|
|
||||||
font-size: 4em;
|
|
||||||
line-height: 1;
|
|
||||||
letter-spacing: -1px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<h1>404</h1>
|
|
||||||
|
|
||||||
<p><strong>Page not found :(</strong></p>
|
|
||||||
<p>The requested page could not be found.</p>
|
|
||||||
</div>
|
|
31
Gemfile
31
Gemfile
|
@ -1,31 +0,0 @@
|
||||||
source "https://rubygems.org"
|
|
||||||
|
|
||||||
# Hello! This is where you manage which Jekyll version is used to run.
|
|
||||||
# When you want to use a different version, change it below, save the
|
|
||||||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
|
|
||||||
#
|
|
||||||
# bundle exec jekyll serve
|
|
||||||
#
|
|
||||||
# This will help ensure the proper Jekyll version is running.
|
|
||||||
# Happy Jekylling!
|
|
||||||
gem "jekyll", "~> 3.8.5"
|
|
||||||
|
|
||||||
# This is the default theme for new Jekyll sites. You may change this to anything you like.
|
|
||||||
# gem "minima", "~> 2.0"
|
|
||||||
gem "just-the-docs"
|
|
||||||
|
|
||||||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
|
||||||
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
|
||||||
# gem "github-pages", group: :jekyll_plugins
|
|
||||||
|
|
||||||
# If you have any plugins, put them here!
|
|
||||||
group :jekyll_plugins do
|
|
||||||
gem "jekyll-feed", "~> 0.6"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
||||||
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
||||||
|
|
||||||
# Performance-booster for watching directories on Windows
|
|
||||||
gem "wdm", "~> 0.1.0" if Gem.win_platform?
|
|
||||||
|
|
72
Gemfile.lock
72
Gemfile.lock
|
@ -1,72 +0,0 @@
|
||||||
GEM
|
|
||||||
remote: https://rubygems.org/
|
|
||||||
specs:
|
|
||||||
addressable (2.5.2)
|
|
||||||
public_suffix (>= 2.0.2, < 4.0)
|
|
||||||
colorator (1.1.0)
|
|
||||||
concurrent-ruby (1.1.4)
|
|
||||||
em-websocket (0.5.1)
|
|
||||||
eventmachine (>= 0.12.9)
|
|
||||||
http_parser.rb (~> 0.6.0)
|
|
||||||
eventmachine (1.2.7)
|
|
||||||
ffi (1.9.25)
|
|
||||||
forwardable-extended (2.6.0)
|
|
||||||
http_parser.rb (0.6.0)
|
|
||||||
i18n (0.9.5)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
jekyll (3.8.5)
|
|
||||||
addressable (~> 2.4)
|
|
||||||
colorator (~> 1.0)
|
|
||||||
em-websocket (~> 0.5)
|
|
||||||
i18n (~> 0.7)
|
|
||||||
jekyll-sass-converter (~> 1.0)
|
|
||||||
jekyll-watch (~> 2.0)
|
|
||||||
kramdown (~> 1.14)
|
|
||||||
liquid (~> 4.0)
|
|
||||||
mercenary (~> 0.3.3)
|
|
||||||
pathutil (~> 0.9)
|
|
||||||
rouge (>= 1.7, < 4)
|
|
||||||
safe_yaml (~> 1.0)
|
|
||||||
jekyll-feed (0.11.0)
|
|
||||||
jekyll (~> 3.3)
|
|
||||||
jekyll-sass-converter (1.5.2)
|
|
||||||
sass (~> 3.4)
|
|
||||||
jekyll-watch (2.1.2)
|
|
||||||
listen (~> 3.0)
|
|
||||||
just-the-docs (0.2.1)
|
|
||||||
jekyll (~> 3.8.5)
|
|
||||||
rake (~> 12.3.1)
|
|
||||||
kramdown (1.17.0)
|
|
||||||
liquid (4.0.1)
|
|
||||||
listen (3.1.5)
|
|
||||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
||||||
rb-inotify (~> 0.9, >= 0.9.7)
|
|
||||||
ruby_dep (~> 1.2)
|
|
||||||
mercenary (0.3.6)
|
|
||||||
pathutil (0.16.2)
|
|
||||||
forwardable-extended (~> 2.6)
|
|
||||||
public_suffix (3.0.3)
|
|
||||||
rake (12.3.3)
|
|
||||||
rb-fsevent (0.10.3)
|
|
||||||
rb-inotify (0.10.0)
|
|
||||||
ffi (~> 1.0)
|
|
||||||
rouge (3.3.0)
|
|
||||||
ruby_dep (1.5.0)
|
|
||||||
safe_yaml (1.0.4)
|
|
||||||
sass (3.7.2)
|
|
||||||
sass-listen (~> 4.0.0)
|
|
||||||
sass-listen (4.0.0)
|
|
||||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
||||||
rb-inotify (~> 0.9, >= 0.9.7)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
ruby
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
jekyll (~> 3.8.5)
|
|
||||||
jekyll-feed (~> 0.6)
|
|
||||||
just-the-docs
|
|
||||||
tzinfo-data
|
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
2.1.4
|
|
21
README.md
21
README.md
|
@ -53,12 +53,32 @@ where:
|
||||||
* width and height are optional - but when one is there then the other must be there also
|
* width and height are optional - but when one is there then the other must be there also
|
||||||
* format is either "png", "jpg" or "svg"
|
* format is either "png", "jpg" or "svg"
|
||||||
|
|
||||||
|
If the chain is an L2 or a shard of another chain you can link it to the parent chain like this:
|
||||||
|
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
...
|
||||||
|
"parent": {
|
||||||
|
"type" : "L2",
|
||||||
|
"chain": "eip155-1",
|
||||||
|
"bridges": [ {"url":"https://bridge.arbitrum.io"} ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
where you need to specify type 2 and the reference to an existing parent. The field about bridges is optional.
|
||||||
|
|
||||||
## Aggregation
|
## Aggregation
|
||||||
|
|
||||||
There are also aggregated json files with all chains automatically assembled:
|
There are also aggregated json files with all chains automatically assembled:
|
||||||
* https://chainid.network/chains.json
|
* https://chainid.network/chains.json
|
||||||
* https://chainid.network/chains_mini.json (miniaturized - fewer fields for smaller filesize)
|
* https://chainid.network/chains_mini.json (miniaturized - fewer fields for smaller filesize)
|
||||||
|
|
||||||
|
## Collision management
|
||||||
|
|
||||||
|
If different chains have the same chainID we list the one with the oldest genesis.
|
||||||
|
|
||||||
## Usages
|
## Usages
|
||||||
|
|
||||||
* [chainlist.org](https://chainlist.org) or [networklist-org.vercel.app](https://networklist-org.vercel.app) as a staging version with a more up-to-date list
|
* [chainlist.org](https://chainlist.org) or [networklist-org.vercel.app](https://networklist-org.vercel.app) as a staging version with a more up-to-date list
|
||||||
|
@ -66,4 +86,5 @@ There are also aggregated json files with all chains automatically assembled:
|
||||||
* [WallETH](https://walleth.org)
|
* [WallETH](https://walleth.org)
|
||||||
* [TREZOR](https://trezor.io)
|
* [TREZOR](https://trezor.io)
|
||||||
* [networks.vercel.app](https://networks.vercel.app)
|
* [networks.vercel.app](https://networks.vercel.app)
|
||||||
|
* [eth-chains](https://github.com/taylorjdawson/eth-chains)
|
||||||
* Your project - contact us to add it here!
|
* Your project - contact us to add it here!
|
||||||
|
|
28
_config.yml
28
_config.yml
|
@ -1,28 +0,0 @@
|
||||||
title: EVM Networks
|
|
||||||
description: >- # this means to ignore newlines until "baseurl:"
|
|
||||||
A site to share information about EVM powered networks, especially their ChainID and NetworkID.
|
|
||||||
baseurl: "" # the subpath of your site, e.g. /blog
|
|
||||||
url: "https://chainid.network" # the base hostname & protocol for your site, e.g. http://example.com
|
|
||||||
|
|
||||||
# Build settings
|
|
||||||
markdown: kramdown
|
|
||||||
|
|
||||||
kramdown:
|
|
||||||
parse_block_html: true
|
|
||||||
|
|
||||||
# theme: just-the-docs
|
|
||||||
plugins:
|
|
||||||
- jekyll-feed
|
|
||||||
|
|
||||||
# --- just-the-docs theme ---
|
|
||||||
|
|
||||||
# Enable or disable the site search
|
|
||||||
search_enabled: false
|
|
||||||
|
|
||||||
# Aux links for the upper right navigation
|
|
||||||
aux_links:
|
|
||||||
"GitHub: ethereum-lists/chains":
|
|
||||||
- "//github.com/ethereum-lists/chains"
|
|
||||||
|
|
||||||
# Color scheme currently only supports "dark" or nil (default)
|
|
||||||
color_scheme: nil
|
|
|
@ -12,5 +12,11 @@
|
||||||
"infoURL": "https://optimism.io",
|
"infoURL": "https://optimism.io",
|
||||||
"shortName": "oeth",
|
"shortName": "oeth",
|
||||||
"chainId": 10,
|
"chainId": 10,
|
||||||
"networkId": 10
|
"networkId": 10,
|
||||||
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "etherscan",
|
||||||
|
"url": "https://optimistic.etherscan.io",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"https://dai.poa.network",
|
"https://dai.poa.network",
|
||||||
"ws://xdai.poanetwork.dev:8546"
|
"ws://xdai.poanetwork.dev:8546"
|
||||||
],
|
],
|
||||||
"faucets": [],
|
"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/","https://xdai-app.herokuapp.com/faucet"],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "xDAI",
|
"name": "xDAI",
|
||||||
"symbol": "xDAI",
|
"symbol": "xDAI",
|
||||||
|
@ -21,5 +21,11 @@
|
||||||
"shortName": "xdai",
|
"shortName": "xdai",
|
||||||
"chainId": 100,
|
"chainId": 100,
|
||||||
"networkId": 100,
|
"networkId": 100,
|
||||||
"slip44": 700
|
"slip44": 700,
|
||||||
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "blockscout",
|
||||||
|
"url": "https://blockscout.com/poa/xdai",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
|
21
_data/chains/eip155-10000.json
Normal file
21
_data/chains/eip155-10000.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "Smart Bitcoin Cash",
|
||||||
|
"chain": "smartBCH",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://smartbch.greyh.at",
|
||||||
|
"https://rpc-mainnet.smartbch.org",
|
||||||
|
"https://smartbch.fountainhead.cash/mainnet",
|
||||||
|
"https://smartbch.devops.cash/mainnet"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Bitcoin Cash",
|
||||||
|
"symbol": "BCH",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://smartbch.org/",
|
||||||
|
"shortName": "smartbch",
|
||||||
|
"chainId": 10000,
|
||||||
|
"networkId": 10000
|
||||||
|
}
|
19
_data/chains/eip155-100000.json
Normal file
19
_data/chains/eip155-100000.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Root",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://jrpc.mainnet.quarkchain.io:38391/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-r",
|
||||||
|
"chainId": 100000,
|
||||||
|
"networkId": 100000
|
||||||
|
}
|
28
_data/chains/eip155-100001.json
Normal file
28
_data/chains/eip155-100001.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 0",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39000/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s0",
|
||||||
|
"chainId": 100001,
|
||||||
|
"networkId": 100001,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/0",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-100002.json
Normal file
28
_data/chains/eip155-100002.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 1",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39001/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s1",
|
||||||
|
"chainId": 100002,
|
||||||
|
"networkId": 100002,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/1",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-100003.json
Normal file
28
_data/chains/eip155-100003.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 2",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39002/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s2",
|
||||||
|
"chainId": 100003,
|
||||||
|
"networkId": 100003,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/2",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-100004.json
Normal file
28
_data/chains/eip155-100004.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 3",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39003/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s3",
|
||||||
|
"chainId": 100004,
|
||||||
|
"networkId": 100004,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/3",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-100005.json
Normal file
28
_data/chains/eip155-100005.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 4",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39004/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s4",
|
||||||
|
"chainId": 100005,
|
||||||
|
"networkId": 100005,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/4",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-100006.json
Normal file
28
_data/chains/eip155-100006.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 5",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39005/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s5",
|
||||||
|
"chainId": 100006,
|
||||||
|
"networkId": 100006,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/5",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-100007.json
Normal file
28
_data/chains/eip155-100007.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 6",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39006/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s6",
|
||||||
|
"chainId": 100007,
|
||||||
|
"networkId": 100007,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/6",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-100008.json
Normal file
28
_data/chains/eip155-100008.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Mainnet Shard 7",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.mainnet.quarkchain.io:39007/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-s7",
|
||||||
|
"chainId": 100008,
|
||||||
|
"networkId": 100008,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-mainnet",
|
||||||
|
"url": "https://mainnet.quarkchain.io/7",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
19
_data/chains/eip155-10001.json
Normal file
19
_data/chains/eip155-10001.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "Smart Bitcoin Cash Testnet",
|
||||||
|
"chain": "smartBCHTest",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc-testnet.smartbch.org",
|
||||||
|
"https://smartbch.devops.cash/testnet"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Bitcoin Cash Test Token",
|
||||||
|
"symbol": "BCHT",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "http://smartbch.org/",
|
||||||
|
"shortName": "smartbchtest",
|
||||||
|
"chainId": 10001,
|
||||||
|
"networkId": 10001
|
||||||
|
}
|
|
@ -14,5 +14,6 @@
|
||||||
"infoURL": "https://evrice.com",
|
"infoURL": "https://evrice.com",
|
||||||
"shortName": "EVC",
|
"shortName": "EVC",
|
||||||
"chainId": 1010,
|
"chainId": 1010,
|
||||||
"networkId": 1010
|
"networkId": 1010,
|
||||||
|
"slip44": 1020
|
||||||
}
|
}
|
||||||
|
|
20
_data/chains/eip155-10101.json
Normal file
20
_data/chains/eip155-10101.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "Blockchain Genesis Mainnet",
|
||||||
|
"chain": "GEN",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://eu.mainnet.xixoio.com",
|
||||||
|
"https://us.mainnet.xixoio.com",
|
||||||
|
"https://asia.mainnet.xixoio.com"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "GEN",
|
||||||
|
"symbol": "GEN",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.xixoio.com/",
|
||||||
|
"shortName": "GEN",
|
||||||
|
"chainId": 10101,
|
||||||
|
"networkId": 10101
|
||||||
|
}
|
16
_data/chains/eip155-1022.json
Normal file
16
_data/chains/eip155-1022.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"name": "Sakura",
|
||||||
|
"chain": "Sakura",
|
||||||
|
"network": "sakura",
|
||||||
|
"rpc": [],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Sakura",
|
||||||
|
"symbol": "SKU",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://clover.finance/sakura",
|
||||||
|
"shortName": "sku",
|
||||||
|
"chainId": 1022,
|
||||||
|
"networkId": 1022
|
||||||
|
}
|
23
_data/chains/eip155-1028.json
Normal file
23
_data/chains/eip155-1028.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "BitTorrent Chain Testnet",
|
||||||
|
"chain": "BTTC",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://testrpc.bittorrentchain.io/"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "BitTorrent",
|
||||||
|
"symbol": "BTT",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://bittorrentchain.io/",
|
||||||
|
"shortName": "tbtt",
|
||||||
|
"chainId": 1028,
|
||||||
|
"networkId": 1028,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "testbttcscan",
|
||||||
|
"url": "https://testscan.bittorrentchain.io/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
25
_data/chains/eip155-106.json
Normal file
25
_data/chains/eip155-106.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "Velas EVM Mainnet",
|
||||||
|
"chain": "Velas",
|
||||||
|
"network": "mainnet",
|
||||||
|
"icon": "velas",
|
||||||
|
"rpc": [
|
||||||
|
"https://evmexplorer.velas.com/rpc",
|
||||||
|
"https://explorer.velas.com/rpc"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Velas",
|
||||||
|
"symbol": "VLX",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://velas.com",
|
||||||
|
"shortName": "vlx",
|
||||||
|
"chainId": 106,
|
||||||
|
"networkId": 106,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Velas Explorer",
|
||||||
|
"url": "https://evmexplorer.velas.com",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
|
@ -16,5 +16,6 @@
|
||||||
"infoURL": "https://thundercore.com",
|
"infoURL": "https://thundercore.com",
|
||||||
"shortName": "TT",
|
"shortName": "TT",
|
||||||
"chainId": 108,
|
"chainId": 108,
|
||||||
"networkId": 108
|
"networkId": 108,
|
||||||
|
"slip44": 1001
|
||||||
}
|
}
|
28
_data/chains/eip155-1088.json
Normal file
28
_data/chains/eip155-1088.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "Metis Andromeda Mainnet",
|
||||||
|
"chain": "ETH",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": ["https://andromeda.metis.io/?owner=1088"],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Metis",
|
||||||
|
"symbol": "METIS",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.metis.io",
|
||||||
|
"shortName": "metis-andromeda",
|
||||||
|
"chainId": 1088,
|
||||||
|
"networkId": 1088,
|
||||||
|
"explorers": [
|
||||||
|
{
|
||||||
|
"name": "blockscout",
|
||||||
|
"url": "https://andromeda-explorer.metis.io/",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"parent": {
|
||||||
|
"type": "L2",
|
||||||
|
"chain": "eip155-1",
|
||||||
|
"bridges": [{ "url": "https://bridge.metis.io" }]
|
||||||
|
}
|
||||||
|
}
|
19
_data/chains/eip155-110.json
Normal file
19
_data/chains/eip155-110.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "Proton Testnet",
|
||||||
|
"chain": "XPR",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://protontestnet.greymass.com/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Proton",
|
||||||
|
"symbol": "XPR",
|
||||||
|
"decimals": 4
|
||||||
|
},
|
||||||
|
"infoURL": "https://protonchain.com",
|
||||||
|
"shortName": "xpr",
|
||||||
|
"chainId": 110,
|
||||||
|
"networkId": 110
|
||||||
|
}
|
19
_data/chains/eip155-110000.json
Normal file
19
_data/chains/eip155-110000.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Root",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://jrpc.devnet.quarkchain.io:38391/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-r",
|
||||||
|
"chainId": 110000,
|
||||||
|
"networkId": 110000
|
||||||
|
}
|
28
_data/chains/eip155-110001.json
Normal file
28
_data/chains/eip155-110001.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 0",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39900/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s0",
|
||||||
|
"chainId": 110001,
|
||||||
|
"networkId": 110001,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/0",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-110002.json
Normal file
28
_data/chains/eip155-110002.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 1",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39901/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s1",
|
||||||
|
"chainId": 110002,
|
||||||
|
"networkId": 110002,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/1",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-110003.json
Normal file
28
_data/chains/eip155-110003.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 2",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39902/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s2",
|
||||||
|
"chainId": 110003,
|
||||||
|
"networkId": 110003,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/2",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-110004.json
Normal file
28
_data/chains/eip155-110004.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 3",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39903/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s3",
|
||||||
|
"chainId": 110004,
|
||||||
|
"networkId": 110004,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/3",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-110005.json
Normal file
28
_data/chains/eip155-110005.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 4",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39904/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s4",
|
||||||
|
"chainId": 110005,
|
||||||
|
"networkId": 110005,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/4",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-110006.json
Normal file
28
_data/chains/eip155-110006.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 5",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39905/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s5",
|
||||||
|
"chainId": 110006,
|
||||||
|
"networkId": 110006,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/5",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-110007.json
Normal file
28
_data/chains/eip155-110007.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 6",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39906/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s6",
|
||||||
|
"chainId": 110007,
|
||||||
|
"networkId": 110007,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/6",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
28
_data/chains/eip155-110008.json
Normal file
28
_data/chains/eip155-110008.json
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"name": "QuarkChain Devnet Shard 7",
|
||||||
|
"chain": "QuarkChain",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"http://eth-jrpc.devnet.quarkchain.io:39907/"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "QKC",
|
||||||
|
"symbol": "QKC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.quarkchain.io/",
|
||||||
|
"shortName": "qkc-d-s7",
|
||||||
|
"chainId": 110008,
|
||||||
|
"networkId": 110008,
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-110000",
|
||||||
|
"type": "shard"
|
||||||
|
},
|
||||||
|
"explorers": [{
|
||||||
|
"name": "quarkchain-devnet",
|
||||||
|
"url": "https://devnet.quarkchain.io/7",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
21
_data/chains/eip155-111.json
Normal file
21
_data/chains/eip155-111.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "EtherLite Chain",
|
||||||
|
"chain": "ETL",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.etherlite.org"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://etherlite.org/faucets"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "EtherLite",
|
||||||
|
"symbol": "ETL",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://etherlite.org",
|
||||||
|
"shortName": "ETL",
|
||||||
|
"chainId": 111,
|
||||||
|
"networkId": 111,
|
||||||
|
"icon": "etherlite"
|
||||||
|
}
|
16
_data/chains/eip155-11297108099.json
Normal file
16
_data/chains/eip155-11297108099.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"name": "Palm Testnet",
|
||||||
|
"chain": "Palm",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "PALM",
|
||||||
|
"symbol": "PALM",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://palm.io",
|
||||||
|
"shortName": "tpalm",
|
||||||
|
"chainId": 11297108099,
|
||||||
|
"networkId": 11297108099
|
||||||
|
}
|
16
_data/chains/eip155-11297108109.json
Normal file
16
_data/chains/eip155-11297108109.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"name": "Palm Mainnet",
|
||||||
|
"chain": "Palm",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "PALM",
|
||||||
|
"symbol": "PALM",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://palm.io",
|
||||||
|
"shortName": "palm",
|
||||||
|
"chainId": 11297108109,
|
||||||
|
"networkId": 11297108109
|
||||||
|
}
|
|
@ -2,7 +2,10 @@
|
||||||
"name": "MathChain",
|
"name": "MathChain",
|
||||||
"chain": "MATH",
|
"chain": "MATH",
|
||||||
"network": "mainnet",
|
"network": "mainnet",
|
||||||
"rpc": [],
|
"rpc": [
|
||||||
|
"https://mathchain-asia.maiziqianbao.net/rpc",
|
||||||
|
"https://mathchain-us.maiziqianbao.net/rpc"
|
||||||
|
],
|
||||||
"faucets": [],
|
"faucets": [],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "MathChain",
|
"name": "MathChain",
|
||||||
|
|
25
_data/chains/eip155-12051.json
Normal file
25
_data/chains/eip155-12051.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "Singularity ZERO Testnet",
|
||||||
|
"chain": "ZERO",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://betaenv.singularity.gold:18545"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://nft.singularity.gold"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "ZERO",
|
||||||
|
"symbol": "tZERO",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.singularity.gold",
|
||||||
|
"shortName": "tZERO",
|
||||||
|
"chainId": 12051,
|
||||||
|
"networkId": 12051,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "zeroscan",
|
||||||
|
"url": "https://betaenv.singularity.gold:18002",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
26
_data/chains/eip155-12052.json
Normal file
26
_data/chains/eip155-12052.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"name": "Singularity ZERO Mainnet",
|
||||||
|
"chain": "ZERO",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://zerorpc.singularity.gold"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://zeroscan.singularity.gold"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "ZERO",
|
||||||
|
"symbol": "ZERO",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.singularity.gold",
|
||||||
|
"shortName": "ZERO",
|
||||||
|
"chainId": 12052,
|
||||||
|
"networkId": 12052,
|
||||||
|
"slip44": 621,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "zeroscan",
|
||||||
|
"url": "https://zeroscan.singularity.gold",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
25
_data/chains/eip155-1213.json
Normal file
25
_data/chains/eip155-1213.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "Popcateum Mainnet",
|
||||||
|
"chain": "POPCATEUM",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://dataseed.popcateum.org"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Popcat",
|
||||||
|
"symbol": "POP",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://popcateum.org",
|
||||||
|
"shortName": "popcat",
|
||||||
|
"chainId": 1213,
|
||||||
|
"networkId": 1213,
|
||||||
|
"explorers": [
|
||||||
|
{
|
||||||
|
"name": "popcateum explorer",
|
||||||
|
"url": "https://explorer.popcateum.org",
|
||||||
|
"standard": "none"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
18
_data/chains/eip155-123.json
Normal file
18
_data/chains/eip155-123.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "Fuse Sparknet",
|
||||||
|
"chain": "fuse",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.fusespark.io"
|
||||||
|
],
|
||||||
|
"faucets": ["https://get.fusespark.io"],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Spark",
|
||||||
|
"symbol": "SPARK",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet",
|
||||||
|
"shortName": "spark",
|
||||||
|
"chainId": 123,
|
||||||
|
"networkId": 123
|
||||||
|
}
|
12
_data/chains/eip155-124.json
Normal file
12
_data/chains/eip155-124.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"name": "Decentralized Web Mainnet",
|
||||||
|
"shortName": "dwu",
|
||||||
|
"chain": "DWU",
|
||||||
|
"network": "mainnet",
|
||||||
|
"chainId": 124,
|
||||||
|
"networkId": 124,
|
||||||
|
"rpc": ["https://decentralized-web.tech/dw_rpc.php"],
|
||||||
|
"faucets": [],
|
||||||
|
"infoURL": "https://decentralized-web.tech/dw_chain.php",
|
||||||
|
"nativeCurrency": {"name":"Decentralized Web Utility","symbol":"DWU","decimals":18}
|
||||||
|
}
|
17
_data/chains/eip155-127.json
Normal file
17
_data/chains/eip155-127.json
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"name": "Factory 127 Mainnet",
|
||||||
|
"chain": "FETH",
|
||||||
|
"network": "factory127 mainnet",
|
||||||
|
"rpc": [],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Factory 127 Token",
|
||||||
|
"symbol": "FETH",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.factory127.com",
|
||||||
|
"shortName": "feth",
|
||||||
|
"chainId": 127,
|
||||||
|
"networkId": 127,
|
||||||
|
"slip44": 127
|
||||||
|
}
|
|
@ -6,14 +6,20 @@
|
||||||
"https://http-mainnet.hecochain.com",
|
"https://http-mainnet.hecochain.com",
|
||||||
"wss://ws-mainnet.hecochain.com"
|
"wss://ws-mainnet.hecochain.com"
|
||||||
],
|
],
|
||||||
"faucets": [],
|
"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "Huobi ECO Chain Native Token",
|
"name": "Huobi ECO Chain Native Token",
|
||||||
"symbol": "HT",
|
"symbol": "HT",
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://hecoinfo.com",
|
"infoURL": "https://www.hecochain.com",
|
||||||
"shortName": "heco",
|
"shortName": "heco",
|
||||||
"chainId": 128,
|
"chainId": 128,
|
||||||
"networkId": 128
|
"networkId": 128,
|
||||||
|
"slip44": 1010,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "hecoinfo",
|
||||||
|
"url": "https://hecoinfo.com",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
}
|
}
|
24
_data/chains/eip155-1280.json
Normal file
24
_data/chains/eip155-1280.json
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"name": "HALO Mainnet",
|
||||||
|
"chain": "HALO",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://nodes.halo.land"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "HALO",
|
||||||
|
"symbol": "HO",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://halo.land/#/",
|
||||||
|
"shortName": "HO",
|
||||||
|
"chainId": 1280,
|
||||||
|
"networkId": 1280,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "HALOexplorer",
|
||||||
|
"url": "https://browser.halo.land/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "Moonbeam Polkadot",
|
"name": "Moonbeam",
|
||||||
"chain": "MOON",
|
"chain": "MOON",
|
||||||
"network": "moonbeam",
|
"network": "moonbeam",
|
||||||
"rpc": [],
|
"rpc": [],
|
||||||
|
|
|
@ -1,16 +1,25 @@
|
||||||
{
|
{
|
||||||
"name": "Moonriver Kusama",
|
"name": "Moonriver",
|
||||||
"chain": "MOON",
|
"chain": "MOON",
|
||||||
"network": "moonriver",
|
"network": "moonriver",
|
||||||
"rpc": [],
|
"rpc": [
|
||||||
"faucets": [],
|
"https://rpc.moonriver.moonbeam.network",
|
||||||
|
"wss://wss.moonriver.moonbeam.network"
|
||||||
|
],
|
||||||
|
"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "River",
|
"name": "Moonriver",
|
||||||
"symbol": "RIVER",
|
"symbol": "MOVR",
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://moonbeam.network/networks/moonriver/",
|
"infoURL": "https://moonbeam.network/networks/moonriver/",
|
||||||
"shortName": "mriver",
|
"shortName": "mriver",
|
||||||
"chainId": 1285,
|
"chainId": 1285,
|
||||||
"networkId": 1285
|
"networkId": 1285,
|
||||||
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "blockscout",
|
||||||
|
"url": "https://blockscout.moonriver.moonbeam.network",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "Moonrock Rococo",
|
"name": "Moonrock",
|
||||||
"chain": "MOON",
|
"chain": "MOON",
|
||||||
"network": "moonrock",
|
"network": "moonrock",
|
||||||
"rpc": [],
|
"rpc": [],
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "Moonbeam Testnet Moonbase Alpha",
|
"name": "Moonbase Alpha",
|
||||||
"chain": "MOON",
|
"chain": "MOON",
|
||||||
"network": "moonbase",
|
"network": "moonbase",
|
||||||
"rpc": [
|
"rpc": [
|
||||||
|
|
16
_data/chains/eip155-1288.json
Normal file
16
_data/chains/eip155-1288.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"name": "Moonshadow",
|
||||||
|
"chain": "MOON",
|
||||||
|
"network": "moonshadow",
|
||||||
|
"rpc": [],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Moonshadow",
|
||||||
|
"symbol": "MSHD",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://docs.moonbeam.network/networks/overview/",
|
||||||
|
"shortName": "mshadow",
|
||||||
|
"chainId": 1288,
|
||||||
|
"networkId": 1288
|
||||||
|
}
|
|
@ -1,19 +1,27 @@
|
||||||
{
|
{
|
||||||
"name": "Ether-1",
|
"name": "Etho Protocol",
|
||||||
"chain": "ETHO",
|
"chain": "ETHO",
|
||||||
"network": "mainnet",
|
"network": "mainnet",
|
||||||
"rpc": [
|
"rpc": [
|
||||||
"https://rpc.ether1.org"
|
"https://rpc.ether1.org"
|
||||||
],
|
],
|
||||||
|
|
||||||
"faucets": [],
|
"faucets": [],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "Ether-1 Ether",
|
"name": "Etho Protocol",
|
||||||
"symbol": "ETHO",
|
"symbol": "ETHO",
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://ether1.org",
|
|
||||||
|
"infoURL": "https://ethoprotocol.com",
|
||||||
"shortName": "etho",
|
"shortName": "etho",
|
||||||
"chainId": 1313114,
|
"chainId": 1313114,
|
||||||
"networkId": 1313114,
|
"networkId": 1313114,
|
||||||
"slip44": 1313114
|
"slip44": 1313114,
|
||||||
}
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "blockscout",
|
||||||
|
"url": "https://explorer.ethoprotocol.com",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "NEAR MainNet",
|
"name": "Aurora MainNet",
|
||||||
"chain": "NEAR",
|
"chain": "NEAR",
|
||||||
"network": "mainnet",
|
"network": "mainnet",
|
||||||
"rpc": [
|
"rpc": [
|
||||||
|
"https://mainnet.aurora.dev"
|
||||||
],
|
],
|
||||||
"faucets": [
|
"faucets": [],
|
||||||
],
|
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "NEAR",
|
"name": "Ether",
|
||||||
"symbol": "NEAR",
|
"symbol": "aETH",
|
||||||
"decimals": 24
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://near.org/",
|
"infoURL": "https://aurora.dev",
|
||||||
"shortName": "near",
|
"shortName": "aurora",
|
||||||
"chainId": 1313161554,
|
"chainId": 1313161554,
|
||||||
"networkId": 1313161554
|
"networkId": 1313161554
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "NEAR TestNet",
|
"name": "Aurora TestNet",
|
||||||
"chain": "NEAR",
|
"chain": "NEAR",
|
||||||
"network": "testnet",
|
"network": "testnet",
|
||||||
"rpc": [
|
"rpc": [
|
||||||
|
"https://testnet.aurora.dev/"
|
||||||
],
|
],
|
||||||
"faucets": [
|
"faucets": [],
|
||||||
"https://wallet.testnet.near.org"
|
|
||||||
],
|
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "NEAR",
|
"name": "Ether",
|
||||||
"symbol": "tNEAR",
|
"symbol": "aETH",
|
||||||
"decimals": 24
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://near.org/",
|
"infoURL": "https://aurora.dev",
|
||||||
"shortName": "neart",
|
"shortName": "aurora-testnet",
|
||||||
"chainId": 1313161555,
|
"chainId": 1313161555,
|
||||||
"networkId": 1313161555
|
"networkId": 1313161555
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "NEAR BetaNet",
|
"name": "Aurora BetaNet",
|
||||||
"chain": "NEAR",
|
"chain": "NEAR",
|
||||||
"network": "betanet",
|
"network": "betanet",
|
||||||
"rpc": [
|
"rpc": [
|
||||||
|
"https://betanet.aurora.dev/"
|
||||||
],
|
],
|
||||||
"faucets": [
|
"faucets": [],
|
||||||
],
|
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "NEAR",
|
"name": "Ether",
|
||||||
"symbol": "bNEAR",
|
"symbol": "aETH",
|
||||||
"decimals": 24
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://near.org/",
|
"infoURL": "https://aurora.dev",
|
||||||
"shortName": "nearb",
|
"shortName": "aurora-betanet",
|
||||||
"chainId": 1313161556,
|
"chainId": 1313161556,
|
||||||
"networkId": 1313161556
|
"networkId": 1313161556
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,29 @@
|
||||||
{
|
{
|
||||||
"name": "Matic Mainnet",
|
"name": "Polygon Mainnet",
|
||||||
"chain": "Matic",
|
"chain": "Polygon",
|
||||||
"network": "mainnet",
|
"network": "mainnet",
|
||||||
"rpc": [
|
"rpc": [
|
||||||
|
"https://polygon-rpc.com/",
|
||||||
"https://rpc-mainnet.matic.network",
|
"https://rpc-mainnet.matic.network",
|
||||||
"wss://ws-mainnet.matic.network"
|
"https://matic-mainnet.chainstacklabs.com",
|
||||||
|
"https://rpc-mainnet.maticvigil.com",
|
||||||
|
"https://rpc-mainnet.matic.quiknode.pro",
|
||||||
|
"https://matic-mainnet-full-rpc.bwarelabs.com"
|
||||||
],
|
],
|
||||||
"faucets": [],
|
"faucets": [],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "Matic",
|
"name": "MATIC",
|
||||||
"symbol": "MATIC",
|
"symbol": "MATIC",
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://matic.network/",
|
"infoURL": "https://polygon.technology/",
|
||||||
"shortName": "matic",
|
"shortName": "MATIC",
|
||||||
"chainId": 137,
|
"chainId": 137,
|
||||||
"networkId": 137
|
"networkId": 137,
|
||||||
|
"slip44": 966,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "polygonscan",
|
||||||
|
"url": "https://polygonscan.com/",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
|
18
_data/chains/eip155-142.json
Normal file
18
_data/chains/eip155-142.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "DAX CHAIN",
|
||||||
|
"chain": "DAX",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.prodax.io"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Prodax",
|
||||||
|
"symbol": "DAX",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://prodax.io/",
|
||||||
|
"shortName": "dax",
|
||||||
|
"chainId": 142,
|
||||||
|
"networkId": 142
|
||||||
|
}
|
|
@ -5,6 +5,7 @@
|
||||||
"rpc": [
|
"rpc": [
|
||||||
],
|
],
|
||||||
"faucets": [
|
"faucets": [
|
||||||
|
"https://faucet.towolabs.com"
|
||||||
],
|
],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "Coston Spark",
|
"name": "Coston Spark",
|
||||||
|
|
19
_data/chains/eip155-16000.json
Normal file
19
_data/chains/eip155-16000.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "MetaDot Mainnet",
|
||||||
|
"chain": "MTT",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://mainnet.metadot.network"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "MetaDot Token",
|
||||||
|
"symbol": "MTT",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://metadot.network",
|
||||||
|
"shortName": "mtt",
|
||||||
|
"chainId": 16000,
|
||||||
|
"networkId": 16000
|
||||||
|
}
|
||||||
|
|
21
_data/chains/eip155-16001.json
Normal file
21
_data/chains/eip155-16001.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "MetaDot Testnet",
|
||||||
|
"chain": "MTTTest",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://testnet.metadot.network"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://faucet.metadot.network/"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "MetaDot Token TestNet",
|
||||||
|
"symbol": "MTT-test",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://metadot.network",
|
||||||
|
"shortName": "mtttest",
|
||||||
|
"chainId": 16001,
|
||||||
|
"networkId": 16001
|
||||||
|
}
|
||||||
|
|
18
_data/chains/eip155-1618.json
Normal file
18
_data/chains/eip155-1618.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "Catecoin Chain Mainnet",
|
||||||
|
"chain": "Catechain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://send.catechain.com"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Catecoin",
|
||||||
|
"symbol": "CATE",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://catechain.com",
|
||||||
|
"shortName": "cate",
|
||||||
|
"chainId": 1618,
|
||||||
|
"networkId": 1618
|
||||||
|
}
|
18
_data/chains/eip155-1657.json
Normal file
18
_data/chains/eip155-1657.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "Btachain",
|
||||||
|
"chain": "btachain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://dataseed1.btachain.com/"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Bitcoin Asset",
|
||||||
|
"symbol": "BTA",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://bitcoinasset.io/",
|
||||||
|
"shortName": "bta",
|
||||||
|
"chainId": 1657,
|
||||||
|
"networkId": 1657
|
||||||
|
}
|
|
@ -5,8 +5,7 @@
|
||||||
"rpc": [
|
"rpc": [
|
||||||
"https://api.harmony.one"
|
"https://api.harmony.one"
|
||||||
],
|
],
|
||||||
"faucets": [
|
"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
|
||||||
],
|
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "ONE",
|
"name": "ONE",
|
||||||
"symbol": "ONE",
|
"symbol": "ONE",
|
||||||
|
@ -15,5 +14,10 @@
|
||||||
"infoURL": "https://www.harmony.one/",
|
"infoURL": "https://www.harmony.one/",
|
||||||
"shortName": "hmy-s0",
|
"shortName": "hmy-s0",
|
||||||
"chainId": 1666600000,
|
"chainId": 1666600000,
|
||||||
"networkId": 1666600000
|
"networkId": 1666600000,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Harmony Block Explorer",
|
||||||
|
"url": "https://explorer.harmony.one",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"https://api.s0.b.hmny.io"
|
"https://api.s0.b.hmny.io"
|
||||||
],
|
],
|
||||||
"faucets": [
|
"faucets": [
|
||||||
|
"https://faucet.pops.one"
|
||||||
],
|
],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "ONE",
|
"name": "ONE",
|
||||||
|
@ -15,6 +16,11 @@
|
||||||
"infoURL": "https://www.harmony.one/",
|
"infoURL": "https://www.harmony.one/",
|
||||||
"shortName": "hmy-b-s0",
|
"shortName": "hmy-b-s0",
|
||||||
"chainId": 1666700000,
|
"chainId": 1666700000,
|
||||||
"networkId": 1666700000
|
"networkId": 1666700000,
|
||||||
}
|
"explorers": [{
|
||||||
|
"name": "Harmony Testnet Block Explorer",
|
||||||
|
"url": "https://explorer.pops.one",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
20
_data/chains/eip155-170.json
Normal file
20
_data/chains/eip155-170.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "HOO Smart Chain Testnet",
|
||||||
|
"chain": "ETH",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://http-testnet.hoosmartchain.com"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://faucet-testnet.hscscan.com/"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "HOO",
|
||||||
|
"symbol": "HOO",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.hoosmartchain.com",
|
||||||
|
"shortName": "hoosmartchain",
|
||||||
|
"chainId": 170,
|
||||||
|
"networkId": 170
|
||||||
|
}
|
21
_data/chains/eip155-172.json
Normal file
21
_data/chains/eip155-172.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "Latam-Blockchain Resil Testnet",
|
||||||
|
"chain": "Resil",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.latam-blockchain.com",
|
||||||
|
"wss://ws.latam-blockchain.com"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://faucet.latam-blockchain.com"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Latam-Blockchain Resil Test Native Token",
|
||||||
|
"symbol": "usd",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://latam-blockchain.com",
|
||||||
|
"shortName": "resil",
|
||||||
|
"chainId": 172,
|
||||||
|
"networkId": 172
|
||||||
|
}
|
23
_data/chains/eip155-186.json
Normal file
23
_data/chains/eip155-186.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "Seele Mainnet",
|
||||||
|
"chain": "Seele",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.seelen.pro/"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Seele",
|
||||||
|
"symbol": "Seele",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://seelen.pro/",
|
||||||
|
"shortName": "Seele",
|
||||||
|
"chainId": 186,
|
||||||
|
"networkId": 186,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "seeleview",
|
||||||
|
"url": "https://seeleview.net/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
24
_data/chains/eip155-19.json
Normal file
24
_data/chains/eip155-19.json
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"name": "Songbird Canary-Network",
|
||||||
|
"chain": "SGB",
|
||||||
|
"network": "songbird",
|
||||||
|
"rpc": [
|
||||||
|
"https://songbird.towolabs.com/rpc"
|
||||||
|
],
|
||||||
|
"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Songbird",
|
||||||
|
"symbol": "SGB",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://flare.xyz",
|
||||||
|
"shortName": "sgb",
|
||||||
|
"chainId": 19,
|
||||||
|
"networkId": 19,
|
||||||
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "blockscout",
|
||||||
|
"url": "https://songbird-explorer.flare.network",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
23
_data/chains/eip155-192837465.json
Normal file
23
_data/chains/eip155-192837465.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "Gather Mainnet Network",
|
||||||
|
"chain": "GTH",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://mainnet.gather.network"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Gather",
|
||||||
|
"symbol": "GTH",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://gather.network",
|
||||||
|
"shortName": "GTH",
|
||||||
|
"chainId": 192837465,
|
||||||
|
"networkId": 192837465,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Blockscout",
|
||||||
|
"url": "https://explorer.gather.network/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
25
_data/chains/eip155-197710212030.json
Normal file
25
_data/chains/eip155-197710212030.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "Ntity Mainnet",
|
||||||
|
"chain": "Ntity",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.ntity.io"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Ntity",
|
||||||
|
"symbol": "NTT",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://ntity.io",
|
||||||
|
"shortName": "ntt",
|
||||||
|
"chainId": 197710212030,
|
||||||
|
"networkId": 197710212030,
|
||||||
|
"icon": "ntity",
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Ntity Blockscout",
|
||||||
|
"url": "https://blockscout.ntity.io",
|
||||||
|
"icon": "ntity",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
25
_data/chains/eip155-197710212031.json
Normal file
25
_data/chains/eip155-197710212031.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "Haradev Testnet",
|
||||||
|
"chain": "Ntity",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://blockchain.haradev.com"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Ntity Haradev",
|
||||||
|
"symbol": "NTTH",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://ntity.io",
|
||||||
|
"shortName": "ntt-haradev",
|
||||||
|
"chainId": 197710212031,
|
||||||
|
"networkId": 197710212031,
|
||||||
|
"icon": "ntity",
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Ntity Haradev Blockscout",
|
||||||
|
"url": "https://blockscout.haradev.com",
|
||||||
|
"icon": "ntity",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
23
_data/chains/eip155-199.json
Normal file
23
_data/chains/eip155-199.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "BitTorrent Chain Mainnet",
|
||||||
|
"chain": "BTTC",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.bittorrentchain.io/"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "BitTorrent",
|
||||||
|
"symbol": "BTT",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://bittorrentchain.io/",
|
||||||
|
"shortName": "BTT",
|
||||||
|
"chainId": 199,
|
||||||
|
"networkId": 199,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "bttcscan",
|
||||||
|
"url": "https://scan.bittorrentchain.io/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
25
_data/chains/eip155-200.json
Normal file
25
_data/chains/eip155-200.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "Arbitrum on xDai",
|
||||||
|
"chain": "AOX",
|
||||||
|
"network": "xdai",
|
||||||
|
"rpc": ["https://arbitrum.xdaichain.com/"],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "xDAI",
|
||||||
|
"symbol": "xDAI",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://xdaichain.com",
|
||||||
|
"shortName": "aox",
|
||||||
|
"chainId": 200,
|
||||||
|
"networkId": 200,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "blockscout",
|
||||||
|
"url": "https://blockscout.com/xdai/arbitrum",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}],
|
||||||
|
"parent": {
|
||||||
|
"chain": "eip155-100",
|
||||||
|
"type": "L2"
|
||||||
|
}
|
||||||
|
}
|
29
_data/chains/eip155-201030.json
Normal file
29
_data/chains/eip155-201030.json
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"name": "Alaya Dev Testnet",
|
||||||
|
"chain": "Alaya",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://devnetopenapi.alaya.network/rpc",
|
||||||
|
"wss://devnetopenapi.alaya.network/ws"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "ATP",
|
||||||
|
"symbol": "atp",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.alaya.network/",
|
||||||
|
"shortName": "alaya",
|
||||||
|
"chainId": 201030,
|
||||||
|
"networkId": 1,
|
||||||
|
"icon": "alaya",
|
||||||
|
"explorers": [
|
||||||
|
{
|
||||||
|
"name": "alaya explorer",
|
||||||
|
"url": "https://devnetscan.alaya.network",
|
||||||
|
"standard": "none"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
19
_data/chains/eip155-20181205.json
Normal file
19
_data/chains/eip155-20181205.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "quarkblockchain",
|
||||||
|
"chain": "QKI",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://hz.rpc.qkiscan.cn",
|
||||||
|
"https://jp.rpc.qkiscan.io"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "quarkblockchain Native Token",
|
||||||
|
"symbol": "QKI",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://quarkblockchain.org/",
|
||||||
|
"shortName": "qki",
|
||||||
|
"chainId": 20181205,
|
||||||
|
"networkId": 20181205
|
||||||
|
}
|
23
_data/chains/eip155-2100.json
Normal file
23
_data/chains/eip155-2100.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "Ecoball Mainnet",
|
||||||
|
"chain": "ECO",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://api.ecoball.org/ecoball/"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Ecoball Coin",
|
||||||
|
"symbol": "ECO",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://ecoball.org",
|
||||||
|
"shortName": "eco",
|
||||||
|
"chainId": 2100,
|
||||||
|
"networkId": 2100,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Ecoball Explorer",
|
||||||
|
"url": "https://scan.ecoball.org/",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
23
_data/chains/eip155-2101.json
Normal file
23
_data/chains/eip155-2101.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "Ecoball Testnet Espuma",
|
||||||
|
"chain": "ECO",
|
||||||
|
"network": "espuma",
|
||||||
|
"rpc": [
|
||||||
|
"https://api.ecoball.org/espuma/"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Espuma Coin",
|
||||||
|
"symbol": "ECO",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://ecoball.org",
|
||||||
|
"shortName": "esp",
|
||||||
|
"chainId": 2101,
|
||||||
|
"networkId": 2101,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Ecoball Testnet Explorer",
|
||||||
|
"url": "https://espuma-scan.ecoball.org/",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
29
_data/chains/eip155-210309.json
Normal file
29
_data/chains/eip155-210309.json
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"name": "PlatON Dev Testnet",
|
||||||
|
"chain": "PlatON",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://devnetopenapi.platon.network/rpc",
|
||||||
|
"wss://devnetopenapi.platon.network/ws"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "LAT",
|
||||||
|
"symbol": "lat",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.platon.network",
|
||||||
|
"shortName": "PlatON",
|
||||||
|
"chainId": 210309,
|
||||||
|
"networkId": 1,
|
||||||
|
"icon": "platon",
|
||||||
|
"explorers": [
|
||||||
|
{
|
||||||
|
"name": "PlatON explorer",
|
||||||
|
"url": "https://devnetscan.platon.network/",
|
||||||
|
"standard": "none"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
19
_data/chains/eip155-222.json
Normal file
19
_data/chains/eip155-222.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "Permission",
|
||||||
|
"chain": "ASK",
|
||||||
|
"network": "ASK",
|
||||||
|
"rpc": [
|
||||||
|
"https://blockchain-api-mainnet.permission.io/rpc"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "ASK",
|
||||||
|
"symbol": "ASK",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://permission.io/",
|
||||||
|
"shortName": "ASK",
|
||||||
|
"chainId": 222,
|
||||||
|
"networkId": 2221,
|
||||||
|
"slip44": 2221
|
||||||
|
}
|
|
@ -14,5 +14,6 @@
|
||||||
"infoURL": "https://webchain.network",
|
"infoURL": "https://webchain.network",
|
||||||
"shortName": "web",
|
"shortName": "web",
|
||||||
"chainId": 24484,
|
"chainId": 24484,
|
||||||
"networkId": 37129
|
"networkId": 37129,
|
||||||
|
"slip44": 227
|
||||||
}
|
}
|
20
_data/chains/eip155-245022926.json
Normal file
20
_data/chains/eip155-245022926.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "Neon EVM DevNet",
|
||||||
|
"chain": "Solana",
|
||||||
|
"network": "devnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://proxy.devnet.neonlabs.org/solana"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://neonswap.live/#/get-tokens"
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Neon",
|
||||||
|
"symbol": "NEON",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://neon-labs.org/",
|
||||||
|
"shortName": "neonevm-devnet",
|
||||||
|
"chainId": 245022926,
|
||||||
|
"networkId": 245022926
|
||||||
|
}
|
18
_data/chains/eip155-245022934.json
Normal file
18
_data/chains/eip155-245022934.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "Neon EVM MainNet",
|
||||||
|
"chain": "Solana",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://proxy.mainnet.neonlabs.org/solana"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Neon",
|
||||||
|
"symbol": "NEON",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://neon-labs.org/",
|
||||||
|
"shortName": "neonevm-mainnet",
|
||||||
|
"chainId": 245022934,
|
||||||
|
"networkId": 245022934
|
||||||
|
}
|
18
_data/chains/eip155-245022940.json
Normal file
18
_data/chains/eip155-245022940.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "Neon EVM TestNet",
|
||||||
|
"chain": "Solana",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://proxy.testnet.neonlabs.org/solana"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Neon",
|
||||||
|
"symbol": "NEON",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://neon-labs.org/",
|
||||||
|
"shortName": "neonevm-testnet",
|
||||||
|
"chainId": 245022940,
|
||||||
|
"networkId": 245022940
|
||||||
|
}
|
|
@ -6,7 +6,9 @@
|
||||||
"https://rpc.energyweb.org",
|
"https://rpc.energyweb.org",
|
||||||
"wss://rpc.energyweb.org/ws"
|
"wss://rpc.energyweb.org/ws"
|
||||||
],
|
],
|
||||||
"faucets": [],
|
"faucets": [
|
||||||
|
"https://faucet.carbonswap.exchange", "https://free-online-app.com/faucet-for-eth-evm-chains/"
|
||||||
|
],
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "Energy Web Token",
|
"name": "Energy Web Token",
|
||||||
"symbol": "EWT",
|
"symbol": "EWT",
|
||||||
|
@ -16,5 +18,13 @@
|
||||||
"shortName": "ewt",
|
"shortName": "ewt",
|
||||||
"chainId": 246,
|
"chainId": 246,
|
||||||
"networkId": 246,
|
"networkId": 246,
|
||||||
"slip44": 246
|
"slip44": 246,
|
||||||
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "blockscout",
|
||||||
|
"url": "https://explorer.energyweb.org",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
23
_data/chains/eip155-25.json
Normal file
23
_data/chains/eip155-25.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "Cronos Mainnet Beta",
|
||||||
|
"chain": "CRO",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://evm-cronos.crypto.org"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Crypto.org Coin",
|
||||||
|
"symbol": "CRO",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://cronos.crypto.org",
|
||||||
|
"shortName": "cro",
|
||||||
|
"chainId": 25,
|
||||||
|
"networkId": 25,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Cronos Explorer",
|
||||||
|
"url": "https://cronos.crypto.org/explorer",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
|
@ -2,11 +2,8 @@
|
||||||
"name": "Fantom Opera",
|
"name": "Fantom Opera",
|
||||||
"chain": "FTM",
|
"chain": "FTM",
|
||||||
"network": "mainnet",
|
"network": "mainnet",
|
||||||
"rpc": [
|
"rpc": ["https://rpc.ftm.tools"],
|
||||||
"https://rpc.fantom.network",
|
"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"],
|
||||||
"https://fantomscan.io/rpc"
|
|
||||||
],
|
|
||||||
"faucets": [],
|
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "Fantom",
|
"name": "Fantom",
|
||||||
"symbol": "FTM",
|
"symbol": "FTM",
|
||||||
|
@ -15,5 +12,14 @@
|
||||||
"infoURL": "https://fantom.foundation",
|
"infoURL": "https://fantom.foundation",
|
||||||
"shortName": "ftm",
|
"shortName": "ftm",
|
||||||
"chainId": 250,
|
"chainId": 250,
|
||||||
"networkId": 250
|
"networkId": 250,
|
||||||
|
"icon": "fantom",
|
||||||
|
"explorers": [
|
||||||
|
{
|
||||||
|
"name": "ftmscan",
|
||||||
|
"url": "https://ftmscan.com",
|
||||||
|
"icon": "ftmscan",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
19
_data/chains/eip155-2559.json
Normal file
19
_data/chains/eip155-2559.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "Kortho Mainnet",
|
||||||
|
"chain": "Kortho Chain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://www.kortho-chain.com"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "KorthoChain",
|
||||||
|
"symbol": "KTO",
|
||||||
|
"decimals": 11
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.kortho.io/",
|
||||||
|
"shortName": "ktoc",
|
||||||
|
"chainId": 2559,
|
||||||
|
"networkId": 2559
|
||||||
|
}
|
23
_data/chains/eip155-26.json
Normal file
23
_data/chains/eip155-26.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "Genesis L1 testnet",
|
||||||
|
"chain": "genesis",
|
||||||
|
"network": "testnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://testrpc.genesisl1.org"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "L1 testcoin",
|
||||||
|
"symbol": "L1test",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.genesisl1.com",
|
||||||
|
"shortName": "L1test",
|
||||||
|
"chainId": 26,
|
||||||
|
"networkId": 26,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Genesis L1 testnet explorer",
|
||||||
|
"url": "https://testnet.genesisl1.org/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
25
_data/chains/eip155-262.json
Normal file
25
_data/chains/eip155-262.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "SUR Blockchain Network",
|
||||||
|
"chain": "SUR",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://sur.nilin.org"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Suren",
|
||||||
|
"symbol": "SRN",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://surnet.org",
|
||||||
|
"shortName": "SUR",
|
||||||
|
"chainId": 262,
|
||||||
|
"networkId": 1,
|
||||||
|
"icon": "SUR",
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Surnet Explorer",
|
||||||
|
"url": "https://explorer.surnet.org/",
|
||||||
|
"icon": "SUR",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
}
|
|
@ -3,17 +3,26 @@
|
||||||
"chain": "HPB",
|
"chain": "HPB",
|
||||||
"network": "mainnet",
|
"network": "mainnet",
|
||||||
"rpc": [
|
"rpc": [
|
||||||
"https://hpb.app"
|
"https://hpbnode.com",
|
||||||
|
"wss://ws.hpbnode.com"
|
||||||
|
],
|
||||||
|
"faucets": [
|
||||||
|
"https://myhpbwallet.com/"
|
||||||
],
|
],
|
||||||
"faucets": [],
|
|
||||||
"nativeCurrency": {
|
"nativeCurrency": {
|
||||||
"name": "High Performance Blockchain Ether",
|
"name": "High Performance Blockchain Ether",
|
||||||
"symbol": "HPB",
|
"symbol": "HPB",
|
||||||
"decimals": 18
|
"decimals": 18
|
||||||
},
|
},
|
||||||
"infoURL": "https://hpbscan.org/",
|
"infoURL": "https://hpb.io",
|
||||||
"shortName": "hpb",
|
"shortName": "hpb",
|
||||||
"chainId": 269,
|
"chainId": 269,
|
||||||
"networkId": 100,
|
"networkId": 269,
|
||||||
"slip44": 269
|
"slip44": 269,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "hpbscan",
|
||||||
|
"url": "https://hpbscan.org/",
|
||||||
|
"standard": "EIP3091"
|
||||||
|
}]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
23
_data/chains/eip155-27.json
Normal file
23
_data/chains/eip155-27.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "ShibaChain",
|
||||||
|
"chain": "SHIB",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.shibachain.net"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "SHIBA INU COIN",
|
||||||
|
"symbol": "SHIB",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.shibachain.net",
|
||||||
|
"shortName": "shib",
|
||||||
|
"chainId": 27,
|
||||||
|
"networkId": 27,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Shiba Explorer",
|
||||||
|
"url": "https://exp.shibachain.net/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
27
_data/chains/eip155-28.json
Normal file
27
_data/chains/eip155-28.json
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
"name": "Boba Network Rinkeby Testnet",
|
||||||
|
"chain": "ETH",
|
||||||
|
"network": "rinkeby",
|
||||||
|
"rpc": ["https://rinkeby.boba.network/"],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Ether",
|
||||||
|
"symbol": "ETH",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://boba.network",
|
||||||
|
"shortName": "Boba Rinkeby",
|
||||||
|
"chainId": 28,
|
||||||
|
"networkId": 28,
|
||||||
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Blockscout",
|
||||||
|
"url": "https://blockexplorer.rinkeby.boba.network/",
|
||||||
|
"standard": "none"
|
||||||
|
}],
|
||||||
|
"parent": {
|
||||||
|
"type" : "L2",
|
||||||
|
"chain": "eip155-4",
|
||||||
|
"bridges": [ {"url":"https://gateway.rinkeby.boba.network"} ]
|
||||||
|
}
|
||||||
|
}
|
19
_data/chains/eip155-281121.json
Normal file
19
_data/chains/eip155-281121.json
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "Social Smart Chain Mainnet",
|
||||||
|
"chain": "SoChain",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://socialsmartchain.digitalnext.business"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "SoChain",
|
||||||
|
"symbol": "$OC",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://digitalnext.business/SocialSmartChain",
|
||||||
|
"shortName": "SoChain",
|
||||||
|
"chainId": 281121,
|
||||||
|
"networkId": 281121,
|
||||||
|
"explorers": []
|
||||||
|
}
|
27
_data/chains/eip155-288.json
Normal file
27
_data/chains/eip155-288.json
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
"name": "Boba Network",
|
||||||
|
"chain": "ETH",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": ["https://mainnet.boba.network/"],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "Ether",
|
||||||
|
"symbol": "ETH",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://boba.network",
|
||||||
|
"shortName": "Boba",
|
||||||
|
"chainId": 288,
|
||||||
|
"networkId": 288,
|
||||||
|
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Blockscout",
|
||||||
|
"url": "https://blockexplorer.boba.network/",
|
||||||
|
"standard": "none"
|
||||||
|
}],
|
||||||
|
"parent": {
|
||||||
|
"type" : "L2",
|
||||||
|
"chain": "eip155-1",
|
||||||
|
"bridges": [ {"url":"https://gateway.boba.network"} ]
|
||||||
|
}
|
||||||
|
}
|
23
_data/chains/eip155-29.json
Normal file
23
_data/chains/eip155-29.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "Genesis L1",
|
||||||
|
"chain": "genesis",
|
||||||
|
"network": "mainnet",
|
||||||
|
"rpc": [
|
||||||
|
"https://rpc.genesisl1.org"
|
||||||
|
],
|
||||||
|
"faucets": [],
|
||||||
|
"nativeCurrency": {
|
||||||
|
"name": "L1 coin",
|
||||||
|
"symbol": "L1",
|
||||||
|
"decimals": 18
|
||||||
|
},
|
||||||
|
"infoURL": "https://www.genesisl1.com",
|
||||||
|
"shortName": "L1",
|
||||||
|
"chainId": 29,
|
||||||
|
"networkId": 29,
|
||||||
|
"explorers": [{
|
||||||
|
"name": "Genesis L1 blockchain explorer",
|
||||||
|
"url": "https://explorer.genesisl1.org/",
|
||||||
|
"standard": "none"
|
||||||
|
}]
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user