Repository: TP-Lab/networklist-org
Branch: main
Commit: 38aeb7c39c67
Files: 50
Total size: 1.8 MB
Directory structure:
gitextract_64xru4uk/
├── .github/
│ └── workflows/
│ └── eslint.yml
├── .gitignore
├── .idea/
│ ├── .gitignore
│ ├── codeStyles/
│ │ └── codeStyleConfig.xml
│ ├── jsLibraryMappings.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── networklist-org.iml
│ └── vcs.xml
├── LICENCE.md
├── README.md
├── chains.json
├── components/
│ ├── chain/
│ │ ├── chain.js
│ │ ├── chain.module.css
│ │ └── package.json
│ ├── header/
│ │ ├── header.js
│ │ ├── header.module.css
│ │ └── package.json
│ ├── multichain/
│ │ ├── multichain.js
│ │ ├── multichain.module.css
│ │ └── package.json
│ ├── snackbar/
│ │ ├── package.json
│ │ ├── snackbar.jsx
│ │ └── snackbarController.jsx
│ └── unlock/
│ ├── package.json
│ ├── unlock.js
│ └── unlockModal.js
├── eslint.config.mjs
├── next.config.js
├── package.json
├── pages/
│ ├── _app.js
│ ├── _document.js
│ ├── index.js
│ └── index.module.css
├── public/
│ ├── fonts/
│ │ ├── Druk/
│ │ │ └── Druk.css
│ │ └── Inter/
│ │ └── Inter.css
│ └── hm.js
├── stores/
│ ├── accountStore.js
│ ├── connectors/
│ │ ├── connectors.js
│ │ └── package.json
│ ├── constants/
│ │ ├── constants.js
│ │ └── package.json
│ └── index.js
├── styles/
│ ├── Home.module.css
│ └── globals.css
├── theme/
│ ├── coreTheme.js
│ ├── dark.js
│ └── light.js
└── utils/
├── package.json
└── utils.js
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/eslint.yml
================================================
name: Lint JSON Files
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18' # 选择你的 Node.js 版本
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npx eslint chains.json --config ./eslint.config.mjs
================================================
FILE: .gitignore
================================================
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
# vercel
.vercel
================================================
FILE: .idea/.gitignore
================================================
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
================================================
FILE: .idea/codeStyles/codeStyleConfig.xml
================================================
================================================
FILE: .idea/jsLibraryMappings.xml
================================================
================================================
FILE: .idea/misc.xml
================================================
================================================
FILE: .idea/modules.xml
================================================
================================================
FILE: .idea/networklist-org.iml
================================================
================================================
FILE: .idea/vcs.xml
================================================
================================================
FILE: LICENCE.md
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
================================================
FILE: README.md
================================================
# Description
This is the repo for TokenPocket to add public chains according to the community requirements. Once the PR is merged, the chain will be included on TokenPocket's Easy Add feature. You can also visit the entrance of the custom network in **https://chainlist.tokenpocket.pro/**. For adding more network data, please read the following tutorials.
## Listing and donation standard
https://help.tokenpocket.pro/developer-en/network/add-chain
A donation is needed for your PR to be merged. If your PR is not compatible with the Review Rules, it won't be merged and the donation won't be refunded. Please be cautious.
# 简介
本仓库为TokenPocket根据社区需求进行自定义网络(公链)更新,只要PR被合并就可以在自定义网络--快捷加链的列表中收录,同时,你也可在 **https://chainlist.tokenpocket.pro/** 中查看自定义网络的添加入口。添加更多网络信息,请根据以下指引进行提交。
## 公链收录审核及捐赠标准
https://help.tokenpocket.pro/developer-cn/public-chain/add-chain
提交PR合并需要捐赠,如果不满足审核要求,则不进行合并,捐赠不会进行退回,请您按需进行提交。
## How to add a new chain
Fork this repo and add your evm chain info into `chains.json`
Example:
```javascript
{
"name": "xDAI Chain",
"chainId": 100,
"shortName": "xdai",
"chain": "XDAI",
"network": "mainnet",
"networkId": 100,
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",
"decimals": 18
},
"rpc": [
"https://rpc.xdaichain.com",
"https://xdai.poanetwork.dev",
"wss://rpc.xdaichain.com/wss",
"wss://xdai.poanetwork.dev/wss",
"http://xdai.poanetwork.dev",
"https://dai.poa.network",
"ws://xdai.poanetwork.dev:8546"
],
"faucets": [],
"infoURL": "https://forum.poa.network/c/xdai-chain",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png",//network icon selected status
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png",//network icon unselected status in light mode
"ic_chain_unselect_dark": "",//network icon unselected status in dark mode
"color_chain_bg": "0x58B2AF",//wallet card backgroud color
"color_chain_text": "0xFFFFFF",//wallet card text color
"ic_home_logo":""//logo on top of asset page
}
}
```
## 如何添加一个新链
Fork该仓库并在`chains.json` 中加入您的EVM链信息
示例:
```javascript
{
"name": "xDAI Chain",
"chainId": 100,
"shortName": "xdai",
"chain": "XDAI",
"network": "mainnet",
"networkId": 100,
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",
"decimals": 18
},
"rpc": [
"https://rpc.xdaichain.com",
"https://xdai.poanetwork.dev",
"wss://rpc.xdaichain.com/wss",
"wss://xdai.poanetwork.dev/wss",
"http://xdai.poanetwork.dev",
"https://dai.poa.network",
"ws://xdai.poanetwork.dev:8546"
],
"faucets": [],
"infoURL": "https://forum.poa.network/c/xdai-chain",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", //链icon选中状态
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", //链icon白天模式的未选择状态
"ic_chain_unselect_dark": "", //链icon黑夜模式的未选择状态
"color_chain_bg": "0x58B2AF", //选择钱包时,卡片的背景颜色
"color_chain_text": "0xFFFFFF", //选择钱包时,卡片的文字颜色
"ic_home_logo":"" //首页卡片显示的logo
}
}
```
`app_resource` is optional, which is only affect the appearance in TokenPocket Wallet. You can follow the standard below:





================================================
FILE: chains.json
================================================
[
{
"name": "Ethereum Mainnet",
"chainId": 1,
"shortName": "eth",
"chain": "ETH",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
"wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161",
"https://api.mycryptoapi.com/eth",
"https://cloudflare-eth.com"
],
"faucets": [],
"infoURL": "https://ethereum.org"
},
{
"name": "Optimistic Ethereum",
"chainId": 10,
"shortName": "oeth",
"chain": "ETH",
"network": "mainnet",
"networkId": 10,
"nativeCurrency": {
"name": "Ether",
"symbol": "OETH",
"decimals": 18
},
"rpc": [
"https://mainnet.optimism.io/"
],
"faucets": [],
"infoURL": "https://optimism.io",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png",
"color_chain_bg": "0xF54B49"
}
},
{
"name": "Polygon (Matic) Mainnet",
"chainId": 137,
"shortName": "matic",
"chain": "Matic",
"network": "mainnet",
"networkId": 137,
"nativeCurrency": {
"name": "Matic",
"symbol": "MATIC",
"decimals": 18
},
"rpc": [
"https://rpc-mainnet.matic.network",
"wss://ws-mainnet.matic.network"
],
"faucets": [],
"infoURL": "https://matic.network/",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/0.png",
"color_chain_bg": "0x7F4CDE"
}
},
{
"name": "Avalanche Mainnet",
"chainId": 43114,
"shortName": "Avalanche",
"chain": "AVAX",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "Avalanche",
"symbol": "AVAX",
"decimals": 18
},
"rpc": [
"https://api.avax.network/ext/bc/C/rpc"
],
"faucets": [],
"infoURL": "https://cchain.explorer.avax.network/",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/0.png",
"color_chain_bg": "0xE92734"
}
},
{
"name": "Cronos Mainnet",
"chainId": 25,
"shortName": "CRO",
"chain": "CRO",
"network": "mainnet",
"networkId": 25,
"nativeCurrency": {
"name": "CRO",
"symbol": "CRO",
"decimals": 18
},
"rpc": [
"https://evm.cronos.org",
"https://cronosrpc-1.xstaking.sg",
"https://evm-cronos.crypto.org",
"https://cronos-rpc.heavenswail.one",
"https://cronos-rpc.elk.finance"
],
"faucets": [],
"infoURL": "https://cronos.crypto.org/explorer"
},
{
"name": "Fusion Mainnet",
"chainId": 32659,
"shortName": "fsn",
"chain": "FSN",
"network": "mainnet",
"networkId": 32659,
"nativeCurrency": {
"name": "Fusion",
"symbol": "FSN",
"decimals": 18
},
"rpc": [
"https://mainnet.anyswap.exchange"
],
"faucets": [],
"infoURL": "https://fsnex.com/",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/0.png",
"ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/2.png",
"color_chain_bg": "0x2E3B4A"
}
},
{
"name": "HyperEVM Mainnet",
"chainId": 999,
"shortName": "hyper",
"chain": "HyperEVM",
"network": "mainnet",
"networkId": 999,
"nativeCurrency": {
"name": "HYPE",
"symbol": "HYPE",
"decimals": 18
},
"rpc": [
"https://rpc.hyperliquid.xyz/evm"
],
"faucets": [],
"infoURL": "https://app.hyperliquid.xyz/",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1739940296685.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1739940300937.png",
"color_chain_bg": "0x072723",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1739940305794.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1739944259234.png"
}
},
{
"name": "ThunderCore Mainnet",
"chainId": 108,
"shortName": "TT",
"chain": "TT",
"network": "mainnet",
"networkId": 108,
"nativeCurrency": {
"name": "ThunderCore Mainnet Ether",
"symbol": "TT",
"decimals": 18
},
"rpc": [
"https://mainnet-rpc.thundercore.com"
],
"faucets": [
"https://faucet.thundercore.com"
],
"infoURL": "https://thundercore.com",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/0.png",
"ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/2.png",
"color_chain_bg": "0xEAC541"
}
},
{
"name": "Unichain",
"chain": "ETH",
"rpc": [
"https://mainnet.unichain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1654746200716.png"
},
"infoURL": "https://unichain.org",
"shortName": "Unichain",
"chainId": 130,
"networkId": 130,
"icon": "eth",
"explorers": [
{
"name": "Uniscan",
"url": "https://uniscan.xyz",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1739334330161.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1739334338422.png",
"color_chain_bg": "0xFC0FA4",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1739334369309.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1739334348465.png"
}
},
{
"name": "FON Smart Chain",
"chainId": 201022,
"shortName": "FON",
"chain": "FON",
"network": "mainnet",
"networkId": 201022,
"nativeCurrency": {
"name": "FON",
"symbol": "FON",
"decimals": 18
},
"rpc": [
"https://fsc-dataseed2.fonscan.io"
],
"faucets": [],
"explorers": [
{
"name": "FONScan",
"url": "https://fonscan.io/",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1698387395064.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1698387436381.png",
"color_chain_bg": "0x343434",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1675422074776.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1675422139280.png"
}
},
{
"name": "Soneium",
"chainId": 1868,
"shortName": "Soneium",
"chain": "Soneium",
"network": "mainnet",
"networkId": 1868,
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18,
"icon": "https://hk.tpstatic.net/dapp/tokenpocket-1736823908221.png"
},
"rpc": [
"https://rpc.soneium.org/"
],
"status": "active",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1736823908221.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1736823938081.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1736823960573.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1736823877492.png"
}
},
{
"name": "Fraxtal",
"chain": "FRAX",
"rpc": [
"https://rpc.frax.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Frax Ether",
"symbol": "frxETH",
"decimals": 18
},
"infoURL": "https://mainnet.frax.com",
"shortName": "Fraxtal",
"chainId": 252,
"networkId": 252,
"explorers": [
{
"name": "FraxScan",
"url": "https://fraxscan.com",
"icon": "Frax",
"standard": "EIP3091"
}
],
"status": "active",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1710309559685.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1710309496700.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1710309512399.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1710309529426.png"
}
},
{
"name": "Viction Mainnet",
"chainId": 88,
"shortName": "vic",
"chain": "VIC",
"network": "mainnet",
"networkId": 88,
"nativeCurrency": {
"name": "Viction Ether",
"symbol": "VIC",
"decimals": 18
},
"rpc": [
"https://rpc.tomochain.com"
],
"faucets": [],
"infoURL": "https://www.vicscan.xyz/",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1701074390781.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1701074408625.png",
"color_chain_bg": "0xF5F2C4",
"color_chain_text": "0x1E1E1E",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1701074424755.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1701074444858.png"
}
},
{
"name": "smartBCH Mainnet",
"chainId": 10000,
"shortName": "smartBCH",
"chain": "smartBCH",
"network": "mainnet",
"networkId": 10000,
"nativeCurrency": {
"name": "Bitcoin Cash",
"symbol": "BCH",
"decimals": 18
},
"rpc": [
"https://smartbch.greyh.at",
"https://rpc-mainnet.smartbch.org",
"https://smartbch.fountainhead.cash/mainnet",
"https://smartbch.devops.cash/mainnet"
],
"faucets": [],
"infoURL": "https://smartbch.org/",
"app_resource": {
"ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png",
"ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png",
"color_chain_bg": "0x4cc947"
}
},
{
"name": "Aurora Mainnet",
"chainId": 1313161554,
"shortName": "Aurora",
"chain": "NEAR",
"network": "mainnet",
"networkId": 1313161554,
"nativeCurrency": {
"name": "Ether",
"symbol": "aETH",
"decimals": 18
},
"rpc": [
"https://mainnet.aurora.dev"
],
"faucets": [],
"infoURL": "https://aurora.dev",
"app_resource": {
"ic_home_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390444550.png",
"ic_chain_select": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390457950.png",
"ic_chain_unselect": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390467132.png",
"ic_all_whitelist_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390477377.png",
"color_chain_bg": "0x78d64b",
"color_chain_text": "0xFFFFFF"
}
},
{
"name": "PulseChain Mainnet",
"shortName": "pls",
"chain": "PLS",
"chainId": 369,
"networkId": 369,
"infoURL": "https://pulsechain.com/",
"rpc": [
"https://rpc.pulsechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Pulse",
"symbol": "PLS",
"decimals": 18
},
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1684207110566.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1684207099184.png",
"color_chain_bg": "0x1A1A1A",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1684207056831.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1684207085917.png"
}
},
{
"name": "Kortho Chain Mainnet",
"chainId": 2559,
"shortName": "KTO",
"chain": "KTO",
"network": "mainnet",
"networkId": 2559,
"nativeCurrency": {
"name": "KORTHO",
"symbol": "KTO",
"decimals": 18
},
"rpc": [
"https://www.kortho-chain.com",
"https://www.kortho-chain.co",
"https://www.kortho-chain.org",
"https://www.kortho-chain.xyz"
],
"faucets": [],
"infoURL": "https://www.kortho.io",
"app_resource": {
"ic_chain_select": "https://www.kortho.io/static/image/1.png",
"ic_chain_unselect": "https://www.kortho.io/static/image/0.png",
"color_chain_bg": "0x748ee3",
"txUrl": " https://www.kortho.io/"
}
},
{
"name": "Vana Mainnet",
"chainId": 1480,
"shortName": "Vana",
"chain": "Vana",
"network": "mainnet",
"networkId": 1480,
"nativeCurrency": {
"name": "Vana",
"symbol": "VANA",
"decimals": 18
},
"rpc": [
"https://rpc.vana.org/"
],
"faucets": [],
"explorers": [
{
"name": "VanaScan",
"url": "https://vanascan.io/",
"standard": "EIP3091"
}
],
"infoURL": "https://vana.org/",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1740454198610.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1740454248235.png",
"color_chain_bg": "0x10100E",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1740454209678.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1740454267140.png"
}
},
{
"name": "Endurance Smart Chain Mainnet",
"chain": "ACE",
"rpc": [
"https://rpc-endurance.fusionist.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Endurance Chain Native Token",
"symbol": "ACE",
"decimals": 18
},
"infoURL": "https://ace.fusionist.io/",
"shortName": "ace",
"chainId": 648,
"networkId": 648,
"explorers": [
{
"name": "Endurance Scan",
"url": "https://explorer.endurance.fusionist.io",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709886151485.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709886075208.png",
"color_chain_bg": "0x050504",
"color_chain_text": "0xFFC783",
"ic_home_logo": "hhttps://hk.tpstatic.net/token/tokenpocket-1709886106935.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709886092252.png"
}
},
{
"name": "Zora",
"chain": "ETH",
"rpc": [
"https://rpc.zora.energy/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "zora",
"infoURL": "https://zora.energy",
"shortName": "zora",
"chainId": 7777777,
"networkId": 7777777,
"explorers": [
{
"name": "Zora Network Explorer",
"url": "https://explorer.zora.energy",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899028504.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899005184.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899016829.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899043712.png"
}
},
{
"name": "Morph Testnet",
"chain": "ETH",
"rpc": [
"https://rpc-testnet.morphl2.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://morphl2.io",
"shortName": "tmorph",
"chainId": 2710,
"networkId": 2710,
"slip44": 1,
"explorers": [
{
"name": "Morph Testnet Explorer",
"url": "https://explorer-testnet.morphl2.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge-testnet.morphl2.io"
}
]
},
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709898729370.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709898717628.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0x6AF495",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709898740826.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709898759382.png"
}
},
{
"name": "Mode",
"chain": "ETH",
"rpc": [
"https://mainnet.mode.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.mode.network/",
"shortName": "mode",
"chainId": 34443,
"networkId": 34443,
"icon": "mode",
"explorers": [
{
"name": "modescout",
"url": "https://explorer.mode.network",
"standard": "none"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899308595.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899325224.png",
"color_chain_bg": "0xD9F417",
"color_chain_text": "0x000000",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899339092.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899353868.png"
}
},
{
"name": "Berachain Artio",
"chain": "Berachain Artio",
"rpc": [
"https://artio.rpc.berachain.com",
"https://rpc.ankr.com/berachain_testnet"
],
"faucets": [
"https://artio.faucet.berachain.com"
],
"nativeCurrency": {
"name": "BERA Token",
"symbol": "BERA",
"decimals": 18
},
"infoURL": "https://www.berachain.com",
"shortName": "berachainArtio",
"chainId": 80085,
"networkId": 80085,
"icon": "berachain",
"explorers": [
{
"name": "Beratrail",
"url": "https://artio.beratrail.io",
"icon": "berachain",
"standard": "none"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709885929619.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709885915602.png",
"color_chain_bg": "0xEF821F",
"color_chain_text": "0x050504",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709885984851.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709885969274.png"
}
},
{
"name": "ink Chain",
"chainId": 57073,
"shortName": "Ink",
"chain": "ETH",
"network": "mainnet",
"networkId": 57073,
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1654746200716.png"
},
"rpc": [
"https://rpc-gel.inkonchain.com"
],
"faucets": [],
"infoURL": "https://inkonchain.com",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1734943356939.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1734943333910.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1734943372736.png",
"color_chain_bg": "0x7132F5",
"color_chain_text": "0xFFFFFF",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1734943399646.png"
}
},
{
"name": "BounceBit Testnet",
"chainId": 6000,
"shortName": "BBT",
"chain": "BounceBit Testnet",
"network": "testnet",
"networkId": 6000,
"nativeCurrency": {
"name": "BounceBit",
"symbol": "BB",
"decimals": 18
},
"rpc": [
"https://fullnode-testnet.bouncebitapi.com"
],
"faucets": [],
"explorers": [
{
"name": "BBScan",
"url": "https://bbscan.io",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901807789.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709901770114.png",
"color_chain_bg": "0xEDEAE4",
"color_chain_text": "0x000000",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709901795926.png"
}
},
{
"name": "zkLink Nova Mainnet",
"chainId": 810180,
"shortName": "zkLink Nova",
"chain": "zkLink Nova Mainnet",
"network": "Mainnet",
"networkId": 810180,
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://rpc.zklink.io",
"wss://rpc.zklink.io"
],
"faucets": [],
"explorers": [
{
"name": "zkLink Nova Block Explorer",
"url": "https://explorer.zklink.io/",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711359675534.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711359694827.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0xffffff",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711359711634.png"
}
},
{
"name": "xDAI Chain",
"chainId": 100,
"shortName": "xdai",
"chain": "XDAI",
"network": "mainnet",
"networkId": 100,
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",
"decimals": 18
},
"rpc": [
"https://rpc.xdaichain.com",
"https://xdai.poanetwork.dev",
"wss://rpc.xdaichain.com/wss",
"wss://xdai.poanetwork.dev/wss",
"http://xdai.poanetwork.dev",
"https://dai.poa.network",
"ws://xdai.poanetwork.dev:8546"
],
"faucets": [],
"infoURL": "https://forum.poa.network/c/xdai-chain",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png",
"color_chain_bg": "0x58B2AF"
}
},
{
"name": "zkSync Era Testnet",
"chain": "ETH",
"rpc": [
"https://zksync2-testnet.zksync.dev"
],
"faucets": [
"https://goerli.portal.zksync.io/faucet"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://era.zksync.io/docs/",
"shortName": "zksync-goerli",
"chainId": 280,
"networkId": 280,
"icon": "zksync-era",
"explorers": [
{
"name": "zkSync Era Block Explorer",
"url": "https://goerli.explorer.zksync.io",
"icon": "zksync-era",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://goerli.portal.zksync.io/bridge"
}
]
}
},
{
"name": "zkSync Era Mainnet",
"chain": "ETH",
"rpc": [
"https://zksync2-mainnet.zksync.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zksync.io/",
"shortName": "zksync",
"chainId": 324,
"networkId": 324,
"icon": "zksync-era",
"explorers": [
{
"name": "zkSync Era Block Explorer",
"url": "https://explorer.zksync.io",
"icon": "zksync-era",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portal.zksync.io/bridge"
}
]
}
},
{
"name": "Merlin Mainnet",
"chainId": 4200,
"shortName": "Merlin Mainnet",
"chain": "Merlin Mainnet",
"network": "mainnet",
"networkId": 4200,
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"rpc": [
"https://rpc.merlinchain.io"
],
"explorers": [
{
"name": "blockscout",
"url": "https://scan.merlinchain.io/"
}
]
},
{
"name": "BTA Chain",
"chainId": 1657,
"shortName": "btachain",
"chain": "BTA",
"network": "mainnet",
"networkId": 1657,
"nativeCurrency": {
"name": "btachain",
"symbol": "BTA",
"decimals": 18
},
"rpc": [
"https://dataseed1.btachain.com",
"https://dataseed2.btachain.com",
"wss://dataseed1.btachain.com/wss",
"wss://dataseed2.btachain.com/wss",
"ws://dataseed1.btachain.com:8861"
],
"faucets": [],
"infoURL": "https://btachain.com",
"app_resource": {
"ic_chain_select": "https://btachain.com/images/favicon/logo.png",
"ic_chain_unselect": "https://btachain.com/images/favicon/logo-0x.png",
"color_chain_bg": "0x0777cf"
}
},
{
"name": "Morph",
"chainId": 2818,
"shortName": "morph",
"chain": "Morph",
"network": "mainnet",
"networkId": 2818,
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1617349051539.png"
},
"rpc": [
"https://rpc.morphl2.io"
],
"infoURL": "https://www.morphl2.io/",
"explorers": [
{
"name": "morph explorer",
"url": "https://explorer.morphl2.io",
"standard": "EIP3091",
"icon": "https://hk.tpstatic.net/token/tokenpocket-1729590965553.png"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1729590965553.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1729590979115.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1729590988846.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1729590999996.png"
}
},
{
"name": "HyperEVM Testnet",
"chainId": 998,
"shortName": "hypetest",
"chain": "ETH",
"network": "testnet",
"networkId": 998,
"nativeCurrency": {
"name": "HYPE",
"symbol": "HYPE",
"decimals": 18,
"icon": "https://hk.tpstatic.net/token/tokenpocket-1735198406390.png"
},
"rpc": [
"https://api.hyperliquid-testnet.xyz/evm"
],
"status": "active",
"faucets": [
"https://app.hyperliquid-testnet.xyz/drip"
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1735198406390.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1735198946146.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1735198976376.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1735203149793.png",
"color_chain_bg": "0x072723",
"color_chain_text": "0xFFFFFF"
}
},
{
"name": "Cycle StarFish Testnet",
"chain": "ETH",
"status": "active",
"icon": "Cycle",
"network": "testnet",
"rpc": [
"https://rpc-testnet.cyclenetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://cycle-network.gitbook.io/cycle-network-docs/welcome/testnet-starfish",
"shortName": "Cycle StarFish Testnet",
"chainId": 1221,
"networkId": 1221,
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711525328453.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711564983535.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711565004213.png"
}
},
{
"name": "Arbitrum One",
"chainId": 42161,
"shortName": "Arbitrum",
"chain": "Arbitrum",
"network": "mainnet",
"networkId": 42161,
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://arb1.arbitrum.io/rpc"
],
"faucets": [],
"infoURL": "https://arbitrum.io/"
},
{
"name": "Fuse Mainnet",
"chainId": 122,
"shortName": "fuse",
"chain": "FUSE",
"network": "mainnet",
"networkId": 122,
"nativeCurrency": {
"name": "Fuse",
"symbol": "FUSE",
"decimals": 18
},
"rpc": [
"https://rpc.fuse.io"
],
"faucets": [],
"infoURL": "https://fuse.io/",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/0.png",
"ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/2.png",
"color_chain_bg": "0x62D970"
}
},
{
"name": "Fantom Opera",
"chainId": 250,
"shortName": "ftm",
"chain": "FTM",
"network": "mainnet",
"networkId": 250,
"nativeCurrency": {
"name": "Fantom",
"symbol": "FTM",
"decimals": 18
},
"rpc": [
"https://rpcapi.fantom.network",
"https://fantomscan.io/rpc"
],
"faucets": [],
"infoURL": "https://fantom.foundation",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/0.png",
"color_chain_bg": "0x1969FF"
}
},
{
"name": "Ethereum Classic Mainnet",
"chainId": 61,
"shortName": "etc",
"chain": "ETC",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "Ethereum Classic Ether",
"symbol": "ETC",
"decimals": 18
},
"rpc": [
"https://www.ethercluster.com/etc"
],
"faucets": [],
"infoURL": "https://ethereumclassic.org",
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/0.png",
"ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/2.png",
"color_chain_bg": "0x3CBA3B"
}
},
{
"name": "MVS",
"chainId": 23,
"shortName": "MVS",
"chain": "MVS",
"network": "mainnet",
"networkId": 23,
"nativeCurrency": {
"name": "ETP",
"symbol": "ETP",
"decimals": 18
},
"rpc": [
"https://vm.mvs.org/mainnet/381e0fe4-e67d-4714-9c8c-69c7bd960e54"
],
"faucets": [],
"infoURL": ""
},
{
"name": "Catecoin Chain Mainnet",
"chainId": 1618,
"shortName": "cate",
"chain": "Catechain",
"network": "mainnet",
"networkId": 1618,
"nativeCurrency": {
"name": "Catecoin",
"symbol": "CATE",
"decimals": 18
},
"rpc": [
"https://send.catechain.com"
],
"faucets": [],
"infoURL": "https://catechain.com"
},
{
"name": "Ethereum Testnet Ropsten",
"chainId": 3,
"shortName": "rop",
"chain": "ETH",
"network": "ropsten",
"networkId": 3,
"nativeCurrency": {
"name": "Ropsten Ether",
"symbol": "ROP",
"decimals": 18
},
"rpc": [
"https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
"wss://ropsten.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161"
],
"faucets": [
"https://faucet.ropsten.be?${ADDRESS}"
],
"infoURL": "https://github.com/ethereum/ropsten"
},
{
"name": "Ethereum Testnet Kovan",
"chainId": 42,
"shortName": "kov",
"chain": "ETH",
"network": "kovan",
"networkId": 42,
"nativeCurrency": {
"name": "Kovan Ether",
"symbol": "KOV",
"decimals": 18
},
"rpc": [
"https://kovan.poa.network",
"http://kovan.poa.network:8545",
"https://kovan.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
"wss://kovan.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161",
"ws://kovan.poa.network:8546"
],
"faucets": [
"https://faucet.kovan.network",
"https://gitter.im/kovan-testnet/faucet"
],
"infoURL": "https://kovan-testnet.github.io/website"
},
{
"name": "Ethereum Testnet Rinkeby",
"chainId": 4,
"shortName": "rin",
"chain": "ETH",
"network": "rinkeby",
"networkId": 4,
"nativeCurrency": {
"name": "Rinkeby Ether",
"symbol": "RIN",
"decimals": 18
},
"rpc": [
"https://rinkeby.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
"wss://rinkeby.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161"
],
"faucets": [
"https://faucet.rinkeby.io"
],
"infoURL": "https://www.rinkeby.io"
},
{
"name": "Ethereum Testnet Goerli",
"chainId": 5,
"shortName": "gor",
"chain": "ETH",
"network": "goerli",
"networkId": 5,
"nativeCurrency": {
"name": "Görli Ether",
"symbol": "GOR",
"decimals": 18
},
"rpc": [
"https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161",
"https://rpc.goerli.mudit.blog/",
"https://rpc.slock.it/goerli ",
"https://goerli.prylabs.net/"
],
"faucets": [
"https://goerli-faucet.slock.it/?address=${ADDRESS}",
"https://faucet.goerli.mudit.blog"
],
"infoURL": "https://goerli.net/#about"
},
{
"name": "Klaytn Testnet Baobab",
"chainId": 1001,
"shortName": "Baobab",
"chain": "KLAY",
"network": "baobab",
"networkId": 1001,
"nativeCurrency": {
"name": "KLAY",
"symbol": "KLAY",
"decimals": 18
},
"rpc": [
"https://node-api.klaytnapi.com/v1/klaytn"
],
"faucets": [
"https://baobab.wallet.klaytn.com/access?next=faucet"
],
"infoURL": "https://www.klaytn.com/"
},
{
"name": "Arbitrum Testnet V5",
"chainId": 144545313136048,
"shortName": "Arbitrum Test",
"chain": "Arbitrum Test",
"network": "testnet",
"networkId": 144545313136048,
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://kovan5.arbitrum.io/rpc"
],
"faucets": [],
"infoURL": ""
},
{
"name": "Zenith Smart Chain",
"chainId": 20212,
"shortName": "ZSC",
"chain": "ZSC",
"network": "mainnet",
"networkId": 20212,
"nativeCurrency": {
"name": "ZTB",
"symbol": "ZTB",
"decimals": 18
},
"rpc": [
"https://zsc.one/rpc"
],
"faucets": [],
"infoURL": ""
},
{
"name": "Newton Testnet",
"chainId": 1007,
"shortName": "tnew",
"chain": "NEW",
"network": "testnet",
"networkId": 1007,
"nativeCurrency": {
"name": "Newton",
"symbol": "NEW",
"decimals": 18
},
"rpc": [
"https://rpc1.newchain.newtonproject.org"
],
"faucets": [],
"infoURL": "https://www.newtonproject.org/"
},
{
"name": "EtherInc",
"chainId": 101,
"shortName": "eti",
"chain": "ETI",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "EtherInc Ether",
"symbol": "ETI",
"decimals": 18
},
"rpc": [
"https://api.einc.io/jsonrpc/mainnet"
],
"faucets": [],
"infoURL": "https://einc.io"
},
{
"name": "Evrice Network",
"chainId": 1010,
"shortName": "EVC",
"chain": "EVC",
"network": "Evrice",
"networkId": 1010,
"nativeCurrency": {
"name": "Evrice",
"symbol": "EVC",
"decimals": 18
},
"rpc": [
"https://meta.evrice.com"
],
"faucets": [],
"infoURL": "https://evrice.com"
},
{
"name": "Newton",
"chainId": 1012,
"shortName": "new",
"chain": "NEW",
"network": "mainnet",
"networkId": 1012,
"nativeCurrency": {
"name": "Newton",
"symbol": "NEW",
"decimals": 18
},
"rpc": [
"https://global.rpc.mainnet.newtonproject.org"
],
"faucets": [],
"infoURL": "https://www.newtonproject.org/"
},
{
"name": "Web3Games Testnet",
"chainId": 102,
"shortName": "w3g",
"chain": "Web3Games",
"network": "Web3Games testnet",
"networkId": 102,
"nativeCurrency": {
"name": "Web3Games",
"symbol": "W3G",
"decimals": 18
},
"rpc": [
"https://substrate.org.cn"
],
"faucets": [],
"infoURL": "https://web3games.org/",
"app_resource": {
"ic_chain_select": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-02.png",
"ic_chain_unselect": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-01.png",
"color_chain_bg": "0x2A31FB"
}
},
{
"name": "Clover Testnet",
"chainId": 1023,
"shortName": "tclv",
"chain": "Clover",
"network": "clover testnet",
"networkId": 1023,
"nativeCurrency": {
"name": "Clover",
"symbol": "CLV",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://clover.finance"
},
{
"name": "Clover Mainnet",
"chainId": 1024,
"shortName": "clv",
"chain": "Clover",
"network": "clover mainnet",
"networkId": 1024,
"nativeCurrency": {
"name": "Clover",
"symbol": "CLV",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://clover.finance"
},
{
"name": "Metadium Mainnet",
"chainId": 11,
"shortName": "meta",
"chain": "META",
"network": "mainnet",
"networkId": 11,
"nativeCurrency": {
"name": "Metadium Mainnet Ether",
"symbol": "META",
"decimals": 18
},
"rpc": [
"https://api.metadium.com/prod"
],
"faucets": [],
"infoURL": "https://metadium.com"
},
{
"name": "IPOS Network",
"chainId": 1122334455,
"shortName": "ipos",
"chain": "IPOS",
"network": "mainnet",
"networkId": 1122334455,
"nativeCurrency": {
"name": "IPOS Network Ether",
"symbol": "IPOS",
"decimals": 18
},
"rpc": [
"https://rpc.iposlab.com",
"https://rpc2.iposlab.com"
],
"faucets": [],
"infoURL": "https://iposlab.com"
},
{
"name": "MathChain",
"chainId": 1139,
"shortName": "MATH",
"chain": "MATH",
"network": "mainnet",
"networkId": 1139,
"nativeCurrency": {
"name": "MathChain",
"symbol": "MATH",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://mathwallet.org"
},
{
"name": "MathChain Testnet",
"chainId": 1140,
"shortName": "tMATH",
"chain": "MATH",
"network": "testnet",
"networkId": 1140,
"nativeCurrency": {
"name": "MathChain",
"symbol": "MATH",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://mathwallet.org/"
},
{
"name": "Metadium Testnet",
"chainId": 12,
"shortName": "kal",
"chain": "META",
"network": "testnet",
"networkId": 12,
"nativeCurrency": {
"name": "Metadium Testnet Ether",
"symbol": "KAL",
"decimals": 18
},
"rpc": [
"https://api.metadium.com/dev"
],
"faucets": [],
"infoURL": "https://metadium.com"
},
{
"name": "Huobi ECO Chain Mainnet",
"chainId": 128,
"shortName": "heco",
"chain": "Heco",
"network": "mainnet",
"networkId": 128,
"nativeCurrency": {
"name": "Huobi ECO Chain Native Token",
"symbol": "HT",
"decimals": 18
},
"rpc": [
"https://http-mainnet.hecochain.com",
"wss://ws-mainnet.hecochain.com"
],
"faucets": [],
"infoURL": "https://www.hecochain.com"
},
{
"name": "Moonbeam Polkadot",
"chainId": 1284,
"shortName": "mbeam",
"chain": "MOON",
"network": "moonbeam",
"networkId": 1284,
"nativeCurrency": {
"name": "Glimmer",
"symbol": "GLMR",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://moonbeam.network/networks/moonbeam/"
},
{
"name": "Moonriver",
"chainId": 1285,
"shortName": "Moonriver",
"chain": "MOVR",
"network": "MOVR",
"networkId": 1285,
"nativeCurrency": {
"name": "MOVR",
"symbol": "MOVR",
"decimals": 18
},
"rpc": [
"https://rpc.moonriver.moonbeam.network"
],
"faucets": [],
"infoURL": "https://moonbeam.network/networks/moonriver/"
},
{
"name": "Moonrock Rococo",
"chainId": 1286,
"shortName": "mrock",
"chain": "MOON",
"network": "moonrock",
"networkId": 1286,
"nativeCurrency": {
"name": "Rocs",
"symbol": "ROC",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": ""
},
{
"name": "Moonbeam Testnet Moonbase Alpha",
"chainId": 1287,
"shortName": "mbase",
"chain": "MOON",
"network": "moonbase",
"networkId": 1287,
"nativeCurrency": {
"name": "Dev",
"symbol": "DEV",
"decimals": 18
},
"rpc": [
"https://rpc.testnet.moonbeam.network",
"wss://wss.testnet.moonbeam.network"
],
"faucets": [],
"infoURL": "https://docs.moonbeam.network/networks/testnet/"
},
{
"name": "Diode Testnet Staging",
"chainId": 13,
"shortName": "dstg",
"chain": "DIODE",
"network": "testnet",
"networkId": 13,
"nativeCurrency": {
"name": "Staging Diodes",
"symbol": "sDIODE",
"decimals": 18
},
"rpc": [
"https://staging.diode.io:8443/",
"wss://staging.diode.io:8443/ws"
],
"faucets": [],
"infoURL": "https://diode.io/staging"
},
{
"name": "Ether-1",
"chainId": 1313114,
"shortName": "etho",
"chain": "ETHO",
"network": "mainnet",
"networkId": 1313114,
"nativeCurrency": {
"name": "Ether-1 Ether",
"symbol": "ETHO",
"decimals": 18
},
"rpc": [
"https://rpc.ether1.org"
],
"faucets": [],
"infoURL": "https://ether1.org"
},
{
"name": "NEAR TestNet",
"chainId": 1313161555,
"shortName": "neart",
"chain": "NEAR",
"network": "testnet",
"networkId": 1313161555,
"nativeCurrency": {
"name": "NEAR",
"symbol": "tNEAR",
"decimals": 24
},
"rpc": [],
"faucets": [
"https://wallet.testnet.near.org"
],
"infoURL": "https://near.org/"
},
{
"name": "NEAR BetaNet",
"chainId": 1313161556,
"shortName": "nearb",
"chain": "NEAR",
"network": "betanet",
"networkId": 1313161556,
"nativeCurrency": {
"name": "NEAR",
"symbol": "bNEAR",
"decimals": 24
},
"rpc": [],
"faucets": [],
"infoURL": "https://near.org/"
},
{
"name": "Xerom",
"chainId": 1313500,
"shortName": "xero",
"chain": "XERO",
"network": "mainnet",
"networkId": 1313500,
"nativeCurrency": {
"name": "Xerom Ether",
"symbol": "XERO",
"decimals": 18
},
"rpc": [
"https://rpc.xerom.org"
],
"faucets": [],
"infoURL": "https://xerom.org"
},
{
"name": "PepChain Churchill",
"chainId": 13371337,
"shortName": "tpep",
"chain": "PEP",
"network": "testnet",
"networkId": 13371337,
"nativeCurrency": {
"name": "PepChain Churchill Ether",
"symbol": "TPEP",
"decimals": 18
},
"rpc": [
"https://churchill-rpc.pepchain.io"
],
"faucets": [],
"infoURL": "https://pepchain.io"
},
{
"name": "Flare Mainnet",
"chainId": 14,
"shortName": "flr",
"chain": "FLR",
"network": "flare",
"networkId": 14,
"nativeCurrency": {
"name": "Spark",
"symbol": "FLR",
"decimals": 18
},
"rpc": [
"https://rpc.ankr.com/flare",
"https://flare.rpc.thirdweb.com"
],
"faucets": [],
"infoURL": "https://flare.xyz"
},
{
"name": "Diode Prenet",
"chainId": 15,
"shortName": "diode",
"chain": "DIODE",
"network": "mainnet",
"networkId": 15,
"nativeCurrency": {
"name": "Diodes",
"symbol": "DIODE",
"decimals": 18
},
"rpc": [
"https://prenet.diode.io:8443/",
"wss://prenet.diode.io:8443/ws"
],
"faucets": [],
"infoURL": "https://diode.io/prenet"
},
{
"name": "Flare Testnet Coston",
"chainId": 16,
"shortName": "cflr",
"chain": "FLR",
"network": "coston",
"networkId": 16,
"nativeCurrency": {
"name": "Coston Spark",
"symbol": "CFLR",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://github.com/flare-eng/coston"
},
{
"name": "Lightstreams Testnet",
"chainId": 162,
"shortName": "tpht",
"chain": "PHT",
"network": "sirius",
"networkId": 162,
"nativeCurrency": {
"name": "Lightstreams PHT",
"symbol": "PHT",
"decimals": 18
},
"rpc": [
"https://node.sirius.lightstreams.io"
],
"faucets": [
"https://discuss.lightstreams.network/t/request-test-tokens"
],
"infoURL": "https://explorer.sirius.lightstreams.io"
},
{
"name": "Atheios",
"chainId": 1620,
"shortName": "ath",
"chain": "ATH",
"network": "mainnet",
"networkId": 11235813,
"nativeCurrency": {
"name": "Atheios Ether",
"symbol": "ATH",
"decimals": 18
},
"rpc": [
"https://wallet.atheios.com:8797"
],
"faucets": [],
"infoURL": "https://atheios.com"
},
{
"name": "Lightstreams Mainnet",
"chainId": 163,
"shortName": "pht",
"chain": "PHT",
"network": "mainnet",
"networkId": 163,
"nativeCurrency": {
"name": "Lightstreams PHT",
"symbol": "PHT",
"decimals": 18
},
"rpc": [
"https://node.mainnet.lightstreams.io"
],
"faucets": [],
"infoURL": "https://explorer.lightstreams.io"
},
{
"name": "Harmony Mainnet Shard 0",
"chainId": 1666600000,
"shortName": "hmy-s0",
"chain": "Harmony",
"network": "mainnet",
"networkId": 1666600000,
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"rpc": [
"https://rpc.s0.t.hmny.io"
],
"faucets": [],
"infoURL": "https://www.harmony.one/"
},
{
"name": "Harmony Mainnet Shard 1",
"chainId": 1666600001,
"shortName": "hmy-s1",
"chain": "Harmony",
"network": "mainnet",
"networkId": 1666600001,
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"rpc": [
"https://rpc.s1.t.hmny.io"
],
"faucets": [],
"infoURL": "https://www.harmony.one/"
},
{
"name": "Harmony Mainnet Shard 2",
"chainId": 1666600002,
"shortName": "hmy-s2",
"chain": "Harmony",
"network": "mainnet",
"networkId": 1666600002,
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"rpc": [
"https://rpc.s2.t.hmny.io"
],
"faucets": [],
"infoURL": "https://www.harmony.one/"
},
{
"name": "Harmony Mainnet Shard 3",
"chainId": 1666600003,
"shortName": "hmy-s3",
"chain": "Harmony",
"network": "mainnet",
"networkId": 1666600003,
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"rpc": [
"https://rpc.s3.t.hmny.io"
],
"faucets": [],
"infoURL": "https://www.harmony.one/"
},
{
"name": "ThaiChain 2.0 ThaiFi",
"chainId": 17,
"shortName": "tfi",
"chain": "TCH",
"network": "thaifi",
"networkId": 17,
"nativeCurrency": {
"name": "Thaifi Ether",
"symbol": "TFI",
"decimals": 18
},
"rpc": [
"https://rpc.thaifi.com"
],
"faucets": [],
"infoURL": "https://exp.thaifi.com"
},
{
"name": "ThunderCore Testnet",
"chainId": 18,
"shortName": "TST",
"chain": "TST",
"network": "testnet",
"networkId": 18,
"nativeCurrency": {
"name": "ThunderCore Testnet Ether",
"symbol": "TST",
"decimals": 18
},
"rpc": [
"https://testnet-rpc.thundercore.com"
],
"faucets": [
"https://faucet-testnet.thundercore.com"
],
"infoURL": "https://thundercore.com"
},
{
"name": "IOLite",
"chainId": 18289463,
"shortName": "ilt",
"chain": "ILT",
"network": "mainnet",
"networkId": 18289463,
"nativeCurrency": {
"name": "IOLite Ether",
"symbol": "ILT",
"decimals": 18
},
"rpc": [
"https://net.iolite.io"
],
"faucets": [],
"infoURL": "https://iolite.io"
},
{
"name": "Teslafunds",
"chainId": 1856,
"shortName": "tsf",
"chain": "TSF",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "Teslafunds Ether",
"symbol": "TSF",
"decimals": 18
},
"rpc": [
"https://tsfapi.europool.me"
],
"faucets": [],
"infoURL": "https://teslafunds.io"
},
{
"name": "EtherGem",
"chainId": 1987,
"shortName": "egem",
"chain": "EGEM",
"network": "mainnet",
"networkId": 1987,
"nativeCurrency": {
"name": "EtherGem Ether",
"symbol": "EGEM",
"decimals": 18
},
"rpc": [
"https://jsonrpc.egem.io/custom"
],
"faucets": [],
"infoURL": "https://egem.io"
},
{
"name": "Expanse Network",
"chainId": 2,
"shortName": "exp",
"chain": "EXP",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "Expanse Network Ether",
"symbol": "EXP",
"decimals": 18
},
"rpc": [
"https://node.expanse.tech"
],
"faucets": [],
"infoURL": "https://expanse.tech"
},
{
"name": "ELA-ETH-Sidechain Mainnet",
"chainId": 20,
"shortName": "elaeth",
"chain": "ETH",
"network": "mainnet",
"networkId": 20,
"nativeCurrency": {
"name": "Elastos",
"symbol": "ELA",
"decimals": 18
},
"rpc": [
"https://mainrpc.elaeth.io"
],
"faucets": [],
"infoURL": "https://www.elastos.org/"
},
{
"name": "Akroma",
"chainId": 200625,
"shortName": "aka",
"chain": "AKA",
"network": "mainnet",
"networkId": 200625,
"nativeCurrency": {
"name": "Akroma Ether",
"symbol": "AKA",
"decimals": 18
},
"rpc": [
"https://remote.akroma.io"
],
"faucets": [],
"infoURL": "https://akroma.io"
},
{
"name": "420coin",
"chainId": 2020,
"shortName": "420",
"chain": "420",
"network": "mainnet",
"networkId": 2020,
"nativeCurrency": {
"name": "Fourtwenty",
"symbol": "420",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://420integrated.com"
},
{
"name": "Edgeware Mainnet",
"chainId": 2021,
"shortName": "edg",
"chain": "EDG",
"network": "mainnet",
"networkId": 2021,
"nativeCurrency": {
"name": "Edge",
"symbol": "EDG",
"decimals": 18
},
"rpc": [
"https://mainnet1.edgewa.re"
],
"faucets": [],
"infoURL": "http://edgewa.re"
},
{
"name": "Beresheet Testnet",
"chainId": 2022,
"shortName": "edgt",
"chain": "EDG",
"network": "beresheet",
"networkId": 2022,
"nativeCurrency": {
"name": "Testnet Edge",
"symbol": "tEDG",
"decimals": 18
},
"rpc": [
"https://beresheet1.edgewa.re"
],
"faucets": [],
"infoURL": "http://edgewa.re"
},
{
"name": "ELA-ETH-Sidechain Testnet",
"chainId": 21,
"shortName": "elaetht",
"chain": "ETH",
"network": "testnet",
"networkId": 21,
"nativeCurrency": {
"name": "Elastos",
"symbol": "tELA",
"decimals": 18
},
"rpc": [
"https://rpc.elaeth.io"
],
"faucets": [
"https://faucet.elaeth.io/"
],
"infoURL": "https://elaeth.io/"
},
{
"name": "Freight Trust Network",
"chainId": 211,
"shortName": "EDI",
"chain": "EDI",
"network": "freight & trade network",
"networkId": 0,
"nativeCurrency": {
"name": "Freight Trust Native",
"symbol": "0xF",
"decimals": 18
},
"rpc": [
"http://13.57.207.168:3435",
"https://app.freighttrust.net/ftn/${API_KEY}"
],
"faucets": [
"http://faucet.freight.sh"
],
"infoURL": "https://freighttrust.com"
},
{
"name": "Webchain",
"chainId": 24484,
"shortName": "web",
"chain": "WEB",
"network": "mainnet",
"networkId": 37129,
"nativeCurrency": {
"name": "Webchain Ether",
"symbol": "WEB",
"decimals": 18
},
"rpc": [
"https://node1.webchain.network"
],
"faucets": [],
"infoURL": "https://webchain.network"
},
{
"name": "Energy Web Chain",
"chainId": 246,
"shortName": "ewt",
"chain": "Energy Web Chain",
"network": "mainnet",
"networkId": 246,
"nativeCurrency": {
"name": "Energy Web Token",
"symbol": "EWT",
"decimals": 18
},
"rpc": [
"https://rpc.energyweb.org",
"wss://rpc.energyweb.org/ws"
],
"faucets": [],
"infoURL": "https://energyweb.org"
},
{
"name": "ARTIS sigma1",
"chainId": 246529,
"shortName": "ats",
"chain": "ARTIS",
"network": "sigma1",
"networkId": 246529,
"nativeCurrency": {
"name": "ARTIS sigma1 Ether",
"symbol": "ATS",
"decimals": 18
},
"rpc": [
"https://rpc.sigma1.artis.network"
],
"faucets": [],
"infoURL": "https://artis.eco"
},
{
"name": "ARTIS Testnet tau1",
"chainId": 246785,
"shortName": "atstau",
"chain": "ARTIS",
"network": "tau1",
"networkId": 246785,
"nativeCurrency": {
"name": "ARTIS tau1 Ether",
"symbol": "tATS",
"decimals": 18
},
"rpc": [
"https://rpc.tau1.artis.network"
],
"faucets": [],
"infoURL": "https://artis.network"
},
{
"name": "Huobi ECO Chain Testnet",
"chainId": 256,
"shortName": "hecot",
"chain": "Heco",
"network": "testnet",
"networkId": 256,
"nativeCurrency": {
"name": "Huobi ECO Chain Test Native Token",
"symbol": "htt",
"decimals": 18
},
"rpc": [
"https://http-testnet.hecochain.com",
"wss://ws-testnet.hecochain.com"
],
"faucets": [
"https://scan-testnet.hecochain.com/faucet"
],
"infoURL": "https://www.hecochain.com"
},
{
"name": "Auxilium Network Mainnet",
"chainId": 28945486,
"shortName": "auxi",
"chain": "AUX",
"network": "mainnet",
"networkId": 28945486,
"nativeCurrency": {
"name": "Auxilium coin",
"symbol": "AUX",
"decimals": 18
},
"rpc": [
"https://rpc.auxilium.global"
],
"faucets": [],
"infoURL": "https://auxilium.global"
},
{
"name": "RSK Mainnet",
"chainId": 30,
"shortName": "rsk",
"chain": "RSK",
"network": "mainnet",
"networkId": 30,
"nativeCurrency": {
"name": "RSK Mainnet Ether",
"symbol": "RBTC",
"decimals": 18
},
"rpc": [
"https://public-node.rsk.co",
"https://mycrypto.rsk.co"
],
"faucets": [],
"infoURL": "https://rsk.co"
},
{
"name": "RSK Testnet",
"chainId": 31,
"shortName": "trsk",
"chain": "RSK",
"network": "testnet",
"networkId": 31,
"nativeCurrency": {
"name": "RSK Testnet Ether",
"symbol": "tRBTC",
"decimals": 18
},
"rpc": [
"https://public-node.testnet.rsk.co",
"https://mycrypto.testnet.rsk.co"
],
"faucets": [
"https://faucet.testnet.rsk.co"
],
"infoURL": "https://rsk.co"
},
{
"name": "Ethersocial Network",
"chainId": 31102,
"shortName": "esn",
"chain": "ESN",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "Ethersocial Network Ether",
"symbol": "ESN",
"decimals": 18
},
"rpc": [
"https://api.esn.gonspool.com"
],
"faucets": [],
"infoURL": "https://ethersocial.org"
},
{
"name": "Pirl",
"chainId": 3125659152,
"shortName": "pirl",
"chain": "PIRL",
"network": "mainnet",
"networkId": 3125659152,
"nativeCurrency": {
"name": "Pirl Ether",
"symbol": "PIRL",
"decimals": 18
},
"rpc": [
"https://wallrpc.pirl.io"
],
"faucets": [],
"infoURL": "https://pirl.io"
},
{
"name": "GoodData Mainnet",
"chainId": 33,
"shortName": "GooD",
"chain": "GooD",
"network": "mainnet",
"networkId": 33,
"nativeCurrency": {
"name": "GoodData Mainnet Ether",
"symbol": "GooD",
"decimals": 18
},
"rpc": [
"https://rpc.goodata.io"
],
"faucets": [],
"infoURL": "https://www.goodata.org"
},
{
"name": "TBWG Chain",
"chainId": 35,
"shortName": "tbwg",
"chain": "TBWG",
"network": "mainnet",
"networkId": 35,
"nativeCurrency": {
"name": "TBWG Ether",
"symbol": "TBG",
"decimals": 18
},
"rpc": [
"https://rpc.tbwg.io"
],
"faucets": [],
"infoURL": "https://tbwg.io"
},
{
"name": "Joys Digital Mainnet",
"chainId": 35855456,
"shortName": "JOYS",
"chain": "JOYS",
"network": "mainnet",
"networkId": 35855456,
"nativeCurrency": {
"name": "JOYS",
"symbol": "JOYS",
"decimals": 18
},
"rpc": [
"https://node.joys.digital"
],
"faucets": [],
"infoURL": "https://joys.digital"
},
{
"name": "Valorbit",
"chainId": 38,
"shortName": "val",
"chain": "VAL",
"network": "mainnet",
"networkId": 38,
"nativeCurrency": {
"name": "Valorbit",
"symbol": "VAL",
"decimals": 18
},
"rpc": [
"https://rpc.valorbit.com/v2"
],
"faucets": [],
"infoURL": "https://valorbit.com"
},
{
"name": "Lisinski",
"chainId": 385,
"shortName": "lisinski",
"chain": "CRO",
"network": "mainnet",
"networkId": 385,
"nativeCurrency": {
"name": "Lisinski Ether",
"symbol": "LISINSKI",
"decimals": 18
},
"rpc": [
"https://rpc-bitfalls1.lisinski.online"
],
"faucets": [
"https://pipa.lisinski.online"
],
"infoURL": "https://lisinski.online"
},
{
"name": "Energi Mainnet",
"chainId": 39797,
"shortName": "nrg",
"chain": "NRG",
"network": "mainnet",
"networkId": 39797,
"nativeCurrency": {
"name": "Energi",
"symbol": "NRG",
"decimals": 18
},
"rpc": [
"https://nodeapi.gen3.energi.network"
],
"faucets": [],
"infoURL": "https://www.energi.world/"
},
{
"name": "Telos EVM Mainnet",
"chainId": 40,
"shortName": "Telos EVM",
"chain": "TLOS",
"network": "mainnet",
"networkId": 40,
"nativeCurrency": {
"name": "Telos",
"symbol": "TLOS",
"decimals": 18
},
"rpc": [
"https://mainnet.telos.net/evm"
],
"faucets": [],
"infoURL": "https://telos.net"
},
{
"name": "Telos EVM Testnet",
"chainId": 41,
"shortName": "Telos EVM Testnet",
"chain": "TLOS",
"network": "testnet",
"networkId": 41,
"nativeCurrency": {
"name": "Telos",
"symbol": "TLOS",
"decimals": 18
},
"rpc": [
"https://testnet.telos.net/evm"
],
"faucets": [
"https://app.telos.net/testnet/developers"
],
"infoURL": "https://telos.net"
},
{
"name": "Optimistic Ethereum Testnet Goerli",
"chainId": 420,
"shortName": "ogor",
"chain": "ETH",
"network": "goerli",
"networkId": 420,
"nativeCurrency": {
"name": "Görli Ether",
"symbol": "GOR",
"decimals": 18
},
"rpc": [
"https://goerli.optimism.io/"
],
"faucets": [],
"infoURL": "https://optimism.io"
},
{
"name": "pegglecoin",
"chainId": 42069,
"shortName": "PC",
"chain": "42069",
"network": "mainnet",
"networkId": 42069,
"nativeCurrency": {
"name": "pegglecoin",
"symbol": "peggle",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://teampeggle.com"
},
{
"name": "Celo Mainnet",
"chainId": 42220,
"shortName": "CELO",
"chain": "CELO",
"network": "Mainnet",
"networkId": 42220,
"nativeCurrency": {
"name": "CELO",
"symbol": "CELO",
"decimals": 18
},
"rpc": [
"https://forno.celo.org",
"wss://forno.celo.org/ws"
],
"faucets": [],
"infoURL": "https://docs.celo.org/"
},
{
"name": "Darwinia Pangolin Testnet",
"chainId": 43,
"shortName": "darwinia",
"chain": "pangolin",
"network": "free testnet",
"networkId": 43,
"nativeCurrency": {
"name": "Pangolin RING",
"symbol": "PRING",
"decimals": 9
},
"rpc": [],
"faucets": [],
"infoURL": "https://darwinia.network/"
},
{
"name": "Athereum",
"chainId": 43110,
"shortName": "avaeth",
"chain": "ATH",
"network": "athereum",
"networkId": 43110,
"nativeCurrency": {
"name": "Athereum Ether",
"symbol": "ATH",
"decimals": 18
},
"rpc": [
"https://ava.network:21015/ext/evm/rpc"
],
"faucets": [
"http://athfaucet.ava.network//?address=${ADDRESS}"
],
"infoURL": "https://athereum.ava.network"
},
{
"name": "Avalanche Fuji Testnet",
"chainId": 43113,
"shortName": "Fuji",
"chain": "AVAX",
"network": "testnet",
"networkId": 1,
"nativeCurrency": {
"name": "Avalanche",
"symbol": "AVAX",
"decimals": 18
},
"rpc": [
"https://api.avax-test.network/ext/bc/C/rpc"
],
"faucets": [
"https://faucet.avax-test.network/"
],
"infoURL": "https://cchain.explorer.avax-test.network"
},
{
"name": "Celo Alfajores Testnet",
"chainId": 44787,
"shortName": "ALFA",
"chain": "CELO",
"network": "Alfajores",
"networkId": 44787,
"nativeCurrency": {
"name": "CELO",
"symbol": "CELO",
"decimals": 18
},
"rpc": [
"https://alfajores-forno.celo-testnet.org",
"wss://alfajores-forno.celo-testnet.org/ws"
],
"faucets": [
"https://celo.org/developers/faucet",
"https://cauldron.pretoriaresearchlab.io/alfajores-faucet"
],
"infoURL": "https://docs.celo.org/"
},
{
"name": "Energi Testnet",
"chainId": 49797,
"shortName": "tnrg",
"chain": "NRG",
"network": "testnet",
"networkId": 49797,
"nativeCurrency": {
"name": "Energi",
"symbol": "tNRG",
"decimals": 18
},
"rpc": [
"https://nodeapi.test3.energi.network"
],
"faucets": [],
"infoURL": "https://www.energi.world/"
},
{
"name": "Rupaya",
"chainId": 499,
"shortName": "rupx",
"chain": "RUPX",
"network": "mainnet",
"networkId": 499,
"nativeCurrency": {
"name": "Rupaya",
"symbol": "RUPX",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://www.rupx.io"
},
{
"name": "XinFin Network Mainnet",
"chainId": 50,
"shortName": "xdc",
"chain": "XDC",
"network": "mainnet",
"networkId": 50,
"nativeCurrency": {
"name": "XinFin",
"symbol": "XDC",
"decimals": 18
},
"rpc": [
"https://rpc.xinfin.network"
],
"faucets": [],
"infoURL": "https://xinfin.org"
},
{
"name": "XinFin Apothem Testnet",
"chainId": 51,
"shortName": "TXDC",
"chain": "TXDC",
"network": "testnet",
"networkId": 51,
"nativeCurrency": {
"name": "XinFinTest",
"symbol": "TXDC",
"decimals": 18
},
"rpc": [
"https://rpc.apothem.network"
],
"faucets": [],
"infoURL": "https://xinfin.org"
},
{
"name": "CoinEx Smart Chain Mainnet",
"chainId": 52,
"shortName": "cet",
"chain": "CSC",
"network": "mainnet",
"networkId": 52,
"nativeCurrency": {
"name": "CoinEx Chain Native Token",
"symbol": "cet",
"decimals": 18
},
"rpc": [
"https://rpc-mainnet.coinex.net"
],
"faucets": [],
"infoURL": "http://www.coinex.org/"
},
{
"name": "CoinEx Smart Chain Testnet",
"chainId": 53,
"shortName": "tcet",
"chain": "CSC",
"network": "testnet",
"networkId": 53,
"nativeCurrency": {
"name": "CoinEx Chain Test Native Token",
"symbol": "cett",
"decimals": 18
},
"rpc": [
"https://rpc-testnet.coinex.net"
],
"faucets": [],
"infoURL": "http://www.coinex.org/"
},
{
"name": "Tao Network",
"chainId": 558,
"shortName": "tao",
"chain": "TAO",
"network": "core",
"networkId": 558,
"nativeCurrency": {
"name": "Tao",
"symbol": "TAO",
"decimals": 18
},
"rpc": [
"https://rpc.testnet.tao.network",
"http://rpc.testnet.tao.network:8545",
"https://rpc.tao.network",
"wss://rpc.tao.network"
],
"faucets": [],
"infoURL": "https://tao.network"
},
{
"name": "Binance Smart Chain Mainnet",
"chainId": 56,
"shortName": "bnb",
"chain": "BSC",
"network": "mainnet",
"networkId": 56,
"nativeCurrency": {
"name": "Binance Chain Native Token",
"symbol": "BNB",
"decimals": 18
},
"rpc": [
"https://bsc-dataseed1.binance.org",
"https://bsc-dataseed2.binance.org",
"https://bsc-dataseed3.binance.org",
"https://bsc-dataseed4.binance.org",
"https://bsc-dataseed1.defibit.io",
"https://bsc-dataseed2.defibit.io",
"https://bsc-dataseed3.defibit.io",
"https://bsc-dataseed4.defibit.io",
"https://bsc-dataseed1.ninicoin.io",
"https://bsc-dataseed2.ninicoin.io",
"https://bsc-dataseed3.ninicoin.io",
"https://bsc-dataseed4.ninicoin.io",
"wss://bsc-ws-node.nariox.org"
],
"faucets": [],
"infoURL": "https://www.binance.org"
},
{
"name": "Wegochain Rubidium Mainnet",
"chainId": 5869,
"shortName": "rbd",
"chain": "RBD",
"network": "mainnet",
"networkId": 5869,
"nativeCurrency": {
"name": "Rubid",
"symbol": "RBD",
"decimals": 18
},
"rpc": [
"https://proxy.wegochain.io",
"http://wallet.wegochain.io:7764"
],
"faucets": [],
"infoURL": "http://wegochain.io"
},
{
"name": "Acala Mandala Testnet",
"chainId": 595,
"shortName": "maca",
"chain": "mACA",
"network": "testnet",
"networkId": 595,
"nativeCurrency": {
"name": "Acala Mandala Token",
"symbol": "mACA",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://acala.network"
},
{
"name": "Ethereum Classic Testnet Kotti",
"chainId": 6,
"shortName": "kot",
"chain": "ETC",
"network": "kotti",
"networkId": 6,
"nativeCurrency": {
"name": "Kotti Ether",
"symbol": "KOT",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://explorer.jade.builders/?network=kotti"
},
{
"name": "GoChain",
"chainId": 60,
"shortName": "go",
"chain": "GO",
"network": "mainnet",
"networkId": 60,
"nativeCurrency": {
"name": "GoChain Ether",
"symbol": "GO",
"decimals": 18
},
"rpc": [
"https://rpc.gochain.io"
],
"faucets": [],
"infoURL": "https://gochain.io"
},
{
"name": "Aquachain",
"chainId": 61717561,
"shortName": "aqua",
"chain": "AQUA",
"network": "mainnet",
"networkId": 61717561,
"nativeCurrency": {
"name": "Aquachain Ether",
"symbol": "AQUA",
"decimals": 18
},
"rpc": [
"https://c.onical.org",
"https://tx.aquacha.in/api"
],
"faucets": [
"https://aquacha.in/faucet"
],
"infoURL": "https://aquachain.github.io"
},
{
"name": "Ethereum Classic Testnet Morden",
"chainId": 62,
"shortName": "tetc",
"chain": "ETC",
"network": "testnet",
"networkId": 2,
"nativeCurrency": {
"name": "Ethereum Classic Testnet Ether",
"symbol": "TETC",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://ethereumclassic.org"
},
{
"name": "Celo Baklava Testnet",
"chainId": 62320,
"shortName": "BKLV",
"chain": "CELO",
"network": "Baklava",
"networkId": 62320,
"nativeCurrency": {
"name": "CELO",
"symbol": "CELO",
"decimals": 18
},
"rpc": [
"https://baklava-forno.celo-testnet.org"
],
"faucets": [
"https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform",
"https://cauldron.pretoriaresearchlab.io/baklava-faucet"
],
"infoURL": "https://docs.celo.org/"
},
{
"name": "Ethereum Classic Testnet Mordor",
"chainId": 63,
"shortName": "metc",
"chain": "ETC",
"network": "testnet",
"networkId": 7,
"nativeCurrency": {
"name": "Mordor Classic Testnet Ether",
"symbol": "METC",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://github.com/eth-classic/mordor/"
},
{
"name": "Ellaism",
"chainId": 64,
"shortName": "ella",
"chain": "ELLA",
"network": "mainnet",
"networkId": 64,
"nativeCurrency": {
"name": "Ellaism Ether",
"symbol": "ELLA",
"decimals": 18
},
"rpc": [
"https://jsonrpc.ellaism.org"
],
"faucets": [],
"infoURL": "https://ellaism.org"
},
{
"name": "OKExChain Testnet",
"chainId": 65,
"shortName": "tokt",
"chain": "okexchain",
"network": "testnet",
"networkId": 65,
"nativeCurrency": {
"name": "OKExChain Global Utility Token in testnet",
"symbol": "OKT",
"decimals": 18
},
"rpc": [
"https://exchaintestrpc.okex.org"
],
"faucets": [
"https://www.okex.com/drawdex"
],
"infoURL": "https://www.okex.com/okexchain",
"app_resource": {
"ic_home_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_home_bg.png",
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_select.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_unselect.png",
"ic_all_whitelist_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_whitelist_logo.png",
"color_chain_bg": "0x1E2D5D",
"color_chain_text": "0xFFFFFF"
}
},
{
"name": "OKExChain Mainnet",
"chainId": 66,
"shortName": "okt",
"chain": "okexchain",
"network": "mainnet",
"networkId": 66,
"nativeCurrency": {
"name": "OKExChain Global Utility Token",
"symbol": "OKT",
"decimals": 18
},
"rpc": [
"https://exchain.okexcn.com"
],
"faucets": [],
"infoURL": "https://www.okex.com/okexchain"
},
{
"name": "DBChain Testnet",
"chainId": 67,
"shortName": "dbm",
"chain": "DBM",
"network": "testnet",
"networkId": 67,
"nativeCurrency": {
"name": "DBChain Testnet",
"symbol": "DBM",
"decimals": 18
},
"rpc": [
"http://test-rpc.dbmbp.com"
],
"faucets": [],
"infoURL": "http://test.dbmbp.com"
},
{
"name": "SoterOne Mainnet",
"chainId": 68,
"shortName": "SO1",
"chain": "SOTER",
"network": "mainnet",
"networkId": 68,
"nativeCurrency": {
"name": "SoterOne Mainnet Ether",
"symbol": "SOTER",
"decimals": 18
},
"rpc": [
"https://rpc.soter.one"
],
"faucets": [],
"infoURL": "https://www.soterone.com"
},
{
"name": "Karura Network",
"chainId": 686,
"shortName": "kar",
"chain": "KAR",
"network": "mainnet",
"networkId": 686,
"nativeCurrency": {
"name": "Karura Token",
"symbol": "KAR",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://karura.network"
},
{
"name": "Optimistic Ethereum Testnet Kovan",
"chainId": 69,
"shortName": "okov",
"chain": "ETH",
"network": "kovan",
"networkId": 69,
"nativeCurrency": {
"name": "Kovan Ether",
"symbol": "KOR",
"decimals": 18
},
"rpc": [
"https://kovan.optimism.io/"
],
"faucets": [],
"infoURL": "https://optimism.io"
},
{
"name": "ThaiChain",
"chainId": 7,
"shortName": "tch",
"chain": "TCH",
"network": "mainnet",
"networkId": 7,
"nativeCurrency": {
"name": "ThaiChain Ether",
"symbol": "TCH",
"decimals": 18
},
"rpc": [
"https://rpc.dome.cloud"
],
"faucets": [],
"infoURL": "https://thaichain.io"
},
{
"name": "Energy Web Volta Testnet",
"chainId": 73799,
"shortName": "vt",
"chain": "Volta",
"network": "testnet",
"networkId": 73799,
"nativeCurrency": {
"name": "Volta Token",
"symbol": "VT",
"decimals": 18
},
"rpc": [
"https://volta-rpc.energyweb.org",
"wss://volta-rpc.energyweb.org/ws"
],
"faucets": [
"https://voltafaucet.energyweb.org"
],
"infoURL": "https://energyweb.org"
},
{
"name": "Mix",
"chainId": 76,
"shortName": "mix",
"chain": "MIX",
"network": "mainnet",
"networkId": 76,
"nativeCurrency": {
"name": "Mix Ether",
"symbol": "MIX",
"decimals": 18
},
"rpc": [
"https://rpc2.mix-blockchain.org:8647"
],
"faucets": [],
"infoURL": "https://mix-blockchain.org"
},
{
"name": "POA Network Sokol",
"chainId": 77,
"shortName": "poa",
"chain": "POA",
"network": "sokol",
"networkId": 77,
"nativeCurrency": {
"name": "POA Sokol Ether",
"symbol": "POA",
"decimals": 18
},
"rpc": [
"https://sokol.poa.network",
"wss://sokol.poa.network/wss",
"ws://sokol.poa.network:8546"
],
"faucets": [
"https://faucet-sokol.herokuapp.com"
],
"infoURL": "https://poa.network"
},
{
"name": "Musicoin",
"chainId": 7762959,
"shortName": "music",
"chain": "MUSIC",
"network": "mainnet",
"networkId": 7762959,
"nativeCurrency": {
"name": "Musicoin",
"symbol": "MUSIC",
"decimals": 18
},
"rpc": [
"https://mewapi.musicoin.tw"
],
"faucets": [],
"infoURL": "https://musicoin.tw"
},
{
"name": "Mint Testnet",
"chain": "ETH",
"rpc": [
"https://testnet-rpc.mintchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.mintchain.io",
"shortName": "minttest",
"chainId": 1686,
"networkId": 1686,
"icon": "mintTestnet",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-explorer.mintchain.io",
"icon": "mintTestnet",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://testnet-bridge.mintchain.io"
}
]
}
},
{
"name": "Mint Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia-testnet-rpc.mintchain.io"
],
"nativeCurrency": {
"name": "Mint Sepolia Testnet",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.mintchain.io",
"shortName": "Mint Testnet",
"chainId": 1687,
"networkId": 1687,
"icon": "mintTestnet",
"explorers": [
{
"name": "blockscout",
"url": "hhttps://sepolia-testnet-explorer.mintchain.io",
"icon": "mintTestnet",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://sepolia-testnet-bridge.mintchain.io"
}
]
},
"faucets": [
"http://mintchain.io/faucet"
]
},
{
"name": "Ethermint Testnet",
"chainId": 777,
"shortName": "emint",
"chain": "ETHERMINT",
"network": "testnet",
"networkId": 777,
"nativeCurrency": {
"name": "Photon",
"symbol": "Photon",
"decimals": 18
},
"rpc": [
"http://54.210.246.165:8545"
],
"faucets": [],
"infoURL": "https://docs.ethermint.zone"
},
{
"name": "PrimusChain mainnet",
"chainId": 78,
"shortName": "primuschain",
"chain": "PC",
"network": "mainnet",
"networkId": 78,
"nativeCurrency": {
"name": "Primus Ether",
"symbol": "PETH",
"decimals": 18
},
"rpc": [
"https://ethnode.primusmoney.com/mainnet"
],
"faucets": [],
"infoURL": "https://primusmoney.com"
},
{
"name": "Firenze test network",
"chainId": 78110,
"shortName": "firenze",
"chain": "ETH",
"network": "testnet",
"networkId": 78110,
"nativeCurrency": {
"name": "Firenze Ether",
"symbol": "FIN",
"decimals": 18
},
"rpc": [
"https://ethnode.primusmoney.com/firenze"
],
"faucets": [],
"infoURL": "https://primusmoney.com"
},
{
"name": "Acala Network",
"chainId": 787,
"shortName": "aca",
"chain": "ACA",
"network": "mainnet",
"networkId": 787,
"nativeCurrency": {
"name": "Acala Token",
"symbol": "ACA",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://acala.network"
},
{
"name": "GateChain Mainnet",
"chainId": 86,
"shortName": "gt",
"chain": "GT",
"network": "mainnet",
"networkId": 86,
"nativeCurrency": {
"name": "GateToken",
"symbol": "GT",
"decimals": 18
},
"rpc": [
"https://evm.gatenode.cc",
"https://evm-cn1.gatenode.cc:6061"
],
"faucets": [
"https://www.gatescan.org/faucet"
],
"infoURL": "https://www.gatechain.io"
},
{
"name": "Ubiq Network Mainnet",
"chainId": 8,
"shortName": "ubq",
"chain": "UBQ",
"network": "mainnet",
"networkId": 88,
"nativeCurrency": {
"name": "Ubiq Ether",
"symbol": "UBQ",
"decimals": 18
},
"rpc": [
"https://rpc.octano.dev",
"https://pyrus2.ubiqscan.io"
],
"faucets": [],
"infoURL": "https://ubiqsmart.com"
},
{
"name": "Matic Testnet Mumbai",
"chainId": 80001,
"shortName": "maticmum",
"chain": "Matic",
"network": "testnet",
"networkId": 80001,
"nativeCurrency": {
"name": "Matic",
"symbol": "tMATIC",
"decimals": 18
},
"rpc": [
"https://rpc-mumbai.matic.today",
"wss://ws-mumbai.matic.today"
],
"faucets": [
"https://faucet.matic.network/"
],
"infoURL": "https://matic.network/"
},
{
"name": "Meter Mainnet",
"chainId": 82,
"shortName": "Meter",
"chain": "METER",
"network": "mainnet",
"networkId": 82,
"nativeCurrency": {
"name": "Meter",
"symbol": "MTR",
"decimals": 18
},
"rpc": [
"https://rpc.meter.io"
],
"faucets": [],
"infoURL": "https://www.meter.io"
},
{
"name": "Callisto Mainnet",
"chainId": 820,
"shortName": "clo",
"chain": "CLO",
"network": "mainnet",
"networkId": 1,
"nativeCurrency": {
"name": "Callisto Mainnet Ether",
"symbol": "CLO",
"decimals": 18
},
"rpc": [
"https://clo-geth.0xinfra.com"
],
"faucets": [],
"infoURL": "https://callisto.network"
},
{
"name": "Callisto Testnet",
"chainId": 821,
"shortName": "tclo",
"chain": "CLO",
"network": "testnet",
"networkId": 2,
"nativeCurrency": {
"name": "Callisto Testnet Ether",
"symbol": "TCLO",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://callisto.network"
},
{
"name": "Klaytn Mainnet Cypress",
"chainId": 8217,
"shortName": "Cypress",
"chain": "KLAY",
"network": "cypress",
"networkId": 8217,
"nativeCurrency": {
"name": "KLAY",
"symbol": "KLAY",
"decimals": 18
},
"rpc": [
"https://node-api.klaytnapi.com/v1/klaytn"
],
"faucets": [],
"infoURL": "https://www.klaytn.com/"
},
{
"name": "Wanchain",
"chainId": 888,
"shortName": "wan",
"chain": "WAN",
"network": "mainnet",
"networkId": 888,
"nativeCurrency": {
"name": "Wancoin",
"symbol": "WAN",
"decimals": 18
},
"rpc": [
"https://gwan-ssl.wandevs.org:56891/"
],
"faucets": [],
"infoURL": "https://www.wanscan.org"
},
{
"name": "bloxberg",
"chainId": 8995,
"shortName": "berg",
"chain": "bloxberg",
"network": "mainnet",
"networkId": 8995,
"nativeCurrency": {
"name": "BERG",
"symbol": "U+25B3",
"decimals": 18
},
"rpc": [
"https://core.bloxberg.org"
],
"faucets": [
"https://faucet.bloxberg.org/"
],
"infoURL": "https://bloxberg.org"
},
{
"name": "Ubiq Network Testnet",
"chainId": 9,
"shortName": "tubq",
"chain": "UBQ",
"network": "mainnet",
"networkId": 2,
"nativeCurrency": {
"name": "Ubiq Testnet Ether",
"symbol": "TUBQ",
"decimals": 18
},
"rpc": [],
"faucets": [],
"infoURL": "https://ethersocial.org"
},
{
"name": "Binance Smart Chain Testnet",
"chainId": 97,
"shortName": "bnbt",
"chain": "BSC",
"network": "Chapel",
"networkId": 97,
"nativeCurrency": {
"name": "Binance Chain Native Token",
"symbol": "tBNB",
"decimals": 18
},
"rpc": [
"https://data-seed-prebsc-1-s1.binance.org:8545",
"https://data-seed-prebsc-2-s1.binance.org:8545",
"https://data-seed-prebsc-1-s2.binance.org:8545",
"https://data-seed-prebsc-2-s2.binance.org:8545",
"https://data-seed-prebsc-1-s3.binance.org:8545",
"https://data-seed-prebsc-2-s3.binance.org:8545"
],
"faucets": [
"https://testnet.binance.org/faucet-smart"
],
"infoURL": "https://testnet.binance.org/"
},
{
"name": "Nepal Blockchain Network",
"chainId": 977,
"shortName": "yeti",
"chain": "YETI",
"network": "mainnet",
"networkId": 977,
"nativeCurrency": {
"name": "Nepal Blockchain Network Ether",
"symbol": "YETI",
"decimals": 18
},
"rpc": [
"https://api.nepalblockchain.dev",
"https://api.nepalblockchain.network"
],
"faucets": [
"https://faucet.nepalblockchain.network"
],
"infoURL": "https://nepalblockchain.network"
},
{
"name": "POA Network Core",
"chainId": 99,
"shortName": "skl",
"chain": "POA",
"network": "core",
"networkId": 99,
"nativeCurrency": {
"name": "POA Network Core Ether",
"symbol": "SKL",
"decimals": 18
},
"rpc": [
"https://core.poanetwork.dev",
"http://core.poanetwork.dev:8545",
"https://core.poa.network",
"ws://core.poanetwork.dev:8546"
],
"faucets": [],
"infoURL": "https://poa.network"
},
{
"name": "Joys Digital TestNet",
"chainId": 99415706,
"shortName": "TOYS",
"chain": "TOYS",
"network": "testnet",
"networkId": 99415706,
"nativeCurrency": {
"name": "TOYS",
"symbol": "TOYS",
"decimals": 18
},
"rpc": [
"https://toys.joys.cash/"
],
"faucets": [
"https://faucet.joys.digital/"
],
"infoURL": "https://joys.digital"
},
{
"name": "HPB Mainnet",
"chainId": 269,
"shortName": "HPB",
"chain": "HPB",
"network": "mainnet",
"networkId": 100,
"nativeCurrency": {
"name": "HPB",
"symbol": "HPB",
"decimals": 18
},
"rpc": [
"https://hpbnode.com"
],
"faucets": [],
"infoURL": "https://hpb.io"
},
{
"name": "KCC Mainnet",
"chainId": 321,
"shortName": "kcc",
"chain": "KCC",
"network": "mainnet",
"networkId": 321,
"nativeCurrency": {
"name": "KuCoin Token",
"symbol": "KCS",
"decimals": 18
},
"rpc": [
"https://rpc-mainnet.kcc.network",
"wss://rpc-ws-mainnet.kcc.network"
],
"faucets": [],
"infoURL": "https://kcc.io",
"app_resource": {
"ic_chain_select": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-0.png",
"ic_chain_unselect": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-1.png",
"color_chain_bg": "0x27CD96"
},
"explorers": [
{
"name": "KCC Scan (Blockscout)",
"url": "https://scan.kcc.io",
"standard": "EIP3091"
},
{
"name": "KCC Explorer",
"url": "https://explorer.kcc.io",
"standard": "EIP3091"
}
]
},
{
"name": "HALO Mainnet",
"chainId": 1280,
"shortName": "HO",
"chain": "HALO",
"network": "mainnet",
"networkId": 1280,
"nativeCurrency": {
"name": "HALO",
"symbol": "HO",
"decimals": 18
},
"rpc": [
"https://nodes.halo.land"
],
"faucets": [],
"infoURL": "https://halo.land/#/",
"app_resource": {
"ic_chain_select": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371652515.png",
"ic_chain_unselect": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371627579.png",
"color_chain_bg": "0xB1232C"
}
},
{
"name": "UN Chain",
"chainId": 1681681688,
"shortName": "un",
"chain": "UN",
"network": "mainnet",
"networkId": 1681681688,
"nativeCurrency": {
"name": "UN",
"symbol": "UN",
"decimals": 18
},
"rpc": [
"http://116.62.244.90:50121",
"ws://116.62.244.90:60121"
],
"faucets": [],
"infoURL": "http://www.untokencan.com/#/",
"app_resource": {
"ic_chain_select": "https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png",
"ic_chain_unselect": "https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png",
"color_chain_bg": "0x58B2AF"
}
},
{
"name": "Vision Mainnet",
"chainId": 888888,
"shortName": "Vision",
"chain": "Vision - Mainnet",
"network": "mainnet",
"networkId": 888888,
"nativeCurrency": {
"name": "VS",
"symbol": "VS",
"decimals": 18
},
"rpc": [
"https://infragrid.v.network/ethereum/compatible"
],
"faucets": [],
"infoURL": "https://visionscan.org",
"app_resource": {
"ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png",
"ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png",
"color_chain_bg": "0x000000"
}
},
{
"name": "Vision - Vpioneer Testnet",
"chainId": 666666,
"shortName": "Vpioneer",
"chain": "Vision - Vpioneer",
"network": "Vpioneer",
"networkId": 666666,
"nativeCurrency": {
"name": "VS",
"symbol": "VS",
"decimals": 18
},
"rpc": [
"https://vpioneer.infragrid.v.network/ethereum/compatible"
],
"faucets": [
"https://vpioneerfaucet.visionscan.org"
],
"infoURL": "https://visionscan.org",
"app_resource": {
"ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png",
"ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png",
"color_chain_bg": "0x000000"
}
},
{
"name": "SAT L2 Chain",
"chainId": 123778899,
"shortName": "SL2",
"chain": "SL2",
"network": "testnet",
"networkId": 123778899,
"nativeCurrency": {
"name": "SL2",
"symbol": "SL2",
"decimals": 18
},
"rpc": [
"http://123.58.210.13:8546"
],
"faucets": [],
"infoURL": "",
"app_resource": {
"ic_chain_select": "http://106.75.144.161/icon/Smartx_H.png",
"ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png",
"color_chain_bg": "0x8250df"
}
},
{
"name": "Evmos Testnet",
"chain": "Evmos",
"rpc": [
"https://evmos-archive-testnet.api.bdnodes.net:8545"
],
"faucets": [
"https://faucet.evmos.dev"
],
"nativeCurrency": {
"name": "test-Evmos",
"symbol": "tEVMOS",
"decimals": 18
},
"infoURL": "https://evmos.org",
"shortName": "evmos-testnet",
"chainId": 9000,
"networkId": 9000,
"icon": "evmos",
"explorers": [
{
"name": "Evmos EVM Explorer (Blockscout)",
"url": "https://evm.evmos.dev",
"standard": "none",
"icon": "evmos"
},
{
"name": "Evmos Cosmos Explorer",
"url": "https://explorer.evmos.dev",
"standard": "none",
"icon": "evmos"
}
]
},
{
"name": "Evmos",
"chain": "Evmos",
"rpc": [
"https://eth.bd.evmos.org:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Evmos",
"symbol": "EVMOS",
"decimals": 18
},
"infoURL": "https://evmos.org",
"shortName": "evmos",
"chainId": 9001,
"networkId": 9001,
"icon": "evmos",
"explorers": [
{
"name": "Evmos EVM Explorer (Blockscout)",
"url": "https://evm.evmos.org",
"standard": "none",
"icon": "evmos"
},
{
"name": "Evmos Cosmos Explorer (Mintscan)",
"url": "https://www.mintscan.io/evmos",
"standard": "none",
"icon": "evmos"
}
]
},
{
"name": "Songbird Canary-Network",
"chain": "SGB",
"icon": "songbird",
"rpc": [
"https://songbird.towolabs.com/rpc",
"https://sgb.ftso.com.au/ext/bc/C/rpc",
"https://sgb.lightft.so/rpc",
"https://sgb-rpc.ftso.eu"
],
"faucets": [],
"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": "EIP3091"
}
]
},
{
"name": "ELA-DID-Sidechain Mainnet",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Elastos",
"symbol": "ELA",
"decimals": 18
},
"infoURL": "https://www.elastos.org/",
"shortName": "eladid",
"chainId": 22,
"networkId": 22
},
{
"name": "Dithereum Mainnet",
"chain": "DTH",
"icon": "dithereum",
"rpc": [
"https://node-mainnet.dithereum.io"
],
"faucets": [
"https://faucet.dithereum.org"
],
"nativeCurrency": {
"name": "Dither",
"symbol": "DTH",
"decimals": 18
},
"infoURL": "https://dithereum.org",
"shortName": "dthmainnet",
"chainId": 24,
"networkId": 24
},
{
"name": "Genesis L1 testnet",
"chain": "genesis",
"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"
}
]
},
{
"name": "ShibaChain",
"chain": "SHIB",
"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"
}
]
},
{
"name": "Boba Network Rinkeby Testnet",
"chain": "ETH",
"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"
}
]
}
},
{
"name": "Genesis L1",
"chain": "genesis",
"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"
}
]
},
{
"name": "GoodData Testnet",
"chain": "GooD",
"rpc": [
"https://test2.goodata.io"
],
"faucets": [],
"nativeCurrency": {
"name": "GoodData Testnet Ether",
"symbol": "GooD",
"decimals": 18
},
"infoURL": "https://www.goodata.org",
"shortName": "GooDT",
"chainId": 32,
"networkId": 32
},
{
"name": "Dithereum Testnet",
"chain": "DTH",
"icon": "dithereum",
"rpc": [
"https://node-testnet.dithereum.io"
],
"faucets": [
"https://faucet.dithereum.org"
],
"nativeCurrency": {
"name": "Dither",
"symbol": "DTH",
"decimals": 18
},
"infoURL": "https://dithereum.org",
"shortName": "dth",
"chainId": 34,
"networkId": 34
},
{
"name": "Darwinia Crab Network",
"chain": "crab",
"rpc": [
"http://crab-rpc.darwinia.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Crab Network Native Token",
"symbol": "CRAB",
"decimals": 18
},
"infoURL": "https://crab.network/",
"shortName": "crab",
"chainId": 44,
"networkId": 44,
"explorers": [
{
"name": "subscan",
"url": "https://crab.subscan.io",
"standard": "none"
}
]
},
{
"name": "Darwinia Pangoro Testnet",
"chain": "pangoro",
"rpc": [
"http://pangoro-rpc.darwinia.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Pangoro Network Native Token”",
"symbol": "ORING",
"decimals": 18
},
"infoURL": "https://darwinia.network/",
"shortName": "pangoro",
"chainId": 45,
"networkId": 45,
"explorers": [
{
"name": "subscan",
"url": "https://pangoro.subscan.io",
"standard": "none"
}
]
},
{
"name": "Zyx Mainnet",
"chain": "ZYX",
"rpc": [
"https://rpc-1.zyx.network/",
"https://rpc-2.zyx.network/",
"https://rpc-3.zyx.network/",
"https://rpc-4.zyx.network/",
"https://rpc-5.zyx.network/",
"https://rpc-6.zyx.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Zyx",
"symbol": "ZYX",
"decimals": 18
},
"infoURL": "https://zyx.network/",
"shortName": "ZYX",
"chainId": 55,
"networkId": 55,
"explorers": [
{
"name": "zyxscan",
"url": "https://zyxscan.com",
"standard": "none"
}
]
},
{
"name": "Syscoin Mainnet",
"chain": "SYS",
"rpc": [
"https://rpc.syscoin.org",
"wss://rpc.syscoin.org/wss"
],
"faucets": [
"https://faucet.syscoin.org"
],
"nativeCurrency": {
"name": "Syscoin",
"symbol": "SYS",
"decimals": 18
},
"infoURL": "https://www.syscoin.org",
"shortName": "sys",
"chainId": 57,
"networkId": 57,
"explorers": [
{
"name": "Syscoin Block Explorer",
"url": "https://explorer.syscoin.org",
"standard": "EIP3091"
}
]
},
{
"name": "Ontology Mainnet",
"chain": "Ontology",
"rpc": [
"https://dappnode1.ont.io:20339",
"https://dappnode2.ont.io:20339",
"https://dappnode3.ont.io:20339",
"https://dappnode4.ont.io:20339"
],
"faucets": [],
"nativeCurrency": {
"name": "ONG",
"symbol": "ONG",
"decimals": 9
},
"infoURL": "https://ont.io/",
"shortName": "Ontology Mainnet",
"chainId": 58,
"networkId": 58,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.ont.io",
"standard": "EIP3091"
}
]
},
{
"name": "EOS Mainnet",
"chain": "EOS",
"rpc": [
"https://api.eosargentina.io"
],
"faucets": [],
"nativeCurrency": {
"name": "EOS",
"symbol": "EOS",
"decimals": 18
},
"infoURL": "https://eoscommunity.org/",
"shortName": "EOS Mainnet",
"chainId": 59,
"networkId": 59,
"explorers": [
{
"name": "bloks",
"url": "https://bloks.eosargentina.io",
"standard": "EIP3091"
}
]
},
{
"name": "Conflux eSpace (Testnet)",
"chain": "Conflux",
"network": "testnet",
"rpc": [
"https://evmtestnet.confluxrpc.com"
],
"faucets": [
"https://faucet.confluxnetwork.org"
],
"nativeCurrency": {
"name": "CFX",
"symbol": "CFX",
"decimals": 18
},
"infoURL": "https://confluxnetwork.org",
"shortName": "cfxtest",
"chainId": 71,
"networkId": 71,
"icon": "conflux",
"explorers": [
{
"name": "Conflux Scan",
"url": "https://evmtestnet.confluxscan.net",
"standard": "none"
}
]
},
{
"name": "IDC Mainnet",
"chainId": 36713,
"shortName": "idc",
"chain": "IDC",
"network": "mainnet",
"networkId": 36713,
"nativeCurrency": {
"name": "IDC",
"symbol": "IDC",
"decimals": 18
},
"rpc": [
"https://rpc.idcchain.io"
],
"faucets": [],
"infoURL": "https://explorer.idcchain.com",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1734706533803.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1734706518095.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1734706552903.png",
"color_chain_bg": "0x4F25E6",
"color_chain_text": "0xFFFFFF",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1734706574819.png"
}
},
{
"name": "IDChain Mainnet",
"chain": "IDChain",
"network": "mainnet",
"rpc": [
"https://idchain.one/rpc/",
"wss://idchain.one/ws/"
],
"faucets": [],
"nativeCurrency": {
"name": "EIDI",
"symbol": "EIDI",
"decimals": 18
},
"infoURL": "https://idchain.one/begin/",
"shortName": "idchain",
"chainId": 74,
"networkId": 74,
"icon": "idchain",
"explorers": [
{
"name": "explorer",
"url": "https://explorer.idchain.one",
"icon": "etherscan",
"standard": "EIP3091"
}
]
},
{
"name": "GeneChain",
"chain": "GeneChain",
"rpc": [
"https://rpc.genechain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "RNA",
"symbol": "RNA",
"decimals": 18
},
"infoURL": "https://scan.genechain.io/",
"shortName": "GeneChain",
"chainId": 80,
"networkId": 80,
"explorers": [
{
"name": "GeneChain Scan",
"url": "https://scan.genechain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Meter Testnet",
"chain": "METER Testnet",
"rpc": [
"https://rpctest.meter.io"
],
"faucets": [
"https://faucet-warringstakes.meter.io"
],
"nativeCurrency": {
"name": "Meter",
"symbol": "MTR",
"decimals": 18
},
"infoURL": "https://www.meter.io",
"shortName": "MeterTest",
"chainId": 83,
"networkId": 83,
"explorers": [
{
"name": "Meter Testnet Scan",
"url": "https://scan-warringstakes.meter.io",
"standard": "EIP3091"
}
]
},
{
"name": "GateChain Testnet",
"chainId": 85,
"shortName": "gttest",
"chain": "GTTEST",
"networkId": 85,
"nativeCurrency": {
"name": "GateToken",
"symbol": "GT",
"decimals": 18
},
"rpc": [
"https://testnet.gatenode.cc"
],
"faucets": [
"https://www.gatescan.org/testnet/faucet"
],
"explorers": [
{
"name": "GateScan",
"url": "https://www.gatescan.org/testnet",
"standard": "EIP3091"
}
],
"infoURL": "https://www.gatechain.io"
},
{
"name": "Nova Network",
"chain": "NNW",
"icon": "novanetwork",
"rpc": [
"https://rpc.novanetwork.io:9070",
"http://nova.genyrpc.info:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Supernova",
"symbol": "SNT",
"decimals": 18
},
"infoURL": "https://novanetwork.io",
"shortName": "nnw",
"chainId": 87,
"networkId": 87,
"explorers": [
{
"name": "novanetwork",
"url": "https://explorer.novanetwork.io",
"standard": "EIP3091"
}
]
},
{
"name": "TomoChain Testnet",
"chain": "TOMO",
"rpc": [
"https://rpc.testnet.tomochain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "TomoChain",
"symbol": "TOMO",
"decimals": 18
},
"infoURL": "https://tomochain.com",
"shortName": "tomot",
"chainId": 89,
"networkId": 89,
"slip44": 889
},
{
"name": "Garizon Stage0",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s0.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s0",
"chainId": 90,
"networkId": 90,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
]
},
{
"name": "Garizon Stage1",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s1.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s1",
"chainId": 91,
"networkId": 91,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-90",
"type": "shard"
}
},
{
"name": "Garizon Stage2",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s2.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s2",
"chainId": 92,
"networkId": 92,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-90",
"type": "shard"
}
},
{
"name": "Garizon Stage3",
"chain": "GAR",
"network": "mainnet",
"icon": "garizon",
"rpc": [
"https://s3.garizon.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-s3",
"chainId": 93,
"networkId": 93,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-90",
"type": "shard"
}
},
{
"name": "CryptoKylin Testnet",
"chain": "EOS",
"rpc": [
"https://kylin.eosargentina.io"
],
"faucets": [],
"nativeCurrency": {
"name": "EOS",
"symbol": "EOS",
"decimals": 18
},
"infoURL": "https://www.cryptokylin.io/",
"shortName": "Kylin Testnet",
"chainId": 95,
"networkId": 95,
"explorers": [
{
"name": "eosq",
"url": "https://kylin.eosargentina.io",
"standard": "EIP3091"
}
]
},
{
"name": "NEXT Smart Chain",
"chain": "NSC",
"rpc": [
"https://rpc.nextsmartchain.com"
],
"faucets": [
"https://faucet.nextsmartchain.com"
],
"nativeCurrency": {
"name": "NEXT",
"symbol": "NEXT",
"decimals": 18
},
"infoURL": "https://www.nextsmartchain.com/",
"shortName": "nsc",
"chainId": 96,
"networkId": 96,
"explorers": [
{
"name": "Next Smart Chain Explorer",
"url": "https://explorer.nextsmartchain.com",
"standard": "none"
}
]
},
{
"name": "Velas EVM Mainnet",
"chain": "Velas",
"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"
}
]
},
{
"name": "Nebula Testnet",
"chain": "NTN",
"icon": "nebulatestnet",
"rpc": [
"https://testnet.rpc.novanetwork.io:9070",
"http://testnet.rpc.novanetwork.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Nebula X",
"symbol": "NBX",
"decimals": 18
},
"infoURL": "https://novanetwork.io",
"shortName": "ntn",
"chainId": 107,
"networkId": 107,
"explorers": [
{
"name": "nebulatestnet",
"url": "https://explorer.novanetwork.io",
"standard": "EIP3091"
}
]
},
{
"name": "Proton Testnet",
"chain": "XPR",
"rpc": [
"https://protontestnet.greymass.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Proton",
"symbol": "XPR",
"decimals": 4
},
"infoURL": "https://protonchain.com",
"shortName": "xpr",
"chainId": 110,
"networkId": 110
},
{
"name": "Fuse Sparknet",
"chain": "fuse",
"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
},
{
"name": "Decentralized Web Mainnet",
"shortName": "dwu",
"chain": "DWU",
"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
}
},
{
"name": "OYchain Testnet",
"chain": "OYchain",
"rpc": [
"https://rpc.testnet.oychain.io"
],
"faucets": [
"https://faucet.oychain.io"
],
"nativeCurrency": {
"name": "OYchain Token",
"symbol": "OY",
"decimals": 18
},
"infoURL": "https://www.oychain.io",
"shortName": "oychain testnet",
"chainId": 125,
"networkId": 125,
"slip44": 125,
"explorers": [
{
"name": "OYchain Testnet Explorer",
"url": "https://explorer.testnet.oychain.io",
"standard": "none"
}
]
},
{
"name": "OYchain Mainnet",
"chain": "OYchain",
"icon": "oychain",
"rpc": [
"https://rpc.mainnet.oychain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "OYchain Token",
"symbol": "OY",
"decimals": 18
},
"infoURL": "https://www.oychain.io",
"shortName": "oychain mainnet",
"chainId": 126,
"networkId": 126,
"slip44": 126,
"explorers": [
{
"name": "OYchain Mainnet Explorer",
"url": "https://explorer.oychain.io",
"standard": "none"
}
]
},
{
"name": "Factory 127 Mainnet",
"chain": "FETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Factory 127 Token",
"symbol": "FETH",
"decimals": 18
},
"infoURL": "https://www.factory127.com",
"shortName": "feth",
"chainId": 127,
"networkId": 127,
"slip44": 127
},
{
"name": "DAX CHAIN",
"chain": "DAX",
"rpc": [
"https://rpc.prodax.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Prodax",
"symbol": "DAX",
"decimals": 18
},
"infoURL": "https://prodax.io/",
"shortName": "dax",
"chainId": 142,
"networkId": 142
},
{
"name": "Latam-Blockchain Resil Testnet",
"chain": "Resil",
"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
},
{
"name": "Seele Mainnet",
"chain": "Seele",
"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"
}
]
},
{
"name": "BMC Mainnet",
"chain": "BMC",
"rpc": [
"https://mainnet.bmcchain.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTM",
"symbol": "BTM",
"decimals": 18
},
"infoURL": "https://bmc.bytom.io/",
"shortName": "BMC",
"chainId": 188,
"networkId": 188,
"explorers": [
{
"name": "Blockmeta",
"url": "https://bmc.blockmeta.com",
"standard": "none"
}
]
},
{
"name": "BMC Testnet",
"chain": "BMC",
"rpc": [
"https://testnet.bmcchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BTM",
"symbol": "BTM",
"decimals": 18
},
"infoURL": "https://bmc.bytom.io/",
"shortName": "BMCT",
"chainId": 189,
"networkId": 189,
"explorers": [
{
"name": "Blockmeta",
"url": "https://bmctestnet.blockmeta.com",
"standard": "none"
}
]
},
{
"name": "BitTorrent Chain Mainnet",
"chain": "BTTC",
"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"
}
]
},
{
"name": "Arbitrum on xDai",
"chain": "AOX",
"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"
}
},
{
"name": "Permission",
"chain": "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
},
{
"name": "SUR Blockchain Network",
"chain": "SUR",
"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"
}
]
},
{
"name": "Boba Network",
"chain": "ETH",
"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"
}
]
}
},
{
"name": "KCC Testnet",
"chain": "KCC",
"rpc": [
"https://rpc-testnet.kcc.network",
"wss://rpc-ws-testnet.kcc.network"
],
"faucets": [
"https://faucet-testnet.kcc.network"
],
"nativeCurrency": {
"name": "KuCoin Testnet Token",
"symbol": "tKCS",
"decimals": 18
},
"infoURL": "https://scan-testnet.kcc.network",
"shortName": "kcst",
"chainId": 322,
"networkId": 322,
"explorers": [
{
"name": "kcc-scan",
"url": "https://scan-testnet.kcc.network",
"standard": "EIP3091"
}
]
},
{
"name": "Web3Q Mainnet",
"chain": "Web3Q",
"rpc": [
"https://mainnet.web3q.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://web3q.io/home.w3q/",
"shortName": "w3q",
"chainId": 333,
"networkId": 333,
"explorers": [
{
"name": "w3q-mainnet",
"url": "https://explorer.mainnet.web3q.io",
"standard": "EIP3091"
}
]
},
{
"name": "Shiden",
"chain": "SDN",
"rpc": [
"https://rpc.shiden.astar.network:8545",
"wss://shiden.api.onfinality.io/public-ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Shiden",
"symbol": "SDN",
"decimals": 18
},
"infoURL": "https://shiden.astar.network/",
"shortName": "sdn",
"chainId": 336,
"networkId": 336,
"explorers": [
{
"name": "subscan",
"url": "https://shiden.subscan.io",
"standard": "none"
}
]
},
{
"name": "Cronos Testnet",
"chain": "CRO",
"rpc": [
"https://cronos-testnet-3.crypto.org:8545",
"wss://cronos-testnet-3.crypto.org:8546"
],
"faucets": [
"https://cronos.crypto.org/faucet"
],
"nativeCurrency": {
"name": "Crypto.org Test Coin",
"symbol": "TCRO",
"decimals": 18
},
"infoURL": "https://cronos.crypto.org",
"shortName": "tcro",
"chainId": 338,
"networkId": 338,
"explorers": [
{
"name": "Cronos Testnet Explorer",
"url": "https://cronos.crypto.org/explorer/testnet3",
"standard": "none"
}
]
},
{
"name": "Theta Mainnet",
"chain": "Theta",
"rpc": [
"https://eth-rpc-api.thetatoken.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Theta Fuel",
"symbol": "TFUEL",
"decimals": 18
},
"infoURL": "https://www.thetatoken.org/",
"shortName": "theta-mainnet",
"chainId": 361,
"networkId": 361,
"explorers": [
{
"name": "Theta Mainnet Explorer",
"url": "https://explorer.thetatoken.org",
"standard": "EIP3091"
}
]
},
{
"name": "Theta Sapphire Testnet",
"chain": "Theta",
"rpc": [
"https://eth-rpc-api-sapphire.thetatoken.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Theta Fuel",
"symbol": "TFUEL",
"decimals": 18
},
"infoURL": "https://www.thetatoken.org/",
"shortName": "theta-sapphire",
"chainId": 363,
"networkId": 363,
"explorers": [
{
"name": "Theta Sapphire Testnet Explorer",
"url": "https://guardian-testnet-sapphire-explorer.thetatoken.org",
"standard": "EIP3091"
}
]
},
{
"name": "Theta Amber Testnet",
"chain": "Theta",
"rpc": [
"https://eth-rpc-api-amber.thetatoken.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Theta Fuel",
"symbol": "TFUEL",
"decimals": 18
},
"infoURL": "https://www.thetatoken.org/",
"shortName": "theta-amber",
"chainId": 364,
"networkId": 364,
"explorers": [
{
"name": "Theta Amber Testnet Explorer",
"url": "https://guardian-testnet-amber-explorer.thetatoken.org",
"standard": "EIP3091"
}
]
},
{
"name": "Theta Testnet",
"chain": "Theta",
"rpc": [
"https://eth-rpc-api-testnet.thetatoken.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Theta Fuel",
"symbol": "TFUEL",
"decimals": 18
},
"infoURL": "https://www.thetatoken.org/",
"shortName": "theta-testnet",
"chainId": 365,
"networkId": 365,
"explorers": [
{
"name": "Theta Testnet Explorer",
"url": "https://testnet-explorer.thetatoken.org",
"standard": "EIP3091"
}
]
},
{
"name": "Vela1 Chain Mainnet",
"chain": "VELA1",
"rpc": [
"https://rpc.velaverse.io"
],
"faucets": [],
"nativeCurrency": {
"name": "CLASS COIN",
"symbol": "CLASS",
"decimals": 18
},
"infoURL": "https://velaverse.io",
"shortName": "CLASS",
"chainId": 555,
"networkId": 555,
"explorers": [
{
"name": "Vela1 Chain Mainnet Explorer",
"url": "https://exp.velaverse.io",
"standard": "EIP3091"
}
]
},
{
"name": "Metis Stardust Testnet",
"chain": "ETH",
"rpc": [
"https://stardust.metis.io/?owner=588"
],
"faucets": [],
"nativeCurrency": {
"name": "tMetis",
"symbol": "METIS",
"decimals": 18
},
"infoURL": "https://www.metis.io",
"shortName": "metis-stardust",
"chainId": 588,
"networkId": 588,
"explorers": [
{
"name": "blockscout",
"url": "https://stardust-explorer.metis.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-4",
"bridges": [
{
"url": "https://bridge.metis.io"
}
]
}
},
{
"name": "Meshnyan testnet",
"chain": "MeshTestChain",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Meshnyan Testnet Native Token",
"symbol": "MESHT",
"decimals": 18
},
"infoURL": "",
"shortName": "mesh-chain-testnet",
"chainId": 600,
"networkId": 600
},
{
"name": "Pixie Chain Testnet",
"chain": "PixieChain",
"rpc": [
"https://http-testnet.chain.pixie.xyz",
"wss://ws-testnet.chain.pixie.xyz"
],
"faucets": [
"https://chain.pixie.xyz/faucet"
],
"nativeCurrency": {
"name": "Pixie Chain Testnet Native Token",
"symbol": "PCTT",
"decimals": 18
},
"infoURL": "https://scan-testnet.chain.pixie.xyz",
"shortName": "pixie-chain-testnet",
"chainId": 666,
"networkId": 666
},
{
"name": "BlockChain Station Mainnet",
"chain": "BCS",
"rpc": [
"https://rpc-mainnet.bcsdev.io",
"wss://rpc-ws-mainnet.bcsdev.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BCS Token",
"symbol": "BCS",
"decimals": 18
},
"infoURL": "https://blockchainstation.io",
"shortName": "bcs",
"chainId": 707,
"networkId": 707,
"explorers": [
{
"name": "BlockChain Station Explorer",
"url": "https://explorer.bcsdev.io",
"standard": "EIP3091"
}
]
},
{
"name": "BlockChain Station Testnet",
"chain": "BCS",
"rpc": [
"https://rpc-testnet.bcsdev.io",
"wss://rpc-ws-testnet.bcsdev.io"
],
"faucets": [
"https://faucet.bcsdev.io"
],
"nativeCurrency": {
"name": "BCS Testnet Token",
"symbol": "tBCS",
"decimals": 18
},
"infoURL": "https://blockchainstation.io",
"shortName": "tbcs",
"chainId": 708,
"networkId": 708,
"explorers": [
{
"name": "BlockChain Station Explorer",
"url": "https://testnet.bcsdev.io",
"standard": "EIP3091"
}
]
},
{
"name": "Factory 127 Testnet",
"chain": "FETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Factory 127 Token",
"symbol": "FETH",
"decimals": 18
},
"infoURL": "https://www.factory127.com",
"shortName": "tfeth",
"chainId": 721,
"networkId": 721,
"slip44": 721
},
{
"name": "Haic",
"chain": "Haic",
"rpc": [
"https://orig.haichain.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Haicoin",
"symbol": "HAIC",
"decimals": 18
},
"infoURL": "https://www.haichain.io/",
"shortName": "haic",
"chainId": 803,
"networkId": 803
},
{
"name": "Ambros Chain Mainnet",
"chain": "ambroschain",
"rpc": [
"https://mainnet.ambroschain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "AMBROS",
"symbol": "AMBR",
"decimals": 18
},
"infoURL": "https://bcmhunt.com/",
"shortName": "ambros",
"chainId": 880,
"networkId": 880,
"explorers": [
{
"name": "Ambros Chain Explorer",
"url": "https://explorer.ambroschain.com",
"standard": "none"
}
]
},
{
"name": "Garizon Testnet Stage0",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s0-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s0",
"chainId": 900,
"networkId": 900,
"explorers": [
{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
]
},
{
"name": "Garizon Testnet Stage1",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s1-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s1",
"chainId": 901,
"networkId": 901,
"explorers": [
{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-900",
"type": "shard"
}
},
{
"name": "Garizon Testnet Stage2",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s2-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s2",
"chainId": 902,
"networkId": 902,
"explorers": [
{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-900",
"type": "shard"
}
},
{
"name": "Garizon Testnet Stage3",
"chain": "GAR",
"network": "testnet",
"icon": "garizon",
"rpc": [
"https://s3-testnet.garizon.net/rpc"
],
"faucets": [
"https://faucet-testnet.garizon.com"
],
"nativeCurrency": {
"name": "Garizon",
"symbol": "GAR",
"decimals": 18
},
"infoURL": "https://garizon.com",
"shortName": "gar-test-s3",
"chainId": 903,
"networkId": 903,
"explorers": [
{
"name": "explorer",
"url": "https://explorer-testnet.garizon.com",
"icon": "garizon",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-900",
"type": "shard"
}
},
{
"name": "PulseChain Testnet",
"shortName": "tpls",
"chain": "tPLS",
"chainId": 940,
"networkId": 940,
"infoURL": "https://pulsechain.com/",
"rpc": [
"https://rpc.testnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}",
"wss://rpc.testnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "Test Pulse",
"symbol": "tPLS",
"decimals": 18
}
},
{
"name": "Lucky Network",
"chain": "LN",
"rpc": [
"https://rpc.luckynetwork.org",
"wss://ws.lnscan.org",
"https://rpc.lnscan.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Lucky",
"symbol": "L99",
"decimals": 18
},
"infoURL": "https://luckynetwork.org",
"shortName": "ln",
"chainId": 998,
"networkId": 998,
"icon": "lucky",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.luckynetwork.org",
"standard": "none"
},
{
"name": "expedition",
"url": "https://lnscan.org",
"standard": "none"
}
]
},
{
"name": "Sakura",
"chain": "Sakura",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Sakura",
"symbol": "SKU",
"decimals": 18
},
"infoURL": "https://clover.finance/sakura",
"shortName": "sku",
"chainId": 1022,
"networkId": 1022
},
{
"name": "BitTorrent Chain Testnet",
"chain": "BTTC",
"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"
}
]
},
{
"name": "Conflux eSpace",
"chain": "Conflux",
"network": "mainnet",
"rpc": [
"https://evm.confluxrpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "CFX",
"symbol": "CFX",
"decimals": 18
},
"infoURL": "https://confluxnetwork.org",
"shortName": "cfx",
"chainId": 1030,
"networkId": 1030,
"icon": "conflux",
"explorers": [
{
"name": "Conflux Scan",
"url": "https://evm.confluxscan.net",
"standard": "none"
}
]
},
{
"name": "Metis Andromeda Mainnet",
"chain": "ETH",
"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"
}
]
}
},
{
"name": "Iora Chain",
"chain": "IORA",
"network": "iorachain",
"icon": "iorachain",
"rpc": [
"https://dataseed.iorachain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Iora",
"symbol": "IORA",
"decimals": 18
},
"infoURL": "https://iorachain.com",
"shortName": "iora",
"chainId": 1197,
"networkId": 1197,
"explorers": [
{
"name": "ioraexplorer",
"url": "https://explorer.iorachain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Evanesco Testnet",
"chain": "Evanesco Testnet",
"network": "avis",
"rpc": [
"https://seed5.evanesco.org:8547"
],
"faucets": [],
"nativeCurrency": {
"name": "AVIS",
"symbol": "AVIS",
"decimals": 18
},
"infoURL": "https://evanesco.org/",
"shortName": "avis",
"chainId": 1201,
"networkId": 1201
},
{
"name": "World Trade Technical Chain Mainnet",
"chain": "WTT",
"rpc": [
"https://rpc.cadaut.com",
"wss://rpc.cadaut.com/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "World Trade Token",
"symbol": "WTT",
"decimals": 18
},
"infoURL": "http://www.cadaut.com",
"shortName": "wtt",
"chainId": 1202,
"networkId": 2048,
"explorers": [
{
"name": "WTTScout",
"url": "https://explorer.cadaut.com",
"standard": "EIP3091"
}
]
},
{
"name": "Popcateum Mainnet",
"chain": "POPCATEUM",
"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"
}
]
},
{
"name": "EnterChain Mainnet",
"chain": "ENTER",
"network": "mainnet",
"rpc": [
"https://tapi.entercoin.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "EnterCoin",
"symbol": "ENTER",
"decimals": 18
},
"infoURL": "https://entercoin.net",
"shortName": "enter",
"chainId": 1214,
"networkId": 1214,
"icon": "enter",
"explorers": [
{
"name": "Enter Explorer - Expenter",
"url": "https://explorer.entercoin.net",
"icon": "enter",
"standard": "EIP3091"
}
]
},
{
"name": "Moonrock",
"chain": "MOON",
"rpc": [
"https://rpc.api.moonrock.moonbeam.network",
"wss://wss.api.moonrock.moonbeam.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Rocs",
"symbol": "ROC",
"decimals": 18
},
"infoURL": "https://docs.moonbeam.network/learn/platform/networks/overview/",
"shortName": "mrock",
"chainId": 1288,
"networkId": 1288
},
{
"name": "Rangers Protocol Mainnet",
"chain": "Rangers",
"icon": "rangers",
"rpc": [
"https://mainnet.rangersprotocol.com/api/jsonrpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Rangers Protocol Gas",
"symbol": "RPG",
"decimals": 18
},
"infoURL": "https://rangersprotocol.com",
"shortName": "rpg",
"chainId": 2025,
"networkId": 2025,
"slip44": 1008,
"explorers": [
{
"name": "rangersscan",
"url": "https://scan.rangersprotocol.com",
"standard": "none"
}
]
},
{
"name": "Ecoball Mainnet",
"chain": "ECO",
"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"
}
]
},
{
"name": "Ecoball Testnet Espuma",
"chain": "ECO",
"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"
}
]
},
{
"name": "Evanesco Mainnet",
"chain": "EVA",
"network": "mainnet",
"rpc": [
"https://seed4.evanesco.org:8546"
],
"faucets": [],
"nativeCurrency": {
"name": "EVA",
"symbol": "EVA",
"decimals": 18
},
"infoURL": "https://evanesco.org/",
"shortName": "evanesco",
"chainId": 2213,
"networkId": 2213,
"icon": "evanesco",
"explorers": [
{
"name": "Evanesco Explorer",
"url": "https://explorer.evanesco.org",
"standard": "none"
}
]
},
{
"name": "ZCore Testnet",
"chain": "Beach",
"icon": "zcore",
"rpc": [
"https://rpc-testnet.zcore.cash"
],
"faucets": [
"https://faucet.zcore.cash"
],
"nativeCurrency": {
"name": "ZCore",
"symbol": "ZCR",
"decimals": 18
},
"infoURL": "https://zcore.cash",
"shortName": "zcrbeach",
"chainId": 3331,
"networkId": 3331
},
{
"name": "Web3Q Testnet",
"chain": "Web3Q",
"rpc": [
"https://testnet.web3q.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://web3q.io/home.w3q/",
"shortName": "w3q-t",
"chainId": 3333,
"networkId": 3333,
"explorers": [
{
"name": "w3q-testnet",
"url": "https://explorer.testnet.web3q.io",
"standard": "EIP3091"
}
]
},
{
"name": "Bittex Mainnet",
"chain": "BTX",
"rpc": [
"https://rpc1.bittexscan.info",
"https://rpc2.bittexscan.info"
],
"faucets": [],
"nativeCurrency": {
"name": "Bittex",
"symbol": "BTX",
"decimals": 18
},
"infoURL": "https://bittexscan.com",
"shortName": "btx",
"chainId": 3690,
"networkId": 3690,
"icon": "ethereum",
"explorers": [
{
"name": "bittexscan",
"url": "https://bittexscan.com",
"icon": "etherscan",
"standard": "EIP3091"
}
]
},
{
"name": "Fantom Testnet",
"chain": "FTM",
"rpc": [
"https://rpc.testnet.fantom.network"
],
"faucets": [
"https://faucet.fantom.network"
],
"nativeCurrency": {
"name": "Fantom",
"symbol": "FTM",
"decimals": 18
},
"infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet",
"shortName": "tftm",
"chainId": 4002,
"networkId": 4002,
"icon": "fantom",
"explorers": [
{
"name": "ftmscan",
"url": "https://testnet.ftmscan.com",
"icon": "ftmscan",
"standard": "EIP3091"
}
]
},
{
"name": "IoTeX Network Mainnet",
"chain": "iotex.io",
"rpc": [
"https://babel-api.mainnet.iotex.io"
],
"faucets": [],
"nativeCurrency": {
"name": "IoTeX",
"symbol": "IOTX",
"decimals": 18
},
"infoURL": "https://iotex.io",
"shortName": "iotex-mainnet",
"chainId": 4689,
"networkId": 4689,
"explorers": [
{
"name": "iotexscan",
"url": "https://iotexscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "IoTeX Network Testnet",
"chain": "iotex.io",
"rpc": [
"https://babel-api.testnet.iotex.io"
],
"faucets": [
"https://faucet.iotex.io/"
],
"nativeCurrency": {
"name": "IoTeX",
"symbol": "IOTX",
"decimals": 18
},
"infoURL": "https://iotex.io",
"shortName": "iotex-testnet",
"chainId": 4690,
"networkId": 4690,
"explorers": [
{
"name": "testnet iotexscan",
"url": "https://testnet.iotexscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "EraSwap Mainnet",
"chain": "ESN",
"icon": "eraswap",
"rpc": [
"https://mainnet.eraswap.network",
"https://rpc-mumbai.mainnet.eraswap.network"
],
"faucets": [],
"nativeCurrency": {
"name": "EraSwap",
"symbol": "ES",
"decimals": 18
},
"infoURL": "https://eraswap.info/",
"shortName": "es",
"chainId": 5197,
"networkId": 5197
},
{
"name": "Uzmi Network Mainnet",
"chain": "UZMI",
"rpc": [
"https://network.uzmigames.com.br/"
],
"faucets": [],
"nativeCurrency": {
"name": "UZMI",
"symbol": "UZMI",
"decimals": 18
},
"infoURL": "https://uzmigames.com.br/",
"shortName": "UZMI",
"chainId": 5315,
"networkId": 5315
},
{
"name": "Syscoin Tanenbaum Testnet",
"chain": "SYS",
"rpc": [
"https://rpc.tanenbaum.io",
"wss://rpc.tanenbaum.io/wss"
],
"faucets": [
"https://faucet.tanenbaum.io"
],
"nativeCurrency": {
"name": "Testnet Syscoin",
"symbol": "tSYS",
"decimals": 18
},
"infoURL": "https://syscoin.org",
"shortName": "tsys",
"chainId": 5700,
"networkId": 5700,
"explorers": [
{
"name": "Syscoin Testnet Block Explorer",
"url": "https://tanenbaum.io",
"standard": "EIP3091"
}
]
},
{
"name": "Ontology Testnet",
"chain": "Ontology",
"rpc": [
"https://polaris1.ont.io:20339",
"https://polaris2.ont.io:20339",
"https://polaris3.ont.io:20339",
"https://polaris4.ont.io:20339"
],
"faucets": [
"https://developer.ont.io/"
],
"nativeCurrency": {
"name": "ONG",
"symbol": "ONG",
"decimals": 9
},
"infoURL": "https://ont.io/",
"shortName": "Ontology Testnet",
"chainId": 5851,
"networkId": 5851,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.ont.io/testnet",
"standard": "EIP3091"
}
]
},
{
"name": "Pixie Chain Mainnet",
"chain": "PixieChain",
"rpc": [
"https://http-mainnet.chain.pixie.xyz",
"wss://ws-mainnet.chain.pixie.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Pixie Chain Native Token",
"symbol": "PIX",
"decimals": 18
},
"infoURL": "https://chain.pixie.xyz",
"shortName": "pixie-chain",
"chainId": 6626,
"networkId": 6626,
"explorers": [
{
"name": "blockscout",
"url": "https://scan.chain.pixie.xyz",
"standard": "none"
}
]
},
{
"name": "Shyft Mainnet",
"chain": "SHYFT",
"icon": "shyft",
"rpc": [
"https://rpc.shyft.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Shyft",
"symbol": "SHYFT",
"decimals": 18
},
"infoURL": "https://shyft.network",
"shortName": "shyft",
"chainId": 7341,
"networkId": 7341,
"slip44": 2147490989,
"explorers": [
{
"name": "Shyft BX",
"url": "https://bx.shyft.network",
"standard": "EIP3091"
}
]
},
{
"name": "Hazlor Testnet",
"chain": "SCAS",
"rpc": [
"https://hatlas.rpc.hazlor.com:8545",
"wss://hatlas.rpc.hazlor.com:8546"
],
"faucets": [
"https://faucet.hazlor.com"
],
"nativeCurrency": {
"name": "Hazlor Test Coin",
"symbol": "TSCAS",
"decimals": 18
},
"infoURL": "https://hazlor.com",
"shortName": "tscas",
"chainId": 7878,
"networkId": 7878,
"explorers": [
{
"name": "Hazlor Testnet Explorer",
"url": "https://explorer.hazlor.com",
"standard": "none"
}
]
},
{
"name": "Teleport",
"chain": "Teleport",
"rpc": [
"https://evm-rpc.teleport.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Tele",
"symbol": "TELE",
"decimals": 18
},
"infoURL": "https://teleport.network",
"shortName": "teleport",
"chainId": 8000,
"networkId": 8000,
"icon": "teleport",
"explorers": [
{
"name": "Teleport EVM Explorer (Blockscout)",
"url": "https://evm-explorer.teleport.network",
"standard": "none",
"icon": "teleport"
},
{
"name": "Teleport Cosmos Explorer (Big Dipper)",
"url": "https://explorer.teleport.network",
"standard": "none",
"icon": "teleport"
}
]
},
{
"name": "Teleport Testnet",
"chain": "Teleport",
"rpc": [
"https://evm-rpc.testnet.teleport.network"
],
"faucets": [
"https://chain-docs.teleport.network/testnet/faucet.html"
],
"nativeCurrency": {
"name": "Tele",
"symbol": "TELE",
"decimals": 18
},
"infoURL": "https://teleport.network",
"shortName": "teleport-testnet",
"chainId": 8001,
"networkId": 8001,
"icon": "teleport",
"explorers": [
{
"name": "Teleport EVM Explorer (Blockscout)",
"url": "https://evm-explorer.testnet.teleport.network",
"standard": "none",
"icon": "teleport"
},
{
"name": "Teleport Cosmos Explorer (Big Dipper)",
"url": "https://explorer.testnet.teleport.network",
"standard": "none",
"icon": "teleport"
}
]
},
{
"name": "MDGL Testnet",
"chain": "MDGL",
"rpc": [
"https://testnet.mdgl.io"
],
"faucets": [],
"nativeCurrency": {
"name": "MDGL Token",
"symbol": "MDGLT",
"decimals": 18
},
"infoURL": "https://mdgl.io",
"shortName": "mdgl",
"chainId": 8029,
"networkId": 8029
},
{
"name": "GeneChain Adenine Testnet",
"chain": "GeneChain",
"rpc": [
"https://rpc-testnet.genechain.io"
],
"faucets": [
"https://faucet.genechain.io"
],
"nativeCurrency": {
"name": "Testnet RNA",
"symbol": "tRNA",
"decimals": 18
},
"infoURL": "https://scan-testnet.genechain.io/",
"shortName": "GeneChainAdn",
"chainId": 8080,
"networkId": 8080,
"explorers": [
{
"name": "GeneChain Adenine Testnet Scan",
"url": "https://scan-testnet.genechain.io",
"standard": "EIP3091"
}
]
},
{
"name": "TOOL Global Mainnet",
"chain": "OLO",
"rpc": [
"https://mainnet-web3.wolot.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TOOL Global",
"symbol": "OLO",
"decimals": 18
},
"infoURL": "https://ibdt.io",
"shortName": "olo",
"chainId": 8723,
"networkId": 8723,
"slip44": 479,
"explorers": [
{
"name": "OLO Block Explorer",
"url": "https://www.olo.network",
"standard": "EIP3091"
}
]
},
{
"name": "TOOL Global Testnet",
"chain": "OLO",
"rpc": [
"https://testnet-web3.wolot.io"
],
"faucets": [
"https://testnet-explorer.wolot.io"
],
"nativeCurrency": {
"name": "TOOL Global",
"symbol": "OLO",
"decimals": 18
},
"infoURL": "https://testnet-explorer.wolot.io",
"shortName": "tolo",
"chainId": 8724,
"networkId": 8724,
"slip44": 479
},
{
"name": "Ambros Chain Testnet",
"chain": "ambroschain",
"rpc": [
"https://testnet.ambroschain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "AMBROS",
"symbol": "AMBR",
"decimals": 18
},
"infoURL": "https://bcmhunt.com/",
"shortName": "ambrostestnet",
"chainId": 8888,
"networkId": 8888,
"explorers": [
{
"name": "Ambros Chain Explorer",
"url": "https://testexplorer.ambroschain.com",
"standard": "none"
}
]
},
{
"name": "Genesis Coin",
"chain": "Genesis",
"rpc": [
"https://genesis-gn.com",
"wss://genesis-gn.com"
],
"faucets": [],
"nativeCurrency": {
"name": "GN Coin",
"symbol": "GNC",
"decimals": 18
},
"infoURL": "https://genesis-gn.com",
"shortName": "GENEC",
"chainId": 9100,
"networkId": 9100
},
{
"name": "Rangers Protocol Testnet Robin",
"chain": "Rangers",
"icon": "rangers",
"rpc": [
"https://robin.rangersprotocol.com/api/jsonrpc"
],
"faucets": [
"https://robin-faucet.rangersprotocol.com"
],
"nativeCurrency": {
"name": "Rangers Protocol Gas",
"symbol": "tRPG",
"decimals": 18
},
"infoURL": "https://rangersprotocol.com",
"shortName": "trpg",
"chainId": 9527,
"networkId": 9527,
"explorers": [
{
"name": "rangersscan-robin",
"url": "https://robin-rangersscan.rangersprotocol.com",
"standard": "none"
}
]
},
{
"name": "myOwn Testnet",
"chain": "myOwn",
"rpc": [
"https://geth.dev.bccloud.net"
],
"faucets": [],
"nativeCurrency": {
"name": "MYN",
"symbol": "MYN",
"decimals": 18
},
"infoURL": "https://docs.bccloud.net/",
"shortName": "myn",
"chainId": 9999,
"networkId": 9999
},
{
"name": "Blockchain Genesis Mainnet",
"chain": "GEN",
"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
},
{
"name": "WAGMI",
"chain": "WAGMI",
"icon": "wagmi",
"rpc": [
"https://api.trywagmi.xyz/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "WAGMI",
"symbol": "WGM",
"decimals": 18
},
"infoURL": "https://trywagmi.xyz",
"shortName": "WAGMI",
"chainId": 11111,
"networkId": 11111,
"explorers": [
{
"name": "WAGMI Explorer",
"url": "https://trywagmi.xyz",
"standard": "none"
}
]
},
{
"name": "Shyft Testnet",
"chain": "SHYFTT",
"icon": "shyft",
"rpc": [
"https://rpc.testnet.shyft.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Shyft Test Token",
"symbol": "SHYFTT",
"decimals": 18
},
"infoURL": "https://shyft.network",
"shortName": "shyftt",
"chainId": 11437,
"networkId": 11437,
"explorers": [
{
"name": "Shyft Testnet BX",
"url": "https://bx.testnet.shyft.network",
"standard": "EIP3091"
}
]
},
{
"name": "Singularity ZERO Testnet",
"chain": "ZERO",
"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"
}
]
},
{
"name": "Singularity ZERO Mainnet",
"chain": "ZERO",
"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"
}
]
},
{
"name": "Phoenix Mainnet",
"chain": "Phoenix",
"network": "mainnet",
"rpc": [
"https://rpc.phoenixplorer.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Phoenix",
"symbol": "PHX",
"decimals": 18
},
"infoURL": "https://cryptophoenix.org/phoenix",
"shortName": "Phoenix",
"chainId": 13381,
"networkId": 13381,
"icon": "phoenix",
"explorers": [
{
"name": "phoenixplorer",
"url": "https://phoenixplorer.com",
"icon": "phoenixplorer",
"standard": "EIP3091"
}
]
},
{
"name": "MetaDot Mainnet",
"chain": "MTT",
"rpc": [
"https://mainnet.metadot.network"
],
"faucets": [],
"nativeCurrency": {
"name": "MetaDot Token",
"symbol": "MTT",
"decimals": 18
},
"infoURL": "https://metadot.network",
"shortName": "mtt",
"chainId": 16000,
"networkId": 16000
},
{
"name": "MetaDot Testnet",
"chain": "MTTTest",
"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
},
{
"name": "BTCIX Network",
"chain": "BTCIX",
"rpc": [
"https://seed.btcix.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BTCIX Network",
"symbol": "BTCIX",
"decimals": 18
},
"infoURL": "https://bitcolojix.org",
"shortName": "btcix",
"chainId": 19845,
"networkId": 19845,
"explorers": [
{
"name": "BTCIXScan",
"url": "https://btcixscan.com",
"standard": "none"
}
]
},
{
"name": "MintMe.com Coin",
"chain": "MINTME",
"rpc": [
"https://node1.mintme.com"
],
"faucets": [],
"nativeCurrency": {
"name": "MintMe.com Coin",
"symbol": "MINTME",
"decimals": 18
},
"infoURL": "https://www.mintme.com",
"shortName": "mintme",
"chainId": 24734,
"networkId": 37480
},
{
"name": "GoChain Testnet",
"chain": "GO",
"rpc": [
"https://testnet-rpc.gochain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "GoChain Coin",
"symbol": "GO",
"decimals": 18
},
"infoURL": "https://gochain.io",
"shortName": "got",
"chainId": 31337,
"networkId": 31337,
"slip44": 6060,
"explorers": [
{
"name": "GoChain Testnet Explorer",
"url": "https://testnet-explorer.gochain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Emerald Paratime Testnet",
"chain": "Emerald",
"icon": "oasis",
"rpc": [
"https://testnet.emerald.oasis.dev/",
"wss://testnet.emerald.oasis.dev/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Emerald Rose",
"symbol": "ROSE",
"decimals": 18
},
"infoURL": "https://docs.oasis.dev/general/developer-resources/overview",
"shortName": "emerald",
"chainId": 42261,
"networkId": 42261,
"explorers": [
{
"name": "Emerald Paratime Testnet Explorer",
"url": "https://testnet.explorer.emerald.oasis.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Emerald Paratime Mainnet",
"chain": "Emerald",
"icon": "oasis",
"rpc": [
"https://emerald.oasis.dev",
"wss://emerald.oasis.dev/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Emerald Rose",
"symbol": "ROSE",
"decimals": 18
},
"infoURL": "https://docs.oasis.dev/general/developer-resources/overview",
"shortName": "oasis",
"chainId": 42262,
"networkId": 42262,
"explorers": [
{
"name": "Emerald Paratime Mainnet Explorer",
"url": "https://explorer.emerald.oasis.dev",
"standard": "EIP3091"
}
]
},
{
"name": "REI Network",
"chain": "REI",
"rpc": [
"https://rpc.rei.network",
"wss://rpc.rei.network"
],
"faucets": [],
"nativeCurrency": {
"name": "REI",
"symbol": "REI",
"decimals": 18
},
"infoURL": "https://rei.network/",
"shortName": "REI",
"chainId": 47805,
"networkId": 47805,
"explorers": [
{
"name": "rei-scan",
"url": "https://scan.rei.network",
"standard": "none"
}
]
},
{
"name": "REI Chain Mainnet",
"chain": "REI",
"icon": "reichain",
"rpc": [
"https://rei-rpc.moonrhythm.io"
],
"faucets": [
"http://kururu.finance/faucet?chainId=55555"
],
"nativeCurrency": {
"name": "Rei",
"symbol": "REI",
"decimals": 18
},
"infoURL": "https://reichain.io",
"shortName": "rei",
"chainId": 55555,
"networkId": 55555,
"explorers": [
{
"name": "reiscan",
"url": "https://reiscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "REI Chain Testnet",
"chain": "REI",
"icon": "reichain",
"rpc": [
"https://rei-testnet-rpc.moonrhythm.io"
],
"faucets": [
"http://kururu.finance/faucet?chainId=55556"
],
"nativeCurrency": {
"name": "tRei",
"symbol": "tREI",
"decimals": 18
},
"infoURL": "https://reichain.io",
"shortName": "trei",
"chainId": 55556,
"networkId": 55556,
"explorers": [
{
"name": "reiscan",
"url": "https://testnet.reiscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Testnet Chain 0",
"chain": "Thinkium",
"rpc": [
"https://test.thinkiumrpc.net/"
],
"faucets": [
"https://www.thinkiumdev.net/faucet"
],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM-test0",
"chainId": 60000,
"networkId": 60000,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://test0.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Testnet Chain 1",
"chain": "Thinkium",
"rpc": [
"https://test1.thinkiumrpc.net/"
],
"faucets": [
"https://www.thinkiumdev.net/faucet"
],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM-test1",
"chainId": 60001,
"networkId": 60001,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://test1.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Testnet Chain 2",
"chain": "Thinkium",
"rpc": [
"https://test2.thinkiumrpc.net/"
],
"faucets": [
"https://www.thinkiumdev.net/faucet"
],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM-test2",
"chainId": 60002,
"networkId": 60002,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://test2.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Testnet Chain 103",
"chain": "Thinkium",
"rpc": [
"https://test103.thinkiumrpc.net/"
],
"faucets": [
"https://www.thinkiumdev.net/faucet"
],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM-test103",
"chainId": 60103,
"networkId": 60103,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://test103.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "eCredits Mainnet",
"chain": "ECS",
"network": "mainnet",
"rpc": [
"https://rpc.ecredits.com"
],
"faucets": [],
"nativeCurrency": {
"name": "eCredits",
"symbol": "ECS",
"decimals": 18
},
"infoURL": "https://ecredits.com",
"shortName": "ecs",
"chainId": 63000,
"networkId": 63000,
"explorers": [
{
"name": "eCredits MainNet Explorer",
"url": "https://explorer.ecredits.com",
"standard": "EIP3091"
}
]
},
{
"name": "eCredits Testnet",
"chain": "ECS",
"network": "testnet",
"rpc": [
"https://rpc.tst.ecredits.com"
],
"faucets": [
"https://faucet.tst.ecredits.com"
],
"nativeCurrency": {
"name": "eCredits",
"symbol": "ECS",
"decimals": 18
},
"infoURL": "https://ecredits.com",
"shortName": "ecs-testnet",
"chainId": 63001,
"networkId": 63001,
"explorers": [
{
"name": "eCredits TestNet Explorer",
"url": "https://explorer.tst.ecredits.com",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Mainnet Chain 0",
"chain": "Thinkium",
"rpc": [
"https://proxy.thinkiumrpc.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM0",
"chainId": 70000,
"networkId": 70000,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://chain0.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Mainnet Chain 1",
"chain": "Thinkium",
"rpc": [
"https://proxy1.thinkiumrpc.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM1",
"chainId": 70001,
"networkId": 70001,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://chain1.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Mainnet Chain 2",
"chain": "Thinkium",
"rpc": [
"https://proxy2.thinkiumrpc.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM2",
"chainId": 70002,
"networkId": 70002,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://chain2.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Thinkium Mainnet Chain 103",
"chain": "Thinkium",
"rpc": [
"https://proxy103.thinkiumrpc.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "TKM",
"symbol": "TKM",
"decimals": 18
},
"infoURL": "https://thinkium.net/",
"shortName": "TKM103",
"chainId": 70103,
"networkId": 70103,
"explorers": [
{
"name": "thinkiumscan",
"url": "https://chain103.thinkiumscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Polyjuice Testnet",
"chain": "CKB",
"icon": "polyjuice",
"rpc": [
"https://godwoken-testnet-web3-rpc.ckbapp.dev",
"ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws"
],
"faucets": [
"https://faucet.nervos.org/"
],
"nativeCurrency": {
"name": "CKB",
"symbol": "CKB",
"decimals": 8
},
"infoURL": "https://github.com/nervosnetwork/godwoken",
"shortName": "ckb",
"chainId": 71393,
"networkId": 1
},
{
"name": "UB Smart Chain(testnet)",
"chain": "USC",
"network": "testnet",
"rpc": [
"https://testnet.rpc.uschain.network"
],
"faucets": [],
"nativeCurrency": {
"name": "UBC",
"symbol": "UBC",
"decimals": 18
},
"infoURL": "https://www.ubchain.site",
"shortName": "usctest",
"chainId": 99998,
"networkId": 99998
},
{
"name": "UB Smart Chain",
"chain": "USC",
"network": "mainnet",
"rpc": [
"https://rpc.uschain.network"
],
"faucets": [],
"nativeCurrency": {
"name": "UBC",
"symbol": "UBC",
"decimals": 18
},
"infoURL": "https://www.ubchain.site/",
"shortName": "usc",
"chainId": 99999,
"networkId": 99999
},
{
"name": "QuarkChain Mainnet Root",
"chain": "QuarkChain",
"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
},
{
"name": "QuarkChain Mainnet Shard 0",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s0-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Mainnet Shard 1",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s1-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Mainnet Shard 2",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s2-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Mainnet Shard 3",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s3-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Mainnet Shard 4",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s4-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Mainnet Shard 5",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s5-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Mainnet Shard 6",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s6-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Mainnet Shard 7",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-s7-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "BROChain Mainnet",
"chain": "BRO",
"network": "mainnet",
"rpc": [
"https://rpc.brochain.org",
"http://rpc.brochain.org",
"https://rpc.brochain.org/mainnet",
"http://rpc.brochain.org/mainnet"
],
"faucets": [],
"nativeCurrency": {
"name": "Brother",
"symbol": "BRO",
"decimals": 18
},
"infoURL": "https://brochain.org",
"shortName": "bro",
"chainId": 108801,
"networkId": 108801,
"explorers": [
{
"name": "BROChain Explorer",
"url": "https://explorer.brochain.org",
"standard": "EIP3091"
}
]
},
{
"name": "QuarkChain Devnet Root",
"chain": "QuarkChain",
"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
},
{
"name": "QuarkChain Devnet Shard 0",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s0-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Devnet Shard 1",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s1-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Devnet Shard 2",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s2-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Devnet Shard 3",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s3-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Devnet Shard 4",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s4-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Devnet Shard 5",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s5-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Devnet Shard 6",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s6-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "QuarkChain Devnet Shard 7",
"chain": "QuarkChain",
"rpc": [
"https://devnet-s7-ethapi.quarkchain.io",
"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"
}
]
},
{
"name": "Alaya Mainnet",
"chain": "Alaya",
"rpc": [
"https://openapi.alaya.network/rpc",
"wss://openapi.alaya.network/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "ATP",
"symbol": "atp",
"decimals": 18
},
"infoURL": "https://www.alaya.network/",
"shortName": "alaya",
"chainId": 201018,
"networkId": 1,
"icon": "alaya",
"explorers": [
{
"name": "alaya explorer",
"url": "https://scan.alaya.network",
"standard": "none"
}
]
},
{
"name": "Alaya Dev Testnet",
"chain": "Alaya",
"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": "alayadev",
"chainId": 201030,
"networkId": 1,
"icon": "alaya",
"explorers": [
{
"name": "alaya explorer",
"url": "https://devnetscan.alaya.network",
"standard": "none"
}
]
},
{
"name": "PlatON Dev Testnet",
"chain": "PlatON",
"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": "platondev",
"chainId": 210309,
"networkId": 1,
"icon": "platon",
"explorers": [
{
"name": "PlatON explorer",
"url": "https://devnetscan.platon.network",
"standard": "none"
}
]
},
{
"name": "PlatON Mainnet",
"chain": "PlatON",
"network": "mainnet",
"rpc": [
"https://openapi2.platon.network/rpc",
"https://openapi.platon.network/rpc",
"wss://openapi.platon.network/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "LAT",
"symbol": "lat",
"decimals": 18
},
"infoURL": "https://www.platon.network",
"shortName": "platon",
"chainId": 210425,
"networkId": 1,
"icon": "platon",
"explorers": [
{
"name": "PlatON explorer",
"url": "https://scan.platon.network",
"standard": "none"
}
]
},
{
"name": "Social Smart Chain Mainnet",
"chain": "SoChain",
"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": []
},
{
"name": "Polis Testnet",
"chain": "Sparta",
"icon": "polis",
"rpc": [
"https://sparta-rpc.polis.tech"
],
"faucets": [
"https://faucet.polis.tech"
],
"nativeCurrency": {
"name": "tPolis",
"symbol": "tPOLIS",
"decimals": 18
},
"infoURL": "https://polis.tech",
"shortName": "sparta",
"chainId": 333888,
"networkId": 333888
},
{
"name": "Polis Mainnet",
"chain": "Olympus",
"icon": "polis",
"rpc": [
"https://rpc.polis.tech"
],
"faucets": [
"https://faucet.polis.tech"
],
"nativeCurrency": {
"name": "Polis",
"symbol": "POLIS",
"decimals": 18
},
"infoURL": "https://polis.tech",
"shortName": "olympus",
"chainId": 333999,
"networkId": 333999
},
{
"name": "Arbitrum Rinkeby",
"title": "Arbitrum Testnet Rinkeby",
"chainId": 421611,
"shortName": "arb-rinkeby",
"chain": "ETH",
"networkId": 421611,
"nativeCurrency": {
"name": "Arbitrum Rinkeby Ether",
"symbol": "ARETH",
"decimals": 18
},
"rpc": [
"https://rinkeby.arbitrum.io/rpc",
"wss://rinkeby.arbitrum.io/ws"
],
"faucets": [
"http://fauceth.komputing.org?chain=421611&address=${ADDRESS}"
],
"infoURL": "https://arbitrum.io",
"explorers": [
{
"name": "arbitrum-rinkeby",
"url": "https://rinkeby-explorer.arbitrum.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-4",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "Eluvio Content Fabric",
"chain": "Eluvio",
"rpc": [
"https://host-76-74-28-226.contentfabric.io/eth/",
"https://host-76-74-28-232.contentfabric.io/eth/",
"https://host-76-74-29-2.contentfabric.io/eth/",
"https://host-76-74-29-8.contentfabric.io/eth/",
"https://host-76-74-29-34.contentfabric.io/eth/",
"https://host-76-74-29-35.contentfabric.io/eth/",
"https://host-154-14-211-98.contentfabric.io/eth/",
"https://host-154-14-192-66.contentfabric.io/eth/",
"https://host-60-240-133-202.contentfabric.io/eth/",
"https://host-64-235-250-98.contentfabric.io/eth/"
],
"faucets": [],
"nativeCurrency": {
"name": "ELV",
"symbol": "ELV",
"decimals": 18
},
"infoURL": "https://eluv.io",
"shortName": "elv",
"chainId": 955305,
"networkId": 955305,
"slip44": 1011,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.eluv.io",
"standard": "EIP3091"
}
]
},
{
"name": "Kintsugi",
"title": "Kintsugi merge testnet",
"chain": "ETH",
"rpc": [
"https://rpc.kintsugi.themerge.dev"
],
"faucets": [
"http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}",
"https://faucet.kintsugi.themerge.dev"
],
"nativeCurrency": {
"name": "kintsugi Ethere",
"symbol": "kiETH",
"decimals": 18
},
"infoURL": "https://kintsugi.themerge.dev/",
"shortName": "kintsugi",
"chainId": 1337702,
"networkId": 1337702,
"explorers": [
{
"name": "kintsugi explorer",
"url": "https://explorer.kintsugi.themerge.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Sepolia",
"title": "Ethereum Testnet Sepolia",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "SEP",
"decimals": 18
},
"infoURL": "https://sepolia.otterscan.io",
"shortName": "sep",
"chainId": 11155111,
"networkId": 11155111,
"explorers": [
{
"name": "otterscan-sepolia",
"url": "https://sepolia.otterscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "quarkblockchain",
"chain": "QKI",
"rpc": [
"https://hz.rpc.qkiscan.cn",
"https://rpc1.qkiscan.cn",
"https://rpc2.qkiscan.cn",
"https://rpc3.qkiscan.cn",
"https://rpc1.qkiscan.io",
"https://rpc2.qkiscan.io",
"https://rpc3.qkiscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "quarkblockchain Native Token",
"symbol": "QKI",
"decimals": 18
},
"infoURL": "https://qkiscan.io",
"shortName": "qki",
"chainId": 20181205,
"networkId": 20181205
},
{
"name": "Gather Mainnet Network",
"chain": "GTH",
"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"
}
]
},
{
"name": "Neon EVM DevNet",
"chain": "Solana",
"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
},
{
"name": "Neon EVM MainNet",
"chain": "Solana",
"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
},
{
"name": "Neon EVM TestNet",
"chain": "Solana",
"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
},
{
"name": "OneLedger Mainnet",
"chain": "OLT",
"icon": "oneledger",
"rpc": [
"https://mainnet-rpc.oneledger.network"
],
"faucets": [],
"nativeCurrency": {
"name": "OLT",
"symbol": "OLT",
"decimals": 18
},
"infoURL": "https://oneledger.io",
"shortName": "oneledger",
"chainId": 311752642,
"networkId": 311752642,
"explorers": [
{
"name": "OneLedger Block Explorer",
"url": "https://mainnet-explorer.oneledger.network",
"standard": "EIP3091"
}
]
},
{
"name": "Gather Tesnet Network",
"chain": "GTH",
"rpc": [
"https://testnet.gather.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Gather",
"symbol": "GTH",
"decimals": 18
},
"infoURL": "https://gather.network",
"shortName": "tGTH",
"chainId": 356256156,
"networkId": 356256156,
"explorers": [
{
"name": "Blockscout",
"url": "https://testnet-explorer.gather.network",
"standard": "none"
}
]
},
{
"name": "Gather Devnet Network",
"chain": "GTH",
"rpc": [
"https://devnet.gather.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Gather",
"symbol": "GTH",
"decimals": 18
},
"infoURL": "https://gather.network",
"shortName": "dGTH",
"chainId": 486217935,
"networkId": 486217935,
"explorers": [
{
"name": "Blockscout",
"url": "https://devnet-explorer.gather.network",
"standard": "none"
}
]
},
{
"name": "Harmony Testnet Shard 0",
"chain": "Harmony",
"rpc": [
"https://api.s0.b.hmny.io"
],
"faucets": [
"https://faucet.pops.one"
],
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"infoURL": "https://www.harmony.one/",
"shortName": "hmy-b-s0",
"chainId": 1666700000,
"networkId": 1666700000,
"explorers": [
{
"name": "Harmony Testnet Block Explorer",
"url": "https://explorer.pops.one",
"standard": "EIP3091"
}
]
},
{
"name": "Harmony Testnet Shard 1",
"chain": "Harmony",
"rpc": [
"https://api.s1.b.hmny.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"infoURL": "https://www.harmony.one/",
"shortName": "hmy-b-s1",
"chainId": 1666700001,
"networkId": 1666700001
},
{
"name": "Harmony Testnet Shard 2",
"chain": "Harmony",
"rpc": [
"https://api.s2.b.hmny.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"infoURL": "https://www.harmony.one/",
"shortName": "hmy-b-s2",
"chainId": 1666700002,
"networkId": 1666700002
},
{
"name": "Harmony Testnet Shard 3",
"chain": "Harmony",
"rpc": [
"https://api.s3.b.hmny.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"infoURL": "https://www.harmony.one/",
"shortName": "hmy-b-s3",
"chainId": 1666700003,
"networkId": 1666700003
},
{
"name": "DataHopper",
"chain": "HOP",
"rpc": [
"https://23.92.21.121:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "DataHoppers",
"symbol": "HOP",
"decimals": 18
},
"infoURL": "https://www.DataHopper.com",
"shortName": "hop",
"chainId": 2021121117,
"networkId": 2021121117
},
{
"name": "OneLedger Testnet Frankenstein",
"chain": "OLT",
"icon": "oneledger",
"rpc": [
"https://frankenstein-rpc.oneledger.network"
],
"faucets": [
"https://frankenstein-faucet.oneledger.network"
],
"nativeCurrency": {
"name": "OLT",
"symbol": "OLT",
"decimals": 18
},
"infoURL": "https://oneledger.io",
"shortName": "frankenstein",
"chainId": 4216137055,
"networkId": 4216137055,
"explorers": [
{
"name": "OneLedger Block Explorer",
"url": "https://frankenstein-explorer.oneledger.network",
"standard": "EIP3091"
}
]
},
{
"name": "Palm Testnet",
"chain": "Palm",
"icon": "palm",
"rpc": [
"https://palm-testnet.infura.io/v3/{INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "PALM",
"symbol": "PALM",
"decimals": 18
},
"infoURL": "https://palm.io",
"shortName": "tpalm",
"chainId": 11297108099,
"networkId": 11297108099,
"explorers": [
{
"name": "Palm Testnet Explorer",
"url": "https://explorer.palm-uat.xyz",
"standard": "EIP3091",
"icon": "palm"
}
]
},
{
"name": "Palm",
"chain": "Palm",
"icon": "palm",
"rpc": [
"https://palm-mainnet.infura.io/v3/{INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "PALM",
"symbol": "PALM",
"decimals": 18
},
"infoURL": "https://palm.io",
"shortName": "palm",
"chainId": 11297108109,
"networkId": 11297108109,
"explorers": [
{
"name": "Palm Explorer",
"url": "https://explorer.palm.io",
"standard": "EIP3091",
"icon": "palm"
}
]
},
{
"name": "Ntity Mainnet",
"chain": "Ntity",
"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"
}
]
},
{
"name": "Haradev Testnet",
"chain": "Ntity",
"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"
}
]
},
{
"name": "Molereum Network",
"chain": "ETH",
"rpc": [
"https://molereum.jdubedition.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Molereum Ether",
"symbol": "MOLE",
"decimals": 18
},
"infoURL": "https://github.com/Jdubedition/molereum",
"shortName": "mole",
"chainId": 6022140761023,
"networkId": 6022140761023
},
{
"name": "Trust Network Testnet Preview",
"chainId": 15555,
"shortName": "Trust testnet",
"chain": "Trust testnet",
"network": "testnet",
"networkId": 15555,
"nativeCurrency": {
"name": "EVM",
"symbol": "EVM",
"decimals": 18
},
"rpc": [
"https://api.testnet-dev.trust.one"
],
"explorers": [
{
"name": "TRUST Explorer",
"url": "https://trustscan.one",
"standard": "EIP3091"
}
]
},
{
"name": "MetaChain",
"chainId": 20028,
"shortName": "meta",
"chain": "MetaChain",
"network": "mainnet",
"networkId": 20028,
"nativeCurrency": {
"name": "MTC",
"symbol": "MTC",
"decimals": 18
},
"rpc": [
"https://seed1.metachain1.com",
"https://seed2.metachain1.com",
"https://seed3.metachain1.com"
],
"faucets": [],
"infoURL": "http://www.metachain1.com/",
"app_resource": {
"ic_chain_select": "https://block.metachain1.com/tokenmetas/meta1.png",
"ic_chain_unselect": "https://block.metachain1.com/tokenmetas/meta0.png",
"color_chain_bg": "0xf3d275"
}
},
{
"name": "Openpiece Mainnet",
"chain": "OPENPIECE",
"icon": "openpiece",
"network": "mainnet",
"rpc": [
"https://mainnet.openpiece.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Belly",
"symbol": "BELLY",
"decimals": 18
},
"infoURL": "https://cryptopiece.online",
"shortName": "OP",
"chainId": 54,
"networkId": 54,
"explorers": [
{
"name": "Belly Scan",
"url": "https://bellyscan.com",
"standard": "none"
}
]
},
{
"name": "Hoo Smart Chain",
"chain": "HSC",
"rpc": [
"https://http-mainnet.hoosmartchain.com",
"https://http-mainnet2.hoosmartchain.com",
"wss://ws-mainnet.hoosmartchain.com",
"wss://ws-mainnet2.hoosmartchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Hoo Smart Chain Native Token",
"symbol": "HOO",
"decimals": 18
},
"infoURL": "https://www.hoosmartchain.com",
"shortName": "hsc",
"chainId": 70,
"networkId": 70,
"slip44": 1170,
"explorers": [
{
"name": "hooscan",
"url": "https://www.hooscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Zenith Mainnet",
"chain": "Zenith",
"rpc": [
"https://dataserver-us-1.zenithchain.co/",
"https://dataserver-asia-3.zenithchain.co/",
"https://dataserver-asia-4.zenithchain.co/",
"https://dataserver-asia-2.zenithchain.co/"
],
"faucets": [],
"nativeCurrency": {
"name": "ZENITH",
"symbol": "ZENITH",
"decimals": 18
},
"infoURL": "https://www.zenithchain.co/",
"chainId": 79,
"networkId": 79,
"shortName": "zenith",
"explorers": [
{
"name": "zenith scan",
"url": "https://scan.zenithchain.co",
"standard": "EIP3091"
}
]
},
{
"name": "Zenith Testnet (Vilnius)",
"chain": "Zenith",
"rpc": [
"https://vilnius.zenithchain.co/http"
],
"faucets": [
"https://faucet.zenithchain.co/"
],
"nativeCurrency": {
"name": "Vilnius",
"symbol": "VIL",
"decimals": 18
},
"infoURL": "https://www.zenithchain.co/",
"chainId": 81,
"networkId": 81,
"shortName": "VIL",
"explorers": [
{
"name": "vilnius scan",
"url": "https://vilnius.scan.zenithchain.co",
"standard": "EIP3091"
}
]
},
{
"name": "Web3Games Devnet",
"chain": "Web3Games",
"icon": "web3games",
"rpc": [
"https://devnet.web3games.org/evm"
],
"faucets": [],
"nativeCurrency": {
"name": "Web3Games",
"symbol": "W3G",
"decimals": 18
},
"infoURL": "https://web3games.org/",
"shortName": "dw3g",
"chainId": 105,
"networkId": 105,
"explorers": [
{
"name": "Web3Games Explorer",
"url": "https://explorer-devnet.web3games.org",
"standard": "none"
}
]
},
{
"name": "Openpiece Testnet",
"chain": "OPENPIECE",
"icon": "openpiece",
"network": "testnet",
"rpc": [
"https://testnet.openpiece.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Belly",
"symbol": "BELLY",
"decimals": 18
},
"infoURL": "https://cryptopiece.online",
"shortName": "OPtest",
"chainId": 141,
"networkId": 141,
"explorers": [
{
"name": "Belly Scan",
"url": "https://testnet.bellyscan.com",
"standard": "none"
}
]
},
{
"name": "AIOZ Network",
"chain": "AIOZ",
"network": "mainnet",
"icon": "aioz",
"rpc": [
"https://eth-dataseed.aioz.network"
],
"faucets": [],
"nativeCurrency": {
"name": "AIOZ",
"symbol": "AIOZ",
"decimals": 18
},
"infoURL": "https://aioz.network",
"shortName": "aioz",
"chainId": 168,
"networkId": 168,
"slip44": 60,
"explorers": [
{
"name": "AIOZ Network Explorer",
"url": "https://explorer.aioz.network",
"standard": "EIP3091"
}
]
},
{
"name": "SoterOne Mainnet old",
"chain": "SOTER",
"rpc": [
"https://rpc.soter.one"
],
"faucets": [],
"nativeCurrency": {
"name": "SoterOne Mainnet Ether",
"symbol": "SOTER",
"decimals": 18
},
"infoURL": "https://www.soterone.com",
"shortName": "SO1-old",
"chainId": 218,
"networkId": 218,
"status": "deprecated"
},
{
"name": "LACHAIN Mainnet",
"chain": "LA",
"icon": "lachain",
"rpc": [
"https://rpc-mainnet.lachain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "LA",
"symbol": "LA",
"decimals": 18
},
"infoURL": "https://lachain.io",
"shortName": "LA",
"chainId": 225,
"networkId": 225,
"explorers": [
{
"name": "blockscout",
"url": "https://scan.lachain.io",
"standard": "EIP3091"
}
]
},
{
"name": "LACHAIN Testnet",
"chain": "TLA",
"icon": "lachain",
"rpc": [
"https://rpc-testnet.lachain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TLA",
"symbol": "TLA",
"decimals": 18
},
"infoURL": "https://lachain.io",
"shortName": "TLA",
"chainId": 226,
"networkId": 226,
"explorers": [
{
"name": "blockscout",
"url": "https://scan-test.lachain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Setheum",
"chain": "Setheum",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Setheum",
"symbol": "SETM",
"decimals": 18
},
"infoURL": "https://setheum.xyz",
"shortName": "setm",
"chainId": 258,
"networkId": 258
},
{
"name": "Optimism on Gnosis Chain",
"chain": "OGC",
"rpc": [
"https://optimism.gnosischain.com",
"wss://optimism.gnosischain.com/wss"
],
"faucets": [
"https://faucet.gimlu.com/gnosis"
],
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",
"decimals": 18
},
"infoURL": "https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc",
"shortName": "ogc",
"chainId": 300,
"networkId": 300,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.com/xdai/optimism",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "DFK Chain Test",
"chain": "DFK",
"icon": "dfk",
"network": "testnet",
"rpc": [
"https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Jewel",
"symbol": "JEWEL",
"decimals": 18
},
"infoURL": "https://defikingdoms.com",
"shortName": "DFKTEST",
"chainId": 335,
"networkId": 335,
"explorers": [
{
"name": "ethernal",
"url": "https://explorer-test.dfkchain.com",
"icon": "ethereum",
"standard": "none"
}
]
},
{
"name": "Double-A Chain Mainnet",
"chain": "AAC",
"rpc": [
"https://rpc.acuteangle.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Acuteangle Native Token",
"symbol": "AAC",
"decimals": 18
},
"infoURL": "https://www.acuteangle.com/",
"shortName": "aac",
"chainId": 512,
"networkId": 512,
"slip44": 1512,
"explorers": [
{
"name": "aacscan",
"url": "https://scan.acuteangle.com",
"standard": "EIP3091"
}
],
"icon": "aac"
},
{
"name": "Double-A Chain Testnet",
"chain": "AAC",
"icon": "aac",
"rpc": [
"https://rpc-testnet.acuteangle.com"
],
"faucets": [
"https://scan-testnet.acuteangle.com/faucet"
],
"nativeCurrency": {
"name": "Acuteangle Native Token",
"symbol": "AAC",
"decimals": 18
},
"infoURL": "https://www.acuteangle.com/",
"shortName": "aact",
"chainId": 513,
"networkId": 513,
"explorers": [
{
"name": "aacscan-testnet",
"url": "https://scan-testnet.acuteangle.com",
"standard": "EIP3091"
}
]
},
{
"name": "Candle Mainnet",
"chain": "Candle",
"rpc": [
"https://candle-rpc.com/",
"https://rpc.cndlchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "CANDLE",
"symbol": "CNDL",
"decimals": 18
},
"infoURL": "https://candlelabs.org/",
"shortName": "CNDL",
"chainId": 534,
"networkId": 534,
"slip44": 674,
"explorers": [
{
"name": "candlescan",
"url": "https://cndlchain.com",
"standard": "none"
}
]
},
{
"name": "Astar",
"chain": "ASTR",
"rpc": [
"https://rpc.astar.network:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Astar",
"symbol": "ASTR",
"decimals": 18
},
"infoURL": "https://astar.network/",
"shortName": "astr",
"chainId": 592,
"networkId": 592,
"icon": "astar",
"explorers": [
{
"name": "subscan",
"url": "https://astar.subscan.io",
"standard": "none",
"icon": "subscan"
}
]
},
{
"name": "Karura Network Testnet",
"chain": "KAR",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Karura Token",
"symbol": "KAR",
"decimals": 18
},
"infoURL": "https://karura.network",
"shortName": "tkar",
"chainId": 596,
"networkId": 596,
"slip44": 596
},
{
"name": "Acala Network Testnet",
"chain": "ACA",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Acala Token",
"symbol": "ACA",
"decimals": 18
},
"infoURL": "https://acala.network",
"shortName": "taca",
"chainId": 597,
"networkId": 597,
"slip44": 597
},
{
"name": "Star Social Testnet",
"chain": "SNS",
"rpc": [
"https://avastar.cc/ext/bc/C/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Social",
"symbol": "SNS",
"decimals": 18
},
"infoURL": "https://info.avastar.cc",
"shortName": "SNS",
"chainId": 700,
"networkId": 700,
"explorers": [
{
"name": "starscan",
"url": "https://avastar.info",
"standard": "EIP3091"
}
]
},
{
"name": "OpenChain Testnet",
"chain": "OpenChain Testnet",
"rpc": [
"http://mainnet.openchain.info:8545",
"https://mainnet1.openchain.info"
],
"faucets": [
"https://faucet.openchain.info/"
],
"nativeCurrency": {
"name": "Openchain Testnet",
"symbol": "TOPC",
"decimals": 18
},
"infoURL": "https://testnet.openchain.info/",
"shortName": "opc",
"chainId": 776,
"networkId": 776,
"explorers": [
{
"name": "OPEN CHAIN TESTNET",
"url": "https://testnet.openchain.info",
"standard": "none"
}
]
},
{
"name": "Aerochain Testnet",
"chain": "Aerochain",
"network": "testnet",
"rpc": [
"https://testnet-rpc.aerochain.id/"
],
"faucets": [
"https://faucet.aerochain.id/"
],
"nativeCurrency": {
"name": "Aerochain Testnet",
"symbol": "TAero",
"decimals": 18
},
"infoURL": "https://aerochaincoin.org/",
"shortName": "taero",
"chainId": 788,
"networkId": 788,
"explorers": [
{
"name": "aeroscan",
"url": "https://testnet.aeroscan.id",
"standard": "EIP3091"
}
]
},
{
"name": "PulseChain Testnet v2b",
"shortName": "t2bpls",
"chain": "t2bPLS",
"network": "testnet-2b",
"chainId": 941,
"networkId": 941,
"infoURL": "https://pulsechain.com/",
"rpc": [
"https://rpc.v2b.testnet.pulsechain.com/",
"wss://rpc.v2b.testnet.pulsechain.com/"
],
"faucets": [
"https://faucet.v2b.testnet.pulsechain.com/"
],
"nativeCurrency": {
"name": "Test Pulse",
"symbol": "tPLS",
"decimals": 18
}
},
{
"name": "PulseChain Testnet v3",
"shortName": "t3pls",
"chain": "t3PLS",
"network": "testnet-3",
"chainId": 942,
"networkId": 942,
"infoURL": "https://pulsechain.com/",
"rpc": [
"https://rpc.v3.testnet.pulsechain.com/",
"wss://rpc.v3.testnet.pulsechain.com/"
],
"faucets": [
"https://faucet.v3.testnet.pulsechain.com/"
],
"nativeCurrency": {
"name": "Test Pulse",
"symbol": "tPLS",
"decimals": 18
}
},
{
"name": "Eurus Mainnet",
"chain": "EUN",
"network": "eurus",
"rpc": [
"https://mainnet.eurus.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Eurus",
"symbol": "EUN",
"decimals": 18
},
"infoURL": "https://eurus.network",
"shortName": "eun",
"chainId": 1008,
"networkId": 1008,
"icon": "eurus",
"explorers": [
{
"name": "eurusexplorer",
"url": "https://explorer.eurus.network",
"icon": "eurus",
"standard": "none"
}
]
},
{
"name": "CENNZnet old",
"chain": "CENNZnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "CPAY",
"symbol": "CPAY",
"decimals": 18
},
"infoURL": "https://cennz.net",
"shortName": "cennz-old",
"chainId": 1337,
"networkId": 1337,
"status": "deprecated"
},
{
"name": "Sherpax Mainnet",
"chain": "Sherpax Mainnet",
"rpc": [
"https://mainnet.sherpax.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "KSX",
"symbol": "KSX",
"decimals": 18
},
"infoURL": "https://sherpax.io/",
"shortName": "Sherpax",
"chainId": 1506,
"networkId": 1506,
"explorers": [
{
"name": "Sherpax Mainnet Explorer",
"url": "https://evm.sherpax.io",
"standard": "none"
}
]
},
{
"name": "Sherpax Testnet",
"chain": "Sherpax Testnet",
"rpc": [
"https://sherpax-testnet.chainx.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "KSX",
"symbol": "KSX",
"decimals": 18
},
"infoURL": "https://sherpax.io/",
"shortName": "Sherpax Testnet",
"chainId": 1507,
"networkId": 1507,
"explorers": [
{
"name": "Sherpax Testnet Explorer",
"url": "https://evm-pre.sherpax.io",
"standard": "none"
}
]
},
{
"name": "LUDAN Mainnet",
"chain": "LUDAN",
"rpc": [
"https://rpc.ludan.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "LUDAN",
"symbol": "LUDAN",
"decimals": 18
},
"infoURL": "https://www.ludan.org/",
"shortName": "LUDAN",
"icon": "ludan",
"chainId": 1688,
"networkId": 1688
},
{
"name": "BON Network",
"chain": "BON",
"network": "testnet",
"rpc": [
"http://rpc.boyanet.org:8545",
"ws://rpc.boyanet.org:8546"
],
"faucets": [],
"nativeCurrency": {
"name": "BOYACoin",
"symbol": "BOY",
"decimals": 18
},
"infoURL": "https://boyanet.org",
"shortName": "boya",
"chainId": 1898,
"networkId": 1,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.boyanet.org:4001",
"standard": "EIP3091"
}
]
},
{
"name": "Eurus Testnet",
"chain": "EUN",
"network": "eurus-testnet",
"rpc": [
"https://testnet.eurus.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Eurus",
"symbol": "EUN",
"decimals": 18
},
"infoURL": "https://eurus.network",
"shortName": "euntest",
"chainId": 1984,
"networkId": 1984,
"icon": "eurus",
"explorers": [
{
"name": "testnetexplorer",
"url": "https://testnetexplorer.eurus.network",
"icon": "eurus",
"standard": "none"
}
]
},
{
"name": "Milkomeda C1 Mainnet",
"chain": "milkAda",
"icon": "milkomeda",
"network": "mainnet",
"rpc": [
"https://rpc-mainnet-cardano-evm.c1.milkomeda.com",
"wss://rpc-mainnet-cardano-evm.c1.milkomeda.com"
],
"faucets": [],
"nativeCurrency": {
"name": "milkAda",
"symbol": "mADA",
"decimals": 18
},
"infoURL": "https://milkomeda.com",
"shortName": "milkAda",
"chainId": 2001,
"networkId": 2001,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com",
"standard": "none"
}
]
},
{
"name": "CloudWalk Testnet",
"chain": "CloudWalk Testnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "CloudWalk Native Token",
"symbol": "CWN",
"decimals": 18
},
"infoURL": "https://cloudwalk.io",
"shortName": "cloudwalk_testnet",
"chainId": 2008,
"networkId": 2008,
"explorers": [
{
"name": "CloudWalk Testnet Explorer",
"url": "https://explorer.testnet.cloudwalk.io",
"standard": "none"
}
]
},
{
"name": "CloudWalk Mainnet",
"chain": "CloudWalk Mainnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "CloudWalk Native Token",
"symbol": "CWN",
"decimals": 18
},
"infoURL": "https://cloudwalk.io",
"shortName": "cloudwalk_mainnet",
"chainId": 2009,
"networkId": 2009,
"explorers": [
{
"name": "CloudWalk Mainnet Explorer",
"url": "https://explorer.mainnet.cloudwalk.io",
"standard": "none"
}
]
},
{
"name": "Taycan Testnet",
"chain": "Taycan",
"rpc": [
"https://test-taycan.hupayx.io"
],
"faucets": [
"https://ttaycan-faucet.hupayx.io/"
],
"nativeCurrency": {
"name": "test-Shuffle",
"symbol": "tSFL",
"decimals": 18
},
"infoURL": "https://hupayx.io",
"shortName": "taycan-testnet",
"chainId": 2023,
"networkId": 2023,
"explorers": [
{
"name": "Taycan Explorer(Blockscout)",
"url": "https://evmscan-test.hupayx.io",
"standard": "none"
},
{
"name": "Taycan Cosmos Explorer",
"url": "https://cosmoscan-test.hupayx.io",
"standard": "none"
}
]
},
{
"name": "Findora Mainnet",
"chain": "Findora",
"network": "mainnet",
"rpc": [
"https://prod-mainnet.prod.findora.org:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "FRA",
"symbol": "FRA",
"decimals": 18
},
"infoURL": "https://findora.org/",
"shortName": "fra",
"chainId": 2152,
"networkId": 2152,
"explorers": [
{
"name": "findorascan",
"url": "https://evm.findorascan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Findora Testnet",
"chain": "Testnet-anvil",
"network": "testnet",
"rpc": [
"https://prod-testnet.prod.findora.org:8545/"
],
"faucets": [],
"nativeCurrency": {
"name": "FRA",
"symbol": "FRA",
"decimals": 18
},
"infoURL": "https://findora.org/",
"shortName": "findora-testnet",
"chainId": 2153,
"networkId": 2153,
"explorers": [
{
"name": "findorascan",
"url": "https://testnet-anvil.evm.findorascan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Kava EVM Testnet",
"chain": "KAVA",
"network": "testnet",
"rpc": [
"https://evm.evm-alpha.kava.io",
"wss://evm-ws.evm-alpha.kava.io"
],
"faucets": [
"https://faucet.kava.io"
],
"nativeCurrency": {
"name": "Kava",
"symbol": "KAVA",
"decimals": 18
},
"infoURL": "https://www.kava.io",
"shortName": "kava",
"chainId": 2221,
"networkId": 2221,
"icon": "kava",
"explorers": [
{
"name": "Kava Testnet Explorer",
"url": "https://explorer.evm-alpha.kava.io",
"standard": "EIP3091",
"icon": "kava"
}
]
},
{
"name": "VChain Mainnet",
"chain": "VChain",
"rpc": [
"https://bc.vcex.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "VNDT",
"symbol": "VNDT",
"decimals": 18
},
"infoURL": "https://bo.vcex.xyz/",
"shortName": "VChain",
"chainId": 2223,
"networkId": 2223,
"explorers": [
{
"name": "VChain Scan",
"url": "https://scan.vcex.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "TechPay Mainnet",
"chain": "TPC",
"network": "mainnet",
"rpc": [
"https://api.techpay.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "TechPay",
"symbol": "TPC",
"decimals": 18
},
"infoURL": "https://techpay.io/",
"shortName": "tpc",
"chainId": 2569,
"networkId": 2569,
"icon": "techpay",
"explorers": [
{
"name": "tpcscan",
"url": "https://tpcscan.com",
"icon": "techpay",
"standard": "EIP3091"
}
]
},
{
"name": "EZChain C-Chain Mainnet",
"chain": "EZC",
"rpc": [
"https://api.ezchain.com/ext/bc/C/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "EZChain",
"symbol": "EZC",
"decimals": 18
},
"infoURL": "https://ezchain.com",
"shortName": "EZChain",
"chainId": 2612,
"networkId": 2612,
"icon": "ezchain",
"explorers": [
{
"name": "ezchain",
"url": "https://cchain-explorer.ezchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "EZChain C-Chain Testnet",
"chain": "EZC",
"rpc": [
"https://testnet-api.ezchain.com/ext/bc/C/rpc"
],
"faucets": [
"https://testnet-faucet.ezchain.com"
],
"nativeCurrency": {
"name": "EZChain",
"symbol": "EZC",
"decimals": 18
},
"infoURL": "https://ezchain.com",
"shortName": "Fuji-EZChain",
"chainId": 2613,
"networkId": 2613,
"icon": "ezchain",
"explorers": [
{
"name": "ezchain",
"url": "https://testnet-cchain-explorer.ezchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "CENNZnet Rata",
"chain": "CENNZnet",
"network": "rata",
"rpc": [
"https://rata.centrality.me/public"
],
"faucets": [
"https://app-faucet.centrality.me"
],
"nativeCurrency": {
"name": "CPAY",
"symbol": "CPAY",
"decimals": 18
},
"infoURL": "https://cennz.net",
"shortName": "cennz-r",
"chainId": 3000,
"networkId": 3000,
"icon": "cennz"
},
{
"name": "CENNZnet Nikau",
"chain": "CENNZnet",
"network": "nikau",
"rpc": [
"https://nikau.centrality.me/public"
],
"faucets": [
"https://app-faucet.centrality.me"
],
"nativeCurrency": {
"name": "CPAY",
"symbol": "CPAY",
"decimals": 18
},
"infoURL": "https://cennz.net",
"shortName": "cennz-n",
"chainId": 3001,
"networkId": 3001,
"icon": "cennz",
"explorers": [
{
"name": "UNcover",
"url": "https://www.uncoverexplorer.com/?network=Nikau",
"standard": "none"
}
]
},
{
"name": "Web3Q Galileo",
"chain": "Web3Q",
"rpc": [
"https://galileo.web3q.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Web3Q",
"symbol": "W3Q",
"decimals": 18
},
"infoURL": "https://galileo.web3q.io/home.w3q/",
"shortName": "w3q-g",
"chainId": 3334,
"networkId": 3334,
"explorers": [
{
"name": "w3q-galileo",
"url": "https://explorer.galileo.web3q.io",
"standard": "EIP3091"
}
]
},
{
"name": "Paribu Net Mainnet",
"chain": "PRB",
"network": "Paribu Net",
"rpc": [
"https://rpc.paribu.network"
],
"faucets": [],
"nativeCurrency": {
"name": "PRB",
"symbol": "PRB",
"decimals": 18
},
"infoURL": "https://net.paribu.com",
"shortName": "prb",
"chainId": 3400,
"networkId": 3400,
"icon": "prb",
"explorers": [
{
"name": "Paribu Net Explorer",
"url": "https://explorer.paribu.network",
"icon": "explorer",
"standard": "EIP3091"
}
]
},
{
"name": "Paribu Net Testnet",
"chain": "PRB",
"network": "Paribu Net",
"rpc": [
"https://rpc.testnet.paribuscan.com"
],
"faucets": [
"https://faucet.paribuscan.com"
],
"nativeCurrency": {
"name": "PRB",
"symbol": "PRB",
"decimals": 18
},
"infoURL": "https://net.paribu.com",
"shortName": "prbtestnet",
"chainId": 3500,
"networkId": 3500,
"icon": "prb",
"explorers": [
{
"name": "Paribu Net Testnet Explorer",
"url": "https://testnet.paribuscan.com",
"icon": "explorer",
"standard": "EIP3091"
}
]
},
{
"name": "DYNO Mainnet",
"chain": "DYNO",
"rpc": [
"https://api.dynoprotocol.com"
],
"faucets": [
"https://faucet.dynoscan.io"
],
"nativeCurrency": {
"name": "DYNO Token",
"symbol": "DYNO",
"decimals": 18
},
"infoURL": "https://dynoprotocol.com",
"shortName": "dyno",
"chainId": 3966,
"networkId": 3966,
"explorers": [
{
"name": "DYNO Explorer",
"url": "https://dynoscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "DYNO Testnet",
"chain": "DYNO",
"rpc": [
"https://tapi.dynoprotocol.com"
],
"faucets": [
"https://faucet.dynoscan.io"
],
"nativeCurrency": {
"name": "DYNO Token",
"symbol": "tDYNO",
"decimals": 18
},
"infoURL": "https://dynoprotocol.com",
"shortName": "tdyno",
"chainId": 3967,
"networkId": 3967,
"explorers": [
{
"name": "DYNO Explorer",
"url": "https://testnet.dynoscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "AIOZ Network Testnet",
"chain": "AIOZ",
"network": "testnet",
"icon": "aioz",
"rpc": [
"https://eth-ds.testnet.aioz.network"
],
"faucets": [],
"nativeCurrency": {
"name": "testAIOZ",
"symbol": "AIOZ",
"decimals": 18
},
"infoURL": "https://aioz.network",
"shortName": "aioz-testnet",
"chainId": 4102,
"networkId": 4102,
"slip44": 60,
"explorers": [
{
"name": "AIOZ Network Testnet Explorer",
"url": "https://testnet.explorer.aioz.network",
"standard": "EIP3091"
}
]
},
{
"name": "PHI Network",
"chain": "PHI",
"network": "mainnet",
"rpc": [
"https://rpc1.phi.network",
"https://rpc2.phi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "PHI",
"symbol": "Φ",
"decimals": 18
},
"infoURL": "https://phi.network",
"shortName": "PHI",
"chainId": 4181,
"networkId": 4181,
"icon": "phi",
"explorers": [
{
"name": "PHI Explorer",
"url": "https://explorer.phi.network",
"icon": "phi",
"standard": "none"
}
]
},
{
"name": "Venidium Testnet",
"chain": "XVM",
"rpc": [
"https://rpc-evm-testnet.venidium.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Venidium",
"symbol": "XVM",
"decimals": 18
},
"infoURL": "https://venidium.io",
"shortName": "xvm",
"chainId": 4918,
"networkId": 4918,
"explorers": [
{
"name": "Venidium EVM Testnet Explorer",
"url": "https://evm-testnet.venidiumexplorer.com",
"standard": "EIP3091"
}
]
},
{
"name": "Nahmii Mainnet",
"chain": "Nahmii",
"network": "mainnet",
"rpc": [
"https://l2.nahmii.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://nahmii.io",
"shortName": "Nahmii",
"chainId": 5551,
"networkId": 5551,
"icon": "nahmii",
"explorers": [
{
"name": "Nahmii mainnet explorer",
"url": "https://explorer.nahmii.io",
"icon": "nahmii",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.nahmii.io"
}
]
}
},
{
"name": "Nahmii Testnet",
"chain": "Nahmii",
"network": "testnet",
"rpc": [
"https://l2.testnet.nahmii.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://nahmii.io",
"shortName": "Nahmii testnet",
"chainId": 5553,
"networkId": 5553,
"icon": "nahmii",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.testnet.nahmii.io",
"icon": "nahmii",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-3",
"bridges": [
{
"url": "https://bridge.nahmii.io"
}
]
}
},
{
"name": "Digest Swarm Chain",
"chain": "DSC",
"icon": "swarmchain",
"rpc": [
"https://rpc.digestgroup.ltd"
],
"faucets": [],
"nativeCurrency": {
"name": "DigestCoin",
"symbol": "DGCC",
"decimals": 18
},
"infoURL": "https://digestgroup.ltd",
"shortName": "dgcc",
"chainId": 5777,
"networkId": 5777,
"explorers": [
{
"name": "swarmexplorer",
"url": "https://explorer.digestgroup.ltd",
"standard": "EIP3091"
}
]
},
{
"name": "Mammoth Mainnet",
"title": "Mammoth Chain",
"chain": "MMT",
"rpc": [
"https://dataseed.mmtscan.io",
"https://dataseed1.mmtscan.io",
"https://dataseed2.mmtscan.io"
],
"faucets": [
"https://faucet.mmtscan.io/"
],
"nativeCurrency": {
"name": "Mammoth Token",
"symbol": "MMT",
"decimals": 18
},
"infoURL": "https://mmtchain.io/",
"shortName": "mmt",
"chainId": 8898,
"networkId": 8898,
"icon": "mmt",
"explorers": [
{
"name": "mmtscan",
"url": "https://mmtscan.io",
"standard": "EIP3091",
"icon": "mmt"
}
]
},
{
"name": "CryptoCoinPay",
"chain": "CCP",
"rpc": [
"http://node106.cryptocoinpay.info:8545",
"ws://node106.cryptocoinpay.info:8546"
],
"faucets": [],
"icon": "ccp",
"nativeCurrency": {
"name": "CryptoCoinPay",
"symbol": "CCP",
"decimals": 18
},
"infoURL": "https://www.cryptocoinpay.co",
"shortName": "CCP",
"chainId": 10823,
"networkId": 10823,
"explorers": [
{
"name": "CCP Explorer",
"url": "https://cryptocoinpay.info",
"standard": "EIP3091"
}
]
},
{
"name": "Quadrans Blockchain",
"chain": "QDC",
"network": "mainnet",
"icon": "quadrans",
"rpc": [
"https://rpc.quadrans.io",
"https://rpcna.quadrans.io",
"https://explorer.quadrans.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Quadrans Coin",
"symbol": "QDC",
"decimals": 18
},
"infoURL": "https://quadrans.io",
"shortName": "quadrans",
"chainId": 10946,
"networkId": 10946,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.quadrans.io",
"icon": "quadrans",
"standard": "EIP3091"
}
]
},
{
"name": "Quadrans Blockchain Testnet",
"chain": "tQDC",
"network": "testnet",
"icon": "quadrans",
"rpc": [
"https://rpctest.quadrans.io",
"https://explorer.testnet.quadrans.io"
],
"faucets": [
"https://faucetpage.quadrans.io"
],
"nativeCurrency": {
"name": "Quadrans Testnet Coin",
"symbol": "tQDC",
"decimals": 18
},
"infoURL": "https://quadrans.io",
"shortName": "quadranstestnet",
"chainId": 10947,
"networkId": 10947,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.testnet.quadrans.io",
"icon": "quadrans",
"standard": "EIP3091"
}
]
},
{
"name": "CENNZnet Azalea",
"chain": "CENNZnet",
"network": "azalea",
"rpc": [
"https://cennznet.unfrastructure.io/public"
],
"faucets": [],
"nativeCurrency": {
"name": "CPAY",
"symbol": "CPAY",
"decimals": 18
},
"infoURL": "https://cennz.net",
"shortName": "cennz-a",
"chainId": 21337,
"networkId": 21337,
"icon": "cennz",
"explorers": [
{
"name": "UNcover",
"url": "https://uncoverexplorer.com",
"standard": "none"
}
]
},
{
"name": "omChain Mainnet",
"chain": "OML",
"icon": "omlira",
"rpc": [
"https://seed.omchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "omChain",
"symbol": "OMC",
"decimals": 18
},
"infoURL": "https://omchain.io",
"shortName": "omc",
"chainId": 21816,
"networkId": 21816,
"explorers": [
{
"name": "omChain Explorer",
"url": "https://explorer.omchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Taycan",
"chain": "Taycan",
"network": "mainnet",
"rpc": [
"https://taycan-rpc.hupayx.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "shuffle",
"symbol": "SFL",
"decimals": 18
},
"infoURL": "https://hupayx.io",
"shortName": "SFL",
"chainId": 22023,
"networkId": 22023,
"explorers": [
{
"name": "Taycan Explorer(Blockscout)",
"url": "https://taycan-evmscan.hupayx.io",
"standard": "none"
},
{
"name": "Taycan Cosmos Explorer(BigDipper)",
"url": "https://taycan-cosmoscan.hupayx.io",
"standard": "none"
}
]
},
{
"name": "OasisChain Mainnet",
"chain": "OasisChain",
"rpc": [
"https://rpc1.oasischain.io",
"https://rpc2.oasischain.io",
"https://rpc3.oasischain.io"
],
"faucets": [
"http://faucet.oasischain.io"
],
"nativeCurrency": {
"name": "OAC",
"symbol": "OAC",
"decimals": 18
},
"infoURL": "https://scan.oasischain.io",
"shortName": "OAC",
"chainId": 26863,
"networkId": 26863,
"explorers": [
{
"name": "OasisChain Explorer",
"url": "https://scan.oasischain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Piece testnet",
"chain": "PieceNetwork",
"icon": "piecechain",
"rpc": [
"https://testnet-rpc0.piecenetwork.com"
],
"faucets": [
"https://piecenetwork.com/faucet"
],
"nativeCurrency": {
"name": "ECE",
"symbol": "ECE",
"decimals": 18
},
"infoURL": "https://piecenetwork.com",
"shortName": "Piece",
"chainId": 30067,
"networkId": 30067,
"explorers": [
{
"name": "Piece Scan",
"url": "https://testnet-scan.piecenetwork.com",
"standard": "EIP3091"
}
]
},
{
"name": "Bitgert Mainnet",
"chain": "Brise",
"rpc": [
"https://mainnet-rpc.brisescan.com",
"https://chainrpc.com",
"https://serverrpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitrise Token",
"symbol": "Brise",
"decimals": 18
},
"infoURL": "https://bitgert.com/",
"shortName": "Brise",
"chainId": 32520,
"networkId": 32520,
"icon": "brise",
"explorers": [
{
"name": "Brise Scan",
"url": "https://brisescan.com",
"icon": "brise",
"standard": "EIP3091"
}
]
},
{
"name": "Autobahn Network",
"chain": "TXL",
"network": "mainnet",
"rpc": [
"https://rpc.autobahn.network"
],
"faucets": [],
"nativeCurrency": {
"name": "TXL",
"symbol": "TXL",
"decimals": 18
},
"infoURL": "https://autobahn.network",
"shortName": "Autobahn Network",
"chainId": 45000,
"networkId": 45000,
"icon": "autobahn",
"explorers": [
{
"name": "autobahn explorer",
"url": "https://explorer.autobahn.network",
"icon": "autobahn",
"standard": "EIP3091"
}
]
},
{
"name": "DFK Chain",
"chain": "DFK",
"icon": "dfk",
"network": "mainnet",
"rpc": [
"https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Jewel",
"symbol": "JEWEL",
"decimals": 18
},
"infoURL": "https://defikingdoms.com",
"shortName": "DFK",
"chainId": 53935,
"networkId": 53935,
"explorers": [
{
"name": "ethernal",
"url": "https://explorer.dfkchain.com",
"icon": "ethereum",
"standard": "none"
}
]
},
{
"name": "MultiVAC Mainnet",
"chain": "MultiVAC",
"icon": "multivac",
"rpc": [
"https://rpc.mtv.ac",
"https://rpc-eu.mtv.ac"
],
"faucets": [],
"nativeCurrency": {
"name": "MultiVAC",
"symbol": "MTV",
"decimals": 18
},
"infoURL": "https://mtv.ac",
"shortName": "mtv",
"chainId": 62621,
"networkId": 62621,
"explorers": [
{
"name": "MultiVAC Explorer",
"url": "https://e.mtv.ac",
"standard": "none"
}
]
},
{
"name": "Condrieu",
"title": "Ethereum Verkle Testnet Condrieu",
"chain": "ETH",
"rpc": [
"https://rpc.condrieu.ethdevops.io:8545"
],
"faucets": [
"https://faucet.condrieu.ethdevops.io"
],
"nativeCurrency": {
"name": "Condrieu Testnet Ether",
"symbol": "CTE",
"decimals": 18
},
"infoURL": "https://condrieu.ethdevops.io",
"shortName": "cndr",
"chainId": 69420,
"networkId": 69420,
"explorers": [
{
"name": "Condrieu explorer",
"url": "https://explorer.condrieu.ethdevops.io",
"standard": "none"
}
]
},
{
"name": "Godwoken Testnet (V1.1)",
"chain": "GWT",
"rpc": [
"https://godwoken-testnet-v1.ckbapp.dev"
],
"faucets": [
"https://testnet.bridge.godwoken.io"
],
"nativeCurrency": {
"name": "CKB",
"symbol": "CKB",
"decimals": 18
},
"infoURL": "https://www.nervos.org",
"shortName": "gw-testnet-v1",
"chainId": 71401,
"networkId": 71401,
"explorers": [
{
"name": "GWScan Block Explorer",
"url": "https://v1.aggron.gwscan.com",
"standard": "none"
}
]
},
{
"name": "Godwoken Mainnet",
"chain": "GWT",
"rpc": [
"https://godwoken-testnet-v1.ckbapp.dev"
],
"faucets": [
"https://testnet.bridge.godwoken.io"
],
"nativeCurrency": {
"name": "CKB",
"symbol": "CKB",
"decimals": 18
},
"infoURL": "https://www.nervos.org",
"shortName": "gw-mainnet-v1",
"chainId": 71402,
"networkId": 71402,
"explorers": [
{
"name": "GWScan Block Explorer",
"url": "https://v1.aggron.gwscan.com",
"standard": "none"
}
]
},
{
"name": "Milkomeda C1 Testnet",
"chain": "milkTAda",
"icon": "milkomeda",
"network": "testnet",
"rpc": [
"https://rpc-devnet-cardano-evm.c1.milkomeda.com",
"wss://rpc-devnet-cardano-evm.c1.milkomeda.com"
],
"faucets": [],
"nativeCurrency": {
"name": "milkTAda",
"symbol": "mTAda",
"decimals": 18
},
"infoURL": "https://milkomeda.com",
"shortName": "milkTAda",
"chainId": 200101,
"networkId": 200101,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com",
"standard": "none"
}
]
},
{
"name": "Haymo Testnet",
"chain": "tHYM",
"network": "testnet",
"rpc": [
"https://testnet1.haymo.network"
],
"faucets": [],
"nativeCurrency": {
"name": "HAYMO",
"symbol": "HYM",
"decimals": 18
},
"infoURL": "https://haymoswap.web.app/",
"shortName": "hym",
"chainId": 234666,
"networkId": 234666
},
{
"name": "Dexalot Testnet",
"chain": "DEXALOT",
"network": "testnet",
"rpc": [
"https://subnets.avax.network/dexalot/testnet/rpc"
],
"faucets": [
"https://sfaucet.dexalot-test.com"
],
"nativeCurrency": {
"name": "Dexalot",
"symbol": "ALOT",
"decimals": 18
},
"infoURL": "https://dexalot.com",
"shortName": "Dexalot",
"chainId": 432201,
"networkId": 432201,
"explorers": [
{
"name": "Avalanche Subnet Explorer",
"url": "https://subnets.avax.network/dexalot/testnet/explorer",
"standard": "EIP3091"
}
]
},
{
"name": "Weelink Testnet",
"chain": "WLK",
"rpc": [
"https://weelinknode1c.gw002.oneitfarm.com"
],
"faucets": [
"https://faucet.weelink.gw002.oneitfarm.com"
],
"nativeCurrency": {
"name": "Weelink Chain Token",
"symbol": "tWLK",
"decimals": 18
},
"infoURL": "https://weelink.cloud",
"shortName": "wlkt",
"chainId": 444900,
"networkId": 444900,
"explorers": [
{
"name": "weelink-testnet",
"url": "https://weelink.cloud/#/blockView/overview",
"standard": "none"
}
]
},
{
"name": "OpenChain Mainnet",
"chain": "OpenChain",
"rpc": [
"https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539"
],
"faucets": [],
"nativeCurrency": {
"name": "OpenCoin",
"symbol": "OPC",
"decimals": 10
},
"infoURL": "https://www.openchain.live",
"shortName": "oc",
"chainId": 474142,
"networkId": 474142,
"explorers": [
{
"name": "SIDE SCAN",
"url": "https://sidescan.luniverse.io/1641349324562974539",
"standard": "none"
}
]
},
{
"name": "CMP-Testnet",
"chain": "CMP",
"network": "testnet",
"rpc": [
"https://galaxy.block.caduceus.foundation",
"wss://galaxy.block.caduceus.foundation"
],
"faucets": [
"https://dev.caduceus.foundation/testNetwork"
],
"nativeCurrency": {
"name": "Caduceus Testnet Token",
"symbol": "CMP",
"decimals": 18
},
"infoURL": "https://caduceus.foundation/",
"shortName": "cmp",
"chainId": 512512,
"networkId": 512512,
"explorers": [
{
"name": "Galaxy Scan",
"url": "https://galaxy.scan.caduceus.foundation",
"standard": "none"
}
]
},
{
"name": "Kiln",
"chain": "ETH",
"network": "testnet",
"rpc": [
"https://rpc.kiln.themerge.dev"
],
"faucets": [
"https://faucet.kiln.themerge.dev",
"https://kiln-faucet.pk910.de",
"https://kilnfaucet.com"
],
"nativeCurrency": {
"name": "Testnet ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kiln.themerge.dev/",
"shortName": "kiln",
"chainId": 1337802,
"networkId": 1337802,
"icon": "ethereum",
"explorers": [
{
"name": "Kiln Explorer",
"url": "https://explorer.kiln.themerge.dev",
"icon": "ethereum",
"standard": "EIP3091"
}
]
},
{
"name": "PlatON Dev Testnet",
"chain": "PlatON",
"rpc": [
"https://devnetopenapi2.platon.network/rpc",
"wss://devnetopenapi2.platon.network/ws"
],
"faucets": [
"https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03"
],
"nativeCurrency": {
"name": "LAT",
"symbol": "lat",
"decimals": 18
},
"infoURL": "https://www.platon.network",
"shortName": "platondev",
"chainId": 2203181,
"networkId": 1,
"icon": "platon",
"explorers": [
{
"name": "PlatON explorer",
"url": "https://devnetscan.platon.network",
"standard": "none"
}
]
},
{
"name": "SmartMesh Mainnet",
"chain": "Spectrum",
"rpc": [
"https://jsonapi1.smartmesh.cn"
],
"faucets": [],
"nativeCurrency": {
"name": "SmartMesh Native Token",
"symbol": "SMT",
"decimals": 18
},
"infoURL": "https://smartmesh.io",
"shortName": "spectrum",
"chainId": 20180430,
"networkId": 1,
"explorers": [
{
"name": "spectrum",
"url": "https://spectrum.pub",
"standard": "none"
}
]
},
{
"name": "Cube Chain Mainnet",
"chain": "Cube",
"icon": "cube",
"rpc": [
"https://http-mainnet.cube.network",
"wss://ws-mainnet.cube.network",
"https://http-mainnet-sg.cube.network",
"wss://ws-mainnet-sg.cube.network",
"https://http-mainnet-us.cube.network",
"wss://ws-mainnet-us.cube.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Cube Chain Native Token",
"symbol": "CUBE",
"decimals": 18
},
"infoURL": "https://www.cube.network",
"shortName": "cube",
"chainId": 1818,
"networkId": 1818,
"slip44": 1818,
"explorers": [
{
"name": "cube-scan",
"url": "https://cubescan.network",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/0.png",
"ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/2.png",
"color_chain_bg": "0x3FC3C3"
}
},
{
"name": "Cube Chain Testnet",
"chain": "Cube",
"rpc": [
"https://http-testnet.cube.network",
"wss://ws-testnet.cube.network",
"https://http-testnet-sg.cube.network",
"wss://ws-testnet-sg.cube.network",
"https://http-testnet-jp.cube.network",
"wss://ws-testnet-jp.cube.network",
"https://http-testnet-us.cube.network",
"wss://ws-testnet-us.cube.network"
],
"faucets": [
"https://faucet.cube.network"
],
"nativeCurrency": {
"name": "Cube Chain Test Native Token",
"symbol": "CUBET",
"decimals": 18
},
"infoURL": "https://www.cube.network",
"shortName": "cubet",
"chainId": 1819,
"networkId": 1819,
"slip44": 1819,
"explorers": [
{
"name": "cubetest-scan",
"url": "https://testnet.cubescan.network",
"standard": "EIP3091"
}
]
},
{
"name": "Godwoken Testnet (V1)",
"chain": "GWT",
"rpc": [
"https://godwoken-testnet-web3-v1-rpc.ckbapp.dev"
],
"faucets": [
"https://homura.github.io/light-godwoken"
],
"nativeCurrency": {
"name": "CKB",
"symbol": "CKB",
"decimals": 8
},
"infoURL": "https://www.nervos.org",
"shortName": "gw-testnet-v1-deprecated",
"chainId": 868455272153094,
"networkId": 868455272153094,
"status": "deprecated",
"explorers": [
{
"name": "GWScan Block Explorer",
"url": "https://v1.aggron.gwscan.com",
"standard": "none"
}
]
},
{
"name": "Dxchain Mainnet",
"chain": "Dxchain",
"rpc": [
"https://mainnet.dxchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Dxchain",
"symbol": "DX",
"decimals": 18
},
"infoURL": "https://www.dxchain.com/",
"shortName": "dx",
"chainId": 36,
"networkId": 36
},
{
"name": "Darwinia Network",
"chain": "darwinia",
"network": "darwinia network",
"rpc": [
"https://darwinia-rpc.darwinia.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Darwinia Network Native Token",
"symbol": "RING",
"decimals": 18
},
"infoURL": "https://darwinia.network/",
"shortName": "darwinia",
"chainId": 46,
"networkId": 46,
"explorers": [
{
"name": "subscan",
"url": "https://darwinia.subscan.io",
"standard": "none"
}
]
},
{
"name": "DxChain Testnet",
"chain": "DxChain",
"rpc": [
"https://testnet-http.dxchain.com"
],
"faucets": [
"https://faucet.dxscan.io"
],
"nativeCurrency": {
"name": "DxChain Testnet",
"symbol": "DX",
"decimals": 18
},
"infoURL": "https://testnet.dxscan.io/",
"shortName": "dxc",
"chainId": 72,
"networkId": 72
},
{
"name": "Kaiba Lightning Chain Testnet",
"chain": "tKLC",
"network": "testnet",
"rpc": [
"https://klc.live/"
],
"faucets": [],
"nativeCurrency": {
"name": "Kaiba Testnet Token",
"symbol": "tKAIBA",
"decimals": 18
},
"infoURL": "https://kaibadefi.com",
"shortName": "tklc",
"chainId": 104,
"networkId": 104,
"icon": "kaiba",
"explorers": [
{
"name": "kaibascan",
"url": "https://kaibascan.io",
"icon": "kaibascan",
"standard": "EIP3091"
}
]
},
{
"name": "AME Chain Mainnet",
"chain": "AME",
"rpc": [
"https://node1.amechain.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "AME",
"symbol": "AME",
"decimals": 18
},
"infoURL": "https://amechain.io/",
"shortName": "ame",
"chainId": 180,
"networkId": 180,
"explorers": [
{
"name": "AME Scan",
"url": "https://amescan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Crypto Emergency",
"chain": "CEM",
"rpc": [
"https://cemchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Crypto Emergency",
"symbol": "CEM",
"decimals": 18
},
"infoURL": "https://cemblockchain.com/",
"shortName": "cem",
"chainId": 193,
"networkId": 193,
"explorers": [
{
"name": "cemscan",
"url": "https://cemscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "SX Network Mainnet",
"chain": "SX",
"icon": "SX",
"network": "mainnet",
"rpc": [
"https://rpc.sx.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "SX Network",
"symbol": "SX",
"decimals": 18
},
"infoURL": "https://www.sx.technology",
"shortName": "SX",
"chainId": 416,
"networkId": 416,
"explorers": [
{
"name": "SX Network Explorer",
"url": "https://explorer.sx.technology",
"standard": "EIP3091"
}
]
},
{
"name": "XT Smart Chain Mainnet",
"chain": "XSC",
"icon": "xsc",
"rpc": [
"https://datarpc1.xsc.pub",
"https://datarpc2.xsc.pub",
"https://datarpc3.xsc.pub"
],
"faucets": [
"https://xsc.pub/faucet"
],
"nativeCurrency": {
"name": "XT Smart Chain Native Token",
"symbol": "XT",
"decimals": 18
},
"infoURL": "https://xsc.pub/",
"shortName": "xt",
"chainId": 520,
"networkId": 1024,
"explorers": [
{
"name": "xscscan",
"url": "https://xscscan.pub",
"standard": "EIP3091"
}
]
},
{
"name": "F(x)Core Mainnet Network",
"chain": "Fxcore",
"network": "mainnet",
"rpc": [
"https://fx-json-web3.functionx.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Function X",
"symbol": "FX",
"decimals": 18
},
"infoURL": "https://functionx.io/",
"shortName": "f(x)Core",
"chainId": 530,
"networkId": 530,
"icon": "fxcore",
"explorers": [
{
"name": "FunctionX Explorer",
"url": "https://fx-evm.functionx.io",
"standard": "EIP3091"
}
]
},
{
"name": "SX Network Testnet",
"chain": "SX",
"icon": "SX",
"network": "testnet",
"rpc": [
"https://rpc.toronto.sx.technology"
],
"faucets": [
"https://faucet.toronto.sx.technology"
],
"nativeCurrency": {
"name": "SX Network",
"symbol": "SX",
"decimals": 18
},
"infoURL": "https://www.sx.technology",
"shortName": "SX-Testnet",
"chainId": 647,
"networkId": 647,
"explorers": [
{
"name": "SX Network Toronto Explorer",
"url": "https://explorer.toronto.sx.technology",
"standard": "EIP3091"
}
]
},
{
"name": "Portal Fantasy Chain Test",
"chain": "PF",
"icon": "pf",
"network": "testnet",
"rpc": [
"https://subnets.avax.network/portal-fantasy/testnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Portal Fantasy Token",
"symbol": "PFT",
"decimals": 18
},
"infoURL": "https://portalfantasy.io",
"shortName": "PFTEST",
"chainId": 808,
"networkId": 808,
"explorers": []
},
{
"name": "Portal Fantasy Chain",
"chain": "PF",
"icon": "pf",
"network": "mainnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Portal Fantasy Token",
"symbol": "PFT",
"decimals": 18
},
"infoURL": "https://portalfantasy.io",
"shortName": "PF",
"chainId": 909,
"networkId": 909,
"explorers": [],
"status": "incubating"
},
{
"name": "TOP Mainnet EVM",
"chain": "TOP",
"icon": "top",
"rpc": [
"ethapi.topnetwork.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.topnetwork.org/",
"shortName": "top_evm",
"chainId": 980,
"networkId": 0,
"explorers": [
{
"name": "topscan.dev",
"url": "https://www.topscan.io",
"standard": "none"
}
]
},
{
"name": "TOP Mainnet",
"chain": "TOP",
"icon": "top",
"rpc": [
"topapi.topnetwork.org"
],
"faucets": [],
"nativeCurrency": {
"name": "TOP",
"symbol": "TOP",
"decimals": 6
},
"infoURL": "https://www.topnetwork.org/",
"shortName": "top",
"chainId": 989,
"networkId": 0,
"explorers": [
{
"name": "topscan.dev",
"url": "https://www.topscan.io",
"standard": "none"
}
]
},
{
"name": "GTON Mainnet",
"chain": "GTON",
"rpc": [
"https://rpc.gton.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "GCD",
"symbol": "GCD",
"decimals": 18
},
"infoURL": "https://gton.capital",
"shortName": "gton",
"chainId": 1000,
"networkId": 1000,
"explorers": [
{
"name": "GTON Network Explorer",
"url": "https://explorer.gton.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "OM Platform Mainnet",
"chain": "omplatform",
"network": "mainnet",
"rpc": [
"https://rpc-cnx.omplatform.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "OMCOIN",
"symbol": "OM",
"decimals": 18
},
"infoURL": "https://omplatform.com/",
"shortName": "om",
"chainId": 1246,
"networkId": 1246,
"explorers": [
{
"name": "OMSCAN - Expenter",
"url": "https://omscan.omplatform.com",
"standard": "none"
}
]
},
{
"name": "Boba Network Bobabase",
"chain": "Bobabase",
"rpc": [
"https://bobabase.boba.network",
"wss://wss.bobabase.boba.network",
"https://replica.bobabase.boba.network",
"wss://replica-wss.bobabase.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "Bobabase",
"chainId": 1297,
"networkId": 1297,
"explorers": [
{
"name": "Blockscout",
"url": "https://blockexplorer.bobabase.boba.network",
"standard": "none"
}
]
},
{
"name": "AIA Mainnet",
"chainId": 1319,
"shortName": "aia",
"chain": "AIA Chain",
"network": "mainnet",
"networkId": 1319,
"nativeCurrency": {
"name": "AIA Mainnet",
"symbol": "AIA",
"decimals": 18
},
"rpc": [
"https://aia-dataseed1.aiachain.org",
"https://aia-dataseed2.aiachain.org",
"https://aia-dataseed3.aiachain.org",
"https://aia-dataseed4.aiachain.org"
],
"faucets": [],
"infoURL": "https://www.aiachain.org",
"app_resource": {
"ic_chain_select": "https://images.aiachain.org/AIA/AIA1.png",
"ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2.png",
"color_chain_bg": "0x080134"
},
"explorers": [
{
"name": "AIA Chain Explorer Mainnet",
"url": "https://aiascan.com",
"standard": "EIP3091"
}
]
},
{
"name": "AIA Testnet",
"chainId": 1320,
"shortName": "aiatestnet",
"chain": "AIA Chain",
"network": "testnet",
"networkId": 1320,
"nativeCurrency": {
"name": "AIA Testnet",
"symbol": "AIA",
"decimals": 18
},
"rpc": [
"https://aia-dataseed1-testnet.aiachain.org"
],
"faucets": [
"https://aia-faucet-testnet.aiachain.org"
],
"infoURL": "https://www.aiachain.org",
"app_resource": {
"ic_chain_select": "https://images.aiachain.org/AIA/AIA1-test.png",
"ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2-test.png",
"color_chain_bg": "0xA1473B"
},
"explorers": [
{
"name": "AIA Chain Explorer Testnet",
"url": "https://testnet.aiascan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Kava EVM",
"chain": "KAVA",
"network": "mainnet",
"rpc": [
"https://evm.kava.io",
"https://evm2.kava.io",
"wss://wevm.kava.io",
"wss://wevm2.kava.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Kava",
"symbol": "KAVA",
"decimals": 18
},
"infoURL": "https://www.kava.io",
"shortName": "kava",
"chainId": 2222,
"networkId": 2222,
"icon": "kava",
"explorers": [
{
"name": "Kava EVM Explorer",
"url": "https://explorer.kava.io",
"standard": "EIP3091",
"icon": "kava"
}
]
},
{
"name": "JFIN Chain",
"chain": "JFIN",
"rpc": [
"https://rpc.jfinchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "JFIN Coin",
"symbol": "jfin",
"decimals": 18
},
"infoURL": "https://jfinchain.com",
"shortName": "jfin",
"chainId": 3501,
"networkId": 3501,
"explorers": [
{
"name": "JFIN Chain Explorer",
"url": "https://exp.jfinchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Crossbell",
"chain": "Crossbell",
"network": "mainnet",
"rpc": [
"https://rpc.crossbell.io"
],
"faucets": [
"https://faucet.crossbell.io"
],
"nativeCurrency": {
"name": "Crossbell Token",
"symbol": "CSB",
"decimals": 18
},
"infoURL": "https://crossbell.io",
"shortName": "csb",
"chainId": 3737,
"networkId": 3737,
"icon": "crossbell",
"explorers": [
{
"name": "Crossbell Explorer",
"url": "https://scan.crossbell.io",
"standard": "EIP3091"
}
]
},
{
"name": "YuanChain Mainnet",
"chain": "YCC",
"network": "mainnet",
"rpc": [
"https://mainnet.yuan.org/eth"
],
"faucets": [],
"nativeCurrency": {
"name": "YCC",
"symbol": "YCC",
"decimals": 18
},
"infoURL": "https://www.yuan.org",
"shortName": "ycc",
"chainId": 3999,
"networkId": 3999,
"icon": "ycc",
"explorers": [
{
"name": "YuanChain Explorer",
"url": "https://mainnet.yuan.org",
"standard": "none"
}
]
},
{
"name": "Boba Network Bobaopera Testnet",
"chain": "Bobaopera Testnet",
"rpc": [
"https://testnet.bobaopera.boba.network",
"wss://wss.testnet.bobaopera.boba.network",
"https://replica.testnet.bobaopera.boba.network",
"wss://replica-wss.testnet.bobaopera.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "Bobaopera Testnet",
"chainId": 4051,
"networkId": 4051,
"explorers": [
{
"name": "Blockscout",
"url": "https://blockexplorer.testnet.bobaopera.boba.network",
"standard": "none"
}
]
},
{
"name": "Venidium Mainnet",
"chain": "XVM",
"icon": "venidium",
"rpc": [
"https://rpc.venidium.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Venidium",
"symbol": "XVM",
"decimals": 18
},
"infoURL": "https://venidium.io",
"shortName": "xvm",
"chainId": 4919,
"networkId": 4919,
"explorers": [
{
"name": "Venidium Explorer",
"url": "https://evm.venidiumexplorer.com",
"standard": "EIP3091"
}
]
},
{
"name": "TLChain Network Mainnet",
"chain": "TLC",
"icon": "tlc",
"rpc": [
"https://mainnet-rpc.tlxscan.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "TLChain Network",
"symbol": "TLC",
"decimals": 18
},
"infoURL": "https://tlchain.network/",
"shortName": "tlc",
"chainId": 5177,
"networkId": 5177,
"explorers": [
{
"name": "TLChain Explorer",
"url": "https://explorer.tlchain.network",
"standard": "none"
}
]
},
{
"name": "Tomb Chain Mainnet",
"chain": "Tomb Chain",
"rpc": [
"https://rpc.tombchain.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Tomb",
"symbol": "TOMB",
"decimals": 18
},
"infoURL": "https://tombchain.com/",
"shortName": "tombchain",
"chainId": 6969,
"networkId": 6969,
"explorers": [
{
"name": "tombscout",
"url": "https://tombscout.com",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-250",
"bridges": [
{
"url": "https://beta-bridge.lif3.com/"
}
]
}
},
{
"name": "Ella the heart",
"chain": "ella",
"icon": "ella",
"rpc": [
"https://rpc.ella.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ella",
"symbol": "ELLA",
"decimals": 18
},
"infoURL": "https://ella.network",
"shortName": "ELLA",
"chainId": 7027,
"networkId": 7027,
"explorers": [
{
"name": "Ella",
"url": "https://ella.network",
"standard": "EIP3091"
}
]
},
{
"name": "Rise of the Warbots Testnet",
"chain": "nmactest",
"rpc": [
"https://testnet1.riseofthewarbots.com",
"https://testnet2.riseofthewarbots.com",
"https://testnet3.riseofthewarbots.com",
"https://testnet4.riseofthewarbots.com",
"https://testnet5.riseofthewarbots.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Nano Machines",
"symbol": "NMAC",
"decimals": 18
},
"infoURL": "https://riseofthewarbots.com/",
"shortName": "Rise of the Warbots Testnet",
"chainId": 7777,
"networkId": 7777,
"explorers": [
{
"name": "avascan",
"url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy",
"standard": "none"
}
]
},
{
"name": "BerylBit Mainnet",
"chain": "BRB",
"rpc": [
"https://mainnet.berylbit.io"
],
"faucets": [
"https://t.me/BerylBit"
],
"nativeCurrency": {
"name": "BerylBit Chain Native Token",
"symbol": "BRB",
"decimals": 18
},
"infoURL": "https://www.beryl-bit.com",
"shortName": "brb",
"chainId": 9012,
"networkId": 9012,
"icon": "berylbit",
"explorers": [
{
"name": "berylbit-explorer",
"url": "https://explorer.berylbit.io",
"standard": "EIP3091"
}
]
},
{
"name": "IVAR Chain Testnet",
"chain": "IVAR",
"icon": "ivar",
"rpc": [
"https://testnet-rpc.ivarex.com"
],
"faucets": [
"https://tfaucet.ivarex.com/"
],
"nativeCurrency": {
"name": "tIvar",
"symbol": "tIVAR",
"decimals": 18
},
"infoURL": "https://ivarex.com",
"shortName": "tivar",
"chainId": 16888,
"networkId": 16888,
"explorers": [
{
"name": "ivarscan",
"url": "https://testnet.ivarscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Q Mainnet",
"chain": "Q",
"network": "mainnet",
"rpc": [
"https://rpc.q.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Q token",
"symbol": "Q",
"decimals": 18
},
"infoURL": "https://q.org",
"shortName": "q",
"chainId": 35441,
"networkId": 35441,
"icon": "q",
"explorers": [
{
"name": "Q explorer",
"url": "https://explorer.q.org",
"icon": "q",
"standard": "EIP3091"
}
]
},
{
"name": "Q Testnet",
"chain": "Q",
"network": "testnet",
"rpc": [
"https://rpc.qtestnet.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Q token",
"symbol": "Q",
"decimals": 18
},
"infoURL": "https://q.org/",
"shortName": "q-testnet",
"chainId": 35443,
"networkId": 35443,
"icon": "q",
"explorers": [
{
"name": "Q explorer",
"url": "https://explorer.qtestnet.org",
"icon": "q",
"standard": "EIP3091"
}
]
},
{
"name": "Arbitrum Nova",
"chainId": 42170,
"shortName": "arb-nova",
"chain": "ETH",
"networkId": 42170,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://nova.arbitrum.io/rpc"
],
"faucets": [],
"explorers": [
{
"name": "Arbitrum Nova Chain Explorer",
"url": "https://nova-explorer.arbitrum.io",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"infoURL": "https://arbitrum.io",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "GTON Testnet",
"chain": "GTON Testnet",
"rpc": [
"https://testnet.gton.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "GCD",
"symbol": "GCD",
"decimals": 18
},
"infoURL": "https://gton.capital",
"shortName": "tgton",
"chainId": 50021,
"networkId": 50021,
"explorers": [
{
"name": "GTON Testnet Network Explorer",
"url": "https://explorer.testnet.gton.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-3"
}
},
{
"name": "Mixin Virtual Machine",
"chain": "MVM",
"network": "mainnet",
"rpc": [
"https://geth.mvm.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://mvm.dev",
"shortName": "mvm",
"chainId": 73927,
"networkId": 73927,
"icon": "mvm",
"explorers": [
{
"name": "mvmscan",
"url": "https://scan.mvm.dev",
"icon": "mvm",
"standard": "EIP3091"
}
]
},
{
"name": "ResinCoin Mainnet",
"chain": "RESIN",
"rpc": [
"https://mainnet.resincoin.ml"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "RESIN",
"decimals": 18
},
"infoURL": "https://resincoin.ml",
"shortName": "resin",
"chainId": 75000,
"networkId": 75000,
"explorers": [
{
"name": "ResinScan",
"url": "https://explorer.resincoin.ml",
"standard": "none"
}
]
},
{
"name": "IVAR Chain Mainnet",
"chain": "IVAR",
"icon": "ivar",
"rpc": [
"https://mainnet-rpc.ivarex.com"
],
"faucets": [
"https://faucet.ivarex.com/"
],
"nativeCurrency": {
"name": "Ivar",
"symbol": "IVAR",
"decimals": 18
},
"infoURL": "https://ivarex.com",
"shortName": "ivar",
"chainId": 88888,
"networkId": 88888,
"explorers": [
{
"name": "ivarscan",
"url": "https://ivarscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Crystaleum",
"chain": "crystal",
"network": "mainnet",
"rpc": [
"https://evm.cryptocurrencydevs.org",
"https://rpc.crystaleum.org"
],
"faucets": [],
"nativeCurrency": {
"name": "CRFI",
"symbol": "◈",
"decimals": 18
},
"infoURL": "https://crystaleum.org",
"shortName": "CRFI",
"chainId": 103090,
"networkId": 1,
"icon": "crystal",
"explorers": [
{
"name": "blockscout",
"url": "https://scan.crystaleum.org",
"icon": "crystal",
"standard": "EIP3091"
}
]
},
{
"name": "ETND Chain Mainnets",
"chain": "ETND",
"network": "mainnet",
"rpc": [
"https://rpc.node1.etnd.pro/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETND",
"symbol": "ETND",
"decimals": 18
},
"infoURL": "https://www.etnd.pro",
"shortName": "ETND",
"chainId": 131419,
"networkId": 131419,
"icon": "ETND",
"explorers": [
{
"name": "etndscan",
"url": "https://scan.etnd.pro",
"icon": "ETND",
"standard": "none"
}
]
},
{
"name": "Arbitrum Görli",
"title": "Arbitrum Görli Rollup Testnet",
"chainId": 421613,
"shortName": "arb-goerli",
"chain": "ETH",
"networkId": 421613,
"nativeCurrency": {
"name": "Arbitrum Görli Ether",
"symbol": "AGOR",
"decimals": 18
},
"rpc": [
"https://goerli-rollup.arbitrum.io/rpc/"
],
"faucets": [],
"infoURL": "https://arbitrum.io/",
"explorers": [
{
"name": "Arbitrum Görli Rollup Explorer",
"url": "https://goerli-rollup-explorer.arbitrum.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-5",
"bridges": [
{
"url": "https://bridge.arbitrum.io/"
}
]
}
},
{
"name": "4GoodNetwork",
"chain": "4GN",
"rpc": [
"https://chain.deptofgood.com"
],
"faucets": [],
"nativeCurrency": {
"name": "APTA",
"symbol": "APTA",
"decimals": 18
},
"infoURL": "https://bloqs4good.com",
"shortName": "bloqs4good",
"chainId": 846000,
"networkId": 846000
},
{
"name": "PlatON Dev Testnet2",
"chain": "PlatON",
"rpc": [
"https://devnet2openapi.platon.network/rpc",
"wss://devnet2openapi.platon.network/ws"
],
"faucets": [
"https://devnet2faucet.platon.network/faucet"
],
"nativeCurrency": {
"name": "LAT",
"symbol": "lat",
"decimals": 18
},
"infoURL": "https://www.platon.network",
"shortName": "platondev2",
"chainId": 2206132,
"networkId": 1,
"icon": "platon",
"explorers": [
{
"name": "PlatON explorer",
"url": "https://devnet2scan.platon.network",
"standard": "none"
}
]
},
{
"name": "CANTO",
"chain": "CANTO",
"rpc": [
"https://canto.evm.chandrastation.com",
"https://canto.slingshot.finance",
"https://jsonrpc.canto.nodestake.top"
],
"nativeCurrency": {
"name": "CANTO",
"symbol": "CANTO",
"decimals": 18
},
"infoURL": "https://canto.io/",
"shortName": "CANTO",
"chainId": 7700,
"networkId": 7700,
"icon": "CANTO",
"explorers": [
{
"name": "CANTO explorer",
"url": "https://evm.explorer.canto.io",
"standard": "none"
}
]
},
{
"name": "EthereumFair ETHF",
"chainId": 513100,
"shortName": "ETHF",
"chain": "ETHF",
"network": "mainnet",
"networkId": 513100,
"nativeCurrency": {
"name": "ETHF",
"symbol": "ETHF",
"decimals": 18
},
"rpc": [
"https://rpc.etherfair.org"
],
"faucets": [],
"infoURL": "",
"explorers": [
{
"name": "ETHF scan",
"url": "https://explorer.etherfair.org",
"standard": "EIP3091"
}
]
},
{
"name": "ETHW Mainnet",
"chainId": 10001,
"shortName": "ETHW",
"chain": "ETHW",
"network": "mainnet",
"networkId": 10001,
"nativeCurrency": {
"name": "ETHW",
"symbol": "ETHW",
"decimals": 18
},
"rpc": [
"https://mainnet.ethereumpow.org"
],
"faucets": [],
"infoURL": "https://ethereumpow.org/",
"explorers": [
{
"name": "ETHW Scan",
"url": "https://mainnet.ethwscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Core Blockchain",
"chainId": 1116,
"shortName": "CORE",
"chain": "CORE",
"network": "mainnet",
"networkId": 1116,
"nativeCurrency": {
"name": "CORE",
"symbol": "CORE",
"decimals": 18
},
"rpc": [
"https://rpc.coredao.org/"
],
"faucets": [],
"explorers": [
{
"name": "Core Scan",
"url": "https://scan.coredao.org",
"standard": "EIP3091"
}
]
},
{
"name": "SeedCoin-Network",
"chain": "SeedCoin-Network",
"rpc": [
"https://node.seedcoin.network"
],
"faucets": [],
"nativeCurrency": {
"name": "SeedCoin",
"symbol": "SEED",
"decimals": 18
},
"infoURL": "https://www.seedcoin.network/",
"shortName": "SEED",
"icon": "seedcoin",
"chainId": 37,
"networkId": 37
},
{
"name": "Unicorn Ultra Testnet",
"chain": "u2u",
"rpc": [
"https://rpc-testnet.uniultra.xyz"
],
"faucets": [
"https://faucet.uniultra.xyz"
],
"nativeCurrency": {
"name": "Unicorn Ultra",
"symbol": "U2U",
"decimals": 18
},
"infoURL": "https://uniultra.xyz",
"shortName": "u2u",
"chainId": 39,
"networkId": 39,
"icon": "u2u",
"explorers": [
{
"icon": "u2u",
"name": "U2U Explorer",
"url": "https://testnet.uniultra.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Ennothem Mainnet Proterozoic",
"chain": "ETMP",
"rpc": [
"https://rpc.etm.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ennothem",
"symbol": "ETMP",
"decimals": 18
},
"infoURL": "https://etm.network",
"shortName": "etmp",
"chainId": 48,
"networkId": 48,
"icon": "etmp",
"explorers": [
{
"name": "etmpscan",
"url": "https://etmscan.network",
"icon": "etmp",
"standard": "EIP3091"
}
]
},
{
"name": "Ennothem Testnet Pioneer",
"chain": "ETMP",
"rpc": [
"https://rpc.pioneer.etm.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ennothem",
"symbol": "ETMP",
"decimals": 18
},
"infoURL": "https://etm.network",
"shortName": "etmpTest",
"chainId": 49,
"networkId": 49,
"icon": "etmp",
"explorers": [
{
"name": "etmp",
"url": "https://pioneer.etmscan.network",
"icon": "etmpscan",
"standard": "EIP3091"
}
]
},
{
"name": "FNCY",
"chain": "FNCY",
"rpc": [
"https://fncy-seed1.fncy.world"
],
"faucets": [
"https://faucet-testnet.fncy.world"
],
"nativeCurrency": {
"name": "FNCY",
"symbol": "FNCY",
"decimals": 18
},
"infoURL": "https://fncyscan.fncy.world",
"shortName": "FNCY",
"chainId": 73,
"networkId": 73,
"icon": "fncy",
"explorers": [
{
"name": "fncy scan",
"url": "https://fncyscan.fncy.world",
"icon": "fncy",
"standard": "EIP3091"
}
]
},
{
"name": "Decimal Smart Chain Mainnet",
"chain": "DSC",
"rpc": [
"https://node.decimalchain.com/web3"
],
"faucets": [],
"nativeCurrency": {
"name": "Decimal",
"symbol": "DEL",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://decimalchain.com",
"shortName": "DSC",
"chainId": 75,
"networkId": 75,
"icon": "dsc",
"explorers": [
{
"name": "DSC Explorer Mainnet",
"url": "https://explorer.decimalchain.com",
"icon": "dsc",
"standard": "EIP3091"
}
]
},
{
"name": "Dehvo",
"chain": "Dehvo",
"rpc": [
"https://connect.dehvo.com",
"https://rpc.dehvo.com",
"https://rpc1.dehvo.com",
"https://rpc2.dehvo.com"
],
"faucets": [
"https://buy.dehvo.com"
],
"nativeCurrency": {
"name": "Dehvo",
"symbol": "Deh",
"decimals": 18
},
"infoURL": "https://dehvo.com",
"shortName": "deh",
"chainId": 113,
"networkId": 113,
"slip44": 714,
"explorers": [
{
"name": "Dehvo Explorer",
"url": "https://explorer.dehvo.com",
"standard": "EIP3091"
}
]
},
{
"name": "Flare Testnet Coston2",
"chain": "FLR",
"icon": "coston2",
"rpc": [
"https://coston2-api.flare.network/ext/bc/C/rpc"
],
"faucets": [
"https://coston2-faucet.towolabs.com"
],
"nativeCurrency": {
"name": "Coston2 Flare",
"symbol": "C2FLR",
"decimals": 18
},
"infoURL": "https://flare.xyz",
"shortName": "c2flr",
"chainId": 114,
"networkId": 114,
"explorers": [
{
"name": "blockscout",
"url": "https://coston2-explorer.flare.network",
"standard": "EIP3091"
}
]
},
{
"name": "DeBank Testnet",
"chain": "DeBank",
"rpc": [],
"faucets": [],
"icon": "debank",
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://debank.com",
"shortName": "debank-testnet",
"chainId": 115,
"networkId": 115,
"explorers": []
},
{
"name": "DeBank Mainnet",
"chain": "DeBank",
"rpc": [],
"faucets": [],
"icon": "debank",
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://debank.com",
"shortName": "debank-mainnet",
"chainId": 116,
"networkId": 116,
"explorers": []
},
{
"name": "Arcology Testnet",
"chain": "Arcology",
"icon": "acolicon",
"rpc": [
"https://testnet.arcology.network/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Arcology Coin",
"symbol": "Acol",
"decimals": 18
},
"infoURL": "https://arcology.network/",
"shortName": "arcology",
"chainId": 118,
"networkId": 118,
"explorers": [
{
"name": "arcology",
"url": "https://testnet.arcology.network/explorer",
"standard": "none"
}
]
},
{
"name": "ENULS Mainnet",
"chain": "ENULS",
"rpc": [
"https://evmapi.nuls.io",
"https://evmapi2.nuls.io"
],
"faucets": [],
"nativeCurrency": {
"name": "NULS",
"symbol": "NULS",
"decimals": 18
},
"infoURL": "https://nuls.io",
"shortName": "enuls",
"chainId": 119,
"networkId": 119,
"icon": "enuls",
"explorers": [
{
"name": "enulsscan",
"url": "https://evmscan.nuls.io",
"icon": "enuls",
"standard": "EIP3091"
}
]
},
{
"name": "ENULS Testnet",
"chain": "ENULS",
"rpc": [
"https://beta.evmapi.nuls.io",
"https://beta.evmapi2.nuls.io"
],
"faucets": [
"http://faucet.nuls.io"
],
"nativeCurrency": {
"name": "NULS",
"symbol": "NULS",
"decimals": 18
},
"infoURL": "https://nuls.io",
"shortName": "enulst",
"chainId": 120,
"networkId": 120,
"icon": "enuls",
"explorers": [
{
"name": "enulsscan",
"url": "https://beta.evmscan.nuls.io",
"icon": "enuls",
"standard": "EIP3091"
}
]
},
{
"name": "Realchain Mainnet",
"chain": "REAL",
"rpc": [
"https://rcl-dataseed1.rclsidechain.com",
"https://rcl-dataseed2.rclsidechain.com",
"https://rcl-dataseed3.rclsidechain.com",
"https://rcl-dataseed4.rclsidechain.com",
"wss://rcl-dataseed1.rclsidechain.com/v1/",
"wss://rcl-dataseed2.rclsidechain.com/v1/",
"wss://rcl-dataseed3.rclsidechain.com/v1/",
"wss://rcl-dataseed4.rclsidechain.com/v1/"
],
"faucets": [
"https://faucet.rclsidechain.com"
],
"nativeCurrency": {
"name": "Realchain",
"symbol": "REAL",
"decimals": 18
},
"infoURL": "https://www.rclsidechain.com/",
"shortName": "REAL",
"chainId": 121,
"networkId": 121,
"slip44": 714,
"explorers": [
{
"name": "realscan",
"url": "https://rclscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Alyx Chain Testnet",
"chain": "Alyx Chain Testnet",
"rpc": [
"https://testnet-rpc.alyxchain.com"
],
"faucets": [
"https://faucet.alyxchain.com"
],
"nativeCurrency": {
"name": "Alyx Testnet Native Token",
"symbol": "ALYX",
"decimals": 18
},
"infoURL": "https://www.alyxchain.com",
"shortName": "AlyxTestnet",
"chainId": 135,
"networkId": 135,
"explorers": [
{
"name": "alyx testnet scan",
"url": "https://testnet.alyxscan.com",
"standard": "EIP3091"
}
],
"icon": "alyx"
},
{
"name": "PHI Network v2",
"chain": "PHI",
"rpc": [
"https://connect.phi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "PHI",
"symbol": "Φ",
"decimals": 18
},
"infoURL": "https://phi.network",
"shortName": "PHI",
"chainId": 144,
"networkId": 144,
"icon": "phi",
"explorers": [
{
"name": "Phiscan",
"url": "https://phiscan.com",
"icon": "phi",
"standard": "none"
}
]
},
{
"name": "Armonia Eva Chain Mainnet",
"chain": "Eva",
"rpc": [
"https://evascan.io/api/eth-rpc/"
],
"faucets": [],
"nativeCurrency": {
"name": "Armonia Multichain Native Token",
"symbol": "AMAX",
"decimals": 18
},
"infoURL": "https://amax.network",
"shortName": "eva",
"chainId": 160,
"networkId": 160,
"status": "incubating"
},
{
"name": "Armonia Eva Chain Testnet",
"chain": "Wall-e",
"rpc": [
"https://testnet.evascan.io/api/eth-rpc/"
],
"faucets": [],
"nativeCurrency": {
"name": "Armonia Multichain Native Token",
"symbol": "AMAX",
"decimals": 18
},
"infoURL": "https://amax.network",
"shortName": "wall-e",
"chainId": 161,
"networkId": 161,
"explorers": [
{
"name": "blockscout - evascan",
"url": "https://testnet.evascan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Atoshi Testnet",
"chain": "ATOSHI",
"icon": "atoshi",
"rpc": [
"https://node.atoshi.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "ATOSHI",
"symbol": "ATOS",
"decimals": 18
},
"infoURL": "https://atoshi.org",
"shortName": "atoshi",
"chainId": 167,
"networkId": 167,
"explorers": [
{
"name": "atoshiscan",
"url": "https://scan.atoverse.info",
"standard": "EIP3091"
}
]
},
{
"name": "MOAC testnet",
"chain": "MOAC",
"rpc": [
"https://gateway.moac.io/testnet"
],
"faucets": [],
"nativeCurrency": {
"name": "MOAC",
"symbol": "mc",
"decimals": 18
},
"infoURL": "https://moac.io",
"shortName": "moactest",
"chainId": 201,
"networkId": 201,
"explorers": [
{
"name": "moac testnet explorer",
"url": "https://testnet.moac.io",
"standard": "none"
}
]
},
{
"name": "MAPO Makalu",
"title": "MAPO Testnet Makalu",
"chain": "MAPO",
"rpc": [
"https://testnet-rpc.maplabs.io"
],
"faucets": [
"https://faucet.mapprotocol.io"
],
"nativeCurrency": {
"name": "Makalu MAPO",
"symbol": "MAPO",
"decimals": 18
},
"infoURL": "https://mapprotocol.io/",
"shortName": "makalu",
"chainId": 212,
"networkId": 212,
"explorers": [
{
"name": "maposcan",
"url": "https://testnet.maposcan.io",
"standard": "EIP3091"
}
]
},
{
"name": "SiriusNet V2",
"chain": "SIN2",
"faucets": [],
"rpc": [
"https://rpc2.siriusnet.io"
],
"icon": "siriusnet",
"nativeCurrency": {
"name": "MCD",
"symbol": "MCD",
"decimals": 18
},
"infoURL": "https://siriusnet.io",
"shortName": "SIN2",
"chainId": 217,
"networkId": 217,
"explorers": [
{
"name": "siriusnet explorer",
"url": "https://scan.siriusnet.io",
"standard": "none"
}
]
},
{
"name": "Oasys Mainnet",
"chain": "Oasys",
"icon": "oasys",
"rpc": [
"https://rpc.mainnet.oasys.games"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://oasys.games",
"shortName": "OAS",
"chainId": 248,
"networkId": 248,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.oasys.games",
"standard": "EIP3091"
}
]
},
{
"name": "Hedera Mainnet",
"chain": "Hedera",
"icon": "hedera",
"rpc": [
"https://mainnet.hashio.io/api"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "hbar",
"symbol": "HBAR",
"decimals": 8
},
"infoURL": "https://hedera.com",
"shortName": "hedera-mainnet",
"chainId": 295,
"networkId": 295,
"slip44": 3030,
"explorers": [
{
"name": "HashScan",
"url": "https://hashscan.io/mainnet/dashboard",
"standard": "none"
},
{
"name": "Arkhia Explorer",
"url": "https://explorer.arkhia.io",
"standard": "none"
},
{
"name": "DragonGlass",
"url": "https://app.dragonglass.me",
"standard": "none"
},
{
"name": "Hedera Explorer",
"url": "https://hederaexplorer.io",
"standard": "none"
},
{
"name": "Ledger Works Explore",
"url": "https://explore.lworks.io",
"standard": "none"
}
]
},
{
"name": "Hedera Testnet",
"chain": "Hedera",
"icon": "hedera",
"rpc": [
"https://testnet.hashio.io/api"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://portal.hedera.com"
],
"nativeCurrency": {
"name": "hbar",
"symbol": "HBAR",
"decimals": 8
},
"infoURL": "https://hedera.com",
"shortName": "hedera-testnet",
"chainId": 296,
"networkId": 296,
"slip44": 3030,
"explorers": [
{
"name": "HashScan",
"url": "https://hashscan.io/testnet/dashboard",
"standard": "none"
},
{
"name": "Arkhia Explorer",
"url": "https://explorer.arkhia.io",
"standard": "none"
},
{
"name": "DragonGlass",
"url": "https://app.dragonglass.me",
"standard": "none"
},
{
"name": "Hedera Explorer",
"url": "https://hederaexplorer.io",
"standard": "none"
},
{
"name": "Ledger Works Explore",
"url": "https://explore.lworks.io",
"standard": "none"
}
]
},
{
"name": "Hedera Previewnet",
"chain": "Hedera",
"icon": "hedera",
"rpc": [
"https://previewnet.hashio.io/api"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://portal.hedera.com"
],
"nativeCurrency": {
"name": "hbar",
"symbol": "HBAR",
"decimals": 8
},
"infoURL": "https://hedera.com",
"shortName": "hedera-previewnet",
"chainId": 297,
"networkId": 297,
"slip44": 3030,
"explorers": [
{
"name": "HashScan",
"url": "https://hashscan.io/previewnet/dashboard",
"standard": "none"
}
]
},
{
"name": "Hedera Localnet",
"chain": "Hedera",
"icon": "hedera",
"rpc": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "hbar",
"symbol": "HBAR",
"decimals": 8
},
"infoURL": "https://hedera.com",
"shortName": "hedera-localnet",
"chainId": 298,
"networkId": 298,
"slip44": 3030,
"explorers": []
},
{
"name": "Bobaopera",
"chain": "Bobaopera",
"rpc": [
"https://bobaopera.boba.network",
"wss://wss.bobaopera.boba.network",
"https://replica.bobaopera.boba.network",
"wss://replica-wss.bobaopera.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "Bobaopera",
"chainId": 301,
"networkId": 301,
"explorers": [
{
"name": "Bobaopera block explorer",
"url": "https://blockexplorer.bobaopera.boba.network",
"standard": "none"
}
]
},
{
"name": "Omax Mainnet",
"chain": "OMAX Chain",
"rpc": [
"https://mainapi.omaxray.com"
],
"faucets": [
"https://faucet.omaxray.com/"
],
"nativeCurrency": {
"name": "OMAX COIN",
"symbol": "OMAX",
"decimals": 18
},
"infoURL": "https://www.omaxcoin.com/",
"shortName": "omax",
"chainId": 311,
"networkId": 311,
"icon": "omaxchain",
"explorers": [
{
"name": "Omax Chain Explorer",
"url": "https://omaxray.com",
"icon": "omaxray",
"standard": "EIP3091"
}
]
},
{
"name": "Filecoin - Mainnet",
"chain": "FIL",
"icon": "filecoin",
"rpc": [
"https://api.node.glif.io/",
"https://rpc.ankr.com/filecoin"
],
"faucets": [],
"nativeCurrency": {
"name": "filecoin",
"symbol": "FIL",
"decimals": 18
},
"infoURL": "https://filecoin.io",
"shortName": "filecoin",
"chainId": 314,
"networkId": 314,
"slip44": 461,
"explorers": [
{
"name": "Filfox",
"url": "https://filfox.info/en",
"standard": "none"
},
{
"name": "Filscan",
"url": "https://filscan.io",
"standard": "none"
},
{
"name": "Filscout",
"url": "https://filscout.io/en",
"standard": "none"
}
]
},
{
"name": "Consta Testnet",
"chain": "tCNT",
"rpc": [
"https://rpc-testnet.theconsta.com"
],
"faucets": [],
"nativeCurrency": {
"name": "tCNT",
"symbol": "tCNT",
"decimals": 18
},
"infoURL": "http://theconsta.com",
"shortName": "tCNT",
"chainId": 371,
"networkId": 371,
"icon": "constachain",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer-testnet.theconsta.com",
"standard": "EIP3091"
}
]
},
{
"name": "HyperonChain TestNet",
"chain": "HPN",
"icon": "hyperonchain",
"rpc": [
"https://testnet-rpc.hyperonchain.com"
],
"faucets": [
"https://faucet.hyperonchain.com"
],
"nativeCurrency": {
"name": "HyperonChain",
"symbol": "HPN",
"decimals": 18
},
"infoURL": "https://docs.hyperonchain.com",
"shortName": "hpn",
"chainId": 400,
"networkId": 400,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.hyperonchain.com",
"icon": "hyperonchain",
"standard": "EIP3091"
}
]
},
{
"name": "Zeeth Chain",
"chain": "ZeethChain",
"rpc": [
"https://rpc.zeeth.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Zeeth Token",
"symbol": "ZTH",
"decimals": 18
},
"infoURL": "",
"shortName": "zeeth",
"chainId": 427,
"networkId": 427,
"explorers": [
{
"name": "Zeeth Explorer",
"url": "https://explorer.zeeth.io",
"standard": "none"
}
]
},
{
"name": "Frenchain Testnet",
"chain": "tfren",
"rpc": [
"https://rpc-01tn.frenchain.app"
],
"faucets": [],
"nativeCurrency": {
"name": "tFREN",
"symbol": "FtREN",
"decimals": 18
},
"infoURL": "https://frenchain.app",
"shortName": "tFREN",
"chainId": 444,
"networkId": 444,
"icon": "fren",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.frenscan.io",
"icon": "fren",
"standard": "EIP3091"
}
]
},
{
"name": "Camino C-Chain",
"chain": "CAM",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Camino",
"symbol": "CAM",
"decimals": 18
},
"infoURL": "https://camino.foundation/",
"shortName": "Camino",
"chainId": 500,
"networkId": 1000,
"icon": "camino",
"explorers": [
{
"name": "blockexplorer",
"url": "https://explorer.camino.foundation/mainnet",
"standard": "none"
}
]
},
{
"name": "Columbus Test Network",
"chain": "CAM",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Camino",
"symbol": "CAM",
"decimals": 18
},
"infoURL": "https://camino.foundation/",
"shortName": "Columbus",
"chainId": 501,
"networkId": 1001,
"icon": "camino",
"explorers": [
{
"name": "blockexplorer",
"url": "https://explorer.camino.foundation",
"standard": "none"
}
]
},
{
"name": "Gear Zero Network Mainnet",
"chain": "GearZero",
"rpc": [
"https://gzn.linksme.info"
],
"faucets": [],
"nativeCurrency": {
"name": "Gear Zero Network Native Token",
"symbol": "GZN",
"decimals": 18
},
"infoURL": "https://token.gearzero.ca/mainnet",
"shortName": "gz-mainnet",
"chainId": 516,
"networkId": 516,
"slip44": 516,
"explorers": []
},
{
"name": "Firechain Mainnet",
"chain": "FIRE",
"icon": "firechain",
"rpc": [
"https://mainnet.rpc1.thefirechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Firechain",
"symbol": "FIRE",
"decimals": 18
},
"infoURL": "https://thefirechain.com",
"shortName": "fire",
"chainId": 529,
"networkId": 529,
"explorers": [],
"status": "incubating"
},
{
"name": "Dogechain Testnet",
"chain": "DC",
"icon": "dogechain",
"rpc": [
"https://rpc-testnet.dogechain.dog"
],
"faucets": [
"https://faucet.dogechain.dog"
],
"nativeCurrency": {
"name": "Dogecoin",
"symbol": "DOGE",
"decimals": 18
},
"infoURL": "https://dogechain.dog",
"shortName": "dct",
"chainId": 568,
"networkId": 568,
"explorers": [
{
"name": "dogechain testnet explorer",
"url": "https://explorer-testnet.dogechain.dog",
"standard": "EIP3091"
}
]
},
{
"name": "Metis Goerli Testnet",
"chain": "ETH",
"rpc": [
"https://goerli.gateway.metisdevops.link"
],
"faucets": [
"https://goerli.faucet.metisdevops.link"
],
"nativeCurrency": {
"name": "Goerli Metis",
"symbol": "METIS",
"decimals": 18
},
"infoURL": "https://www.metis.io",
"shortName": "metis-goerli",
"chainId": 599,
"networkId": 599,
"explorers": [
{
"name": "blockscout",
"url": "https://goerli.explorer.metisdevops.link",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-4",
"bridges": [
{
"url": "https://testnet-bridge.metis.io"
}
]
}
},
{
"name": "Graphlinq Blockchain Mainnet",
"chain": "GLQ Blockchain",
"rpc": [
"https://glq-dataseed.graphlinq.io"
],
"faucets": [],
"nativeCurrency": {
"name": "GLQ",
"symbol": "GLQ",
"decimals": 18
},
"infoURL": "https://graphlinq.io",
"shortName": "glq",
"chainId": 614,
"networkId": 614,
"explorers": [
{
"name": "GLQ Explorer",
"url": "https://explorer.graphlinq.io",
"standard": "none"
}
]
},
{
"name": "Canto Testnet",
"chain": "Canto Tesnet",
"rpc": [
"https://eth.plexnode.wtf/"
],
"faucets": [],
"nativeCurrency": {
"name": "Canto",
"symbol": "CANTO",
"decimals": 18
},
"infoURL": "https://canto.io",
"shortName": "tcanto",
"chainId": 740,
"networkId": 740,
"explorers": [
{
"name": "Canto Tesnet Explorer (Neobase)",
"url": "http://testnet-explorer.canto.neobase.one",
"standard": "none"
}
]
},
{
"name": "Vention Smart Chain Testnet",
"chain": "VSCT",
"icon": "ventionTestnet",
"rpc": [
"https://node-testnet.vention.network"
],
"faucets": [
"https://faucet.vention.network"
],
"nativeCurrency": {
"name": "VNT",
"symbol": "VNT",
"decimals": 18
},
"infoURL": "https://testnet.ventionscan.io",
"shortName": "vsct",
"chainId": 741,
"networkId": 741,
"explorers": [
{
"name": "ventionscan",
"url": "https://testnet.ventionscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "QL1",
"chain": "QOM",
"status": "incubating",
"rpc": [
"https://rpc.qom.one"
],
"faucets": [],
"nativeCurrency": {
"name": "Shiba Predator",
"symbol": "QOM",
"decimals": 18
},
"infoURL": "https://qom.one",
"shortName": "qom",
"chainId": 766,
"networkId": 766,
"icon": "qom",
"explorers": [
{
"name": "QL1 Mainnet Explorer",
"url": "https://mainnet.qom.one",
"icon": "qom",
"standard": "EIP3091"
}
]
},
{
"name": "Lucid Blockchain",
"chain": "Lucid Blockchain",
"icon": "lucid",
"rpc": [
"https://rpc.lucidcoin.io"
],
"faucets": [
"https://faucet.lucidcoin.io"
],
"nativeCurrency": {
"name": "LUCID",
"symbol": "LUCID",
"decimals": 18
},
"infoURL": "https://lucidcoin.io",
"shortName": "LUCID",
"chainId": 800,
"networkId": 800,
"explorers": [
{
"name": "Lucid Explorer",
"url": "https://explorer.lucidcoin.io",
"standard": "none"
}
]
},
{
"name": "Qitmeer",
"chain": "MEER",
"rpc": [
"https://qng.rpc.qitmeer.io",
"https://rpc.woowow.io",
"https://mainnet.meerlabs.com",
"https://rpc.dimai.ai",
"https://evm-dataseed1.meerscan.io",
"https://evm-dataseed2.meerscan.io",
"https://evm-dataseed3.meerscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Qitmeer",
"symbol": "MEER",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "meer",
"chainId": 813,
"networkId": 813,
"slip44": 813,
"icon": "meer",
"explorers": [
{
"name": "meerscan",
"url": "https://qng.meerscan.io",
"standard": "none"
},
{
"name": "QNG Mainnet Qitmeer Explorer",
"url": "https://qng.qitmneer.io",
"standard": "none"
}
]
},
{
"name": "Taraxa Mainnet",
"chain": "Tara",
"icon": "taraxa",
"rpc": [
"https://rpc.mainnet.taraxa.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Tara",
"symbol": "TARA",
"decimals": 18
},
"infoURL": "https://taraxa.io",
"shortName": "tara",
"chainId": 841,
"networkId": 841,
"explorers": [
{
"name": "Taraxa Explorer",
"url": "https://explorer.mainnet.taraxa.io",
"standard": "none"
}
]
},
{
"name": "Taraxa Testnet",
"chain": "Tara",
"icon": "taraxa",
"rpc": [
"https://rpc.testnet.taraxa.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Tara",
"symbol": "TARA",
"decimals": 18
},
"infoURL": "https://taraxa.io",
"shortName": "taratest",
"chainId": 842,
"networkId": 842,
"explorers": [
{
"name": "Taraxa Explorer",
"url": "https://explorer.testnet.taraxa.io",
"standard": "none"
}
]
},
{
"name": "Zeeth Chain Dev",
"chain": "ZeethChainDev",
"rpc": [
"https://rpc.dev.zeeth.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Zeeth Token",
"symbol": "ZTH",
"decimals": 18
},
"infoURL": "",
"shortName": "zeethdev",
"chainId": 859,
"networkId": 859,
"explorers": [
{
"name": "Zeeth Explorer Dev",
"url": "https://explorer.dev.zeeth.io",
"standard": "none"
}
]
},
{
"name": "Fantasia Chain Mainnet",
"chain": "FSC",
"rpc": [
"https://mainnet-data1.fantasiachain.com/",
"https://mainnet-data2.fantasiachain.com/",
"https://mainnet-data3.fantasiachain.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "FST",
"symbol": "FST",
"decimals": 18
},
"infoURL": "https://fantasia.technology/",
"shortName": "FSCMainnet",
"chainId": 868,
"networkId": 868,
"explorers": [
{
"name": "FSCScan",
"url": "https://explorer.fantasiachain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Bandai Namco Research Verse Mainnet",
"chain": "Bandai Namco Research Verse",
"icon": "bnken",
"rpc": [
"https://rpc.main.oasvrs.bnken.net"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://www.bandainamco-mirai.com/en/",
"shortName": "BNKEN",
"chainId": 876,
"networkId": 876,
"explorers": [
{
"name": "Bandai Namco Research Verse Explorer",
"url": "https://explorer.main.oasvrs.bnken.net",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Dexit Network",
"chain": "DXT",
"rpc": [
"https://dxt.dexit.network"
],
"faucets": [
"https://faucet.dexit.network"
],
"nativeCurrency": {
"name": "Dexit network",
"symbol": "DXT",
"decimals": 18
},
"infoURL": "https://dexit.network",
"shortName": "DXT",
"chainId": 877,
"networkId": 877,
"explorers": [
{
"name": "dxtscan",
"url": "https://dxtscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Rinia Testnet",
"chain": "FIRE",
"icon": "rinia",
"rpc": [
"https://rinia.rpc1.thefirechain.com"
],
"faucets": [
"https://faucet.thefirechain.com"
],
"nativeCurrency": {
"name": "Firechain",
"symbol": "FIRE",
"decimals": 18
},
"infoURL": "https://thefirechain.com",
"shortName": "tfire",
"chainId": 917,
"networkId": 917,
"explorers": [],
"status": "incubating"
},
{
"name": "muNode Testnet",
"chain": "munode",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://munode.dev/",
"shortName": "munode",
"chainId": 956,
"networkId": 956
},
{
"name": "Oort Mainnet",
"chain": "Oort Mainnet",
"rpc": [
"https://rpc.oortech.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Oort",
"symbol": "CCN",
"decimals": 18
},
"infoURL": "https://oortech.com",
"shortName": "ccn",
"chainId": 970,
"networkId": 970,
"icon": "ccn"
},
{
"name": "Oort Huygens",
"chain": "Huygens",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Oort",
"symbol": "CCN",
"decimals": 18
},
"infoURL": "https://oortech.com",
"shortName": "Huygens",
"chainId": 971,
"networkId": 971,
"icon": "ccn"
},
{
"name": "Oort Ascraeus",
"title": "Oort Ascraeus",
"chain": "Ascraeus",
"rpc": [
"https://ascraeus-rpc.oortech.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Oort",
"symbol": "CCNA",
"decimals": 18
},
"infoURL": "https://oortech.com",
"shortName": "Ascraeus",
"chainId": 972,
"networkId": 972,
"icon": "ccn"
},
{
"name": "Memo Smart Chain Mainnet",
"chain": "MEMO",
"rpc": [
"https://chain.metamemo.one:8501",
"wss://chain.metamemo.one:16801"
],
"faucets": [
"https://faucet.metamemo.one/"
],
"nativeCurrency": {
"name": "Memo",
"symbol": "CMEMO",
"decimals": 18
},
"infoURL": "www.memolabs.org",
"shortName": "memochain",
"chainId": 985,
"networkId": 985,
"icon": "memo",
"explorers": [
{
"name": "Memo Mainnet Explorer",
"url": "https://scan.metamemo.one:8080",
"icon": "memoscan",
"standard": "EIP3091"
}
]
},
{
"name": "T-EKTA",
"title": "EKTA Testnet T-EKTA",
"chain": "T-EKTA",
"rpc": [
"https://test.ekta.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "T-EKTA",
"symbol": "T-EKTA",
"decimals": 18
},
"infoURL": "https://www.ekta.io",
"shortName": "t-ekta",
"chainId": 1004,
"networkId": 1004,
"icon": "ekta",
"explorers": [
{
"name": "test-ektascan",
"url": "https://test.ektascan.io",
"icon": "ekta",
"standard": "EIP3091"
}
]
},
{
"name": "Proxy Network Testnet",
"chain": "Proxy Network",
"rpc": [
"http://128.199.94.183:8041"
],
"faucets": [],
"nativeCurrency": {
"name": "PRX",
"symbol": "PRX",
"decimals": 18
},
"infoURL": "https://theproxy.network",
"shortName": "prx",
"chainId": 1031,
"networkId": 1031,
"explorers": [
{
"name": "proxy network testnet",
"url": "http://testnet-explorer.theproxy.network",
"standard": "EIP3091"
}
]
},
{
"name": "Bronos Testnet",
"chain": "Bronos",
"rpc": [
"https://evm-testnet.bronos.org"
],
"faucets": [
"https://faucet.bronos.org"
],
"nativeCurrency": {
"name": "tBRO",
"symbol": "tBRO",
"decimals": 18
},
"infoURL": "https://bronos.org",
"shortName": "bronos-testnet",
"chainId": 1038,
"networkId": 1038,
"icon": "bronos",
"explorers": [
{
"name": "Bronos Testnet Explorer",
"url": "https://tbroscan.bronos.org",
"standard": "none",
"icon": "bronos"
}
]
},
{
"name": "Bronos Mainnet",
"chain": "Bronos",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "BRO",
"symbol": "BRO",
"decimals": 18
},
"infoURL": "https://bronos.org",
"shortName": "bronos-mainnet",
"chainId": 1039,
"networkId": 1039,
"icon": "bronos",
"explorers": [
{
"name": "Bronos Explorer",
"url": "https://broscan.bronos.org",
"standard": "none",
"icon": "bronos"
}
]
},
{
"name": "MOAC mainnet",
"chain": "MOAC",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "MOAC",
"symbol": "mc",
"decimals": 18
},
"infoURL": "https://moac.io",
"shortName": "moac",
"chainId": 1099,
"networkId": 1099,
"slip44": 314,
"explorers": [
{
"name": "moac explorer",
"url": "https://explorer.moac.io",
"standard": "none"
}
]
},
{
"name": "WEMIX3.0 Mainnet",
"chain": "WEMIX",
"rpc": [
"https://api.wemix.com",
"wss://ws.wemix.com"
],
"faucets": [],
"nativeCurrency": {
"name": "WEMIX",
"symbol": "WEMIX",
"decimals": 18
},
"infoURL": "https://wemix.com",
"shortName": "wemix",
"chainId": 1111,
"networkId": 1111,
"explorers": [
{
"name": "WEMIX Block Explorer",
"url": "https://explorer.wemix.com",
"standard": "EIP3091"
}
]
},
{
"name": "WEMIX3.0 Testnet",
"chain": "TWEMIX",
"rpc": [
"https://api.test.wemix.com",
"wss://ws.test.wemix.com"
],
"faucets": [
"https://wallet.test.wemix.com/faucet"
],
"nativeCurrency": {
"name": "TestnetWEMIX",
"symbol": "tWEMIX",
"decimals": 18
},
"infoURL": "https://wemix.com",
"shortName": "twemix",
"chainId": 1112,
"networkId": 1112,
"explorers": [
{
"name": "WEMIX Testnet Microscope",
"url": "https://microscope.test.wemix.com",
"standard": "EIP3091"
}
]
},
{
"name": "Core Blockchain Testnet",
"chain": "Core",
"icon": "core",
"rpc": [
"https://rpc.test.btcs.network/"
],
"faucets": [
"https://scan.test.btcs.network/faucet"
],
"nativeCurrency": {
"name": "Core Blockchain Testnet Native Token",
"symbol": "tCORE",
"decimals": 18
},
"infoURL": "https://www.coredao.org",
"shortName": "tcore",
"chainId": 1115,
"networkId": 1115,
"explorers": [
{
"name": "Core Scan Testnet",
"url": "https://scan.test.btcs.network",
"icon": "core",
"standard": "EIP3091"
}
]
},
{
"name": "Dogcoin Mainnet",
"chain": "DOGS",
"icon": "dogs",
"rpc": [
"https://mainnet-rpc.dogcoin.network"
],
"faucets": [
"https://faucet.dogcoin.network"
],
"nativeCurrency": {
"name": "Dogcoin",
"symbol": "DOGS",
"decimals": 18
},
"infoURL": "https://dogcoin.network",
"shortName": "DOGSm",
"chainId": 1117,
"networkId": 1117,
"explorers": [
{
"name": "Dogcoin",
"url": "https://explorer.dogcoin.network",
"standard": "EIP3091"
}
]
},
{
"name": "DeFiChain EVM Network Mainnet",
"chain": "defichain-evm",
"status": "incubating",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "DeFiChain",
"symbol": "DFI",
"decimals": 18
},
"infoURL": "https://meta.defichain.com/",
"shortName": "DFI",
"chainId": 1130,
"networkId": 1130,
"slip44": 1130,
"icon": "defichain-network",
"explorers": []
},
{
"name": "DeFiChain EVM Network Testnet",
"chain": "defichain-evm-testnet",
"status": "incubating",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "DeFiChain",
"symbol": "DFI",
"decimals": 18
},
"infoURL": "https://meta.defichain.com/",
"shortName": "DFI-T",
"chainId": 1131,
"networkId": 1131,
"icon": "defichain-network",
"explorers": []
},
{
"name": "AmStar Testnet",
"chain": "AmStar",
"icon": "amstar",
"rpc": [
"https://testnet-rpc.amstarscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "SINSO",
"symbol": "SINSO",
"decimals": 18
},
"infoURL": "https://sinso.io",
"shortName": "ASARt",
"chainId": 1138,
"networkId": 1138,
"explorers": [
{
"name": "amstarscan-testnet",
"url": "https://testnet.amstarscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Smart Host Teknoloji TESTNET",
"chain": "SHT",
"rpc": [
"https://s2.tl.web.tr:4041"
],
"faucets": [],
"nativeCurrency": {
"name": "Smart Host Teknoloji TESTNET",
"symbol": "tSHT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://smart-host.com.tr",
"shortName": "sht",
"chainId": 1177,
"networkId": 1177,
"icon": "smarthost",
"explorers": [
{
"name": "Smart Host Teknoloji TESTNET Explorer",
"url": "https://s2.tl.web.tr:4000",
"icon": "smarthost",
"standard": "EIP3091"
}
]
},
{
"name": "Exzo Network Mainnet",
"chain": "EXZO",
"icon": "exzo",
"rpc": [
"https://mainnet.exzo.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "Exzo",
"symbol": "XZO",
"decimals": 18
},
"infoURL": "https://exzo.network",
"shortName": "xzo",
"chainId": 1229,
"networkId": 1229,
"explorers": [
{
"name": "blockscout",
"url": "https://exzoscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Ultron Testnet",
"chain": "Ultron",
"icon": "ultron",
"rpc": [
"https://ultron-dev.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ultron",
"symbol": "ULX",
"decimals": 18
},
"infoURL": "https://ultron.foundation",
"shortName": "UltronTestnet",
"chainId": 1230,
"networkId": 1230,
"explorers": [
{
"name": "Ultron Testnet Explorer",
"url": "https://explorer.ultron-dev.io",
"icon": "ultron",
"standard": "none"
}
]
},
{
"name": "Ultron Mainnet",
"chain": "Ultron",
"icon": "ultron",
"rpc": [
"https://ultron-rpc.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Ultron",
"symbol": "ULX",
"decimals": 18
},
"infoURL": "https://ultron.foundation",
"shortName": "UtronMainnet",
"chainId": 1231,
"networkId": 1231,
"explorers": [
{
"name": "Ultron Explorer",
"url": "https://ulxscan.com",
"icon": "ultron",
"standard": "none"
}
]
},
{
"name": "Step Network",
"title": "Step Main Network",
"chain": "STEP",
"icon": "step",
"rpc": [
"https://rpc.step.network"
],
"faucets": [],
"nativeCurrency": {
"name": "FITFI",
"symbol": "FITFI",
"decimals": 18
},
"infoURL": "https://step.network",
"shortName": "step",
"chainId": 1234,
"networkId": 1234,
"explorers": [
{
"name": "StepScan",
"url": "https://stepscan.io",
"icon": "step",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-43114",
"bridges": [
{
"url": "https://bridge.step.network"
}
]
}
},
{
"name": "CIC Chain Testnet",
"chain": "CICT",
"rpc": [
"https://testapi.cicscan.com"
],
"faucets": [
"https://cicfaucet.com"
],
"nativeCurrency": {
"name": "Crazy Internet Coin",
"symbol": "CICT",
"decimals": 18
},
"infoURL": "https://www.cicchain.net",
"shortName": "CICT",
"chainId": 1252,
"networkId": 1252,
"icon": "cicchain",
"explorers": [
{
"name": "CICscan",
"url": "https://testnet.cicscan.com",
"icon": "cicchain",
"standard": "EIP3091"
}
]
},
{
"name": "Bobabeam",
"chain": "Bobabeam",
"rpc": [
"https://bobabeam.boba.network",
"wss://wss.bobabeam.boba.network",
"https://replica.bobabeam.boba.network",
"wss://replica-wss.bobabeam.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "Bobabeam",
"chainId": 1294,
"networkId": 1294,
"explorers": [
{
"name": "Bobabeam block explorer",
"url": "https://blockexplorer.bobabeam.boba.network",
"standard": "none"
}
]
},
{
"name": "Dos Fuji Subnet",
"chain": "DOS",
"rpc": [
"https://test.doschain.com/jsonrpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Dos Native Token",
"symbol": "DOS",
"decimals": 18
},
"infoURL": "http://doschain.io/",
"shortName": "DOS",
"chainId": 1311,
"networkId": 1311,
"explorers": [
{
"name": "dos-testnet",
"url": "https://test.doscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Alyx Mainnet",
"chain": "ALYX",
"rpc": [
"https://rpc.alyxchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Alyx Chain Native Token",
"symbol": "ALYX",
"decimals": 18
},
"infoURL": "https://www.alyxchain.com",
"shortName": "alyx",
"chainId": 1314,
"networkId": 1314,
"explorers": [
{
"name": "alyxscan",
"url": "https://www.alyxscan.com",
"standard": "EIP3091"
}
],
"icon": "alyx"
},
{
"name": "Elysium Testnet",
"title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged",
"chain": "Elysium",
"rpc": [
"https://elysium-test-rpc.vulcanforged.com"
],
"faucets": [],
"nativeCurrency": {
"name": "LAVA",
"symbol": "LAVA",
"decimals": 18
},
"infoURL": "https://elysiumscan.vulcanforged.com",
"shortName": "ELST",
"chainId": 1338,
"networkId": 1338,
"explorers": [
{
"name": "Elysium testnet explorer",
"url": "https://elysium-explorer.vulcanforged.com",
"standard": "none"
}
]
},
{
"name": "Elysium Mainnet",
"title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged",
"chain": "Elysium",
"rpc": [
"https://elysium-rpc.vulcanforged.com"
],
"faucets": [],
"nativeCurrency": {
"name": "LAVA",
"symbol": "LAVA",
"decimals": 18
},
"infoURL": "https://elysiumscan.vulcanforged.com",
"shortName": "ELSM",
"chainId": 1339,
"networkId": 1339,
"explorers": [
{
"name": "Elysium mainnet explorer",
"url": "https://explorer.elysiumchain.tech",
"standard": "none"
}
]
},
{
"name": "CIC Chain Mainnet",
"chain": "CIC",
"rpc": [
"https://xapi.cicscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Crazy Internet Coin",
"symbol": "CIC",
"decimals": 18
},
"infoURL": "https://www.cicchain.net",
"shortName": "CIC",
"chainId": 1353,
"networkId": 1353,
"icon": "cicchain",
"explorers": [
{
"name": "CICscan",
"url": "https://cicscan.com",
"icon": "cicchain",
"standard": "EIP3091"
}
]
},
{
"name": "AmStar Mainnet",
"chain": "AmStar",
"icon": "amstar",
"rpc": [
"https://mainnet-rpc.amstarscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "SINSO",
"symbol": "SINSO",
"decimals": 18
},
"infoURL": "https://sinso.io",
"shortName": "ASAR",
"chainId": 1388,
"networkId": 1388,
"explorers": [
{
"name": "amstarscan",
"url": "https://mainnet.amstarscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Polygon zkEVM Testnet old",
"title": "Polygon zkEVM Testnet",
"chain": "Polygon",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://polygon.technology/solutions/polygon-zkevm/",
"shortName": "zkevmtest",
"chainId": 1402,
"networkId": 1402,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.public.zkevm-test.net",
"standard": "EIP3091"
}
],
"status": "deprecated"
},
{
"name": "Polygon zkEVM Testnet",
"title": "Polygon zkEVM Testnet",
"chain": "Polygon",
"rpc": [
"https://rpc.public.zkevm-test.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://polygon.technology/solutions/polygon-zkevm/",
"shortName": "testnet-zkEVM-mango",
"chainId": 1422,
"networkId": 1422,
"explorers": [
{
"name": "Polygon zkEVM explorer",
"url": "https://explorer.public.zkevm-test.net",
"standard": "EIP3091"
}
]
},
{
"name": "Ctex Scan Blockchain",
"chain": "Ctex Scan Blockchain",
"icon": "ctex",
"rpc": [
"https://mainnet-rpc.ctexscan.com/"
],
"faucets": [
"https://faucet.ctexscan.com"
],
"nativeCurrency": {
"name": "CTEX",
"symbol": "CTEX",
"decimals": 18
},
"infoURL": "https://ctextoken.io",
"shortName": "CTEX",
"chainId": 1455,
"networkId": 1455,
"explorers": [
{
"name": "Ctex Scan Explorer",
"url": "https://ctexscan.com",
"standard": "none"
}
]
},
{
"name": "Beagle Messaging Chain",
"chain": "BMC",
"rpc": [
"https://beagle.chat/eth"
],
"faucets": [
"https://faucet.beagle.chat/"
],
"nativeCurrency": {
"name": "Beagle",
"symbol": "BG",
"decimals": 18
},
"infoURL": "https://beagle.chat/",
"shortName": "beagle",
"chainId": 1515,
"networkId": 1515,
"explorers": [
{
"name": "Beagle Messaging Chain Explorer",
"url": "https://eth.beagle.chat",
"standard": "EIP3091"
}
]
},
{
"name": "Horizen Yuma Testnet",
"shortName": "Yuma",
"chain": "Yuma",
"icon": "eon",
"rpc": [
"https://yuma-testnet.horizenlabs.io/ethv1"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://yuma-testnet-faucet.horizen.io"
],
"nativeCurrency": {
"name": "Testnet Zen",
"symbol": "tZEN",
"decimals": 18
},
"infoURL": "https://horizen.io/",
"chainId": 1662,
"networkId": 1662,
"slip44": 121,
"explorers": [
{
"name": "Yuma Testnet Block Explorer",
"url": "https://yuma-explorer.horizen.io",
"icon": "eon",
"standard": "EIP3091"
}
]
},
{
"name": "Anytype EVM Chain",
"chain": "ETH",
"icon": "any",
"rpc": [
"https://geth.anytype.io"
],
"faucets": [
"https://evm.anytype.io/faucet"
],
"nativeCurrency": {
"name": "ANY",
"symbol": "ANY",
"decimals": 18
},
"infoURL": "https://evm.anytype.io",
"shortName": "AnytypeChain",
"chainId": 1701,
"networkId": 1701,
"explorers": [
{
"name": "Anytype Explorer",
"url": "https://explorer.anytype.io",
"icon": "any",
"standard": "EIP3091"
}
]
},
{
"name": "TBSI Mainnet",
"title": "Thai Blockchain Service Infrastructure Mainnet",
"chain": "TBSI",
"rpc": [
"https://rpc.blockchain.or.th"
],
"faucets": [],
"nativeCurrency": {
"name": "Jinda",
"symbol": "JINDA",
"decimals": 18
},
"infoURL": "https://blockchain.or.th",
"shortName": "TBSI",
"chainId": 1707,
"networkId": 1707
},
{
"name": "TBSI Testnet",
"title": "Thai Blockchain Service Infrastructure Testnet",
"chain": "TBSI",
"rpc": [
"https://rpc.testnet.blockchain.or.th"
],
"faucets": [
"https://faucet.blockchain.or.th"
],
"nativeCurrency": {
"name": "Jinda",
"symbol": "JINDA",
"decimals": 18
},
"infoURL": "https://blockchain.or.th",
"shortName": "tTBSI",
"chainId": 1708,
"networkId": 1708
},
{
"name": "Kerleano",
"title": "Proof of Carbon Reduction testnet",
"chain": "CRC",
"status": "active",
"rpc": [
"https://cacib-saturn-test.francecentral.cloudapp.azure.com",
"wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443"
],
"faucets": [
"https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md"
],
"nativeCurrency": {
"name": "Carbon Reduction Coin",
"symbol": "CRC",
"decimals": 18
},
"infoURL": "https://github.com/ethereum-pocr/kerleano",
"shortName": "kerleano",
"chainId": 1804,
"networkId": 1804,
"explorers": [
{
"name": "Lite Explorer",
"url": "https://ethereum-pocr.github.io/explorer/kerleano",
"standard": "EIP3091"
}
]
},
{
"name": "Rabbit Analog Testnet Chain",
"chain": "rAna",
"icon": "rabbit",
"rpc": [
"https://rabbit.analog-rpc.com"
],
"faucets": [
"https://analogfaucet.com"
],
"nativeCurrency": {
"name": "Rabbit Analog Test Chain Native Token ",
"symbol": "rAna",
"decimals": 18
},
"infoURL": "https://rabbit.analogscan.com",
"shortName": "rAna",
"chainId": 1807,
"networkId": 1807,
"explorers": [
{
"name": "blockscout",
"url": "https://rabbit.analogscan.com",
"standard": "none"
}
]
},
{
"name": "Gitshock Cartenz Testnet",
"chain": "Gitshock Cartenz",
"icon": "gitshockchain",
"rpc": [
"https://rpc.cartenz.works"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Gitshock Cartenz",
"symbol": "tGTFX",
"decimals": 18
},
"infoURL": "https://gitshock.com",
"shortName": "gitshockchain",
"chainId": 1881,
"networkId": 1881,
"explorers": [
{
"name": "blockscout",
"url": "https://scan.cartenz.works",
"standard": "EIP3091"
}
]
},
{
"name": "Bitcichain Mainnet",
"chain": "BITCI",
"icon": "bitci",
"rpc": [
"https://rpc.bitci.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitci",
"symbol": "BITCI",
"decimals": 18
},
"infoURL": "https://www.bitcichain.com",
"shortName": "bitci",
"chainId": 1907,
"networkId": 1907,
"explorers": [
{
"name": "Bitci Explorer",
"url": "https://bitciexplorer.com",
"standard": "EIP3091"
}
]
},
{
"name": "Bitcichain Testnet",
"chain": "TBITCI",
"icon": "bitci",
"rpc": [
"https://testnet.bitcichain.com"
],
"faucets": [
"https://faucet.bitcichain.com"
],
"nativeCurrency": {
"name": "Test Bitci",
"symbol": "TBITCI",
"decimals": 18
},
"infoURL": "https://www.bitcichain.com",
"shortName": "tbitci",
"chainId": 1908,
"networkId": 1908,
"explorers": [
{
"name": "Bitci Explorer Testnet",
"url": "https://testnet.bitciexplorer.com",
"standard": "EIP3091"
}
]
},
{
"name": "ONUS Chain Testnet",
"title": "ONUS Chain Testnet",
"chain": "onus",
"rpc": [
"https://rpc-testnet.onuschain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ONUS",
"symbol": "ONUS",
"decimals": 18
},
"infoURL": "https://onuschain.io",
"shortName": "onus-testnet",
"chainId": 1945,
"networkId": 1945,
"explorers": [
{
"name": "Onus explorer testnet",
"url": "https://explorer-testnet.onuschain.io",
"icon": "onus",
"standard": "EIP3091"
}
]
},
{
"name": "D-Chain Mainnet",
"chain": "D-Chain",
"rpc": [
"https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc"
],
"nativeCurrency": {
"name": "DOINX",
"symbol": "DOINX",
"decimals": 18
},
"shortName": "dchain-mainnet",
"chainId": 1951,
"networkId": 1951,
"icon": "dchain",
"faucets": [],
"infoURL": ""
},
{
"name": "Atelier",
"title": "Atelier Test Network",
"chain": "ALTR",
"rpc": [
"https://1971.network/atlr",
"wss://1971.network/atlr"
],
"faucets": [],
"nativeCurrency": {
"name": "ATLR",
"symbol": "ATLR",
"decimals": 18
},
"infoURL": "https://1971.network/",
"shortName": "atlr",
"chainId": 1971,
"networkId": 1971,
"icon": "atlr"
},
{
"name": "ONUS Chain Mainnet",
"title": "ONUS Chain Mainnet",
"chain": "onus",
"rpc": [
"https://rpc.onuschain.io",
"wss://ws.onuschain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ONUS",
"symbol": "ONUS",
"decimals": 18
},
"infoURL": "https://onuschain.io",
"shortName": "onus-mainnet",
"chainId": 1975,
"networkId": 1975,
"explorers": [
{
"name": "Onus explorer mainnet",
"url": "https://explorer.onuschain.io",
"icon": "onus",
"standard": "EIP3091"
}
]
},
{
"name": "Ekta",
"chain": "EKTA",
"rpc": [
"https://main.ekta.io"
],
"faucets": [],
"nativeCurrency": {
"name": "EKTA",
"symbol": "EKTA",
"decimals": 18
},
"infoURL": "https://www.ekta.io",
"shortName": "ekta",
"chainId": 1994,
"networkId": 1994,
"icon": "ekta",
"explorers": [
{
"name": "ektascan",
"url": "https://ektascan.io",
"icon": "ekta",
"standard": "EIP3091"
}
]
},
{
"name": "edeXa Testnet",
"chain": "edeXa TestNetwork",
"rpc": [
"https://testnet.edexa.com/rpc",
"https://io-dataseed1.testnet.edexa.io-market.com/rpc"
],
"faucets": [
"https://faucet.edexa.com/"
],
"nativeCurrency": {
"name": "EDEXA",
"symbol": "EDX",
"decimals": 18
},
"infoURL": "https://edexa.com/",
"shortName": "edx",
"chainId": 1995,
"networkId": 1995,
"icon": "edexa",
"explorers": [
{
"name": "edexa-testnet",
"url": "https://explorer.edexa.com",
"standard": "EIP3091"
}
]
},
{
"name": "Dogechain Mainnet",
"chain": "DC",
"icon": "dogechain",
"rpc": [
"https://rpc.dogechain.dog",
"https://rpc-us.dogechain.dog",
"https://rpc01.dogechain.dog"
],
"faucets": [],
"nativeCurrency": {
"name": "Dogecoin",
"symbol": "DOGE",
"decimals": 18
},
"infoURL": "https://dogechain.dog",
"shortName": "dc",
"chainId": 2000,
"networkId": 2000,
"explorers": [
{
"name": "dogechain explorer",
"url": "https://explorer.dogechain.dog",
"standard": "EIP3091"
}
]
},
{
"name": "Milkomeda A1 Mainnet",
"chain": "milkALGO",
"icon": "milkomeda",
"rpc": [
"https://rpc-mainnet-algorand-rollup.a1.milkomeda.com",
"wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "milkALGO",
"symbol": "mALGO",
"decimals": 18
},
"infoURL": "https://milkomeda.com",
"shortName": "milkALGO",
"chainId": 2002,
"networkId": 2002,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com",
"standard": "none"
}
]
},
{
"name": "MainnetZ Mainnet",
"chain": "NetZ",
"icon": "mainnetz",
"rpc": [
"https://mainnet-rpc.mainnetz.io"
],
"faucets": [
"https://faucet.mainnetz.io"
],
"nativeCurrency": {
"name": "MainnetZ",
"symbol": "NetZ",
"decimals": 18
},
"infoURL": "https://mainnetz.io",
"shortName": "NetZm",
"chainId": 2016,
"networkId": 2016,
"explorers": [
{
"name": "MainnetZ",
"url": "https://explorer.mainnetz.io",
"standard": "EIP3091"
}
]
},
{
"name": "PublicMint Devnet",
"title": "Public Mint Devnet",
"chain": "PublicMint",
"rpc": [
"https://rpc.dev.publicmint.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "USD",
"symbol": "USD",
"decimals": 18
},
"infoURL": "https://publicmint.com",
"shortName": "pmint_dev",
"chainId": 2018,
"networkId": 2018,
"slip44": 60,
"explorers": [
{
"name": "PublicMint Explorer",
"url": "https://explorer.dev.publicmint.io",
"standard": "EIP3091"
}
]
},
{
"name": "PublicMint Testnet",
"title": "Public Mint Testnet",
"chain": "PublicMint",
"rpc": [
"https://rpc.tst.publicmint.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "USD",
"symbol": "USD",
"decimals": 18
},
"infoURL": "https://publicmint.com",
"shortName": "pmint_test",
"chainId": 2019,
"networkId": 2019,
"slip44": 60,
"explorers": [
{
"name": "PublicMint Explorer",
"url": "https://explorer.tst.publicmint.io",
"standard": "EIP3091"
}
]
},
{
"name": "OriginTrail Parachain",
"chain": "OTP",
"rpc": [
"https://astrosat.origintrail.network",
"wss://parachain-rpc.origin-trail.network"
],
"faucets": [],
"nativeCurrency": {
"name": "OriginTrail Parachain Token",
"symbol": "OTP",
"decimals": 12
},
"infoURL": "https://parachain.origintrail.io",
"shortName": "otp",
"chainId": 2043,
"networkId": 2043
},
{
"name": "Stratos Testnet",
"chain": "STOS",
"rpc": [
"https://web3-testnet-rpc.thestratos.org"
],
"faucets": [],
"nativeCurrency": {
"name": "STOS",
"symbol": "STOS",
"decimals": 18
},
"infoURL": "https://www.thestratos.org",
"shortName": "stos-testnet",
"chainId": 2047,
"networkId": 2047,
"explorers": [
{
"name": "Stratos EVM Explorer (Blockscout)",
"url": "https://web3-testnet-explorer.thestratos.org",
"standard": "none"
},
{
"name": "Stratos Cosmos Explorer (BigDipper)",
"url": "https://big-dipper-dev.thestratos.org",
"standard": "none"
}
]
},
{
"name": "Stratos Mainnet",
"chain": "STOS",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "STOS",
"symbol": "STOS",
"decimals": 18
},
"infoURL": "https://www.thestratos.org",
"shortName": "stos-mainnet",
"chainId": 2048,
"networkId": 2048,
"status": "incubating"
},
{
"name": "Quokkacoin Mainnet",
"chain": "Qkacoin",
"rpc": [
"https://rpc.qkacoin.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Qkacoin",
"symbol": "QKA",
"decimals": 18
},
"infoURL": "https://qkacoin.org",
"shortName": "QKA",
"chainId": 2077,
"networkId": 2077,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.qkacoin.org",
"standard": "EIP3091"
}
]
},
{
"name": "Exosama Network",
"chain": "EXN",
"rpc": [
"https://rpc.exosama.com",
"wss://rpc.exosama.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Sama Token",
"symbol": "SAMA",
"decimals": 18
},
"infoURL": "https://moonsama.com",
"shortName": "exn",
"chainId": 2109,
"networkId": 2109,
"slip44": 2109,
"icon": "exn",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.exosama.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Metaplayerone Mainnet",
"chain": "METAD",
"icon": "metad",
"rpc": [
"https://rpc.metaplayer.one/"
],
"faucets": [],
"nativeCurrency": {
"name": "METAD",
"symbol": "METAD",
"decimals": 18
},
"infoURL": "https://docs.metaplayer.one/",
"shortName": "Metad",
"chainId": 2122,
"networkId": 2122,
"explorers": [
{
"name": "Metad Scan",
"url": "https://scan.metaplayer.one",
"icon": "metad",
"standard": "EIP3091"
}
]
},
{
"name": "BOSagora Mainnet",
"chain": "ETH",
"rpc": [
"https://mainnet.bosagora.org",
"https://rpc.bosagora.org"
],
"faucets": [],
"nativeCurrency": {
"name": "BOSAGORA",
"symbol": "BOA",
"decimals": 18
},
"infoURL": "https://docs.bosagora.org",
"shortName": "boa",
"chainId": 2151,
"networkId": 2151,
"icon": "agora",
"explorers": [
{
"name": "BOASCAN",
"url": "https://boascan.io",
"icon": "agora",
"standard": "EIP3091"
}
]
},
{
"name": "Findora Forge",
"chain": "Testnet-forge",
"rpc": [
"https://prod-forge.prod.findora.org:8545/"
],
"faucets": [],
"nativeCurrency": {
"name": "FRA",
"symbol": "FRA",
"decimals": 18
},
"infoURL": "https://findora.org/",
"shortName": "findora-forge",
"chainId": 2154,
"networkId": 2154,
"explorers": [
{
"name": "findorascan",
"url": "https://testnet-forge.evm.findorascan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Bitcoin EVM",
"chain": "Bitcoin EVM",
"rpc": [
"https://connect.bitcoinevm.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "eBTC",
"decimals": 18
},
"infoURL": "https://bitcoinevm.com",
"shortName": "eBTC",
"chainId": 2203,
"networkId": 2203,
"icon": "ebtc",
"explorers": [
{
"name": "Explorer",
"url": "https://explorer.bitcoinevm.com",
"icon": "ebtc",
"standard": "none"
}
]
},
{
"name": "BOMB Chain",
"chain": "BOMB",
"rpc": [
"https://rpc.bombchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BOMB Token",
"symbol": "BOMB",
"decimals": 18
},
"infoURL": "https://www.bombchain.com",
"shortName": "bomb",
"chainId": 2300,
"networkId": 2300,
"icon": "bomb",
"explorers": [
{
"name": "bombscan",
"icon": "bomb",
"url": "https://bombscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Arevia",
"chain": "Arevia",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Arev",
"symbol": "ARÉV",
"decimals": 18
},
"infoURL": "",
"shortName": "arevia",
"chainId": 2309,
"networkId": 2309,
"explorers": [],
"status": "incubating"
},
{
"name": "Altcoinchain",
"chain": "mainnet",
"rpc": [
"https://rpc0.altcoinchain.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Altcoin",
"symbol": "ALT",
"decimals": 18
},
"infoURL": "https://altcoinchain.org",
"shortName": "alt",
"chainId": 2330,
"networkId": 2330,
"icon": "altcoinchain",
"status": "active",
"explorers": [
{
"name": "expedition",
"url": "http://expedition.altcoinchain.org",
"icon": "altcoinchain",
"standard": "none"
}
]
},
{
"name": "BOMB Chain Testnet",
"chain": "BOMB",
"rpc": [
"https://bombchain-testnet.ankr.com/bas_full_rpc_1"
],
"faucets": [
"https://faucet.bombchain-testnet.ankr.com/"
],
"nativeCurrency": {
"name": "BOMB Token",
"symbol": "tBOMB",
"decimals": 18
},
"infoURL": "https://www.bombmoney.com",
"shortName": "bombt",
"chainId": 2399,
"networkId": 2399,
"icon": "bomb",
"explorers": [
{
"name": "bombscan-testnet",
"icon": "bomb",
"url": "https://explorer.bombchain-testnet.ankr.com",
"standard": "EIP3091"
}
]
},
{
"name": "TCG Verse Mainnet",
"chain": "TCG Verse",
"icon": "tcg_verse",
"rpc": [
"https://rpc.tcgverse.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://tcgverse.xyz/",
"shortName": "TCGV",
"chainId": 2400,
"networkId": 2400,
"explorers": [
{
"name": "TCG Verse Explorer",
"url": "https://explorer.tcgverse.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "XODEX",
"chain": "XODEX",
"rpc": [
"https://mainnet.xo-dex.com/rpc",
"https://xo-dex.io"
],
"faucets": [],
"nativeCurrency": {
"name": "XODEX Native Token",
"symbol": "XODEX",
"decimals": 18
},
"infoURL": "https://xo-dex.com",
"shortName": "xodex",
"chainId": 2415,
"networkId": 10,
"icon": "xodex",
"explorers": [
{
"name": "XODEX Explorer",
"url": "https://explorer.xo-dex.com",
"standard": "EIP3091",
"icon": "xodex"
}
]
},
{
"name": "PoCRNet",
"title": "Proof of Carbon Reduction mainnet",
"chain": "CRC",
"status": "active",
"rpc": [
"https://pocrnet.westeurope.cloudapp.azure.com/http",
"wss://pocrnet.westeurope.cloudapp.azure.com/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Carbon Reduction Coin",
"symbol": "CRC",
"decimals": 18
},
"infoURL": "https://github.com/ethereum-pocr/pocrnet",
"shortName": "pocrnet",
"chainId": 2606,
"networkId": 2606,
"explorers": [
{
"name": "Lite Explorer",
"url": "https://ethereum-pocr.github.io/explorer/pocrnet",
"standard": "EIP3091"
}
]
},
{
"name": "Redlight Chain Mainnet",
"chain": "REDLC",
"rpc": [
"https://dataseed2.redlightscan.finance"
],
"faucets": [],
"nativeCurrency": {
"name": "Redlight Coin",
"symbol": "REDLC",
"decimals": 18
},
"infoURL": "https://redlight.finance/",
"shortName": "REDLC",
"chainId": 2611,
"networkId": 2611,
"explorers": [
{
"name": "REDLC Explorer",
"url": "https://redlightscan.finance",
"standard": "EIP3091"
}
]
},
{
"name": "Boba Network Goerli Testnet",
"chain": "ETH",
"rpc": [
"https://goerli.boba.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Goerli Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "Bobagoerli",
"chainId": 2888,
"networkId": 2888,
"explorers": [
{
"name": "Blockscout",
"url": "https://testnet.bobascan.com",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-5",
"bridges": [
{
"url": "https://gateway.goerli.boba.network"
}
]
}
},
{
"name": "BitYuan Mainnet",
"chain": "BTY",
"rpc": [
"https://mainnet.bityuan.com/eth"
],
"faucets": [],
"nativeCurrency": {
"name": "BTY",
"symbol": "BTY",
"decimals": 18
},
"infoURL": "https://www.bityuan.com",
"shortName": "bty",
"chainId": 2999,
"networkId": 2999,
"icon": "bty",
"explorers": [
{
"name": "BitYuan Block Chain Explorer",
"url": "https://mainnet.bityuan.com",
"standard": "none"
}
]
},
{
"name": "Orlando Chain",
"chain": "ORL",
"rpc": [
"https://rpc-testnet.orlchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Orlando",
"symbol": "ORL",
"decimals": 18
},
"infoURL": "https://orlchain.com",
"shortName": "ORL",
"chainId": 3031,
"networkId": 3031,
"icon": "orl",
"explorers": [
{
"name": "Orlando (ORL) Explorer",
"url": "https://orlscan.com",
"icon": "orl",
"standard": "EIP3091"
}
]
},
{
"name": "Bifrost Mainnet",
"title": "The Bifrost Mainnet network",
"chain": "BFC",
"rpc": [
"https://public-01.mainnet.thebifrost.io/rpc",
"https://public-02.mainnet.thebifrost.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Bifrost",
"symbol": "BFC",
"decimals": 18
},
"infoURL": "https://thebifrost.io",
"shortName": "bfc",
"chainId": 3068,
"networkId": 3068,
"icon": "bifrost",
"explorers": [
{
"name": "explorer-thebifrost",
"url": "https://explorer.mainnet.thebifrost.io",
"standard": "EIP3091"
}
]
},
{
"name": "Filecoin - Hyperspace testnet",
"chain": "FIL",
"icon": "filecoin",
"rpc": [
"https://api.hyperspace.node.glif.io/rpc/v1",
"https://filecoin-hyperspace.chainstacklabs.com/rpc/v1"
],
"faucets": [
"https://hyperspace.yoga/#faucet"
],
"nativeCurrency": {
"name": "testnet filecoin",
"symbol": "tFIL",
"decimals": 18
},
"infoURL": "https://filecoin.io",
"shortName": "filecoin-hyperspace",
"chainId": 3141,
"networkId": 3141,
"slip44": 1,
"explorers": [
{
"name": "Filfox - Hyperspace",
"url": "https://hyperspace.filfox.info/en",
"standard": "none"
},
{
"name": "Glif Explorer - Hyperspace",
"url": "https://explorer.glif.io/?network=hyperspace",
"standard": "none"
},
{
"name": "Beryx",
"url": "https://beryx.zondax.ch",
"standard": "none"
},
{
"name": "Filmine",
"url": "https://explorer.filmine.io",
"standard": "none"
},
{
"name": "Filscan - Hyperspace",
"url": "https://hyperspace.filscan.io",
"standard": "none"
}
]
},
{
"name": "Debounce Subnet Testnet",
"chain": "Debounce Network",
"icon": "debounce",
"rpc": [
"https://dev-rpc.debounce.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Debounce Network",
"symbol": "DB",
"decimals": 18
},
"infoURL": "https://debounce.network",
"shortName": "debounce-devnet",
"chainId": 3306,
"networkId": 3306,
"explorers": [
{
"name": "Debounce Devnet Explorer",
"url": "https://explorer.debounce.network",
"standard": "EIP3091"
}
]
},
{
"name": "PandoProject Mainnet",
"chain": "PandoProject",
"icon": "pando",
"rpc": [
"https://eth-rpc-api.pandoproject.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "pando-token",
"symbol": "PTX",
"decimals": 18
},
"infoURL": "https://www.pandoproject.org/",
"shortName": "pando-mainnet",
"chainId": 3601,
"networkId": 3601,
"explorers": [
{
"name": "Pando Mainnet Explorer",
"url": "https://explorer.pandoproject.org",
"standard": "none"
}
]
},
{
"name": "PandoProject Testnet",
"chain": "PandoProject",
"icon": "pando",
"rpc": [
"https://testnet.ethrpc.pandoproject.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "pando-token",
"symbol": "PTX",
"decimals": 18
},
"infoURL": "https://www.pandoproject.org/",
"shortName": "pando-testnet",
"chainId": 3602,
"networkId": 3602,
"explorers": [
{
"name": "Pando Testnet Explorer",
"url": "https://testnet.explorer.pandoproject.org",
"standard": "none"
}
]
},
{
"name": "Metacodechain",
"chain": "metacode",
"rpc": [
"https://j.blockcoach.com:8503"
],
"faucets": [],
"nativeCurrency": {
"name": "J",
"symbol": "J",
"decimals": 18
},
"infoURL": "https://j.blockcoach.com:8089",
"shortName": "metacode",
"chainId": 3666,
"networkId": 3666,
"explorers": [
{
"name": "meta",
"url": "https://j.blockcoach.com:8089",
"standard": "EIP3091"
}
]
},
{
"name": "Empire Network",
"chain": "EMPIRE",
"rpc": [
"https://rpc.empirenetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Empire",
"symbol": "EMPIRE",
"decimals": 18
},
"infoURL": "https://www.empirenetwork.io/",
"shortName": "empire",
"chainId": 3693,
"networkId": 3693,
"explorers": [
{
"name": "Empire Explorer",
"url": "https://explorer.empirenetwork.io",
"standard": "none"
}
]
},
{
"name": "DRAC Network",
"chain": "DRAC",
"rpc": [
"https://www.dracscan.com/rpc"
],
"faucets": [
"https://www.dracscan.io/faucet"
],
"nativeCurrency": {
"name": "DRAC",
"symbol": "DRAC",
"decimals": 18
},
"infoURL": "https://drac.io/",
"shortName": "drac",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"chainId": 3912,
"networkId": 3912,
"icon": "drac",
"explorers": [
{
"name": "DRAC_Network Scan",
"url": "https://www.dracscan.io",
"icon": "DRAC",
"standard": "EIP3091"
}
]
},
{
"name": "Bitindi Testnet",
"chain": "BNI",
"icon": "bitindiTestnet",
"rpc": [
"https://testnet-rpc.bitindi.org"
],
"faucets": [
"https://faucet.bitindi.org"
],
"nativeCurrency": {
"name": "BNI",
"symbol": "$BNI",
"decimals": 18
},
"infoURL": "https://bitindi.org",
"shortName": "BNIt",
"chainId": 4096,
"networkId": 4096,
"explorers": [
{
"name": "Bitindi",
"url": "https://testnet.bitindiscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Bitindi Mainnet",
"chain": "BNI",
"icon": "bitindi",
"rpc": [
"https://mainnet-rpc.bitindi.org"
],
"faucets": [
"https://faucet.bitindi.org"
],
"nativeCurrency": {
"name": "BNI",
"symbol": "$BNI",
"decimals": 18
},
"infoURL": "https://bitindi.org",
"shortName": "BNIm",
"chainId": 4099,
"networkId": 4099,
"explorers": [
{
"name": "Bitindi",
"url": "https://bitindiscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Bobafuji Testnet",
"chain": "Bobafuji Testnet",
"rpc": [
"https://testnet.avax.boba.network",
"wss://wss.testnet.avax.boba.network",
"https://replica.testnet.avax.boba.network",
"wss://replica-wss.testnet.avax.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "BobaFujiTestnet",
"chainId": 4328,
"networkId": 4328,
"explorers": [
{
"name": "Bobafuji Testnet block explorer",
"url": "https://blockexplorer.testnet.avax.boba.network",
"standard": "none"
}
]
},
{
"name": "Htmlcoin Mainnet",
"chain": "mainnet",
"rpc": [
"https://janus.htmlcoin.com/api/"
],
"faucets": [
"https://gruvin.me/htmlcoin"
],
"nativeCurrency": {
"name": "Htmlcoin",
"symbol": "HTML",
"decimals": 8
},
"infoURL": "https://htmlcoin.com",
"shortName": "html",
"chainId": 4444,
"networkId": 4444,
"icon": "htmlcoin",
"status": "active",
"explorers": [
{
"name": "htmlcoin",
"url": "https://explorer.htmlcoin.com",
"icon": "htmlcoin",
"standard": "none"
}
]
},
{
"name": "BlackFort Exchange Network Testnet",
"chain": "TBXN",
"rpc": [
"https://testnet.blackfort.network/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BlackFort Testnet Token",
"symbol": "TBXN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://blackfort.exchange",
"shortName": "TBXN",
"chainId": 4777,
"networkId": 4777,
"icon": "bxn",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-explorer.blackfort.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "BlackFort Exchange Network",
"chain": "BXN",
"rpc": [
"https://mainnet.blackfort.network/rpc",
"https://mainnet-1.blackfort.network/rpc",
"https://mainnet-2.blackfort.network/rpc",
"https://mainnet-3.blackfort.network/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BlackFort Token",
"symbol": "BXN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://blackfort.exchange",
"shortName": "BXN",
"chainId": 4999,
"networkId": 4999,
"icon": "bxn",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.blackfort.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Mantle",
"chain": "ETH",
"rpc": [
"https://rpc.mantle.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "BitDAO",
"symbol": "BIT",
"decimals": 18
},
"infoURL": "https://mantle.xyz",
"shortName": "mantle",
"chainId": 5000,
"networkId": 5000,
"explorers": [
{
"name": "Mantle Explorer",
"url": "https://explorer.mantle.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Mantle Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.testnet.mantle.xyz"
],
"faucets": [
"https://faucet.testnet.mantle.xyz"
],
"nativeCurrency": {
"name": "Testnet BitDAO",
"symbol": "BIT",
"decimals": 18
},
"infoURL": "https://mantle.xyz",
"shortName": "mantle-testnet",
"chainId": 5001,
"networkId": 5001,
"explorers": [
{
"name": "Mantle Testnet Explorer",
"url": "https://explorer.testnet.mantle.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Humanode Mainnet",
"chain": "HMND",
"rpc": [
"https://explorer-rpc-http.mainnet.stages.humanode.io"
],
"faucets": [],
"nativeCurrency": {
"name": "HMND",
"symbol": "HMND",
"decimals": 18
},
"infoURL": "https://humanode.io",
"shortName": "hmnd",
"chainId": 5234,
"networkId": 5234,
"explorers": []
},
{
"name": "Firechain Mainnet Old",
"chain": "FIRE",
"icon": "firechain",
"rpc": [
"https://mainnet.rpc1.thefirechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Firechain",
"symbol": "FIRE",
"decimals": 18
},
"infoURL": "https://thefirechain.com",
"shortName": "_old_fire",
"chainId": 5290,
"networkId": 5290,
"explorers": [],
"status": "deprecated"
},
{
"name": "Chain Verse Mainnet",
"chain": "CVERSE",
"icon": "chain_verse",
"rpc": [
"https://rpc.chainverse.info"
],
"faucets": [],
"nativeCurrency": {
"name": "Oasys",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://chainverse.info",
"shortName": "cverse",
"chainId": 5555,
"networkId": 5555,
"explorers": [
{
"name": "Chain Verse Explorer",
"url": "https://explorer.chainverse.info",
"standard": "EIP3091"
}
]
},
{
"name": "Hika Network Testnet",
"title": "Hika Network Testnet",
"chain": "HIK",
"icon": "hik",
"rpc": [
"https://rpc-testnet.hika.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Hik Token",
"symbol": "HIK",
"decimals": 18
},
"infoURL": "https://hika.network/",
"shortName": "hik",
"chainId": 5729,
"networkId": 5729,
"explorers": [
{
"name": "Hika Network Testnet Explorer",
"url": "https://scan-testnet.hika.network",
"standard": "none"
}
]
},
{
"name": "Tres Testnet",
"chain": "TresLeches",
"rpc": [
"https://rpc-test.tresleches.finance/"
],
"faucets": [
"http://faucet.tresleches.finance:8080"
],
"nativeCurrency": {
"name": "TRES",
"symbol": "TRES",
"decimals": 18
},
"infoURL": "https://treschain.com",
"shortName": "TRESTEST",
"chainId": 6065,
"networkId": 6065,
"icon": "tresleches",
"explorers": [
{
"name": "treslechesexplorer",
"url": "https://explorer-test.tresleches.finance",
"icon": "treslechesexplorer",
"standard": "EIP3091"
}
]
},
{
"name": "Tres Mainnet",
"chain": "TresLeches",
"rpc": [
"https://rpc.tresleches.finance/",
"https://rpc.treschain.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "TRES",
"symbol": "TRES",
"decimals": 18
},
"infoURL": "https://treschain.com",
"shortName": "TRESMAIN",
"chainId": 6066,
"networkId": 6066,
"icon": "tresleches",
"explorers": [
{
"name": "treslechesexplorer",
"url": "https://explorer.tresleches.finance",
"icon": "treslechesexplorer",
"standard": "EIP3091"
}
]
},
{
"name": "Gold Smart Chain Mainnet",
"chain": "STAND",
"icon": "stand",
"rpc": [
"https://rpc-mainnet.goldsmartchain.com"
],
"faucets": [
"https://faucet.goldsmartchain.com"
],
"nativeCurrency": {
"name": "Standard in Gold",
"symbol": "STAND",
"decimals": 18
},
"infoURL": "https://goldsmartchain.com",
"shortName": "STANDm",
"chainId": 6789,
"networkId": 6789,
"explorers": [
{
"name": "Gold Smart Chain",
"url": "https://mainnet.goldsmartchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "PolySmartChain",
"chain": "PSC",
"rpc": [
"https://seed0.polysmartchain.com/",
"https://seed1.polysmartchain.com/",
"https://seed2.polysmartchain.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "PSC",
"symbol": "PSC",
"decimals": 18
},
"infoURL": "https://www.polysmartchain.com/",
"shortName": "psc",
"chainId": 6999,
"networkId": 6999
},
{
"name": "ZetaChain Mainnet",
"chain": "ZetaChain",
"icon": "zetachain",
"rpc": [
"https://api.mainnet.zetachain.com/evm"
],
"faucets": [],
"nativeCurrency": {
"name": "Zeta",
"symbol": "ZETA",
"decimals": 18
},
"infoURL": "https://docs.zetachain.com/",
"shortName": "zetachain-mainnet",
"chainId": 7000,
"networkId": 7000,
"status": "incubating",
"explorers": [
{
"name": "ZetaChain Mainnet Explorer",
"url": "https://explorer.mainnet.zetachain.com",
"standard": "none"
}
]
},
{
"name": "ZetaChain Athens Testnet",
"chain": "ZetaChain",
"icon": "zetachain",
"rpc": [
"https://zetachain-athens-evm.blockpi.network/v1/rpc/public",
"https://rpc.ankr.com/zetachain_evm_athens_testnet"
],
"faucets": [
"https://labs.zetachain.com/get-zeta"
],
"nativeCurrency": {
"name": "ZETA",
"symbol": "tZETA",
"decimals": 18
},
"infoURL": "https://zetachain.com/docs",
"shortName": "zetachain-athens",
"chainId": 7001,
"networkId": 7001,
"status": "active",
"explorers": [
{
"name": "ZetaChain Athens Testnet Explorer",
"url": "https://explorer.zetachain.com",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1695111759609.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1695111789559.png",
"color_chain_bg": "0x005741",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1695181451439.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1695181482445.png"
}
},
{
"name": "Planq Mainnet",
"chain": "Planq",
"icon": "planq",
"rpc": [
"https://evm-rpc.planq.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Planq",
"symbol": "PLQ",
"decimals": 18
},
"infoURL": "https://planq.network",
"shortName": "planq",
"chainId": 7070,
"networkId": 7070,
"explorers": [
{
"name": "Planq EVM Explorer (Blockscout)",
"url": "https://evm.planq.network",
"standard": "none"
},
{
"name": "Planq Cosmos Explorer (BigDipper)",
"url": "https://explorer.planq.network",
"standard": "none"
}
]
},
{
"name": "Shardeum Liberty 2.X",
"chain": "Shardeum",
"icon": "shardeum",
"rpc": [
"https://liberty20.shardeum.org/"
],
"faucets": [
"https://faucet.liberty20.shardeum.org"
],
"nativeCurrency": {
"name": "Shardeum SHM",
"symbol": "SHM",
"decimals": 18
},
"infoURL": "https://docs.shardeum.org/",
"shortName": "Liberty20",
"chainId": 8081,
"networkId": 8081,
"explorers": [
{
"name": "Shardeum Scan",
"url": "https://explorer-liberty20.shardeum.org",
"standard": "none"
}
],
"redFlags": [
"reusedChainId"
]
},
{
"name": "Shardeum Sphinx 1.X",
"chain": "Shardeum",
"icon": "shardeum",
"rpc": [
"https://sphinx.shardeum.org/"
],
"faucets": [
"https://faucet-sphinx.shardeum.org/"
],
"nativeCurrency": {
"name": "Shardeum SHM",
"symbol": "SHM",
"decimals": 18
},
"infoURL": "https://docs.shardeum.org/",
"shortName": "Sphinx10",
"chainId": 8082,
"networkId": 8082,
"explorers": [
{
"name": "Shardeum Scan",
"url": "https://explorer-sphinx.shardeum.org",
"standard": "none"
}
],
"redFlags": [
"reusedChainId"
]
},
{
"name": "StreamuX Blockchain",
"chain": "StreamuX",
"rpc": [
"https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "StreamuX",
"symbol": "SmuX",
"decimals": 18
},
"infoURL": "https://www.streamux.cloud",
"shortName": "StreamuX",
"chainId": 8098,
"networkId": 8098
},
{
"name": "Qitmeer Network Testnet",
"chain": "MEER",
"rpc": [
"https://testnet-qng.rpc.qitmeer.io",
"https://testnet.meerlabs.com",
"https://meer.testnet.meerfans.club"
],
"faucets": [
"https://faucet.qitmeer.io"
],
"nativeCurrency": {
"name": "Qitmeer Testnet",
"symbol": "MEER-T",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "meertest",
"chainId": 8131,
"networkId": 8131,
"icon": "meer",
"explorers": [
{
"name": "meerscan testnet",
"url": "https://testnet.qng.meerscan.io",
"standard": "none"
}
]
},
{
"name": "BeOne Chain Testnet",
"chain": "BOC",
"rpc": [
"https://pre-boc1.beonechain.com",
"https://pre-boc2.beonechain.com",
"https://pre-boc3.beonechain.com"
],
"faucets": [
"https://testnet.beonescan.com/faucet"
],
"nativeCurrency": {
"name": "BeOne Chain Testnet",
"symbol": "BOC",
"decimals": 18
},
"infoURL": "https://testnet.beonescan.com",
"shortName": "tBOC",
"chainId": 8181,
"networkId": 8181,
"icon": "beonechain",
"explorers": [
{
"name": "BeOne Chain Testnet",
"url": "https://testnet.beonescan.com",
"icon": "beonechain",
"standard": "none"
}
]
},
{
"name": "Blockton Blockchain",
"chain": "Blockton Blockchain",
"icon": "bton",
"rpc": [
"https://rpc.blocktonscan.com/"
],
"faucets": [
"https://faucet.blocktonscan.com/"
],
"nativeCurrency": {
"name": "BLOCKTON",
"symbol": "BTON",
"decimals": 18
},
"infoURL": "https://blocktoncoin.com",
"shortName": "BTON",
"chainId": 8272,
"networkId": 8272,
"explorers": [
{
"name": "Blockton Explorer",
"url": "https://blocktonscan.com",
"standard": "none"
}
]
},
{
"name": "KorthoTest",
"chain": "Kortho",
"rpc": [
"https://www.krotho-test.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Kortho Test",
"symbol": "KTO",
"decimals": 11
},
"infoURL": "https://www.kortho.io/",
"shortName": "Kortho",
"chainId": 8285,
"networkId": 8285
},
{
"name": "Base",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://base.org",
"shortName": "base",
"chainId": 8453,
"networkId": 8453,
"status": "incubating"
},
{
"name": "Toki Network",
"chain": "TOKI",
"rpc": [
"https://mainnet.buildwithtoki.com/v0/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Toki",
"symbol": "TOKI",
"decimals": 18
},
"infoURL": "https://www.buildwithtoki.com",
"shortName": "toki",
"chainId": 8654,
"networkId": 8654,
"icon": "toki",
"explorers": []
},
{
"name": "Toki Testnet",
"chain": "TOKI",
"rpc": [
"https://testnet.buildwithtoki.com/v0/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Toki",
"symbol": "TOKI",
"decimals": 18
},
"infoURL": "https://www.buildwithtoki.com",
"shortName": "toki-testnet",
"chainId": 8655,
"networkId": 8655,
"icon": "toki",
"explorers": []
},
{
"name": "Alph Network",
"chain": "ALPH",
"rpc": [
"https://rpc.alph.network",
"wss://rpc.alph.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Alph Network",
"symbol": "ALPH",
"decimals": 18
},
"infoURL": "https://alph.network",
"shortName": "alph",
"chainId": 8738,
"networkId": 8738,
"explorers": [
{
"name": "alphscan",
"url": "https://explorer.alph.network",
"icon": "alphscan",
"standard": "EIP3091"
}
]
},
{
"name": "TMY Chain",
"chain": "TMY",
"icon": "ethereum",
"rpc": [
"https://node1.tmyblockchain.org/rpc"
],
"faucets": [
"https://faucet.tmychain.org/"
],
"nativeCurrency": {
"name": "TMY",
"symbol": "TMY",
"decimals": 18
},
"infoURL": "https://tmychain.org/",
"shortName": "tmy",
"chainId": 8768,
"networkId": 8768
},
{
"name": "MARO Blockchain Mainnet",
"chain": "MARO Blockchain",
"icon": "MARO",
"rpc": [
"https://rpc-mainnet.ma.ro"
],
"faucets": [],
"nativeCurrency": {
"name": "MARO",
"symbol": "MARO",
"decimals": 18
},
"infoURL": "https://ma.ro/",
"shortName": "maro",
"chainId": 8848,
"networkId": 8848,
"explorers": [
{
"name": "MARO Scan",
"url": "https://scan.ma.ro/#",
"standard": "none"
}
]
},
{
"name": "Unique",
"icon": "unique",
"chain": "UNQ",
"rpc": [
"https://rpc.unique.network",
"https://eu-rpc.unique.network",
"https://asia-rpc.unique.network",
"https://us-rpc.unique.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Unique",
"symbol": "UNQ",
"decimals": 18
},
"infoURL": "https://unique.network",
"shortName": "unq",
"chainId": 8880,
"networkId": 8880,
"explorers": [
{
"name": "Unique Scan",
"url": "https://uniquescan.io/unique",
"standard": "none"
}
]
},
{
"name": "Quartz by Unique",
"icon": "quartz",
"chain": "UNQ",
"rpc": [
"https://rpc-quartz.unique.network",
"https://quartz.api.onfinality.io/public-ws",
"https://eu-rpc-quartz.unique.network",
"https://asia-rpc-quartz.unique.network",
"https://us-rpc-quartz.unique.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Quartz",
"symbol": "QTZ",
"decimals": 18
},
"infoURL": "https://unique.network",
"shortName": "qtz",
"chainId": 8881,
"networkId": 8881,
"explorers": [
{
"name": "Unique Scan / Quartz",
"url": "https://uniquescan.io/quartz",
"standard": "none"
}
]
},
{
"name": "Opal testnet by Unique",
"icon": "opal",
"chain": "UNQ",
"rpc": [
"https://rpc-opal.unique.network",
"https://us-rpc-opal.unique.network",
"https://eu-rpc-opal.unique.network",
"https://asia-rpc-opal.unique.network"
],
"faucets": [
"https://t.me/unique2faucet_opal_bot"
],
"nativeCurrency": {
"name": "Opal",
"symbol": "UNQ",
"decimals": 18
},
"infoURL": "https://unique.network",
"shortName": "opl",
"chainId": 8882,
"networkId": 8882,
"explorers": [
{
"name": "Unique Scan / Opal",
"url": "https://uniquescan.io/opal",
"standard": "none"
}
]
},
{
"name": "Sapphire by Unique",
"icon": "sapphire",
"chain": "UNQ",
"rpc": [
"https://rpc-sapphire.unique.network",
"https://us-rpc-sapphire.unique.network",
"https://eu-rpc-sapphire.unique.network",
"https://asia-rpc-sapphire.unique.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Quartz",
"symbol": "QTZ",
"decimals": 18
},
"infoURL": "https://unique.network",
"shortName": "sph",
"chainId": 8883,
"networkId": 8883,
"explorers": [
{
"name": "Unique Scan / Sapphire",
"url": "https://uniquescan.io/sapphire",
"standard": "none"
}
]
},
{
"name": "Vyvo Smart Chain",
"chain": "VSC",
"rpc": [
"https://vsc-dataseed.vyvo.org:8889"
],
"faucets": [],
"nativeCurrency": {
"name": "VSC",
"symbol": "VSC",
"decimals": 18
},
"infoURL": "https://vsc-dataseed.vyvo.org",
"shortName": "vsc",
"chainId": 8889,
"networkId": 8889
},
{
"name": "JIBCHAIN L1",
"chain": "JBC",
"rpc": [
"https://rpc-l1.jibchain.net"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "JIBCOIN",
"symbol": "JBC",
"decimals": 18
},
"infoURL": "https://jibchain.net",
"shortName": "jbc",
"chainId": 8899,
"networkId": 8899,
"explorers": [
{
"name": "JIBCHAIN Explorer",
"url": "https://exp-l1.jibchain.net",
"standard": "EIP3091"
}
]
},
{
"name": "Giant Mammoth Mainnet",
"title": "Giant Mammoth Chain",
"chain": "GMMT",
"rpc": [
"https://rpc-asia.gmmtchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Giant Mammoth Coin",
"symbol": "GMMT",
"decimals": 18
},
"infoURL": "https://gmmtchain.io/",
"shortName": "gmmt",
"chainId": 8989,
"networkId": 8989,
"icon": "gmmt",
"explorers": [
{
"name": "gmmtscan",
"url": "https://scan.gmmtchain.io",
"standard": "EIP3091",
"icon": "gmmt"
}
]
},
{
"name": "Rinia Testnet Old",
"chain": "FIRE",
"icon": "rinia",
"rpc": [],
"faucets": [
"https://faucet.thefirechain.com"
],
"nativeCurrency": {
"name": "Firechain",
"symbol": "FIRE",
"decimals": 18
},
"infoURL": "https://thefirechain.com",
"shortName": "_old_tfire",
"chainId": 9170,
"networkId": 9170,
"explorers": [],
"status": "deprecated"
},
{
"name": "Dogcoin Testnet",
"chain": "DOGS",
"icon": "dogs",
"rpc": [
"https://testnet-rpc.dogcoin.network"
],
"faucets": [
"https://faucet.dogcoin.network"
],
"nativeCurrency": {
"name": "Dogcoin",
"symbol": "DOGS",
"decimals": 18
},
"infoURL": "https://dogcoin.network",
"shortName": "DOGSt",
"chainId": 9339,
"networkId": 9339,
"explorers": [
{
"name": "Dogcoin",
"url": "https://testnet.dogcoin.network",
"standard": "EIP3091"
}
]
},
{
"name": "QEasyWeb3 Testnet",
"chain": "QET",
"rpc": [
"https://qeasyweb3.com"
],
"faucets": [
"http://faucet.qeasyweb3.com"
],
"nativeCurrency": {
"name": "QET",
"symbol": "QET",
"decimals": 18
},
"infoURL": "https://www.qeasyweb3.com",
"shortName": "QETTest",
"chainId": 9528,
"networkId": 9528,
"explorers": [
{
"name": "QEasyWeb3 Explorer",
"url": "https://www.qeasyweb3.com",
"icon": "qetscan",
"standard": "EIP3091"
}
]
},
{
"name": "Oort MainnetDev",
"title": "Oort MainnetDev",
"chain": "MainnetDev",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Oort",
"symbol": "CCN",
"decimals": 18
},
"infoURL": "https://oortech.com",
"shortName": "MainnetDev",
"chainId": 9700,
"networkId": 9700,
"icon": "ccn"
},
{
"name": "Boba BNB Testnet",
"chain": "Boba BNB Testnet",
"rpc": [
"https://testnet.bnb.boba.network",
"wss://wss.testnet.bnb.boba.network",
"https://replica.testnet.bnb.boba.network",
"wss://replica-wss.testnet.bnb.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "BobaBnbTestnet",
"chainId": 9728,
"networkId": 9728,
"explorers": [
{
"name": "Boba BNB Testnet block explorer",
"url": "https://blockexplorer.testnet.bnb.boba.network",
"standard": "none"
}
]
},
{
"name": "MainnetZ Testnet",
"chain": "NetZ",
"icon": "mainnetzTestnet",
"rpc": [
"https://testnet-rpc.mainnetz.io"
],
"faucets": [
"https://faucet.mainnetz.io"
],
"nativeCurrency": {
"name": "MainnetZ",
"symbol": "NetZ",
"decimals": 18
},
"infoURL": "https://testnet.mainnetz.io",
"shortName": "NetZt",
"chainId": 9768,
"networkId": 9768,
"explorers": [
{
"name": "MainnetZ",
"url": "https://testnet.mainnetz.io",
"standard": "EIP3091"
}
]
},
{
"name": "Gon Chain",
"chain": "GonChain",
"icon": "gonchain",
"rpc": [
"https://node1.testnet.gaiaopen.network",
"http://database1.gaiaopen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Gon Token",
"symbol": "GT",
"decimals": 18
},
"infoURL": "",
"shortName": "gon",
"chainId": 10024,
"networkId": 10024,
"explorers": [
{
"name": "Gon Explorer",
"url": "https://gonscan.com",
"standard": "none"
}
]
},
{
"name": "SJATSH",
"chain": "ETH",
"rpc": [
"http://geth.free.idcfengye.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://sjis.me",
"shortName": "SJ",
"chainId": 10086,
"networkId": 10086
},
{
"name": "Chiado Testnet",
"chain": "CHI",
"icon": "gnosis",
"rpc": [
"https://rpc.chiadochain.net",
"https://rpc.eu-central-2.gateway.fm/v3/gnosis/archival/chiado"
],
"faucets": [
"https://gnosisfaucet.com"
],
"nativeCurrency": {
"name": "Chiado xDAI",
"symbol": "xDAI",
"decimals": 18
},
"infoURL": "https://docs.gnosischain.com",
"shortName": "chi",
"chainId": 10200,
"networkId": 10200,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.chiadochain.net",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "0XTade",
"chain": "0XTade Chain",
"rpc": [
"https://node.0xtchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "0XT",
"symbol": "0XT",
"decimals": 18
},
"infoURL": "https://www.0xtrade.finance/",
"shortName": "0xt",
"chainId": 10248,
"networkId": 10248,
"explorers": [
{
"name": "0xtrade Scan",
"url": "https://www.0xtscan.com",
"standard": "none"
}
]
},
{
"name": "Numbers Mainnet",
"chain": "NUM",
"icon": "num",
"rpc": [
"https://mainnetrpc.num.network"
],
"faucets": [],
"nativeCurrency": {
"name": "NUM Token",
"symbol": "NUM",
"decimals": 18
},
"infoURL": "https://numbersprotocol.io",
"shortName": "Jade",
"chainId": 10507,
"networkId": 10507,
"explorers": [
{
"name": "ethernal",
"url": "https://mainnet.num.network",
"standard": "EIP3091"
}
]
},
{
"name": "Numbers Testnet",
"chain": "NUM",
"icon": "num",
"rpc": [
"https://testnetrpc.num.network"
],
"faucets": [
"https://faucet.avax.network/?subnet=num",
"https://faucet.num.network"
],
"nativeCurrency": {
"name": "NUM Token",
"symbol": "NUM",
"decimals": 18
},
"infoURL": "https://numbersprotocol.io",
"shortName": "Snow",
"chainId": 10508,
"networkId": 10508,
"explorers": [
{
"name": "ethernal",
"url": "https://testnet.num.network",
"standard": "EIP3091"
}
]
},
{
"name": "Astra",
"chain": "Astra",
"rpc": [
"https://rpc.astranaut.io",
"https://rpc1.astranaut.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Astra",
"symbol": "ASA",
"decimals": 18
},
"infoURL": "https://astranaut.io",
"shortName": "astra",
"chainId": 11110,
"networkId": 11110,
"icon": "astra",
"explorers": [
{
"name": "Astra EVM Explorer (Blockscout)",
"url": "https://explorer.astranaut.io",
"standard": "none",
"icon": "astra"
},
{
"name": "Astra PingPub Explorer",
"url": "https://ping.astranaut.io/astra",
"standard": "none",
"icon": "astra"
}
]
},
{
"name": "Astra Testnet",
"chain": "Astra",
"rpc": [
"https://rpc.astranaut.dev"
],
"faucets": [
"https://faucet.astranaut.dev"
],
"nativeCurrency": {
"name": "test-Astra",
"symbol": "tASA",
"decimals": 18
},
"infoURL": "https://astranaut.io",
"shortName": "astra-testnet",
"chainId": 11115,
"networkId": 11115,
"icon": "astra",
"explorers": [
{
"name": "Astra EVM Explorer",
"url": "https://explorer.astranaut.dev",
"standard": "EIP3091",
"icon": "astra"
},
{
"name": "Astra PingPub Explorer",
"url": "https://ping.astranaut.dev/astra",
"standard": "none",
"icon": "astra"
}
]
},
{
"name": "Haqq Network",
"chain": "Haqq",
"rpc": [
"https://rpc.eth.haqq.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Islamic Coin",
"symbol": "ISLM",
"decimals": 18
},
"infoURL": "https://islamiccoin.net",
"shortName": "ISLM",
"chainId": 11235,
"networkId": 11235,
"explorers": [
{
"name": "Mainnet HAQQ Explorer",
"url": "https://explorer.haqq.network",
"standard": "EIP3091"
}
]
},
{
"name": "Sardis Testnet",
"chain": "SRDX",
"icon": "sardisTestnet",
"rpc": [
"https://testnet-rpc.sardisnetwork.com"
],
"faucets": [
"https://faucet.sardisnetwork.com"
],
"nativeCurrency": {
"name": "Sardis",
"symbol": "SRDX",
"decimals": 18
},
"infoURL": "https://mysardis.com",
"shortName": "SRDXt",
"chainId": 11612,
"networkId": 11612,
"explorers": [
{
"name": "Sardis",
"url": "https://testnet.sardisnetwork.com",
"standard": "EIP3091"
}
]
},
{
"name": "SanR Chain",
"chain": "SanRChain",
"rpc": [
"https://sanrchain-node.santiment.net"
],
"faucets": [],
"nativeCurrency": {
"name": "nSAN",
"symbol": "nSAN",
"decimals": 18
},
"infoURL": "https://sanr.app",
"shortName": "SAN",
"chainId": 11888,
"networkId": 11888,
"icon": "sanrchain",
"parent": {
"chain": "eip155-1",
"type": "L2",
"bridges": [
{
"url": "https://sanr.app"
}
]
},
"explorers": [
{
"name": "SanR Chain Explorer",
"url": "https://sanrchain-explorer.santiment.net",
"standard": "none"
}
]
},
{
"name": "BLG Testnet",
"chain": "BLG",
"icon": "blg",
"rpc": [
"https://rpc.blgchain.com"
],
"faucets": [
"https://faucet.blgchain.com"
],
"nativeCurrency": {
"name": "Blg",
"symbol": "BLG",
"decimals": 18
},
"infoURL": "https://blgchain.com",
"shortName": "blgchain",
"chainId": 12321,
"networkId": 12321
},
{
"name": "Step Testnet",
"title": "Step Test Network",
"chain": "STEP",
"icon": "step",
"rpc": [
"https://rpc.testnet.step.network"
],
"faucets": [
"https://faucet.step.network"
],
"nativeCurrency": {
"name": "FITFI",
"symbol": "FITFI",
"decimals": 18
},
"infoURL": "https://step.network",
"shortName": "steptest",
"chainId": 12345,
"networkId": 12345,
"explorers": [
{
"name": "StepScan",
"url": "https://testnet.stepscan.io",
"icon": "step",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-43113"
}
},
{
"name": "SPS",
"chain": "SPS",
"rpc": [
"https://rpc.ssquad.games"
],
"faucets": [],
"nativeCurrency": {
"name": "ECG",
"symbol": "ECG",
"decimals": 18
},
"infoURL": "https://ssquad.games/",
"shortName": "SPS",
"chainId": 13000,
"networkId": 13000,
"explorers": [
{
"name": "SPS Explorer",
"url": "http://spsscan.ssquad.games",
"standard": "EIP3091"
}
]
},
{
"name": "Credit Smartchain Mainnet",
"chain": "CREDIT",
"rpc": [
"https://mainnet-rpc.cscscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Credit",
"symbol": "CREDIT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://creditsmartchain.com",
"shortName": "Credit",
"chainId": 13308,
"networkId": 1,
"icon": "credit",
"explorers": [
{
"name": "CSC Scan",
"url": "https://explorer.cscscan.io",
"icon": "credit",
"standard": "EIP3091"
}
]
},
{
"name": "Susono",
"chain": "SUS",
"rpc": [
"https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Susono",
"symbol": "OPN",
"decimals": 18
},
"infoURL": "",
"shortName": "sus",
"chainId": 13812,
"networkId": 13812,
"explorers": [
{
"name": "Susono",
"url": "http://explorer.opn.network",
"standard": "none"
}
]
},
{
"name": "SPS Testnet",
"chain": "SPS-Testnet",
"rpc": [
"https://www.3sps.net"
],
"faucets": [],
"nativeCurrency": {
"name": "ECG",
"symbol": "ECG",
"decimals": 18
},
"infoURL": "https://ssquad.games/",
"shortName": "SPS-Test",
"chainId": 14000,
"networkId": 14000,
"explorers": [
{
"name": "SPS Test Explorer",
"url": "https://explorer.3sps.net",
"standard": "EIP3091"
}
]
},
{
"name": "AirDAO Mainnet",
"chain": "ambnet",
"icon": "airdao",
"rpc": [
"https://network.ambrosus.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Amber",
"symbol": "AMB",
"decimals": 18
},
"infoURL": "https://airdao.io",
"shortName": "airdao",
"chainId": 16718,
"networkId": 16718,
"explorers": [
{
"name": "AirDAO Network Explorer",
"url": "https://airdao.io/explorer",
"standard": "none"
}
]
},
{
"name": "Frontier of Dreams Testnet",
"chain": "Game Network",
"rpc": [
"https://rpc.fod.games/"
],
"nativeCurrency": {
"name": "ZKST",
"symbol": "ZKST",
"decimals": 18
},
"faucets": [],
"shortName": "ZKST",
"chainId": 18000,
"networkId": 18000,
"infoURL": "https://goexosphere.com",
"explorers": [
{
"name": "Game Network",
"url": "https://explorer.fod.games",
"standard": "EIP3091"
}
]
},
{
"name": "Proof Of Memes",
"title": "Proof Of Memes Mainnet",
"chain": "POM",
"icon": "pom",
"rpc": [
"https://mainnet-rpc.memescan.io",
"https://mainnet-rpc2.memescan.io",
"https://mainnet-rpc3.memescan.io",
"https://mainnet-rpc4.memescan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Proof Of Memes",
"symbol": "POM",
"decimals": 18
},
"infoURL": "https://proofofmemes.org",
"shortName": "pom",
"chainId": 18159,
"networkId": 18159,
"explorers": [
{
"name": "explorer-proofofmemes",
"url": "https://memescan.io",
"standard": "EIP3091"
}
]
},
{
"name": "HOME Verse Mainnet",
"chain": "HOME Verse",
"icon": "home_verse",
"rpc": [
"https://rpc.mainnet.oasys.homeverse.games/"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://www.homeverse.games/",
"shortName": "HMV",
"chainId": 19011,
"networkId": 19011,
"explorers": [
{
"name": "HOME Verse Explorer",
"url": "https://explorer.oasys.homeverse.games",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Callisto Testnet",
"chain": "CLO",
"rpc": [
"https://testnet-rpc.callisto.network/"
],
"faucets": [
"https://faucet.callisto.network/"
],
"nativeCurrency": {
"name": "Callisto",
"symbol": "CLO",
"decimals": 18
},
"infoURL": "https://callisto.network",
"shortName": "CLOTestnet",
"chainId": 20729,
"networkId": 79
},
{
"name": "P12 Chain",
"chain": "P12",
"icon": "p12",
"rpc": [
"https://rpc-chain.p12.games"
],
"faucets": [],
"nativeCurrency": {
"name": "Hooked P2",
"symbol": "hP2",
"decimals": 18
},
"infoURL": "https://p12.network",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"shortName": "p12",
"chainId": 20736,
"networkId": 20736,
"explorers": [
{
"name": "P12 Chain Explorer",
"url": "https://explorer.p12.games",
"standard": "EIP3091"
}
]
},
{
"name": "AirDAO Testnet",
"chain": "ambnet-test",
"icon": "airdao",
"rpc": [
"https://network.ambrosus-test.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Amber",
"symbol": "AMB",
"decimals": 18
},
"infoURL": "https://testnet.airdao.io",
"shortName": "airdao-test",
"chainId": 22040,
"networkId": 22040,
"explorers": [
{
"name": "AirDAO Network Explorer",
"url": "https://testnet.airdao.io/explorer",
"standard": "none"
}
]
},
{
"name": "MAP Protocol",
"chain": "MAPO",
"icon": "map",
"rpc": [
"https://rpc.maplabs.io"
],
"faucets": [],
"nativeCurrency": {
"name": "MAPO",
"symbol": "MAPO",
"decimals": 18
},
"infoURL": "https://mapprotocol.io/",
"shortName": "mapo",
"chainId": 22776,
"networkId": 22776,
"slip44": 60,
"explorers": [
{
"name": "maposcan",
"url": "https://maposcan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Opside Testnet",
"chain": "Opside",
"rpc": [
"https://testrpc.opside.network"
],
"faucets": [
"https://faucet.opside.network"
],
"nativeCurrency": {
"name": "IDE",
"symbol": "IDE",
"decimals": 18
},
"infoURL": "https://opside.network",
"shortName": "opside",
"chainId": 23118,
"networkId": 23118,
"icon": "opside",
"explorers": [
{
"name": "opsideInfo",
"url": "https://opside.info",
"standard": "EIP3091"
}
]
},
{
"name": "Oasis Sapphire",
"chain": "Sapphire",
"icon": "oasis",
"rpc": [
"https://sapphire.oasis.io",
"wss://sapphire.oasis.io/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Sapphire Rose",
"symbol": "ROSE",
"decimals": 18
},
"infoURL": "https://docs.oasis.io/dapp/sapphire",
"shortName": "sapphire",
"chainId": 23294,
"networkId": 23294,
"explorers": [
{
"name": "Oasis Sapphire Explorer",
"url": "https://explorer.sapphire.oasis.io",
"standard": "EIP3091"
}
]
},
{
"name": "Oasis Sapphire Testnet",
"chain": "Sapphire",
"icon": "oasis",
"rpc": [
"https://testnet.sapphire.oasis.dev",
"wss://testnet.sapphire.oasis.dev/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Sapphire Test Rose",
"symbol": "TEST",
"decimals": 18
},
"infoURL": "https://docs.oasis.io/dapp/sapphire",
"shortName": "sapphire-testnet",
"chainId": 23295,
"networkId": 23295,
"explorers": [
{
"name": "Oasis Sapphire Testnet Explorer",
"url": "https://testnet.explorer.sapphire.oasis.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Hammer Chain Mainnet",
"chain": "HammerChain",
"rpc": [
"https://www.hammerchain.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "GOLDT",
"symbol": "GOLDT",
"decimals": 18
},
"infoURL": "https://www.hammerchain.io",
"shortName": "GOLDT",
"chainId": 25888,
"networkId": 25888,
"explorers": [
{
"name": "Hammer Chain Explorer",
"url": "https://www.hammerchain.io",
"standard": "none"
}
]
},
{
"name": "Bitkub Chain Testnet",
"chain": "BKC",
"icon": "bkc",
"rpc": [
"https://rpc-testnet.bitkubchain.io",
"wss://wss-testnet.bitkubchain.io"
],
"faucets": [
"https://faucet.bitkubchain.com"
],
"nativeCurrency": {
"name": "Bitkub Coin",
"symbol": "tKUB",
"decimals": 18
},
"infoURL": "https://www.bitkubchain.com/",
"shortName": "bkct",
"chainId": 25925,
"networkId": 25925,
"explorers": [
{
"name": "bkcscan-testnet",
"url": "https://testnet.bkcscan.com",
"standard": "none",
"icon": "bkc"
}
]
},
{
"name": "Hertz Network Mainnet",
"chain": "HTZ",
"rpc": [
"https://mainnet-rpc.hertzscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Hertz",
"symbol": "HTZ",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.hertz-network.com",
"shortName": "HTZ",
"chainId": 26600,
"networkId": 26600,
"icon": "hertz-network",
"explorers": [
{
"name": "Hertz Scan",
"url": "https://hertzscan.com",
"icon": "hertz-network",
"standard": "EIP3091"
}
]
},
{
"name": "Optimism Bedrock (Goerli Alpha Testnet)",
"chain": "ETH",
"rpc": [
"https://alpha-1-replica-0.bedrock-goerli.optimism.io",
"https://alpha-1-replica-1.bedrock-goerli.optimism.io",
"https://alpha-1-replica-2.bedrock-goerli.optimism.io",
"https://alpha-1-replica-2.bedrock-goerli.optimism.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Goerli Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://community.optimism.io/docs/developers/bedrock",
"shortName": "obgor",
"chainId": 28528,
"networkId": 28528,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.com/optimism/bedrock-alpha",
"standard": "EIP3091"
}
]
},
{
"name": "CloudTx Mainnet",
"chain": "CLD",
"icon": "cloudtx",
"rpc": [
"https://mainnet-rpc.cloudtx.finance"
],
"faucets": [],
"nativeCurrency": {
"name": "CloudTx",
"symbol": "CLD",
"decimals": 18
},
"infoURL": "https://cloudtx.finance",
"shortName": "CLDTX",
"chainId": 31223,
"networkId": 31223,
"explorers": [
{
"name": "cloudtxscan",
"url": "https://scan.cloudtx.finance",
"standard": "EIP3091"
}
]
},
{
"name": "CloudTx Testnet",
"chain": "CloudTx",
"icon": "cloudtx",
"rpc": [
"https://testnet-rpc.cloudtx.finance"
],
"faucets": [
"https://faucet.cloudtx.finance"
],
"nativeCurrency": {
"name": "CloudTx",
"symbol": "CLD",
"decimals": 18
},
"infoURL": "https://cloudtx.finance/",
"shortName": "CLD",
"chainId": 31224,
"networkId": 31224,
"explorers": [
{
"name": "cloudtxexplorer",
"url": "https://explorer.cloudtx.finance",
"standard": "EIP3091"
}
]
},
{
"name": "Filecoin - Wallaby testnet",
"chain": "FIL",
"icon": "filecoin",
"rpc": [
"https://wallaby.node.glif.io/rpc/v1"
],
"faucets": [
"https://wallaby.yoga/#faucet"
],
"nativeCurrency": {
"name": "testnet filecoin",
"symbol": "tFIL",
"decimals": 18
},
"infoURL": "https://filecoin.io",
"shortName": "filecoin-wallaby",
"chainId": 31415,
"networkId": 31415,
"slip44": 1,
"explorers": []
},
{
"name": "Aves Mainnet",
"chain": "AVS",
"rpc": [
"https://rpc.avescoin.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Aves",
"symbol": "AVS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://avescoin.io",
"shortName": "avs",
"chainId": 33333,
"networkId": 33333,
"icon": "aves",
"explorers": [
{
"name": "avescan",
"url": "https://avescan.io",
"icon": "avescan",
"standard": "EIP3091"
}
]
},
{
"name": "J2O Taro",
"chain": "TARO",
"rpc": [
"https://rpc.j2o.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "TARO Coin",
"symbol": "taro",
"decimals": 18
},
"infoURL": "https://j2o.io",
"shortName": "j2o",
"chainId": 35011,
"networkId": 35011,
"explorers": [
{
"name": "J2O Taro Explorer",
"url": "https://exp.j2o.io",
"icon": "j2otaro",
"standard": "EIP3091"
}
]
},
{
"name": "OHO Mainnet",
"chain": "OHO",
"rpc": [
"https://mainnet.oho.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "OHO",
"symbol": "OHO",
"decimals": 18
},
"infoURL": "https://oho.ai",
"shortName": "oho",
"chainId": 39815,
"networkId": 39815,
"icon": "oho",
"explorers": [
{
"name": "ohoscan",
"url": "https://ohoscan.com",
"icon": "ohoscan",
"standard": "EIP3091"
}
]
},
{
"name": "Opulent-X BETA",
"chainId": 41500,
"shortName": "ox-beta",
"chain": "Opulent-X",
"networkId": 41500,
"nativeCurrency": {
"name": "Oxyn Gas",
"symbol": "OXYN",
"decimals": 18
},
"rpc": [
"https://connect.opulent-x.com"
],
"faucets": [],
"infoURL": "https://beta.opulent-x.com",
"explorers": [
{
"name": "Opulent-X BETA Explorer",
"url": "https://explorer.opulent-x.com",
"standard": "none"
}
]
},
{
"name": "Boba Avax",
"chain": "Boba Avax",
"rpc": [
"https://avax.boba.network",
"wss://wss.avax.boba.network",
"https://replica.avax.boba.network",
"wss://replica-wss.avax.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://docs.boba.network/for-developers/network-avalanche",
"shortName": "bobaavax",
"chainId": 43288,
"networkId": 43288,
"explorers": [
{
"name": "Boba Avax Explorer",
"url": "https://blockexplorer.avax.boba.network",
"standard": "none"
}
]
},
{
"name": "Frenchain",
"chain": "fren",
"rpc": [
"https://rpc-02.frenscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "FREN",
"symbol": "FREN",
"decimals": 18
},
"infoURL": "https://frenchain.app",
"shortName": "FREN",
"chainId": 44444,
"networkId": 44444,
"icon": "fren",
"explorers": [
{
"name": "blockscout",
"url": "https://frenscan.io",
"icon": "fren",
"standard": "EIP3091"
}
]
},
{
"name": "Fusion Testnet",
"chain": "FSN",
"icon": "fusion",
"rpc": [
"https://testnet.fusionnetwork.io",
"wss://testnet.fusionnetwork.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Testnet Fusion",
"symbol": "T-FSN",
"decimals": 18
},
"infoURL": "https://fusion.org",
"shortName": "tfsn",
"chainId": 46688,
"networkId": 46688,
"slip44": 288,
"explorers": [
{
"name": "fsnscan",
"url": "https://testnet.fsnscan.com",
"icon": "fsnscan",
"standard": "EIP3091"
}
]
},
{
"name": "Floripa",
"title": "Wireshape Testnet Floripa",
"chain": "Wireshape",
"rpc": [
"https://rpc-floripa.wireshape.org"
],
"faucets": [],
"nativeCurrency": {
"name": "WIRE",
"symbol": "WIRE",
"decimals": 18
},
"infoURL": "https://wireshape.org",
"shortName": "floripa",
"chainId": 49049,
"networkId": 49049,
"explorers": [
{
"name": "Wire Explorer",
"url": "https://floripa-explorer.wireshape.org",
"standard": "EIP3091"
}
]
},
{
"name": "Bifrost Testnet",
"title": "The Bifrost Testnet network",
"chain": "BFC",
"rpc": [
"https://public-01.testnet.thebifrost.io/rpc",
"https://public-02.testnet.thebifrost.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Bifrost",
"symbol": "BFC",
"decimals": 18
},
"infoURL": "https://thebifrost.io",
"shortName": "tbfc",
"chainId": 49088,
"networkId": 49088,
"icon": "bifrost",
"explorers": [
{
"name": "explorer-thebifrost",
"url": "https://explorer.testnet.thebifrost.io",
"standard": "EIP3091"
}
]
},
{
"name": "Liveplex OracleEVM",
"chain": "Liveplex OracleEVM Network",
"rpc": [
"https://rpc.oracle.liveplex.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "",
"shortName": "LOE",
"chainId": 50001,
"networkId": 50001,
"explorers": []
},
{
"name": "Sardis Mainnet",
"chain": "SRDX",
"icon": "sardis",
"rpc": [
"https://mainnet-rpc.sardisnetwork.com"
],
"faucets": [
"https://faucet.sardisnetwork.com"
],
"nativeCurrency": {
"name": "Sardis",
"symbol": "SRDX",
"decimals": 18
},
"infoURL": "https://mysardis.com",
"shortName": "SRDXm",
"chainId": 51712,
"networkId": 51712,
"explorers": [
{
"name": "Sardis",
"url": "https://contract-mainnet.sardisnetwork.com",
"standard": "EIP3091"
}
]
},
{
"name": "Haqq Chain Testnet",
"chain": "TestEdge2",
"rpc": [
"https://rpc.eth.testedge2.haqq.network"
],
"faucets": [
"https://testedge2.haqq.network"
],
"nativeCurrency": {
"name": "Islamic Coin",
"symbol": "ISLMT",
"decimals": 18
},
"infoURL": "https://islamiccoin.net",
"shortName": "ISLMT",
"chainId": 54211,
"networkId": 54211,
"explorers": [
{
"name": "TestEdge HAQQ Explorer",
"url": "https://explorer.testedge2.haqq.network",
"standard": "EIP3091"
}
]
},
{
"name": "Boba BNB Mainnet",
"chain": "Boba BNB Mainnet",
"rpc": [
"https://bnb.boba.network",
"wss://wss.bnb.boba.network",
"https://replica.bnb.boba.network",
"wss://replica-wss.bnb.boba.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "BobaBnb",
"chainId": 56288,
"networkId": 56288,
"explorers": [
{
"name": "Boba BNB block explorer",
"url": "https://blockexplorer.bnb.boba.network",
"standard": "none"
}
]
},
{
"name": "Etica Mainnet",
"chain": "Etica Protocol (ETI/EGAZ)",
"icon": "etica",
"rpc": [
"https://eticamainnet.eticascan.org",
"https://eticamainnet.eticaprotocol.org"
],
"faucets": [
"http://faucet.etica-stats.org/"
],
"nativeCurrency": {
"name": "EGAZ",
"symbol": "EGAZ",
"decimals": 18
},
"infoURL": "https://eticaprotocol.org",
"shortName": "Etica",
"chainId": 61803,
"networkId": 61803,
"explorers": [
{
"name": "eticascan",
"url": "https://eticascan.org",
"standard": "EIP3091"
},
{
"name": "eticastats",
"url": "http://explorer.etica-stats.org",
"standard": "EIP3091"
}
]
},
{
"name": "DoKEN Super Chain Mainnet",
"chain": "DoKEN Super Chain",
"rpc": [
"https://sgrpc.doken.dev",
"https://nyrpc.doken.dev",
"https://ukrpc.doken.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "DoKEN",
"symbol": "DKN",
"decimals": 18
},
"infoURL": "https://doken.dev/",
"shortName": "DoKEN",
"chainId": 61916,
"networkId": 61916,
"icon": "doken",
"explorers": [
{
"name": "DSC Scan",
"url": "https://explore.doken.dev",
"icon": "doken",
"standard": "EIP3091"
}
]
},
{
"name": "SiriusNet",
"chain": "SIN",
"status": "deprecated",
"rpc": [
"https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "MCD",
"symbol": "MCD",
"decimals": 18
},
"infoURL": "https://macaucasinolisboa.xyz",
"shortName": "mcl",
"chainId": 67390,
"networkId": 67390,
"explorers": [
{
"name": "siriusnetscan",
"url": "https://siriusnet.tryethernal.com",
"standard": "EIP3091"
}
]
},
{
"name": "Vention Smart Chain Mainnet",
"chain": "VSC",
"icon": "vention",
"rpc": [
"https://mainnet-rpc.vention.network"
],
"faucets": [
"https://faucet.vention.network"
],
"nativeCurrency": {
"name": "VNT",
"symbol": "VNT",
"decimals": 18
},
"infoURL": "https://ventionscan.io",
"shortName": "vscm",
"chainId": 77612,
"networkId": 77612,
"explorers": [
{
"name": "ventionscan",
"url": "https://ventionscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Gold Smart Chain Testnet",
"chain": "STAND",
"icon": "standTestnet",
"rpc": [
"https://rpc-testnet.goldsmartchain.com"
],
"faucets": [
"https://faucet.goldsmartchain.com"
],
"nativeCurrency": {
"name": "Standard in Gold",
"symbol": "STAND",
"decimals": 18
},
"infoURL": "https://goldsmartchain.com",
"shortName": "STANDt",
"chainId": 79879,
"networkId": 79879,
"explorers": [
{
"name": "Gold Smart Chain",
"url": "https://testnet.goldsmartchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Base Goerli Testnet",
"chain": "ETH",
"rpc": [
"https://goerli.base.org"
],
"faucets": [
"https://www.coinbase.com/faucets/base-ethereum-goerli-faucet"
],
"nativeCurrency": {
"name": "Goerli Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://base.org",
"shortName": "basegor",
"chainId": 84531,
"networkId": 84531,
"explorers": [
{
"name": "basescan",
"url": "https://goerli.basescan.org",
"standard": "none"
},
{
"name": "basescout",
"url": "https://base-goerli.blockscout.com",
"standard": "none"
}
]
},
{
"name": "Chiliz Scoville Testnet",
"chain": "CHZ",
"rpc": [
"https://scoville-rpc.chiliz.com"
],
"faucets": [
"https://scoville-faucet.chiliz.com"
],
"nativeCurrency": {
"name": "Chiliz",
"symbol": "CHZ",
"decimals": 18
},
"icon": "chiliz",
"infoURL": "https://www.chiliz.com/en/chain",
"shortName": "chz",
"chainId": 88880,
"networkId": 88880,
"explorers": [
{
"name": "scoville-explorer",
"url": "https://scoville-explorer.chiliz.com",
"standard": "none"
}
]
},
{
"name": "Beverly Hills",
"title": "Ethereum multi-client Verkle Testnet Beverly Hills",
"chain": "ETH",
"rpc": [
"https://rpc.beverlyhills.ethdevops.io:8545"
],
"faucets": [
"https://faucet.beverlyhills.ethdevops.io"
],
"nativeCurrency": {
"name": "Beverly Hills Testnet Ether",
"symbol": "BVE",
"decimals": 18
},
"infoURL": "https://beverlyhills.ethdevops.io",
"shortName": "bvhl",
"chainId": 90210,
"networkId": 90210,
"status": "incubating",
"explorers": [
{
"name": "Beverly Hills explorer",
"url": "https://explorer.beverlyhills.ethdevops.io",
"standard": "none"
}
]
},
{
"name": "Lambda Testnet",
"chain": "Lambda",
"rpc": [
"https://evm.lambda.top/"
],
"faucets": [
"https://faucet.lambda.top"
],
"nativeCurrency": {
"name": "test-Lamb",
"symbol": "LAMB",
"decimals": 18
},
"infoURL": "https://lambda.im",
"shortName": "lambda-testnet",
"chainId": 92001,
"networkId": 92001,
"icon": "lambda",
"explorers": [
{
"name": "Lambda EVM Explorer",
"url": "https://explorer.lambda.top",
"standard": "EIP3091",
"icon": "lambda"
}
]
},
{
"name": "Boba BNB Mainnet Old",
"chain": "Boba BNB Mainnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Boba Token",
"symbol": "BOBA",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "BobaBnbOld",
"chainId": 97288,
"networkId": 97288,
"explorers": [
{
"name": "Boba BNB block explorer",
"url": "https://blockexplorer.bnb.boba.network",
"standard": "none"
}
],
"status": "deprecated"
},
{
"name": "VeChain",
"chain": "VeChain",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "VeChain",
"symbol": "VET",
"decimals": 18
},
"infoURL": "https://vechain.org",
"shortName": "vechain",
"chainId": 100009,
"networkId": 100009,
"explorers": [
{
"name": "VeChain Stats",
"url": "https://vechainstats.com",
"standard": "none"
},
{
"name": "VeChain Explorer",
"url": "https://explore.vechain.org",
"standard": "none"
}
]
},
{
"name": "VeChain Testnet",
"chain": "VeChain",
"rpc": [],
"faucets": [
"https://faucet.vecha.in"
],
"nativeCurrency": {
"name": "VeChain",
"symbol": "VET",
"decimals": 18
},
"infoURL": "https://vechain.org",
"shortName": "vechain-testnet",
"chainId": 100010,
"networkId": 100010,
"explorers": [
{
"name": "VeChain Explorer",
"url": "https://explore-testnet.vechain.org",
"standard": "none"
}
]
},
{
"name": "Deprecated Chiado Testnet",
"chain": "CHI1",
"icon": "gnosis",
"rpc": [
"https://rpc-chiado.gnosistestnet.com"
],
"faucets": [
"https://gnosisfaucet.com"
],
"nativeCurrency": {
"name": "Chiado xDAI",
"symbol": "xDAI",
"decimals": 18
},
"infoURL": "https://docs.gnosischain.com",
"shortName": "chi1",
"chainId": 100100,
"networkId": 100100,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout-chiado.gnosistestnet.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"status": "deprecated"
},
{
"name": "Soverun Testnet",
"chain": "SVRN",
"icon": "soverunTestnet",
"rpc": [
"https://testnet-rpc.soverun.com"
],
"faucets": [
"https://faucet.soverun.com"
],
"nativeCurrency": {
"name": "Soverun",
"symbol": "SVRN",
"decimals": 18
},
"infoURL": "https://soverun.com",
"shortName": "SVRNt",
"chainId": 101010,
"networkId": 101010,
"explorers": [
{
"name": "Soverun",
"url": "https://testnet.soverun.com",
"standard": "EIP3091"
}
]
},
{
"name": "Condor Test Network",
"chain": "CONDOR",
"icon": "condor",
"rpc": [
"https://testnet.condor.systems/rpc"
],
"faucets": [
"https://faucet.condor.systems"
],
"nativeCurrency": {
"name": "Condor Native Token",
"symbol": "CONDOR",
"decimals": 18
},
"infoURL": "https://condor.systems",
"shortName": "condor",
"chainId": 188881,
"networkId": 188881,
"explorers": [
{
"name": "CondorScan",
"url": "https://explorer.condor.systems",
"standard": "none"
}
]
},
{
"name": "Milkomeda A1 Testnet",
"chain": "milkTAlgo",
"icon": "milkomeda",
"rpc": [
"https://rpc-devnet-algorand-rollup.a1.milkomeda.com"
],
"faucets": [],
"nativeCurrency": {
"name": "milkTAlgo",
"symbol": "mTAlgo",
"decimals": 18
},
"infoURL": "https://milkomeda.com",
"shortName": "milkTAlgo",
"chainId": 200202,
"networkId": 200202,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com",
"standard": "none"
}
]
},
{
"name": "Mythical Chain",
"chain": "MYTH",
"rpc": [
"https://chain-rpc.mythicalgames.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Mythos",
"symbol": "MYTH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://mythicalgames.com/",
"shortName": "myth",
"chainId": 201804,
"networkId": 201804,
"icon": "mythical",
"explorers": [
{
"name": "Mythical Chain Explorer",
"url": "https://explorer.mythicalgames.com",
"icon": "mythical",
"standard": "EIP3091"
}
]
},
{
"name": "Decimal Smart Chain Testnet",
"chain": "tDSC",
"rpc": [
"https://testnet-val.decimalchain.com/web3"
],
"faucets": [],
"nativeCurrency": {
"name": "Decimal",
"symbol": "tDEL",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://decimalchain.com",
"shortName": "tDSC",
"chainId": 202020,
"networkId": 202020,
"icon": "dsc",
"explorers": [
{
"name": "DSC Explorer Testnet",
"url": "https://testnet.explorer.decimalchain.com",
"icon": "dsc",
"standard": "EIP3091"
}
]
},
{
"name": "Jellie",
"title": "Twala Testnet Jellie",
"shortName": "twl-jellie",
"chain": "ETH",
"chainId": 202624,
"networkId": 202624,
"icon": "twala",
"nativeCurrency": {
"name": "Twala Coin",
"symbol": "TWL",
"decimals": 18
},
"rpc": [
"https://jellie-rpc.twala.io/",
"wss://jellie-rpc-wss.twala.io/"
],
"faucets": [],
"infoURL": "https://twala.io/",
"explorers": [
{
"name": "Jellie Blockchain Explorer",
"url": "https://jellie.twala.io",
"standard": "EIP3091",
"icon": "twala"
}
]
},
{
"name": "Mas Mainnet",
"chain": "MAS",
"rpc": [
"http://node.masnet.ai:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Master Bank",
"symbol": "MAS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://masterbank.org",
"shortName": "mas",
"chainId": 220315,
"networkId": 220315,
"icon": "mas",
"explorers": [
{
"name": "explorer masnet",
"url": "https://explorer.masnet.ai",
"icon": "explorer",
"standard": "EIP3091"
}
]
},
{
"name": "Saakuru Testnet",
"chain": "Saakuru",
"icon": "saakuru",
"rpc": [
"https://rpc-testnet.saakuru.network"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://saakuru.network",
"shortName": "saakuru-testnet",
"chainId": 247253,
"networkId": 247253,
"explorers": [
{
"name": "saakuru-explorer-testnet",
"url": "https://explorer-testnet.saakuru.network",
"standard": "EIP3091"
}
]
},
{
"name": "CMP-Mainnet",
"chain": "CMP",
"rpc": [
"https://mainnet.block.caduceus.foundation",
"wss://mainnet.block.caduceus.foundation"
],
"faucets": [],
"nativeCurrency": {
"name": "Caduceus Token",
"symbol": "CMP",
"decimals": 18
},
"infoURL": "https://caduceus.foundation/",
"shortName": "cmp-mainnet",
"chainId": 256256,
"networkId": 256256,
"explorers": [
{
"name": "Mainnet Scan",
"url": "https://mainnet.scan.caduceus.foundation",
"standard": "none"
}
]
},
{
"name": "Gear Zero Network Testnet",
"chain": "GearZero",
"rpc": [
"https://gzn-test.linksme.info"
],
"faucets": [],
"nativeCurrency": {
"name": "Gear Zero Network Native Token",
"symbol": "GZN",
"decimals": 18
},
"infoURL": "https://token.gearzero.ca/testnet",
"shortName": "gz-testnet",
"chainId": 266256,
"networkId": 266256,
"slip44": 266256,
"explorers": []
},
{
"name": "Filecoin - Calibration testnet",
"chain": "FIL",
"icon": "filecoin",
"rpc": [
"https://api.calibration.node.glif.io/rpc/v1"
],
"faucets": [
"https://faucet.calibration.fildev.network/"
],
"nativeCurrency": {
"name": "testnet filecoin",
"symbol": "tFIL",
"decimals": 18
},
"infoURL": "https://filecoin.io",
"shortName": "filecoin-calibration",
"chainId": 314159,
"networkId": 314159,
"slip44": 1,
"explorers": [
{
"name": "Filscan - Calibration",
"url": "https://calibration.filscan.io",
"standard": "none"
},
{
"name": "Filscout - Calibration",
"url": "https://calibration.filscout.com/en",
"standard": "none"
}
]
},
{
"name": "Oone Chain Testnet",
"chain": "OONE",
"rpc": [
"https://blockchain-test.adigium.world"
],
"faucets": [
"https://apps-test.adigium.com/faucet"
],
"nativeCurrency": {
"name": "Oone",
"symbol": "tOONE",
"decimals": 18
},
"infoURL": "https://oone.world",
"shortName": "oonetest",
"chainId": 333777,
"networkId": 333777,
"explorers": [
{
"name": "expedition",
"url": "https://explorer-test.adigium.world",
"standard": "none"
}
]
},
{
"name": "Metal C-Chain",
"chain": "Metal",
"rpc": [
"https://api.metalblockchain.org/ext/bc/C/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Metal",
"symbol": "METAL",
"decimals": 18
},
"infoURL": "https://www.metalblockchain.org/",
"shortName": "metal",
"chainId": 381931,
"networkId": 381931,
"slip44": 9005,
"explorers": [
{
"name": "metalscan",
"url": "https://metalscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Metal Tahoe C-Chain",
"chain": "Metal",
"rpc": [
"https://tahoe.metalblockchain.org/ext/bc/C/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Metal",
"symbol": "METAL",
"decimals": 18
},
"infoURL": "https://www.metalblockchain.org/",
"shortName": "Tahoe",
"chainId": 381932,
"networkId": 381932,
"slip44": 9005,
"explorers": [
{
"name": "metalscan",
"url": "https://tahoe.metalscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Kekchain",
"chain": "kek",
"rpc": [
"https://mainnet.kekchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "KEK",
"symbol": "KEK",
"decimals": 18
},
"infoURL": "https://kekchain.com",
"shortName": "KEK",
"chainId": 420420,
"networkId": 103090,
"icon": "kek",
"explorers": [
{
"name": "blockscout",
"url": "https://mainnet-explorer.kekchain.com",
"icon": "kek",
"standard": "EIP3091"
}
]
},
{
"name": "Kekchain (kektest)",
"chain": "kek",
"rpc": [
"https://testnet.kekchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "tKEK",
"symbol": "tKEK",
"decimals": 18
},
"infoURL": "https://kekchain.com",
"shortName": "tKEK",
"chainId": 420666,
"networkId": 1,
"icon": "kek",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-explorer.kekchain.com",
"icon": "kek",
"standard": "EIP3091"
}
]
},
{
"name": "Fastex Chain testnet",
"chain": "FTN",
"title": "Fastex Chain testnet",
"rpc": [
"https://rpc.testnet.fastexchain.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "FTN",
"symbol": "FTN",
"decimals": 18
},
"infoURL": "https://fastex.com",
"shortName": "ftn",
"chainId": 424242,
"networkId": 424242,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.ftnscan.com",
"standard": "none"
}
]
},
{
"name": "Dexalot Subnet",
"chain": "DEXALOT",
"icon": "dexalot",
"rpc": [
"https://subnets.avax.network/dexalot/mainnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Dexalot",
"symbol": "ALOT",
"decimals": 18
},
"infoURL": "https://dexalot.com",
"shortName": "dexalot",
"chainId": 432204,
"networkId": 432204,
"explorers": [
{
"name": "Avalanche Subnet Explorer",
"url": "https://subnets.avax.network/dexalot",
"standard": "EIP3091"
}
]
},
{
"name": "Scroll",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://scroll.io",
"shortName": "scr",
"chainId": 534352,
"networkId": 534352,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
}
},
{
"name": "Scroll Alpha Testnet",
"chain": "ETH",
"status": "incubating",
"rpc": [
"https://alpha-rpc.scroll.io/l2"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://scroll.io",
"shortName": "scr-alpha",
"chainId": 534353,
"networkId": 534353,
"explorers": [
{
"name": "Scroll Alpha Testnet Block Explorer",
"url": "https://blockscout.scroll.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-5",
"bridges": []
}
},
{
"name": "Scroll Pre-Alpha Testnet",
"chain": "ETH",
"rpc": [
"https://prealpha-rpc.scroll.io/l2"
],
"faucets": [
"https://prealpha.scroll.io/faucet"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "TSETH",
"decimals": 18
},
"infoURL": "https://scroll.io",
"shortName": "scr-prealpha",
"chainId": 534354,
"networkId": 534354,
"explorers": [
{
"name": "Scroll L2 Block Explorer",
"url": "https://l2scan.scroll.io",
"standard": "EIP3091"
}
]
},
{
"name": "Bear Network Chain Mainnet",
"chain": "BRNKC",
"icon": "brnkc",
"rpc": [
"https://brnkc-mainnet.bearnetwork.net",
"https://brnkc-mainnet1.bearnetwork.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Bear Network Chain Native Token",
"symbol": "BRNKC",
"decimals": 18
},
"infoURL": "https://bearnetwork.net",
"shortName": "BRNKC",
"chainId": 641230,
"networkId": 641230,
"explorers": [
{
"name": "brnkscan",
"url": "https://brnkscan.bearnetwork.net",
"standard": "EIP3091"
}
]
},
{
"name": "Bear Network Chain Testnet",
"chain": "BRNKCTEST",
"icon": "brnkc",
"rpc": [
"https://brnkc-test.bearnetwork.net"
],
"faucets": [
"https://faucet.bearnetwork.net"
],
"nativeCurrency": {
"name": "Bear Network Chain Testnet Token",
"symbol": "tBRNKC",
"decimals": 18
},
"infoURL": "https://bearnetwork.net",
"shortName": "BRNKCTEST",
"chainId": 751230,
"networkId": 751230,
"explorers": [
{
"name": "brnktestscan",
"url": "https://brnktest-scan.bearnetwork.net",
"standard": "EIP3091"
}
]
},
{
"name": "OctaSpace",
"chain": "OCTA",
"rpc": [
"https://rpc.octa.space",
"wss://rpc.octa.space"
],
"faucets": [],
"nativeCurrency": {
"name": "OctaSpace",
"symbol": "OCTA",
"decimals": 18
},
"infoURL": "https://octa.space",
"shortName": "octa",
"chainId": 800001,
"networkId": 800001,
"icon": "octaspace",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.octa.space",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Posichain Mainnet Shard 0",
"chain": "PSC",
"rpc": [
"https://api.posichain.org",
"https://api.s0.posichain.org"
],
"faucets": [
"https://faucet.posichain.org/"
],
"nativeCurrency": {
"name": "Posichain Native Token",
"symbol": "POSI",
"decimals": 18
},
"infoURL": "https://posichain.org",
"shortName": "psc-s0",
"chainId": 900000,
"networkId": 900000,
"explorers": [
{
"name": "Posichain Explorer",
"url": "https://explorer.posichain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Posichain Testnet Shard 0",
"chain": "PSC",
"rpc": [
"https://api.s0.t.posichain.org"
],
"faucets": [
"https://faucet.posichain.org/"
],
"nativeCurrency": {
"name": "Posichain Native Token",
"symbol": "POSI",
"decimals": 18
},
"infoURL": "https://posichain.org",
"shortName": "psc-t-s0",
"chainId": 910000,
"networkId": 910000,
"explorers": [
{
"name": "Posichain Explorer Testnet",
"url": "https://explorer-testnet.posichain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Posichain Devnet Shard 0",
"chain": "PSC",
"rpc": [
"https://api.s0.d.posichain.org"
],
"faucets": [
"https://faucet.posichain.org/"
],
"nativeCurrency": {
"name": "Posichain Native Token",
"symbol": "POSI",
"decimals": 18
},
"infoURL": "https://posichain.org",
"shortName": "psc-d-s0",
"chainId": 920000,
"networkId": 920000,
"explorers": [
{
"name": "Posichain Explorer Devnet",
"url": "https://explorer-devnet.posichain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Posichain Devnet Shard 1",
"chain": "PSC",
"rpc": [
"https://api.s1.d.posichain.org"
],
"faucets": [
"https://faucet.posichain.org/"
],
"nativeCurrency": {
"name": "Posichain Native Token",
"symbol": "POSI",
"decimals": 18
},
"infoURL": "https://posichain.org",
"shortName": "psc-d-s1",
"chainId": 920001,
"networkId": 920001,
"explorers": [
{
"name": "Posichain Explorer Devnet",
"url": "https://explorer-devnet.posichain.org",
"standard": "EIP3091"
}
]
},
{
"name": "FNCY Testnet",
"chain": "FNCY",
"rpc": [
"https://fncy-testnet-seed.fncy.world"
],
"faucets": [
"https://faucet-testnet.fncy.world"
],
"nativeCurrency": {
"name": "FNCY",
"symbol": "FNCY",
"decimals": 18
},
"infoURL": "https://fncyscan-testnet.fncy.world",
"shortName": "tFNCY",
"chainId": 923018,
"networkId": 923018,
"icon": "fncy",
"explorers": [
{
"name": "fncy scan testnet",
"url": "https://fncyscan-testnet.fncy.world",
"icon": "fncy",
"standard": "EIP3091"
}
]
},
{
"name": "Zhejiang",
"chain": "ETH",
"rpc": [
"https://rpc.zhejiang.ethpandaops.io"
],
"faucets": [
"https://faucet.zhejiang.ethpandaops.io",
"https://zhejiang-faucet.pk910.de"
],
"nativeCurrency": {
"name": "Testnet ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zhejiang.ethpandaops.io",
"shortName": "zhejiang",
"chainId": 1337803,
"networkId": 1337803,
"icon": "ethereum",
"explorers": [
{
"name": "Zhejiang Explorer",
"url": "https://zhejiang.beaconcha.in",
"icon": "ethereum",
"standard": "EIP3091"
}
]
},
{
"name": "Plian Mainnet Main",
"chain": "Plian",
"rpc": [
"https://mainnet.plian.io/pchain"
],
"faucets": [],
"nativeCurrency": {
"name": "Plian Token",
"symbol": "PI",
"decimals": 18
},
"infoURL": "https://plian.org/",
"shortName": "plian-mainnet",
"chainId": 2099156,
"networkId": 2099156,
"explorers": [
{
"name": "piscan",
"url": "https://piscan.plian.org/pchain",
"standard": "EIP3091"
}
]
},
{
"name": "Filecoin - Butterfly testnet",
"chain": "FIL",
"status": "incubating",
"rpc": [],
"faucets": [
"https://faucet.butterfly.fildev.network"
],
"nativeCurrency": {
"name": "testnet filecoin",
"symbol": "tFIL",
"decimals": 18
},
"infoURL": "https://filecoin.io",
"shortName": "filecoin-butterfly",
"icon": "filecoin",
"chainId": 3141592,
"networkId": 3141592,
"slip44": 1,
"explorers": []
},
{
"name": "Imversed Mainnet",
"chain": "Imversed",
"rpc": [
"https://jsonrpc.imversed.network",
"https://ws-jsonrpc.imversed.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Imversed Token",
"symbol": "IMV",
"decimals": 18
},
"infoURL": "https://imversed.com",
"shortName": "imversed",
"chainId": 5555555,
"networkId": 5555555,
"icon": "imversed",
"explorers": [
{
"name": "Imversed EVM explorer (Blockscout)",
"url": "https://txe.imversed.network",
"icon": "imversed",
"standard": "EIP3091"
},
{
"name": "Imversed Cosmos Explorer (Big Dipper)",
"url": "https://tex-c.imversed.com",
"icon": "imversed",
"standard": "none"
}
]
},
{
"name": "Imversed Testnet",
"chain": "Imversed",
"rpc": [
"https://jsonrpc-test.imversed.network",
"https://ws-jsonrpc-test.imversed.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Imversed Token",
"symbol": "IMV",
"decimals": 18
},
"infoURL": "https://imversed.com",
"shortName": "imversed-testnet",
"chainId": 5555558,
"networkId": 5555558,
"icon": "imversed",
"explorers": [
{
"name": "Imversed EVM Explorer (Blockscout)",
"url": "https://txe-test.imversed.network",
"icon": "imversed",
"standard": "EIP3091"
},
{
"name": "Imversed Cosmos Explorer (Big Dipper)",
"url": "https://tex-t.imversed.com",
"icon": "imversed",
"standard": "none"
}
]
},
{
"name": "Saakuru Mainnet",
"chain": "Saakuru",
"icon": "saakuru",
"rpc": [
"https://rpc.saakuru.network"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://saakuru.network",
"shortName": "saakuru",
"chainId": 7225878,
"networkId": 7225878,
"explorers": [
{
"name": "saakuru-explorer",
"url": "https://explorer.saakuru.network",
"standard": "EIP3091"
}
]
},
{
"name": "OpenVessel",
"chain": "VSL",
"icon": "vsl",
"rpc": [
"https://mainnet-external.openvessel.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Vessel ETH",
"symbol": "VETH",
"decimals": 18
},
"infoURL": "https://www.openvessel.io",
"shortName": "vsl",
"chainId": 7355310,
"networkId": 7355310,
"explorers": [
{
"name": "openvessel-mainnet",
"url": "https://mainnet-explorer.openvessel.io",
"standard": "none"
}
]
},
{
"name": "QL1 Testnet",
"chain": "QOM",
"status": "incubating",
"rpc": [
"https://rpc.testnet.qom.one"
],
"faucets": [
"https://faucet.qom.one"
],
"nativeCurrency": {
"name": "Shiba Predator",
"symbol": "QOM",
"decimals": 18
},
"infoURL": "https://qom.one",
"shortName": "tqom",
"chainId": 7668378,
"networkId": 7668378,
"icon": "qom",
"explorers": [
{
"name": "QL1 Testnet Explorer",
"url": "https://testnet.qom.one",
"icon": "qom",
"standard": "EIP3091"
}
]
},
{
"name": "Plian Mainnet Subchain 1",
"chain": "Plian",
"rpc": [
"https://mainnet.plian.io/child_0"
],
"faucets": [],
"nativeCurrency": {
"name": "Plian Token",
"symbol": "PI",
"decimals": 18
},
"infoURL": "https://plian.org",
"shortName": "plian-mainnet-l2",
"chainId": 8007736,
"networkId": 8007736,
"explorers": [
{
"name": "piscan",
"url": "https://piscan.plian.org/child_0",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-2099156",
"type": "L2"
}
},
{
"name": "Plian Testnet Subchain 1",
"chain": "Plian",
"rpc": [
"https://testnet.plian.io/child_test"
],
"faucets": [],
"nativeCurrency": {
"name": "Plian Token",
"symbol": "TPI",
"decimals": 18
},
"infoURL": "https://plian.org/",
"shortName": "plian-testnet-l2",
"chainId": 10067275,
"networkId": 10067275,
"explorers": [
{
"name": "piscan",
"url": "https://testnet.plian.org/child_test",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-16658437",
"type": "L2"
}
},
{
"name": "Soverun Mainnet",
"chain": "SVRN",
"icon": "soverun",
"rpc": [
"https://mainnet-rpc.soverun.com"
],
"faucets": [
"https://faucet.soverun.com"
],
"nativeCurrency": {
"name": "Soverun",
"symbol": "SVRN",
"decimals": 18
},
"infoURL": "https://soverun.com",
"shortName": "SVRNm",
"chainId": 10101010,
"networkId": 10101010,
"explorers": [
{
"name": "Soverun",
"url": "https://explorer.soverun.com",
"standard": "EIP3091"
}
]
},
{
"name": "Anduschain Mainnet",
"chain": "anduschain",
"rpc": [
"https://rpc.anduschain.io/rpc",
"wss://rpc.anduschain.io/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "DAON",
"symbol": "DEB",
"decimals": 18
},
"infoURL": "https://anduschain.io/",
"shortName": "anduschain-mainnet",
"chainId": 14288640,
"networkId": 14288640,
"explorers": [
{
"name": "anduschain explorer",
"url": "https://explorer.anduschain.io",
"icon": "daon",
"standard": "none"
}
]
},
{
"name": "Plian Testnet Main",
"chain": "Plian",
"rpc": [
"https://testnet.plian.io/testnet"
],
"faucets": [],
"nativeCurrency": {
"name": "Plian Testnet Token",
"symbol": "TPI",
"decimals": 18
},
"infoURL": "https://plian.org",
"shortName": "plian-testnet",
"chainId": 16658437,
"networkId": 16658437,
"explorers": [
{
"name": "piscan",
"url": "https://testnet.plian.org/testnet",
"standard": "EIP3091"
}
]
},
{
"name": "Excelon Mainnet",
"chain": "XLON",
"icon": "xlon",
"rpc": [
"https://edgewallet1.xlon.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Excelon",
"symbol": "xlon",
"decimals": 18
},
"infoURL": "https://xlon.org",
"shortName": "xlon",
"chainId": 22052002,
"networkId": 22052002,
"explorers": [
{
"name": "Excelon explorer",
"url": "https://explorer.excelon.io",
"standard": "EIP3091"
}
]
},
{
"name": "Excoincial Chain Volta-Testnet",
"chain": "TEXL",
"icon": "exl",
"rpc": [
"https://testnet-rpc.exlscan.com"
],
"faucets": [
"https://faucet.exlscan.com"
],
"nativeCurrency": {
"name": "TExlcoin",
"symbol": "TEXL",
"decimals": 18
},
"infoURL": "",
"shortName": "exlvolta",
"chainId": 27082017,
"networkId": 27082017,
"explorers": [
{
"name": "exlscan",
"url": "https://testnet-explorer.exlscan.com",
"icon": "exl",
"standard": "EIP3091"
}
]
},
{
"name": "Excoincial Chain Mainnet",
"chain": "EXL",
"icon": "exl",
"rpc": [
"https://rpc.exlscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Exlcoin",
"symbol": "EXL",
"decimals": 18
},
"infoURL": "",
"shortName": "exl",
"chainId": 27082022,
"networkId": 27082022,
"explorers": [
{
"name": "exlscan",
"url": "https://exlscan.com",
"icon": "exl",
"standard": "EIP3091"
}
]
},
{
"name": "Flachain Mainnet",
"chain": "FLX",
"icon": "flacoin",
"rpc": [
"https://flachain.flaexchange.top/"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Flacoin",
"symbol": "FLA",
"decimals": 18
},
"infoURL": "https://www.flaexchange.top",
"shortName": "fla",
"chainId": 29032022,
"networkId": 29032022,
"explorers": [
{
"name": "FLXExplorer",
"url": "https://explorer.flaexchange.top",
"standard": "EIP3091"
}
]
},
{
"name": "Filecoin - Local testnet",
"chain": "FIL",
"status": "incubating",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "testnet filecoin",
"symbol": "tFIL",
"decimals": 18
},
"infoURL": "https://filecoin.io",
"shortName": "filecoin-local",
"icon": "filecoin",
"chainId": 31415926,
"networkId": 31415926,
"slip44": 1,
"explorers": []
},
{
"name": "maistestsubnet",
"chain": "MAI",
"rpc": [
"http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "maistestsubnet",
"symbol": "MAI",
"decimals": 18
},
"infoURL": "",
"shortName": "mais",
"chainId": 43214913,
"networkId": 43214913,
"explorers": [
{
"name": "maistesntet",
"url": "http://174.138.9.169:3006/?network=maistesntet",
"standard": "none"
}
]
},
{
"name": "Autonity Bakerloo (Thames) Testnet",
"chain": "AUT",
"rpc": [
"https://rpc1.bakerloo.autonity.org/",
"wss://rpc1.bakerloo.autonity.org/ws/"
],
"faucets": [
"https://faucet.autonity.org/"
],
"nativeCurrency": {
"name": "Bakerloo Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "bakerloo-0",
"chainId": 65010000,
"networkId": 65010000,
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://bakerloo.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "Autonity Piccadilly (Thames) Testnet",
"chain": "AUT",
"rpc": [
"https://rpc1.piccadilly.autonity.org/",
"wss://rpc1.piccadilly.autonity.org/ws/"
],
"faucets": [
"https://faucet.autonity.org/"
],
"nativeCurrency": {
"name": "Piccadilly Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "piccadilly-0",
"chainId": 65100000,
"networkId": 65100000,
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://piccadilly.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "Calypso NFT Hub (SKALE Testnet)",
"title": "Calypso NFT Hub Testnet",
"chain": "staging-utter-unripe-menkar",
"rpc": [
"https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"
],
"faucets": [
"https://sfuel.dirtroad.dev/staging"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://calypsohub.network/",
"shortName": "calypso-testnet",
"chainId": 344106930,
"networkId": 344106930,
"explorers": [
{
"name": "Blockscout",
"url": "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com",
"icon": "calypso",
"standard": "EIP3091"
}
]
},
{
"name": "Nebula Staging",
"chain": "staging-faint-slimy-achird",
"rpc": [
"https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird",
"wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird"
],
"faucets": [],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://nebulachain.io/",
"shortName": "nebula-staging",
"chainId": 503129905,
"networkId": 503129905,
"explorers": [
{
"name": "nebula",
"url": "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com",
"icon": "nebula",
"standard": "EIP3091"
}
]
},
{
"name": "Nebula Mainnet",
"chain": "green-giddy-denebola",
"rpc": [
"https://mainnet.skalenodes.com/v1/green-giddy-denebola",
"wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola"
],
"faucets": [],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://nebulachain.io/",
"shortName": "nebula-mainnet",
"chainId": 1482601649,
"networkId": 1482601649,
"explorers": [
{
"name": "nebula",
"url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com",
"icon": "nebula",
"standard": "EIP3091"
}
]
},
{
"name": "Calypso NFT Hub (SKALE)",
"title": "Calypso NFT Hub Mainnet",
"chain": "honorable-steel-rasalhague",
"rpc": [
"https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague"
],
"faucets": [
"https://sfuel.dirtroad.dev"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://calypsohub.network/",
"shortName": "calypso-mainnet",
"chainId": 1564830818,
"networkId": 1564830818,
"explorers": [
{
"name": "Blockscout",
"url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com",
"icon": "calypso",
"standard": "EIP3091"
}
]
},
{
"name": "Harmony Devnet Shard 0",
"chain": "Harmony",
"rpc": [
"https://api.s1.ps.hmny.io",
"https://api.s1.ps.hmny.io"
],
"faucets": [
"http://dev.faucet.easynode.one/"
],
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"infoURL": "https://www.harmony.one/",
"shortName": "hmy-ps-s0",
"chainId": 1666900000,
"networkId": 1666900000,
"explorers": [
{
"name": "Harmony Block Explorer",
"url": "https://explorer.ps.hmny.io",
"standard": "EIP3091"
}
]
},
{
"name": "Europa SKALE Chain",
"chain": "europa",
"icon": "europa",
"rpc": [
"https://mainnet.skalenodes.com/v1/elated-tan-skat",
"wss://mainnet.skalenodes.com/v1/elated-tan-skat"
],
"faucets": [
"https://ruby.exchange/faucet.html",
"https://sfuel.mylilius.com/"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://europahub.network/",
"shortName": "europa",
"chainId": 2046399126,
"networkId": 2046399126,
"explorers": [
{
"name": "Blockscout",
"url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://ruby.exchange/bridge.html"
}
]
}
},
{
"name": "Zeniq",
"chain": "ZENIQ",
"rpc": [
"https://smart.zeniq.network:9545"
],
"faucets": [
"https://faucet.zeniq.net/"
],
"nativeCurrency": {
"name": "Zeniq",
"symbol": "ZENIQ",
"decimals": 18
},
"infoURL": "https://www.zeniq.dev/",
"shortName": "zeniq",
"chainId": 383414847825,
"networkId": 383414847825,
"explorers": [
{
"name": "zeniq-smart-chain-explorer",
"url": "https://smart.zeniq.net",
"standard": "EIP3091"
}
]
},
{
"name": "PDC Mainnet",
"chain": "IPDC",
"rpc": [
"https://mainnet.ipdc.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "PDC",
"symbol": "PDC",
"decimals": 18
},
"infoURL": "https://ipdc.io",
"shortName": "ipdc",
"chainId": 666301171999,
"networkId": 666301171999,
"explorers": [
{
"name": "ipdcscan",
"url": "https://scan.ipdc.io",
"standard": "EIP3091"
}
]
},
{
"name": "AlveyChain Mainnet",
"chain": "ALV",
"rpc": [
"https://elves-core1.alvey.io",
"https://elves-core2.alvey.io",
"https://elves-core3.alvey.io"
],
"nativeCurrency": {
"name": "AlveyCoin",
"symbol": "ALV",
"decimals": 18
},
"infoURL": "https://www.alveychain.com/",
"shortName": "ALV",
"chainId": 3797,
"networkId": 3797,
"explorers": [
{
"name": "AlveyScan",
"url": "https://alveyscan.com",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1685016287246.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1685016249560.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1685016218214.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1685016276305.png"
}
},
{
"name": "PEGO Mainnet",
"chainId": 20201022,
"shortName": "PEGO",
"chain": "PEGO",
"network": "mainnet",
"networkId": 20201022,
"nativeCurrency": {
"name": "PEGO",
"symbol": "PG",
"decimals": 18
},
"rpc": [
"https://pegorpc.com",
"https://node1.pegorpc.com",
" https://node2.pegorpc.com"
],
"faucets": [],
"infoURL": "https://pego.network",
"app_resource": {
"ic_chain_select": "https://drive.google.com/file/d/1eoxLbi4CIXW_St3fkoctRwPrdD4-Nyb8/view?usp=drive_link",
"ic_chain_unselect": "https://drive.google.com/file/d/1_UgiAXINqJhMWloRz2W5dkBxmTtmugvM/view?usp=drive_link",
"color_chain_bg": "0xFF9D00"
}
},
{
"name": "Acria IntelliChain",
"chain": "AIC",
"rpc": [
"https://aic.acria.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "ACRIA",
"symbol": "ACRIA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://acria.ai",
"shortName": "aic",
"chainId": 47,
"networkId": 47,
"explorers": [
{
"name": "Acria IntelliChain-Explorer",
"url": "https://explorer.acria.ai",
"standard": "EIP3091"
}
]
},
{
"name": "Linqto Devnet",
"chain": "LNQ",
"rpc": [
"https://linqto-dev.com"
],
"faucets": [],
"nativeCurrency": {
"name": "XRP",
"symbol": "XRP",
"decimals": 18
},
"infoURL": "https://linqto.com",
"shortName": "linqto-devnet",
"chainId": 84,
"networkId": 84,
"explorers": [
{
"name": "Linqto Devnet Explorer",
"url": "https://explorer.linqto-dev.com",
"standard": "EIP3091"
}
]
},
{
"name": "SwissDLT",
"chain": "SDLT",
"rpc": [
"https://rpc.swissdlt.ch"
],
"faucets": [],
"nativeCurrency": {
"name": "BCTS",
"symbol": "BCTS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://bcts.ch",
"shortName": "sdlt",
"chainId": 94,
"networkId": 94,
"icon": "bcts",
"explorers": [
{
"name": "SwissDLT Explorer",
"url": "https://explorer.swissdlt.ch",
"icon": "bcts",
"standard": "EIP3091"
}
]
},
{
"name": "Six Protocol",
"chain": "SIXNET",
"icon": "six",
"rpc": [
"https://sixnet-rpc-evm.sixprotocol.net"
],
"faucets": [],
"nativeCurrency": {
"name": "SIX evm token",
"symbol": "SIX",
"decimals": 18
},
"infoURL": "https://six.network/",
"shortName": "six",
"chainId": 98,
"networkId": 98,
"explorers": [
{
"name": "SIX Scan",
"url": "https://sixscan.io/sixnet",
"standard": "none",
"icon": "six"
}
]
},
{
"name": "Coinbit Mainnet",
"chain": "Coinbit",
"rpc": [
"https://coinbit-rpc-mainnet.chain.sbcrypto.app"
],
"faucets": [],
"nativeCurrency": {
"name": "Gas IDR",
"symbol": "GIDR",
"decimals": 18
},
"infoURL": "https://crypto.stockbit.com/",
"shortName": "coinbit",
"chainId": 112,
"networkId": 112,
"icon": "coinbit",
"explorers": [
{
"name": "blockscout",
"url": "https://coinbit-explorer.chain.sbcrypto.app",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Uptick Mainnet",
"chain": "Uptick",
"rpc": [
"https://json-rpc.uptick.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Uptick",
"symbol": "UPTICK",
"decimals": 18
},
"infoURL": "https://www.uptick.network",
"shortName": "auptick",
"chainId": 117,
"networkId": 117,
"icon": "uptick",
"explorers": [
{
"name": "Uptick Explorer",
"url": "https://evm-explorer.uptick.network",
"icon": "uptick",
"standard": "none"
}
]
},
{
"name": "iExec Sidechain",
"chain": "Bellecour",
"icon": "rlc",
"rpc": [
"https://bellecour.iex.ec"
],
"faucets": [],
"nativeCurrency": {
"name": "xRLC",
"symbol": "xRLC",
"decimals": 18
},
"infoURL": "https://iex.ec",
"shortName": "rlc",
"chainId": 134,
"networkId": 134,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.bellecour.iex.ec",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Deamchain Mainnet",
"chain": "Deamchain",
"icon": "deam",
"rpc": [
"https://mainnet.deamchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Deamchain Native Token",
"symbol": "DEAM",
"decimals": 18
},
"infoURL": "https://deamchain.com",
"shortName": "deam",
"chainId": 136,
"networkId": 136,
"explorers": [
{
"name": "Deamchain Block Explorer",
"url": "https://scan.deamchain.com",
"standard": "EIP3091",
"icon": "deam"
}
]
},
{
"name": "Defi Oracle Meta Mainnet",
"chain": "dfiometa",
"icon": "defioraclemeta",
"rpc": [
"https://rpc.public-0138.defi-oracle.io",
"wss://rpc.public-0138.defi-oracle.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://defi-oracle.io/",
"shortName": "dfio-meta-main",
"chainId": 138,
"networkId": 1,
"slip44": 60,
"ens": {
"registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85"
},
"explorers": [
{
"name": "Quorum Explorer",
"url": "https://public-0138.defi-oracle.io",
"standard": "none"
}
]
},
{
"name": "WoopChain Mainnet",
"chain": "WOOP",
"icon": "woopchain",
"rpc": [
"https://rpc.woop.ai/rpc"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "WoopCoin",
"symbol": "WOOC",
"decimals": 18
},
"infoURL": "https://wikiwoop.com",
"shortName": "woop",
"chainId": 139,
"networkId": 139,
"explorers": [
{
"name": "wikiwoop",
"url": "https://explorer.wikiwoop.com",
"standard": "EIP3091"
}
]
},
{
"name": "Six Protocol Testnet",
"chain": "FIVENET",
"icon": "six",
"rpc": [
"https://rpc-evm.fivenet.sixprotocol.net"
],
"faucets": [
"https://faucet.sixprotocol.net"
],
"nativeCurrency": {
"name": "SIX testnet evm token",
"symbol": "tSIX",
"decimals": 18
},
"infoURL": "https://six.network/",
"shortName": "sixt",
"chainId": 150,
"networkId": 150,
"explorers": [
{
"name": "SIX Scan fivenet",
"url": "https://sixscan.io/fivenet",
"standard": "none",
"icon": "six"
}
]
},
{
"name": "Tenet Testnet",
"title": "Tenet Testnet",
"chain": "TENET",
"icon": "tenet",
"rpc": [
"https://rpc.testnet.tenet.org"
],
"faucets": [
"https://faucet.testnet.tenet.org"
],
"nativeCurrency": {
"name": "TENET",
"symbol": "TENET",
"decimals": 18
},
"infoURL": "https://tenet.org/",
"shortName": "tenet-testnet",
"chainId": 155,
"networkId": 155,
"explorers": [
{
"name": "TenetScan Testnet",
"url": "https://testnet.tenetscan.io",
"icon": "tenet",
"standard": "EIP3091"
}
]
},
{
"name": "OEBlock Testnet",
"chain": "OEBt",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://testnet-rpc.oeblock.com"
],
"faucets": [],
"nativeCurrency": {
"name": "OEBlock",
"symbol": "OEB",
"decimals": 18
},
"infoURL": "https://www.oeblock.com/",
"shortName": "obe",
"chainId": 156,
"networkId": 156,
"icon": "oescan",
"explorers": [
{
"name": "OEScan explorer",
"url": "https://testnet.oescan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Omni Testnet 1",
"chain": "Omni",
"rpc": [
"https://testnet-1.omni.network"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Omni",
"symbol": "OMNI",
"decimals": 18
},
"infoURL": "https://docs.omni.network/",
"shortName": "omni_testnet",
"chainId": 165,
"networkId": 165,
"explorers": [
{
"name": "Omni Explorer",
"url": "https://testnet-1.explorer.omni.network",
"standard": "EIP3091"
}
]
},
{
"name": "OKBChain Testnet",
"chain": "okbchain",
"rpc": [
"https://okbtestrpc.okbchain.org"
],
"faucets": [
"https://www.oklink.com/okbc-test"
],
"nativeCurrency": {
"name": "OKBChain Global Utility Token in testnet",
"symbol": "OKB",
"decimals": 18
},
"features": [],
"infoURL": "https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain",
"shortName": "tokb",
"chainId": 195,
"networkId": 195,
"explorers": [
{
"name": "OKLink",
"url": "https://www.oklink.com/okbc-test",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Neutrinos TestNet",
"chain": "NEUTR",
"rpc": [
"https://testnet-rpc.neutrinoschain.com"
],
"faucets": [
"https://neutrinoschain.com/faucet"
],
"nativeCurrency": {
"name": "Neutrinos",
"symbol": "NEUTR",
"decimals": 18
},
"infoURL": "https://docs.neutrinoschain.com",
"shortName": "NEUTR",
"chainId": 197,
"networkId": 197,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.neutrinoschain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Structx Mainnet",
"chain": "utx",
"rpc": [
"https://mainnet.structx.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Notes",
"symbol": "utx",
"decimals": 18
},
"infoURL": "https://structx.io",
"shortName": "utx",
"chainId": 208,
"networkId": 208
},
{
"name": "SwapDEX",
"chain": "SDX",
"rpc": [
"https://rpc.swapdex.network",
"wss://ss.swapdex.network"
],
"faucets": [],
"nativeCurrency": {
"name": "SwapDEX",
"symbol": "SDX",
"decimals": 18
},
"infoURL": "https://swapdex.network/",
"shortName": "SDX",
"chainId": 230,
"networkId": 230,
"explorers": [
{
"name": "SwapDEX",
"url": "https://evm.swapdex.network",
"standard": "none"
}
]
},
{
"name": "Deamchain Testnet",
"chain": "Deamchain",
"icon": "deam",
"rpc": [
"https://testnet.deamchain.com"
],
"faucets": [
"https://faucet.deamchain.com"
],
"nativeCurrency": {
"name": "Deamchain Native Token",
"symbol": "DEAM",
"decimals": 18
},
"infoURL": "https://deamchain.com",
"shortName": "deamtest",
"chainId": 236,
"networkId": 236,
"explorers": [
{
"name": "Deamchain Testnet Explorer",
"url": "https://testnet-scan.deamchain.com",
"standard": "EIP3091",
"icon": "deam"
}
]
},
{
"name": "Plinga Mainnet",
"chain": "Plinga",
"icon": "plinga",
"rpc": [
"https://rpcurl.mainnet.plgchain.com",
"https://rpcurl.plgchain.blockchain.evmnode.online",
"https://rpcurl.mainnet.plgchain.plinga.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "Plinga",
"symbol": "PLINGA",
"decimals": 18
},
"infoURL": "https://www.plinga.technology/",
"shortName": "plgchain",
"chainId": 242,
"networkId": 242,
"explorers": [
{
"name": "plgscan",
"url": "https://www.plgscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Neonlink Mainnet",
"chain": "Neonlink",
"rpc": [
"https://mainnet.neonlink.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Neonlink Native Token",
"symbol": "NEON",
"decimals": 18
},
"infoURL": "https://neonlink.io",
"shortName": "neon",
"chainId": 259,
"networkId": 259,
"icon": "neonlink",
"explorers": [
{
"name": "Neon Blockchain Explorer",
"url": "https://scan.neonlink.io",
"standard": "EIP3091",
"icon": "neonlink"
}
]
},
{
"name": "EgonCoin Mainnet",
"chain": "EGON",
"icon": "egonicon",
"rpc": [
"https://rpc.egcscan.com"
],
"faucets": [
"https://faucet.egcscan.com"
],
"nativeCurrency": {
"name": "EgonCoin",
"symbol": "EGON",
"decimals": 18
},
"infoURL": "https://egcscan.com",
"shortName": "EGONm",
"chainId": 271,
"networkId": 271,
"explorers": [
{
"name": "EgonCoin Mainnet",
"url": "https://egcscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "LaChain",
"chain": "LaChain",
"icon": "LaChain",
"rpc": [
"https://rpc1.mainnet.lachain.network",
"https://rpc2.mainnet.lachain.network",
"https://lachain.rpc-nodes.cedalio.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "LaCoin",
"symbol": "LAC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "",
"shortName": "lachain",
"chainId": 274,
"networkId": 274,
"explorers": [
{
"name": "LaChain Explorer",
"url": "https://explorer.lachain.network",
"standard": "EIP3091"
}
]
},
{
"name": "Neurochain Testnet",
"chain": "NCN",
"rpc": [
"https://nc-rpc-test1.neurochain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Neurochain",
"symbol": "tNCN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.neurochain.ai",
"shortName": "ncnt",
"chainId": 303,
"networkId": 303,
"explorers": [
{
"name": "neuroscan",
"url": "https://testnet.ncnscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Neurochain Mainnet",
"chain": "NCN",
"rpc": [
"https://nc-rpc-prd1.neurochain.io",
"https://nc-rpc-prd2.neurochain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Neurochain",
"symbol": "NCN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.neurochain.ai",
"shortName": "ncn",
"chainId": 313,
"networkId": 313,
"explorers": [
{
"name": "neuroscan",
"url": "https://ncnscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Ozone Chain Testnet",
"chain": "OZONE",
"rpc": [
"https://node1.testnet.ozonechain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "OZONE",
"symbol": "OZO",
"decimals": 18
},
"infoURL": "https://ozonechain.io",
"shortName": "ozo_tst",
"chainId": 401,
"networkId": 401,
"icon": "ozonechain",
"explorers": [
{
"name": "OZONE Scan",
"url": "https://testnet.ozonescan.io",
"standard": "EIP3091"
}
]
},
{
"name": "LaTestnet",
"chain": "LaTestnet",
"icon": "LaChain",
"rpc": [
"https://rpc.testnet.lachain.network",
"https://lachain-testnet.rpc-nodes.cedalio.dev"
],
"faucets": [
"https://faucet.lachain.network"
],
"nativeCurrency": {
"name": "Test LaCoin",
"symbol": "TLA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "",
"shortName": "latestnet",
"chainId": 418,
"networkId": 418,
"explorers": [
{
"name": "LaTestnet Explorer",
"url": "https://testexplorer.lachain.network",
"standard": "EIP3091"
}
]
},
{
"name": "PGN (Public Goods Network)",
"chain": "ETH",
"rpc": [
"https://rpc.publicgoods.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://publicgoods.network/",
"shortName": "PGN",
"chainId": 424,
"networkId": 424,
"icon": "publicGoodsNetwork",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.publicgoods.network",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.publicgoods.network"
}
]
}
},
{
"name": "ARZIO Chain",
"chain": "ARZIO",
"icon": "arzio",
"rpc": [
"https://chain-rpc.arzio.co"
],
"faucets": [],
"nativeCurrency": {
"name": "ARZIO",
"symbol": "AZO",
"decimals": 18
},
"infoURL": "https://chain.arzio.co",
"shortName": "arzio",
"chainId": 456,
"networkId": 456,
"explorers": [
{
"name": "ARZIO Scan",
"url": "https://scan.arzio.co",
"standard": "EIP3091"
}
]
},
{
"name": "Rollux Mainnet",
"chain": "SYS",
"rpc": [
"https://rpc.rollux.com",
"https://rollux.public-rpc.com",
"wss://rpc.rollux.com/wss",
"https://rpc.ankr.com/rollux/${ANKR_API_KEY}"
],
"faucets": [
"https://rollux.id/faucetapp"
],
"nativeCurrency": {
"name": "Syscoin",
"symbol": "SYS",
"decimals": 18
},
"infoURL": "https://rollux.com",
"shortName": "sys-rollux",
"chainId": 570,
"networkId": 570,
"explorers": [
{
"name": "Rollux Explorer",
"url": "https://explorer.rollux.com",
"standard": "EIP3091"
}
]
},
{
"name": "Avocado",
"chain": "Avocado",
"rpc": [
"https://rpc.avocado.instadapp.io"
],
"faucets": [],
"nativeCurrency": {
"name": "USDC",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://avocado.instadapp.io",
"shortName": "avocado",
"chainId": 634,
"networkId": 634,
"icon": "avocado",
"explorers": [
{
"name": "avoscan",
"url": "https://avoscan.co",
"icon": "avocado",
"standard": "none"
}
]
},
{
"name": "Shibarium Beta",
"chain": "Shibarium",
"icon": "shibarium",
"rpc": [
"https://puppynet.shibrpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BONE",
"symbol": "BONE",
"decimals": 18
},
"infoURL": "https://beta.shibariumtech.com",
"shortName": "shibarium",
"chainId": 719,
"networkId": 719,
"explorers": [
{
"name": "shibscan",
"url": "https://puppyscan.shib.io",
"standard": "EIP3091"
}
]
},
{
"name": "MAAL Sharia Chain",
"chain": "MAAL",
"icon": "maal",
"rpc": [
"https://node1-mainnet.maalscan.io/",
"https://node2-mainnet.maalscan.io/",
"https://node3-mainnet.maalscan.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "MAAL",
"symbol": "MAAL",
"decimals": 18
},
"infoURL": "https://www.maalblockchain.com/",
"shortName": "maal",
"chainId": 786,
"networkId": 786,
"explorers": [
{
"name": "maalscan",
"url": "https://maalscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Patex",
"chain": "ETH",
"icon": "patex",
"rpc": [
"https://rpc.patex.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://patex.io/",
"shortName": "peth",
"chainId": 789,
"networkId": 789,
"explorers": [
{
"name": "patexscan",
"url": "https://patexscan.io",
"icon": "patex",
"standard": "EIP3091"
}
]
},
{
"name": "BeOne Chain Mainnet",
"chain": "BOC",
"icon": "beonechain",
"rpc": [
"https://dataseed1.beonechain.com",
"https://dataseed2.beonechain.com",
"https://dataseed-us1.beonechain.com",
"https://dataseed-us2.beonechain.com",
"https://dataseed-uk1.beonechain.com",
"https://dataseed-uk2.beonechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BeOne Chain Mainnet",
"symbol": "BOC",
"decimals": 18
},
"infoURL": "https://beonechain.com",
"shortName": "BOC",
"chainId": 818,
"networkId": 818,
"slip44": 8181,
"explorers": [
{
"name": "BeOne Chain Mainnet",
"url": "https://beonescan.com",
"standard": "EIP3091"
}
]
},
{
"name": "DecentraBone Layer1 Testnet",
"chain": "DBONE",
"rpc": [
"https://layer1test.decentrabone.com"
],
"faucets": [],
"nativeCurrency": {
"name": "DecentraBone",
"symbol": "DBONE",
"decimals": 18
},
"infoURL": "https://decentrabone.com",
"shortName": "DBONE",
"chainId": 910,
"networkId": 910
},
{
"name": "PulseChain Testnet v4",
"shortName": "t4pls",
"chain": "t4PLS",
"chainId": 943,
"networkId": 943,
"icon": "pulsechain",
"infoURL": "https://pulsechain.com",
"rpc": [
"https://rpc.v4.testnet.pulsechain.com/",
"wss://rpc.v4.testnet.pulsechain.com/"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.v4.testnet.pulsechain.com/"
],
"ens": {
"registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"
},
"status": "incubating",
"explorers": [],
"nativeCurrency": {
"name": "Test Pulse",
"symbol": "tPLS",
"decimals": 18
}
},
{
"name": "5ireChain Thunder",
"chain": "5ireChain",
"rpc": [
"https://rpc-testnet.5ire.network"
],
"faucets": [
"https://explorer.5ire.network/faucet"
],
"nativeCurrency": {
"name": "5ire Token",
"symbol": "5ire",
"decimals": 18
},
"infoURL": "https://5ire.org",
"shortName": "5ire",
"chainId": 997,
"networkId": 997,
"icon": "5ireChain",
"explorers": [
{
"name": "5ireChain Explorer",
"url": "https://explorer.5ire.network",
"standard": "none",
"icon": "5ireChain"
}
]
},
{
"name": "ShimmerEVM Testnet Deprecated",
"title": "ShimmerEVM Testnet Deprecated",
"chain": "ShimmerEVM",
"icon": "shimmerevm",
"rpc": [],
"faucets": [
"https://evm-toolkit.evm.testnet.shimmer.network",
"https://evm-faucet.testnet.shimmer.network"
],
"nativeCurrency": {
"name": "SMR",
"symbol": "SMR",
"decimals": 18
},
"infoURL": "https://shimmer.network",
"shortName": "shimmerevm-testnet-deprecated",
"chainId": 1071,
"networkId": 1071,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.evm.testnet.shimmer.network",
"standard": "EIP3091"
}
],
"status": "deprecated"
},
{
"name": "ShimmerEVM Testnet",
"title": "ShimmerEVM Testnet",
"chain": "ShimmerEVM",
"icon": "shimmerevm",
"rpc": [
"https://json-rpc.evm.testnet.shimmer.network"
],
"faucets": [
"https://evm-toolkit.evm.testnet.shimmer.network",
"https://evm-faucet.testnet.shimmer.network"
],
"nativeCurrency": {
"name": "SMR",
"symbol": "SMR",
"decimals": 6
},
"infoURL": "https://shimmer.network",
"shortName": "shimmerevm-testnet",
"chainId": 1072,
"networkId": 1072,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.evm.testnet.shimmer.network",
"standard": "EIP3091"
}
]
},
{
"name": "Mintara Testnet",
"title": "Mintara Testnet",
"chain": "Mintara",
"icon": "mintara",
"rpc": [
"https://subnets.avax.network/mintara/testnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "MINTARA",
"symbol": "MNTR",
"decimals": 18
},
"infoURL": "https://playthink.co.jp",
"shortName": "mintara-testnet",
"chainId": 1079,
"networkId": 1079,
"explorers": [
{
"name": "explorer",
"url": "https://subnets-test.avax.network/mintara",
"standard": "EIP3091"
}
]
},
{
"name": "Polygon zkEVM",
"title": "Polygon zkEVM",
"chain": "Polygon",
"rpc": [
"https://zkevm-rpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://polygon.technology/polygon-zkevm",
"shortName": "zkevm",
"chainId": 1101,
"networkId": 1101,
"icon": "zkevm",
"explorers": [
{
"name": "blockscout",
"url": "https://zkevm.polygonscan.com",
"icon": "zkevm",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.zkevm-rpc.com"
}
]
}
},
{
"name": "Symplexia Smart Chain",
"chain": "Plexchain",
"rpc": [
"https://plex-rpc.plexfinance.us"
],
"faucets": [],
"nativeCurrency": {
"name": "Plex Native Token",
"symbol": "PLEX",
"decimals": 18
},
"infoURL": "https://plexfinance.us/",
"shortName": "Plexchain",
"chainId": 1149,
"networkId": 1149,
"icon": "plexchain",
"explorers": [
{
"name": "Plexchain Explorer",
"url": "https://explorer.plexfinance.us",
"icon": "plexchain",
"standard": "EIP3091"
}
]
},
{
"name": "Origin Testnet",
"chain": "Origin",
"rpc": [
"https://json-rpc.origin.uptick.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Origin",
"symbol": "UOC",
"decimals": 18
},
"infoURL": "https://www.uptick.network",
"shortName": "auoc",
"chainId": 1170,
"networkId": 1170,
"icon": "origin",
"explorers": [
{
"name": "Origin Explorer",
"url": "https://evm-explorer.origin.uptick.network",
"icon": "origin",
"standard": "none"
}
]
},
{
"name": "ARC Mainnet",
"chain": "ARC",
"icon": "arc",
"rpc": [
"https://rpc-main-1.archiechain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ARC",
"symbol": "ARC",
"decimals": 18
},
"infoURL": "https://archiechain.io/",
"shortName": "ARC",
"chainId": 1243,
"networkId": 1243,
"explorers": [
{
"name": "archiescan",
"url": "https://app.archiescan.io",
"standard": "none"
}
]
},
{
"name": "ARC Testnet",
"chain": "ARC",
"icon": "arc",
"rpc": [
"https://rpc-test-1.archiechain.io"
],
"faucets": [
"https://faucet.archiechain.io"
],
"nativeCurrency": {
"name": "ARC",
"symbol": "ARC",
"decimals": 18
},
"infoURL": "https://archiechain.io/",
"shortName": "TARC",
"chainId": 1244,
"networkId": 1244,
"explorers": [
{
"name": "archiescan",
"url": "https://testnet.archiescan.io",
"standard": "none"
}
]
},
{
"name": "Zafirium Mainnet",
"chain": "ZAFIC",
"icon": "zafirium",
"rpc": [
"https://mainnet.zakumi.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Zakumi Chain Native Token",
"symbol": "ZAFIC",
"decimals": 18
},
"infoURL": "https://www.zakumi.io",
"shortName": "zafic",
"chainId": 1369,
"networkId": 1369,
"explorers": [
{
"name": "zafirium-explorer",
"url": "https://explorer.zakumi.io",
"standard": "none"
}
]
},
{
"name": "Joseon Mainnet",
"chain": "Joseon",
"icon": "joseon",
"rpc": [
"https://rpc.modchain.net/blockchain.joseon.com/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Joseon Mun",
"symbol": "JSM",
"decimals": 18
},
"infoURL": "https://www.joseon.com/",
"shortName": "mun",
"chainId": 1392,
"networkId": 1392,
"explorers": [
{
"name": "BlockExplorer",
"url": "https://www.blockexplorer.com",
"standard": "EIP3091"
}
]
},
{
"name": "Rikeza Network Mainnet",
"title": "Rikeza Network Mainnet",
"chain": "Rikeza",
"icon": "rikeza",
"rpc": [
"https://rpc.rikscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Rikeza",
"symbol": "RIK",
"decimals": 18
},
"infoURL": "https://rikeza.io",
"shortName": "RIK",
"chainId": 1433,
"networkId": 1433,
"explorers": [
{
"name": "Rikeza Blockchain explorer",
"url": "https://rikscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Living Assets Mainnet",
"chain": "LAS",
"icon": "livingassets",
"rpc": [
"https://beta.mainnet.livingassets.io/rpc",
"https://gamma.mainnet.livingassets.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "LAS",
"symbol": "LAS",
"decimals": 18
},
"infoURL": "https://dev.livingassets.io/",
"shortName": "LAS",
"chainId": 1440,
"networkId": 1440
},
{
"name": "Polygon zkEVM Testnet",
"title": "Polygon zkEVM Testnet",
"chain": "Polygon",
"rpc": [
"https://rpc.public.zkevm-test.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://polygon.technology/solutions/polygon-zkevm/",
"shortName": "testnet-zkEVM-mango",
"chainId": 1442,
"networkId": 1442,
"explorers": [
{
"name": "Polygon zkEVM explorer",
"url": "https://explorer.public.zkevm-test.net",
"standard": "EIP3091"
}
]
},
{
"name": "GIL Testnet",
"chain": "GIL",
"icon": "gauss",
"rpc": [
"https://rpc.giltestnet.com"
],
"faucets": [],
"nativeCurrency": {
"name": "GANG",
"symbol": "GANG",
"decimals": 18
},
"infoURL": "https://gaussgang.com/",
"shortName": "gil",
"chainId": 1452,
"networkId": 1452,
"explorers": [
{
"name": "GIL Explorer",
"url": "https://explorer.giltestnet.com",
"standard": "EIP3091"
}
]
},
{
"name": "BEVM",
"chain": "ChainX",
"rpc": [
"https://mainnet.chainx.org/rpc",
"https://mainnet2.chainx.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://chainx.org",
"shortName": "chainx",
"chainId": 1501,
"networkId": 1501,
"explorers": [
{
"name": "bevm scan",
"url": "https://evm.chainx.org",
"standard": "none"
}
]
},
{
"name": "Tenet",
"title": "Tenet Mainnet",
"chain": "TENET",
"icon": "tenet",
"rpc": [
"https://rpc.tenet.org"
],
"faucets": [],
"nativeCurrency": {
"name": "TENET",
"symbol": "TENET",
"decimals": 18
},
"infoURL": "https://tenet.org/",
"shortName": "tenet",
"chainId": 1559,
"networkId": 1559,
"explorers": [
{
"name": "TenetScan Mainnet",
"url": "https://tenetscan.io",
"icon": "tenet",
"standard": "EIP3091"
}
]
},
{
"name": "Horizen Gobi Testnet",
"shortName": "Gobi",
"chain": "Gobi",
"icon": "eon",
"rpc": [
"https://gobi-testnet.horizenlabs.io/ethv1",
"https://rpc.ankr.com/horizen_testnet_evm"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.horizen.io"
],
"nativeCurrency": {
"name": "Testnet Zen",
"symbol": "tZEN",
"decimals": 18
},
"infoURL": "https://horizen.io/",
"chainId": 1663,
"networkId": 1663,
"slip44": 121,
"explorers": [
{
"name": "Gobi Testnet Block Explorer",
"url": "https://gobi-explorer.horizen.io",
"icon": "eon",
"standard": "EIP3091"
}
]
},
{
"name": "Palette Chain Mainnet",
"chain": "PLT",
"rpc": [
"https://palette-rpc.com:22000"
],
"faucets": [],
"nativeCurrency": {
"name": "Palette Token",
"symbol": "PLT",
"decimals": 18
},
"features": [],
"infoURL": "https://hashpalette.com/",
"shortName": "PCM",
"chainId": 1718,
"networkId": 1718,
"icon": "PLT",
"explorers": [
{
"name": "Palettescan",
"url": "https://palettescan.com",
"icon": "PLT",
"standard": "none"
}
]
},
{
"name": "PartyChain",
"chain": "mainnet",
"rpc": [
"https://tea.mining4people.com/rpc",
"http://172.104.194.36:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Grams",
"symbol": "GRAMS",
"decimals": 18
},
"infoURL": "TeaPartyCrypto.com",
"shortName": "TeaParty",
"chainId": 1773,
"networkId": 1773,
"icon": "grams",
"status": "incubating",
"explorers": [
{
"name": "PartyExplorer",
"url": "https://partyexplorer.co",
"icon": "grams",
"standard": "EIP3091"
}
]
},
{
"name": "Gauss Mainnet",
"chain": "Gauss",
"icon": "gauss",
"rpc": [
"https://rpc.gaussgang.com"
],
"faucets": [],
"nativeCurrency": {
"name": "GANG",
"symbol": "GANG",
"decimals": 18
},
"infoURL": "https://gaussgang.com/",
"shortName": "gauss",
"chainId": 1777,
"networkId": 1777,
"explorers": [
{
"name": "Gauss Explorer",
"url": "https://explorer.gaussgang.com",
"standard": "EIP3091"
}
]
},
{
"name": "Lightlink Phoenix Mainnet",
"chain": "Lightlink Phoenix Mainnet",
"icon": "lightlink",
"rpc": [
"https://endpoints.omniatech.io/v1/lightlink/phoenix/public",
"https://replicator-01.phoenix.lightlink.io/rpc/v1",
"https://replicator-02.phoenix.lightlink.io/rpc/v1",
"https://replicator.phoenix.lightlink.io/rpc/v1"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://lightlink.io",
"shortName": "lightlink_phoenix",
"chainId": 1890,
"networkId": 1890,
"explorers": [
{
"name": "phoenix",
"url": "https://phoenix.lightlink.io",
"icon": "lightlink",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1714378866804.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1714378840768.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1714378852669.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0xFFFFFF",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1714379070381.png"
}
},
{
"name": "Lightlink Pegasus Testnet",
"chain": "Lightlink Pegasus Testnet",
"icon": "lightlink",
"rpc": [
"https://replicator-01.pegasus.lightlink.io/rpc/v1",
"https://replicator-02.pegasus.lightlink.io/rpc/v1"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [
"https://pegasus-faucet-react.vercel.app"
],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://lightlink.io",
"shortName": "lightlink_pegasus",
"chainId": 1891,
"networkId": 1891,
"explorers": [
{
"name": "pegasus",
"url": "https://pegasus.lightlink.io",
"icon": "lightlink",
"standard": "EIP3091"
}
]
},
{
"name": "Dexilla Testnet",
"chain": "Dexilla",
"rpc": [
"https://rpc.dexilla.com"
],
"faucets": [],
"icon": "dxz",
"nativeCurrency": {
"name": "Dexilla Native Token",
"symbol": "DXZ",
"decimals": 18
},
"infoURL": "https://dexilla.com",
"shortName": "Dexilla",
"chainId": 1954,
"networkId": 1954,
"explorers": [
{
"name": "dos-mainnet",
"url": "https://exp.dexilla.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.dexilla.com"
}
]
}
},
{
"name": "Eleanor",
"title": "Metatime Testnet Eleanor",
"chain": "MTC",
"rpc": [
"https://rpc.metatime.com/eleanor",
"wss://ws.metatime.com/eleanor"
],
"faucets": [
"https://faucet.metatime.com/eleanor"
],
"nativeCurrency": {
"name": "Eleanor Metacoin",
"symbol": "MTC",
"decimals": 18
},
"infoURL": "https://eleanor.metatime.com",
"shortName": "mtc",
"chainId": 1967,
"networkId": 1967,
"explorers": [
{
"name": "metaexplorer-eleanor",
"url": "https://explorer.metatime.com/eleanor",
"standard": "EIP3091"
}
]
},
{
"name": "Super Smart Chain Testnet",
"chain": "TSCS",
"rpc": [
"https://testnetrpc.scschain.com"
],
"faucets": [
"https://testnet.scschain.com"
],
"nativeCurrency": {
"name": "Super Chain Native Token",
"symbol": "TSCS",
"decimals": 18
},
"infoURL": "https://testnet.scschain.com",
"shortName": "tscs",
"chainId": 1969,
"networkId": 1969,
"icon": "super",
"explorers": [
{
"name": "blockscout",
"url": "https://testnetscan.scschain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Super Smart Chain Mainnet",
"chain": "SCS",
"rpc": [
"https://rpc.scschain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Super Chain Native Token",
"symbol": "SCS",
"decimals": 18
},
"infoURL": "https://scschain.com",
"shortName": "scs",
"chainId": 1970,
"networkId": 1970,
"icon": "super",
"explorers": [
{
"name": "blockscout",
"url": "https://scan.scschain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Shrapnel Subnet",
"chain": "shrapnel",
"rpc": [
"https://subnets.avax.network/shrapnel/mainnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Shrapnel Gas Token",
"symbol": "SHRAPG",
"decimals": 18
},
"infoURL": "https://www.shrapnel.com/",
"shortName": "Shrapnel",
"chainId": 2044,
"networkId": 2044
},
{
"name": "Metaplayerone Dubai Testnet",
"chain": "MP1 Dubai-Testnet",
"rpc": [
"https://rpc-dubai.mp1network.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Metaunit",
"symbol": "MEU",
"decimals": 18
},
"infoURL": "https://docs.metaplayer.one/",
"shortName": "MEU",
"chainId": 2124,
"networkId": 2124,
"explorers": [
{
"name": "MP1Scan",
"url": "https://dubai.mp1scan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Defi Oracle Meta Testnet",
"chain": "dfiometatest",
"icon": "defioraclemeta",
"rpc": [
"https://rpc.public-2138.defi-oracle.io",
"wss://rpc.public-2138.defi-oracle.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "testEther",
"symbol": "tETH",
"decimals": 18
},
"infoURL": "https://defi-oracle.io/",
"shortName": "dfio-meta-test",
"chainId": 2138,
"networkId": 21,
"slip44": 60,
"ens": {
"registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85"
},
"explorers": [
{
"name": "Quorum Explorer",
"url": "https://public-2138.defi-oracle.io",
"standard": "none"
}
]
},
{
"name": "Moonsama Network",
"chain": "MSN",
"rpc": [
"https://rpc.moonsama.com",
"wss://rpc.moonsama.com/ws"
],
"faucets": [
"https://multiverse.moonsama.com/faucet"
],
"nativeCurrency": {
"name": "Sama Token",
"symbol": "SAMA",
"decimals": 18
},
"infoURL": "https://moonsama.com",
"shortName": "msn",
"chainId": 2199,
"networkId": 2199,
"slip44": 2199,
"icon": "msn",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.moonsama.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Antofy Mainnet",
"chain": "ABN",
"icon": "antofy",
"rpc": [
"https://rpc.antofy.io"
],
"faucets": [
"https://faucet.antofy.io"
],
"nativeCurrency": {
"name": "Antofy",
"symbol": "ABN",
"decimals": 18
},
"infoURL": "https://antofy.io",
"shortName": "ABNm",
"chainId": 2202,
"networkId": 2202,
"explorers": [
{
"name": "Antofy Mainnet",
"url": "https://antofyscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "SOMA Network Testnet",
"chain": "SOMA",
"rpc": [
"https://data-testnet-v1.somanetwork.io/"
],
"faucets": [
"https://faucet.somanetwork.io"
],
"nativeCurrency": {
"name": "SMA",
"symbol": "tSMA",
"decimals": 18
},
"infoURL": "https://somanetwork.io",
"shortName": "sma",
"chainId": 2323,
"networkId": 2323,
"icon": "soma",
"explorers": [
{
"name": "SOMA Testnet Explorer",
"icon": "soma",
"url": "https://testnet.somascan.io",
"standard": "none"
}
]
},
{
"name": "SOMA Network Mainnet",
"chain": "SOMA",
"rpc": [
"https://data-mainnet-v1.somanetwork.io/"
],
"faucets": [
"https://airdrop.somanetwork.io"
],
"nativeCurrency": {
"name": "Soma Native Token",
"symbol": "SMA",
"decimals": 18
},
"infoURL": "https://somanetwork.io",
"shortName": "smam",
"chainId": 2332,
"networkId": 2332,
"icon": "soma",
"status": "incubating",
"explorers": [
{
"name": "SOMA Explorer Mainnet",
"icon": "soma",
"url": "https://somascan.io",
"standard": "none"
}
]
},
{
"name": "(deprecated) Kroma Sepolia",
"title": "(deprecated) Kroma Testnet Sepolia",
"chainId": 2357,
"shortName": "deprecated-kroma-sepolia",
"chain": "ETH",
"networkId": 2357,
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://api.sepolia-deprecated.kroma.network"
],
"faucets": [],
"infoURL": "https://kroma.network",
"icon": "kroma",
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.sepolia-deprecated.kroma.network",
"icon": "kroma",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://kroma.network/bridge"
}
]
},
"status": "deprecated"
},
{
"name": "Kroma Sepolia",
"title": "Kroma Testnet Sepolia",
"chainId": 2358,
"shortName": "kroma-sepolia",
"chain": "ETH",
"networkId": 2358,
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://api.sepolia.kroma.network"
],
"faucets": [],
"infoURL": "https://kroma.network",
"icon": "kroma",
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.sepolia.kroma.network",
"icon": "kroma",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://kroma.network/bridge"
}
]
}
},
{
"name": "WhiteBIT Network Testnet",
"chain": "WBT",
"rpc": [
"https://rpc-testnet.whitebit.network"
],
"faucets": [
"https://explorer.whitebit.network/testnet/faucet"
],
"nativeCurrency": {
"name": "WhiteBIT Coin",
"symbol": "WBT",
"decimals": 18
},
"infoURL": "https://whitebit.com/wbt",
"shortName": "twbt",
"chainId": 2625,
"networkId": 2625,
"icon": "whitebit-testnet",
"explorers": [
{
"name": "wb-explorer-testnet",
"url": "https://explorer.whitebit.network/testnet",
"standard": "EIP3091"
}
]
},
{
"name": "Canxium Mainnet",
"chain": "CAU",
"rpc": [
"https://rpc.canxium.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Canxium",
"symbol": "CAU",
"decimals": 18
},
"infoURL": "https://canxium.org",
"shortName": "cau",
"chainId": 3003,
"networkId": 3003,
"explorers": [
{
"name": "canxium explorer",
"url": "https://explorer.canxium.org",
"standard": "none"
}
]
},
{
"name": "PLAYA3ULL GAMES",
"chain": "3ULL",
"rpc": [
"https://api.mainnet.playa3ull.games"
],
"faucets": [],
"nativeCurrency": {
"name": "3ULL",
"symbol": "3ULL",
"decimals": 18
},
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://playa3ull.games",
"shortName": "3ULL",
"chainId": 3011,
"networkId": 3011,
"icon": "playa3ull",
"explorers": [
{
"name": "PLAYA3ULL GAMES Explorer",
"url": "https://3011.routescan.io",
"icon": "playa3ull",
"standard": "EIP3091"
}
]
},
{
"name": "SecureChain Testnet",
"chain": "SCAI",
"icon": "scaiIcon",
"rpc": [
"https://testnet-rpc.securechain.ai"
],
"faucets": [
"https://faucet.securechain.ai"
],
"nativeCurrency": {
"name": "SCAI",
"symbol": "SCAI",
"decimals": 18
},
"infoURL": "https://securechain.ai",
"shortName": "SCAIt",
"chainId": 3434,
"networkId": 3434,
"explorers": [
{
"name": "SecureChain",
"url": "https://testnet.securechain.ai",
"standard": "EIP3091"
}
]
},
{
"name": "Botanix Testnet",
"chain": "BTC",
"icon": "botanix",
"rpc": [
"https://testnet-rpc.btxtestchain.com"
],
"faucets": [
"https://faucet.btxtestchain.com"
],
"nativeCurrency": {
"name": "Botanix",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://btxtestchain.com",
"shortName": "BTCt",
"chainId": 3636,
"networkId": 3636,
"explorers": [
{
"name": "Botanix",
"url": "https://testnet.btxtestchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Botanix Mainnet",
"chain": "BTC",
"icon": "botanix",
"rpc": [
"https://rpc.btxtestchain.com"
],
"faucets": [
"https://faucet.btxtestchain.com"
],
"nativeCurrency": {
"name": "Botanix",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://btxtestchain.com",
"shortName": "BTCm",
"chainId": 3637,
"networkId": 3637,
"explorers": [
{
"name": "Botanix",
"url": "https://btxtestchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "SenjePowers Testnet",
"chain": "SPC",
"icon": "SenjePowers",
"rpc": [
"https://testnet-rpc.senjepowersscan.com"
],
"faucets": [
"https://faucet.senjepowersscan.com"
],
"nativeCurrency": {
"name": "SenjePowers",
"symbol": "SPC",
"decimals": 18
},
"infoURL": "https://senjepowersscan.com",
"shortName": "SPCt",
"chainId": 3698,
"networkId": 3698,
"explorers": [
{
"name": "SenjePowers",
"url": "https://testnet.senjepowersscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "SenjePowers Mainnet",
"chain": "SPC",
"icon": "SenjePowers",
"rpc": [
"https://rpc.senjepowersscan.com"
],
"faucets": [
"https://faucet.senjepowersscan.com"
],
"nativeCurrency": {
"name": "SenjePowers",
"symbol": "SPC",
"decimals": 18
},
"infoURL": "https://senjepowersscan.com",
"shortName": "SPCm",
"chainId": 3699,
"networkId": 3699,
"explorers": [
{
"name": "SenjePowers",
"url": "https://senjepowersscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "DOS Tesnet",
"chain": "DOS",
"rpc": [
"https://test.doschain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "DOS",
"symbol": "DOS",
"decimals": 18
},
"infoURL": "http://doschain.io/",
"shortName": "dost",
"chainId": 3939,
"networkId": 3939,
"icon": "doschain",
"explorers": [
{
"name": "DOScan-Test",
"url": "https://test.doscan.io",
"icon": "doschain",
"standard": "EIP3091"
}
]
},
{
"name": "Ozone Chain Mainnet",
"chain": "OZONE",
"rpc": [
"https://node1.ozonechain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "OZONE",
"symbol": "OZO",
"decimals": 18
},
"infoURL": "https://ozonechain.io",
"shortName": "ozo",
"chainId": 4000,
"networkId": 4000,
"icon": "ozonechain",
"explorers": [
{
"name": "OZONE Scan",
"url": "https://ozonescan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Peperium Chain Testnet",
"chain": "PERIUM",
"rpc": [
"https://rpc-testnet.peperium.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Peperium Chain Testnet",
"symbol": "PERIUM",
"decimals": 18
},
"infoURL": "https://peperium.io",
"shortName": "PERIUM",
"chainId": 4001,
"networkId": 4001,
"icon": "peperium",
"explorers": [
{
"name": "Peperium Chain Explorer",
"url": "https://scan-testnet.peperium.io",
"icon": "peperium",
"standard": "EIP3091"
}
]
},
{
"name": "Nahmii 3 Mainnet",
"chain": "Nahmii",
"rpc": [],
"status": "incubating",
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://nahmii.io",
"shortName": "Nahmii3Mainnet",
"chainId": 4061,
"networkId": 4061,
"icon": "nahmii",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.nahmii.io"
}
]
}
},
{
"name": "Nahmii 3 Testnet",
"chain": "Nahmii",
"rpc": [
"https://ngeth.testnet.n3.nahmii.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Goerli Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://nahmii.io",
"shortName": "Nahmii3Testnet",
"chainId": 4062,
"networkId": 4062,
"icon": "nahmii",
"explorers": [
{
"name": "Nahmii 3 Testnet Explorer",
"url": "https://explorer.testnet.n3.nahmii.io",
"icon": "nahmii",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-3",
"bridges": [
{
"url": "https://bridge.testnet.n3.nahmii.io"
}
]
}
},
{
"name": "Fastex Chain (Bahamut) Oasis Testnet",
"title": "Bahamut testnet Oasis",
"icon": "bahamut",
"chain": "Fastex Chain (Bahamut)",
"rpc": [
"https://rpc1.oasis.bahamutchain.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.oasis.fastexchain.com"
],
"nativeCurrency": {
"name": "FTN",
"symbol": "FTN",
"decimals": 18
},
"infoURL": "https://fastexchain.com",
"shortName": "Oasis",
"chainId": 4090,
"networkId": 4090,
"explorers": [
{
"name": "blockscout",
"url": "https://oasis.ftnscan.com",
"standard": "none"
}
]
},
{
"name": "Tipboxcoin Testnet",
"chain": "TPBX",
"icon": "tipboxcoinIcon",
"rpc": [
"https://testnet-rpc.tipboxcoin.net"
],
"faucets": [
"https://faucet.tipboxcoin.net"
],
"nativeCurrency": {
"name": "Tipboxcoin",
"symbol": "TPBX",
"decimals": 18
},
"infoURL": "https://tipboxcoin.net",
"shortName": "TPBXt",
"chainId": 4141,
"networkId": 4141,
"explorers": [
{
"name": "Tipboxcoin",
"url": "https://testnet.tipboxcoin.net",
"standard": "EIP3091"
}
]
},
{
"name": "LUKSO Testnet",
"chain": "LUKSO Testnet",
"icon": "lukso",
"rpc": [
"https://rpc.testnet.lukso.network",
"wss://ws-rpc.testnet.lukso.network"
],
"faucets": [
"https://faucet.testnet.lukso.network"
],
"nativeCurrency": {
"name": "TestLYX",
"symbol": "LYXt",
"decimals": 18
},
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.execution.testnet.lukso.network",
"standard": "none"
}
],
"infoURL": "https://lukso.network",
"shortName": "lukso-testnet",
"chainId": 4201,
"networkId": 4201,
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
]
},
{
"name": "Nexi Mainnet",
"chain": "Nexi",
"icon": "nexi",
"rpc": [
"https://rpc.chain.nexi.technology/",
"https://chain.nexilix.com",
"https://chain.nexi.evmnode.online"
],
"faucets": [],
"nativeCurrency": {
"name": "Nexi",
"symbol": "NEXI",
"decimals": 18
},
"infoURL": "https://www.nexi.technology/",
"shortName": "nexi",
"chainId": 4242,
"networkId": 4242,
"slip44": 2500,
"explorers": [
{
"name": "nexiscan",
"url": "https://www.nexiscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "MEVerse Chain Testnet",
"chain": "MEVerse",
"rpc": [
"https://rpc.meversetestnet.io"
],
"faucets": [],
"nativeCurrency": {
"name": "MEVerse",
"symbol": "MEV",
"decimals": 18
},
"infoURL": "https://www.meverse.sg",
"shortName": "TESTMEV",
"chainId": 4759,
"networkId": 4759,
"icon": "meverse",
"explorers": [
{
"name": "MEVerse Chain Testnet Explorer",
"url": "https://testnet.meversescan.io",
"standard": "none",
"icon": "meverse"
}
]
},
{
"name": "Fastex Chain (Bahamut)",
"title": "Bahamut mainnet Sahara",
"chain": "Fastex Chain (Bahamut)",
"icon": "bahamut",
"rpc": [
"https://rpc1.sahara.bahamutchain.com",
"https://rpc2.sahara.bahamutchain.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "FTN",
"symbol": "FTN",
"decimals": 18
},
"shortName": "ftn",
"infoURL": "https://fastexchain.com",
"chainId": 5165,
"networkId": 5165,
"explorers": [
{
"name": "blockscout",
"url": "https://ftnscan.com",
"standard": "none"
}
]
},
{
"name": "SatoshiChain Testnet",
"chain": "SATS",
"icon": "satoshichain",
"rpc": [
"https://testnet-rpc.satoshichain.io"
],
"faucets": [
"https://faucet.satoshichain.io"
],
"nativeCurrency": {
"name": "SatoshiChain Coin",
"symbol": "SATS",
"decimals": 18
},
"infoURL": "https://satoshichain.net",
"shortName": "satst",
"chainId": 5758,
"networkId": 5758,
"explorers": [
{
"name": "SatoshiChain Testnet Explorer",
"url": "https://testnet.satoshiscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Cascadia Testnet",
"chain": "Cascadia",
"rpc": [
"https://testnet.cascadia.foundation"
],
"faucets": [
"https://www.cascadia.foundation/faucet"
],
"nativeCurrency": {
"name": "CC",
"symbol": "tCC",
"decimals": 18
},
"infoURL": "https://www.cascadia.foundation",
"shortName": "cascadia",
"chainId": 6102,
"networkId": 6102,
"icon": "cascadia",
"explorers": [
{
"name": "Cascadia EVM Explorer",
"url": "https://explorer.cascadia.foundation",
"standard": "none",
"icon": "cascadia"
},
{
"name": "Cascadia Cosmos Explorer",
"url": "https://validator.cascadia.foundation",
"standard": "none",
"icon": "cascadia"
}
]
},
{
"name": "UPTN Testnet",
"chain": "UPTN",
"icon": "uptn",
"rpc": [
"https://node-api.alp.uptn.io/v1/ext/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "UPTN",
"symbol": "UPTN",
"decimals": 18
},
"infoURL": "https://uptn.io",
"shortName": "UPTN-TEST",
"chainId": 6118,
"networkId": 6118,
"explorers": [
{
"name": "UPTN Testnet Explorer",
"url": "https://testnet.explorer.uptn.io",
"standard": "EIP3091"
}
]
},
{
"name": "UPTN",
"chain": "UPTN",
"icon": "uptn",
"rpc": [
"https://node-api.uptn.io/v1/ext/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "UPTN",
"symbol": "UPTN",
"decimals": 18
},
"infoURL": "https://uptn.io",
"shortName": "UPTN",
"chainId": 6119,
"networkId": 6119,
"explorers": [
{
"name": "UPTN Explorer",
"url": "https://explorer.uptn.io",
"standard": "EIP3091"
}
]
},
{
"name": "Peerpay",
"chain": "P2P",
"rpc": [
"https://peerpay.su.gy/p2p"
],
"faucets": [],
"nativeCurrency": {
"name": "Peerpay",
"symbol": "P2P",
"decimals": 18
},
"infoURL": "https://peerpay.su.gy",
"shortName": "Peerpay",
"chainId": 6502,
"networkId": 6502,
"explorers": []
},
{
"name": "Scolcoin WeiChain Testnet",
"chain": "SCOLWEI-testnet",
"rpc": [
"https://testnet-rpc.scolcoin.com"
],
"faucets": [
"https://faucet.scolcoin.com"
],
"nativeCurrency": {
"name": "Scolcoin",
"symbol": "SCOL",
"decimals": 18
},
"infoURL": "https://scolcoin.com",
"shortName": "SRC-test",
"chainId": 6552,
"networkId": 6552,
"icon": "scolcoin",
"explorers": [
{
"name": "Scolscan Testnet Explorer",
"url": "https://testnet-explorer.scolcoin.com",
"standard": "EIP3091"
}
]
},
{
"name": "Fox Testnet Network",
"chain": "FOX",
"rpc": [
"https://rpc-testnet-v1.foxchain.app/",
"https://rpc2-testnet-v1.foxchain.app/",
"https://rpc3-testnet-v1.foxchain.app"
],
"faucets": [
"https://faucet.foxchain.app"
],
"nativeCurrency": {
"name": "FOX Native Token",
"symbol": "tFOX",
"decimals": 18
},
"infoURL": "https://foxchain.app",
"shortName": "fox",
"chainId": 6565,
"networkId": 6565,
"icon": "fox",
"explorers": [
{
"name": "FOX Testnet Explorer",
"icon": "fox",
"url": "https://testnet.foxscan.app",
"standard": "none"
}
]
},
{
"name": "IRIShub",
"chain": "IRIShub",
"rpc": [
"https://evmrpc.irishub-1.irisnet.org"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Eris",
"symbol": "ERIS",
"decimals": 18
},
"infoURL": "https://www.irisnet.org",
"shortName": "iris",
"chainId": 6688,
"networkId": 6688,
"icon": "irishub",
"explorers": [
{
"name": "IRISHub Cosmos Explorer (IOBScan)",
"url": "https://irishub.iobscan.io",
"standard": "none",
"icon": "irishub"
}
]
},
{
"name": "Bitrock Mainnet",
"chain": "Bitrock",
"icon": "bitrock",
"rpc": [
"https://connect.bit-rock.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BITROCK",
"symbol": "BROCK",
"decimals": 18
},
"infoURL": "https://bit-rock.io",
"shortName": "bitrock",
"chainId": 7171,
"networkId": 7171,
"explorers": [
{
"name": "Bitrock Explorer",
"url": "https://scan.bit-rock.io",
"standard": "EIP3091"
}
]
},
{
"name": "KLYNTAR",
"chain": "KLY",
"rpc": [
"https://evm.klyntar.org/kly_evm_rpc",
"https://evm.klyntarscan.org/kly_evm_rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "KLYNTAR",
"symbol": "KLY",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://klyntar.org",
"shortName": "kly",
"chainId": 7331,
"networkId": 7331,
"icon": "klyntar",
"explorers": [],
"status": "incubating"
},
{
"name": "Raba Network Mainnet",
"chain": "Raba",
"icon": "raba",
"rpc": [
"https://rpc.x.raba.app/",
"wss://rpc.x.raba.app/ws/"
],
"faucets": [],
"nativeCurrency": {
"name": "Raba",
"symbol": "RABA",
"decimals": 18
},
"infoURL": "https://x.raba.app/",
"shortName": "raba",
"chainId": 7484,
"networkId": 7484,
"explorers": [
{
"name": "raba",
"url": "https://x.raba.app/explorer",
"standard": "none"
}
]
},
{
"name": "MEVerse Chain Mainnet",
"chain": "MEVerse",
"rpc": [
"https://rpc.meversemainnet.io"
],
"faucets": [],
"nativeCurrency": {
"name": "MEVerse",
"symbol": "MEV",
"decimals": 18
},
"infoURL": "https://www.meverse.sg",
"shortName": "MEV",
"chainId": 7518,
"networkId": 7518,
"icon": "meverse",
"explorers": [
{
"name": "MEVerse Chain Explorer",
"url": "https://www.meversescan.io",
"standard": "none",
"icon": "meverse"
}
]
},
{
"name": "ADIL Testnet",
"chain": "ADIL",
"icon": "adil",
"rpc": [
"https://testnet.adilchain-rpc.io"
],
"faucets": [
"https://testnet-faucet.adil-scan.io"
],
"nativeCurrency": {
"name": "Testnet ADIL",
"symbol": "ADIL",
"decimals": 18
},
"infoURL": "https://adilchain.io",
"shortName": "tadil",
"chainId": 7575,
"networkId": 7575,
"explorers": [
{
"name": "ADIL Testnet Explorer",
"url": "https://testnet.adilchain-scan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Adil Chain V2 Mainnet",
"chain": "ADIL",
"icon": "adil",
"rpc": [
"https://adilchain-rpc.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ADIL",
"symbol": "ADIL",
"decimals": 18
},
"infoURL": "https://adilchain.io",
"shortName": "adil",
"chainId": 7576,
"networkId": 7576,
"explorers": [
{
"name": "ADIL Mainnet Explorer",
"url": "https://adilchain-scan.io",
"standard": "EIP3091"
}
]
},
{
"name": "The Root Network - Mainnet",
"chain": "TRN",
"rpc": [
"https://root.rootnet.live/archive",
"wss://root.rootnet.live/archive/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "XRP",
"symbol": "XRP",
"decimals": 6
},
"infoURL": "https://www.futureverse.com/technology/root",
"shortName": "trn-mainnet",
"chainId": 7668,
"networkId": 7668,
"explorers": [
{
"name": "rootnet",
"url": "https://explorer.rootnet.live",
"standard": "EIP3091"
}
]
},
{
"name": "The Root Network - Porcini Testnet",
"chain": "TRN",
"rpc": [
"https://porcini.rootnet.app/archive",
"wss://porcini.rootnet.app/archive/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "XRP",
"symbol": "XRP",
"decimals": 6
},
"infoURL": "https://www.futureverse.com/technology/root",
"shortName": "trn-porcini",
"chainId": 7672,
"networkId": 7672,
"explorers": [
{
"name": "rootnet",
"url": "https://explorer.rootnet.cloud",
"standard": "EIP3091"
}
]
},
{
"name": "Canto Tesnet",
"chain": "Canto",
"rpc": [
"https://testnet-archive.plexnode.wtf"
],
"faucets": [],
"nativeCurrency": {
"name": "Testnet Canto",
"symbol": "CANTO",
"decimals": 18
},
"infoURL": "https://canto.io",
"shortName": "TestnetCanto",
"chainId": 7701,
"networkId": 7701,
"explorers": [
{
"name": "Canto Testnet EVM Explorer (Blockscout)",
"url": "https://testnet.tuber.build",
"standard": "none"
}
]
},
{
"name": "Bitrock Testnet",
"chain": "Bitrock",
"icon": "bitrock",
"rpc": [
"https://testnet.bit-rock.io"
],
"faucets": [
"https://faucet.bit-rock.io"
],
"nativeCurrency": {
"name": "BITROCK",
"symbol": "BROCK",
"decimals": 18
},
"infoURL": "https://bit-rock.io",
"shortName": "tbitrock",
"chainId": 7771,
"networkId": 7771,
"explorers": [
{
"name": "Bitrock Testnet Explorer",
"url": "https://testnetscan.bit-rock.io",
"standard": "EIP3091"
}
]
},
{
"name": "ARDENIUM Athena",
"chain": "ATHENA",
"rpc": [
"https://rpc-athena.ardescan.com/"
],
"faucets": [
"https://faucet-athena.ardescan.com/"
],
"nativeCurrency": {
"name": "ARD",
"symbol": "tARD",
"decimals": 18
},
"infoURL": "https://ardenium.org",
"shortName": "ard",
"chainId": 7895,
"networkId": 7895,
"icon": "ard",
"explorers": [
{
"name": "ARDENIUM Athena Explorer",
"icon": "ard",
"url": "https://testnet.ardscan.com",
"standard": "none"
}
]
},
{
"name": "DOS Chain",
"chain": "DOS",
"rpc": [
"https://main.doschain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "DOS",
"symbol": "DOS",
"decimals": 18
},
"infoURL": "https://doschain.io",
"shortName": "dos",
"chainId": 7979,
"networkId": 7979,
"icon": "doschain",
"explorers": [
{
"name": "DOScan",
"url": "https://doscan.io",
"icon": "doschain",
"standard": "EIP3091"
}
]
},
{
"name": "BitEth",
"chain": "BTE",
"rpc": [
"https://rpc.biteth.org"
],
"faucets": [],
"nativeCurrency": {
"name": "BitEth",
"symbol": "BTE",
"decimals": 18
},
"infoURL": "https://biteth.org",
"shortName": "BitEth",
"chainId": 8086,
"networkId": 8086,
"explorers": []
},
{
"name": "Qitmeer Network Mixnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Qitmeer Mixnet",
"symbol": "MEER-M",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "meermix",
"icon": "meer",
"chainId": 8132,
"networkId": 8132,
"status": "incubating"
},
{
"name": "Qitmeer Network Privnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Qitmeer Privnet",
"symbol": "MEER-P",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "meerpriv",
"icon": "meer",
"chainId": 8133,
"networkId": 8133,
"status": "incubating"
},
{
"name": "Amana",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Amana Mainnet",
"symbol": "MEER",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "amana",
"icon": "meer",
"chainId": 8134,
"networkId": 8134,
"status": "incubating"
},
{
"name": "Flana",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Flana Mainnet",
"symbol": "MEER",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "flana",
"icon": "meer",
"chainId": 8135,
"networkId": 8135,
"status": "incubating"
},
{
"name": "Mizana",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Mizana Mainnet",
"symbol": "MEER",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "mizana",
"icon": "meer",
"chainId": 8136,
"networkId": 8136,
"status": "incubating"
},
{
"name": "Dracones Financial Services",
"title": "The Dracones Mainnet",
"chain": "FUCK",
"rpc": [
"https://api.dracones.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "Functionally Universal Coin Kind",
"symbol": "FUCK",
"decimals": 18
},
"infoURL": "https://wolfery.com",
"shortName": "fuck",
"chainId": 8387,
"networkId": 8387,
"icon": "dracones",
"explorers": []
},
{
"name": "Neonlink Testnet",
"chain": "Neonlink",
"rpc": [
"https://testnet.neonlink.io"
],
"faucets": [
"https://faucet.neonlink.io/"
],
"nativeCurrency": {
"name": "Neonlink Native Token",
"symbol": "tNEON",
"decimals": 18
},
"infoURL": "https://neonlink.io",
"shortName": "testneon",
"chainId": 9559,
"networkId": 9559,
"icon": "neonlink",
"explorers": [
{
"name": "Neon Blockchain Explorer",
"url": "https://testnet-scan.neonlink.io",
"standard": "EIP3091",
"icon": "neonlink"
}
]
},
{
"name": "PepeNetwork Mainnet",
"chain": "PepeNetwork",
"rpc": [
"https://rpc-mainnet.pepenetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Pepe",
"symbol": "WPEPE",
"decimals": 18
},
"infoURL": "https://pepenetwork.io",
"shortName": "pn",
"chainId": 9779,
"networkId": 9779,
"icon": "pepenetwork",
"explorers": [
{
"name": "Pepe Explorer",
"url": "https://explorer.pepenetwork.io",
"icon": "pepenetwork",
"standard": "none"
}
]
},
{
"name": "Carbon EVM",
"chain": "Carbon",
"icon": "carbon",
"rpc": [
"https://evm-api.carbon.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "swth",
"symbol": "SWTH",
"decimals": 18
},
"infoURL": "https://carbon.network/",
"shortName": "carbon",
"chainId": 9790,
"networkId": 9790,
"explorers": []
},
{
"name": "Carbon EVM Testnet",
"chain": "Carbon",
"icon": "carbon",
"rpc": [
"https://test-evm-api.carbon.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "swth",
"symbol": "SWTH",
"decimals": 18
},
"infoURL": "https://carbon.network/",
"shortName": "carbon-testnet",
"chainId": 9792,
"networkId": 9792,
"explorers": []
},
{
"name": "AltLayer Testnet",
"chain": "ETH",
"rpc": [
"https://testnet-rollup-api.altlayer.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://altlayer.io",
"shortName": "alt-testnet",
"chainId": 9997,
"networkId": 9997,
"icon": "altlayer",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-rollup-explorer.altlayer.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "HashBit Mainnet",
"chain": "HBIT",
"rpc": [
"https://mainnet-rpc.hashbit.org",
"https://rpc.hashbit.org"
],
"faucets": [
"https://free-online-app.com/faucet-for-eth-evm-chains/"
],
"nativeCurrency": {
"name": "HashBit Native Token",
"symbol": "HBIT",
"decimals": 18
},
"infoURL": "https://hashbit.org",
"shortName": "hbit",
"chainId": 11119,
"networkId": 11119,
"explorers": [
{
"name": "hashbitscan",
"url": "https://explorer.hashbit.org",
"standard": "EIP3091"
}
]
},
{
"name": "SatoshiChain Mainnet",
"chain": "SATS",
"icon": "satoshichain",
"rpc": [
"https://mainnet-rpc.satoshichain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SatoshiChain Coin",
"symbol": "SATS",
"decimals": 18
},
"infoURL": "https://satoshichain.net",
"shortName": "sats",
"chainId": 12009,
"networkId": 12009,
"explorers": [
{
"name": "SatoshiChain Explorer",
"url": "https://satoshiscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "BRC Chain Mainnet",
"chain": "BRC",
"rpc": [
"https://rpc.brcchain.io"
],
"faucets": [
"https://faucet.brcchain.io"
],
"nativeCurrency": {
"name": "BRC Chain mainnet native token",
"symbol": "BRC",
"decimals": 18
},
"infoURL": "https://bridge.brcchain.io",
"shortName": "BRC",
"chainId": 12123,
"networkId": 12123,
"icon": "brcchain",
"explorers": [
{
"name": "BRC Chain Explorer",
"url": "https://scan.brcchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Fibonacci Mainnet",
"chain": "FIBO",
"icon": "fibonacci",
"rpc": [
"https://node1.fibo-api.asia",
"https://node2.fibo-api.asia",
"https://node3.fibo-api.asia",
"https://node4.fibo-api.asia",
"https://node5.fibo-api.asia",
"https://node6.fibo-api.asia",
"https://node7.fibo-api.asia",
"https://node1.fibo-rpc.asia",
"https://node2.fibo-rpc.asia",
"https://node3.fibo-rpc.asia",
"https://node4.fibo-rpc.asia",
"https://node5.fibo-rpc.asia",
"https://node6.fibo-rpc.asia",
"https://node7.fibo-rpc.asia"
],
"faucets": [
"https://test.fibochain.org/faucets"
],
"nativeCurrency": {
"name": "FIBONACCI UTILITY TOKEN",
"symbol": "FIBO",
"decimals": 18
},
"infoURL": "https://fibochain.org",
"shortName": "fibo",
"chainId": 12306,
"networkId": 1230,
"explorers": [
{
"name": "fiboscan",
"url": "https://scan.fibochain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Rikeza Network Testnet",
"title": "Rikeza Network Testnet",
"chain": "Rikeza",
"icon": "rikeza",
"rpc": [
"https://testnet-rpc.rikscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Rikeza",
"symbol": "RIK",
"decimals": 18
},
"infoURL": "https://rikeza.io",
"shortName": "tRIK",
"chainId": 12715,
"networkId": 12715,
"explorers": [
{
"name": "Rikeza Blockchain explorer",
"url": "https://testnet.rikscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "LoopNetwork Mainnet",
"chain": "LoopNetwork",
"rpc": [
"https://api.mainnetloop.com"
],
"faucets": [],
"nativeCurrency": {
"name": "LOOP",
"symbol": "LOOP",
"decimals": 18
},
"infoURL": "http://theloopnetwork.org/",
"shortName": "loop",
"chainId": 15551,
"networkId": 15551,
"explorers": [
{
"name": "loopscan",
"url": "http://explorer.mainnetloop.com",
"standard": "none"
}
]
},
{
"name": "EOS EVM Network Testnet",
"chain": "EOS",
"icon": "eos",
"rpc": [
"https://api.testnet.evm.eosnetwork.com"
],
"faucets": [],
"nativeCurrency": {
"name": "EOS",
"symbol": "EOS",
"decimals": 18
},
"infoURL": "https://eosnetwork.com/eos-evm",
"shortName": "eos-testnet",
"chainId": 15557,
"networkId": 15557,
"explorers": [
{
"name": "EOS EVM Explorer",
"url": "https://explorer.testnet.evm.eosnetwork.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.testnet.evm.eosnetwork.com"
}
]
}
},
{
"name": "Genesys Mainnet",
"chain": "Genesys",
"icon": "genesys",
"rpc": [
"https://rpc.genesys.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Genesys",
"symbol": "GSYS",
"decimals": 18
},
"infoURL": "https://www.genesys.network/",
"shortName": "Genesys",
"chainId": 16507,
"networkId": 16507,
"explorers": [
{
"name": "GchainExplorer",
"url": "https://gchainexplorer.genesys.network",
"standard": "EIP3091"
}
]
},
{
"name": "IRIShub Testnet",
"chain": "IRIShub",
"rpc": [
"https://evmrpc.nyancat.irisnet.org"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Eris",
"symbol": "ERIS",
"decimals": 18
},
"infoURL": "https://www.irisnet.org",
"shortName": "nyancat",
"chainId": 16688,
"networkId": 16688,
"icon": "nyancat",
"explorers": [
{
"name": "IRISHub Testnet Cosmos Explorer (IOBScan)",
"url": "https://nyancat.iobscan.io",
"standard": "none",
"icon": "nyancat"
}
]
},
{
"name": "Palette Chain Testnet",
"chain": "PLT",
"rpc": [
"https://palette-opennet.com:22000"
],
"faucets": [],
"nativeCurrency": {
"name": "Palette Token",
"symbol": "PLT",
"decimals": 18
},
"features": [],
"infoURL": "https://hashpalette.com/",
"shortName": "PCT",
"chainId": 17180,
"networkId": 17180,
"icon": "PLT",
"explorers": [
{
"name": "Palettescan",
"url": "https://testnet.palettescan.com",
"icon": "PLT",
"standard": "none"
}
]
},
{
"name": "EOS EVM Network",
"chain": "EOS",
"icon": "eos",
"rpc": [
"https://api.evm.eosnetwork.com"
],
"faucets": [],
"nativeCurrency": {
"name": "EOS",
"symbol": "EOS",
"decimals": 18
},
"infoURL": "https://eosnetwork.com/eos-evm",
"shortName": "eos",
"chainId": 17777,
"networkId": 17777,
"explorers": [
{
"name": "EOS EVM Explorer",
"url": "https://explorer.evm.eosnetwork.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.evm.eosnetwork.com"
},
{
"url": "https://app.multichain.org"
}
]
}
},
{
"name": "MXC zkEVM Mainnet",
"chain": "MXC zkEVM",
"icon": "mxczkevm",
"rpc": [
"https://rpc.mxc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "MXC zkEVM Mainnet",
"symbol": "MXC",
"decimals": 18
},
"infoURL": "https://doc.mxc.com/docs/intro",
"shortName": "MXCzkEVM",
"chainId": 18686,
"networkId": 18686,
"explorers": [
{
"name": "MXC zkEVM Mainnet",
"url": "https://explorer.mxc.com",
"standard": "EIP3091"
}
]
},
{
"name": "Camelark Mainnet",
"chainId": 20001,
"shortName": "Camelark",
"chain": "ETHW",
"icon": "camelark",
"networkId": 20001,
"nativeCurrency": {
"name": "EthereumPoW",
"symbol": "ETHW",
"decimals": 18
},
"rpc": [
"https://mainnet-http-rpc.camelark.com"
],
"faucets": [],
"explorers": [
{
"name": "CamelarkScan",
"url": "https://scan.camelark.com",
"standard": "EIP3091"
}
],
"infoURL": "https://www.camelark.com"
},
{
"name": "Antofy Testnet",
"chain": "ABN",
"icon": "antofy",
"rpc": [
"https://testnet-rpc.antofy.io"
],
"faucets": [
"https://faucet.antofy.io"
],
"nativeCurrency": {
"name": "Antofy",
"symbol": "ABN",
"decimals": 18
},
"infoURL": "https://antofy.io",
"shortName": "ABNt",
"chainId": 23006,
"networkId": 23006,
"explorers": [
{
"name": "Antofy Testnet",
"url": "https://test.antofyscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Ferrum Testnet",
"chain": "tFRM",
"rpc": [
"http://testnet.dev.svcs.ferrumnetwork.io:9933"
],
"faucets": [
"https://testnet.faucet.ferrumnetwork.io"
],
"nativeCurrency": {
"name": "Ferrum",
"symbol": "tFRM",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://ferrum.network",
"shortName": "frm",
"chainId": 26026,
"networkId": 26026,
"explorers": [
{
"name": "polkadotjs",
"url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer",
"standard": "none"
}
]
},
{
"name": "Zilliqa EVM",
"chain": "ZIL",
"rpc": [
"https://api.zilliqa.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Zilliqa",
"symbol": "ZIL",
"decimals": 18
},
"infoURL": "https://www.zilliqa.com/",
"shortName": "zil",
"chainId": 32769,
"networkId": 32769,
"icon": "zilliqa",
"explorers": [
{
"name": "Zilliqa EVM Explorer",
"url": "https://evmx.zilliqa.com",
"standard": "none"
}
]
},
{
"name": "Zilliqa EVM Testnet",
"chain": "ZIL",
"rpc": [
"https://dev-api.zilliqa.com"
],
"faucets": [
"https://dev-wallet.zilliqa.com/faucet?network=testnet"
],
"nativeCurrency": {
"name": "Zilliqa",
"symbol": "ZIL",
"decimals": 18
},
"infoURL": "https://www.zilliqa.com/",
"shortName": "zil-testnet",
"chainId": 33101,
"networkId": 33101,
"explorers": [
{
"name": "Zilliqa EVM Explorer",
"url": "https://evmx.zilliqa.com",
"standard": "none"
}
]
},
{
"name": "Opside Testnet Pre-Alpha",
"chain": "ETH",
"rpc": [
"https://pre-alpha-us-http-geth.opside.network",
"https://pre-alpha-hk-http-geth.opside.network"
],
"faucets": [],
"nativeCurrency": {
"name": "IDE Test Token",
"symbol": "IDE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://opsi.de/",
"shortName": "Opside-Testnet",
"chainId": 51178,
"networkId": 51178,
"icon": "opside-new",
"explorers": [
{
"name": "OpsideTestnetInfo",
"url": "https://pre-alpha.opside.info",
"icon": "opside-new",
"standard": "EIP3091"
}
]
},
{
"name": "Toronet Testnet",
"chain": "Toronet",
"icon": "toronet",
"rpc": [
"http://testnet.toronet.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Toro",
"symbol": "TORO",
"decimals": 18
},
"infoURL": "https://toronet.org",
"shortName": "ToronetTestnet",
"chainId": 54321,
"networkId": 54321,
"ens": {
"registry": "0x059C474f26D65B0458F9da10A649a7322aB02C09"
},
"explorers": [
{
"name": "toronet_explorer",
"url": "https://testnet.toronet.org",
"standard": "none"
}
]
},
{
"name": "Titan",
"chain": "ETH",
"rpc": [
"https://rpc.titan.tokamak.network",
"wss://rpc.titan.tokamak.network/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://tokamak.network",
"shortName": "teth",
"chainId": 55004,
"networkId": 55004,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.titan.tokamak.network",
"standard": "EIP3091"
}
]
},
{
"name": "Rollux Testnet",
"chain": "SYS",
"rpc": [
"https://rpc-tanenbaum.rollux.com",
"https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}",
"wss://rpc-tanenbaum.rollux.com/wss"
],
"faucets": [
"https://rollux.id/faucetapp"
],
"nativeCurrency": {
"name": "Testnet Syscoin",
"symbol": "TSYS",
"decimals": 18
},
"infoURL": "https://rollux.com",
"shortName": "tsys-rollux",
"chainId": 57000,
"networkId": 57000,
"explorers": [
{
"name": "Rollux Testnet Explorer",
"url": "https://rollux.tanenbaum.io",
"standard": "EIP3091"
}
]
},
{
"name": "Sepolia PGN (Public Goods Network)",
"chain": "ETH",
"rpc": [
"https://sepolia.publicgoods.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://publicgoods.network/",
"shortName": "sepPGN",
"chainId": 58008,
"networkId": 58008,
"icon": "publicGoodsNetwork",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.sepolia.publicgoods.network",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://pgn-bridge.vercel.app/bridge"
}
]
}
},
{
"name": "Linea Testnet",
"title": "Linea Goerli Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.goerli.linea.build",
"wss://rpc.goerli.linea.build",
"https://linea-goerli.infura.io/v3/${INFURA_API_KEY}",
"wss://linea-goerli.infura.io/v3/${INFURA_API_KEY}"
],
"faucets": [
"https://faucetlink.to/goerli"
],
"nativeCurrency": {
"name": "Linea Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://linea.build",
"shortName": "linea-testnet",
"chainId": 59140,
"networkId": 59140,
"icon": "linea",
"parent": {
"type": "L2",
"chain": "eip155-5",
"bridges": [
{
"url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea"
}
]
},
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.goerli.linea.build",
"standard": "EIP3091",
"icon": "linea"
}
],
"status": "active"
},
{
"name": "AxelChain Dev-Net",
"chain": "AXEL",
"rpc": [
"https://aium-rpc-dev.viacube.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Axelium",
"symbol": "AIUM",
"decimals": 18
},
"infoURL": "https://www.axel.org",
"shortName": "aium-dev",
"chainId": 61800,
"networkId": 61800,
"icon": "axelium",
"explorers": [
{
"name": "AxelChain Dev-Net Explorer",
"url": "https://devexplorer2.viacube.com",
"standard": "EIP3091"
}
]
},
{
"name": "Scolcoin Mainnet",
"chain": "SCOLWEI",
"rpc": [
"https://mainnet-rpc.scolcoin.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Scolcoin",
"symbol": "SCOL",
"decimals": 18
},
"infoURL": "https://scolcoin.com",
"shortName": "SRC",
"chainId": 65450,
"networkId": 65450,
"icon": "scolcoin",
"explorers": [
{
"name": "Scolscan Explorer",
"url": "https://explorer.scolcoin.com",
"standard": "EIP3091"
}
]
},
{
"name": "Cosmic Chain",
"chain": "COSMIC",
"rpc": [
"http://testnet.cosmicchain.site:3344"
],
"faucets": [],
"nativeCurrency": {
"name": "Cosmic Chain",
"symbol": "COSMIC",
"decimals": 18
},
"infoURL": "https://cosmicchain.site",
"shortName": "Cosmic",
"chainId": 67588,
"networkId": 3344
},
{
"name": "GuapcoinX",
"chain": "GuapcoinX",
"rpc": [
"https://rpc-mainnet.guapcoinx.com/",
"https://rpc-mainnet-1.guapcoinx.com/",
"https://rpc-mainnet-2.guapcoinx.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "GuapcoinX",
"symbol": "GuapX",
"decimals": 18
},
"infoURL": "https://guapcoin.org/",
"shortName": "GuapX",
"chainId": 71111,
"networkId": 71111,
"icon": "guapcoinx",
"explorers": [
{
"name": "GuapcoinX Explorer",
"url": "http://explorer.guapcoinx.com",
"standard": "none",
"icon": "guapcoinx"
}
]
},
{
"name": "Toronet Mainnet",
"chain": "Toronet",
"icon": "toronet",
"rpc": [
"http://toronet.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Toro",
"symbol": "TORO",
"decimals": 18
},
"infoURL": "https://toronet.org",
"shortName": "Toronet",
"chainId": 77777,
"networkId": 77777,
"ens": {
"registry": "0x1f45a71f4aAD769E27c969c4359E0e250C67165c"
},
"explorers": [
{
"name": "toronet_explorer",
"url": "https://toronet.org/explorer",
"standard": "none"
}
]
},
{
"name": "Dragonfly Mainnet (Hexapod)",
"chain": "Dragonfly",
"icon": "dragonfly",
"rpc": [
"https://dragonfly-rpc.switch.ch",
"https://dragonfly-rpc.kore-technologies.ch",
"https://dragonfly-rpc.phoenix-systems.io",
"https://dragonfly-rpc.block-spirit.ch"
],
"faucets": [],
"nativeCurrency": {
"name": "Dragonfly",
"symbol": "DFLY",
"decimals": 18
},
"infoURL": "https://hexapod.network",
"shortName": "dfly",
"chainId": 78281,
"networkId": 78281,
"explorers": [
{
"name": "Dragonfly Blockscout",
"url": "https://blockscout.dragonfly.hexapod.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Amana Testnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Amana Testnet",
"symbol": "MEER-T",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "amanatest",
"icon": "meer",
"chainId": 81341,
"networkId": 81341,
"status": "incubating"
},
{
"name": "Amana Mixnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Amana Mixnet",
"symbol": "MEER-M",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "amanamix",
"icon": "meer",
"chainId": 81342,
"networkId": 81342,
"status": "incubating"
},
{
"name": "Amana Privnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Amana Privnet",
"symbol": "MEER-P",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "amanapriv",
"icon": "meer",
"chainId": 81343,
"networkId": 81343,
"status": "incubating"
},
{
"name": "Flana Testnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Flana Testnet",
"symbol": "MEER-T",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "flanatest",
"icon": "meer",
"chainId": 81351,
"networkId": 81351,
"status": "incubating"
},
{
"name": "Flana Mixnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Flana Mixnet",
"symbol": "MEER-M",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "flanamix",
"icon": "meer",
"chainId": 81352,
"networkId": 81352,
"status": "incubating"
},
{
"name": "Flana Privnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Flana Privnet",
"symbol": "MEER-P",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "flanapriv",
"icon": "meer",
"chainId": 81353,
"networkId": 81353,
"status": "incubating"
},
{
"name": "Mizana Testnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Mizana Testnet",
"symbol": "MEER-T",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "mizanatest",
"icon": "meer",
"chainId": 81361,
"networkId": 81361,
"status": "incubating"
},
{
"name": "Mizana Mixnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Mizana Mixnet",
"symbol": "MEER-M",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "mizanamix",
"icon": "meer",
"chainId": 81362,
"networkId": 81362,
"status": "incubating"
},
{
"name": "Mizana Privnet",
"chain": "MEER",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Mizana Privnet",
"symbol": "MEER-P",
"decimals": 18
},
"infoURL": "https://github.com/Qitmeer",
"shortName": "mizanapriv",
"icon": "meer",
"chainId": 81363,
"networkId": 81363,
"status": "incubating"
},
{
"name": "CYBERTRUST",
"chain": "CYBER",
"rpc": [
"http://testnet.cybertrust.space:48501"
],
"faucets": [],
"nativeCurrency": {
"name": "Cyber Trust",
"symbol": "CYBER",
"decimals": 18
},
"infoURL": "https://cybertrust.space",
"shortName": "Cyber",
"chainId": 85449,
"networkId": 48501
},
{
"name": "Nautilus Chain",
"title": "Nautilus Trition Testnet",
"chain": "ETH",
"icon": "nautilus",
"rpc": [
"https://triton.api.nautchain.xyz"
],
"faucets": [
"https://faucet.eclipse.builders"
],
"nativeCurrency": {
"name": "Nautilus Zebec Testnet Tokens",
"symbol": "tZBC",
"decimals": 18
},
"infoURL": "https://docs.nautchain.xyz",
"shortName": "NAUT",
"chainId": 91002,
"networkId": 91002,
"explorers": [
{
"name": "Nautscan",
"url": "https://triton.nautscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Mantis Testnet (Hexapod)",
"chain": "Mantis",
"icon": "mantis",
"rpc": [
"https://mantis-rpc.switch.ch",
"https://mantis-rpc.kore-technologies.ch",
"https://mantis-rpc.phoenix-systems.io"
],
"faucets": [
"https://mantis.switch.ch/faucet",
"https://mantis.kore-technologies.ch/faucet",
"https://mantis.phoenix-systems.io/faucet",
"https://mantis.block-spirit.ch/faucet"
],
"nativeCurrency": {
"name": "Mantis",
"symbol": "MANTIS",
"decimals": 18
},
"infoURL": "https://hexapod.network",
"shortName": "mantis",
"chainId": 96970,
"networkId": 96970,
"explorers": [
{
"name": "Mantis Blockscout",
"url": "https://blockscout.mantis.hexapod.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Siberium Test Network",
"chain": "SBR",
"rpc": [
"https://rpc.test.siberium.net"
],
"faucets": [],
"nativeCurrency": {
"name": "TestSIBR",
"symbol": "SIBR",
"decimals": 18
},
"infoURL": "https://siberium.net",
"shortName": "testsbr",
"chainId": 111000,
"networkId": 111000,
"icon": "siberium",
"explorers": [
{
"name": "Siberium Testnet Explorer - blockscout",
"url": "https://explorer.test.siberium.net",
"icon": "siberium",
"standard": "EIP3091"
}
]
},
{
"name": "Siberium Network",
"chain": "SBR",
"rpc": [
"https://rpc.main.siberium.net",
"https://rpc.main.siberium.net.ru"
],
"faucets": [],
"nativeCurrency": {
"name": "Siberium",
"symbol": "SIBR",
"decimals": 18
},
"infoURL": "https://siberium.net",
"shortName": "sbr",
"chainId": 111111,
"networkId": 111111,
"icon": "siberium",
"explorers": [
{
"name": "Siberium Mainnet Explorer - blockscout - 1",
"url": "https://explorer.main.siberium.net",
"icon": "siberium",
"standard": "EIP3091"
},
{
"name": "Siberium Mainnet Explorer - blockscout - 2",
"url": "https://explorer.main.siberium.net.ru",
"icon": "siberium",
"standard": "EIP3091"
}
]
},
{
"name": "Metachain One Mainnet",
"chain": "METAO",
"icon": "metao",
"rpc": [
"https://rpc.metachain.one",
"https://rpc2.metachain.one"
],
"faucets": [],
"nativeCurrency": {
"name": "Metao",
"symbol": "METAO",
"decimals": 18
},
"infoURL": "https://metachain.one",
"shortName": "metao",
"chainId": 112358,
"networkId": 112358,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.metachain.one",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "ADIL Devnet",
"chain": "ADIL",
"icon": "adil",
"rpc": [
"https://devnet.adilchain-rpc.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Devnet ADIL",
"symbol": "ADIL",
"decimals": 18
},
"infoURL": "https://adilchain.io",
"shortName": "dadil",
"chainId": 123456,
"networkId": 123456,
"explorers": [
{
"name": "ADIL Devnet Explorer",
"url": "https://devnet.adilchain-scan.io",
"standard": "EIP3091"
}
]
},
{
"name": "ICPlaza Mainnet",
"chain": "ICPlaza",
"icon": "icplaza",
"rpc": [
"https://rpcmainnet.ic-plaza.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "ict",
"symbol": "ict",
"decimals": 18
},
"infoURL": "https://docs.ic-plaza.org/",
"shortName": "ICPlaza",
"chainId": 142857,
"networkId": 142857,
"explorers": [
{
"name": "ICPlaza",
"url": "https://browsemainnet.ic-plaza.org/index",
"standard": "none"
}
]
},
{
"name": "Taf ECO Chain Mainnet",
"chain": "Taf ECO Chain",
"icon": "taf",
"rpc": [
"https://mainnet.tafchain.com/v1"
],
"faucets": [],
"nativeCurrency": {
"name": "Taf ECO Chain Mainnet",
"symbol": "TAFECO",
"decimals": 18
},
"infoURL": "https://www.tafchain.com",
"shortName": "TAFECO",
"chainId": 224168,
"networkId": 224168,
"explorers": [
{
"name": "Taf ECO Chain Mainnet",
"url": "https://ecoscan.tafchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "HashKey Chain Testnet",
"chain": "HashKey",
"rpc": [
"https://testnet.hashkeychain/rpc"
],
"faucets": [
"https://testnet.hashkeychain/faucet"
],
"nativeCurrency": {
"name": "HashKey Token",
"symbol": "tHSK",
"decimals": 18
},
"infoURL": "https://www.hashkey.com",
"shortName": "hsktest",
"chainId": 230315,
"networkId": 230315,
"icon": "hsk",
"explorers": [
{
"name": "HashKey Chain Testnet Explorer",
"url": "https://testnet.hashkeyscan.io",
"standard": "none"
}
]
},
{
"name": "EgonCoin Testnet",
"chain": "EGON",
"icon": "egonicon",
"rpc": [
"https://rpctest.egcscan.com"
],
"faucets": [
"https://faucet.egcscan.com"
],
"nativeCurrency": {
"name": "EgonCoin",
"symbol": "EGON",
"decimals": 18
},
"infoURL": "https://egcscan.com",
"shortName": "EGONt",
"chainId": 271271,
"networkId": 271271,
"explorers": [
{
"name": "EgonCoin Testnet",
"url": "https://testnet.egcscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "TTcoin Smart Chain Mainnet",
"chain": "TSC",
"icon": "tscscan",
"rpc": [
"https://mainnet-rpc.tscscan.com"
],
"faucets": [
"https://faucet.tscscan.com"
],
"nativeCurrency": {
"name": "TTcoin",
"symbol": "TC",
"decimals": 18
},
"infoURL": "https://ttcoin.info/",
"shortName": "tc",
"chainId": 330844,
"networkId": 330844,
"explorers": [
{
"name": "TTcoin Smart Chain Explorer",
"url": "https://tscscan.com",
"standard": "EIP3091",
"icon": "tscscan"
}
]
},
{
"name": "Aves Testnet",
"chain": "AVST",
"rpc": [
"https://test.rpc.avescoin.io"
],
"faucets": [],
"nativeCurrency": {
"name": "AvesT",
"symbol": "AVST",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://ethereum.org",
"shortName": "avst",
"chainId": 333331,
"networkId": 333331,
"icon": "aves",
"explorers": [
{
"name": "avescan",
"url": "https://testnet.avescoin.io",
"icon": "avescan",
"standard": "EIP3091"
}
]
},
{
"name": "Bitfinity Network Testnet",
"chain": "BFT",
"rpc": [
"https://testnet.bitfinity.network"
],
"faucets": [
"https://bitfinity.network/faucet"
],
"nativeCurrency": {
"name": "BITFINITY",
"symbol": "BFT",
"decimals": 18
},
"infoURL": "https://bitfinity.network",
"shortName": "Bitfinity",
"chainId": 355113,
"networkId": 355113,
"explorers": [
{
"name": "Bitfinity Block Explorer",
"url": "https://explorer.bitfinity.network",
"icon": "bitfinity",
"standard": "EIP3091"
}
]
},
{
"name": "HAPchain Testnet",
"chain": "HAPchain",
"rpc": [
"https://jsonrpc-test.hap.land"
],
"faucets": [],
"nativeCurrency": {
"name": "HAP",
"symbol": "HAP",
"decimals": 18
},
"infoURL": "https://hap.land",
"shortName": "hap-testnet",
"chainId": 373737,
"networkId": 373737,
"icon": "hap",
"explorers": [
{
"name": "HAP EVM Explorer (Blockscout)",
"url": "https://blockscout-test.hap.land",
"standard": "none",
"icon": "hap"
}
]
},
{
"name": "Tipboxcoin Mainnet",
"chain": "TPBX",
"icon": "tipboxcoinIcon",
"rpc": [
"https://mainnet-rpc.tipboxcoin.net"
],
"faucets": [
"https://faucet.tipboxcoin.net"
],
"nativeCurrency": {
"name": "Tipboxcoin",
"symbol": "TPBX",
"decimals": 18
},
"infoURL": "https://tipboxcoin.net",
"shortName": "TPBXm",
"chainId": 404040,
"networkId": 404040,
"explorers": [
{
"name": "Tipboxcoin",
"url": "https://tipboxcoin.net",
"standard": "EIP3091"
}
]
},
{
"name": "Markr Go",
"chain": "Unified",
"icon": "markrgo",
"rpc": [
"https://rpc.markr.io/ext/"
],
"faucets": [],
"nativeCurrency": {
"name": "Avalanche",
"symbol": "AVAX",
"decimals": 18
},
"infoURL": "https://www.markr.io/",
"shortName": "markr-go",
"chainId": 431140,
"networkId": 431140,
"explorers": [],
"status": "incubating"
},
{
"name": "Patex Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://test-rpc.patex.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://patex.io/",
"shortName": "psep",
"chainId": 471100,
"networkId": 471100
},
{
"name": "Scroll Sepolia Testnet",
"chain": "ETH",
"status": "incubating",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://scroll.io",
"shortName": "scr-sepolia",
"chainId": 534351,
"networkId": 534351,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": []
}
},
{
"name": "Shinarium Beta",
"chain": "Shinarium",
"rpc": [
"https://rpc.shinarium.org"
],
"faucets": [
"https://faucet.shinarium.org"
],
"nativeCurrency": {
"name": "Shina Inu",
"symbol": "SHI",
"decimals": 18
},
"infoURL": "https://shinarium.org",
"shortName": "shi",
"chainId": 534849,
"networkId": 534849,
"explorers": [
{
"name": "shinascan",
"url": "https://shinascan.shinarium.org",
"standard": "EIP3091"
}
]
},
{
"name": "BeanEco SmartChain",
"title": "BESC Mainnet",
"chain": "BESC",
"rpc": [
"https://mainnet-rpc.bescscan.io"
],
"faucets": [
"faucet.bescscan.ion"
],
"nativeCurrency": {
"name": "BeanEco SmartChain",
"symbol": "BESC",
"decimals": 18
},
"infoURL": "besceco.finance",
"shortName": "BESC",
"chainId": 535037,
"networkId": 535037,
"explorers": [
{
"name": "bescscan",
"url": "https://Bescscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "ALL Mainnet",
"chain": "ALL",
"icon": "alltra",
"rpc": [
"https://mainnet-rpc.alltra.global"
],
"faucets": [],
"nativeCurrency": {
"name": "ALL",
"symbol": "ALL",
"decimals": 18
},
"infoURL": "https://alltra.world",
"shortName": "ALL",
"chainId": 651940,
"networkId": 651940,
"explorers": [
{
"name": "Alltra SmartChain Explorer",
"url": "https://alltra.global",
"standard": "EIP3091"
}
]
},
{
"name": "CURVE Mainnet",
"chain": "CURVE",
"icon": "curveIcon",
"rpc": [
"https://mainnet-rpc.curvescan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Curve",
"symbol": "CURVE",
"decimals": 18
},
"infoURL": "https://curvescan.io",
"shortName": "CURVEm",
"chainId": 827431,
"networkId": 827431,
"explorers": [
{
"name": "CURVE Mainnet",
"url": "https://curvescan.io",
"standard": "EIP3091"
}
]
},
{
"name": "AltLayer Zero Gas Network",
"chain": "ETH",
"rpc": [
"https://zero.alt.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "ZERO",
"symbol": "ZERO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://altlayer.io",
"shortName": "alt-zerogas",
"chainId": 4000003,
"networkId": 4000003,
"icon": "altlayer",
"explorers": [
{
"name": "blockscout",
"url": "https://zero-explorer.alt.technology",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Worlds Caldera",
"chain": "WCal",
"rpc": [
"https://worlds-test.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://caldera.xyz/",
"shortName": "worldscal",
"chainId": 4281033,
"networkId": 4281033,
"icon": "ethereum",
"explorers": []
},
{
"name": "MXC Wannsee zkEVM Testnet",
"chain": "MXC zkEVM",
"icon": "mxc",
"rpc": [
"https://wannsee-rpc.mxc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "MXC Wannsee zkEVM Testnet",
"symbol": "MXC",
"decimals": 18
},
"infoURL": "https://wannsee.mxc.com/docs/intro",
"shortName": "MXC",
"chainId": 5167003,
"networkId": 5167003,
"explorers": [
{
"name": "MXC Wannsee zkEVM Testnet",
"url": "https://wannsee-explorer.mxc.com",
"standard": "EIP3091"
}
]
},
{
"name": "HAPchain",
"chain": "HAPchain",
"rpc": [
"https://jsonrpc.hap.land"
],
"faucets": [],
"nativeCurrency": {
"name": "HAP",
"symbol": "HAP",
"decimals": 18
},
"infoURL": "https://hap.land",
"shortName": "hap",
"chainId": 8794598,
"networkId": 8794598,
"icon": "hap",
"explorers": [
{
"name": "HAP EVM Explorer (Blockscout)",
"url": "https://blockscout.hap.land",
"standard": "none",
"icon": "hap"
}
]
},
{
"name": "Quarix Testnet",
"chain": "Quarix",
"status": "incubating",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Q",
"symbol": "Q",
"decimals": 18
},
"infoURL": "",
"shortName": "quarix-testnet",
"chainId": 8888881,
"networkId": 8888881,
"icon": "quarix",
"explorers": []
},
{
"name": "Quarix",
"chain": "Quarix",
"status": "incubating",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Q",
"symbol": "Q",
"decimals": 18
},
"infoURL": "",
"shortName": "quarix",
"chainId": 8888888,
"networkId": 8888888,
"icon": "quarix",
"explorers": []
},
{
"name": "T.E.A.M Blockchain",
"chain": "TEAM",
"icon": "team",
"rpc": [
"https://rpc.teamblockchain.team"
],
"faucets": [],
"nativeCurrency": {
"name": "TEAM",
"symbol": "$TEAM",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://teamblockchain.team",
"shortName": "team",
"chainId": 88888888,
"networkId": 88888888,
"explorers": [
{
"name": "teamscan",
"url": "https://teamblockchain.team",
"standard": "EIP3091"
}
]
},
{
"name": "Kanazawa",
"title": "Meld Testnet Kanazawa",
"chain": "Kanazawa",
"rpc": [
"https://subnets.avax.network/meld/testnet/rpc"
],
"faucets": [],
"features": [],
"nativeCurrency": {
"name": "gMeld",
"symbol": "gMELD",
"decimals": 18
},
"icon": "meld",
"infoURL": "https://meld.com",
"shortName": "kanazawa",
"chainId": 222000222,
"networkId": 222000222,
"explorers": [
{
"name": "explorer",
"url": "https://subnets-test.avax.network/meld",
"icon": "meld",
"standard": "EIP3091"
}
]
},
{
"name": "Razor Skale Chain",
"chain": "Razor Schain",
"icon": "razornetwork",
"rpc": [
"https://mainnet.skalenodes.com/v1/turbulent-unique-scheat"
],
"faucets": [
"https://faucet.razorscan.io/"
],
"nativeCurrency": {
"name": "sFuel",
"symbol": "SFUEL",
"decimals": 18
},
"infoURL": "https://razor.network",
"shortName": "razor",
"chainId": 278611351,
"networkId": 278611351,
"explorers": [
{
"name": "turbulent-unique-scheat",
"url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "Meld",
"title": "Meld Mainnet",
"chain": "MELD",
"rpc": [
"https://subnets.avax.network/meld/mainnet/rpc"
],
"faucets": [],
"features": [],
"nativeCurrency": {
"name": "gMeld",
"symbol": "gMELD",
"decimals": 18
},
"icon": "meld",
"infoURL": "https://meld.com",
"shortName": "meld",
"chainId": 333000333,
"networkId": 333000333,
"explorers": [
{
"name": "explorer",
"url": "https://subnets.avax.network/meld",
"icon": "meld",
"standard": "EIP3091"
}
]
},
{
"name": "CyberdeckNet",
"chain": "cyberdeck",
"rpc": [
"http://cybeth1.cyberdeck.eu:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Cyb",
"symbol": "CYB",
"decimals": 18
},
"infoURL": "https://cyberdeck.eu",
"shortName": "cyb",
"chainId": 1146703430,
"networkId": 1146703430,
"icon": "cyberdeck",
"status": "active",
"explorers": [
{
"name": "CybEthExplorer",
"url": "http://cybeth1.cyberdeck.eu:8000",
"icon": "cyberdeck",
"standard": "none"
}
]
},
{
"name": "HUMAN Protocol",
"title": "HUMAN Protocol",
"chain": "wan-red-ain",
"rpc": [
"https://mainnet.skalenodes.com/v1/wan-red-ain"
],
"faucets": [
"https://dashboard.humanprotocol.org/faucet"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://www.humanprotocol.org",
"shortName": "human-mainnet",
"chainId": 1273227453,
"networkId": 1273227453,
"explorers": [
{
"name": "Blockscout",
"url": "https://wan-red-ain.explorer.mainnet.skalenodes.com",
"icon": "human",
"standard": "EIP3091"
}
]
},
{
"name": "Chaos (SKALE Testnet)",
"title": "Chaos Testnet",
"chain": "staging-fast-active-bellatrix",
"rpc": [
"https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"
],
"faucets": [
"https://sfuel.skale.network/staging/chaos"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://docs.skale.network/develop/",
"shortName": "chaos-tenet",
"chainId": 1351057110,
"networkId": 1351057110,
"explorers": [
{
"name": "Blockscout",
"url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com",
"icon": "chaos",
"standard": "EIP3091"
}
]
},
{
"name": "RaptorChain",
"chain": "RPTR",
"rpc": [
"https://rpc.raptorchain.io/web3"
],
"faucets": [],
"nativeCurrency": {
"name": "Raptor",
"symbol": "RPTR",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://raptorchain.io",
"shortName": "rptr",
"chainId": 1380996178,
"networkId": 1380996178,
"icon": "raptorchain",
"explorers": [
{
"name": "RaptorChain Explorer",
"url": "https://explorer.raptorchain.io",
"icon": "raptorchain_explorer",
"standard": "EIP3091"
}
]
},
{
"name": "Alphabet Mainnet",
"chain": "Alphabet Network",
"icon": "alphabetnetwork",
"rpc": [
"https://londonpublic.alphabetnetwork.org",
"wss://londonpublic.alphabetnetwork.org/ws/",
"https://main-rpc.com",
"wss://main-rpc.com/ws/"
],
"faucets": [],
"nativeCurrency": {
"name": "ALT",
"symbol": "ALT",
"decimals": 18
},
"infoURL": "https://alphabetnetwork.org",
"shortName": "alphabet",
"chainId": 111222333444,
"networkId": 111222333444,
"explorers": [
{
"name": "Alphabet Explorer",
"url": "https://scan.alphabetnetwork.org",
"standard": "EIP3091"
}
]
},
{
"name": "Ethereum Express",
"chainId": 8957,
"shortName": "ETE",
"chain": "ETE",
"network": "mainnet",
"networkId": 8957,
"nativeCurrency": {
"name": "ETE",
"symbol": "ETE",
"decimals": 18
},
"rpc": [
"https://www.etescan.net/rpc",
"https://www.etelondon.com/rpc",
"https://test.uaechain.net/rpc",
"https://rpc.web3russia.org/ete",
"https://www.etecanada.com/rpc",
"https://node.brazildao.biz/ete",
"https://ete.indiaio.net/fast",
"https://ete.auhacker.xyz/data",
"https://service.saalliance.net/ete"
],
"faucets": [],
"infoURL": "https://www.ethereumexpress.net",
"app_resource": {
"ic_chain_select": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/select.png",
"ic_chain_unselect": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/unselect.png",
"color_chain_bg": "0x013162"
}
},
{
"name": "Pink Chain",
"chainId": 9801,
"shortName": "pink",
"chain": "Pink",
"network": "mainnet",
"networkId": 9801,
"nativeCurrency": {
"name": "Pink Coin",
"symbol": "PKB",
"decimals": 18
},
"rpc": [
"https://pinkchain.co/",
"https://rpc1.pinkchain.co/",
"https://rpc2.pinkchain.co/"
],
"faucets": [],
"infoURL": "https://pink-chain.com/",
"app_resource": {
"ic_chain_select": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275871180-28ecbadd98de7c6db5ea578a380e4468.png",
"ic_chain_unselect": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275894734-6f8825a9413b793fe9462b093fb3c906.png",
"color_chain_bg": "0xf95192"
}
},
{
"name": "Worldland Mainnet",
"chain": "Worldland",
"icon": "worldland",
"rpc": [
"https://seoul.worldland.foundation"
],
"faucets": [],
"nativeCurrency": {
"name": "Worldland",
"symbol": "WL",
"decimals": 18
},
"infoURL": "https://worldland.foundation",
"shortName": "WLC",
"chainId": 103,
"networkId": 103,
"explorers": [
{
"name": "Worldland Explorer",
"url": "https://scan.worldland.foundation",
"standard": "EIP3091"
}
]
},
{
"name": "Shibarium",
"chain": "Shibarium",
"icon": "shibarium",
"rpc": [
"https://www.shibrpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BONE Shibarium",
"symbol": "BONE",
"decimals": 18
},
"infoURL": "https://shibariumecosystem.com",
"shortName": "shibariumecosystem",
"chainId": 109,
"networkId": 109,
"explorers": [
{
"name": "shibariumscan",
"url": "https://www.shibariumscan.io",
"standard": "none"
}
]
},
{
"name": "ShimmerEVM Mainnet",
"title": "ShimmerEVM Mainnet",
"chain": "ShimmerEVM",
"rpc": [
"https://json-rpc.evm.shimmer.network"
],
"faucets": [],
"nativeCurrency": {
"name": "SMR",
"symbol": "SMR",
"decimals": 18
},
"infoURL": "https://shimmer.network",
"shortName": "shimmerevm-mainnet",
"chainId": 148,
"networkId": 148,
"icon": "shimmerevm",
"explorers": [
{
"name": "explorer",
"url": "https://explorer.evm.shimmer.network",
"icon": "shimmerevm",
"standard": "EIP3091"
}
]
},
{
"name": "Redbelly Network Mainnet",
"shortName": "rbn",
"chain": "RBN",
"chainId": 151,
"networkId": 151,
"rpc": [],
"faucets": [],
"infoURL": "https://redbelly.network",
"nativeCurrency": {
"name": "Redbelly Network Coin",
"symbol": "RBNT",
"decimals": 18
},
"status": "incubating"
},
{
"name": "Redbelly Network Devnet",
"shortName": "rbn-devnet",
"chain": "RBN",
"chainId": 152,
"networkId": 152,
"rpc": [],
"faucets": [],
"infoURL": "https://redbelly.network",
"nativeCurrency": {
"name": "Redbelly Network Coin",
"symbol": "RBNT",
"decimals": 18
},
"status": "incubating"
},
{
"name": "Redbelly Network Testnet",
"shortName": "rbn-testnet",
"chain": "RBN",
"chainId": 153,
"networkId": 153,
"rpc": [],
"faucets": [],
"infoURL": "https://redbelly.network",
"nativeCurrency": {
"name": "Redbelly Network Coin",
"symbol": "RBNT",
"decimals": 18
},
"status": "incubating"
},
{
"name": "Redbelly Network TGE",
"shortName": "rbn-tge",
"chain": "RBN",
"chainId": 154,
"networkId": 154,
"rpc": [],
"faucets": [],
"infoURL": "https://redbelly.network",
"nativeCurrency": {
"name": "Redbelly Network Coin",
"symbol": "RBNT",
"decimals": 18
}
},
{
"name": "Manta Pacific Mainnet",
"chain": "Manta Pacific",
"rpc": [
"https://pacific-rpc.manta.network/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://pacific-info.manta.network",
"shortName": "manta",
"chainId": 169,
"networkId": 169,
"icon": "manta",
"explorers": [
{
"name": "manta-pacific Explorer",
"url": "https://pacific-explorer.manta.network",
"standard": "EIP3091"
}
]
},
{
"name": "Bitchain Mainnet",
"chain": "Bit",
"rpc": [
"https://rpc.bitchain.biz/"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://www.bitchain.biz/",
"shortName": "bit",
"chainId": 198,
"networkId": 198,
"explorers": [
{
"name": "Bitchain Scan",
"url": "https://explorer.bitchain.biz",
"standard": "EIP3091"
}
]
},
{
"name": "opBNB Mainnet",
"icon": "bnbchain",
"chain": "opBNB",
"rpc": [
"https://opbnb-mainnet-rpc.bnbchain.org",
"https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3",
"wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3",
"https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5",
"wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5",
"https://opbnb.publicnode.com",
"wss://opbnb.publicnode.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BNB Chain Native Token",
"symbol": "BNB",
"decimals": 18
},
"infoURL": "https://opbnb.bnbchain.org/en",
"shortName": "obnb",
"chainId": 204,
"networkId": 204,
"slip44": 714,
"explorers": [
{
"name": "opbnbscan",
"url": "https://mainnet.opbnbscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "VinuChain Testnet",
"chain": "VinuChain Testnet",
"rpc": [
"https://vinufoundation-rpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "VinuChain",
"symbol": "VС",
"decimals": 18
},
"infoURL": "https://vitainu.org",
"shortName": "VCTEST",
"chainId": 206,
"networkId": 206,
"icon": "vitainu-testnet",
"explorers": [
{
"name": "VinuScan Testnet",
"url": "https://testnet.vinuscan.com",
"icon": "vinuscan-testnet",
"standard": "none"
}
]
},
{
"name": "VinuChain Network",
"chain": "VinuChain",
"rpc": [
"https://vinuchain-rpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "VinuChain",
"symbol": "VС",
"decimals": 18
},
"infoURL": "https://vitainu.org",
"shortName": "VC",
"chainId": 207,
"networkId": 207,
"icon": "vitainu",
"explorers": [
{
"name": "VinuScan",
"url": "https://vinuscan.com",
"icon": "vinuscan",
"standard": "none"
}
]
},
{
"name": "Bitnet",
"chain": "BTN",
"icon": "bitnet",
"rpc": [
"https://rpc.bitnet.money",
"https://rpc.btnscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitnet",
"symbol": "BTN",
"decimals": 18
},
"infoURL": "https://bitnet.money",
"shortName": "BTN",
"chainId": 210,
"networkId": 210,
"explorers": [
{
"name": "Bitnet Explorer",
"url": "https://btnscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Shinarium Mainnet",
"chain": "Shinarium",
"icon": "shinarium",
"rpc": [
"https://mainnet.shinarium.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Shina Inu",
"symbol": "SHI",
"decimals": 18
},
"infoURL": "https://shinarium.org",
"shortName": "shinarium",
"chainId": 214,
"networkId": 214,
"explorers": [
{
"name": "shinascan",
"url": "https://shinascan.shinarium.org",
"standard": "EIP3091"
}
]
},
{
"name": "Kroma",
"chain": "ETH",
"rpc": [
"https://api.kroma.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kroma.network",
"icon": "kroma",
"shortName": "kroma",
"chainId": 255,
"networkId": 255,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.kroma.network",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://kroma.network/bridge"
}
]
}
},
{
"name": "Orderly Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc.orderly.network",
"https://l2-orderly-mainnet-0.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "www.orderly.network",
"shortName": "orderly",
"chainId": 291,
"networkId": 291,
"icon": "orderly",
"explorers": [
{
"name": "orderlyscout",
"url": "https://explorer.orderly.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Wyzth Testnet",
"chain": "WYZ",
"rpc": [
"https://rpc-testnet3.wyzthchain.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Wyzth",
"symbol": "WYZ",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://wyzth.org/",
"shortName": "wyz",
"chainId": 309,
"networkId": 309,
"icon": "wyzth_icon",
"explorers": [
{
"name": "wyzth",
"url": "http://24.199.108.65:4000",
"icon": "wyzth",
"standard": "EIP3091"
}
]
},
{
"name": "Yooldo Verse Mainnet",
"chain": "Yooldo Verse",
"icon": "yooldo_verse",
"rpc": [
"https://rpc.yooldo-verse.xyz/"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://yooldo.gg/",
"shortName": "YVM",
"chainId": 345,
"networkId": 345,
"explorers": [
{
"name": "Yooldo Verse Explorer",
"url": "https://explorer.yooldo-verse.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Nativ3 Mainnet",
"chainId": 399,
"shortName": "N3",
"chain": "Nativ3",
"icon": "nativ3",
"networkId": 399,
"nativeCurrency": {
"name": "USNT",
"symbol": "USNT",
"decimals": 18
},
"rpc": [
"https://rpc.nativ3.network",
"wss://ws.nativ3.network"
],
"faucets": [],
"explorers": [
{
"name": "N3scan",
"url": "https://scan.nativ3.network",
"standard": "EIP3091"
}
],
"infoURL": "https://nativ3.network",
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://bridge.nativ3.network"
}
]
}
},
{
"name": "Pepe Chain Mainnet",
"chain": "PC",
"status": "active",
"icon": "pepechain",
"rpc": [
"https://rpc.pepe-chain.vip"
],
"faucets": [],
"nativeCurrency": {
"name": "Pepe",
"symbol": "PEPE",
"decimals": 18
},
"infoURL": "https://pepe-chain.vip",
"shortName": "pepe",
"chainId": 411,
"networkId": 411,
"explorers": [
{
"name": "pepechain explorer",
"url": "https://explorer.pepe-chain.vip",
"standard": "EIP3091"
}
]
},
{
"name": "Geso Verse",
"chain": "Geso Verse",
"rpc": [
"https://rpc.verse.gesoten.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://gesoten.com/",
"shortName": "GSV",
"icon": "gesoten",
"chainId": 428,
"networkId": 428,
"explorers": [
{
"name": "Geso Verse Explorer",
"url": "https://explorer.verse.gesoten.com",
"standard": "EIP3091"
}
]
},
{
"name": "Obscuro Testnet",
"title": "Obscuro Sepolia Rollup Testnet",
"chainId": 443,
"shortName": "obs-testnet",
"chain": "ETH",
"networkId": 443,
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://testnet.obscu.ro"
],
"faucets": [],
"infoURL": "https://obscu.ro",
"explorers": [
{
"name": "Obscuro Sepolia Rollup Explorer",
"url": "https://testnet.obscuroscan.io",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-5",
"bridges": [
{
"url": "https://bridge.obscu.ro"
}
]
}
},
{
"name": "Areon Network Testnet",
"chain": "Areon",
"icon": "areon",
"rpc": [
"https://testnet-rpc.areon.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Areon",
"symbol": "TAREA",
"decimals": 18
},
"infoURL": "https://areon.network",
"shortName": "tarea",
"chainId": 462,
"networkId": 462,
"explorers": [
{
"name": "AreonScan",
"url": "https://areonscan.com",
"standard": "none"
}
]
},
{
"name": "Areon Network Mainnet",
"chain": "Areon",
"icon": "areon",
"rpc": [
"https://mainnet-rpc.areon.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Areon",
"symbol": "AREA",
"decimals": 18
},
"infoURL": "https://areon.network",
"shortName": "area",
"chainId": 463,
"networkId": 463,
"explorers": [
{
"name": "AreonScan",
"url": "https://areonscan.com",
"standard": "none"
}
]
},
{
"name": "PAWCHAIN Testnet",
"chain": "PAW",
"rpc": [
"https://pawchainx.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "PAW",
"symbol": "PAW",
"decimals": 18
},
"infoURL": "https://pawchainx.com/",
"shortName": "PAW",
"chainId": 542,
"networkId": 542,
"explorers": [
{
"name": "PAWCHAIN Testnet",
"url": "https://pawscan.io",
"standard": "none"
}
]
},
{
"name": "PEER Testnet",
"chain": "PEER",
"rpc": [
"http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com"
],
"faucets": [
"https://testnet.peer.inc"
],
"nativeCurrency": {
"name": "PEER Token",
"symbol": "PEER",
"decimals": 18
},
"infoURL": "https://peer.inc",
"shortName": "PEER",
"chainId": 601,
"networkId": 601,
"icon": "peer",
"explorers": [
{
"name": "PEER Explorer",
"url": "https://testnet.peer.inc",
"standard": "none",
"icon": "peer"
}
]
},
{
"name": "Kalichain Mainnet",
"chain": "Kalichain",
"rpc": [
"https://rpc.kalichain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "kalis",
"symbol": "KALIS",
"decimals": 18
},
"infoURL": "https://kalichain.com",
"shortName": "kalichain",
"chainId": 653,
"networkId": 653,
"explorers": [
{
"name": "kalichain explorer",
"url": "https://explorer.kalichain.com",
"standard": "EIP3091"
}
]
},
{
"name": "LAOS Arrakis",
"title": "LAOS Testnet Arrakis",
"chain": "LAOS",
"icon": "laos",
"rpc": [
"https://arrakis.gorengine.com/own",
"wss://arrakis.gorengine.com/own"
],
"faucets": [],
"nativeCurrency": {
"name": "LAOS",
"symbol": "LAOS",
"decimals": 18
},
"infoURL": "https://www.laosfoundation.io/",
"shortName": "laos",
"chainId": 667,
"networkId": 667,
"explorers": [
{
"name": "blockscout",
"url": "https://arrakis.gorengine.com",
"icon": "laos",
"standard": "EIP3091"
}
]
},
{
"name": "JuncaChain",
"chain": "JuncaChain",
"rpc": [
"https://rpc.juncachain.com"
],
"nativeCurrency": {
"name": "JuncaChain Native Token",
"symbol": "JGC",
"decimals": 18
},
"faucets": [],
"infoURL": "https://junca-cash.world",
"shortName": "junca",
"chainId": 668,
"networkId": 668,
"explorers": [
{
"name": "JuncaScan",
"url": "https://scan.juncachain.com",
"standard": "EIP3091"
}
]
},
{
"name": "JuncaChain testnet",
"chain": "JuncaChain testnet",
"rpc": [
"https://rpc-testnet.juncachain.com",
"wss://ws-testnet.juncachain.com"
],
"faucets": [
"https://faucet-testnet.juncachain.com"
],
"nativeCurrency": {
"name": "JuncaChain Testnet Native Token",
"symbol": "JGCT",
"decimals": 18
},
"infoURL": "https://junca-cash.world",
"shortName": "juncat",
"chainId": 669,
"networkId": 669,
"explorers": [
{
"name": "JuncaScan",
"url": "https://scan-testnet.juncachain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Highbury",
"chain": "HIGHBURY",
"rpc": [
"https://highbury.furya.io",
"https://rest.furya.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Fury",
"symbol": "FURY",
"decimals": 18
},
"infoURL": "https://www.fury.black",
"shortName": "fury",
"chainId": 710,
"networkId": 710,
"icon": "highbury",
"explorers": [
{
"name": "Furya EVM Explorer",
"url": "https://explorer.furya.io",
"standard": "EIP3091",
"icon": "highbury"
}
]
},
{
"name": "Blucrates",
"chain": "BLU",
"rpc": [
"https://data.bluchain.pro"
],
"faucets": [],
"nativeCurrency": {
"name": "Blucrates",
"symbol": "BLU",
"decimals": 18
},
"infoURL": "https://www.blucrates.com",
"shortName": "blu",
"chainId": 727,
"networkId": 727,
"slip44": 727
},
{
"name": "Script Testnet",
"chain": "SPAY",
"rpc": [
"https://testeth-rpc-api.script.tv/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Script",
"symbol": "SPAY",
"decimals": 18
},
"infoURL": "https://token.script.tv",
"shortName": "SPAY",
"chainId": 742,
"networkId": 742,
"explorers": [
{
"name": "Script Explorer",
"url": "https://explorer.script.tv",
"standard": "none"
}
]
},
{
"name": "Mode Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.mode.network"
],
"faucets": [
"https://sepoliafaucet.com/"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.mode.network/",
"shortName": "modesep",
"chainId": 919,
"networkId": 919,
"icon": "modeTestnet",
"explorers": [
{
"name": "modescout",
"url": "https://sepolia.explorer.mode.network",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.mode.network/"
}
]
}
},
{
"name": "Yidark Chain Mainnet",
"chain": "Yidark",
"icon": "ydk",
"rpc": [
"https://rpc.yidark.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Yidark",
"symbol": "YDK",
"decimals": 18
},
"infoURL": "https://yidarkscan.com",
"shortName": "ydk",
"chainId": 927,
"networkId": 927,
"explorers": [
{
"name": "Yidarkscan",
"url": "https://yidarkscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "BTC20 Smart Chain",
"chain": "BTC20",
"rpc": [
"https://rpc.bitcoincode.technology/"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "BTCC",
"symbol": "BTCC",
"decimals": 18
},
"infoURL": "https://bitcoincode.technology",
"shortName": "btc20",
"chainId": 963,
"networkId": 963,
"icon": "btc20",
"explorers": [
{
"name": "blockscout",
"url": "https://scan.bitcoincode.technology",
"standard": "EIP3091"
}
]
},
{
"name": "eLiberty Mainnet",
"chain": "$EL",
"icon": "eLiberty",
"rpc": [
"https://rpc.eliberty.ngo"
],
"faucets": [
"https://faucet.eliberty.ngo"
],
"nativeCurrency": {
"name": "eLiberty",
"symbol": "$EL",
"decimals": 18
},
"infoURL": "https://eliberty.ngo",
"shortName": "ELm",
"chainId": 990,
"networkId": 990,
"explorers": [
{
"name": "eLiberty Mainnet",
"url": "https://explorer.eliberty.ngo",
"standard": "EIP3091"
}
]
},
{
"name": "Tectum Emission Token",
"chain": "TET",
"rpc": [
"https://rpc.softnote.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Tectum",
"symbol": "TET",
"decimals": 8
},
"infoURL": "https://softnote.com",
"shortName": "tet",
"chainId": 1003,
"networkId": 1003,
"explorers": [
{
"name": "Tectum explorer",
"url": "https://explorer.tectum.io",
"icon": "Tettoken256",
"standard": "EIP3091"
}
]
},
{
"name": "ShimmerEVM Testnet",
"title": "ShimmerEVM Testnet",
"chain": "ShimmerEVM",
"icon": "shimmerevm",
"rpc": [
"https://json-rpc.evm.testnet.shimmer.network"
],
"faucets": [
"https://evm-toolkit.evm.testnet.shimmer.network",
"https://evm-faucet.testnet.shimmer.network"
],
"nativeCurrency": {
"name": "SMR",
"symbol": "SMR",
"decimals": 6
},
"infoURL": "https://shimmer.network",
"shortName": "shimmerevm-testnet",
"chainId": 1073,
"networkId": 1073,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.evm.testnet.shimmer.network",
"standard": "EIP3091"
}
]
},
{
"name": "Mintara Mainnet",
"title": "Mintara Mainnet",
"chain": "Mintara",
"icon": "mintara",
"rpc": [
"https://subnets.avax.network/mintara/mainnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "MINTARA",
"symbol": "MNTR",
"decimals": 18
},
"infoURL": "https://playthink.co.jp",
"shortName": "mintara",
"chainId": 1080,
"networkId": 1080,
"explorers": [
{
"name": "explorer",
"url": "https://subnets.avax.network/mintara",
"standard": "EIP3091"
}
]
},
{
"name": "Humans.ai Mainnet",
"chain": "Humans",
"rpc": [
"https://jsonrpc.humans.nodestake.top",
"https://humans-mainnet-evm.itrocket.net:443",
"https://humans-evm-rpc.staketab.org:443",
"https://evm.humans.stakepool.dev.br",
"https://mainnet-humans-evm.konsortech.xyz",
"https://evm-rpc.mainnet.humans.zone"
],
"faucets": [],
"nativeCurrency": {
"name": "HEART",
"symbol": "HEART",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://humans.ai",
"shortName": "humans",
"chainId": 1089,
"networkId": 1089,
"icon": "humans-dark",
"explorers": [
{
"name": "explorer.guru",
"url": "https://humans.explorers.guru",
"icon": "humans",
"standard": "none"
}
]
},
{
"name": "BLXq Testnet",
"chain": "BLXQ",
"icon": "blxq",
"rpc": [
"https://testnetq1.blx.org"
],
"faucets": [],
"nativeCurrency": {
"name": "BLXQ",
"symbol": "BLXQ",
"decimals": 18
},
"infoURL": "https://blx.org",
"shortName": "tblxq",
"chainId": 1107,
"networkId": 1107,
"explorers": [
{
"name": "BLXq Explorer",
"url": "https://explorer.blx.org",
"icon": "blxq",
"standard": "none"
}
]
},
{
"name": "BLXq Mainnet",
"chain": "BLXQ",
"icon": "blxq",
"rpc": [
"https://mainnet.blxq.org"
],
"faucets": [],
"nativeCurrency": {
"name": "BLXQ",
"symbol": "BLXQ",
"decimals": 18
},
"infoURL": "https://blx.org",
"shortName": "blxq",
"chainId": 1108,
"networkId": 1108,
"explorers": [
{
"name": "BLXq Explorer",
"url": "https://explorer.blxq.org",
"icon": "blxq",
"standard": "EIP3091"
}
]
},
{
"name": "DeFiMetaChain",
"icon": "changi",
"chain": "DFI",
"rpc": [
"https://testnet-dmc.mydefichain.com:20551"
],
"faucets": [
"http://tc04.mydefichain.com/faucet"
],
"nativeCurrency": {
"name": "DeFiChain Token",
"symbol": "DFI",
"decimals": 18
},
"infoURL": "https://defichain.com",
"shortName": "changi",
"chainId": 1133,
"networkId": 1133,
"explorers": [
{
"name": "MetaScan",
"url": "https://meta.defiscan.live",
"standard": "EIP3091"
}
]
},
{
"name": "Swisstronik Testnet",
"chain": "SWTR",
"rpc": [
"https://json-rpc.testnet.swisstronik.com"
],
"faucets": [
"https://faucet.testnet.swisstronik.com"
],
"nativeCurrency": {
"name": "Swisstronik",
"symbol": "SWTR",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.swisstronik.com",
"shortName": "swtr",
"chainId": 1291,
"networkId": 1291,
"icon": "swisstronik",
"explorers": [
{
"name": "Swisstronik Scout",
"url": "https://explorer-evm.testnet.swisstronik.com",
"standard": "none"
}
]
},
{
"name": "Blitz Subnet",
"chain": "BLITZ",
"rpc": [
"https://subnets.avax.network/blitz/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "BLITZ GAS",
"symbol": "BGAS",
"decimals": 18
},
"infoURL": "https://blitz.gg",
"shortName": "blitz",
"chainId": 1343,
"networkId": 1343,
"explorers": [
{
"name": "BLITZ Explorer",
"url": "https://subnets-test.avax.network/blitz",
"standard": "EIP3091"
}
]
},
{
"name": "Kalar Chain",
"chain": "KLC",
"icon": "kalarchain",
"rpc": [
"https://rpc-api.kalarchain.tech"
],
"faucets": [],
"nativeCurrency": {
"name": "Kalar",
"symbol": "KLC",
"decimals": 18
},
"infoURL": "https://kalarchain.tech",
"shortName": "KLC",
"chainId": 1379,
"networkId": 1379,
"explorers": [
{
"name": "kalarscan",
"url": "https://explorer.kalarchain.tech",
"icon": "kalarscan",
"standard": "EIP3091"
}
]
},
{
"name": "WhiteBIT Network",
"chain": "WBT",
"rpc": [
"https://rpc.whitebit.network"
],
"faucets": [],
"nativeCurrency": {
"name": "WhiteBIT Coin",
"symbol": "WBT",
"decimals": 18
},
"infoURL": "https://whitebit.network",
"shortName": "wbt",
"chainId": 1875,
"networkId": 1875,
"icon": "whitebit",
"explorers": [
{
"name": "wb-explorer",
"url": "https://explorer.whitebit.network",
"standard": "EIP3091"
}
]
},
{
"name": "Sports Chain Network",
"chain": "SCN",
"rpc": [
"https://rpc.sportschainnetwork.xyz/"
],
"faucets": [],
"nativeCurrency": {
"name": "SCN",
"symbol": "SCN",
"decimals": 18
},
"infoURL": "https://sportschainnetwork.xyz",
"shortName": "SCN",
"chainId": 1904,
"networkId": 1904,
"icon": "scn",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.sportschainnetwork.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Merkle Scan",
"chain": "MRK",
"icon": "merklescan",
"rpc": [
"https://marklechain-rpc.merklescan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Merkle",
"symbol": "MRK",
"decimals": 18
},
"infoURL": "https://merklescan.com",
"shortName": "MRK",
"chainId": 1909,
"networkId": 1909,
"explorers": [
{
"name": "blockscout",
"url": "https://merklescan.com",
"standard": "none"
}
]
},
{
"name": "SatoshIE",
"chain": "TUSHY",
"rpc": [
"http://rpc.satosh.ie"
],
"faucets": [],
"nativeCurrency": {
"name": "Tushy Token",
"symbol": "TUSHY",
"decimals": 18
},
"infoURL": "https://satosh.ie",
"shortName": "satoshie",
"chainId": 1985,
"networkId": 1985,
"icon": "satoshie",
"explorers": [
{
"name": "mainnetexplorer",
"url": "http://explore.satosh.ie",
"icon": "satoshie",
"standard": "none"
}
]
},
{
"name": "SatoshIE Testnet",
"chain": "TUSHY",
"rpc": [
"http://testnet.satosh.ie"
],
"faucets": [],
"nativeCurrency": {
"name": "Tushy Token",
"symbol": "TUSHY",
"decimals": 18
},
"infoURL": "https://satosh.ie",
"shortName": "satoshie_testnet",
"chainId": 1986,
"networkId": 1986,
"icon": "satoshie",
"explorers": [
{
"name": "testnetexplorer",
"url": "http://explore-testnet.satosh.ie",
"icon": "satoshie",
"standard": "none"
}
]
},
{
"name": "Centrifuge",
"chain": "CFG",
"rpc": [
"wss://fullnode.parachain.centrifuge.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Centrifuge",
"symbol": "CFG",
"decimals": 18
},
"infoURL": "https://centrifuge.io",
"shortName": "cfg",
"chainId": 2031,
"networkId": 2031,
"explorers": [
{
"name": "subscan",
"url": "https://centrifuge.subscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Catalyst",
"chain": "CFG",
"rpc": [
"wss://fullnode.catalyst.cntrfg.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Catalyst CFG",
"symbol": "NCFG",
"decimals": 18
},
"infoURL": "https://centrifuge.io",
"shortName": "ncfg",
"chainId": 2032,
"networkId": 2032
},
{
"name": "Kiwi Subnet",
"chain": "KIWI",
"rpc": [
"https://subnets.avax.network/kiwi/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Shrapgas",
"symbol": "SHRAP",
"decimals": 18
},
"infoURL": "",
"shortName": "kiwi",
"chainId": 2037,
"networkId": 2037,
"explorers": [
{
"name": "KIWI Explorer",
"url": "https://subnets-test.avax.network/kiwi",
"standard": "EIP3091"
}
]
},
{
"name": "Shrapnel Testnet",
"chain": "SHRAPNEL",
"rpc": [
"https://subnets.avax.network/shrapnel/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "SHRAPG",
"symbol": "SHRAPG",
"decimals": 18
},
"infoURL": "https://www.shrapnel.com/",
"shortName": "shraptest",
"chainId": 2038,
"networkId": 2038,
"explorers": [
{
"name": "SHRAPNEL Explorer",
"url": "https://subnets-test.avax.network/shrapnel",
"standard": "EIP3091"
}
]
},
{
"name": "Movo Smart Chain Mainnet",
"chain": "MOVO",
"icon": "movo",
"rpc": [
"https://msc-rpc.movoscan.com",
"https://msc-rpc.movochain.org",
"https://msc-rpc.movoswap.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Movo Smart Chain",
"symbol": "MOVO",
"decimals": 18
},
"infoURL": "https://movo.uk",
"shortName": "movo",
"chainId": 2049,
"networkId": 2049,
"slip44": 2050,
"explorers": [
{
"name": "movoscan",
"url": "https://movoscan.com",
"icon": "movoscan",
"standard": "none"
}
]
},
{
"name": "Altair",
"chain": "AIR",
"rpc": [
"wss://fullnode.altair.centrifuge.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Altair",
"symbol": "AIR",
"decimals": 18
},
"infoURL": "https://centrifuge.io",
"shortName": "air",
"chainId": 2088,
"networkId": 2088
},
{
"name": "Algol",
"chain": "algol",
"rpc": [
"wss://fullnode.algol.cntrfg.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Algol",
"symbol": "ALGL",
"decimals": 18
},
"infoURL": "https://centrifuge.io",
"shortName": "algl",
"chainId": 2089,
"networkId": 2089
},
{
"name": "BigShortBets",
"chain": "BIGSB",
"rpc": [
"https://market.bigsb.io",
"wss://market.bigsb.io"
],
"faucets": [],
"nativeCurrency": {
"name": "USD Coin",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://bigshortbets.com/",
"shortName": "bigsb",
"chainId": 2137,
"networkId": 2137,
"explorers": []
},
{
"name": "Krest Network",
"chain": "Krest",
"icon": "krest",
"rpc": [
"https://erpc-krest.peaq.network",
"https://krest.unitedbloc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Krest",
"symbol": "KRST",
"decimals": 18
},
"infoURL": "https://www.peaq.network",
"shortName": "KRST",
"chainId": 2241,
"networkId": 2241,
"explorers": [
{
"name": "Polkadot.js",
"url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer",
"standard": "none"
},
{
"name": "Subscan",
"url": "https://krest.subscan.io",
"standard": "none"
}
]
},
{
"name": "Ebro Network",
"chain": "ebro",
"rpc": [
"https://greendinoswap.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ebro",
"symbol": "ebro",
"decimals": 18
},
"infoURL": "https://www.ebrochain.com",
"shortName": "ebro",
"chainId": 2306,
"networkId": 2306
},
{
"name": "Unicorn Ultra Nebulas Testnet",
"chain": "u2u",
"rpc": [
"https://rpc-nebulas-testnet.uniultra.xyz"
],
"faucets": [
"https://faucet.uniultra.xyz"
],
"nativeCurrency": {
"name": "Unicorn Ultra Nebulas Testnet",
"symbol": "U2U",
"decimals": 18
},
"infoURL": "https://uniultra.xyz",
"shortName": "u2u_nebulas",
"chainId": 2484,
"networkId": 2484,
"icon": "u2u_nebulas",
"explorers": [
{
"icon": "u2u_nebulas",
"name": "U2U Explorer",
"url": "https://testnet.u2uscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Fraxchain Testnet",
"chain": "FRAX",
"rpc": [
"https://rpc.testnet.frax.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Frax Ether",
"symbol": "frxETH",
"decimals": 18
},
"infoURL": "https://testnet.frax.com",
"shortName": "fraxchain-testnet",
"chainId": 2522,
"networkId": 2522,
"explorers": [],
"status": "active"
},
{
"name": "K-LAOS",
"title": "K-LAOS: LAOS on Kusama",
"chain": "K-LAOS",
"icon": "k-laos",
"rpc": [
"https://rpc.klaos.laosfoundation.io",
"wss://rpc.klaos.laosfoundation.io"
],
"faucets": [],
"nativeCurrency": {
"name": "KLAOS",
"symbol": "KLAOS",
"decimals": 18
},
"infoURL": "https://www.laosfoundation.io/",
"shortName": "k-laos",
"chainId": 2718,
"networkId": 2718,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.klaos.laosfoundation.io",
"icon": "k-laos",
"standard": "EIP3091"
}
]
},
{
"name": "Immu3 EVM",
"chain": "EVMCC",
"rpc": [
"https://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network",
"wss://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "IMMU",
"symbol": "IMMU",
"decimals": 18
},
"infoURL": "https://immu3.io",
"shortName": "Immu3",
"chainId": 3100,
"networkId": 3100,
"explorers": []
},
{
"name": "Vulture EVM Beta",
"chain": "VFIEVMCC",
"rpc": [
"https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network",
"wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "VFI",
"symbol": "VFI",
"decimals": 18
},
"infoURL": "https://vulture.finance",
"shortName": "VFI",
"chainId": 3102,
"networkId": 3102,
"explorers": []
},
{
"name": "Dubxcoin network",
"chain": "DUBX",
"rpc": [
"https://rpcmain.arabianchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Dubxcoin mainnet",
"symbol": "DUBX",
"decimals": 18
},
"infoURL": "https://arabianchain.org",
"shortName": "dubx",
"chainId": 3269,
"networkId": 3269
},
{
"name": "Dubxcoin testnet",
"chain": "TESTDUBX",
"rpc": [
"https://rpctestnet.arabianchain.org"
],
"faucets": [
"https://faucet.arabianchain.org/"
],
"nativeCurrency": {
"name": "Dubxcoin testnet",
"symbol": "TDUBX",
"decimals": 18
},
"infoURL": "https://arabianchain.org",
"shortName": "testdubx",
"chainId": 3270,
"networkId": 3270
},
{
"name": "iChain Network",
"chain": "iChain",
"rpc": [
"https://rpc.ichainscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ISLAMICOIN",
"symbol": "ISLAMI",
"decimals": 18
},
"infoURL": "https://islamicoin.finance",
"shortName": "ISLAMI",
"chainId": 3639,
"networkId": 3639,
"explorers": [
{
"name": "iChainscan",
"url": "https://ichainscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Xpla Testnet",
"chain": "XPLATest",
"rpc": [
"https://dimension-rpc.xpla.dev"
],
"faucets": [
"https://faucet.xpla.io"
],
"nativeCurrency": {
"name": "XPLA",
"symbol": "XPLA",
"decimals": 18
},
"infoURL": "https://xpla.io",
"shortName": "xplatest",
"chainId": 3701,
"networkId": 3701,
"icon": "xpla",
"explorers": [
{
"name": "XPLA Explorer",
"url": "https://explorer.xpla.io",
"standard": "none"
}
],
"status": "deprecated"
},
{
"name": "KalyChain Mainnet",
"chain": "KLC",
"icon": "kalychain",
"rpc": [
"https://rpc.kalychain.io/rpc"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "KalyCoin",
"symbol": "KLC",
"decimals": 18
},
"infoURL": "https://kalychain.io",
"shortName": "kalymainnet",
"chainId": 3888,
"networkId": 3888,
"explorers": [
{
"name": "KalyScan",
"url": "https://kalyscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "KalyChain Testnet",
"chain": "KLC",
"icon": "kalychain",
"rpc": [
"https://testnetrpc.kalychain.io/rpc"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "KalyCoin",
"symbol": "KLC",
"decimals": 18
},
"infoURL": "https://kalychain.io",
"shortName": "kalytestnet",
"chainId": 3889,
"networkId": 3889,
"explorers": [
{
"name": "KalyScan",
"url": "https://testnet.kalyscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "X1 Fastnet",
"chain": "X1",
"rpc": [
"https://x1-fastnet.xen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "XN",
"symbol": "XN",
"decimals": 18
},
"infoURL": "https://docs.xen.network/go-x1/",
"shortName": "x1-fastnet",
"chainId": 4003,
"networkId": 4003,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.x1-fastnet.xen.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Humans.ai Testnet",
"chain": "Humans Testnet",
"rpc": [
"https://evm-rpc.testnet.humans.zone"
],
"faucets": [],
"nativeCurrency": {
"name": "HEART",
"symbol": "HEART",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://humans.ai",
"shortName": "humans_testnet",
"chainId": 4139,
"networkId": 4139,
"icon": "humans-dark"
},
{
"name": "Beam",
"chain": "BEAM",
"rpc": [
"https://subnets.avax.network/beam/mainnet/rpc",
"wss://subnets.avax.network/beam/mainnet/ws"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.onbeam.com"
],
"nativeCurrency": {
"name": "Beam",
"symbol": "BEAM",
"decimals": 18
},
"infoURL": "https://www.onbeam.com",
"shortName": "beam",
"icon": "beam",
"chainId": 4337,
"networkId": 4337,
"explorers": [
{
"name": "Beam Explorer",
"url": "https://subnets.avax.network/beam",
"standard": "EIP3091"
}
]
},
{
"name": "Credit Smart Chain Mainnet",
"chain": "CREDIT",
"rpc": [
"https://rpc.creditsmartchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Credit",
"symbol": "CREDIT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://creditsmartchain.com",
"shortName": "CreditEdge",
"chainId": 4400,
"networkId": 4400,
"icon": "credit",
"explorers": [
{
"name": "Creditscan",
"url": "https://scan.creditsmartchain.com",
"icon": "credit",
"standard": "EIP3091"
}
]
},
{
"name": "Orderly Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "www.orderly.network",
"shortName": "orderlyl2",
"chainId": 4460,
"networkId": 4460,
"icon": "orderlyTestnet",
"explorers": [
{
"name": "basescout",
"url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Globel Chain",
"chain": "GC",
"icon": "globelchain",
"rpc": [
"https://rpc.gcscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Globel Chain",
"symbol": "GC",
"decimals": 18
},
"infoURL": "https://gcscan.io",
"shortName": "GC",
"chainId": 4893,
"networkId": 4893,
"explorers": [
{
"name": "blockscout",
"url": "https://gcscan.io",
"standard": "none"
}
]
},
{
"name": "Treasurenet Mainnet Alpha",
"chain": "Treasurenet Mainnet Alpha",
"icon": "treasurenet",
"rpc": [
"https://node0.treasurenet.io",
"https://node1.treasurenet.io",
"https://node2.treasurenet.io",
"https://node3.treasurenet.io"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "UNIT",
"symbol": "UNIT",
"decimals": 18
},
"infoURL": "https://www.treasurenet.io",
"shortName": "treasurenet",
"chainId": 5002,
"networkId": 5002,
"explorers": [
{
"name": "Treasurenet EVM BlockExplorer",
"url": "https://evmexplorer.treasurenet.io",
"icon": "treasurenet",
"standard": "none"
}
]
},
{
"name": "Mantle Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.sepolia.mantle.xyz"
],
"faucets": [
"https://faucet.sepolia.mantle.xyz"
],
"nativeCurrency": {
"name": "Sepolia Mantle",
"symbol": "MNT",
"decimals": 18
},
"infoURL": "https://mantle.xyz",
"shortName": "mnt-sep",
"chainId": 5003,
"networkId": 5003,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.sepolia.mantle.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Treasurenet Testnet",
"chain": "Treasurenet Testnet",
"icon": "treasurenet",
"rpc": [
"https://node0.testnet.treasurenet.io",
"https://node1.testnet.treasurenet.io",
"https://node2.testnet.treasurenet.io",
"https://node3.testnet.treasurenet.io"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "UNIT",
"symbol": "UNIT",
"decimals": 18
},
"infoURL": "https://www.testnet.treasurenet.io",
"shortName": "tntest",
"chainId": 5005,
"networkId": 5005,
"explorers": [
{
"name": "Treasurenet EVM BlockExplorer",
"url": "https://evmexplorer.testnet.treasurenet.io",
"icon": "treasurenet",
"standard": "none"
}
]
},
{
"name": "Tritanium Testnet",
"chain": "TRITANIUM",
"rpc": [
"https://nodetestnet-station-one.tritanium.network/",
"https://nodetestnet-station-two.tritanium.network/"
],
"faucets": [
"https://faucet.tritanium.network"
],
"nativeCurrency": {
"name": "Tritanium Native Token",
"symbol": "tTRN",
"decimals": 18
},
"infoURL": "https://tritanium.network",
"shortName": "ttrn",
"chainId": 5353,
"networkId": 5353,
"icon": "tritanium",
"explorers": [
{
"name": "TRITANIUM Testnet Explorer",
"icon": "tritanium",
"url": "https://testnet.tritanium.network",
"standard": "none"
}
]
},
{
"name": "VEX EVM TESTNET",
"chain": "vex",
"icon": "vex",
"rpc": [
"https://testnet.vexascan.com/evmapi"
],
"faucets": [
"https://t.me/vexfaucetbot"
],
"nativeCurrency": {
"name": "VEX EVM TESTNET",
"symbol": "VEX",
"decimals": 18
},
"infoURL": "https://vexanium.com",
"shortName": "VEX",
"chainId": 5522,
"networkId": 5522,
"explorers": [
{
"name": "Vexascan-EVM-TestNet",
"url": "https://testnet.vexascan.com/evmexplorer",
"standard": "EIP3091"
}
]
},
{
"name": "opBNB Testnet",
"chain": "opBNB",
"icon": "bnbchain",
"rpc": [
"https://opbnb-testnet-rpc.bnbchain.org",
"https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3",
"wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3",
"https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5",
"wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5"
],
"faucets": [
"https://testnet.bnbchain.org/faucet-smart"
],
"nativeCurrency": {
"name": "BNB Chain Native Token",
"symbol": "tBNB",
"decimals": 18
},
"infoURL": "https://opbnb.bnbchain.org/en",
"shortName": "obnbt",
"chainId": 5611,
"networkId": 5611,
"explorers": [
{
"name": "bscscan-opbnb-testnet",
"url": "https://opbnb-testnet.bscscan.com",
"standard": "EIP3091"
},
{
"name": "opbnbscan",
"url": "https://opbnbscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Arcturus Chain Testnet",
"chain": "ARCTURUS",
"rpc": [
"http://185.99.196.3:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Test Arct",
"symbol": "tARCT",
"decimals": 18
},
"infoURL": "https://arcturuschain.io",
"shortName": "ARCT",
"chainId": 5616,
"networkId": 5616
},
{
"name": "Tanssi EVM ContainerChain",
"chain": "EVMCC",
"rpc": [
"https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network",
"wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Unit",
"symbol": "Unit",
"decimals": 18
},
"infoURL": "https://tanssi.network",
"shortName": "TanssiCC",
"chainId": 5678,
"networkId": 5678,
"explorers": []
},
{
"name": "Digit Soul Smart Chain",
"chain": "DGS",
"rpc": [
"https://dsc-rpc.digitsoul.co.th"
],
"faucets": [],
"icon": "pnet",
"nativeCurrency": {
"name": "Digit Coin",
"symbol": "DGC",
"decimals": 18
},
"infoURL": "",
"shortName": "DGS",
"chainId": 6363,
"networkId": 6363
},
{
"name": "Horizen EON Mainnet",
"shortName": "EON",
"chain": "EON",
"icon": "eon",
"rpc": [
"https://eon-rpc.horizenlabs.io/ethv1",
"https://rpc.ankr.com/horizen_eon"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Zencash",
"symbol": "ZEN",
"decimals": 18
},
"infoURL": "https://horizen.io/",
"chainId": 7332,
"networkId": 7332,
"slip44": 121,
"explorers": [
{
"name": "Horizen EON Block Explorer",
"url": "https://eon-explorer.horizenlabs.io",
"icon": "eon",
"standard": "EIP3091"
}
]
},
{
"name": "MaalChain Testnet",
"chain": "MaalChain Testnet",
"icon": "maal-test",
"rpc": [
"https://node1.maalscan.io/",
"https://rpc-bntest.maalscan.io/"
],
"faucets": [
"https://faucet-testnet.maalscan.io/"
],
"nativeCurrency": {
"name": "MAAL",
"symbol": "MAAL",
"decimals": 18
},
"infoURL": "https://www.maalchain.com/",
"shortName": "maal-test",
"chainId": 7860,
"networkId": 7860,
"explorers": [
{
"name": "maalscan testnet",
"url": "https://testnet.maalscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Torus Mainnet",
"chain": "TQF",
"icon": "torus",
"rpc": [
"https://rpc.toruschain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "TQF",
"symbol": "TQF",
"decimals": 18
},
"infoURL": "https://docs.toruschain.com",
"shortName": "tqf",
"chainId": 8192,
"networkId": 8192,
"explorers": [
{
"name": "blockscout",
"url": "https://toruscan.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Torus Testnet",
"chain": "TQF",
"icon": "torus",
"rpc": [
"https://rpc.testnet.toruschain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "tTQF",
"symbol": "TTQF",
"decimals": 18
},
"infoURL": "https://docs.toruschain.com",
"shortName": "ttqf",
"chainId": 8194,
"networkId": 8194,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.toruscan.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Hela Official Runtime Mainnet",
"chain": "Hela",
"icon": "hela",
"rpc": [
"https://mainnet-rpc.helachain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Hela HLUSD",
"symbol": "HLUSD",
"decimals": 18
},
"infoURL": "https://helalabs.com",
"shortName": "hela",
"chainId": 8668,
"networkId": 8668,
"explorers": [
{
"name": "Hela Official Runtime Mainnet Explorer",
"url": "https://mainnet-blockexplorer.helachain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Codefin Mainnet",
"chain": "COF",
"icon": "codefin",
"rpc": [
"https://chain-rpc.codefin.pro"
],
"faucets": [],
"nativeCurrency": {
"name": "Codefin",
"symbol": "COF",
"decimals": 18
},
"infoURL": "https://network.codefin.pro",
"shortName": "COF",
"chainId": 9223,
"networkId": 9223,
"explorers": [
{
"name": "Codefin Net Explorer",
"url": "https://explorer.codefin.pro",
"standard": "EIP3091"
}
]
},
{
"name": "IMPERIUM TESTNET",
"chain": "tIMP",
"rpc": [
"https://data-aws-testnet.imperiumchain.com",
"https://data-aws2-testnet.imperiumchain.com"
],
"faucets": [
"https://faucet.imperiumchain.com/"
],
"nativeCurrency": {
"name": "tIMP",
"symbol": "tIMP",
"decimals": 18
},
"infoURL": "https://imperiumchain.com",
"shortName": "tIMP",
"chainId": 9818,
"networkId": 9818,
"icon": "timp",
"explorers": [
{
"name": "IMPERIUM TESTNET Explorer",
"icon": "timp",
"url": "https://network.impscan.com",
"standard": "none"
}
]
},
{
"name": "IMPERIUM MAINNET",
"chain": "IMP",
"rpc": [
"https://data-aws-mainnet.imperiumchain.com",
"https://data-aws2-mainnet.imperiumchain.com"
],
"faucets": [
"https://faucet.imperiumchain.com/"
],
"nativeCurrency": {
"name": "IMP",
"symbol": "IMP",
"decimals": 18
},
"infoURL": "https://imperiumchain.com",
"shortName": "IMP",
"chainId": 9819,
"networkId": 9819,
"icon": "imp",
"explorers": [
{
"name": "IMPERIUM Explorer",
"icon": "imp",
"url": "https://impscan.com",
"standard": "none"
}
]
},
{
"name": "Mind Smart Chain Testnet",
"chain": "tMIND",
"icon": "mindchain",
"rpc": [
"https://testnet-msc.mindchain.info/",
"wss://testnet-msc.mindchain.info/ws"
],
"faucets": [
"https://faucet.mindchain.info/"
],
"nativeCurrency": {
"name": "MIND Coin",
"symbol": "tMIND",
"decimals": 18
},
"infoURL": "https://mindchain.info",
"shortName": "tMIND",
"chainId": 9977,
"networkId": 9977,
"explorers": [
{
"name": "Mind Chain explorer",
"url": "https://testnet.mindscan.info",
"standard": "EIP3091"
}
]
},
{
"name": "Agung Network",
"chain": "Agung",
"icon": "agung",
"rpc": [
"https://rpcpc1-qa.agung.peaq.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Agung",
"symbol": "AGNG",
"decimals": 18
},
"infoURL": "https://www.peaq.network",
"shortName": "AGNG",
"chainId": 9990,
"networkId": 9990,
"explorers": [
{
"name": "Polkadot.js",
"url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer",
"standard": "none"
},
{
"name": "Subscan",
"url": "https://agung.subscan.io",
"standard": "none"
}
]
},
{
"name": "Mind Smart Chain Mainnet",
"chain": "MIND",
"icon": "mindchain",
"rpc": [
"https://rpc-msc.mindchain.info/",
"https://seednode.mindchain.info",
"https://archive.mindchain.info/",
"wss://archive.mindchain.info/ws",
"wss://seednode.mindchain.info/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "MIND Coin",
"symbol": "MIND",
"decimals": 18
},
"infoURL": "https://mindchain.info",
"shortName": "MIND",
"chainId": 9996,
"networkId": 9996,
"explorers": [
{
"name": "Mind Chain explorer",
"url": "https://mainnet.mindscan.info",
"standard": "EIP3091"
}
]
},
{
"name": "Japan Open Chain Testnet",
"chain": "JOCT",
"rpc": [
"https://rpc-1.testnet.japanopenchain.org:8545",
"https://rpc-2.testnet.japanopenchain.org:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Japan Open Chain Testnet Token",
"symbol": "JOCT",
"decimals": 18
},
"infoURL": "https://www.japanopenchain.org/",
"shortName": "joct",
"chainId": 10081,
"networkId": 10081,
"explorers": [
{
"name": "Testnet Block Explorer",
"url": "https://explorer.testnet.japanopenchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "MaxxChain Mainnet",
"chain": "MaxxChain",
"rpc": [
"https://rpc.maxxchain.org",
"https://rpc1.maxxchain.org",
"https://rpc2.maxxchain.org"
],
"faucets": [
"https://faucet.maxxchain.org"
],
"nativeCurrency": {
"name": "Power",
"symbol": "PWR",
"decimals": 18
},
"icon": "pwr",
"infoURL": "https://www.maxxchain.org/",
"shortName": "PWR",
"chainId": 10201,
"networkId": 10201,
"explorers": [
{
"name": "MaxxChain Block Explorer",
"url": "https://explorer.maxxchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Arthera Testnet",
"chain": "AA",
"icon": "arthera",
"rpc": [
"https://rpc-test.arthera.net"
],
"faucets": [
"https://faucet.arthera.net"
],
"nativeCurrency": {
"name": "Arthera",
"symbol": "AA",
"decimals": 18
},
"infoURL": "https://docs.arthera.net",
"shortName": "aa",
"chainId": 10243,
"networkId": 10243,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer-test.arthera.net",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Worldland Testnet",
"chain": "Worldland",
"icon": "worldland",
"rpc": [
"https://gwangju.worldland.foundation"
],
"faucets": [],
"nativeCurrency": {
"name": "Worldland",
"symbol": "WL",
"decimals": 18
},
"infoURL": "https://worldland.foundation",
"shortName": "TWLC",
"chainId": 10395,
"networkId": 10395,
"explorers": [
{
"name": "Worldland Explorer",
"url": "https://testscan.worldland.foundation",
"standard": "EIP3091"
}
]
},
{
"name": "Polygon Supernet Arianee",
"chain": "Arianee",
"rpc": [
"https://rpc.polygonsupernet.public.arianee.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Arianee",
"symbol": "ARIA20",
"decimals": 18
},
"infoURL": "https://arianee.org",
"shortName": "Arianee",
"chainId": 11891,
"networkId": 11891,
"explorers": [
{
"name": "Polygon Supernet Arianee Explorer",
"url": "https://polygonsupernet.explorer.arianee.net",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-1",
"type": "L2"
}
},
{
"name": "Astar zkEVM",
"shortName": "astrzk",
"title": "Astar zkEVM Mainnet",
"chain": "ETH",
"icon": "astarzk",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://astar.network",
"chainId": 12611,
"networkId": 12611,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
},
"status": "incubating"
},
{
"name": "Quantum Chain Testnet",
"chain": "tQNET",
"icon": "qnet",
"rpc": [
"https://testnet-rpc.quantumscan.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Quantum Chain",
"symbol": "tQNET",
"decimals": 18
},
"infoURL": "https://quantumnetwork.gg",
"shortName": "tqnet",
"chainId": 12890,
"networkId": 12890,
"explorers": [
{
"name": "Quantum Scan Testnet",
"url": "https://testnet.quantumscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Beam Testnet",
"chain": "BEAM",
"rpc": [
"https://subnets.avax.network/beam/testnet/rpc",
"wss://subnets.avax.network/beam/testnet/ws"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.avax.network/?subnet=beam",
"https://faucet.onbeam.com"
],
"nativeCurrency": {
"name": "Beam",
"symbol": "BEAM",
"decimals": 18
},
"infoURL": "https://www.onbeam.com",
"shortName": "beam-testnet",
"icon": "beam",
"chainId": 13337,
"networkId": 13337,
"explorers": [
{
"name": "Beam Explorer",
"url": "https://subnets-test.avax.network/beam",
"standard": "EIP3091"
}
]
},
{
"name": "Immutable zkEVM Testnet",
"chain": "Immutable zkEVM",
"rpc": [
"https://rpc.testnet.immutable.com"
],
"faucets": [
"https://docs.immutable.com/docs/zkEVM/guides/faucet"
],
"nativeCurrency": {
"name": "Test IMX",
"symbol": "tIMX",
"decimals": 18
},
"infoURL": "https://www.immutable.com",
"shortName": "imx-testnet",
"chainId": 13473,
"networkId": 13473,
"icon": "immutable",
"explorers": [
{
"name": "Immutable Testnet explorer",
"url": "https://explorer.testnet.immutable.com",
"standard": "EIP3091",
"icon": "immutable"
}
]
},
{
"name": "Humanode Testnet 5 Israfel",
"chain": "Humanode Testnet 5",
"rpc": [
"https://explorer-rpc-http.testnet5.stages.humanode.io"
],
"faucets": [
"https://t.me/HumanodeTestnet5FaucetBot"
],
"nativeCurrency": {
"name": "eHMND",
"symbol": "eHMND",
"decimals": 18
},
"infoURL": "https://humanode.io",
"shortName": "hmnd-t5",
"chainId": 14853,
"networkId": 14853,
"explorers": []
},
{
"name": "Immutable zkEVM Devnet",
"chain": "Immutable zkEVM",
"rpc": [
"https://rpc.dev.immutable.com"
],
"faucets": [
"https://docs.immutable.com/docs/zkEVM/guides/faucet"
],
"nativeCurrency": {
"name": "Dev IMX",
"symbol": "dIMX",
"decimals": 18
},
"infoURL": "https://www.immutable.com",
"shortName": "imx-devnet",
"chainId": 15003,
"networkId": 15003,
"icon": "immutable",
"explorers": [
{
"name": "Immutable Devnet explorer",
"url": "https://explorer.dev.immutable.com",
"standard": "EIP3091",
"icon": "immutable"
}
]
},
{
"name": "Holesky",
"title": "Ethereum Testnet Holesky",
"chain": "ETH",
"rpc": [
"https://rpc.holesky.ethpandaops.io",
"https://ethereum-holesky.publicnode.com",
"wss://ethereum-holesky.publicnode.com"
],
"faucets": [
"https://faucet.holesky.ethpandaops.io",
"https://holesky-faucet.pk910.de"
],
"nativeCurrency": {
"name": "Testnet ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://holesky.ethpandaops.io",
"shortName": "holesky",
"chainId": 17000,
"networkId": 17000,
"icon": "ethereum",
"status": "incubating",
"explorers": [
{
"name": "Holesky Explorer",
"url": "https://holesky.beaconcha.in",
"icon": "ethereum",
"standard": "EIP3091"
},
{
"name": "otterscan-holesky",
"url": "https://holesky.otterscan.io",
"icon": "ethereum",
"standard": "EIP3091"
},
{
"name": "Holesky Etherscan",
"url": "https://holesky.etherscan.io",
"icon": "ethereum",
"standard": "EIP3091"
}
]
},
{
"name": "Redstone Holesky Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.holesky.redstone.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Redstone Testnet Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://redstone.xyz/docs/network-info",
"shortName": "redstone",
"chainId": 17001,
"networkId": 17001,
"icon": "redstone",
"explorers": [
{
"name": "Redstone Holesky Explorer",
"url": "https://explorer.holesky.redstone.xyz",
"icon": "ethereum",
"standard": "EIP3091"
}
]
},
{
"name": "G8Chain Mainnet",
"chain": "G8C",
"icon": "G8Chain",
"rpc": [
"https://mainnet-rpc.oneg8.network"
],
"faucets": [
"https://faucet.oneg8.network"
],
"nativeCurrency": {
"name": "G8Chain",
"symbol": "G8C",
"decimals": 18
},
"infoURL": "https://oneg8.one",
"shortName": "G8Cm",
"chainId": 17171,
"networkId": 17171,
"explorers": [
{
"name": "G8Chain",
"url": "https://mainnet.oneg8.network",
"standard": "EIP3091"
}
]
},
{
"name": "Smart Trade Networks",
"chain": "Smart Trade Networks",
"rpc": [
"https://beefledgerwallet.com:8544"
],
"faucets": [],
"nativeCurrency": {
"name": "STN",
"symbol": "STN",
"decimals": 18
},
"infoURL": "https://www.smarttradenetworks.com",
"shortName": "STN",
"chainId": 18122,
"networkId": 18122,
"icon": "stn",
"explorers": [
{
"name": "stnscan",
"url": "https://stnscan.com",
"icon": "stn",
"standard": "none"
}
]
},
{
"name": "G8Chain Testnet",
"chain": "G8C",
"icon": "G8Chain",
"rpc": [
"https://testnet-rpc.oneg8.network"
],
"faucets": [
"https://faucet.oneg8.network"
],
"nativeCurrency": {
"name": "G8Coin",
"symbol": "G8C",
"decimals": 18
},
"infoURL": "https://oneg8.one",
"shortName": "G8Ct",
"chainId": 18181,
"networkId": 18181,
"explorers": [
{
"name": "G8Chain",
"url": "https://testnet.oneg8.network",
"standard": "EIP3091"
}
]
},
{
"name": "Nautilus Mainnet",
"chain": "ETH",
"icon": "nautilus",
"rpc": [
"https://api.nautilus.nautchain.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Zebec",
"symbol": "ZBC",
"decimals": 18
},
"infoURL": "https://docs.nautchain.xyz",
"shortName": "NAUTCHAIN",
"chainId": 22222,
"networkId": 22222,
"explorers": [
{
"name": "Nautscan",
"url": "https://nautscan.com",
"standard": "EIP3091",
"icon": "nautilus"
}
]
},
{
"name": "MCH Verse Mainnet",
"chain": "MCH Verse",
"icon": "mch_verse",
"rpc": [
"https://rpc.oasys.mycryptoheroes.net"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://www.mycryptoheroes.net/verse",
"shortName": "MCHV",
"chainId": 29548,
"networkId": 29548,
"explorers": [
{
"name": "MCH Verse Explorer",
"url": "https://explorer.oasys.mycryptoheroes.net",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Cerium Testnet",
"chain": "CAU",
"icon": "canxium",
"rpc": [
"https://cerium-rpc.canxium.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Canxium",
"symbol": "CAU",
"decimals": 18
},
"infoURL": "https://canxium.org",
"shortName": "ceri",
"chainId": 30103,
"networkId": 30103,
"explorers": [
{
"name": "canxium explorer",
"url": "https://cerium-explorer.canxium.net",
"standard": "none"
}
]
},
{
"name": "Zilliqa EVM Isolated Server",
"chain": "ZIL",
"rpc": [
"https://zilliqa-isolated-server.zilliqa.com/"
],
"faucets": [
"https://dev-wallet.zilliqa.com/faucet?network=isolated_server"
],
"nativeCurrency": {
"name": "Zilliqa",
"symbol": "ZIL",
"decimals": 18
},
"infoURL": "https://www.zilliqa.com/",
"shortName": "zil-isolated-server",
"chainId": 32990,
"networkId": 32990,
"icon": "zilliqa",
"explorers": [
{
"name": "Zilliqa EVM Isolated Server Explorer",
"url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com",
"standard": "none"
}
]
},
{
"name": "Cloudverse Subnet",
"chain": "CLOUDVERSE",
"rpc": [
"https://subnets.avax.network/cloudverse/mainnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "XCLOUD",
"symbol": "XCLOUD",
"decimals": 18
},
"infoURL": "https://muadao.build/",
"shortName": "cloudverse",
"chainId": 33210,
"networkId": 33210,
"explorers": [
{
"name": "CLOUDVERSE Explorer",
"url": "https://subnets.avax.network/cloudverse",
"standard": "EIP3091"
}
]
},
{
"name": "Zilliqa EVM Devnet",
"chain": "ZIL",
"rpc": [
"https://api.devnet.zilliqa.com/"
],
"faucets": [
"https://faucet.devnet.zilliqa.com/"
],
"nativeCurrency": {
"name": "Zilliqa",
"symbol": "ZIL",
"decimals": 18
},
"infoURL": "https://www.zilliqa.com/",
"shortName": "zil-devnet",
"chainId": 33385,
"networkId": 33385,
"icon": "zilliqa",
"explorers": [
{
"name": "Zilliqa EVM Devnet Explorer",
"url": "https://otterscan.devnet.zilliqa.com",
"standard": "EIP3091"
}
]
},
{
"name": "Zilliqa 2 EVM Devnet",
"chain": "ZIL",
"rpc": [
"https://api.zq2-devnet.zilstg.dev"
],
"faucets": [
"https://faucet.zq2-devnet.zilstg.dev"
],
"nativeCurrency": {
"name": "Zilliqa",
"symbol": "ZIL",
"decimals": 18
},
"infoURL": "https://www.zilliqa.com/",
"shortName": "zq2-devnet",
"chainId": 33469,
"networkId": 33469,
"icon": "zilliqa",
"explorers": [
{
"name": "Zilliqa 2 EVM Devnet Explorer",
"url": "https://explorer.zq2-devnet.zilstg.dev",
"standard": "EIP3091"
}
]
},
{
"name": "ConnectorManager",
"chain": "Rangers",
"icon": "rangers",
"rpc": [
"https://cm.rangersprotocol.com/api/jsonrpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Rangers Protocol Gas",
"symbol": "cmRPG",
"decimals": 18
},
"infoURL": "https://rangersprotocol.com",
"shortName": "cmrpg",
"chainId": 38400,
"networkId": 38400,
"explorers": [
{
"name": "rangersscan",
"url": "https://scan.rangersprotocol.com",
"standard": "none"
}
]
},
{
"name": "ConnectorManager Robin",
"chain": "Rangers",
"icon": "rangers",
"rpc": [
"https://robin-cm.rangersprotocol.com/api/jsonrpc"
],
"faucets": [
"https://robin-faucet.rangersprotocol.com"
],
"nativeCurrency": {
"name": "Rangers Protocol Gas",
"symbol": "ttRPG",
"decimals": 18
},
"infoURL": "https://rangersprotocol.com",
"shortName": "ttrpg",
"chainId": 38401,
"networkId": 38401,
"explorers": [
{
"name": "rangersscan-robin",
"url": "https://robin-rangersscan.rangersprotocol.com",
"standard": "none"
}
]
},
{
"name": "Gesoten Verse Testnet",
"chain": "Gesoten Verse",
"rpc": [
"https://rpc.testnet.verse.gesoten.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://gesoten.com/",
"shortName": "GST",
"icon": "gesoten",
"chainId": 42801,
"networkId": 42801,
"explorers": [
{
"name": "Gesoten Verse Testnet Explorer",
"url": "https://explorer.testnet.verse.gesoten.com",
"standard": "EIP3091"
}
]
},
{
"name": "Kinto Testnet",
"title": "Kinto Testnet",
"chain": "ETH",
"rpc": [
"http://35.215.120.180:8545"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ethereum.org",
"shortName": "keth",
"chainId": 42888,
"networkId": 42888,
"explorers": [
{
"name": "kintoscan",
"url": "http://35.215.120.180:4000",
"standard": "EIP3091"
}
]
},
{
"name": "Electroneum Mainnet",
"chain": "Electroneum",
"rpc": [
"https://api.electroneum.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Electroneum",
"symbol": "ETN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://electroneum.com",
"shortName": "etn-mainnet",
"chainId": 52014,
"networkId": 52014,
"icon": "electroneum",
"explorers": [
{
"name": "blockscout",
"url": "https://blockexplorer.electroneum.com",
"icon": "electroneum",
"standard": "EIP3091"
}
]
},
{
"name": "VELO Labs Mainnet",
"chain": "NOVA chain",
"rpc": [
"https://nova.velo.org"
],
"faucets": [
"https://nova-faucet.velo.org"
],
"nativeCurrency": {
"name": "Nova",
"symbol": "NOVA",
"decimals": 18
},
"infoURL": "https://velo.org",
"shortName": "VELO",
"chainId": 56789,
"networkId": 56789,
"icon": "novachain",
"explorers": [
{
"name": "novascan",
"url": "https://novascan.velo.org",
"standard": "EIP3091"
}
]
},
{
"name": "Linea",
"title": "Linea Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc.linea.build",
"wss://rpc.linea.build",
"https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}",
"wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "Linea Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://linea.build",
"shortName": "linea",
"chainId": 59144,
"networkId": 59144,
"icon": "linea",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.linea.build"
}
]
},
"explorers": [
{
"name": "Etherscan",
"url": "https://lineascan.build",
"standard": "EIP3091",
"icon": "linea"
},
{
"name": "Blockscout",
"url": "https://explorer.linea.build",
"standard": "EIP3091",
"icon": "linea"
},
{
"name": "L2scan",
"url": "https://linea.l2scan.co",
"standard": "EIP3091",
"icon": "linea"
}
],
"status": "active"
},
{
"name": "Genesys Code Mainnet",
"chain": "GCODE",
"rpc": [
"https://mainnet.genesyscode.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "GenesysCode",
"symbol": "GCODE",
"decimals": 18
},
"infoURL": "https://genesyscode.io",
"shortName": "gcode",
"chainId": 59971,
"networkId": 59971,
"icon": "genesyscode",
"explorers": [
{
"name": "Genesys Scan",
"url": "https://genesysscan.io",
"icon": "genesyscode",
"standard": "none"
}
]
},
{
"name": "Janus Testnet",
"chain": "JanusNetwork",
"icon": "janusnetwork",
"rpc": [
"https://rpc.test.janusnetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Janus",
"symbol": "JNS",
"decimals": 18
},
"infoURL": "https://janus-network.gitbook.io/janus",
"shortName": "janusnetwork-testnet",
"chainId": 66988,
"networkId": 66988,
"status": "active",
"explorers": [
{
"name": "JanusNetwork Testnet Explorer",
"url": "https://beta.scan.janusnetwork.io",
"standard": "none"
}
]
},
{
"name": "DM2 Verse Mainnet",
"chain": "DM2 Verse",
"icon": "dm2verse",
"rpc": [
"https://rpc.dm2verse.dmm.com"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://seamoon.dmm.com",
"shortName": "dm2",
"chainId": 68770,
"networkId": 68770,
"explorers": [
{
"name": "DM2Verse Explorer",
"url": "https://explorer.dm2verse.dmm.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Foundry Chain Testnet",
"chain": "tFNC",
"icon": "fnc",
"rpc": [
"https://testnet-rpc.foundryscan.org/"
],
"faucets": [
"https://faucet.foundryscan.org"
],
"nativeCurrency": {
"name": "Foundry Chain Testnet",
"symbol": "tFNC",
"decimals": 18
},
"infoURL": "https://foundrychain.org",
"shortName": "fnc",
"chainId": 77238,
"networkId": 77238,
"explorers": [
{
"name": "Foundry Scan Testnet",
"url": "https://testnet-explorer.foundryscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Amplify Subnet",
"chain": "AMPLIFY",
"rpc": [
"https://subnets.avax.network/amplify/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "AMP",
"symbol": "AMP",
"decimals": 18
},
"infoURL": "https://www.avax.network",
"shortName": "amplify",
"chainId": 78430,
"networkId": 78430,
"explorers": [
{
"name": "AMPLIFY Explorer",
"url": "https://subnets-test.avax.network/amplify",
"standard": "EIP3091"
}
]
},
{
"name": "Bulletin Subnet",
"chain": "BULLETIN",
"rpc": [
"https://subnets.avax.network/bulletin/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "BLT",
"symbol": "BLT",
"decimals": 18
},
"infoURL": "https://www.avax.network",
"shortName": "bulletin",
"chainId": 78431,
"networkId": 78431,
"explorers": [
{
"name": "BULLETIN Explorer",
"url": "https://subnets-test.avax.network/bulletin",
"standard": "EIP3091"
}
]
},
{
"name": "Conduit Subnet",
"chain": "CONDUIT",
"rpc": [
"https://subnets.avax.network/conduit/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "CON",
"symbol": "CON",
"decimals": 18
},
"infoURL": "https://www.avax.network",
"shortName": "conduit",
"chainId": 78432,
"networkId": 78432,
"explorers": [
{
"name": "CONDUIT Explorer",
"url": "https://subnets-test.avax.network/conduit",
"standard": "EIP3091"
}
]
},
{
"name": "Nordek Mainnet",
"chain": "Nordek",
"rpc": [
"https://mainnet-rpc.nordekscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "NRK",
"symbol": "NRK",
"decimals": 18
},
"infoURL": "https://nordekscan.com",
"shortName": "nordek",
"chainId": 81041,
"networkId": 81041,
"explorers": [
{
"name": "nordek",
"url": "https://nordekscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Quantum Chain Mainnet",
"chain": "QNET",
"icon": "qnet",
"rpc": [
"https://rpc.quantumscan.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Quantum Chain",
"symbol": "QNET",
"decimals": 18
},
"infoURL": "https://quantumnetwork.gg",
"shortName": "qnet",
"chainId": 81720,
"networkId": 81720,
"explorers": [
{
"name": "Quantum Scan Mainnet",
"url": "https://quantumscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Base Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.base.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://base.org",
"shortName": "basesep",
"chainId": 84532,
"networkId": 84532,
"icon": "baseTestnet",
"explorers": [
{
"name": "basescout",
"url": "https://base-sepolia.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Aerie Network",
"chain": "Aerie",
"rpc": [
"https://mainnet.aerielab.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Aerie",
"symbol": "AER",
"decimals": 18
},
"infoURL": "https://aerielab.io/",
"shortName": "Aerie",
"chainId": 84886,
"networkId": 84886,
"icon": "aerie",
"explorers": [
{
"name": "Aerie Explorer",
"url": "https://explorer.aerielab.io",
"icon": "aerie",
"standard": "EIP3091"
}
]
},
{
"name": "Nautilus Proteus Testnet",
"chain": "ETH",
"icon": "nautilus",
"rpc": [
"https://api.proteus.nautchain.xyz/solana"
],
"faucets": [
"https://proteusfaucet.nautchain.xyz"
],
"nativeCurrency": {
"name": "Zebec Test Token",
"symbol": "tZBC",
"decimals": 18
},
"infoURL": "https://docs.nautchain.xyz",
"shortName": "NAUTTest",
"chainId": 88002,
"networkId": 88002,
"explorers": [
{
"name": "Nautscan",
"url": "https://proteus.nautscan.com",
"standard": "EIP3091",
"icon": "nautilus"
}
]
},
{
"name": "eLiberty Testnet",
"chain": "$EL",
"icon": "eLiberty",
"rpc": [
"https://testnet-rpc.eliberty.ngo"
],
"faucets": [
"https://faucet.eliberty.ngo"
],
"nativeCurrency": {
"name": "eLiberty",
"symbol": "$EL",
"decimals": 18
},
"infoURL": "https://eliberty.ngo",
"shortName": "ELt",
"chainId": 99099,
"networkId": 99099,
"explorers": [
{
"name": "eLiberty Testnet",
"url": "https://testnet.eliberty.ngo",
"standard": "EIP3091"
}
]
},
{
"name": "Taiko Jolnir L2",
"chain": "ETH",
"status": "incubating",
"icon": "taiko",
"rpc": [
"https://rpc.jolnir.taiko.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://taiko.xyz",
"shortName": "tko-jolnir",
"chainId": 167007,
"networkId": 167007,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.jolnir.taiko.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Bitica Chain Mainnet",
"chain": "BDCC",
"rpc": [
"https://mainnet-rpc.biticablockchain.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitica Coin",
"symbol": "BDCC",
"decimals": 18
},
"infoURL": "https://biticablockchain.com/",
"shortName": "bdcc",
"chainId": 188710,
"networkId": 188710,
"explorers": [
{
"name": "Bitica DPOS Blockchain Explorer",
"url": "https://biticablockchain.com",
"standard": "none"
}
]
},
{
"name": "X1 Devnet",
"chain": "X1",
"rpc": [
"https://x1-devnet.xen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "XN",
"symbol": "XN",
"decimals": 18
},
"infoURL": "https://docs.xen.network/x1/",
"shortName": "x1-devnet",
"chainId": 202212,
"networkId": 202212,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.x1-devnet.xen.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "X1 Network",
"chain": "X1",
"rpc": [
"https://x1-testnet.xen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "XN",
"symbol": "XN",
"decimals": 18
},
"infoURL": "https://docs.xen.network/go-x1/",
"shortName": "x1-testnet",
"chainId": 204005,
"networkId": 204005,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.x1-testnet.xen.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Reapchain Mainnet",
"chain": "REAP",
"rpc": [
"https://eth.reapchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Reap",
"symbol": "REAP",
"decimals": 18
},
"features": [],
"infoURL": "https://reapchain.com",
"shortName": "reap",
"chainId": 221230,
"networkId": 221230,
"icon": "reapchain",
"explorers": [
{
"name": "Reapchain Dashboard",
"url": "https://dashboard.reapchain.org",
"icon": "reapchain",
"standard": "none"
}
]
},
{
"name": "Reapchain Testnet",
"chain": "REAP",
"rpc": [
"https://test-eth.reapchain.org"
],
"faucets": [
"http://faucet.reapchain.com"
],
"nativeCurrency": {
"name": "test-Reap",
"symbol": "tREAP",
"decimals": 18
},
"features": [],
"infoURL": "https://reapchain.com",
"shortName": "reap-testnet",
"chainId": 221231,
"networkId": 221231,
"icon": "reapchain",
"explorers": [
{
"name": "Reapchain Testnet Dashboard",
"url": "https://test-dashboard.reapchain.org",
"icon": "reapchain",
"standard": "none"
}
]
},
{
"name": "Nativ3 Testnet",
"chainId": 333333,
"shortName": "N3-Test",
"chain": "N3-Test",
"icon": "nativ3",
"networkId": 333333,
"nativeCurrency": {
"name": "USNT",
"symbol": "USNT",
"decimals": 18
},
"rpc": [
"https://rpctest.nativ3.network",
"wss://wstest.nativ3.network"
],
"faucets": [],
"explorers": [
{
"name": "Nativ3 Test Explorer",
"url": "https://scantest.nativ3.network",
"standard": "EIP3091"
}
],
"infoURL": "https://nativ3.network",
"parent": {
"type": "L2",
"chain": "eip155-421613",
"bridges": [
{
"url": "https://bridgetest.nativ3.network"
}
]
}
},
{
"name": "Oone Chain Testnet",
"chain": "OONE Testnet",
"rpc": [
"https://rpc.testnet.oonechain.com"
],
"faucets": [
"https://apps-test.adigium.com/faucet"
],
"nativeCurrency": {
"name": "tOONE",
"symbol": "tOONE",
"decimals": 18
},
"infoURL": "https://oonechain.com",
"shortName": "oonetest",
"chainId": 333666,
"networkId": 333666,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.oonescan.com",
"standard": "none"
}
]
},
{
"name": "Digit Soul Smart Chain 2",
"chain": "DS2",
"rpc": [
"https://dgs-rpc.digitsoul.co.th"
],
"faucets": [],
"icon": "pnet",
"nativeCurrency": {
"name": "Digit Coin",
"symbol": "DGC",
"decimals": 18
},
"infoURL": "",
"shortName": "DS2",
"chainId": 363636,
"networkId": 363636
},
{
"name": "Alterium L2 Testnet",
"chain": "ALT",
"icon": "alterium",
"rpc": [
"https://l2-testnet-rpc.altscan.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Alterium ETH",
"symbol": "AltETH",
"decimals": 18
},
"infoURL": "https://alteriumprotocol.org",
"shortName": "alterium",
"chainId": 420692,
"networkId": 420692,
"parent": {
"type": "L2",
"chain": "eip155-5",
"bridges": [
{
"url": "https://testnet-bridge.alteriumprotocol.org"
}
]
},
"explorers": [
{
"name": "Alterium L2 Testnet Explorer",
"url": "https://l2-testnet.altscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Arbitrum Sepolia",
"title": "Arbitrum Sepolia Rollup Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia-rollup.arbitrum.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://arbitrum.io",
"shortName": "arb-sep",
"chainId": 421614,
"networkId": 421614,
"explorers": [
{
"name": "Arbitrum Sepolia Rollup Testnet Explorer",
"url": "https://sepolia-explorer.arbitrum.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "Rethereum Mainnet",
"chain": "RTH",
"rpc": [
"https://rpc.rethereum.org",
"https://rethereum.rpc.restratagem.com",
"https://rpc.rthcentral.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Rethereum",
"symbol": "RTH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.rethereum.org",
"shortName": "rth",
"chainId": 622277,
"networkId": 622277,
"icon": "rethereum",
"explorers": [
{
"name": "rethereum",
"url": "https://explorer.rethereum.org",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Hela Official Runtime Testnet",
"chain": "Hela",
"icon": "hela",
"rpc": [
"https://testnet-rpc.helachain.com"
],
"faucets": [
"https://testnet-faucet.helachain.com"
],
"nativeCurrency": {
"name": "Hela HLUSD",
"symbol": "HLUSD",
"decimals": 18
},
"infoURL": "https://helalabs.com",
"shortName": "hela-testnet",
"chainId": 666888,
"networkId": 666888,
"explorers": [
{
"name": "Hela Official Runtime Testnet Explorer",
"url": "https://testnet-blockexplorer.helachain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Miexs Smartchain",
"chain": "MiexsSmartchain",
"icon": "miexs",
"rpc": [
"https://mainnet-rpc.miexs.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Miexs Coin",
"symbol": "MIX",
"decimals": 18
},
"infoURL": "https://miexs.com",
"shortName": "Miexs",
"chainId": 761412,
"networkId": 761412,
"explorers": [
{
"name": "Miexs Smartchain Explorer",
"url": "https://miexs.com",
"standard": "EIP3091"
}
]
},
{
"name": "Modularium",
"chain": "EVMCC",
"rpc": [
"https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Modularium",
"symbol": "MDM",
"decimals": 18
},
"infoURL": "https://www.rmrk.app/",
"shortName": "mdlrm",
"chainId": 776877,
"networkId": 776877,
"explorers": [
{
"name": "Tanssi Explorer",
"url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network",
"standard": "none"
}
]
},
{
"name": "Dodao",
"chain": "EVMCC",
"rpc": [
"https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network",
"wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Dodao",
"symbol": "DODAO",
"decimals": 18
},
"infoURL": "https://dodao.dev/",
"shortName": "dodao",
"chainId": 855456,
"networkId": 855456,
"icon": "dodao",
"explorers": [
{
"name": "Dodao Explorer",
"url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network",
"icon": "dodao",
"standard": "EIP3091"
}
]
},
{
"name": "Ecrox Chain Mainnet",
"chain": "Ecrox Chain",
"rpc": [
"https://mainnet-rpc.ecroxscan.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "ECROX COIN",
"symbol": "ECROX",
"decimals": 18
},
"infoURL": "https://ecroxcoin.io/",
"shortName": "ecrox",
"icon": "ecrox",
"chainId": 988207,
"networkId": 988207,
"explorers": [
{
"name": "Ecrox Chain Explorer",
"url": "https://ecroxscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Tiltyard Subnet",
"chain": "TILTYARD",
"rpc": [
"https://subnets.avax.network/tiltyard/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Tiltyard Token",
"symbol": "TILTG",
"decimals": 18
},
"infoURL": "",
"shortName": "tiltyard",
"chainId": 1127469,
"networkId": 1127469,
"explorers": [
{
"name": "TILTYARD Explorer",
"url": "http://testnet-explorer.tiltyard.gg",
"standard": "EIP3091"
}
]
},
{
"name": "zKatana",
"shortName": "azktn",
"title": "Astar zkEVM Testnet zKatana",
"chain": "ETH",
"icon": "astarzk",
"rpc": [
"https://rpc.zkatana.gelato.digital",
"https://rpc.startale.com/zkatana"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://astar.network",
"chainId": 1261120,
"networkId": 1261120,
"explorers": [
{
"name": "Blockscout zKatana chain explorer",
"url": "https://zkatana.blockscout.com",
"standard": "EIP3091"
},
{
"name": "Startale zKatana chain explorer",
"url": "https://zkatana.explorer.startale.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://portal.astar.network"
},
{
"url": "https://bridge.zkatana.gelato.digital"
}
]
},
"status": "active"
},
{
"name": "DeBank Testnet",
"chain": "DeBank",
"rpc": [
"http://rpc.testnet.debank.com"
],
"faucets": [],
"icon": "debank",
"nativeCurrency": {
"name": "DeBank USD",
"symbol": "USD",
"decimals": 18
},
"infoURL": "https://debank.com",
"shortName": "dbk",
"chainId": 2021398,
"networkId": 2021398,
"explorers": [
{
"name": "DeBank Chain Explorer",
"url": "https://explorer.testnet.debank.com",
"standard": "EIP3091"
}
]
},
{
"name": "DPU Chain",
"chain": "DPU",
"rpc": [
"https://sc-rpc.dpu.ac.th"
],
"faucets": [],
"nativeCurrency": {
"name": "DGC",
"symbol": "DGC",
"decimals": 18
},
"infoURL": "",
"shortName": "DPU",
"chainId": 2611555,
"networkId": 2611555
},
{
"name": "Manta Pacific Testnet",
"chain": "Manta Pacific",
"rpc": [
"https://manta-testnet.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Manta",
"symbol": "MANTA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://manta-testnet.caldera.dev/",
"shortName": "mantaTestnet",
"chainId": 3441005,
"networkId": 3441005,
"icon": "manta",
"explorers": [
{
"name": "manta-testnet Explorer",
"url": "https://manta-testnet.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Electroneum Testnet",
"chain": "Electroneum",
"rpc": [
"https://api.electroneum.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Electroneum",
"symbol": "ETN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://electroneum.com",
"shortName": "etn-testnet",
"chainId": 5201420,
"networkId": 5201420,
"icon": "electroneum",
"explorers": [
{
"name": "blockscout",
"url": "https://blockexplorer.thesecurityteam.rocks",
"icon": "electroneum",
"standard": "EIP3091"
}
]
},
{
"name": "XCAP",
"title": "XCAP Mainnet",
"chain": "XCAP",
"rpc": [
"https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1"
],
"faucets": [],
"nativeCurrency": {
"name": "Gas",
"symbol": "GAS",
"decimals": 18
},
"infoURL": "https://xcap.network/",
"shortName": "xcap",
"chainId": 9322252,
"networkId": 9322252,
"icon": "xcap",
"explorers": [
{
"name": "blockscout",
"url": "https://xcap-mainnet.explorer.xcap.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Milvine",
"title": "XCAP Testnet Milvine",
"chain": "XCAP",
"rpc": [
"https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1"
],
"faucets": [],
"nativeCurrency": {
"name": "Gas",
"symbol": "GAS",
"decimals": 18
},
"infoURL": "https://xcap.network/",
"shortName": "milv",
"chainId": 9322253,
"networkId": 9322253,
"icon": "xcap",
"explorers": [
{
"name": "blockscout",
"url": "https://xcap-milvine.explorer.xcap.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "OP Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.optimism.io"
],
"faucets": [
"https://app.optimism.io/faucet"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://optimism.io",
"shortName": "opsep",
"chainId": 11155420,
"networkId": 11155420,
"explorers": [
{
"name": "opscout",
"url": "https://optimism-sepolia.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Autonity Bakerloo (Barada) Testnet",
"chain": "AUT",
"rpc": [
"https://rpc1.bakerloo.autonity.org/",
"wss://rpc1.bakerloo.autonity.org/ws/"
],
"faucets": [
"https://faucet.autonity.org/"
],
"nativeCurrency": {
"name": "Bakerloo Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "bakerloo-01",
"chainId": 65010001,
"networkId": 65010001,
"icon": "autonity",
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://bakerloo.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "Frame Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.testnet.frame.xyz/http"
],
"faucets": [
"https://faucet.triangleplatform.com/frame/testnet"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "frameTestnet",
"infoURL": "https://www.frame.xyz/",
"shortName": "frametest",
"chainId": 68840142,
"networkId": 68840142,
"explorers": [
{
"name": "Frame Testnet Explorer",
"url": "https://explorer.testnet.frame.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "SKALE Europa Hub Testnet",
"title": "Europa Hub Testnet",
"chain": "staging-legal-crazy-castor",
"icon": "europa",
"rpc": [
"https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor"
],
"faucets": [
"https://sfuel.dirtroad.dev/staging"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://europahub.network/",
"shortName": "europa-testnet",
"chainId": 476158412,
"networkId": 476158412,
"explorers": [
{
"name": "Blockscout",
"url": "https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "Zora Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.rpc.zora.energy"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "zoraSepoliaTestnet",
"infoURL": "https://zora.energy",
"shortName": "zsep",
"chainId": 999999999,
"networkId": 999999999,
"explorers": [
{
"name": "Zora Sepolia Testnet Network Explorer",
"url": "https://sepolia.explorer.zora.energy",
"standard": "EIP3091"
}
]
},
{
"name": "SKALE Titan Hub",
"chain": "parallel-stormy-spica",
"icon": "titan",
"rpc": [
"https://mainnet.skalenodes.com/v1/parallel-stormy-spica",
"wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica"
],
"faucets": [
"https://sfuel.skale.network/"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "",
"shortName": "titan-mainnet",
"chainId": 1350216234,
"networkId": 1350216234,
"explorers": [
{
"name": "Blockscout",
"url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "SKALE Titan Hub Testnet",
"chain": "staging-aware-chief-gianfar",
"icon": "titan",
"rpc": [
"https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar",
"wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar"
],
"faucets": [
"https://sfuel.dirtroad.dev/staging"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "",
"shortName": "titan-testnet",
"chainId": 1517929550,
"networkId": 1517929550,
"explorers": [
{
"name": "Blockscout",
"url": "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "Harmony Devnet Shard 1",
"chain": "Harmony",
"rpc": [
"https://api.s1.ps.hmny.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ONE",
"symbol": "ONE",
"decimals": 18
},
"infoURL": "https://www.harmony.one/",
"shortName": "hmy-ps-s1",
"chainId": 1666900001,
"networkId": 1666900001,
"explorers": []
},
{
"name": "Ancient8 Testnet",
"chain": "Ancient8",
"icon": "ancient8",
"rpc": [
"https://rpc-testnet.ancient8.gg"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ancient8.gg/",
"shortName": "a8",
"chainId": 2863311531,
"networkId": 2863311531,
"explorers": [
{
"name": "a8scan-testnet",
"url": "https://testnet.a8scan.io",
"standard": "EIP3091"
}
]
},
{
"name": "ZKFair Testnet",
"title": "ZKFair Testnet",
"chain": "ZKFair",
"rpc": [
"https://testnet-rpc.zkfair.io"
],
"faucets": [],
"nativeCurrency": {
"name": "USDC",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://zkfair.io/",
"shortName": "zkfairtest",
"chainId": 43851,
"networkId": 43851,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-scan.zkfair.io",
"standard": "EIP3091"
}
]
},
{
"name": "Blast Sepolia",
"chain": "Blast Sepolia",
"icon": "Blast Sepolia",
"rpc": [
"https://sepolia.blast.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "blastscan.io/",
"shortName": "Blast Sepolia",
"chainId": 168587773,
"networkId": 168587773,
"explorers": [
{
"name": "Blast testnet",
"url": "https://testnet.blastscan.io/",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1706000813543.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1706000827437.png",
"color_chain_bg": "0xFDFE03",
"color_chain_text": "0x000000",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1706000856201.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1706000876568.png"
}
},
{
"name": "ProtoJumbo Testnet",
"chain": "Jumbo",
"rpc": [
"https://testnode.jumbochain.org"
],
"faucets": [
"https://protojumbo.jumbochain.org/faucet-smart"
],
"nativeCurrency": {
"name": "JNFTC",
"symbol": "JNFTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://jumbochain.org",
"shortName": "ProtoJumbo",
"chainId": 129,
"networkId": 129,
"slip44": 1,
"explorers": [
{
"name": "ProtoJumbo",
"url": "https://protojumbo.jumbochain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Engram Testnet",
"chain": "tGRAM",
"icon": "engram",
"rpc": [
"https://tokioswift.engram.tech",
"https://tokio-archive.engram.tech"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Engram Tokio Testnet",
"symbol": "tGRAM",
"decimals": 18
},
"infoURL": "https://engramnet.io",
"shortName": "tgram",
"chainId": 131,
"networkId": 131,
"explorers": [
{
"name": "blockscout",
"url": "https://tokioscan-v2.engram.tech",
"icon": "engram",
"standard": "EIP3091"
}
]
},
{
"name": "Scalind Testnet",
"chain": "ETH",
"icon": "scalind",
"rpc": [
"https://rpc-sepolia.scalind.com"
],
"faucets": [
"https://faucet.scalind.com"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://scalind.com",
"shortName": "sepscal",
"chainId": 220,
"networkId": 220,
"explorers": [
{
"name": "scalind",
"url": "https://explorer-sepolia.scalind.com",
"standard": "EIP3091"
}
]
},
{
"name": "MetaChain Mainnet",
"chain": "MTC",
"icon": "metachain",
"rpc": [
"https://rpc.metatime.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Metatime Coin",
"symbol": "MTC",
"decimals": 18
},
"infoURL": "https://metatime.com/en",
"shortName": "metatime",
"chainId": 571,
"networkId": 571,
"slip44": 571,
"explorers": [
{
"name": "MetaExplorer",
"url": "https://explorer.metatime.com",
"standard": "EIP3091"
}
]
},
{
"name": "Kalichain",
"chain": "Kalichain",
"rpc": [
"https://mainnet.kalichain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "kalis",
"symbol": "KALIS",
"decimals": 18
},
"infoURL": "https://kalichain.com",
"shortName": "kalichainMainnet",
"chainId": 654,
"networkId": 654,
"icon": "kalichain",
"explorers": [
{
"name": "kalichain explorer",
"url": "https://explorer.kalichain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Haven1 Testnet",
"chain": "haven1",
"rpc": [
"https://testnet-rpc.haven1.org"
],
"faucets": [
"https://www.haven1.org/faucet"
],
"nativeCurrency": {
"name": "Haven1",
"symbol": "H1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.haven1.org",
"shortName": "h1",
"chainId": 810,
"networkId": 810,
"icon": "haven1",
"explorers": [
{
"name": "Haven1 Explorer",
"url": "https://testnet-explorer.haven1.org",
"icon": "haven1",
"standard": "EIP3091"
}
]
},
{
"name": "Firechain zkEVM",
"title": "Firechain zkEVM",
"chain": "Firechain",
"rpc": [
"https://rpc.zkevm.thefirechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.thefirechain.com/",
"shortName": "firechan-zkEVM",
"chainId": 814,
"networkId": 814,
"icon": "firechain",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://zkevm.bridge.rpc.thefirechain.com"
}
]
}
},
{
"name": "Lyra Chain",
"chain": "Lyra",
"rpc": [
"https://rpc.lyra.finance"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://lyra.finance",
"shortName": "lyra",
"chainId": 957,
"networkId": 957,
"icon": "lyra",
"explorers": [
{
"name": "Lyra Explorer",
"url": "https://explorer.lyra.finance",
"icon": "lyra",
"standard": "EIP3091"
}
]
},
{
"name": "Dogether Mainnet",
"chain": "Dogether",
"rpc": [
"https://rpc.dogether.dog/"
],
"faucets": [],
"nativeCurrency": {
"name": "Dogether",
"symbol": "dogeth",
"decimals": 18
},
"infoURL": "https://www.dogether.dog/",
"shortName": "Dogether",
"chainId": 1248,
"networkId": 1248,
"explorers": [
{
"name": "DogetherExplorer",
"url": "https://explorer.dogether.dog",
"standard": "EIP3091"
}
]
},
{
"name": "Ruby Smart Chain MAINNET",
"chain": "RUBY",
"rpc": [
"https://mainnet-data.rubychain.io/",
"https://mainnet.rubychain.io/"
],
"nativeCurrency": {
"name": "RUBY Smart Chain Native Token",
"symbol": "RUBY",
"decimals": 18
},
"infoURL": "https://rubychain.io",
"faucets": [],
"shortName": "RUBY",
"chainId": 1821,
"networkId": 1821,
"slip44": 1,
"icon": "ruby",
"explorers": [
{
"name": "RUBY Smart Chain MAINNET Explorer",
"icon": "ruby",
"url": "https://rubyscan.net",
"standard": "none"
}
]
},
{
"name": "Scalind",
"chain": "ETH",
"icon": "scalind",
"rpc": [
"https://rpc.scalind.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://scalind.com",
"shortName": "scal",
"chainId": 1911,
"networkId": 1911,
"explorers": [
{
"name": "scalind",
"url": "https://explorer.scalind.com",
"standard": "EIP3091"
}
]
},
{
"name": "Ruby Smart Chain Testnet",
"chain": "RUBY",
"rpc": [
"https://testnet-rchain.rubychain.io/"
],
"nativeCurrency": {
"name": "RUBY Smart Chain Native Token",
"symbol": "tRUBY",
"decimals": 18
},
"infoURL": "https://rubychain.io",
"faucets": [
"https://claim-faucet.rubychain.io/"
],
"shortName": "tRUBY",
"chainId": 1912,
"networkId": 1912,
"slip44": 1,
"icon": "ruby",
"explorers": [
{
"name": "RUBY Smart Chain Testnet Explorer",
"icon": "ruby",
"url": "https://testnet.rubyscan.net",
"standard": "none"
}
]
},
{
"name": "RedeCoin",
"chain": "REDEV2",
"rpc": [
"https://rpc2.redecoin.eu"
],
"faucets": [],
"nativeCurrency": {
"name": "RedeCoin",
"symbol": "REDEV2",
"decimals": 18
},
"infoURL": "https://www.redecoin.eu",
"shortName": "rede",
"chainId": 1972,
"networkId": 1972,
"explorers": [
{
"name": "RedeCoin Explorer",
"url": "https://explorer3.redecoin.eu",
"standard": "none"
}
]
},
{
"name": "Kyoto Testnet",
"chain": "KYOTO",
"rpc": [
"https://rpc.testnet.kyotoprotocol.io:8545"
],
"faucets": [
"https://faucet.kyotoprotocol.io"
],
"nativeCurrency": {
"name": "Kyoto",
"symbol": "KYOTO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://kyotoprotocol.io",
"shortName": "kyoto-testnet",
"chainId": 1998,
"networkId": 1998,
"slip44": 1,
"explorers": [
{
"name": "Kyotoscan",
"url": "https://testnet.kyotoscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Phala Network",
"chain": "PHA",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Phala",
"symbol": "PHA",
"decimals": 18
},
"infoURL": "https://phala.network",
"shortName": "pha",
"chainId": 2035,
"networkId": 2035
},
{
"name": "Hybrid Chain Network Testnet",
"chain": "HYBRID",
"rpc": [
"https://rpc-testnet.hybridchain.ai/"
],
"faucets": [
"https://faucet-testnet.hybridchain.ai"
],
"nativeCurrency": {
"name": "Hybrid Chain Native Token",
"symbol": "tHRC",
"decimals": 18
},
"infoURL": "https://hybridchain.ai",
"shortName": "thrc",
"chainId": 2458,
"networkId": 2458,
"slip44": 1,
"icon": "hybrid",
"explorers": [
{
"name": "Hybrid Chain Explorer Testnet",
"icon": "hybrid",
"url": "https://testnet.hybridscan.ai",
"standard": "none"
}
]
},
{
"name": "Hybrid Chain Network Mainnet",
"chain": "HYBRID",
"rpc": [
"https://coredata-mainnet.hybridchain.ai/",
"https://rpc-mainnet.hybridchain.ai"
],
"faucets": [
"https://faucet-testnet.hybridchain.ai"
],
"nativeCurrency": {
"name": "Hybrid Chain Native Token",
"symbol": "HRC",
"decimals": 18
},
"infoURL": "https://hybridchain.ai",
"shortName": "hrc",
"chainId": 2468,
"networkId": 2468,
"icon": "hybrid",
"explorers": [
{
"name": "Hybrid Chain Explorer Mainnet",
"icon": "hybrid",
"url": "https://hybridscan.ai",
"standard": "none"
}
]
},
{
"name": "Tangle Testnet",
"chain": "Tangle Testnet",
"icon": "tangle",
"rpc": [
"https://testnet-rpc.tangle.tools",
"https://testnet-rpc-archive.tangle.tools",
"wss://testnet-rpc.tangle.tools",
"wss://testnet-rpc-archive.tangle.tools"
],
"faucets": [
"https://faucet.tangle.tools"
],
"nativeCurrency": {
"name": "Testnet Tangle Network Token",
"symbol": "tTNT",
"decimals": 18
},
"infoURL": "https://docs.tangle.tools",
"shortName": "tTangle",
"chainId": 3799,
"networkId": 3799,
"explorers": [
{
"name": "ttntscan",
"url": "https://testnet-explorer.tangle.tools",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Firechain zkEVM Ghostrider",
"title": "Firechain zkEVM Ghostrider",
"chain": "Firechain",
"rpc": [
"https://rpc.zkevm.ghostrider.thefirechain.com"
],
"faucets": [
"zkevm-faucet.thefirechain.com"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.thefirechain.com/",
"shortName": "firechain-zkEVM-ghostrider",
"chainId": 3885,
"networkId": 3885,
"explorers": []
},
{
"name": "Muster Mainnet",
"chainId": 4078,
"shortName": "muster",
"chain": "Muster",
"icon": "muster",
"networkId": 4078,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://muster.alt.technology"
],
"faucets": [],
"explorers": [
{
"name": "Musterscan",
"url": "https://muster-explorer.alt.technology",
"standard": "EIP3091"
}
],
"infoURL": "",
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": []
}
},
{
"name": "Nexi V2 Mainnet",
"chain": "Nexi V2",
"icon": "nexi",
"rpc": [
"https://chain.nexiv2.nexilix.com",
"https://rpc.chainv1.nexi.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "NexiV2",
"symbol": "NEXI",
"decimals": 18
},
"infoURL": "https://www.nexi.technology/",
"shortName": "NexiV2",
"chainId": 4243,
"networkId": 4243,
"slip44": 2500,
"explorers": [
{
"name": "nexiscan",
"url": "https://www.nexiscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Smart Layer Network",
"chain": "SLN",
"rpc": [
"https://rpc.main.smartlayer.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Service Unit Token",
"symbol": "SU",
"decimals": 18
},
"infoURL": "https://www.smartlayer.network/",
"shortName": "SLN",
"chainId": 5169,
"networkId": 5169,
"explorers": [
{
"name": "SLN Mainnet Explorer",
"url": "https://explorer.main.smartlayer.network",
"standard": "EIP3091"
}
]
},
{
"name": "Latest Chain Testnet",
"chain": "LATEST",
"icon": "latestChain",
"rpc": [
"https://testnet-rpc.latestcoin.io"
],
"faucets": [
"http://faucet.latestchain.io"
],
"nativeCurrency": {
"name": "Latest",
"symbol": "LATEST",
"decimals": 18
},
"infoURL": "https://latestcoin.io",
"shortName": "LATESTt",
"chainId": 6660,
"networkId": 6660,
"explorers": [
{
"name": "Latest Chain",
"url": "http://testnet.latestchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Cybria Mainnet",
"chain": "CYBA",
"rpc": [
"https://rpc-mainnet.cybria.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Cybria",
"symbol": "CYBA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://cybria.io",
"shortName": "cyba",
"chainId": 6661,
"networkId": 6661,
"icon": "cybria",
"explorers": [
{
"name": "Cybria Explorer",
"url": "https://cybascan.io",
"icon": "cybascan",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155420",
"bridges": [
{
"url": "https://app.optimism.io/bridge"
}
]
}
},
{
"name": "Cybria Testnet",
"chain": "CYBA",
"rpc": [
"https://l2-rpc.cybascan.io"
],
"faucets": [
"https://faucet.cybascan.io"
],
"nativeCurrency": {
"name": "Cybria",
"symbol": "CYBA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://cybria.io",
"shortName": "tcyba",
"chainId": 6666,
"networkId": 6666,
"icon": "cybria",
"explorers": [
{
"name": "Cybria Explorer",
"url": "https://explorer.cybascan.io",
"icon": "cybascan",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155420",
"bridges": [
{
"url": "https://app.optimism.io/bridge"
}
]
}
},
{
"name": "PAXB Mainnet",
"chain": "PAXB",
"rpc": [
"https://chain.paxb.io"
],
"faucets": [],
"nativeCurrency": {
"name": "PAXB",
"symbol": "PAXB",
"decimals": 18
},
"infoURL": "https://paxb.io/",
"shortName": "PAXB",
"chainId": 6701,
"networkId": 6701,
"icon": "paxb",
"explorers": [
{
"name": "PAXB Explorer",
"url": "https://scan.paxb.io",
"icon": "paxb",
"standard": "EIP3091"
}
]
},
{
"name": "Compverse Mainnet",
"chain": "CPV",
"icon": "compverse",
"rpc": [
"https://rpc.compverse.io/",
"https://rpc-useast1.compverse.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "compverse",
"symbol": "CPV",
"decimals": 18
},
"infoURL": "https://compverse.io",
"shortName": "compverse",
"chainId": 6779,
"networkId": 6779,
"slip44": 7779,
"explorers": [
{
"name": "cpvscan",
"url": "https://scan.compverse.io",
"standard": "EIP3091"
}
]
},
{
"name": "Nume",
"title": "Nume",
"chain": "Nume",
"rpc": [
"https://rpc.numecrypto.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Dai Stablecoin",
"symbol": "DAI",
"decimals": 18
},
"infoURL": "https://numecrypto.com",
"shortName": "nume",
"chainId": 7100,
"networkId": 7100,
"icon": "nume",
"explorers": [
{
"name": "numeexplorer",
"url": "https://explorer.numecrypto.com",
"icon": "nume",
"standard": "none"
}
]
},
{
"name": "Help The Homeless",
"chain": "mainnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Help The Homeless Coin",
"symbol": "HTH",
"decimals": 18
},
"infoURL": "https://hth.world",
"shortName": "hth",
"chainId": 7118,
"networkId": 7118,
"icon": "hth",
"status": "incubating",
"explorers": []
},
{
"name": "E-Dollar",
"chain": "USD",
"rpc": [
"https://rpc.e-dollar.org"
],
"faucets": [],
"nativeCurrency": {
"name": "E-Dollar",
"symbol": "USD",
"decimals": 18
},
"infoURL": "https://e-dollar.org",
"shortName": "E-Dollar",
"chainId": 8087,
"networkId": 8087,
"explorers": []
},
{
"name": "Storagechain Mainnet",
"chain": "Storagechain",
"rpc": [
"https://mainnet-validator.storagechain.io"
],
"icon": "storagechain",
"faucets": [],
"shortName": "stor",
"nativeCurrency": {
"name": "Storagechain",
"symbol": "STOR",
"decimals": 18
},
"infoURL": "https://storagechain.io/about-us",
"chainId": 8726,
"networkId": 8726,
"explorers": [
{
"name": "Storscan",
"url": "https://explorer-storagechain.invo.zone/?network=StorageChain",
"standard": "none"
}
]
},
{
"name": "Storagechain Testnet",
"chain": "Storagechain",
"rpc": [
"https://testnet-validator.storagechain.io"
],
"icon": "storagechain",
"faucets": [],
"nativeCurrency": {
"name": "Storagechain",
"symbol": "STOR",
"decimals": 18
},
"shortName": "tstor",
"infoURL": "https://storagechain.io/about-us",
"chainId": 8727,
"networkId": 8727,
"explorers": [
{
"name": "Storscan",
"url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet",
"standard": "none"
}
]
},
{
"name": "Evoke Mainnet",
"chain": "MTHN",
"icon": "mthn",
"rpc": [
"https://mainnet-rpc.evokescan.org"
],
"faucets": [],
"nativeCurrency": {
"name": "MTHN",
"symbol": "MTHN",
"decimals": 18
},
"infoURL": "https://explorer.evokescan.org",
"shortName": "MTHN",
"chainId": 9395,
"networkId": 9395,
"explorers": [
{
"name": "Evoke SmartChain Explorer",
"url": "https://explorer.evokescan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Dogelayer Mainnet",
"chain": "Dogelayer",
"rpc": [
"https://dl-rpc.dogelayer.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Dogecoin",
"symbol": "DOGE",
"decimals": 18
},
"infoURL": "https://dogelayer.org",
"shortName": "Dogelayer",
"chainId": 9888,
"networkId": 9888,
"explorers": [
{
"name": "Dogelayer mainnet explorer",
"url": "https://dl-explorer.dogelayer.org",
"standard": "EIP3091"
}
]
},
{
"name": "Combo Mainnet",
"chain": "Combo",
"icon": "combo",
"rpc": [
"https://rpc.combonetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BNB Chain Native Token",
"symbol": "BNB",
"decimals": 18
},
"infoURL": "https://combonetwork.io",
"shortName": "combo-mainnet",
"chainId": 9980,
"networkId": 9980,
"explorers": [
{
"name": "combotrace explorer",
"url": "https://combotrace.nodereal.io",
"standard": "EIP3091"
}
]
},
{
"name": "Arthera Mainnet",
"chain": "AA",
"icon": "arthera",
"rpc": [
"https://rpc.arthera.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Arthera",
"symbol": "AA",
"decimals": 18
},
"infoURL": "https://docs.arthera.net/build/developing-sc/using-hardhat",
"shortName": "aa",
"chainId": 10242,
"networkId": 10242,
"slip44": 10242,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.arthera.net",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Immutable zkEVM",
"chain": "Immutable zkEVM",
"rpc": [
"https://rpc.immutable.com"
],
"faucets": [
"https://docs.immutable.com/docs/zkEVM/guides/faucet"
],
"nativeCurrency": {
"name": "IMX",
"symbol": "IMX",
"decimals": 18
},
"infoURL": "https://www.immutable.com",
"shortName": "imx",
"chainId": 13371,
"networkId": 13371,
"icon": "immutable",
"explorers": [
{
"name": "Immutable explorer",
"url": "https://explorer.immutable.com",
"standard": "EIP3091",
"icon": "immutable"
}
]
},
{
"name": "BSL Mainnet",
"chain": "BSL",
"rpc": [
"http://rpc-mainnet.nftruth.io:8545",
"ws://rpc-mainnet.nftruth.io:8645"
],
"faucets": [],
"nativeCurrency": {
"name": "Origin NFT",
"symbol": "ONF",
"decimals": 18
},
"infoURL": "https://bsquarelab.com/",
"shortName": "onf",
"chainId": 21912,
"networkId": 21912,
"explorers": [
{
"name": "BSL Mainnet Explorer",
"url": "https://scan.nftruth.io",
"standard": "EIP3091"
}
]
},
{
"name": "GoldXChain Testnet",
"chain": "GoldXTestnet",
"rpc": [
"https://testnet-rpc.goldxchain.io"
],
"faucets": [
"https://faucet.goldxchain.io"
],
"nativeCurrency": {
"name": "GoldX",
"symbol": "GOLDX",
"decimals": 18
},
"infoURL": "https://goldxchain.io",
"shortName": "goldx-testnet",
"chainId": 22324,
"networkId": 22324,
"explorers": [
{
"name": "GoldXChain Testnet Explorer",
"url": "https://testnet-explorer.goldxchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Blast Testnet",
"chain": "ETH",
"icon": "blastIcon",
"rpc": [
"http://testnet-rpc.blastblockchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.blastblockchain.com",
"shortName": "blastT",
"chainId": 23888,
"networkId": 23888,
"explorers": [
{
"name": "Blast Testnet",
"url": "http://testnet-explorer.blastblockchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Evoke Testnet",
"chain": "Evoke",
"icon": "mthn",
"rpc": [
"https://testnet-rpc.evokescan.org"
],
"faucets": [
"https://faucet.evokescan.org"
],
"nativeCurrency": {
"name": "MTHN Testnet",
"symbol": "MTHN",
"decimals": 18
},
"infoURL": "https://testnet-explorer.evokescan.org",
"shortName": "tmthn",
"chainId": 31414,
"networkId": 31414,
"explorers": [
{
"name": "Evoke SmartChain Testnet Explorer",
"url": "https://testnet-explorer.evokescan.org",
"standard": "EIP3091"
}
]
},
{
"name": "W3Gamez Holesky Testnet",
"chain": "ETH",
"rpc": [
"https://rpc-holesky.w3gamez.network"
],
"faucets": [],
"nativeCurrency": {
"name": "W3Gamez Testnet Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://web3games.com/",
"shortName": "w3gamez",
"chainId": 32001,
"networkId": 32001,
"slip44": 1,
"icon": "w3gamez",
"explorers": [
{
"name": "W3Gamez Holesky Explorer",
"url": "https://w3gamez-holesky.web3games.com",
"icon": "web3games",
"standard": "EIP3091"
}
]
},
{
"name": "GoldXChain Mainnet",
"chain": "GoldX",
"rpc": [
"https://mainnet-rpc.goldxchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "GoldX",
"symbol": "GOLDX",
"decimals": 18
},
"infoURL": "https://goldxchain.io",
"shortName": "goldx",
"chainId": 42355,
"networkId": 42355,
"explorers": [
{
"name": "GoldXChain Explorer",
"url": "https://explorer.goldxchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "ZKFair Mainnet",
"title": "ZKFair Mainnet",
"chain": "ZKFair",
"rpc": [
"https://rpc.zkfair.io"
],
"faucets": [],
"nativeCurrency": {
"name": "USDC Token",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://zkfair.io",
"shortName": "ZKFair-Mainnet",
"chainId": 42766,
"networkId": 42766,
"icon": "zkfair",
"explorers": [
{
"name": "blockscout",
"url": "https://scan.zkfair.io",
"icon": "zkfair",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://wallet.zkfair.io"
}
]
}
},
{
"name": "Deelance Mainnet",
"title": "Deelance Network Mainnet",
"chain": "DEE",
"rpc": [
"https://rpc.deelance.com"
],
"faucets": [
"https://faucet.deelance.com"
],
"nativeCurrency": {
"name": "Deelance",
"symbol": "DEE",
"decimals": 18
},
"infoURL": "https://deelance.com",
"shortName": "dee",
"chainId": 45510,
"networkId": 45510,
"icon": "deelance",
"explorers": [
{
"name": "Deelance Mainnet Explorer",
"url": "https://deescan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Yooldo Verse Mainnet",
"chain": "Yooldo Verse",
"icon": "yooldo_verse",
"rpc": [
"https://rpc.yooldo-verse.xyz/"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://yooldo.gg/",
"shortName": "YVM",
"chainId": 50005,
"networkId": 50005,
"explorers": [
{
"name": "Yooldo Verse Explorer",
"url": "https://explorer.yooldo-verse.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Yooldo Verse Testnet",
"chain": "Yooldo Verse",
"icon": "yooldo_verse",
"rpc": [
"https://rpc.testnet.yooldo-verse.xyz/"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://yooldo.gg/",
"shortName": "YVT",
"chainId": 50006,
"networkId": 50006,
"slip44": 1,
"explorers": [
{
"name": "Yooldo Verse Explorer",
"url": "https://explorer.testnet.yooldo-verse.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Grok Chain Mainnet",
"chain": "Grok",
"icon": "grokicon",
"rpc": [
"https://mainnet-rpc.grokchain.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "Groc",
"symbol": "GROC",
"decimals": 18
},
"infoURL": "https://grokchain.dev",
"shortName": "GrokChain",
"chainId": 72992,
"networkId": 72992,
"explorers": [
{
"name": "GrokScan",
"url": "https://mainnet-explorer.grokchain.dev",
"standard": "none"
}
]
},
{
"name": "Smart Layer Network Testnet",
"chain": "SLN",
"rpc": [
"https://rpc.test.smartlayer.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Service Unit Token",
"symbol": "SU",
"decimals": 18
},
"infoURL": "https://www.smartlayer.network/",
"shortName": "tSLN",
"chainId": 82459,
"networkId": 82459,
"explorers": [
{
"name": "SLN Testnet Explorer",
"url": "https://explorer.test.smartlayer.network",
"standard": "EIP3091"
}
]
},
{
"name": "Combo Testnet",
"chain": "Combo",
"icon": "combo",
"rpc": [
"https://test-rpc.combonetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BNB Chain Native Token",
"symbol": "tcBNB",
"decimals": 18
},
"infoURL": "https://combonetwork.io",
"shortName": "combo-testnet",
"chainId": 91715,
"networkId": 91715,
"explorers": [
{
"name": "combotrace explorer",
"url": "https://combotrace-testnet.nodereal.io",
"standard": "EIP3091"
}
]
},
{
"name": "Etherlink Testnet",
"chain": "Etherlink",
"icon": "etherlink",
"chainId": 128123,
"networkId": 128123,
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://etherlink.com",
"shortName": "etlt",
"nativeCurrency": {
"name": "tez",
"symbol": "XTZ",
"decimals": 18
},
"rpc": [
"https://node.ghostnet.etherlink.com"
],
"faucets": [
"https://faucet.etherlink.com"
],
"explorers": [
{
"name": "Etherlink Testnet Explorer",
"url": "https://testnet-explorer.etherlink.com",
"standard": "EIP3091"
}
]
},
{
"name": "Taiko Katla L2",
"chain": "ETH",
"status": "active",
"icon": "taiko",
"rpc": [
"https://rpc.katla.taiko.xyz",
"https://taiko-katla.blockpi.network/v1/rpc/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://taiko.xyz",
"shortName": "tko-katla",
"chainId": 167008,
"networkId": 167008,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.katla.taiko.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "CONET Sebolia Testnet",
"chain": "CONET",
"rpc": [
"https://rpc1.conet.network"
],
"faucets": [],
"nativeCurrency": {
"name": "CONET Sebolia",
"symbol": "CONET",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://conet.network",
"shortName": "conet-sebolia",
"chainId": 224422,
"networkId": 224422,
"slip44": 1,
"icon": "conet",
"explorers": [
{
"name": "CONET Scan",
"url": "https://scan.conet.network",
"standard": "EIP3091"
}
]
},
{
"name": "CONET Holesky",
"chain": "CONET Holesky",
"rpc": [
"https://holeskyrpc1.conet.network"
],
"faucets": [],
"nativeCurrency": {
"name": "CONET Holesky",
"symbol": "CONET",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://conet.network",
"shortName": "conet-holesky",
"chainId": 224433,
"networkId": 224433,
"slip44": 2147708081,
"icon": "conet",
"explorers": [
{
"name": "CONET Holesky Scan",
"url": "https://scan.conet.network",
"standard": "EIP3091"
}
]
},
{
"name": "Ultra Pro Mainnet",
"chain": "ultrapro",
"icon": "ultrapro",
"rpc": [
"https://mainnet-rpc.ultraproscan.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ultra Pro",
"symbol": "UPRO",
"decimals": 18
},
"infoURL": "https://ultrapro.info",
"shortName": "ultrapro",
"chainId": 473861,
"networkId": 473861,
"explorers": [
{
"name": "ultraproscan",
"url": "https://ultraproscan.io",
"icon": "ultrapro",
"standard": "EIP3091"
}
]
},
{
"name": "BlocX Mainnet",
"chain": "BLX",
"rpc": [
"https://mainnet-rpc.blxscan.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "BlocX",
"symbol": "BLX",
"decimals": 18
},
"infoURL": "https://www.blocxchain.org/",
"shortName": "blx",
"chainId": 879151,
"networkId": 879151,
"icon": "blx",
"explorers": [
{
"name": "BlocX Mainnet Explorer",
"url": "https://explorer.blxscan.com",
"icon": "blx",
"standard": "none"
}
]
},
{
"name": "Astria EVM Dusknet",
"chain": "RIA",
"icon": "astria",
"chainId": 912559,
"networkId": 912559,
"infoURL": "https://docs.astria.org",
"shortName": "ria-dev",
"nativeCurrency": {
"name": "RIA",
"symbol": "RIA",
"decimals": 18
},
"rpc": [
"https://rpc.evm.dusk-2.devnet.astria.org"
],
"faucets": [
"https://faucet.evm.dusk-2.devnet.astria.org/"
],
"explorers": [
{
"name": "Astria EVM Dusknet Explorer",
"url": "https://explorer.evm.dusk-2.devnet.astria.org",
"standard": "EIP3091"
}
]
},
{
"name": "Turkey Demo Dev",
"chain": "ETH",
"rpc": [
"https://devchain-poa.huabeizhenxuan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "",
"shortName": "TDD",
"chainId": 1731313,
"networkId": 1731313
},
{
"name": "Hokum",
"chain": "Hokum",
"icon": "hokum",
"rpc": [
"https://mainnet.hokum.gg"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://hokum.gg",
"shortName": "hokum",
"chainId": 8080808,
"networkId": 8080808,
"explorers": [
{
"name": "Hokum Explorer",
"url": "https://explorer.hokum.gg",
"standard": "EIP3091"
}
]
},
{
"name": "Hokum Testnet",
"chain": "HokumTestnet",
"icon": "hokum",
"rpc": [
"https://testnet.hokum.gg"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://hokum.gg",
"shortName": "hokum-testnet",
"chainId": 20482050,
"networkId": 20482050,
"explorers": [
{
"name": "Hokum Explorer",
"url": "https://testnet-explorer.hokum.gg",
"standard": "EIP3091"
}
]
},
{
"name": "Ancient8 Testnet",
"chain": "Ancient8",
"icon": "ancient8",
"rpc": [
"https://rpcv2-testnet.ancient8.gg"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ancient8.gg/",
"shortName": "a8",
"chainId": 28122024,
"networkId": 28122024,
"slip44": 1,
"explorers": [
{
"name": "scan-testnet",
"url": "https://scanv2-testnet.ancient8.gg",
"standard": "EIP3091"
}
]
},
{
"name": "Autonity Piccadilly (Barada) Testnet",
"chain": "AUT",
"rpc": [
"https://rpc1.piccadilly.autonity.org/",
"wss://rpc1.piccadilly.autonity.org/ws/"
],
"faucets": [],
"nativeCurrency": {
"name": "Piccadilly Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "piccadilly-01",
"chainId": 65100001,
"networkId": 65100001,
"slip44": 1,
"icon": "autonity",
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://piccadilly.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "Puppynet Shibarium",
"chain": "Puppynet Shibarium",
"icon": "shibarium",
"rpc": [
"https://puppynet.shibrpc.com"
],
"faucets": [
"https://beta.shibariumtech.com/faucet"
],
"nativeCurrency": {
"name": "BONE",
"symbol": "BONE",
"decimals": 18
},
"infoURL": "https://shibariumecosystem.com",
"shortName": "puppynet",
"chainId": 157,
"networkId": 157,
"explorers": [
{
"name": "puppyscan",
"url": "https://puppyscan.shib.io",
"standard": "none"
}
]
},
{
"name": "Viridis Testnet",
"chain": "VRD",
"icon": "viridis",
"rpc": [
"https://testnet-rpc.vrd.network"
],
"faucets": [
"https://faucet.vrd.network"
],
"nativeCurrency": {
"name": "Viridis Token",
"symbol": "VRD",
"decimals": 18
},
"infoURL": "https://viridis.network",
"shortName": "VRD-Testnet",
"chainId": 224,
"networkId": 224,
"explorers": [
{
"name": "Viridis Testnet",
"url": "https://testnet.vrd.network",
"standard": "EIP3091"
}
]
},
{
"name": "ProtoJumbo Testnet",
"chain": "Jumbo",
"rpc": [
"https://testnode.jumbochain.org"
],
"faucets": [
"https://protojumbo.jumbochain.org/faucet-smart"
],
"nativeCurrency": {
"name": "JNFTC",
"symbol": "JNFTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://jumbochain.org",
"shortName": "ProtoJumbo",
"chainId": 234,
"networkId": 234,
"slip44": 1,
"explorers": [
{
"name": "ProtoJumbo",
"url": "https://protojumbo.jumbochain.org",
"standard": "EIP3091"
}
]
},
{
"name": "BPX Blockchain",
"chain": "BPX",
"icon": "bpx",
"rpc": [
"https://rpc.mainnet.bpxchain.cc",
"https://bpx-dataseed.infinex.cc"
],
"faucets": [],
"nativeCurrency": {
"name": "BPX",
"symbol": "BPX",
"decimals": 18
},
"infoURL": "https://bpxchain.cc",
"shortName": "bpx",
"chainId": 279,
"networkId": 279
},
{
"name": "ZKSats Mainnet",
"title": "ZKSats Mainnet",
"chain": "ZKSats",
"rpc": [
"https://mainnet.zksats.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://zksats.io",
"shortName": "ZKSats-Mainnet",
"chainId": 305,
"networkId": 305,
"icon": "zksats",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.zksats.io",
"icon": "zksats",
"standard": "EIP3091"
}
]
},
{
"name": "Lovely Network Testnet",
"chain": "Lovely",
"icon": "lovely",
"rpc": [
"https://trpc.lovely.network"
],
"faucets": [
"https://faucet.lovely.network"
],
"nativeCurrency": {
"name": "Lovely",
"symbol": "LOVELY",
"decimals": 18
},
"infoURL": "https://lovely.network",
"shortName": "LOVELY-Testnet",
"chainId": 307,
"networkId": 307,
"explorers": [
{
"name": "Lovely Network Testnet",
"url": "https://tscan.lovely.network",
"standard": "EIP3091"
}
]
},
{
"name": "Cosvm Mainnet",
"chain": "CVM",
"rpc": [
"https://rpc.cosvm.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Cosvm",
"symbol": "CVM",
"decimals": 18
},
"infoURL": "https://cosvm.network",
"shortName": "cvm",
"chainId": 323,
"networkId": 323,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.cosvm.net",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "ZKAmoeba Testnet",
"chain": "FIL",
"rpc": [
"https://rpc.testnet.zkamoeba.com:4050/",
"https://rpc1.testnet.zkamoeba.com:4050/"
],
"faucets": [],
"nativeCurrency": {
"name": "filecoin",
"symbol": "FIL",
"decimals": 18
},
"infoURL": "https://testnet.zkamoeba.com",
"shortName": "zkamoeba-test",
"chainId": 380,
"networkId": 380,
"icon": "zkamoeba-micro",
"explorers": [
{
"name": "ZKAmoeba Test Explorer",
"url": "https://testnetexplorer.zkamoeba.com",
"icon": "zkamoeba-micro",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-314",
"bridges": [
{
"url": "https://testnet.zkamoeba.com/en/bridge"
}
]
}
},
{
"name": "ZKAmoeba Mainnet",
"chain": "FIL",
"rpc": [
"https://rpc.mainnet.zkamoeba.com/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "filecoin",
"symbol": "FIL",
"decimals": 18
},
"infoURL": "https://www.zkamoeba.com",
"shortName": "zkamoeba",
"chainId": 381,
"networkId": 381,
"icon": "zkamoeba-micro",
"explorers": [
{
"name": "ZKAmoeba Explorer",
"url": "https://explorer.zkamoeba.com",
"icon": "zkamoeba-micro",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-314",
"bridges": [
{
"url": "https://www.zkamoeba.com/en/bridge"
}
]
}
},
{
"name": "Viridis Mainnet",
"chain": "VRD",
"icon": "viridis",
"rpc": [
"https://mainnet-rpc.vrd.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Viridis Token",
"symbol": "VRD",
"decimals": 18
},
"infoURL": "https://viridis.network",
"shortName": "vrd",
"chainId": 422,
"networkId": 422,
"explorers": [
{
"name": "Viridis Mainnet",
"url": "https://explorer.vrd.network",
"standard": "EIP3091"
}
]
},
{
"name": "Syndicate Chain",
"title": "Syndicate Chain",
"chain": "Syndicate",
"rpc": [
"https://rpc-mainnet.syndicate.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://syndicate.io",
"shortName": "syndicate-chain-mainnet",
"chainId": 510,
"networkId": 510,
"status": "incubating",
"icon": "syndicate"
},
{
"name": "EIOB Mainnet",
"chain": "EIOB",
"icon": "eiob",
"rpc": [
"https://rpc.eiob.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "EIOB",
"symbol": "EIOB",
"decimals": 18
},
"infoURL": "",
"shortName": "eiob",
"chainId": 612,
"networkId": 612,
"explorers": [
{
"name": "EIOB Explorer",
"url": "https://explorer.eiob.xyz",
"standard": "none"
}
]
},
{
"name": "Vrcscan Mainnet",
"chain": "VRC",
"rpc": [
"https://rpc-mainnet-5.vrcscan.com",
"https://rpc-mainnet-6.vrcscan.com",
"https://rpc-mainnet-7.vrcscan.com",
"https://rpc-mainnet-8.vrcscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "VRC Chain",
"symbol": "VRC",
"decimals": 18
},
"infoURL": "https://vrccoin.com",
"shortName": "vrc",
"chainId": 713,
"networkId": 713,
"explorers": [
{
"name": "vrcscan",
"url": "https://vrcscan.com",
"standard": "EIP3091"
},
{
"name": "dxbscan",
"url": "https://dxb.vrcscan.com",
"standard": "EIP3091"
}
],
"icon": "vrcscan"
},
{
"name": "Lovely Network Mainnet",
"chain": "Lovely",
"icon": "lovely",
"rpc": [
"https://rpc.lovely.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Lovely",
"symbol": "LOVELY",
"decimals": 18
},
"infoURL": "https://lovely.network",
"shortName": "LOVELY",
"chainId": 730,
"networkId": 730,
"explorers": [
{
"name": "Lovely Network Mainnet",
"url": "https://scan.lovely.network",
"standard": "EIP3091"
}
]
},
{
"name": "Rupaya Testnet",
"chain": "Rupaya Testnet",
"rpc": [
"https://rpc.testnet.rupaya.io"
],
"faucets": [
"https://faucet.testnet.rupaya.io"
],
"nativeCurrency": {
"name": "Test Rupaya",
"symbol": "TRUPX",
"decimals": 18
},
"infoURL": "https://www.rupaya.io",
"shortName": "RupayaTestnet",
"chainId": 799,
"networkId": 799,
"slip44": 1,
"explorers": [
{
"name": "rupayascan",
"url": "https://scan.testnet.rupaya.io",
"standard": "EIP3091"
}
]
},
{
"name": "CheckDot Blockchain Devnet",
"chain": "CDT Blockchain",
"rpc": [
"https://devnet.checkdot.io"
],
"faucets": [],
"nativeCurrency": {
"name": "CDT",
"symbol": "CDT",
"decimals": 18
},
"infoURL": "https://checkdot.io",
"shortName": "cdt",
"chainId": 831,
"networkId": 831,
"explorers": [
{
"name": "CDT Explorer",
"url": "https://explorer.checkdot.io",
"standard": "none"
}
]
},
{
"name": "Dymension",
"chain": "Dymension",
"rpc": [
"https://dymension-evm.blockpi.network/v1/rpc/public",
"https://dymension-evm-rpc.publicnode.com",
"wss://dymension-evm-rpc.publicnode.com"
],
"faucets": [],
"nativeCurrency": {
"name": "DYM",
"symbol": "DYM",
"decimals": 18
},
"infoURL": "https://dymension.xyz",
"shortName": "dymension",
"icon": "dymension",
"chainId": 1100,
"networkId": 1100,
"explorers": [
{
"name": "dym.fyi",
"url": "https://dym.fyi",
"standard": "EIP3091"
}
]
},
{
"name": "Hybrid Testnet",
"chain": "$HYB",
"icon": "hybridIcon",
"rpc": [
"https://testnet-rpc.buildonhybrid.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Hybrid",
"symbol": "$HYB",
"decimals": 18
},
"infoURL": "https://buildonhybrid.com",
"shortName": "hyb",
"chainId": 1224,
"networkId": 1224,
"explorers": [
{
"name": "Hybrid Testnet",
"url": "https://alphatestnet.buildonhybrid.com",
"standard": "EIP3091"
}
]
},
{
"name": "MetaChain Istanbul",
"title": "MetaChain Testnet Istanbul",
"chain": "MTC",
"icon": "metachain",
"rpc": [
"https://istanbul-rpc.metachain.dev"
],
"faucets": [
"https://istanbul-faucet.metachain.dev"
],
"nativeCurrency": {
"name": "Metatime Coin",
"symbol": "MTC",
"decimals": 18
},
"infoURL": "https://metatime.com/en",
"shortName": "metatimeistanbul",
"chainId": 1453,
"networkId": 1453,
"slip44": 1453,
"explorers": [
{
"name": "MetaExplorer",
"url": "https://istanbul-explorer.metachain.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Vitruveo Mainnet",
"title": "Vitruveo is a blockchain for Creators",
"chain": "Vitruveo",
"rpc": [
"https://rpc.vitruveo.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Vitruveo Coin",
"symbol": "VTRU",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://www.vitruveo.xyz",
"shortName": "vitruveo",
"chainId": 1490,
"networkId": 1490,
"icon": "vitruveo",
"explorers": [
{
"name": "Vitruveo Explorer",
"url": "https://explorer.vitruveo.xyz",
"icon": "vitruveo",
"standard": "EIP3091"
}
]
},
{
"name": "Selendra Network Testnet",
"chain": "tSEL",
"rpc": [
"https://rpc0-testnet.selendra.org",
"https://rpc1-testnet.selendra.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Selendra",
"symbol": "tSEL",
"decimals": 18
},
"infoURL": "https://selendra.org",
"shortName": "tSEL",
"chainId": 1953,
"networkId": 1953,
"icon": "selendra"
},
{
"name": "Selendra Network Mainnet",
"chain": "SEL",
"rpc": [
"https://rpc0.selendra.org",
"https://rpc1.selendra.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Selendra",
"symbol": "SEL",
"decimals": 18
},
"infoURL": "https://selendra.org",
"shortName": "SEL",
"chainId": 1961,
"networkId": 1961,
"icon": "selendra",
"explorers": [
{
"name": "Selendra Scan",
"url": "https://scan.selendra.org",
"standard": "none"
}
]
},
{
"name": "Swan Saturn Testnet",
"chain": "SWAN",
"rpc": [
"https://saturn-rpc.swanchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SWANETH",
"symbol": "SWAN",
"decimals": 18
},
"infoURL": "https://swanchain.io/",
"shortName": "swan",
"chainId": 2024,
"networkId": 2024
},
{
"name": "Karak Mainnet",
"chain": "Karak",
"icon": "karak",
"rpc": [
"https://rpc.karak.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://karak.network",
"shortName": "karak-mainnet",
"chainId": 2410,
"networkId": 2410,
"explorers": [
{
"name": "Karak Mainnet Explorer",
"url": "https://explorer.karak.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "Polygon zkEVM Cardona Testnet",
"title": "Polygon zkEVM Cardona Testnet",
"chain": "Polygon",
"rpc": [
"https://rpc.cardona.zkevm-rpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://polygon.technology/polygon-zkevm",
"shortName": "zkevm-testnet-cardona",
"chainId": 2442,
"networkId": 2442,
"icon": "zkevm",
"explorers": [
{
"name": "polygonscan",
"url": "https://cardona-zkevm.polygonscan.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge-ui.cardona.zkevm-rpc.com"
}
]
}
},
{
"name": "Karak Testnet",
"chain": "Karak",
"icon": "karak",
"rpc": [
"https://goerli.node1.karak.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Karak",
"symbol": "KRK",
"decimals": 18
},
"infoURL": "https://karak.network",
"shortName": "karak-testnet",
"chainId": 2511,
"networkId": 2511,
"explorers": [
{
"name": "Karak Testnet Explorer",
"url": "https://goerli.scan.karak.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-5"
}
},
{
"name": "Elizabeth Testnet",
"chain": "Elizabeth",
"rpc": [
"https://testnet-rpc.timenetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TIME",
"symbol": "TIME",
"decimals": 18
},
"infoURL": "https://whitepaper.anttime.net/overview/anttime",
"shortName": "TIME",
"chainId": 2731,
"networkId": 2731,
"icon": "timenet",
"explorers": [
{
"name": "Time Network Explorer",
"url": "https://testnet-scanner.timenetwork.io",
"standard": "none",
"icon": "timenet"
}
]
},
{
"name": "Xenon Chain Testnet",
"chain": "XEN",
"rpc": [
"https://testnet-chain.xenonchain.com/",
"https://testnet-dev.xenonchain.com/"
],
"faucets": [
"https://xfaucet.xenonchain.com"
],
"nativeCurrency": {
"name": "Xenon Testnet",
"symbol": "tXEN",
"decimals": 18
},
"infoURL": "https://xenonchain.com",
"shortName": "xenon",
"chainId": 2941,
"networkId": 2941,
"icon": "xenon",
"slip44": 1,
"explorers": [
{
"name": "Xenon testnet Explorer",
"url": "https://testnet.xenonchain.com",
"standard": "none"
}
]
},
{
"name": "APEX Testnet",
"chain": "ETH",
"rpc": [
"https://exp-testnet.apexlayer.xyz"
],
"faucets": [
"https://sepoliafaucet.com/"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.apexlayer.xyz/",
"shortName": "apexsep",
"chainId": 3993,
"networkId": 3993,
"slip44": 1,
"icon": "apextestnet",
"explorers": [
{
"name": "blockscout",
"url": "https://exp-testnet.apexlayer.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://apexlayer.xyz/bridge"
}
]
}
},
{
"name": "Lisk Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.sepolia-api.lisk.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://lisk.com",
"shortName": "lisksep",
"chainId": 4202,
"networkId": 4202,
"slip44": 134,
"explorers": [
{
"name": "liskscout",
"url": "https://sepolia-blockscout.lisk.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Emoney Network Testnet",
"chain": "Emoney",
"rpc": [
"https://testnet.emoney.network/"
],
"faucets": [
"https://faucet.emoney.network/faucet"
],
"nativeCurrency": {
"name": "Emoney Network",
"symbol": "EMYC",
"decimals": 18
},
"infoURL": "https://emoney.network/",
"shortName": "emoney",
"chainId": 4544,
"networkId": 4544,
"slip44": 118,
"icon": "emoney",
"explorers": [
{
"name": "EMoney ethscan",
"url": "https://ethscan.emoney.network",
"icon": "emoney",
"standard": "EIP3091"
}
]
},
{
"name": "Gold Chain",
"title": "Gold Chain",
"chain": "Gold",
"rpc": [
"https://chain-rpc.gold.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://gold.dev",
"shortName": "gold",
"chainId": 4653,
"networkId": 4653,
"status": "incubating",
"icon": "gold"
},
{
"name": "Syndicate Testnet",
"title": "Syndicate Testnet",
"chain": "Syndicate",
"rpc": [
"https://rpc-testnet.syndicate.io"
],
"faucets": [],
"nativeCurrency": {
"name": "S-Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://syndicate.io",
"shortName": "syndicate-chain-testnet",
"chainId": 5100,
"networkId": 5100,
"status": "incubating",
"icon": "syndicate"
},
{
"name": "Syndicate Frame Chain",
"title": "Syndicate Frame Chain",
"chain": "Syndicate Frame",
"rpc": [
"https://rpc-frame.syndicate.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://syndicate.io",
"shortName": "syndicate-chain-frame",
"chainId": 5101,
"networkId": 5101,
"status": "incubating",
"icon": "syndicate"
},
{
"name": "BST Chain",
"chain": "BSTC",
"rpc": [
"https://rpc.bstchain.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BST Chain",
"symbol": "BSTC",
"decimals": 18
},
"infoURL": "https://bstchain.io",
"shortName": "BSTC",
"chainId": 7007,
"networkId": 7007,
"icon": "bstc",
"explorers": [
{
"name": "blockscout",
"url": "https://bstscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Kinto Mainnet",
"chain": "Kinto Mainnet",
"rpc": [
"https://rpc.kinto.xyz/http",
"https://kinto-mainnet.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kinto.xyz",
"shortName": "kintoMainnet",
"chainId": 7887,
"networkId": 7887,
"icon": "kinto",
"explorers": [
{
"name": "Kinto Explorer",
"url": "https://explorer.kinto.xyz",
"icon": "kinto",
"standard": "EIP3091"
}
]
},
{
"name": "Orenium Testnet Protocol",
"chain": "ORE",
"rpc": [
"https://rpc-dev-testnet.orenium.org/",
"https://rpc-testnet.orenium.org/"
],
"nativeCurrency": {
"name": "ORENIUM",
"symbol": "tORE",
"decimals": 18
},
"infoURL": "https://orenium.org",
"shortName": "tore",
"chainId": 8890,
"networkId": 8890,
"slip44": 1,
"icon": "ore",
"faucets": [
"https://faucetcoin.orenium.org"
],
"explorers": [
{
"name": "ORE Testnet Explorer",
"icon": "ore",
"url": "https://testnet.oreniumscan.org",
"standard": "none"
}
]
},
{
"name": "Nexa Testnet Block",
"chain": "Nexa Testnet",
"rpc": [
"https://rpc-testnet-nodes.nexablockscan.io"
],
"faucets": [
"https://testnet.nexablockscan.io/faucet"
],
"nativeCurrency": {
"name": "Nexa Testnet Token",
"symbol": "NEXB",
"decimals": 18
},
"infoURL": "https://www.nexablock.io",
"shortName": "NexaTestnet",
"chainId": 9024,
"networkId": 9024,
"icon": "nexaChain",
"explorers": [
{
"name": "Nexablock Testnet Explorer",
"url": "https://testnet.nexablockscan.io",
"standard": "none",
"icon": "nexaChain"
}
]
},
{
"name": "Nexa Mainnet Block",
"chain": "Nexa Mainnet",
"rpc": [
"https://rpc-nodes.nexablockscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Nexa Mainnet Token",
"symbol": "NEXB",
"decimals": 18
},
"infoURL": "https://www.nexablock.io",
"shortName": "Nexa",
"chainId": 9025,
"networkId": 9025,
"icon": "nexaChain",
"explorers": [
{
"name": "Nexablock Mainnet Explorer",
"url": "https://nexablockscan.io",
"standard": "none",
"icon": "nexaChain"
}
]
},
{
"name": "Dela Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia-dela.deperp.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.deperp.com/dela",
"shortName": "delasep",
"chainId": 9393,
"networkId": 9393,
"slip44": 1,
"icon": "delaTestnet",
"explorers": [
{
"name": "basescout",
"url": "https://sepolia-delascan.deperp.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "BEVM Testnet",
"chain": "BEVM",
"rpc": [
"https://testnet.bevm.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://bevm.io",
"shortName": "bevm",
"chainId": 11503,
"networkId": 11503,
"icon": "bevmcanary",
"explorers": [
{
"name": "bevm testnet scan",
"url": "https://scan-testnet.bevm.io",
"standard": "none"
}
]
},
{
"name": "Aternos",
"chain": "Aternos",
"icon": "aternos",
"rpc": [
"https://rpc.aternoschain.com"
],
"faucets": [
"https://faucet.aternoschain.com"
],
"nativeCurrency": {
"name": "Aternos",
"symbol": "ATR",
"decimals": 18
},
"infoURL": "https://aternoschain.com",
"shortName": "ATR",
"chainId": 12020,
"networkId": 12020,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.aternoschain.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Vitruveo Testnet",
"title": "Vitruveo is a blockchain for Creators",
"chain": "Vitruveo",
"rpc": [
"https://test-rpc.vitruveo.xyz"
],
"faucets": [
"https://faucet.vitruveo.xyz"
],
"nativeCurrency": {
"name": "Vitruveo Test Coin",
"symbol": "tVTRU",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://www.vitruveo.xyz",
"shortName": "vitruveo-test",
"chainId": 14333,
"networkId": 14333,
"icon": "vitruveo",
"explorers": [
{
"name": "Vitruveo Testnet Explorer",
"url": "https://test-explorer.vitruveo.xyz",
"icon": "vitruveo",
"standard": "EIP3091"
}
]
},
{
"name": "Eclipse Subnet",
"chain": "ECLIPSE",
"rpc": [
"https://subnets.avax.network/eclipse/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Eclipse",
"symbol": "ECLP",
"decimals": 16
},
"infoURL": "http://eclipsenet.io",
"shortName": "eclipse",
"chainId": 17172,
"networkId": 17172,
"explorers": [
{
"name": "ECLIPSE Explorer",
"url": "https://subnets-test.avax.network/eclipse",
"standard": "EIP3091"
}
]
},
{
"name": "KONET Mainnet",
"chain": "KONET",
"rpc": [
"https://api.kon-wallet.com"
],
"faucets": [],
"nativeCurrency": {
"name": "KONET",
"symbol": "KONET",
"decimals": 18
},
"infoURL": "https://konetmain.com",
"shortName": "KONET",
"chainId": 17217,
"networkId": 17217,
"slip44": 1,
"icon": "konet",
"explorers": [
{
"name": "konet-explorer",
"url": "https://explorer.kon-wallet.com",
"standard": "EIP3091"
}
]
},
{
"name": "unreal",
"title": "unreal testnet for re.al",
"chain": "unreal",
"rpc": [
"https://rpc.unreal.gelato.digital",
"wss://ws.unreal.gelato.digital"
],
"nativeCurrency": {
"name": "unreal Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/unreal",
"faucets": [],
"shortName": "unreal",
"chainId": 18231,
"networkId": 18231,
"slip44": 60,
"icon": "unreal",
"explorers": [
{
"name": "blockscout",
"url": "https://unreal.blockscout.com",
"icon": "unreal",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.unreal.gelato.digital"
}
]
}
},
{
"name": "Titan (TKX) Testnet",
"chain": "Titan (TKX)",
"rpc": [
"https://titan-testnet-json-rpc-1.tokenize-dev.com",
"https://titan-testnet-json-rpc-2.tokenize-dev.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Titan tkx",
"symbol": "TKX",
"decimals": 18
},
"infoURL": "https://tokenize.exchange",
"shortName": "titan_tkx-testnet",
"chainId": 18889,
"networkId": 18889,
"slip44": 1,
"icon": "titan_tkx",
"explorers": [
{
"name": "Titan Explorer",
"url": "https://titan-testnet-explorer-light.tokenize-dev.com",
"standard": "none",
"icon": "titan_tkx"
}
]
},
{
"name": "Decentraconnect Social",
"chain": "DCSM",
"icon": "dcsmIcon",
"rpc": [
"https://rpc.decentraconnect.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Decentraconnect Social",
"symbol": "DCSM",
"decimals": 18
},
"infoURL": "https://docs.decentraconnect.io",
"shortName": "DCSMs",
"chainId": 19224,
"networkId": 19224,
"explorers": [
{
"name": "Decentraconnect Social",
"url": "https://decentraconnect.io",
"standard": "EIP3091"
}
]
},
{
"name": "Magnet Network",
"chain": "Magnet",
"rpc": [
"https://magnet-rpc.magport.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Magnet Network",
"symbol": "DOT",
"decimals": 18
},
"infoURL": "https://magnet.magport.io/",
"shortName": "mgt",
"chainId": 19527,
"networkId": 19527,
"explorers": []
},
{
"name": "Jono11 Subnet",
"chain": "JONO11",
"icon": "jono11",
"rpc": [
"https://subnets.avax.network/jono11/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Jono11 Token",
"symbol": "JONO",
"decimals": 18
},
"infoURL": "",
"shortName": "jono11",
"chainId": 20765,
"networkId": 20765,
"explorers": [
{
"name": "JONO11 Explorer",
"url": "https://subnets-test.avax.network/jono11",
"standard": "EIP3091"
}
]
},
{
"name": "C4EI",
"chain": "C4EI",
"rpc": [
"https://rpc.c4ei.net"
],
"faucets": [
"https://play.google.com/store/apps/details?id=net.c4ei.fps2"
],
"nativeCurrency": {
"name": "C4EI",
"symbol": "C4EI",
"decimals": 18
},
"infoURL": "https://c4ei.net",
"shortName": "c4ei",
"chainId": 21004,
"networkId": 21004,
"explorers": [
{
"name": "C4EI sirato",
"url": "https://exp.c4ei.net",
"icon": "c4ei",
"standard": "none"
}
]
},
{
"name": "All About Healthy",
"chain": "AAH",
"rpc": [
"https://rpc.c4ex.net"
],
"faucets": [
"https://t.me/c4eiAirdrop"
],
"nativeCurrency": {
"name": "AAH",
"symbol": "AAH",
"decimals": 18
},
"infoURL": "https://c4ex.net",
"shortName": "aah",
"chainId": 21133,
"networkId": 21133,
"explorers": [
{
"name": "AAH Blockscout",
"url": "https://exp.c4ex.net",
"icon": "aah",
"standard": "EIP3091"
}
]
},
{
"name": "LiquidLayer Mainnet",
"chain": "LiquidLayer",
"icon": "lila",
"rpc": [
"https://mainnet.liquidlayer.network"
],
"faucets": [],
"nativeCurrency": {
"name": "LiquidLayer",
"symbol": "LILA",
"decimals": 18
},
"infoURL": "https://scan.liquidlayer.network",
"shortName": "LILA",
"chainId": 25186,
"networkId": 25186,
"explorers": [
{
"name": "LiquidLayer Mainnet Explorer",
"url": "https://scan.liquidlayer.network",
"standard": "EIP3091"
}
]
},
{
"name": "AlveyChain Testnet",
"chain": "tALV",
"rpc": [
"https://testnet-rpc.alvey.io"
],
"faucets": [
"https://faucet.alveytestnet.com"
],
"nativeCurrency": {
"name": "AlveyCoin Testnet",
"symbol": "tALV",
"decimals": 18
},
"infoURL": "https://alveychain.com/",
"shortName": "talv",
"chainId": 25839,
"networkId": 25839,
"icon": "alveychain",
"explorers": [
{
"name": "AlveyScan Testnet",
"url": "https://alveytestnet.com",
"icon": "alveychain",
"standard": "EIP3091"
}
]
},
{
"name": "GUNZ Testnet",
"chain": "tGUN",
"rpc": [
"https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "GUN",
"symbol": "GUN",
"decimals": 18
},
"icon": "guntestnet",
"infoURL": "https://gunbygunz.com",
"shortName": "Stork",
"chainId": 49321,
"networkId": 49321,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.gunzscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "DOID",
"chain": "DOID",
"rpc": [
"https://rpc.doid.tech"
],
"faucets": [],
"nativeCurrency": {
"name": "DOID",
"symbol": "DOID",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://doid.tech",
"shortName": "DOID",
"chainId": 53277,
"networkId": 53277,
"icon": "doid",
"explorers": [
{
"name": "DOID Scan",
"url": "https://scan.doid.tech",
"icon": "doid",
"standard": "EIP3091"
}
]
},
{
"name": "DOID Testnet",
"chain": "DOID",
"rpc": [
"https://rpc.testnet.doid.tech"
],
"faucets": [],
"nativeCurrency": {
"name": "DOID",
"symbol": "DOID",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://doid.tech",
"shortName": "doidTestnet",
"chainId": 56797,
"networkId": 56797,
"icon": "doid",
"explorers": [
{
"name": "DOID Testnet Scan",
"url": "https://scan.testnet.doid.tech",
"icon": "doid",
"standard": "EIP3091"
}
]
},
{
"name": "Vanguard",
"title": "Vanar Testnet Vanguard",
"chain": "VANAR",
"rpc": [
"https://rpc-vanguard.vanarchain.com",
"wss://ws-vanguard.vanarchain.com"
],
"faucets": [
"https://faucet.vanarchain.com"
],
"nativeCurrency": {
"name": "Vanguard Vanry",
"symbol": "VG",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://vanarchain.com",
"shortName": "vanguard",
"chainId": 78600,
"networkId": 78600,
"icon": "vanguard",
"explorers": [
{
"name": "Vanguard Explorer",
"url": "https://explorer-vanguard.vanarchain.com",
"icon": "vanguard",
"standard": "EIP3091"
}
]
},
{
"name": "Hizoco mainnet",
"chain": "HZC",
"icon": "hizoco",
"rpc": [
"https://hizoco.net/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Hizoco",
"symbol": "HZC",
"decimals": 18
},
"infoURL": "http://hizoco.net",
"shortName": "hzc",
"chainId": 80096,
"networkId": 80096,
"explorers": [
{
"name": "blockscout",
"url": "https://hizoco.net:38443",
"standard": "none"
}
]
},
{
"name": "Blast",
"chain": "ETH",
"rpc": [
"https://blast.blockpi.network/v1/rpc/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://blast.io/",
"shortName": "blastmainnet",
"chainId": 81457,
"networkId": 81457,
"icon": "blast",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "MetaDAP Enterprise Mainnet",
"title": "MetaDAP Enterprise Mainnet",
"chain": "MetaDAP",
"icon": "metadap",
"faucets": [],
"rpc": [
"https://rpc.chain.metadap.io",
"wss://rpc-ws.chain.metadap.io"
],
"nativeCurrency": {
"name": "DAP",
"symbol": "DAP",
"decimals": 18
},
"infoURL": "https://metadap.io/",
"shortName": "MetaDAP",
"chainId": 91120,
"networkId": 91120,
"explorers": [
{
"name": "MetaDAP Enterprise Mainnet explorer",
"url": "https://explorer.chain.metadap.io",
"standard": "none"
}
]
},
{
"name": "LiquidLayer Testnet",
"chain": "LILA",
"icon": "lila",
"rpc": [
"https://testnet.liquidlayer.network"
],
"faucets": [
"https://claim.liquidlayer.network"
],
"nativeCurrency": {
"name": "LiquidLayer Testnet",
"symbol": "LILA",
"decimals": 18
},
"infoURL": "https://testnet-scan.liquidlayer.network",
"shortName": "tLILA",
"chainId": 93572,
"networkId": 93572,
"explorers": [
{
"name": "LiquidLayer Testnet Explorer",
"url": "https://testnet-scan.liquidlayer.network",
"standard": "EIP3091"
}
]
},
{
"name": "Masa Testnet",
"chain": "MASA",
"rpc": [
"https://subnets.avax.network/masatestne/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Masa Token",
"symbol": "MASA",
"decimals": 18
},
"infoURL": "https://masa.finance",
"shortName": "masa",
"chainId": 103454,
"networkId": 103454,
"explorers": [
{
"name": "Masa Testnet Explorer",
"url": "https://subnets-test.avax.network/masatestnet",
"standard": "EIP3091"
}
]
},
{
"name": "MetaDAP Enterprise Testnet",
"title": "MetaDAP Enterprise Testnet",
"chain": "MetaDAP",
"icon": "metadap",
"faucets": [],
"rpc": [
"https://rpc.testnet.chain.metadap.io",
"wss://rpc-ws.testnet.chain.metadap.io"
],
"nativeCurrency": {
"name": "DAP",
"symbol": "DAP",
"decimals": 18
},
"infoURL": "https://metadap.io/",
"shortName": "MetaDAP-T",
"chainId": 119139,
"networkId": 119139,
"explorers": [
{
"name": "MetaDAP Enterprise Testnet explorer",
"url": "https://explorer.testnet.chain.metadap.io",
"standard": "none"
}
]
},
{
"name": "Taiko (Alpha-2 Testnet)",
"chain": "ETH",
"status": "deprecated",
"icon": "taiko",
"rpc": [
"https://rpc.a2.taiko.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://taiko.xyz",
"shortName": "taiko-a2",
"chainId": 167004,
"networkId": 167004,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.a2.taiko.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Taiko Grimsvotn L2",
"chain": "ETH",
"status": "deprecated",
"icon": "taiko",
"rpc": [
"https://rpc.test.taiko.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://taiko.xyz",
"shortName": "taiko-l2",
"chainId": 167005,
"networkId": 167005,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.test.taiko.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Taiko Eldfell L3",
"chain": "ETH",
"status": "deprecated",
"icon": "taiko",
"rpc": [
"https://rpc.l3test.taiko.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://taiko.xyz",
"shortName": "taiko-l3",
"chainId": 167006,
"networkId": 167006,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.l3test.taiko.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Bitlayer Testnet",
"chain": "Bitlayer",
"rpc": [
"https://testnet-rpc.bitlayer.org",
"wss://testnet-ws.bitlayer.org"
],
"faucets": [
"https://www.bitlayer.org/faucet"
],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://docs.bitlayer.org/",
"shortName": "Bitlayer",
"chainId": 200810,
"networkId": 200810,
"slip44": 1,
"icon": "bitlayer",
"explorers": [
{
"name": "bitlayer testnet scan",
"url": "https://testnet-scan.bitlayer.org",
"standard": "none"
}
]
},
{
"name": "Bloom Genesis Testnet",
"chain": "Bloom",
"icon": "bloom",
"rpc": [
"https://testnet-rpc.bloomgenesis.com"
],
"faucets": [
"https://faucet.bloomgenesis.com"
],
"nativeCurrency": {
"name": "Bloom",
"symbol": "BGBC",
"decimals": 18
},
"infoURL": "https://www.bloomgenesis.com",
"shortName": "BGBC-Testnet",
"chainId": 323213,
"networkId": 323213,
"explorers": [
{
"name": "Bloom Genesis Testnet",
"url": "https://testnet.bloomgenesis.com",
"standard": "EIP3091"
}
]
},
{
"name": "Bloom Genesis Mainnet",
"chain": "Bloom",
"icon": "bloom",
"rpc": [
"https://mainnet-rpc.bloomgenesis.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bloom",
"symbol": "BGBC",
"decimals": 18
},
"infoURL": "https://www.bloomgenesis.com",
"shortName": "BGBC",
"chainId": 333313,
"networkId": 333313,
"explorers": [
{
"name": "Bloom Genesis Mainnet",
"url": "https://explorer.bloomgenesis.com",
"standard": "EIP3091"
}
]
},
{
"name": "Syndr L3 Sepolia",
"title": "Syndr L3 Sepolia Rollup Testnet",
"chain": "SYNDRSEPOLIA",
"rpc": [
"https://sepolia.syndr.com/http",
"wss://sepolia.syndr.com/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://syndr.com",
"shortName": "syndr",
"chainId": 444444,
"networkId": 444444,
"explorers": [
{
"name": "Syndr L3 Sepolia Testnet Explorer",
"url": "https://sepolia-explorer.syndr.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://sepolia-bridge.syndr.com"
}
]
}
},
{
"name": "Sei Devnet",
"chain": "Sei",
"rpc": [
"https://evm-rpc-arctic-1.sei-apis.com",
"https://evm-rpc.arctic-1.seinetwork.io"
],
"faucets": [
"https://sei-faucet.nima.enterprises",
"https://sei-evm.faucetme.pro"
],
"nativeCurrency": {
"name": "Sei",
"symbol": "SEI",
"decimals": 18
},
"infoURL": "https://www.sei.io",
"shortName": "sei-devnet",
"chainId": 713715,
"networkId": 713715,
"icon": "sei",
"explorers": [
{
"name": "Seistream",
"url": "https://seistream.app",
"standard": "none"
},
{
"name": "Seitrace",
"url": "https://seitrace.com",
"standard": "EIP3091"
}
]
},
{
"name": "Jono12 Subnet",
"chain": "JONO12",
"icon": "jono12",
"rpc": [
"https://subnets.avax.network/jono12/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Jono12 Token",
"symbol": "JONO",
"decimals": 18
},
"infoURL": "",
"shortName": "jono12",
"chainId": 955081,
"networkId": 955081,
"explorers": [
{
"name": "JONO12 Explorer",
"url": "https://subnets-test.avax.network/jono12",
"standard": "EIP3091"
}
]
},
{
"name": "SKALE Nebula Hub Testnet",
"title": "SKALE Nebula Hub Testnet",
"chain": "lanky-ill-funny-testnet",
"icon": "nebula",
"rpc": [
"https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet",
"wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet"
],
"faucets": [
"https://www.sfuelstation.com/"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://nebulachain.io/",
"shortName": "nebula-testnet",
"chainId": 37084624,
"networkId": 37084624,
"slip44": 1,
"explorers": [
{
"name": "Blockscout",
"url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "Plume Testnet",
"title": "Plume Sepolia Rollup Testnet",
"chain": "ETH",
"rpc": [
"https://plume-testnet.rpc.caldera.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Plume Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.plumenetwork.xyz/",
"shortName": "plume-testnet",
"chainId": 161221135,
"networkId": 161221135,
"slip44": 1,
"icon": "plume",
"explorers": [
{
"name": "Blockscout",
"url": "https://plume-testnet.explorer.caldera.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://plume-testnet.calderabridge.xyz"
}
]
}
},
{
"name": "Ancient8",
"chain": "Ancient8",
"icon": "ancient8",
"rpc": [
"https://rpc.ancient8.gg"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ancient8.gg/",
"shortName": "ancient8",
"chainId": 888888888,
"networkId": 888888888,
"explorers": [
{
"name": "Ancient8 Explorer",
"url": "https://scan.ancient8.gg",
"standard": "EIP3091"
}
]
},
{
"name": "SKALE Calypso Hub Testnet",
"title": "SKALE Calypso Hub Testnet",
"chain": "giant-half-dual-testnet",
"icon": "calypso",
"rpc": [
"https://testnet.skalenodes.com/v1/giant-half-dual-testnet"
],
"faucets": [
"https://www.sfuelstation.com/"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://calypsohub.network/",
"shortName": "calypso-testnet",
"chainId": 974399131,
"networkId": 974399131,
"slip44": 1,
"explorers": [
{
"name": "Blockscout",
"url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "SKALE Titan Hub Testnet",
"title": "SKALE Titan Hub Testnet",
"chain": "aware-fake-trim-testnet",
"icon": "titan",
"rpc": [
"https://testnet.skalenodes.com/v1/aware-fake-trim-testnet",
"wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet"
],
"faucets": [
"https://www.sfuelstation.com/"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "",
"shortName": "titan-testnet",
"chainId": 1020352220,
"networkId": 1020352220,
"slip44": 1,
"explorers": [
{
"name": "Blockscout",
"url": "https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "PowerGold",
"chain": "NEAR",
"rpc": [
"https://powergold.aurora.dev"
],
"icon": "powergold",
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.powergold.tech",
"shortName": "powergold",
"chainId": 1313161560,
"networkId": 1313161560,
"explorers": [
{
"name": "PowerGold explorer",
"url": "https://explorer.powergold.aurora.dev",
"standard": "EIP3091"
}
]
},
{
"name": "SKALE Europa Hub Testnet",
"title": "SKALE Europa Hub Testnet",
"chain": "juicy-low-small-testnet",
"icon": "europa",
"rpc": [
"https://testnet.skalenodes.com/v1/juicy-low-small-testnet"
],
"faucets": [
"https://www.sfuelstation.com/"
],
"nativeCurrency": {
"name": "sFUEL",
"symbol": "sFUEL",
"decimals": 18
},
"infoURL": "https://europahub.network/",
"shortName": "europa-testnet",
"chainId": 1444673419,
"networkId": 1444673419,
"slip44": 1,
"explorers": [
{
"name": "Blockscout",
"url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com",
"standard": "EIP3091"
}
]
},
{
"name": "GitSwarm Test Network",
"title": "GitSwarm Test Network",
"chain": "ETH",
"icon": "gitswarm",
"rpc": [
"https://gitswarm.com:2096"
],
"faucets": [],
"nativeCurrency": {
"name": "GitSwarm Ether",
"symbol": "GS-ETH",
"decimals": 18
},
"infoURL": "https://gitswarm.com/",
"shortName": "GS-ETH",
"chainId": 28872323069,
"networkId": 28872323069,
"slip44": 1,
"explorers": [],
"status": "incubating"
},
{
"name": "Kakarot Sepolia",
"chain": "ETH",
"icon": "kakarot",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kakarot.org",
"shortName": "kkrt-sepolia",
"chainId": 107107114116,
"networkId": 107107114116,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": []
}
},
{
"name": "WDC Chain",
"chainId": 999999,
"shortName": "WDC",
"chain": "WDC",
"network": "mainnet",
"networkId": 999999,
"nativeCurrency": {
"name": "World",
"symbol": "WORLD",
"decimals": 18
},
"rpc": [
"https://rpc.worldcoin.group"
],
"faucets": [],
"explorers": [
{
"name": "WDCScan",
"url": "https://scan.worldcoin.group",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901010969.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709900938585.png",
"color_chain_bg": "0x110044",
"color_chain_text": "0x15cad3",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709900563540.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709900974713.png"
}
},
{
"name": "Hoo Smart Chain Testnet",
"chain": "HSC",
"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": "HSC",
"chainId": 170,
"networkId": 170,
"app_resource": {
"ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/1.png",
"ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/0.png",
"ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/2.png",
"color_chain_bg": "0x00C0AB"
}
},
{
"name": "EtherLite Chain",
"chainId": 111,
"shortName": "ETL",
"chain": "EtherLite",
"network": "mainnet",
"networkId": 111,
"nativeCurrency": {
"name": "EtherLite Coin",
"symbol": "ETL",
"decimals": 18
},
"rpc": [
"https://rpc.etherlite.org"
],
"faucets": [
"https://etherlite.org/faucets"
],
"infoURL": "https://forum.etherlite.org/"
},
{
"name": "Namefi Chain Mainnet",
"chain": "NFIC",
"rpc": [
"https://rpc.chain.namefi.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Namefi Coin",
"symbol": "NFIC",
"decimals": 18
},
"infoURL": "https://namefi.io/",
"shortName": "nfic",
"chainId": 132,
"networkId": 132
},
{
"name": "HashKey Chain Testnet",
"title": "HashKey Chain Testnet",
"chain": "HashKey Chain Testnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "HashKey EcoPoints",
"symbol": "HSK",
"decimals": 18
},
"infoURL": "https://hashkey.cloud",
"shortName": "HSKT",
"chainId": 133,
"networkId": 133,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "EternalCoin Mainnet",
"chain": "Eter",
"icon": "eternal",
"rpc": [
"https://mainnet.eternalcoin.io/v1",
"ws://mainnet.eternalcoin.io/v1/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Eternal",
"symbol": "Eter",
"decimals": 18
},
"infoURL": "https://eternalcoin.io",
"shortName": "Eter",
"chainId": 140,
"networkId": 140
},
{
"name": "SoraAI Testnet",
"chain": "SETH",
"icon": "ethereum",
"rpc": [
"https://rpc-testnet.soraai.bot"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "SoraETH",
"symbol": "SETH",
"decimals": 18
},
"infoURL": "https://soraai.bot",
"shortName": "SETH",
"chainId": 145,
"networkId": 145,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.soraai.bot",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.soraai.bot"
}
]
}
},
{
"name": "Flag Mainnet",
"chain": "Flag",
"icon": "flag",
"rpc": [
"https://mainnet-rpc.flagscan.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Flag",
"symbol": "FLAG",
"decimals": 18
},
"infoURL": "https://flagscan.xyz",
"shortName": "FLAG",
"chainId": 147,
"networkId": 147,
"explorers": [
{
"name": "Flag Mainnet Explorer",
"url": "https://flagscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Roburna Mainnet",
"chain": "RBA",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://dataseed.roburna.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Roburna",
"symbol": "RBA",
"decimals": 18
},
"infoURL": "https://www.roburna.com/",
"shortName": "rba",
"chainId": 158,
"networkId": 158,
"icon": "roburna",
"explorers": [
{
"name": "Rbascan Explorer",
"url": "https://rbascan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Roburna Testnet",
"chain": "RBAT",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://preseed-testnet-1.roburna.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Roburna",
"symbol": "RBAT",
"decimals": 18
},
"infoURL": "https://www.roburna.com/",
"shortName": "rbat",
"chainId": 159,
"networkId": 159,
"icon": "roburna",
"explorers": [
{
"name": "Rbascan Testnet Explorer",
"url": "https://testnet.rbascan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Omni Testnet",
"chain": "Omni",
"status": "active",
"rpc": [
"https://testnet.omni.network"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Omni",
"symbol": "OMNI",
"decimals": 18
},
"infoURL": "https://docs.omni.network",
"shortName": "omni_testnet",
"chainId": 164,
"networkId": 164,
"slip44": 1,
"explorers": [
{
"name": "Omni X-Explorer",
"url": "https://explorer.testnet.omni.network",
"standard": "none"
},
{
"name": "Omni EVM Explorer on Blockscout",
"url": "https://omni-testnet.blockscout.com",
"standard": "EIP3091"
},
{
"name": "Omni EVM Explorer on Routescan",
"url": "https://testnet.omniscan.network",
"standard": "EIP3091"
}
]
},
{
"name": "Omni",
"chain": "Omni",
"status": "incubating",
"rpc": [],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Omni",
"symbol": "OMNI",
"decimals": 18
},
"infoURL": "https://docs.omni.network/",
"shortName": "omni",
"chainId": 166,
"networkId": 166,
"slip44": 1
},
{
"name": "DC Mainnet",
"chain": "dcchain",
"icon": "dcchain",
"rpc": [
"https://rpc.dcnetio.cloud",
"wss://ws.dcnetio.cloud"
],
"faucets": [],
"nativeCurrency": {
"name": "DC Native Token",
"symbol": "DCT",
"decimals": 18
},
"infoURL": "https://www.dcnetio.cloud",
"shortName": "dcchain",
"chainId": 176,
"networkId": 176,
"explorers": [
{
"name": "dcscan",
"url": "https://exp.dcnetio.cloud",
"standard": "none"
}
]
},
{
"name": "Waterfall Network",
"chain": "Waterfall Network",
"rpc": [
"https://rpc.waterfall.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "WATER",
"symbol": "WATER",
"decimals": 18
},
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://waterfall.network",
"shortName": "water",
"chainId": 181,
"networkId": 181,
"icon": "waterfall-main",
"explorers": []
},
{
"name": "Mint Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc.mintchain.io",
"https://global.rpc.mintchain.io",
"https://asia.rpc.mintchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.mintchain.io",
"shortName": "mint",
"chainId": 185,
"networkId": 185,
"icon": "mint",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.mintchain.io",
"icon": "mint",
"standard": "EIP3091"
}
]
},
{
"name": "FileFileGo",
"chain": "FFG",
"icon": "ffgIcon",
"rpc": [
"https://rpc.filefilego.com/rpc"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "FFG",
"symbol": "FFG",
"decimals": 18
},
"infoURL": "https://filefilego.com",
"shortName": "ffg",
"chainId": 191,
"networkId": 191
},
{
"name": "X Layer Mainnet",
"chain": "X Layer",
"rpc": [
"https://rpc.xlayer.tech",
"https://xlayerrpc.okx.com"
],
"faucets": [],
"nativeCurrency": {
"name": "X Layer Global Utility Token",
"symbol": "OKB",
"decimals": 18
},
"features": [],
"infoURL": "https://www.okx.com/xlayer",
"shortName": "okb",
"chainId": 196,
"networkId": 196,
"icon": "xlayer",
"explorers": [
{
"name": "OKLink",
"url": "https://www.oklink.com/xlayer",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Edgeless Testnet",
"chain": "EdgelessTestnet",
"rpc": [
"https://testnet.rpc.edgeless.network/http"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Edgeless Wrapped Eth",
"symbol": "EwEth",
"decimals": 18
},
"infoURL": "https://edgeless.network",
"shortName": "edgeless-testnet",
"chainId": 202,
"networkId": 202,
"explorers": [
{
"name": "Edgeless Explorer",
"url": "https://testnet.explorer.edgeless.network",
"standard": "EIP3091"
}
]
},
{
"name": "B2 Hub Mainnet",
"chain": "B2",
"rpc": [
"https://hub-rpc.bsquared.network"
],
"faucets": [],
"nativeCurrency": {
"name": "BSquared Token",
"symbol": "B2",
"decimals": 18
},
"infoURL": "https://www.bsquared.network",
"shortName": "B2Hub-mainnet",
"chainId": 213,
"networkId": 213,
"icon": "bsquare",
"explorers": [
{
"name": "B2 Hub Mainnet Explorer",
"url": "https://hub-explorer.bsquared.network",
"icon": "bsquare",
"standard": "EIP3091"
}
]
},
{
"name": "B2 Mainnet",
"title": "B2 Mainnet",
"chain": "B2",
"rpc": [
"https://mainnet.b2-rpc.com",
"https://rpc.bsquared.network",
"https://b2-mainnet.alt.technology",
"https://b2-mainnet-public.s.chainbase.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://www.bsquared.network",
"shortName": "B2-mainnet",
"chainId": 223,
"networkId": 223,
"icon": "bsquare",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.bsquared.network",
"icon": "bsquare",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-213",
"bridges": [
{
"url": "https://www.bsquared.network/bridge"
}
]
}
},
{
"name": "Mind Network Mainnet",
"chain": "FHE",
"rpc": [
"https://rpc_mainnet.mindnetwork.xyz",
"wss://rpc_mainnet.mindnetwork.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "FHE",
"symbol": "FHE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://mindnetwork.xyz",
"shortName": "fhe",
"chainId": 228,
"networkId": 228
},
{
"name": "Blast Mainnet",
"chain": "ETH",
"icon": "blastIcon",
"rpc": [
"https://rpc.blastblockchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.blastblockchain.com",
"shortName": "blast",
"chainId": 238,
"networkId": 238,
"explorers": [
{
"name": "Blast Mainnet",
"url": "https://scan.blastblockchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Neura",
"title": "Neura Mainnet",
"chain": "NEURA",
"icon": "neura",
"rpc": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ankr",
"symbol": "ANKR",
"decimals": 18
},
"infoURL": "https://www.neuraprotocol.io/",
"shortName": "neura",
"chainId": 266,
"networkId": 266,
"status": "incubating",
"explorers": []
},
{
"name": "Neura Testnet",
"title": "Neura Testnet",
"chain": "NEURA",
"icon": "neura",
"rpc": [
"https://rpc.ankr.com/neura_testnet"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://testnet.neuraprotocol.io/faucet"
],
"nativeCurrency": {
"name": "Testnet Ankr",
"symbol": "ANKR",
"decimals": 18
},
"infoURL": "https://www.neuraprotocol.io/",
"shortName": "tneura",
"chainId": 267,
"networkId": 267,
"explorers": [
{
"name": "ankrscan-neura",
"url": "https://testnet.explorer.neuraprotocol.io",
"icon": "neura",
"standard": "EIP3091"
},
{
"name": "blockscout",
"url": "https://explorer.neura-testnet.ankr.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"status": "active",
"slip44": 1
},
{
"name": "Neura Devnet",
"title": "Neura Devnet",
"chain": "NEURA",
"icon": "neura",
"rpc": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Devnet Ankr",
"symbol": "ANKR",
"decimals": 18
},
"infoURL": "https://www.neuraprotocol.io/",
"shortName": "dneura",
"chainId": 268,
"networkId": 268,
"explorers": [],
"status": "incubating",
"slip44": 1
},
{
"name": "xFair.AI Mainnet",
"chain": "FAI",
"rpc": [
"https://rpc_mainnet.xfair.ai",
"wss://rpc_mainnet.xfair.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "FAI",
"symbol": "FAI",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://xfair.ai",
"shortName": "fai",
"chainId": 278,
"networkId": 278
},
{
"name": "Cronos zkEVM Testnet",
"chain": "CronosZkEVMTestnet",
"rpc": [
"https://testnet.zkevm.cronos.org"
],
"faucets": [
"https://zkevm.cronos.org/faucet"
],
"nativeCurrency": {
"name": "Cronos zkEVM Test Coin",
"symbol": "zkTCRO",
"decimals": 18
},
"infoURL": "https://docs-zkevm.cronos.org",
"shortName": "zkTCRO",
"chainId": 282,
"networkId": 282,
"slip44": 1,
"explorers": [
{
"name": "Cronos zkEVM Testnet Explorer",
"url": "https://explorer.zkevm.cronos.org/testnet",
"standard": "none"
}
]
},
{
"name": "zkCandy Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.rpc.zkcandy.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zkcandy.io/",
"shortName": "zkcandy-sepolia",
"chainId": 302,
"networkId": 302,
"icon": "zkcandy",
"explorers": [
{
"name": "zkCandy Block Explorer",
"url": "https://sepolia.explorer.zkcandy.io",
"icon": "zkcandy",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://sepolia.bridge.zkcandy.io/"
}
]
},
"redFlags": [
"reusedChainId"
]
},
{
"name": "Furtheon",
"chain": "Furtheon Network",
"rpc": [
"https://rpc.furtheon.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Furtheon",
"symbol": "FTH",
"decimals": 18
},
"infoURL": "https://furtheon.org/",
"shortName": "furtheon",
"chainId": 308,
"networkId": 308,
"explorers": [
{
"name": "furthscan",
"url": "http://furthscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "CamDL Testnet",
"chain": "CADL",
"rpc": [
"https://rpc1.testnet.camdl.gov.kh/"
],
"faucets": [
"https://faucet.testnet.camdl.gov.kh/"
],
"nativeCurrency": {
"name": "CADL",
"symbol": "CADL",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://camdl.gov.kh/",
"shortName": "camdl-testnet",
"chainId": 395,
"networkId": 395,
"icon": "camdl",
"explorers": [
{
"name": "CamDL Testnet Explorer",
"url": "https://explorer.testnet.camdl.gov.kh",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Near Mainnet",
"chain": "NEAR",
"rpc": [],
"icon": "near",
"faucets": [],
"nativeCurrency": {
"name": "NEAR",
"symbol": "NEAR",
"decimals": 18
},
"infoURL": "https://near.org/",
"shortName": "near",
"chainId": 397,
"networkId": 397,
"explorers": [
{
"name": "Near Blocks",
"url": "https://nearblocks.io",
"standard": "none"
}
]
},
{
"name": "Near Testnet",
"chain": "NEAR",
"rpc": [],
"icon": "near",
"faucets": [],
"nativeCurrency": {
"name": "Testnet NEAR",
"symbol": "NEAR",
"decimals": 18
},
"infoURL": "https://aurora.dev",
"shortName": "near-testnet",
"chainId": 398,
"networkId": 398,
"explorers": [
{
"name": "Near blocks",
"url": "https://testnet.nearblocks.io",
"standard": "none"
}
]
},
{
"name": "Syndr L3",
"chainId": 404,
"shortName": "syndr-l3",
"title": "Syndr L3 Rollup",
"chain": "SYNDR",
"networkId": 404,
"icon": "syndr",
"rpc": [
"https://rpc.syndr.com",
"wss://rpc.syndr.com/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://syndr.com",
"explorers": [
{
"name": "Syndr L3 Explorer",
"url": "https://explorer.syndr.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://bridge.syndr.com"
}
]
}
},
{
"name": "Boyaa Mainnet",
"chain": "BYC",
"rpc": [
"https://evm-rpc.mainnet.boyaa.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Boyaa mainnet native coin",
"symbol": "BYC",
"decimals": 18
},
"infoURL": "https://boyaa.network",
"shortName": "BYC",
"chainId": 434,
"networkId": 434,
"icon": "boyaanetwork",
"explorers": [
{
"name": "Boyaa explorer",
"url": "https://explorer.mainnet.boyaa.network",
"standard": "EIP3091"
}
]
},
{
"name": "OpTrust Mainnet",
"chain": "OpTrust",
"rpc": [
"https://rpc.optrust.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BSC",
"symbol": "BNB",
"decimals": 18
},
"infoURL": "https://optrust.io",
"shortName": "optrust",
"chainId": 537,
"networkId": 537,
"icon": "optrust",
"explorers": [
{
"name": "OpTrust explorer",
"url": "https://scan.optrust.io",
"icon": "optrust",
"standard": "none"
}
]
},
{
"name": "Testnet",
"chain": "Flow",
"rpc": [
"https://testnet.evm.nodes.onflow.org"
],
"faucets": [
"https://testnet-faucet.onflow.org"
],
"nativeCurrency": {
"name": "FLOW",
"symbol": "FLOW",
"decimals": 18
},
"infoURL": "https://developers.flow.com/evm/about",
"shortName": "flow-testnet",
"chainId": 545,
"networkId": 545,
"icon": "flowevm",
"explorers": [
{
"name": "Flow Diver",
"url": "https://testnet.flowdiver.io",
"standard": "none"
}
]
},
{
"name": "Filenova Mainnet",
"chain": "Filenova",
"rpc": [
"https://rpc.filenova.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Filecoin",
"symbol": "FIL",
"decimals": 18
},
"infoURL": "https://filenova.org",
"shortName": "filenova",
"chainId": 579,
"networkId": 579,
"icon": "filenova",
"explorers": [
{
"name": "filenova explorer",
"url": "https://scan.filenova.org",
"icon": "filenova",
"standard": "none"
}
]
},
{
"name": "Previewnet",
"chain": "Flow",
"rpc": [
"https://previewnet.evm.nodes.onflow.org"
],
"faucets": [
"https://previewnet-faucet.onflow.org"
],
"nativeCurrency": {
"name": "FLOW",
"symbol": "FLOW",
"decimals": 18
},
"infoURL": "https://developers.flow.com/evm/about",
"shortName": "flow-previewnet",
"chainId": 646,
"networkId": 646,
"icon": "flowevm",
"explorers": [
{
"name": "Flow Diver",
"url": "https://previewnet.flowdiver.io",
"standard": "none"
}
]
},
{
"name": "UltronSmartchain",
"chain": "UltronSmartchain",
"rpc": [
"https://rpc.ultronsmartchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ulc",
"symbol": "ULC",
"decimals": 18
},
"infoURL": "https://ultronsmartchain.io",
"shortName": "ultronsmartchain",
"chainId": 662,
"networkId": 662,
"icon": "ultronsmartchain",
"explorers": [
{
"name": "ultronsmartchain explorer",
"url": "https://scan.ultronsmartchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Redstone",
"chain": "ETH",
"rpc": [
"https://rpc.redstonechain.com",
"wss://rpc.redstonechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://redstone.xyz",
"shortName": "redstone",
"chainId": 690,
"networkId": 690,
"icon": "redstone",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.redstone.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://redstone.xyz/deposit"
}
]
}
},
{
"name": "Mainnet",
"chain": "Flow",
"rpc": [
"https://mainnet.evm.nodes.onflow.org"
],
"faucets": [],
"nativeCurrency": {
"name": "FLOW",
"symbol": "FLOW",
"decimals": 18
},
"infoURL": "https://developers.flow.com/evm/about",
"shortName": "flow-mainnet",
"chainId": 747,
"networkId": 747,
"icon": "flowevm",
"explorers": [
{
"name": "Flow Diver",
"url": "https://flowdiver.io",
"standard": "none"
}
]
},
{
"name": "Runic Chain Testnet",
"chain": "Runic",
"rpc": [
"https://rpc-testnet.runic.build"
],
"faucets": [
"https://faucet.runic.build"
],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "rBTC",
"decimals": 18
},
"infoURL": "https://runic.build",
"shortName": "runic-testnet",
"chainId": 822,
"networkId": 822,
"status": "active",
"icon": "runic-testnet",
"explorers": [
{
"name": "RunicScan",
"url": "https://scan.runic.build",
"icon": "runic-testnet",
"standard": "EIP3091"
}
]
},
{
"name": "MAXI Chain Testnet",
"chain": "MAXI",
"rpc": [
"https://rpc-testnet.maxi.network"
],
"faucets": [
"https://faucet.maxi.network"
],
"nativeCurrency": {
"name": "MAXICOIN",
"symbol": "MAXI",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://maxi.network",
"shortName": "maxi-testnet",
"chainId": 898,
"networkId": 898,
"icon": "maxi",
"explorers": [
{
"name": "Maxi Chain Testnet Explorer",
"url": "https://testnet.maxi.network",
"standard": "EIP3091"
}
]
},
{
"name": "TAPROOT Mainnet",
"title": "TAPROOT Mainnet",
"chain": "TAPROOT CHAIN",
"rpc": [
"https://rpc.taprootchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TBTC",
"symbol": "TBTC",
"decimals": 18
},
"infoURL": "https://taprootchain.io",
"shortName": "TAPROOT-Mainnet",
"chainId": 911,
"networkId": 911,
"icon": "taproot",
"explorers": [
{
"name": "TAPROOT Scan",
"url": "https://scan.taprootchain.io",
"icon": "taproot",
"standard": "EIP3091"
}
]
},
{
"name": "EthXY",
"chain": "EthXY",
"rpc": [
"https://rpc.ethxy.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Settled EthXY Token",
"symbol": "SEXY",
"decimals": 18
},
"icon": "sexy",
"infoURL": "https://ethxy.com",
"shortName": "sexy",
"chainId": 969,
"networkId": 969,
"explorers": [
{
"name": "EthXY Network Explorer",
"url": "https://explorer.ethxy.com",
"standard": "EIP3091"
}
]
},
{
"name": "EthXY Testnet",
"chain": "EthXY",
"rpc": [
"https://rpc.testnet.ethxy.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Settled EthXY Token",
"symbol": "SEXY",
"decimals": 18
},
"icon": "sexyTestnet",
"infoURL": "https://ethxy.com",
"shortName": "sexyTestnet",
"chainId": 979,
"networkId": 979,
"explorers": [
{
"name": "EthXY Testnet Network Explorer",
"url": "https://explorer.testnet.ethxy.com",
"standard": "EIP3091"
}
]
},
{
"name": "Jumbochain Mainnet",
"chain": "Jumbo",
"rpc": [
"https://rpcpriv.jumbochain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "JNFTC",
"symbol": "JNFTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://jumbochain.org",
"shortName": "Jumboscan",
"chainId": 1009,
"networkId": 1009,
"slip44": 1,
"explorers": [
{
"name": "Jumboscan",
"url": "https://jumboscan.jumbochain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Rebus Mainnet",
"title": "Rebuschain Mainnet",
"chain": "REBUS",
"rpc": [
"https://apievm.rebuschain.com/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Rebus",
"symbol": "REBUS",
"decimals": 18
},
"infoURL": "https://www.rebuschain.com",
"shortName": "rebus",
"chainId": 1011,
"networkId": 1011,
"icon": "rebus",
"explorers": [
{
"name": "Rebus EVM Explorer (Blockscout)",
"url": "https://evm.rebuschain.com",
"icon": "rebus",
"standard": "none"
},
{
"name": "Rebus Cosmos Explorer (ping.pub)",
"url": "https://cosmos.rebuschain.com",
"icon": "rebus",
"standard": "none"
}
]
},
{
"name": "IOTA EVM Testnet",
"title": "IOTA EVM Testnet",
"chain": "IOTA EVM",
"icon": "iotaevm",
"rpc": [
"https://json-rpc.evm.testnet.iotaledger.net"
],
"faucets": [
"https://evm-toolkit.evm.testnet.iotaledger.net"
],
"nativeCurrency": {
"name": "IOTA",
"symbol": "IOTA",
"decimals": 18
},
"infoURL": "https://www.iota.org",
"shortName": "iotaevm-testnet",
"chainId": 1075,
"networkId": 1075,
"explorers": [
{
"name": "explorer",
"url": "https://explorer.evm.testnet.iotaledger.net",
"standard": "EIP3091"
}
]
},
{
"name": "B2 Hub Testnet",
"chain": "BSQ",
"rpc": [
"https://testnet-hub-rpc.bsquared.network"
],
"faucets": [],
"nativeCurrency": {
"name": "BSquared Token",
"symbol": "B2",
"decimals": 18
},
"infoURL": "https://www.bsquared.network",
"shortName": "B2Hub-testnet",
"chainId": 1113,
"networkId": 1113,
"icon": "bsquare",
"explorers": [
{
"name": "B2 Hub Habitat Testnet Explorer",
"url": "https://testnet-hub-explorer.bsquared.network",
"icon": "bsquare",
"standard": "EIP3091"
}
]
},
{
"name": "B2 Testnet",
"title": "B2 Testnet",
"chain": "Habitat",
"rpc": [
"https://b2-testnet.alt.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://www.bsquared.network",
"shortName": "B2-testnet",
"chainId": 1123,
"networkId": 1123,
"icon": "bsquare",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-explorer.bsquared.network",
"icon": "bsquare",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1113"
}
},
{
"name": "Lisk",
"chain": "ETH",
"rpc": [
"https://rpc.api.lisk.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://lisk.com",
"shortName": "lisk",
"chainId": 1135,
"networkId": 1135,
"slip44": 134,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.lisk.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Flag Testnet",
"chain": "Flag",
"icon": "flag",
"rpc": [
"https://testnet-rpc.flagscan.xyz"
],
"faucets": [
"https://faucet.flagscan.xyz"
],
"nativeCurrency": {
"name": "Flag Testnet",
"symbol": "FLAG",
"decimals": 18
},
"infoURL": "https://testnet-explorer.flagscan.xyz",
"shortName": "tFLAG",
"chainId": 1147,
"networkId": 1147,
"explorers": [
{
"name": "Flag Testnet Explorer",
"url": "https://testnet-explorer.flagscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "ClubMos Mainnet",
"chain": "MOS",
"rpc": [
"https://mainnet.mosscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ClubMos",
"symbol": "MOS",
"decimals": 18
},
"infoURL": "https://www.mosscan.com",
"shortName": "MOS",
"chainId": 1188,
"networkId": 1188,
"icon": "clubmos",
"explorers": [
{
"name": "mosscan",
"url": "https://www.mosscan.com",
"icon": "clubmos",
"standard": "none"
}
]
},
{
"name": "SaitaBlockChain(SBC)",
"chain": "SaitaBlockChain(SBC)",
"rpc": [
"https://rpc-nodes.saitascan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SaitaBlockChain(SBC)",
"symbol": "STC",
"decimals": 18
},
"infoURL": "https://saitachain.com",
"shortName": "SBC",
"chainId": 1209,
"networkId": 1209,
"icon": "SaitaBlockChain(SBC)",
"explorers": [
{
"name": "Saitascan explorer",
"url": "https://saitascan.io",
"standard": "none",
"icon": "SaitaBlockChain(SBC)"
}
]
},
{
"name": "Sei Network",
"chain": "Sei",
"rpc": [
"https://evm-rpc.sei-apis.com",
"wss://evm-ws.sei-apis.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Sei",
"symbol": "SEI",
"decimals": 18
},
"infoURL": "https://www.sei.io",
"shortName": "sei",
"chainId": 1329,
"networkId": 1329,
"icon": "seiv2",
"explorers": [
{
"name": "Seitrace",
"url": "https://seitrace.com",
"standard": "EIP3091"
}
]
},
{
"name": "Ramestta Mainnet",
"chain": "Ramestta",
"icon": "ramestta",
"rpc": [
"https://blockchain.ramestta.com",
"https://blockchain2.ramestta.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Rama",
"symbol": "RAMA",
"decimals": 18
},
"infoURL": "https://www.ramestta.com",
"shortName": "RAMA",
"chainId": 1370,
"networkId": 1370,
"explorers": [
{
"name": "ramascan",
"url": "https://ramascan.com",
"icon": "ramestta",
"standard": "EIP3091"
}
]
},
{
"name": "Pingaksha testnet",
"chain": "Pingaksha",
"icon": "ramestta",
"rpc": [
"https://testnet.ramestta.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Rama",
"symbol": "tRAMA",
"decimals": 18
},
"infoURL": "https://www.ramestta.com",
"shortName": "tRAMA",
"chainId": 1377,
"networkId": 1377,
"explorers": [
{
"name": "Pingaksha",
"url": "https://pingaksha.ramascan.com",
"icon": "ramestta",
"standard": "EIP3091"
}
]
},
{
"name": "Silicon zkEVM Sepolia Testnet",
"title": "Silicon zkEVM Sepolia Testnet",
"chain": "Silicon",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "",
"shortName": "silicon-sepolia-testnet",
"chainId": 1414,
"networkId": 1414,
"icon": "silicon",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": []
},
"status": "incubating"
},
{
"name": "iDos Games Chain Testnet",
"chain": "IGC",
"icon": "igc-testnet",
"rpc": [
"https://rpc-testnet.idos.games"
],
"faucets": [],
"nativeCurrency": {
"name": "iDos Games Coin",
"symbol": "IGC",
"decimals": 18
},
"infoURL": "https://idosgames.com/",
"shortName": "IGC",
"chainId": 1499,
"networkId": 1499,
"explorers": [
{
"name": "IGC-Scan",
"url": "https://igcscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Ethereum Inscription Mainnet",
"chain": "ETINS",
"rpc": [
"https://rpc.etins.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum Inscription",
"symbol": "ETINS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.etins.org",
"shortName": "etins",
"chainId": 1617,
"networkId": 1617,
"explorers": [
{
"name": "Ethereum Inscription Explorer",
"url": "https://explorer.etins.org",
"standard": "none"
}
]
},
{
"name": "Doric Network",
"chain": "DRC",
"icon": "doric",
"rpc": [
"https://mainnet.doric.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Doric Native Token",
"symbol": "DRC",
"decimals": 18
},
"infoURL": "https://doric.network",
"shortName": "DRC",
"chainId": 1717,
"networkId": 1717,
"explorers": [
{
"name": "Doric Explorer",
"url": "https://explorer.doric.network",
"standard": "EIP3091"
}
]
},
{
"name": "Reya Network",
"chain": "Reya",
"rpc": [
"https://rpc.reya.network",
"wss://ws.reya.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://reya.network",
"shortName": "reya",
"chainId": 1729,
"networkId": 1729,
"explorers": [
{
"name": "Reya Network Explorer",
"url": "https://explorer.reya.network",
"standard": "EIP3091"
}
]
},
{
"name": "Metal L2 Testnet",
"chain": "Metal L2 Testnet",
"rpc": [
"https://testnet.rpc.metall2.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://metall2.com",
"shortName": "metall2-testnet",
"chainId": 1740,
"networkId": 1740,
"icon": "metal",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.explorer.metall2.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Metal L2",
"chain": "Metal L2",
"rpc": [
"https://rpc.metall2.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://metall2.com",
"shortName": "metall2",
"chainId": 1750,
"networkId": 1750,
"icon": "metal",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.metall2.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "ZKBase Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia-rpc.zkbase.app"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zkbase.org/",
"shortName": "zkbase-sepolia",
"chainId": 1789,
"networkId": 1789,
"slip44": 1,
"icon": "zkbase",
"explorers": [
{
"name": "ZKbase Block Explorer",
"url": "https://sepolia-explorer.zkbase.app",
"icon": "zkbase",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portral.zkbase.app/"
}
]
},
"redFlags": [
"reusedChainId"
]
},
{
"name": "UPB CRESCDI Testnet",
"chain": "UPBEth",
"rpc": [
"https://testnet.crescdi.pub.ro"
],
"infoURL": "https://mobylab.docs.crescdi.pub.ro/blog/UPB-CRESCDI-Testnet",
"faucets": [],
"nativeCurrency": {
"name": "UPBEth",
"symbol": "UPBEth",
"decimals": 18
},
"shortName": "UPBEth",
"chainId": 1918,
"networkId": 1918,
"explorers": []
},
{
"name": "AIW3 Testnet",
"chain": "AIW3",
"rpc": [
"https://rpc-testnet.aiw3.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://aiw3.io/",
"shortName": "AIW3-Testnet",
"chainId": 1956,
"networkId": 1956,
"icon": "aiw3",
"explorers": [
{
"name": "aiw3 testnet scan",
"url": "https://scan-testnet.aiw3.io",
"standard": "none"
}
]
},
{
"name": "Hubble Exchange",
"chain": "Hubblenet",
"icon": "hubblenet",
"rpc": [
"https://rpc.hubble.exchange",
"wss://ws-rpc.hubble.exchange"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "USD Coin",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://www.hubble.exchange",
"shortName": "hubblenet",
"chainId": 1992,
"networkId": 1992,
"slip44": 60,
"explorers": [
{
"name": "routescan",
"url": "https://explorer.hubble.exchange",
"standard": "EIP3091"
}
]
},
{
"name": "Sanko",
"chain": "Sanko",
"rpc": [
"https://mainnet.sanko.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "DMT",
"symbol": "DMT",
"decimals": 18
},
"infoURL": "https://sanko.xyz/",
"shortName": "Sanko",
"chainId": 1996,
"networkId": 1996,
"icon": "sanko",
"explorers": [
{
"name": "Sanko Explorer",
"url": "https://explorer.sanko.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Panarchy",
"chain": "Panarchy",
"rpc": [
"https://polytopia.org:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "GAS",
"symbol": "GAS",
"decimals": 18
},
"infoURL": "https://polytopia.org/",
"shortName": "panarchy",
"chainId": 2013,
"networkId": 1
},
{
"name": "NOW Chain",
"chain": "NOW",
"icon": "nowchain",
"rpc": [
"https://rpc.nowscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "NOW Coin",
"symbol": "NOW",
"decimals": 18
},
"infoURL": "https://nowchain.co",
"shortName": "now",
"chainId": 2014,
"networkId": 2014,
"explorers": [
{
"name": "nowscan",
"url": "https://nowscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Adiri",
"title": "Telcoin Network Testnet",
"chain": "TEL",
"icon": "telcoin",
"rpc": [
"https://rpc.telcoin.network",
"https://adiri.tel",
"https://node1.telcoin.network",
"https://node2.telcoin.network",
"https://node3.telcoin.network",
"https://node4.telcoin.network"
],
"faucets": [
"https://telcoin.network/faucet"
],
"nativeCurrency": {
"name": "Telcoin",
"symbol": "TEL",
"decimals": 18
},
"infoURL": "https://telcoin.network",
"shortName": "tel",
"chainId": 2017,
"networkId": 2017,
"slip44": 1,
"explorers": [
{
"name": "telscan",
"url": "https://telscan.io",
"icon": "telcoin",
"standard": "EIP3091"
}
]
},
{
"name": "Edgeless Network",
"chain": "Edgeless",
"rpc": [
"https://rpc.edgeless.network/http"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Edgeless Wrapped Eth",
"symbol": "EwEth",
"decimals": 18
},
"infoURL": "https://edgeless.network",
"shortName": "edgeless",
"chainId": 2026,
"networkId": 2026,
"explorers": [
{
"name": "Edgeless Explorer",
"url": "https://explorer.edgeless.network",
"standard": "EIP3091"
}
]
},
{
"name": "Aleph Zero Testnet",
"chain": "Aleph Zero Testnet",
"icon": "aleph",
"rpc": [
"https://rpc.alephzero-testnet.gelato.digital",
"wss://rpc.alephzero-testnet.gelato.digital"
],
"faucets": [],
"nativeCurrency": {
"name": "TZERO",
"symbol": "TZERO",
"decimals": 18
},
"infoURL": "https://testnet.alephzero.org",
"shortName": "aleph",
"chainId": 2039,
"networkId": 2039,
"explorers": [
{
"name": "Aleph Zero Testnet",
"url": "https://test.azero.dev/#/explorer",
"icon": "aleph",
"standard": "none"
}
]
},
{
"name": "Vanar Mainnet",
"title": "Vanarchain",
"chain": "VANAR",
"rpc": [
"https://rpc.vanarchain.com",
"wss://ws.vanarchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "VANRY",
"symbol": "VANRY",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://vanarchain.com",
"shortName": "Vanar",
"chainId": 2040,
"networkId": 2040,
"icon": "vanar",
"explorers": [
{
"name": "Vanar Explorer",
"url": "https://explorer.vanarchain.com",
"icon": "vanar",
"standard": "EIP3091"
}
]
},
{
"name": "AIW3 Mainnet",
"chain": "AIW3",
"status": "incubating",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://aiw3.io/",
"shortName": "AIW3",
"chainId": 2045,
"networkId": 2045,
"icon": "aiw3",
"explorers": []
},
{
"name": "UCHAIN Mainnet",
"chain": "UCHAIN",
"rpc": [
"https://rpc.uchain.link/"
],
"faucets": [],
"nativeCurrency": {
"name": "UCASH",
"symbol": "UCASH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://u.cash/",
"shortName": "uchain",
"chainId": 2112,
"networkId": 2112,
"icon": "ucash",
"explorers": [
{
"name": "uchain.info",
"url": "https://uchain.info",
"standard": "EIP3091"
}
]
},
{
"name": "Catena Mainnet",
"chain": "CMCX",
"rpc": [
"https://rpc1.catenarpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Catena",
"symbol": "CMCX",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://catena.network",
"shortName": "cmcx",
"chainId": 2121,
"networkId": 2121,
"icon": "catena",
"explorers": [
{
"name": "catenascan",
"url": "https://catenascan.com",
"standard": "EIP3091"
}
]
},
{
"name": "BigShortBets Testnet",
"chain": "BIGSB Testnet",
"rpc": [
"https://test-market.bigsb.io",
"wss://test-market.bigsb.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Dolarz",
"symbol": "Dolarz",
"decimals": 18
},
"infoURL": "https://bigshortbets.com/",
"shortName": "bigsb_testnet",
"chainId": 2136,
"networkId": 2136,
"explorers": [
{
"name": "Polkadot.js",
"url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer",
"standard": "none"
}
]
},
{
"name": "Oneness Network",
"chain": "Oneness",
"rpc": [
"https://rpc.onenesslabs.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "",
"shortName": "oneness",
"chainId": 2140,
"networkId": 2140,
"explorers": [
{
"name": "oneness-mainnet",
"url": "https://scan.onenesslabs.io",
"standard": "EIP3091"
}
]
},
{
"name": "Oneness TestNet",
"chain": "Oneness-Testnet",
"rpc": [
"https://rpc.testnet.onenesslabs.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "",
"shortName": "oneness-testnet",
"chainId": 2141,
"networkId": 2141,
"explorers": [
{
"name": "oneness-testnet",
"url": "https://scan.testnet.onenesslabs.io",
"standard": "EIP3091"
}
]
},
{
"name": "RSS3 VSL Sepolia Testnet",
"chain": "RSS3",
"rpc": [
"https://rpc.testnet.rss3.io"
],
"faucets": [],
"nativeCurrency": {
"name": "RSS3",
"symbol": "RSS3",
"decimals": 18
},
"infoURL": "https://rss3.io",
"shortName": "rss3-testnet",
"chainId": 2331,
"networkId": 2331,
"icon": "rss3-testnet",
"explorers": [
{
"name": "RSS3 VSL Sepolia Testnet Scan",
"url": "https://scan.testnet.rss3.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://explorer.testnet.rss3.io/bridge"
}
]
}
},
{
"name": "Atleta Olympia",
"chain": "Atleta",
"rpc": [
"wss://testnet-rpc.atleta.network:9944",
"https://testnet-rpc.atleta.network:9944",
"https://testnet-rpc.atleta.network"
],
"faucets": [
"https://app-olympia.atleta.network/faucet"
],
"nativeCurrency": {
"name": "Atla",
"symbol": "ATLA",
"decimals": 18
},
"infoURL": "https://atleta.network",
"shortName": "atla",
"chainId": 2340,
"networkId": 2340,
"slip44": 1,
"icon": "atleta",
"explorers": [
{
"name": "Atleta Olympia Explorer",
"icon": "atleta",
"url": "https://blockscout.atleta.network",
"standard": "none"
},
{
"name": "Atleta Olympia Polka Explorer",
"icon": "atleta",
"url": "https://polkadot-explorer.atleta.network/#/explorer",
"standard": "none"
}
]
},
{
"name": "Omnia Chain",
"chain": "OMNIA",
"icon": "omnia",
"rpc": [
"https://rpc.omniaverse.io"
],
"faucets": [
"https://www.omniaverse.io"
],
"nativeCurrency": {
"name": "Omnia",
"symbol": "OMNIA",
"decimals": 18
},
"infoURL": "https://www.omniaverse.io",
"shortName": "omnia",
"chainId": 2342,
"networkId": 2342,
"explorers": [
{
"name": "OmniaVerse Explorer",
"url": "https://scan.omniaverse.io",
"standard": "EIP3091"
}
]
},
{
"name": "Silicon zkEVM",
"title": "Silicon zkEVM Mainnet",
"chain": "Silicon",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "",
"shortName": "silicon-zk",
"chainId": 2355,
"networkId": 2355,
"icon": "silicon",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
},
"status": "incubating"
},
{
"name": "Nexis Network Testnet",
"chain": "Nexis Network",
"icon": "nexis",
"rpc": [
"https://evm-testnet.nexis.network"
],
"faucets": [
"https://evm-faucet.nexis.network"
],
"nativeCurrency": {
"name": "Nexis",
"symbol": "NZT",
"decimals": 18
},
"infoURL": "https://nexis.network/",
"shortName": "nzt",
"chainId": 2370,
"networkId": 2370,
"explorers": [
{
"name": "Nexis Testnet Explorer",
"url": "https://evm-testnet.nexscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "King Of Legends Devnet",
"title": "King Of Legends Devnet",
"chain": "KOL",
"icon": "kol",
"rpc": [
"https://rpc-devnet.kinggamer.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "King Of Legends",
"symbol": "KOL",
"decimals": 18
},
"infoURL": "https://kingoflegends.net/",
"shortName": "kol",
"chainId": 2425,
"networkId": 2425,
"slip44": 1,
"explorers": [
{
"name": "King Of Legends Devnet Explorer",
"url": "https://devnet.kingscan.org",
"icon": "kol",
"standard": "EIP3091"
}
]
},
{
"name": "inEVM Mainnet",
"chain": "inEVM",
"icon": "inevm",
"rpc": [
"https://mainnet.rpc.inevm.com/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Injective",
"symbol": "INJ",
"decimals": 18
},
"infoURL": "https://inevm.com",
"shortName": "inevm",
"chainId": 2525,
"networkId": 2525,
"explorers": [],
"status": "active"
},
{
"name": "APEX",
"status": "incubating",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://apexlayer.xyz/",
"shortName": "apexmainnet",
"chainId": 2662,
"networkId": 2662,
"icon": "apexmainnet",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "XR Sepolia",
"chain": "ETH",
"rpc": [
"https://xr-sepolia-testnet.rpc.caldera.xyz/http"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "tXR",
"symbol": "tXR",
"decimals": 18
},
"infoURL": "https://xr-one.gitbook.io",
"shortName": "txr",
"chainId": 2730,
"networkId": 2730,
"icon": "xr",
"slip44": 60,
"explorers": [
{
"name": "XR Sepolia Explorer",
"url": "https://xr-sepolia-testnet.explorer.caldera.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://xr-sepolia-testnet.bridge.caldera.xyz"
}
]
},
"status": "active"
},
{
"name": "Nanon",
"title": "Nanon Rollup",
"chain": "ETH",
"rpc": [
"https://rpc.nanon.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.nanon.network",
"shortName": "Nanon",
"chainId": 2748,
"networkId": 2748,
"slip44": 1,
"icon": "nanon",
"explorers": [
{
"name": "Nanon Rollup Explorer",
"url": "https://explorer.nanon.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.nanon.network"
}
]
}
},
{
"name": "GM Network Mainnet",
"chain": "GM Network Mainnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://gmnetwork.ai",
"shortName": "gmnetwork-mainnet",
"chainId": 2777,
"networkId": 2777,
"explorers": [],
"status": "incubating"
},
{
"name": "Morph Holesky",
"title": "Morph Holesky Testnet",
"chain": "ETH",
"rpc": [
"https://rpc-quicknode-holesky.morphl2.io",
"wss://rpc-quicknode-holesky.morphl2.io",
"https://rpc-holesky.morphl2.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://morphl2.io",
"shortName": "hmorph",
"chainId": 2810,
"networkId": 2810,
"slip44": 1,
"explorers": [
{
"name": "Morph Holesky Testnet Explorer",
"url": "https://explorer-holesky.morphl2.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge-holesky.morphl2.io"
}
]
}
},
{
"name": "Elux Chain",
"chain": "ELUX",
"icon": "eluxchain",
"rpc": [
"https://rpc.eluxscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Elux Chain",
"symbol": "ELUX",
"decimals": 18
},
"infoURL": "https://eluxscan.com",
"shortName": "ELUX",
"chainId": 2907,
"networkId": 2907,
"explorers": [
{
"name": "blockscout",
"url": "https://eluxscan.com",
"standard": "none"
}
]
},
{
"name": "HYCHAIN",
"chainId": 2911,
"shortName": "hychain",
"chain": "ETH",
"networkId": 2911,
"nativeCurrency": {
"name": "TOPIA",
"symbol": "TOPIA",
"decimals": 18
},
"rpc": [
"https://rpc.hychain.com/http"
],
"faucets": [],
"infoURL": "https://www.hychain.com",
"icon": "hychain",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.hychain.com",
"icon": "hychain",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.hychain.com"
}
]
}
},
{
"name": "Rebus Testnet",
"title": "Rebuschain Testnet",
"chain": "REBUS",
"rpc": [
"https://testnet.rebus.money/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Rebus",
"symbol": "REBUS",
"decimals": 18
},
"infoURL": "https://www.rebuschain.com",
"shortName": "rebus-testnet",
"chainId": 3033,
"networkId": 3033,
"icon": "rebus",
"explorers": [
{
"name": "Rebus EVM Explorer (Blockscout)",
"url": "https://evm.testnet.rebus.money",
"icon": "rebus",
"standard": "none"
},
{
"name": "Rebus Cosmos Explorer (ping.pub)",
"url": "https://testnet.rebus.money/rebustestnet",
"icon": "rebus",
"standard": "none"
}
]
},
{
"name": "Movement EVM",
"chain": "MOVE",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Move",
"symbol": "MOVE",
"decimals": 18
},
"infoURL": "https://movementlabs.xyz",
"shortName": "move",
"chainId": 3073,
"networkId": 3073,
"icon": "move",
"explorers": [
{
"name": "mevm explorer",
"url": "https://explorer.movementlabs.xyz",
"standard": "none"
}
],
"status": "incubating"
},
{
"name": "SatoshiVM Alpha Mainnet",
"chain": "SatoshiVM",
"rpc": [
"https://alpha-rpc-node-http.svmscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://www.satoshivm.io/",
"shortName": "SAVM",
"chainId": 3109,
"networkId": 3109,
"icon": "satoshivm"
},
{
"name": "SatoshiVM Testnet",
"chain": "SatoshiVM",
"rpc": [
"https://test-rpc-node-http.svmscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://www.satoshivm.io/",
"shortName": "tSAVM",
"chainId": 3110,
"networkId": 3110,
"icon": "satoshivm"
},
{
"name": "EthStorage Mainnet",
"chain": "EthStorage",
"rpc": [
"http://mainnet.ethstorage.io:9540"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ethstorage.io/",
"shortName": "es-m",
"chainId": 3335,
"networkId": 3335,
"slip44": 1
},
{
"name": "EVOLVE Mainnet",
"chain": "EVO",
"icon": "evolveIcon",
"rpc": [
"https://rpc.evolveblockchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Evolve",
"symbol": "EVO",
"decimals": 18
},
"infoURL": "https://evolveblockchain.io",
"shortName": "EVOm",
"chainId": 3424,
"networkId": 3424,
"explorers": [
{
"name": "Evolve Mainnet Explorer",
"url": "https://evoexplorer.com",
"standard": "EIP3091"
}
]
},
{
"name": "Tycooncoin",
"chain": "TYCON",
"rpc": [
"https://mainnet-rpc.tycoscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Tycooncoin",
"symbol": "TYCO",
"decimals": 18
},
"infoURL": "",
"shortName": "TYCON",
"chainId": 3630,
"networkId": 3630
},
{
"name": "Astar zkEVM",
"shortName": "astrzk",
"title": "Astar zkEVM Mainnet",
"chain": "ETH",
"icon": "astar",
"rpc": [
"https://rpc.startale.com/astar-zkevm"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://astar.network",
"chainId": 3776,
"networkId": 3776,
"explorers": [
{
"name": "Blockscout Astar zkEVM explorer",
"url": "https://astar-zkevm.explorer.startale.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portal.astar.network"
}
]
}
},
{
"name": "Carbonium Testnet Network",
"chain": "CBR",
"rpc": [
"https://rpc-dev.carbonium.network/",
"https://server-testnet.carbonium.network"
],
"nativeCurrency": {
"name": "Carbonium",
"symbol": "tCBR",
"decimals": 18
},
"infoURL": "https://carbonium.network",
"shortName": "tcbr",
"chainId": 4040,
"networkId": 4040,
"slip44": 1,
"icon": "cbr",
"faucets": [
"https://getfaucet.carbonium.network"
],
"explorers": [
{
"name": "Carbonium Network tesnet Explorer",
"icon": "cbr",
"url": "https://testnet.carboniumscan.com",
"standard": "none"
}
]
},
{
"name": "GAN Testnet",
"chain": "GAN",
"icon": "gpu",
"rpc": [
"https://rpc.gpu.net"
],
"faucets": [],
"nativeCurrency": {
"name": "GP Token",
"symbol": "GP",
"decimals": 18
},
"infoURL": "https://docs.gpu.net/",
"shortName": "GANTestnet",
"chainId": 4048,
"networkId": 4048,
"explorers": [
{
"name": "ganscan",
"url": "https://ganscan.gpu.net",
"standard": "none"
}
]
},
{
"name": "Tobe Chain",
"chain": "TBC",
"icon": "tobe",
"rpc": [
"https://rpc.tobescan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Tobe Coin",
"symbol": "TBC",
"decimals": 18
},
"infoURL": "https://tobechain.net",
"shortName": "tbc",
"chainId": 4080,
"networkId": 4080,
"explorers": [
{
"name": "tobescan",
"url": "https://tobescan.com",
"standard": "EIP3091"
}
]
},
{
"name": "CrossFi Testnet",
"title": "CrossFi Testnet",
"chain": "XFI",
"rpc": [
"https://rpc.testnet.ms"
],
"faucets": [],
"nativeCurrency": {
"name": "XFI",
"symbol": "XFI",
"decimals": 18
},
"infoURL": "https://crossfi.org/",
"shortName": "crossfi-testnet",
"chainId": 4157,
"networkId": 4157,
"slip44": 1,
"explorers": [
{
"name": "CrossFi Testnet Scan",
"url": "https://scan.testnet.ms",
"standard": "EIP3091"
}
]
},
{
"name": "Hydra Chain",
"chain": "HYDRA",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Hydra",
"symbol": "HYDRA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://hydrachain.org",
"shortName": "hydra",
"chainId": 4488,
"networkId": 4488,
"icon": "hydra",
"explorers": [],
"status": "incubating"
},
{
"name": "VERY Mainnet",
"title": "VERY Mainnet",
"chain": "VERY Mainnet",
"icon": "very",
"rpc": [
"https://rpc.verylabs.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "VERY",
"symbol": "VERY",
"decimals": 18
},
"infoURL": "https://www.verylabs.io/",
"shortName": "very",
"chainId": 4613,
"networkId": 4613,
"explorers": [
{
"name": "VERY explorer",
"url": "https://www.veryscan.io",
"standard": "none"
}
]
},
{
"name": "ONIGIRI Test Subnet",
"chain": "ONIGIRI",
"rpc": [
"https://subnets.avax.network/onigiri/testnet/rpc"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "ONIGIRI",
"symbol": "ONGR",
"decimals": 18
},
"infoURL": "https://www.ongr.org/",
"shortName": "onigiritest",
"chainId": 5039,
"networkId": 5039,
"icon": "onigiri",
"explorers": [
{
"name": "ONIGIRI Explorer",
"url": "https://subnets-test.avax.network/onigiri",
"standard": "EIP3091"
}
]
},
{
"name": "ONIGIRI Subnet",
"chain": "ONIGIRI",
"rpc": [
"https://subnets.avax.network/onigiri/mainnet/rpc"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "ONIGIRI",
"symbol": "ONGR",
"decimals": 18
},
"infoURL": "https://www.ongr.org/",
"shortName": "onigiri",
"chainId": 5040,
"networkId": 5040,
"icon": "onigiri",
"explorers": [
{
"name": "ONIGIRI Explorer",
"url": "https://subnets.avax.network/onigiri",
"standard": "EIP3091"
}
]
},
{
"name": "Nollie Skatechain Testnet",
"chain": "Skatechain",
"rpc": [
"https://nollie-rpc.skatechain.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "",
"shortName": "nollie-testnet",
"chainId": 5051,
"networkId": 5051,
"icon": "nollie",
"explorers": [
{
"name": "Nollie Skate Chain Testnet Explorer",
"url": "https://nolliescan.skatechain.org",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "SIC Testnet",
"chain": "SIC Testnet",
"rpc": [
"https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.fwb.help/",
"shortName": "sic-testnet",
"chainId": 5102,
"networkId": 5102,
"explorers": [
{
"name": "blockscout",
"url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Coordinape Testnet",
"chain": "Coordinape Testnet",
"rpc": [
"https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://coordinape.com/",
"shortName": "coordinape-testnet",
"chainId": 5103,
"networkId": 5103
},
{
"name": "Charmverse Testnet",
"chain": "Charmverse Testnet",
"rpc": [
"https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://charmverse.io/",
"shortName": "charmverse-testnet",
"chainId": 5104,
"networkId": 5104
},
{
"name": "Superloyalty Testnet",
"chain": "Superloyalty Testnet",
"rpc": [
"https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.superloyal.com/",
"shortName": "superloyalty-testnet",
"chainId": 5105,
"networkId": 5105
},
{
"name": "Azra Testnet",
"chain": "Azra Testnet",
"rpc": [
"https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://azragames.com",
"shortName": "azra-testnet",
"chainId": 5106,
"networkId": 5106,
"explorers": [
{
"name": "blockscout",
"url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "OpTrust Testnet",
"chain": "OpTrust",
"rpc": [
"https://rpctest.optrust.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TestBSC",
"symbol": "tBNB",
"decimals": 18
},
"infoURL": "https://optrust.io",
"shortName": "toptrust",
"chainId": 5317,
"networkId": 5317,
"icon": "optrust",
"explorers": [
{
"name": "OpTrust Testnet explorer",
"url": "https://scantest.optrust.io",
"icon": "optrust",
"standard": "none"
}
]
},
{
"name": "Settlus Testnet",
"chain": "Settlus",
"rpc": [
"https://settlus-test-eth.settlus.io"
],
"faucets": [
"https://faucet.settlus.io"
],
"nativeCurrency": {
"name": "Setl",
"symbol": "SETL",
"decimals": 18
},
"infoURL": "https://settlus.org",
"shortName": "settlus-testnet",
"chainId": 5372,
"networkId": 5372,
"explorers": [
{
"name": "Settlus Scan",
"url": "https://testnet.settlus.network",
"standard": "EIP3091"
}
]
},
{
"name": "edeXa Mainnet",
"chain": "edeXa Network",
"rpc": [
"https://mainnet.edexa.network/rpc",
"https://mainnet.edexa.com/rpc",
"https://io-dataseed1.mainnet.edexa.io-market.com/rpc"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "EDEXA",
"symbol": "EDX",
"decimals": 18
},
"infoURL": "https://edexa.network/",
"shortName": "edeXa",
"chainId": 5424,
"networkId": 5424,
"slip44": 1,
"icon": "edexa",
"explorers": [
{
"name": "edexa-mainnet",
"url": "https://explorer.edexa.network",
"standard": "EIP3091"
}
]
},
{
"name": "Egochain",
"chainId": 5439,
"shortName": "egax",
"chain": "EGAX",
"networkId": 5439,
"nativeCurrency": {
"name": "EGAX",
"symbol": "EGAX",
"decimals": 18
},
"rpc": [
"https://mainnet.egochain.org"
],
"faucets": [],
"infoURL": "https://docs.egochain.org/",
"explorers": [
{
"name": "egoscan",
"url": "https://egoscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Arcturus Testneet",
"chain": "Arcturus",
"rpc": [
"https://rpc-testnet.arcturuschain.io/"
],
"faucets": [
"https://faucet.arcturuschain.io"
],
"nativeCurrency": {
"name": "tARC",
"symbol": "tARC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://arcturuschain.io",
"shortName": "arcturus-testnet",
"chainId": 5615,
"networkId": 5615,
"explorers": [
{
"name": "explorer-arcturus-testnet",
"url": "https://testnet.arcscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "QIE Blockchain",
"chain": "QIE",
"icon": "qie",
"rpc": [
"https://rpc-main1.qiblockchain.online/",
"https://rpc-main2.qiblockchain.online/"
],
"faucets": [],
"nativeCurrency": {
"name": "QIE Blockchain",
"symbol": "QIE",
"decimals": 18
},
"infoURL": "https://qiblockchain.online/",
"shortName": "QIE",
"chainId": 5656,
"networkId": 5656,
"explorers": [
{
"name": "QIE Explorer",
"url": "https://mainnet.qiblockchain.online",
"standard": "EIP3091"
}
]
},
{
"name": "Filenova Testnet",
"chain": "Filenova",
"rpc": [
"https://rpctest.filenova.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Test Filecoin",
"symbol": "tFIL",
"decimals": 18
},
"infoURL": "https://filenova.org",
"shortName": "tfilenova",
"chainId": 5675,
"networkId": 5675,
"icon": "filenova",
"explorers": [
{
"name": "filenova testnet explorer",
"url": "https://scantest.filenova.org",
"icon": "filenova",
"standard": "none"
}
]
},
{
"name": "Tangle",
"chain": "Tangle",
"rpc": [
"https://rpc.tangle.tools",
"wss://rpc.tangle.tools"
],
"faucets": [],
"nativeCurrency": {
"name": "Tangle",
"symbol": "TNT",
"decimals": 18
},
"infoURL": "https://docs.tangle.tools",
"shortName": "tangle",
"chainId": 5845,
"networkId": 5845,
"icon": "tangle",
"explorers": [
{
"name": "Tangle EVM Explorer",
"url": "https://explorer.tangle.tools",
"standard": "EIP3091",
"icon": "tangle"
}
]
},
{
"name": "BounceBit Mainnet",
"chain": "BounceBit",
"rpc": [
"https://fullnode-mainnet.bouncebitapi.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "BounceBit",
"symbol": "BB",
"decimals": 18
},
"infoURL": "https://bouncebit.io",
"shortName": "bouncebit-mainnet",
"chainId": 6001,
"networkId": 6001,
"icon": "bouncebit",
"explorers": [
{
"name": "BBScan Mainnet Explorer",
"url": "https://bbscan.io",
"standard": "none"
}
]
},
{
"name": "Aura Euphoria Testnet",
"chain": "Aura",
"rpc": [
"https://jsonrpc.euphoria.aura.network"
],
"faucets": [
"https://aura.faucetme.pro"
],
"nativeCurrency": {
"name": "test-EAura",
"symbol": "eAura",
"decimals": 18
},
"infoURL": "https://aura.network",
"shortName": "eaura",
"chainId": 6321,
"networkId": 6321,
"slip44": 1,
"icon": "aura",
"explorers": [
{
"name": "Aurascan Explorer",
"url": "https://euphoria.aurascan.io",
"standard": "none",
"icon": "aura"
}
]
},
{
"name": "Aura Mainnet",
"chain": "Aura",
"rpc": [
"https://jsonrpc.aura.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Aura",
"symbol": "AURA",
"decimals": 18
},
"infoURL": "https://aura.network",
"shortName": "aura",
"chainId": 6322,
"networkId": 6322,
"slip44": 1,
"icon": "aura",
"explorers": [
{
"name": "Aurascan Explorer",
"url": "https://aurascan.io",
"standard": "none",
"icon": "aura"
}
]
},
{
"name": "Pools Mainnet",
"chain": "Pools",
"rpc": [
"https://rpc.poolsmobility.com"
],
"faucets": [],
"nativeCurrency": {
"name": "POOLS Native Token",
"symbol": "POOLS",
"decimals": 18
},
"infoURL": "https://www.poolschain.org",
"shortName": "POOLS",
"icon": "POOLS",
"chainId": 6868,
"networkId": 6868,
"slip44": 6868,
"explorers": [
{
"name": "poolsscan",
"url": "https://scan.poolsmobility.com",
"icon": "POOLS",
"standard": "EIP3091"
}
]
},
{
"name": "Planq Atlas Testnet",
"chain": "Planq",
"icon": "planq",
"rpc": [
"https://evm-rpc-atlas.planq.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Planq",
"symbol": "tPLQ",
"decimals": 18
},
"infoURL": "https://planq.network",
"shortName": "planq-atlas-testnet",
"chainId": 7077,
"networkId": 7077,
"explorers": []
},
{
"name": "XPLA Verse",
"chain": "XPLA Verse",
"icon": "xpla_verse",
"rpc": [
"https://rpc-xpla-verse.xpla.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://www.xpla.io",
"shortName": "XPLAVERSE",
"chainId": 7300,
"networkId": 7300,
"explorers": [
{
"name": "XPLA Verse Explorer",
"url": "https://explorer-xpla-verse.xpla.dev",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Cyber Mainnet",
"chain": "Cyber",
"rpc": [
"https://cyber.alt.technology/",
"wss://cyber-ws.alt.technology/",
"https://rpc.cyber.co/",
"wss://rpc.cyber.co/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "cyber",
"infoURL": "https://cyber.co/",
"shortName": "cyeth",
"chainId": 7560,
"networkId": 7560,
"explorers": [
{
"name": "Cyber Mainnet Explorer",
"url": "https://cyberscan.co",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://cyber.co/bridge"
}
]
}
},
{
"name": "GDCC TESTNET",
"chain": "GDCC",
"icon": "gdcc",
"rpc": [
"https://testnet-rpc1.gdccscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "GDCC",
"symbol": "GDCC",
"decimals": 18
},
"infoURL": "https://gdcchain.com",
"shortName": "GDCC",
"chainId": 7775,
"networkId": 7775,
"explorers": [
{
"name": "GDCC",
"url": "https://testnet.gdccscan.io",
"standard": "none"
}
]
},
{
"name": "Orenium Mainnet Protocol",
"chain": "ORE",
"rpc": [
"https://validator-mainnet.orenium.org",
"https://rpc-oracle-mainnet.orenium.org",
"https://portalmainnet.orenium.org"
],
"nativeCurrency": {
"name": "ORENIUM",
"symbol": "ORE",
"decimals": 18
},
"infoURL": "https://orenium.org",
"shortName": "ore",
"chainId": 7778,
"networkId": 7778,
"slip44": 1,
"icon": "ore",
"faucets": [],
"explorers": [
{
"name": "ORE Mainnet Explorer",
"icon": "ore",
"url": "https://oreniumscan.org",
"standard": "none"
}
]
},
{
"name": "OpenEX LONG Testnet",
"title": "OpenEX LONG Testnet",
"chain": "OEX",
"icon": "oex",
"rpc": [
"https://long.rpc.openex.network/"
],
"faucets": [
"https://long.hub.openex.network/faucet"
],
"nativeCurrency": {
"name": "USDT Testnet",
"symbol": "USDT",
"decimals": 18
},
"infoURL": "https://openex.network",
"shortName": "oex",
"chainId": 7798,
"networkId": 7798,
"slip44": 1,
"explorers": [
{
"name": "OpenEX Long Testnet Explorer",
"url": "https://scan.long.openex.network",
"icon": "oex",
"standard": "EIP3091"
}
]
},
{
"name": "Dot Blox",
"chain": "DTBX",
"icon": "dotblox",
"rpc": [
"https://rpc.dotblox.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Dot Blox",
"symbol": "DTBX",
"decimals": 18
},
"infoURL": "https://explorer.dotblox.io",
"shortName": "DTBX",
"chainId": 7923,
"networkId": 7923,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.dotblox.io",
"standard": "none"
}
]
},
{
"name": "MO Mainnet",
"chainId": 7924,
"shortName": "MO",
"chain": "MO",
"icon": "mo",
"networkId": 7924,
"nativeCurrency": {
"name": "MO",
"symbol": "MO",
"decimals": 18
},
"rpc": [
"https://mainnet-rpc.mochain.app/"
],
"faucets": [
"https://faucet.mochain.app/"
],
"explorers": [
{
"name": "MO Explorer",
"url": "https://moscan.app",
"standard": "none"
}
],
"infoURL": "https://mochain.app"
},
{
"name": "BOAT Mainnet",
"title": "BOAT Mainnet",
"chain": "BOAT",
"icon": "boat",
"rpc": [
"https://rpc0.come.boat/"
],
"faucets": [],
"nativeCurrency": {
"name": "Best Of All Time Token",
"symbol": "BOAT",
"decimals": 18
},
"infoURL": "https://come.boats",
"shortName": "boat",
"chainId": 8047,
"networkId": 8047,
"slip44": 1,
"explorers": [
{
"name": "BOAT Mainnet Explorer",
"url": "https://scan.come.boats",
"icon": "boat",
"standard": "EIP3091"
}
]
},
{
"name": "Karak Sepolia",
"title": "Karak Testnet Sepolia",
"chain": "Karak",
"icon": "karak",
"rpc": [
"https://rpc.sepolia.karak.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://karak.network",
"shortName": "karak-sepolia",
"chainId": 8054,
"networkId": 8054,
"explorers": [
{
"name": "Karak Sepolia Explorer",
"url": "https://explorer.sepolia.karak.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "Space Subnet",
"chain": "SPACE",
"rpc": [
"https://subnets.avax.network/space/mainnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "FUEL",
"symbol": "FUEL",
"decimals": 18
},
"infoURL": "https://otherworld.network",
"shortName": "space",
"chainId": 8227,
"networkId": 8227,
"explorers": [
{
"name": "SPACE Explorer",
"url": "https://subnets.avax.network/space",
"standard": "EIP3091"
}
]
},
{
"name": "Lorenzo",
"chain": "Lorenzo",
"rpc": [
"https://rpc.lorenzo-protocol.xyz"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Lorenzo stBTC",
"symbol": "stBTC",
"decimals": 18
},
"infoURL": "https://www.lorenzo-protocol.xyz/",
"shortName": "lrz",
"chainId": 8329,
"networkId": 8329,
"icon": "lorenzo",
"explorers": [
{
"name": "Lorenzo Explorer",
"url": "https://scan.lorenzo-protocol.xyz",
"standard": "none",
"icon": "lorenzo"
}
]
},
{
"name": "IOTA EVM",
"title": "IOTA EVM",
"chain": "IOTA EVM",
"rpc": [
"https://json-rpc.evm.iotaledger.net",
"https://ws.json-rpc.evm.iotaledger.net"
],
"faucets": [],
"nativeCurrency": {
"name": "IOTA",
"symbol": "IOTA",
"decimals": 18
},
"infoURL": "https://www.iota.org",
"shortName": "iotaevm",
"chainId": 8822,
"networkId": 8822,
"icon": "iotaevm",
"explorers": [
{
"name": "explorer",
"url": "https://explorer.evm.iota.org",
"icon": "iotaevm",
"standard": "EIP3091"
}
]
},
{
"name": "Hydra Chain Testnet",
"chain": "HYDRA",
"rpc": [
"https://rpc.testnet.hydrachain.org"
],
"faucets": [
"https://app.testnet.hydrachain.org/faucet"
],
"nativeCurrency": {
"name": "tHydra",
"symbol": "tHYDRA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://hydrachain.org",
"shortName": "thydra",
"chainId": 8844,
"networkId": 8844,
"icon": "hydra",
"explorers": [
{
"name": "Hydra Chain Testnet explorer",
"url": "https://hydragon.hydrachain.org",
"icon": "hydra",
"standard": "EIP3091"
}
]
},
{
"name": "SuperLumio",
"chain": "SuperLumio",
"icon": "superlumio",
"rpc": [
"https://mainnet.lumio.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://lumio.io/",
"shortName": "superlumio",
"chainId": 8866,
"networkId": 8866,
"explorers": [
{
"name": "Lumio explorer",
"url": "https://explorer.lumio.io",
"standard": "none"
}
]
},
{
"name": "Algen",
"chain": "ALG",
"rpc": [
"https://rpc.algen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "ALG",
"symbol": "ALG",
"decimals": 18
},
"infoURL": "https://www.algen.network",
"shortName": "alg",
"chainId": 8911,
"networkId": 8911,
"icon": "alg",
"explorers": [
{
"name": "algscan",
"url": "https://scan.algen.network",
"icon": "alg",
"standard": "EIP3091"
}
]
},
{
"name": "Algen Testnet",
"chain": "ALG",
"rpc": [
"https://rpc.test.algen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "ALG",
"symbol": "ALG",
"decimals": 18
},
"infoURL": "https://www.algen.network",
"shortName": "algTest",
"chainId": 8912,
"networkId": 8912,
"icon": "alg",
"explorers": [
{
"name": "algscan",
"url": "https://scan.test.algen.network",
"icon": "alg",
"standard": "EIP3091"
}
]
},
{
"name": "Algen Layer2",
"chain": "ALG L2",
"rpc": [
"https://rpc.alg2.algen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "ALG",
"symbol": "ALG",
"decimals": 18
},
"infoURL": "https://www.algen.network",
"shortName": "algl2",
"chainId": 8921,
"networkId": 8921,
"icon": "algl2",
"explorers": [
{
"name": "algl2scan",
"url": "https://scan.alg2.algen.network",
"icon": "algl2",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-8911",
"type": "shard"
}
},
{
"name": "Algen Layer2 Testnet",
"chain": "ALG L2",
"rpc": [
"https://rpc.alg2-test.algen.network"
],
"faucets": [],
"nativeCurrency": {
"name": "ALG",
"symbol": "ALG",
"decimals": 18
},
"infoURL": "https://www.algen.network",
"shortName": "algl2Test",
"chainId": 8922,
"networkId": 8922,
"icon": "algl2",
"explorers": [
{
"name": "algl2scan",
"url": "https://scan.alg2-test.algen.network",
"icon": "algl2",
"standard": "EIP3091"
}
],
"parent": {
"chain": "eip155-8921",
"type": "shard"
}
},
{
"name": "Shido Testnet Block",
"chain": "Shido Testnet",
"rpc": [
"https://rpc-testnet-nodes.shidoscan.com",
"wss://wss-testnet-nodes.shidoscan.com"
],
"faucets": [
"https://testnet.shidoscan.com/faucet"
],
"nativeCurrency": {
"name": "Shido Testnet Token",
"symbol": "SHIDO",
"decimals": 18
},
"infoURL": "https://www.nexablock.io",
"shortName": "ShidoTestnet",
"chainId": 9007,
"networkId": 9007,
"icon": "shidoChain",
"explorers": [
{
"name": "Shidoblock Testnet Explorer",
"url": "https://testnet.shidoscan.com",
"standard": "none",
"icon": "shidoChain"
}
]
},
{
"name": "Shido Mainnet Block",
"chain": "Shido Mainnet",
"rpc": [
"https://rpc-nodes.shidoscan.com",
"wss://wss-nodes.shidoscan.com",
"https://rpc-delta-nodes.shidoscan.com",
"wss://wss-delta-nodes.shidoscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Shido Mainnet Token",
"symbol": "SHIDO",
"decimals": 18
},
"infoURL": "https://shido.io",
"shortName": "Shido",
"chainId": 9008,
"networkId": 9008,
"icon": "shidoChain",
"explorers": [
{
"name": "Shidoblock Mainnet Explorer",
"url": "https://shidoscan.com",
"standard": "none",
"icon": "shidoChain"
}
]
},
{
"name": "Tabi Testnet",
"chain": "TabiNetwork",
"rpc": [
"https://rpc.testnet.tabichain.com"
],
"faucets": [
"https://faucet.testnet.tabichain.com"
],
"nativeCurrency": {
"name": "Tabi",
"symbol": "TABI",
"decimals": 18
},
"infoURL": "https://www.tabichain.com",
"shortName": "tabitest",
"chainId": 9789,
"networkId": 9789,
"explorers": [
{
"name": "Tabi Testnet Explorer",
"url": "https://testnet.tabiscan.com",
"standard": "none"
}
]
},
{
"name": "OptimusZ7 Mainnet",
"chain": "OptimusZ7",
"icon": "OZ7Icon",
"rpc": [
"https://rpc.optimusz7.com"
],
"faucets": [],
"nativeCurrency": {
"name": "OptimusZ7",
"symbol": "OZ7",
"decimals": 18
},
"infoURL": "http://optimusz7.com",
"shortName": "OZ7m",
"chainId": 9797,
"networkId": 9797,
"explorers": [
{
"name": "OptimusZ7 Mainnet Explorer",
"url": "https://explorer.optimusz7.com",
"standard": "EIP3091"
}
]
},
{
"name": "Larissa Chain",
"title": "Larissa Chain",
"chain": "Larissa",
"rpc": [
"https://rpc.larissa.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Larissa",
"symbol": "LRS",
"decimals": 18
},
"infoURL": "https://larissa.network",
"shortName": "lrs",
"chainId": 9898,
"networkId": 1,
"slip44": 9898,
"status": "active",
"icon": "larissa",
"explorers": [
{
"name": "Larissa Scan",
"url": "https://scan.larissa.network",
"standard": "EIP3091"
}
]
},
{
"name": "Espento Mainnet",
"chain": "SPENT",
"rpc": [
"https://rpc.escscan.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "ESPENTO",
"symbol": "SPENT",
"decimals": 18
},
"infoURL": "https://espento.network",
"shortName": "spent",
"chainId": 9911,
"networkId": 9911,
"icon": "espento",
"explorers": [
{
"name": "escscan",
"url": "https://escscan.com",
"icon": "espento",
"standard": "EIP3091"
}
]
},
{
"name": "Ztc Mainnet",
"chain": "ZTC",
"rpc": [
"https://zitcoin.us"
],
"faucets": [],
"nativeCurrency": {
"name": "Ztcer",
"symbol": "ZTC",
"decimals": 5
},
"infoURL": "https://ztc.best",
"shortName": "ZTC",
"chainId": 9998,
"networkId": 9998
},
{
"name": "TAO EVM Mainnet",
"chain": "TAO EVM",
"icon": "taoevmIcon",
"rpc": [
"https://rpc.taoevm.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TAO",
"symbol": "TAO",
"decimals": 18
},
"infoURL": "https://taoevm.io",
"shortName": "TAOm",
"chainId": 10321,
"networkId": 10321,
"explorers": [
{
"name": "TAO Mainnet Explorer",
"url": "https://taoscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "TAO EVM Testnet",
"chain": "TAO EVM",
"icon": "taoevmIcon",
"rpc": [
"https://testnet-rpc.taoevm.io"
],
"faucets": [
"https://faucet.taoevm.io"
],
"nativeCurrency": {
"name": "TAO",
"symbol": "TAO",
"decimals": 18
},
"infoURL": "https://taoevm.io",
"shortName": "TAOt",
"chainId": 10324,
"networkId": 10324,
"explorers": [
{
"name": "TAO Testnet Explorer",
"url": "https://testnet.taoscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Lamina1",
"chain": "Lamina1",
"rpc": [
"https://subnets.avax.network/lamina1/mainnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "L1",
"symbol": "L1",
"decimals": 18
},
"infoURL": "https://www.lamina1.com/",
"shortName": "lamina1",
"chainId": 10849,
"networkId": 10849,
"slip44": 1,
"explorers": [
{
"name": "Lamina1 Explorer",
"url": "https://subnets.avax.network/lamina1",
"standard": "EIP3091"
}
]
},
{
"name": "Lamina1 Identity",
"chain": "Lamina1 Identity",
"rpc": [
"https://subnets.avax.network/lamina1id/mainnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "L1 ID",
"symbol": "L1ID",
"decimals": 18
},
"infoURL": "https://www.lamina1.com/",
"shortName": "lamina1id",
"chainId": 10850,
"networkId": 10850,
"slip44": 1,
"explorers": [
{
"name": "Lamina1 Identity Explorer",
"url": "https://subnets.avax.network/lamina1id",
"standard": "EIP3091"
}
]
},
{
"name": "Shine Chain",
"chain": "SC20",
"rpc": [
"https://rpc.shinescan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Shine",
"symbol": "SC20",
"decimals": 18
},
"infoURL": "https://shinechain.tech",
"shortName": "SC20",
"chainId": 11221,
"networkId": 11221,
"icon": "shine",
"explorers": [
{
"name": "shinescan",
"url": "https://shinescan.io",
"icon": "shine",
"standard": "none"
}
]
},
{
"name": "Jiritsu Testnet Subnet",
"chain": "JIRITSUTES",
"rpc": [
"https://subnets.avax.network/jiritsutes/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "JIRI",
"symbol": "TZW",
"decimals": 18
},
"infoURL": "https://jiritsu.network",
"shortName": "jiritsutes",
"chainId": 11227,
"networkId": 11227,
"explorers": [
{
"name": "JIRITSUTES Explorer",
"url": "https://subnets-test.avax.network/jiritsutes",
"standard": "EIP3091"
}
]
},
{
"name": "BEVM Mainnet",
"chain": "BEVM",
"rpc": [
"https://rpc-mainnet-1.bevm.io/",
"https://rpc-mainnet-2.bevm.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://bevm.io",
"shortName": "bevm",
"chainId": 11501,
"networkId": 11501,
"icon": "bevm",
"explorers": [
{
"name": "bevm mainnet scan",
"url": "https://scan-mainnet.bevm.io",
"standard": "none"
}
]
},
{
"name": "L3X Protocol",
"chainId": 12324,
"shortName": "l3x",
"chain": "L3X",
"icon": "l3x",
"networkId": 12324,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://rpc-mainnet.l3x.com"
],
"faucets": [],
"explorers": [
{
"name": "L3X Mainnet Explorer",
"url": "https://explorer.l3x.com",
"standard": "EIP3091"
}
],
"infoURL": "https://l3x.com",
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "L3X Protocol Testnet",
"chainId": 12325,
"shortName": "l3x-testnet",
"chain": "L3X",
"icon": "l3x",
"networkId": 12325,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://rpc-testnet.l3x.com"
],
"faucets": [],
"explorers": [
{
"name": "L3X Testnet Explorer",
"url": "https://explorer-testnet.l3x.com",
"standard": "EIP3091"
}
],
"infoURL": "https://l3x.com",
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "RSS3 VSL Mainnet",
"chain": "RSS3",
"rpc": [
"https://rpc.rss3.io"
],
"faucets": [],
"nativeCurrency": {
"name": "RSS3",
"symbol": "RSS3",
"decimals": 18
},
"infoURL": "https://rss3.io",
"shortName": "rss3",
"chainId": 12553,
"networkId": 12553,
"icon": "rss3",
"explorers": [
{
"name": "RSS3 VSL Scan",
"url": "https://scan.rss3.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://explorer.rss3.io/bridge"
}
]
}
},
{
"name": "Playdapp Testnet",
"chain": "PDA",
"icon": "pda",
"rpc": [
"https://subnets.avax.network/playdappte/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Playdapp",
"symbol": "PDA",
"decimals": 18
},
"infoURL": "https://playdapp.io",
"shortName": "PDA-TESTNET",
"chainId": 12781,
"networkId": 12781,
"explorers": [
{
"name": "Playdapp Testnet Explorer",
"url": "https://subnets-test.avax.network/playdappte",
"standard": "EIP3091"
}
]
},
{
"name": "PlayFair Testnet Subnet",
"chain": "PLAYFAIR",
"icon": "playfair",
"rpc": [
"https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BTLT Token",
"symbol": "BTLT",
"decimals": 18
},
"infoURL": "https://letsplayfair.ai",
"shortName": "playfair",
"chainId": 12898,
"networkId": 12898,
"explorers": [
{
"name": "Avalanche Subnet Explorer",
"url": "https://subnets-test.avax.network/letsplayfair",
"standard": "EIP3091"
}
]
},
{
"name": "Masa",
"chain": "MASA",
"icon": "masa",
"rpc": [
"https://subnets.avax.network/masanetwork/mainnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Masa Token",
"symbol": "MASA",
"decimals": 18
},
"infoURL": "https://masa.finance",
"shortName": "masa",
"chainId": 13396,
"networkId": 13396,
"explorers": [
{
"name": "Masa Explorer",
"url": "https://subnets.avax.network/masa",
"standard": "EIP3091"
}
]
},
{
"name": "Gravity Alpha Testnet Sepolia",
"chain": "Gravity",
"rpc": [
"https://rpc-sepolia.gravity.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Gravity",
"symbol": "G.",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
},
{
"name": "EIP1108"
}
],
"infoURL": "https://gravity.xyz",
"shortName": "gravitysep",
"chainId": 13505,
"networkId": 13505,
"icon": "gravity",
"explorers": [
{
"name": "Gravity Alpha Testnet Sepolia Explorer",
"url": "https://explorer-sepolia.gravity.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": []
}
},
{
"name": "Kronobit Mainnet",
"title": "Kronobit Mainnet",
"chain": "KNB",
"rpc": [
"https://mainnet-rpc.qbitscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Kronobit",
"symbol": "KNB",
"decimals": 18
},
"infoURL": "https://kronobit.org",
"shortName": "KNB",
"chainId": 13600,
"networkId": 13600,
"icon": "kronobit",
"explorers": [
{
"name": "qbitscan",
"url": "https://explorer.qbitscan.com",
"icon": "kronobit",
"standard": "EIP3091"
}
]
},
{
"name": "EVOLVE Testnet",
"chain": "EVO",
"icon": "evolveIcon",
"rpc": [
"https://testnet-rpc.evolveblockchain.io"
],
"faucets": [
"https://faucet.evolveblockchain.io"
],
"nativeCurrency": {
"name": "Evolve",
"symbol": "EVO",
"decimals": 18
},
"infoURL": "https://evolveblockchain.io",
"shortName": "evo",
"chainId": 14324,
"networkId": 14324,
"explorers": [
{
"name": "Evolve Testnet Explorer",
"url": "https://testnet.evolveblockchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Poodl Testnet",
"chain": "Poodl",
"icon": "poodlIcon",
"rpc": [
"https://testnet-rpc.poodl.org"
],
"faucets": [
"https://faucet.poodl.org"
],
"nativeCurrency": {
"name": "Poodl",
"symbol": "POODL",
"decimals": 18
},
"infoURL": "https://poodl.org",
"shortName": "poodlt",
"chainId": 15257,
"networkId": 15257,
"explorers": [
{
"name": "Poodl Testnet Explorer",
"url": "https://testnet.poodl.org",
"standard": "EIP3091"
}
]
},
{
"name": "Poodl Mainnet",
"chain": "Poodl",
"icon": "poodlIcon",
"rpc": [
"https://rpc.poodl.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Poodl",
"symbol": "POODL",
"decimals": 18
},
"infoURL": "https://poodl.org",
"shortName": "poodle",
"chainId": 15259,
"networkId": 15259,
"explorers": [
{
"name": "Poodl Mainnet Explorer",
"url": "https://explorer.poodl.org",
"standard": "EIP3091"
}
]
},
{
"name": "DeFiVerse Mainnet",
"chain": "DeFiVerse",
"icon": "defiverse",
"rpc": [
"https://rpc.defi-verse.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Oasys",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://defi-verse.org",
"shortName": "DFV",
"chainId": 16116,
"networkId": 16116,
"explorers": [
{
"name": "DeFiVerse Explorer",
"url": "https://scan.defi-verse.org",
"icon": "defiverse",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Garnet Holesky",
"chain": "ETH",
"rpc": [
"https://rpc.garnetchain.com",
"wss://rpc.garnetchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://redstone.xyz",
"shortName": "garnet",
"chainId": 17069,
"networkId": 17069,
"icon": "garnet",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.garnetchain.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-17000",
"bridges": [
{
"url": "https://garnetchain.com/deposit"
}
]
}
},
{
"name": "DeFiVerse Testnet",
"chain": "DeFiVerse Testnet",
"icon": "defiverse",
"rpc": [
"https://rpc-testnet.defi-verse.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Oasys",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://defi-verse.org",
"shortName": "DFV-testnet",
"chainId": 17117,
"networkId": 17117,
"explorers": [
{
"name": "DeFiVerse Testnet Explorer",
"url": "https://scan-testnet.defi-verse.org",
"icon": "defiverse",
"standard": "EIP3091"
}
]
},
{
"name": "unreal",
"title": "unreal testnet for re.al",
"chain": "unreal",
"rpc": [
"https://rpc.unreal-orbit.gelato.digital",
"wss://ws.unreal-orbit.gelato.digital"
],
"nativeCurrency": {
"name": "unreal Ether",
"symbol": "reETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/unreal",
"faucets": [],
"shortName": "unreal",
"chainId": 18233,
"networkId": 18233,
"slip44": 60,
"icon": "unreal",
"explorers": [
{
"name": "blockscout",
"url": "https://unreal.blockscout.com",
"icon": "unreal",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-17000",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/unreal"
}
]
}
},
{
"name": "Titan (TKX)",
"chain": "Titan (TKX)",
"rpc": [
"https://titan-json-rpc.titanlab.io",
"https://titan-json-rpc-tokyo.titanlab.io",
"https://titan-json-rpc-seoul.titanlab.io",
"https://titan-json-rpc-hongkong.titanlab.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Titan tkx",
"symbol": "TKX",
"decimals": 18
},
"infoURL": "https://titanlab.io",
"shortName": "titan_tkx",
"chainId": 18888,
"networkId": 18888,
"slip44": 1,
"icon": "titan_tkx",
"explorers": [
{
"name": "Titan Explorer",
"url": "https://tkxscan.io/Titan",
"standard": "none",
"icon": "titan_tkx"
}
]
},
{
"name": "LBRY Mainnet",
"chain": "LBRY",
"icon": "lbry",
"rpc": [
"https://lbry.nl/rpc"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "LBRY Credits",
"symbol": "LBC",
"decimals": 8
},
"infoURL": "https://lbry.com",
"shortName": "LBRY",
"chainId": 19600,
"networkId": 19600,
"slip44": 140,
"explorers": [
{
"name": "LBRY Block Explorer",
"url": "https://explorer.lbry.com",
"icon": "lbry",
"standard": "none"
}
]
},
{
"name": "Niza Chain Mainnet",
"chain": "NIZA",
"icon": "niza",
"rpc": [
"https://nizascan.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Niza Global",
"symbol": "NIZA",
"decimals": 18
},
"infoURL": "https://niza.io",
"shortName": "niza",
"chainId": 20041,
"networkId": 20041,
"explorers": [
{
"name": "NizaScan",
"url": "https://nizascan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Niza Chain Testnet",
"chain": "NIZA",
"icon": "niza",
"rpc": [
"https://testnet.nizascan.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Niza Global",
"symbol": "NIZA",
"decimals": 18
},
"infoURL": "https://niza.io",
"shortName": "niza_testnet",
"chainId": 20073,
"networkId": 20073,
"explorers": [
{
"name": "NizaScan",
"url": "https://testnet.nizascan.io",
"standard": "EIP3091"
}
]
},
{
"name": "DCpay Mainnet",
"chain": "DCpay",
"icon": "dcpayIcon",
"rpc": [
"https://rpc.dcpay.io"
],
"faucets": [],
"nativeCurrency": {
"name": "DCP",
"symbol": "DCP",
"decimals": 18
},
"infoURL": "https://dcpay.io",
"shortName": "DCPm",
"chainId": 21223,
"networkId": 21223,
"explorers": [
{
"name": "DCpay Mainnet Explorer",
"url": "https://mainnet.dcpay.io",
"standard": "EIP3091"
}
]
},
{
"name": "DCpay Testnet",
"chain": "DCpay",
"icon": "dcpayIcon",
"rpc": [
"https://testnet-rpc.dcpay.io"
],
"faucets": [
"https://faucet.dcpay.io"
],
"nativeCurrency": {
"name": "DCP",
"symbol": "DCP",
"decimals": 18
},
"infoURL": "https://dcpay.io",
"shortName": "DCPt",
"chainId": 21224,
"networkId": 21224,
"explorers": [
{
"name": "DCpay Testnet Explorer",
"url": "https://testnet.dcpay.io",
"standard": "EIP3091"
}
]
},
{
"name": "DreyerX Mainnet",
"chain": "DreyerX",
"rpc": [
"https://rpc.dreyerx.com"
],
"faucets": [],
"nativeCurrency": {
"name": "DreyerX",
"symbol": "DRX",
"decimals": 18
},
"infoURL": "https://dreyerx.com",
"shortName": "dreyerx",
"chainId": 23451,
"networkId": 23451,
"icon": "dreyerx",
"explorers": [
{
"name": "drxscan",
"url": "https://scan.dreyerx.com",
"icon": "dreyerx",
"standard": "EIP3091"
}
]
},
{
"name": "DreyerX Testnet",
"chain": "DreyerX",
"rpc": [
"https://testnet-rpc.dreyerx.com"
],
"faucets": [],
"nativeCurrency": {
"name": "DreyerX",
"symbol": "DRX",
"decimals": 18
},
"infoURL": "https://dreyerx.com",
"shortName": "dreyerx-testnet",
"chainId": 23452,
"networkId": 23452,
"icon": "dreyerx",
"explorers": [
{
"name": "drxscan",
"url": "https://testnet-scan.dreyerx.com",
"icon": "dreyerx",
"standard": "EIP3091"
}
]
},
{
"name": "KLAOS Nova",
"title": "KLAOS Nova Test Chain",
"chain": "KLAOS Nova",
"icon": "k-laos",
"rpc": [
"https://rpc.klaosnova.laosfoundation.io",
"wss://rpc.klaosnova.laosfoundation.io"
],
"faucets": [],
"nativeCurrency": {
"name": "KLAOS",
"symbol": "KLAOS",
"decimals": 18
},
"infoURL": "https://www.laosfoundation.io/",
"shortName": "klaosnova",
"chainId": 27181,
"networkId": 27181,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.klaosnova.laosfoundation.io",
"icon": "k-laos",
"standard": "EIP3091"
}
]
},
{
"name": "Nanon Sepolia",
"title": "Nanon Sepolia Rollup Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia-rpc.nanon.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.nanon.network",
"shortName": "Nanon-Testnet",
"chainId": 27483,
"networkId": 27483,
"slip44": 1,
"icon": "nanon",
"explorers": [
{
"name": "Nanon Sepolia Rollup Testnet Explorer",
"url": "https://sepolia-explorer.nanon.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://sepolia-bridge.nanon.network"
}
]
}
},
{
"name": "zeroone Mainnet Subnet",
"chain": "ZEROONEMAI",
"rpc": [
"https://subnets.avax.network/zeroonemai/mainnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "ZERO",
"symbol": "ZERO",
"decimals": 18
},
"infoURL": "https://zeroone.art/",
"shortName": "zeroonemai",
"chainId": 27827,
"networkId": 27827,
"explorers": [
{
"name": "ZEROONEMAI Explorer",
"url": "https://subnets.avax.network/zeroonemai",
"standard": "EIP3091"
}
]
},
{
"name": "Vizing Testnet",
"title": "Vizing Testnet",
"chain": "Vizing Testnet",
"rpc": [
"https://rpc-sepolia.vizing.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://vizing.com",
"shortName": "Vizing-Testnet",
"chainId": 28516,
"networkId": 28516,
"icon": "vizing",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer-sepolia.vizing.com",
"icon": "vizing",
"standard": "EIP3091"
}
]
},
{
"name": "Vizing Mainnet",
"title": "Vizing Mainnet",
"chain": "Vizing Mainnet",
"rpc": [
"https://rpc.vizing.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://vizing.com",
"shortName": "Vizing",
"chainId": 28518,
"networkId": 28518,
"icon": "vizing",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.vizing.com",
"icon": "vizing",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.vizing.com"
}
]
}
},
{
"name": "Boba Sepolia",
"chain": "ETH",
"rpc": [
"https://sepolia.boba.network",
"https://boba-sepolia.gateway.tenderly.co",
"https://gateway.tenderly.co/public/boba-sepolia",
"wss://boba-sepolia.gateway.tenderly.co/",
"wss://gateway.tenderly.co/public/boba-sepolia"
],
"faucets": [
"https://www.l2faucet.com/boba"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://boba.network",
"shortName": "BobaSepolia",
"chainId": 28882,
"networkId": 28882,
"explorers": [
{
"name": "Bobascan",
"url": "https://testnet.bobascan.com",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://gateway.boba.network"
}
]
}
},
{
"name": "HYCHAIN Testnet",
"chainId": 29112,
"shortName": "hychain-testnet",
"chain": "ETH",
"networkId": 29112,
"nativeCurrency": {
"name": "TOPIA",
"symbol": "TOPIA",
"decimals": 18
},
"rpc": [
"https://testnet-rpc.hychain.com/http"
],
"faucets": [],
"infoURL": "https://www.hychain.com",
"icon": "hychain",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.explorer.hychain.com",
"icon": "hychain",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-58008",
"bridges": []
}
},
{
"name": "KaiChain Testnet",
"chain": "KaiChain",
"rpc": [
"https://testnet-rpc.kaichain.net"
],
"faucets": [
"https://faucet.kaichain.net"
],
"nativeCurrency": {
"name": "KaiChain Testnet Native Token",
"symbol": "KEC",
"decimals": 18
},
"infoURL": "https://kaichain.net",
"shortName": "tkec",
"chainId": 29536,
"networkId": 29536,
"explorers": [
{
"name": "KaiChain Explorer",
"url": "https://testnet-explorer.kaichain.net",
"standard": "EIP3091"
}
]
},
{
"name": "MiYou Mainnet",
"chain": "MiYou Chain",
"icon": "miyou",
"faucets": [],
"rpc": [
"https://blockchain.miyou.io",
"https://blockchain.miyoulab.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "Miyou",
"symbol": "MY",
"decimals": 18
},
"infoURL": "https://www.miyou.io",
"shortName": "MiYou",
"chainId": 30088,
"networkId": 30088,
"slip44": 60,
"ens": {
"registry": "0xFEfa9B3061435977424DD947E756566cFB60473E"
},
"explorers": [
{
"name": "MiYou block explorer",
"url": "https://myscan.miyou.io",
"standard": "EIP3091"
}
]
},
{
"name": "Movement EVM Legacy",
"chain": "MOVE",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Move",
"symbol": "MOVE",
"decimals": 18
},
"infoURL": "https://movementlabs.xyz",
"shortName": "moveleg",
"chainId": 30730,
"networkId": 30730,
"icon": "move",
"explorers": [
{
"name": "mevm explorer",
"url": "https://explorer.movementlabs.xyz",
"standard": "none"
}
],
"status": "incubating"
},
{
"name": "Movement EVM Devnet",
"chain": "MOVE",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Move",
"symbol": "MOVE",
"decimals": 18
},
"infoURL": "https://movementlabs.xyz",
"shortName": "movedev",
"chainId": 30731,
"networkId": 30731,
"icon": "move",
"explorers": [
{
"name": "mevm explorer",
"url": "https://explorer.movementlabs.xyz",
"standard": "none"
}
],
"status": "incubating"
},
{
"name": "Movement EVM Testnet",
"chain": "MOVE",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Move",
"symbol": "MOVE",
"decimals": 18
},
"infoURL": "https://movementlabs.xyz",
"shortName": "movetest",
"chainId": 30732,
"networkId": 30732,
"icon": "move",
"explorers": [
{
"name": "mevm explorer",
"url": "https://explorer.movementlabs.xyz",
"standard": "none"
}
],
"status": "incubating"
},
{
"name": "Xchain Mainnet",
"chain": "Xchain",
"icon": "intd",
"rpc": [
"https://rpc.xchainscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Intdestcoin",
"symbol": "INTD",
"decimals": 18
},
"infoURL": "https://xchainscan.com",
"shortName": "INTD",
"chainId": 31753,
"networkId": 31753,
"explorers": [
{
"name": "Xchain Mainnet Explorer",
"url": "https://xchainscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Xchain Testnet",
"chain": "Xchain",
"icon": "intd",
"rpc": [
"https://rpc.xchaintest.net"
],
"faucets": [
"https://xchainfaucet.net"
],
"nativeCurrency": {
"name": "Intdestcoin Testnet",
"symbol": "INTD",
"decimals": 18
},
"infoURL": "https://xchaintest.net",
"shortName": "tINTD",
"chainId": 31754,
"networkId": 31754,
"explorers": [
{
"name": "Xchain Testnet Explorer",
"url": "https://xchaintest.net",
"standard": "EIP3091"
}
]
},
{
"name": "Entangle Mainnet",
"chain": "NGL",
"icon": "ngl",
"rpc": [
"https://json-rpc.entangle.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "Entangle",
"symbol": "NGL",
"decimals": 18
},
"infoURL": "https://www.entangle.fi",
"shortName": "ngl",
"chainId": 33033,
"networkId": 33033,
"explorers": [
{
"name": "Entangle Mainnet Explorer",
"url": "https://explorer.entangle.fi",
"standard": "none"
}
]
},
{
"name": "Entangle Testnet",
"chain": "NGL",
"icon": "ngl",
"rpc": [
"https://evm-testnet.entangle.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "Entangle",
"symbol": "NGL",
"decimals": 18
},
"infoURL": "https://www.entangle.fi",
"shortName": "tngl",
"chainId": 33133,
"networkId": 33133,
"explorers": []
},
{
"name": "Funki",
"chain": "ETH",
"icon": "funki",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://funkichain.com",
"shortName": "funki",
"chainId": 33979,
"networkId": 33979,
"explorers": [
{
"name": "Funki Mainnet Explorer",
"url": "https://mainnet.funkichain.com",
"standard": "none"
}
]
},
{
"name": "PRM Mainnet",
"chain": "prm",
"icon": "prmIcon",
"rpc": [
"https://mainnet-rpc.prmscan.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Primal Network",
"symbol": "PRM",
"decimals": 18
},
"infoURL": "https://primalnetwork.org",
"shortName": "prm",
"chainId": 39656,
"networkId": 39656,
"explorers": [
{
"name": "Primal Network",
"url": "https://prmscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "AgentLayer Testnet",
"chain": "AgentLayer",
"icon": "agentLayerIcon",
"rpc": [
"https://testnet-rpc.agentlayer.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Agent",
"symbol": "AGENT",
"decimals": 18
},
"infoURL": "https://agentlayer.xyz/home",
"shortName": "agent",
"chainId": 42072,
"networkId": 42072,
"explorers": [
{
"name": "AgentLayer Testnet Explorer",
"url": "https://testnet-explorer.agentlayer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Etherlink Mainnet",
"chain": "Etherlink",
"icon": "etherlink",
"chainId": 42793,
"networkId": 42793,
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://etherlink.com",
"shortName": "etlk",
"nativeCurrency": {
"name": "tez",
"symbol": "XTZ",
"decimals": 18
},
"rpc": [
"https://node.mainnet.etherlink.com"
],
"faucets": [],
"explorers": [
{
"name": "Etherlink Explorer",
"url": "https://explorer.etherlink.com",
"standard": "EIP3091"
}
]
},
{
"name": "Hemi Network",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://hemi.xyz",
"shortName": "hemi",
"chainId": 43111,
"networkId": 43111,
"icon": "hemi",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1"
},
"status": "incubating"
},
{
"name": "Quantum Network",
"chain": "Quantum",
"rpc": [
"https://rpcqtm.avescoin.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Quantum",
"symbol": "QTM",
"decimals": 18
},
"infoURL": "https://avescoin.io/",
"shortName": "QTM",
"chainId": 44445,
"networkId": 44445,
"icon": "quantum",
"explorers": [
{
"name": "Quantum Explorer",
"url": "https://qtm.avescoin.io",
"icon": "quantum",
"standard": "EIP3091"
}
]
},
{
"name": "Swamps L2",
"chain": "SWP",
"icon": "swamps",
"rpc": [
"https://swamps.tc.l2aas.com"
],
"faucets": [],
"nativeCurrency": {
"name": "SWP",
"symbol": "SWP",
"decimals": 18
},
"infoURL": "https://www.swamps.fi",
"shortName": "SWP",
"chainId": 45454,
"networkId": 45454,
"explorers": [
{
"name": "blockscout",
"url": "https://swamps-explorer.tc.l2aas.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "DODOchain testnet",
"title": "DODOchain testnet",
"chain": "DODOchain",
"icon": "dodochain_testnet",
"rpc": [
"https://dodochain-testnet.alt.technology",
"wss://dodochain-testnet.alt.technology/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "DODO",
"symbol": "DODO",
"decimals": 18
},
"infoURL": "https://www.dodochain.com",
"shortName": "dodochain",
"chainId": 53457,
"networkId": 53457,
"explorers": [
{
"name": "DODOchain Testnet (Sepolia) Explorer",
"url": "https://testnet-scan.dodochain.com",
"icon": "dodochain_testnet",
"standard": "EIP3091"
}
]
},
{
"name": "Photon Testnet",
"chain": "Photon",
"rpc": [
"https://rpc-test.photonchain.io"
],
"faucets": [
"https://photonchain.io/airdrop"
],
"nativeCurrency": {
"name": "Photon",
"symbol": "PTON",
"decimals": 18
},
"infoURL": "https://photonchain.io",
"shortName": "pton",
"chainId": 54555,
"networkId": 54555,
"explorers": [
{
"name": "photon_testnet_explorer",
"url": "https://testnet.photonchain.io",
"standard": "none"
}
]
},
{
"name": "Lambda Chain Mainnet",
"chain": "Lambda Chain",
"rpc": [
"https://nrpc.lambda.im/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://lambda.im",
"shortName": "lambda",
"chainId": 56026,
"networkId": 56026,
"slip44": 1,
"icon": "lambda-chain",
"explorers": [
{
"name": "Lambda Chain Mainnet Explorer",
"url": "https://scan.lambda.im",
"standard": "EIP3091"
}
]
},
{
"name": "Testnet Zeroone Subnet",
"chain": "TESTNETZER",
"rpc": [
"https://subnets.avax.network/testnetzer/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "ZERO",
"symbol": "ZERO",
"decimals": 18
},
"infoURL": "https://zeroone.art/",
"shortName": "testnetzer",
"chainId": 56400,
"networkId": 56400,
"explorers": [
{
"name": "TESTNETZER Explorer",
"url": "https://subnets-test.avax.network/testnetzer",
"standard": "EIP3091"
}
]
},
{
"name": "Linea Sepolia",
"title": "Linea Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.sepolia.linea.build",
"wss://rpc.sepolia.linea.build",
"https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}",
"wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "Linea Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://linea.build",
"shortName": "linea-sepolia",
"chainId": 59141,
"networkId": 59141,
"slip44": 1,
"icon": "linea",
"parent": {
"type": "L2",
"chain": "eip155-5",
"bridges": [
{
"url": "https://bridge.linea.build/"
}
]
},
"explorers": [
{
"name": "Etherscan",
"url": "https://sepolia.lineascan.build",
"standard": "EIP3091",
"icon": "linea"
},
{
"name": "Blockscout",
"url": "https://explorer.sepolia.linea.build",
"standard": "EIP3091",
"icon": "linea"
}
],
"status": "active"
},
{
"name": "BOB",
"chain": "ETH",
"rpc": [
"https://rpc.gobob.xyz",
"wss://rpc.gobob.xyz",
"https://bob-mainnet.public.blastapi.io",
"wss://bob-mainnet.public.blastapi.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://gobob.xyz",
"shortName": "bob",
"chainId": 60808,
"networkId": 60808,
"icon": "bob",
"explorers": [
{
"name": "bobscout",
"url": "https://explorer.gobob.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"status": "active",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://app.gobob.xyz"
}
]
}
},
{
"name": "KaiChain",
"chain": "KaiChain",
"rpc": [
"https://mainnet-rpc.kaichain.net"
],
"faucets": [],
"nativeCurrency": {
"name": "KaiChain Native Token",
"symbol": "KEC",
"decimals": 18
},
"infoURL": "https://kaichain.net",
"shortName": "kec",
"chainId": 61406,
"networkId": 61406,
"explorers": [
{
"name": "KaiChain Explorer",
"url": "https://explorer.kaichain.net",
"standard": "EIP3091"
}
]
},
{
"name": "OPTOPIA Testnet",
"chain": "ETH",
"rpc": [
"https://rpc-testnet.optopia.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://optopia.ai",
"shortName": "OPTOPIA-Testnet",
"chainId": 62049,
"networkId": 62049,
"icon": "optopia",
"explorers": [
{
"name": "optopia-testnet-scan",
"url": "https://scan-testnet.optopia.ai",
"icon": "optopia",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge-testnet.optopia.ai"
}
]
}
},
{
"name": "Optopia Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc-mainnet.optopia.ai",
"https://rpc-mainnet-2.optopia.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://optopia.ai",
"shortName": "Optopia",
"chainId": 62050,
"networkId": 62050,
"icon": "optopia",
"explorers": [
{
"name": "optopia-scan",
"url": "https://scan.optopia.ai",
"icon": "optopia",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.optopia.ai"
}
]
}
},
{
"name": "Citrea Devnet",
"chain": "Citrea",
"rpc": [
"https://rpc.devnet.citrea.xyz"
],
"faucets": [
"https://citrea.xyz/bridge"
],
"nativeCurrency": {
"name": "Citrea BTC",
"symbol": "cBTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://citrea.xyz",
"shortName": "citrea-devnet",
"chainId": 62298,
"networkId": 62298,
"icon": "citrea",
"explorers": [
{
"name": "Citrea Devnet Explorer",
"url": "https://explorer.devnet.citrea.xyz",
"icon": "citrea",
"standard": "EIP3091"
}
]
},
{
"name": "PLYR TAU Testnet",
"chain": "PLYR",
"icon": "plyr",
"rpc": [
"https://subnets.avax.network/plyr/testnet/rpc"
],
"faucets": [
"https://faucet.avax.network/?subnet=plyr"
],
"nativeCurrency": {
"name": "PLYR",
"symbol": "PLYR",
"decimals": 18
},
"infoURL": "https://plyr.network",
"shortName": "plyr-tau-testnet",
"chainId": 62831,
"networkId": 62831,
"slip44": 1,
"explorers": [
{
"name": "Avalanche Subnet Testnet Explorer",
"url": "https://subnets-test.avax.network/plyr",
"standard": "EIP3091"
}
]
},
{
"name": "Proof of Play - Apex",
"chainId": 70700,
"shortName": "pop-apex",
"chain": "ETH",
"networkId": 70700,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://rpc.apex.proofofplay.com"
],
"faucets": [],
"explorers": [
{
"name": "Proof of Play Apex Explorer",
"url": "https://explorer.apex.proofofplay.com",
"icon": "pop-apex",
"standard": "EIP3091"
}
],
"infoURL": "https://proofofplay.com",
"icon": "pop-apex",
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
},
{
"url": "https://relay.link/bridge/apex/"
}
]
}
},
{
"name": "CAGA crypto Ankara testnet",
"chain": "Ankara",
"rpc": [
"https://www.ankara-cagacrypto.com",
"wss://wss.ankara-cagacrypto.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Caga",
"symbol": "CAGA",
"decimals": 18
},
"infoURL": "https://www.cagacrypto.com/",
"shortName": "caga",
"chainId": 72778,
"networkId": 72778,
"icon": "ankaracaga",
"explorers": [
{
"name": "ankara",
"url": "https://explorer.ankara-cagacrypto.com",
"standard": "EIP3091"
}
]
},
{
"name": "ICB Testnet",
"chain": "ICBT",
"icon": "icbnetwork",
"rpc": [
"https://rpc1-testnet.icbnetwork.info/",
"https://rpc2-testnet.icbnetwork.info/"
],
"faucets": [],
"nativeCurrency": {
"name": "ICB Testnet Token",
"symbol": "ICBT",
"decimals": 18
},
"infoURL": "https://icb.network",
"shortName": "ICBT",
"chainId": 73114,
"networkId": 73114,
"explorers": [
{
"name": "ICB Tesnet Explorer",
"url": "https://testnet.icbscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "ICB Network",
"chain": "ICB",
"icon": "icbnetwork",
"rpc": [
"https://rpc1-mainnet.icbnetwork.info/",
"https://rpc2-mainnet.icbnetwork.info/"
],
"faucets": [],
"nativeCurrency": {
"name": "ICB Native Token",
"symbol": "ICBX",
"decimals": 18
},
"infoURL": "https://icb.network",
"shortName": "ICBX",
"chainId": 73115,
"networkId": 73115,
"explorers": [
{
"name": "ICB Explorer",
"url": "https://icbscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "GEEK Verse Mainnet",
"chain": "GEEK",
"rpc": [
"https://rpc.geekout-pte.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Geek",
"symbol": "GEEK",
"decimals": 18
},
"infoURL": "https://www.geekout-pte.com",
"shortName": "GEEK",
"chainId": 75512,
"networkId": 75512,
"explorers": [
{
"name": "Geek Explorer",
"url": "https://explorer.geekout-pte.com",
"standard": "EIP3091"
}
]
},
{
"name": "GEEK Verse Testnet",
"chain": "GEEK Test",
"rpc": [
"https://rpc-testnet.geekout-pte.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Geek",
"symbol": "GEEK",
"decimals": 18
},
"infoURL": "https://www.geekout-pte.com",
"shortName": "GEEK_Test",
"chainId": 75513,
"networkId": 75513,
"explorers": [
{
"name": "Geek Testnet Explorer",
"url": "https://explorer-testnet.geekout-pte.com",
"standard": "EIP3091"
}
]
},
{
"name": "BORAchain mainnet",
"chain": "BORA",
"icon": "bora",
"rpc": [
"https://public-node.api.boraportal.com/bora/mainnet"
],
"faucets": [],
"nativeCurrency": {
"name": "BGAS",
"symbol": "BGAS",
"decimals": 18
},
"infoURL": "https://www.boraportal.com",
"shortName": "BORAchain",
"chainId": 77001,
"networkId": 77001,
"slip44": 8217,
"explorers": [
{
"name": "BORAchainscope",
"url": "https://scope.boraportal.com",
"standard": "EIP3091"
}
]
},
{
"name": "Amoy",
"title": "Polygon Amoy Testnet",
"chain": "Polygon",
"icon": "polygon",
"rpc": [
"https://rpc-amoy.polygon.technology",
"https://polygon-amoy-bor-rpc.publicnode.com",
"wss://polygon-amoy-bor-rpc.publicnode.com"
],
"faucets": [
"https://faucet.polygon.technology/"
],
"nativeCurrency": {
"name": "MATIC",
"symbol": "MATIC",
"decimals": 18
},
"infoURL": "https://polygon.technology/",
"shortName": "polygonamoy",
"chainId": 80002,
"networkId": 80002,
"slip44": 1,
"explorers": [
{
"name": "polygonamoy",
"url": "https://www.oklink.com/amoy",
"standard": "EIP3091"
}
]
},
{
"name": "ZEDXION",
"chain": "ZEDXION",
"icon": "zedx",
"rpc": [
"https://mainnet-rpc.zedscan.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Zedxion",
"symbol": "ZEDX",
"decimals": 9
},
"infoURL": "https://docs.zedscan.net",
"shortName": "ZEDX",
"chainId": 83872,
"networkId": 83872,
"explorers": [
{
"name": "Zedscan",
"url": "http://zedscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Inoai Network",
"chain": "INOAI",
"faucets": [],
"rpc": [
"https://inoai-network.com"
],
"nativeCurrency": {
"name": "Inoai",
"symbol": "INO",
"decimals": 18
},
"infoURL": "https://inoai.info",
"shortName": "INOAI",
"chainId": 88559,
"networkId": 88559,
"icon": "inoai",
"explorers": [
{
"name": "inoai live",
"url": "https://inoai.live",
"standard": "none"
}
]
},
{
"name": "Unit Zero Testnet",
"chain": "Unit Zero",
"rpc": [
"https://rpc-testnet.unit0.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "UNIT0",
"symbol": "UNIT0",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://units.network",
"shortName": "unit0-testnet",
"chainId": 88817,
"networkId": 88817,
"explorers": [
{
"name": "explorer-testnet",
"url": "https://explorer-testnet.unit0.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Unit Zero Stagenet",
"chain": "Unit Zero",
"rpc": [
"https://rpc-stagenet.unit0.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "UNIT0",
"symbol": "UNIT0",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://units.network",
"shortName": "unit0-stagenet",
"chainId": 88819,
"networkId": 88819,
"explorers": [
{
"name": "explorer-stagenet",
"url": "https://explorer-stagenet.unit0.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Chiliz Spicy Testnet",
"chain": "CHZ",
"rpc": [
"https://spicy-rpc.chiliz.com"
],
"faucets": [
"https://spicy-faucet.chiliz.com",
"https://tatum.io/faucets/chiliz"
],
"nativeCurrency": {
"name": "Chiliz",
"symbol": "CHZ",
"decimals": 18
},
"icon": "chilizspicy",
"infoURL": "https://www.chiliz.com/en/chain",
"shortName": "chzspicy",
"chainId": 88882,
"networkId": 88882,
"slip44": 1,
"explorers": [
{
"name": "spicy-explorer",
"url": "https://testnet.chiliscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "F(x)Core Testnet Network",
"chain": "Fxcore",
"rpc": [
"https://testnet-fx-json-web3.functionx.io:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Function X",
"symbol": "FX",
"decimals": 18
},
"infoURL": "https://functionx.io/",
"shortName": "dhobyghaut",
"chainId": 90001,
"networkId": 90001,
"icon": "fxcore"
},
{
"name": "Camp Testnet",
"chain": "ETH",
"icon": "camp",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://rpc-camp-network-4xje7wy105.t.conduit.xyz"
],
"faucets": [
"https://www.campnetwork.xyz/faucet"
],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://campaign-1.gitbook.io/camp-technical-docså",
"shortName": "camp",
"chainId": 90354,
"networkId": 90354,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://camp-testnet-bridge.vercel.app/"
}
]
}
},
{
"name": "Green Chain Testnet",
"chain": "Green Chain",
"icon": "greenchain",
"rpc": [
"https://node.greenchain.app/rpc/"
],
"faucets": [],
"nativeCurrency": {
"name": "GREEN",
"symbol": "GREEN",
"decimals": 18
},
"infoURL": "https://www.greenchain.app",
"shortName": "greenchain",
"chainId": 97531,
"networkId": 97531,
"explorers": [
{
"name": "Green Chain Explorer",
"url": "https://explorer.greenchain.app",
"standard": "EIP3091"
}
]
},
{
"name": "OptimusZ7 Testnet",
"chain": "OptimusZ7",
"icon": "OZ7Icon",
"rpc": [
"https://testnet-rpc.optimusz7.com"
],
"faucets": [
"https://faucet.optimusz7.com"
],
"nativeCurrency": {
"name": "OptimusZ7",
"symbol": "OZ7",
"decimals": 18
},
"infoURL": "http://optimusz7.com",
"shortName": "OZ7t",
"chainId": 97970,
"networkId": 97970,
"explorers": [
{
"name": "OptimusZ7 Testnet Explorer",
"url": "https://testnet.optimusz7.com",
"standard": "EIP3091"
}
]
},
{
"name": "Ebi Chain",
"title": "Ebi Chain",
"chain": "Ebi",
"rpc": [
"https://rpc.ebi.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ebi.xyz",
"shortName": "ebi",
"chainId": 98881,
"networkId": 98881,
"status": "incubating"
},
{
"name": "QuarkChain L2 Mainnet",
"chain": "QuarkChain",
"rpc": [
"https://mainnet-l2-ethapi.quarkchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "QKC",
"symbol": "QKC",
"decimals": 18
},
"infoURL": "https://www.quarkchain.io",
"shortName": "qkc-l2",
"chainId": 100011,
"networkId": 100011,
"parent": {
"type": "L2",
"chain": "eip155-100000"
}
},
{
"name": "Creditcoin Testnet",
"chain": "CTC",
"icon": "creditcoin",
"rpc": [
"https://rpc.cc3-testnet.creditcoin.network"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "Testnet CTC",
"symbol": "tCTC",
"decimals": 18
},
"infoURL": "https://creditcoin.org",
"shortName": "ctctest",
"chainId": 102031,
"networkId": 102031,
"faucets": [],
"explorers": [
{
"name": "blockscout",
"url": "https://creditcoin-testnet.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "KaspaClassic Mainnet",
"chain": "KaspaClassic",
"icon": "kaspaclassic",
"rpc": [
"https://api.kaspaclassic.world/",
"http://80.178.101.118:8000/"
],
"faucets": [],
"nativeCurrency": {
"name": "KaspaClassic",
"symbol": "CAS",
"decimals": 18
},
"infoURL": "https://kaspaclassic.com/",
"shortName": "cas",
"chainId": 104566,
"networkId": 104566,
"explorers": [
{
"name": "KaspaClassic Explorer",
"url": "https://explorer.kaspaclassic.world",
"standard": "none"
}
]
},
{
"name": "Stratis Mainnet",
"chain": "Stratis",
"rpc": [
"https://rpc.stratisevm.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Stratis",
"symbol": "STRAX",
"decimals": 18
},
"infoURL": "https://www.stratisplatform.com",
"shortName": "stratis",
"chainId": 105105,
"networkId": 105105,
"icon": "stratis",
"explorers": [
{
"name": "Stratis Explorer",
"url": "https://explorer.stratisevm.com",
"standard": "EIP3091"
}
]
},
{
"name": "QuarkChain L2 Testnet",
"chain": "QuarkChain",
"rpc": [
"https://testnet-l2-ethapi.quarkchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "QKC",
"symbol": "QKC",
"decimals": 18
},
"infoURL": "https://www.quarkchain.io",
"shortName": "qkc-l2-t",
"chainId": 110011,
"networkId": 110011,
"parent": {
"type": "L2",
"chain": "eip155-110000"
}
},
{
"name": "re.al",
"title": "re.al Real-World Assets network",
"chain": "re.al",
"rpc": [
"https://real.drpc.org",
"wss://real.drpc.org"
],
"nativeCurrency": {
"name": "re.al Ether",
"symbol": "reETH",
"decimals": 18
},
"infoURL": "https://re.al",
"faucets": [],
"shortName": "re-al",
"chainId": 111188,
"networkId": 111188,
"slip44": 60,
"icon": "real",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.re.al",
"icon": "real",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://re.al/bridge"
},
{
"url": "https://bridge.gelato.network/bridge/real"
}
]
}
},
{
"name": "Odyssey Chain (Testnet)",
"chain": "DIONE",
"rpc": [
"https://testnode.dioneprotocol.com/ext/bc/D/rpc"
],
"faucets": [
"https://faucet.dioneprotocol.com/"
],
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://www.dioneprotocol.com/",
"shortName": "DIONE",
"chainId": 131313,
"networkId": 131313,
"icon": "odyssey",
"nativeCurrency": {
"name": "DIONE",
"symbol": "DIONE",
"decimals": 18
}
},
{
"name": "MagApe Testnet",
"title": "MagApeChain",
"chain": "MagApe",
"rpc": [
"https://testnet-api.magape.io/chain/"
],
"faucets": [],
"nativeCurrency": {
"name": "MagApe",
"symbol": "MAG",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://magape.io",
"shortName": "mag",
"chainId": 141319,
"networkId": 141319,
"icon": "magape",
"explorers": [
{
"name": "etherscan",
"url": "http://testnet-api.magape.io:81",
"icon": "magape",
"standard": "EIP3091"
}
]
},
{
"name": "PlayFi Mainnet",
"chain": "PLAY",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Play",
"symbol": "PLAY",
"decimals": 18
},
"infoURL": "https://www.playfi.ai/",
"shortName": "playfi",
"chainId": 161212,
"networkId": 161212,
"explorers": [],
"status": "incubating"
},
{
"name": "Eclat Mainnet",
"chain": "Eclat",
"icon": "eclat",
"rpc": [
"https://mainnet-rpc.eclatscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Eclat",
"symbol": "ECLAT",
"decimals": 18
},
"infoURL": "https://eclatscan.com",
"shortName": "ECLAT",
"chainId": 165279,
"networkId": 165279,
"explorers": [
{
"name": "Eclat Mainnet Explorer",
"url": "https://eclatscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Taiko Mainnet",
"chain": "ETH",
"status": "active",
"icon": "taiko",
"rpc": [
"https://rpc.mainnet.taiko.xyz",
"wss://ws.mainnet.taiko.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://taiko.xyz",
"shortName": "tko-mainnet",
"chainId": 167000,
"networkId": 167000,
"explorers": [
{
"name": "etherscan",
"url": "https://taikoscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Taiko Hekla L2",
"chain": "ETH",
"status": "active",
"icon": "taiko",
"rpc": [
"https://rpc.hekla.taiko.xyz",
"wss://ws.hekla.taiko.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://taiko.xyz",
"shortName": "tko-hekla",
"chainId": 167009,
"networkId": 167009,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscoutapi.hekla.taiko.xyz",
"standard": "EIP3091"
},
{
"name": "routescan",
"url": "https://hekla.taikoscan.network",
"standard": "EIP3091"
}
]
},
{
"name": "Mind Network Testnet",
"chain": "FHET",
"rpc": [
"https://rpc-testnet.mindnetwork.xyz",
"wss://rpc-testnet.mindnetwork.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "FHE",
"symbol": "FHE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://mindnetwork.xyz",
"shortName": "fhet",
"chainId": 192940,
"networkId": 192940
},
{
"name": "xFair.AI Testnet",
"chain": "FAIT",
"rpc": [
"https://rpc_testnet.xfair.ai",
"wss://rpc_testnet.xfair.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "FAI",
"symbol": "FAI",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://xfair.ai",
"shortName": "fait",
"chainId": 200000,
"networkId": 200000
},
{
"name": "Bitlayer Mainnet",
"chain": "Bitlayer",
"rpc": [
"https://rpc.bitlayer.org",
"https://rpc.bitlayer-rpc.com",
"https://rpc.ankr.com/bitlayer",
"https://rpc-bitlayer.rockx.com",
"wss://ws.bitlayer.org",
"wss://ws.bitlayer-rpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://docs.bitlayer.org/",
"shortName": "btr",
"chainId": 200901,
"networkId": 200901,
"slip44": 1,
"icon": "bitlayer",
"explorers": [
{
"name": "bitlayer mainnet scan",
"url": "https://www.btrscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "YMTECH-BESU Testnet",
"chain": "YMTECH-BESU",
"rpc": [
"http://39.119.118.216:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.ymtech.co.kr",
"shortName": "YMTECH-BESU",
"chainId": 202401,
"networkId": 202401,
"explorers": [
{
"name": "YMTECH-BESU Chainlens",
"url": "http://39.119.118.198",
"standard": "none"
}
]
},
{
"name": "Auroria Testnet",
"title": "Stratis Testnet Auroria",
"chain": "Auroria",
"rpc": [
"https://auroria.rpc.stratisevm.com"
],
"faucets": [
"https://auroria.faucet.stratisevm.com"
],
"nativeCurrency": {
"name": "Auroria Stratis",
"symbol": "tSTRAX",
"decimals": 18
},
"infoURL": "https://www.stratisplatform.com",
"shortName": "auroria",
"chainId": 205205,
"networkId": 205205,
"icon": "auroria",
"explorers": [
{
"name": "Auroria Testnet Explorer",
"url": "https://auroria.explorer.stratisevm.com",
"standard": "EIP3091"
}
]
},
{
"name": "GitAGI Atlas Testnet",
"chain": "GitAGI",
"rpc": [
"https://rpc.gitagi.org"
],
"faucets": [],
"nativeCurrency": {
"name": "GitAGI",
"symbol": "tGAGI",
"decimals": 18
},
"infoURL": "https://gitagi.org/",
"shortName": "atlas",
"chainId": 210049,
"networkId": 210049
},
{
"name": "HydraDX",
"chain": "HDX",
"rpc": [
"https://rpc.hydradx.cloud",
"wss://rpc.hydradx.cloud"
],
"faucets": [],
"nativeCurrency": {
"name": "Wrapped ETH",
"symbol": "WETH",
"decimals": 18
},
"infoURL": "https://hydradx.io",
"shortName": "hdx",
"chainId": 222222,
"networkId": 222222,
"icon": "hydradx",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.evm.hydration.cloud",
"standard": "EIP3091"
}
]
},
{
"name": "DeepL Mainnet",
"chain": "DEEPL",
"rpc": [
"https://rpc.deeplnetwork.org"
],
"faucets": [],
"nativeCurrency": {
"name": "DeepL",
"symbol": "DEEPL",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://deeplnetwork.org",
"shortName": "deepl",
"chainId": 222555,
"networkId": 222555,
"icon": "deepl",
"explorers": [
{
"name": "DeepL Mainnet Explorer",
"url": "https://scan.deeplnetwork.org",
"icon": "deepl",
"standard": "EIP3091"
}
]
},
{
"name": "DeepL Testnet",
"chain": "DEEPL",
"rpc": [
"https://testnet.deeplnetwork.org"
],
"faucets": [
"https://faucet.deeplnetwork.org"
],
"nativeCurrency": {
"name": "DeepL",
"symbol": "DEEPL",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://deeplnetwork.org",
"shortName": "tdeepl",
"chainId": 222666,
"networkId": 222666,
"icon": "deepl",
"explorers": [
{
"name": "DeepL Testnet Explorer",
"url": "https://testnet-scan.deeplnetwork.org",
"icon": "deepl",
"standard": "EIP3091"
}
]
},
{
"name": "Orange Chain Testnet",
"title": "Orange Chain Testnet",
"chain": "Orange Chain",
"rpc": [
"https://testnet-rpc.orangechain.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://orangechain.xyz",
"shortName": "Orange-Chain-Testnet",
"chainId": 240515,
"networkId": 240515,
"icon": "orange",
"explorers": [
{
"name": "Blockscout",
"url": "https://testnet-scan.orangechain.xyz",
"icon": "orange",
"standard": "EIP3091"
}
]
},
{
"name": "Eclat Testnet",
"chain": "Eclat",
"icon": "eclat",
"rpc": [
"https://testnet-rpc.eclatscan.com"
],
"faucets": [
"https://faucet.eclatscan.com"
],
"nativeCurrency": {
"name": "Eclat Testnet",
"symbol": "ECLAT",
"decimals": 18
},
"infoURL": "https://testnet-explorer.eclatscan.com",
"shortName": "tECLAT",
"chainId": 262371,
"networkId": 262371,
"explorers": [
{
"name": "Eclat Testnet Explorer",
"url": "https://testnet-explorer.eclatscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Zillion Sepolia Testnet",
"status": "active",
"chain": "ETH",
"rpc": [
"https://sepolia.zillnet.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zillnet.io",
"shortName": "zillsep",
"chainId": 282828,
"networkId": 282828,
"slip44": 1,
"icon": "zillion",
"explorers": [
{
"name": "zillscout",
"url": "https://sepolia.zillnet.io",
"icon": "zillion",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "One World Chain Mainnet",
"chain": "One World Chain",
"icon": "oneWorldChainIcon",
"rpc": [
"https://mainnet-rpc.oneworldchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "OWCT",
"symbol": "OWCT",
"decimals": 18
},
"infoURL": "https://oneworldchain.org",
"shortName": "OWCTm",
"chainId": 309075,
"networkId": 309075,
"explorers": [
{
"name": "One World Chain Mainnet Explorer",
"url": "https://mainnet.oneworldchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "SaharaAI Testnet",
"chain": "Sahara",
"rpc": [
"https://testnet.saharalabs.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "SAHARA",
"symbol": "SAH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://saharalabs.ai",
"shortName": "saharatest",
"chainId": 313313,
"networkId": 313313,
"icon": "sahara",
"explorers": [
{
"name": "Testnet Scan",
"url": "https://explorer.saharaa.info",
"standard": "EIP3091"
}
]
},
{
"name": "Parex Mainnet",
"title": "Parex Mainnet",
"chain": "Parex",
"rpc": [
"https://mainnet-rpc.parex.network"
],
"faucets": [],
"nativeCurrency": {
"name": "PAREX",
"symbol": "PRX",
"decimals": 18
},
"infoURL": "https://parex.network",
"shortName": "parex",
"chainId": 322202,
"networkId": 322202,
"icon": "parexmain",
"explorers": [
{
"name": "Parex Mainnet Explorer",
"url": "https://scan.parex.network",
"icon": "parexmain",
"standard": "EIP3091"
}
]
},
{
"name": "UPchain Testnet",
"chain": "UPchain",
"rpc": [
"https://rpc-testnet.uniport.network"
],
"faucets": [
"https://faucet-testnet.uniport.network"
],
"nativeCurrency": {
"name": "UBTC",
"symbol": "UBTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://uniport.network",
"shortName": "UPchain-testnet",
"chainId": 336655,
"networkId": 336655,
"icon": "up",
"explorers": [
{
"name": "UPchain Testnet Explorer",
"url": "https://explorer-testnet.uniport.network",
"icon": "up",
"standard": "EIP3091"
}
]
},
{
"name": "UPchain Mainnet",
"chain": "UPchain",
"rpc": [
"https://rpc.uniport.network"
],
"nativeCurrency": {
"name": "UBTC",
"symbol": "UBTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"infoURL": "https://uniport.network",
"shortName": "UPchain-mainnet",
"chainId": 336666,
"networkId": 336666,
"icon": "up",
"explorers": [
{
"name": "UPchain Mainnet Explorer",
"url": "https://explorer.uniport.network",
"icon": "up",
"standard": "EIP3091"
}
]
},
{
"name": "Bitfinity Network Mainnet",
"chain": "BFT",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://mainnet.bitfinity.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitfinity Token",
"symbol": "BFT",
"decimals": 18
},
"infoURL": "https://bitfinity.network",
"shortName": "bitfinity-mainnet",
"chainId": 355110,
"networkId": 355110,
"explorers": [
{
"name": "Bitfinity Mainnet Block Explorer",
"url": "https://explorer.mainnet.bitfinity.network",
"icon": "bitfinity",
"standard": "EIP3091"
}
]
},
{
"name": "LAVITA Mainnet",
"chain": "LAVITA",
"icon": "lavita",
"rpc": [
"https://tsub360890-eth-rpc.thetatoken.org/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "vTFUEL",
"symbol": "vTFUEL",
"decimals": 18
},
"infoURL": "https://www.lavita.ai",
"shortName": "lavita-mainnet",
"chainId": 360890,
"networkId": 360890,
"explorers": [
{
"name": "LAVITA Mainnet Explorer",
"url": "https://tsub360890-explorer.thetatoken.org",
"icon": "lavita",
"standard": "EIP3091"
}
]
},
{
"name": "AIE Testnet",
"chain": "AIE",
"rpc": [
"https://rpc1-testnet.aiechain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "AIE",
"symbol": "tAIE",
"decimals": 18
},
"infoURL": "https://testnet.aiescan.io",
"shortName": "aiet",
"chainId": 413413,
"networkId": 413413,
"icon": "aie",
"explorers": [
{
"name": "aiescan-testnet",
"icon": "aie",
"url": "https://testnet.aiescan.io",
"standard": "none"
}
]
},
{
"name": "Playdapp Network",
"chain": "PDA",
"icon": "pda",
"rpc": [
"https://subnets.avax.network/playdappne/mainnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Playdapp",
"symbol": "PDA",
"decimals": 18
},
"infoURL": "https://playdapp.io",
"shortName": "PDA",
"chainId": 504441,
"networkId": 504441,
"explorers": [
{
"name": "Playdapp Explorer",
"url": "https://subnets.avax.network/playdappne",
"standard": "EIP3091"
}
]
},
{
"name": "DoCoin Community Chain",
"title": "DoCoin Community Chain",
"chain": "DoCoin",
"rpc": [
"https://rpc.docoin.shop"
],
"faucets": [],
"nativeCurrency": {
"name": "DO",
"symbol": "DCT",
"decimals": 18
},
"infoURL": "https://docoin.network",
"shortName": "DoCoin",
"chainId": 526916,
"networkId": 526916,
"explorers": [
{
"name": "DoCoin Community Chain Explorer",
"url": "https://explorer.docoin.shop",
"standard": "EIP3091"
}
]
},
{
"name": "One World Chain Testnet",
"chain": "One World Chain",
"icon": "oneWorldChainIcon",
"rpc": [
"https://testnet-rpc.oneworldchain.org"
],
"faucets": [
"https://faucet.oneworldchain.org"
],
"nativeCurrency": {
"name": "OWCT",
"symbol": "OWCT",
"decimals": 18
},
"infoURL": "https://oneworldchain.org",
"shortName": "OWCTt",
"chainId": 552981,
"networkId": 552981,
"explorers": [
{
"name": "One World Chain Testnet Explorer",
"url": "https://testnet.oneworldchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Eclipse Testnet",
"chain": "ECLIPSE",
"rpc": [
"https://subnets.avax.network/eclipsecha/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Eclipse",
"symbol": "ECLPS",
"decimals": 18
},
"infoURL": "http://eclipsenet.io",
"shortName": "eclipset",
"chainId": 555666,
"networkId": 555666,
"explorers": [
{
"name": "ECLIPSE Explorer",
"url": "https://subnets-test.avax.network/eclipsecha",
"standard": "EIP3091"
}
]
},
{
"name": "Xai Mainnet",
"chainId": 660279,
"shortName": "xai",
"chain": "XAI",
"networkId": 660279,
"nativeCurrency": {
"name": "Xai",
"symbol": "XAI",
"decimals": 18
},
"rpc": [
"https://xai-chain.net/rpc"
],
"faucets": [],
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.xai-chain.net",
"standard": "EIP3091"
}
],
"infoURL": "https://xai.games"
},
{
"name": "Won Network",
"chainId": 686868,
"shortName": "WonChain",
"chain": "WON",
"icon": "won",
"networkId": 686868,
"nativeCurrency": {
"name": "Won",
"symbol": "WON",
"decimals": 18
},
"rpc": [
"https://rpc.wonnetwork.org"
],
"faucets": [
"https://faucet.wondollars.org"
],
"explorers": [
{
"name": "Won Explorer",
"url": "https://scan.wonnetwork.org",
"standard": "EIP3091"
}
],
"infoURL": "https://wonnetwork.org"
},
{
"name": "Galadriel Devnet",
"chain": "Galadriel",
"rpc": [
"https://devnet.galadriel.com"
],
"faucets": [
"https://docs.galadriel.com/faucet"
],
"nativeCurrency": {
"name": "Galadriel Devnet token",
"symbol": "GAL",
"decimals": 18
},
"infoURL": "https://galadriel.com",
"shortName": "galadriel-devnet",
"chainId": 696969,
"networkId": 696969,
"explorers": [
{
"name": "Galadriel Explorer",
"url": "https://explorer.galadriel.com",
"standard": "none"
}
]
},
{
"name": "Tiltyard Mainnet Subnet",
"chain": "TILTYARD",
"rpc": [
"https://subnets.avax.network/tiltyard/mainnet/rpc"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "TILT",
"symbol": "TILT",
"decimals": 18
},
"infoURL": "https://play.tiltyard.gg/",
"shortName": "tiltyardmainnet",
"chainId": 710420,
"networkId": 710420,
"explorers": [
{
"name": "TILTYARD Explorer",
"url": "https://subnets.avax.network/tiltyard",
"standard": "EIP3091"
}
]
},
{
"name": "Hemi Sepolia",
"chain": "ETH",
"rpc": [
"https://testnet.rpc.hemi.network/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://hemi.xyz",
"shortName": "hemi-sep",
"chainId": 743111,
"networkId": 743111,
"icon": "hemi",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.explorer.hemi.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
},
"status": "active"
},
{
"name": "Lamina1 Testnet",
"chain": "Lamina1 Testnet",
"rpc": [
"https://subnets.avax.network/lamina1tes/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Lamina1 Test",
"symbol": "L1T",
"decimals": 18
},
"infoURL": "https://fuji.lamina1.com/",
"shortName": "lamina1test",
"chainId": 764984,
"networkId": 764984,
"slip44": 1,
"explorers": [
{
"name": "Lamina1 Test Explorer",
"url": "https://subnets-test.avax.network/lamina1tes",
"standard": "EIP3091"
}
]
},
{
"name": "Lamina1 Identity Testnet",
"chain": "Lamina1 Identity Testnet",
"rpc": [
"https://subnets.avax.network/lamina1id/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "L1ID Test",
"symbol": "L1IDT",
"decimals": 18
},
"infoURL": "https://fuji.lamina1.com/",
"shortName": "lamina1idtest",
"chainId": 767368,
"networkId": 767368,
"slip44": 1,
"explorers": [
{
"name": "Lamina1 Identity Testnet Explorer",
"url": "https://subnets-test.avax.network/lamina1id",
"standard": "EIP3091"
}
]
},
{
"name": "BIZ Smart Chain Testnet",
"chain": "BIZT Testnet",
"rpc": [
"https://rpc-testnet.bizex.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "tBIZT",
"symbol": "tBIZT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.biztoken.io/",
"shortName": "bizt-testnet",
"chainId": 808080,
"networkId": 808080,
"slip44": 1,
"icon": "biz",
"explorers": [
{
"name": "BIZ Smart Chain Testnet Explorer",
"url": "https://testnet.btscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "zkLink Nova Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.rpc.zklink.io",
"wss://sepolia.rpc.zklink.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zklink.io",
"shortName": "zklink-nova-sepolia",
"chainId": 810181,
"networkId": 810181,
"slip44": 1,
"icon": "zklink-nova",
"explorers": [
{
"name": "zkLink Nova Block Explorer",
"url": "https://sepolia.explorer.zklink.io",
"icon": "zklink-nova",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-59141",
"bridges": [
{
"url": "https://sepolia.portal.zklink.io"
}
]
}
},
{
"name": "zkLink Nova Goerli Testnet",
"chain": "ETH",
"rpc": [
"https://goerli.rpc.zklink.io",
"wss://goerli.rpc.zklink.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zklink.io",
"shortName": "zklink-nova-goerli",
"chainId": 810182,
"networkId": 810182,
"slip44": 1,
"icon": "zklink-nova",
"explorers": [
{
"name": "zkLink Nova Block Explorer",
"url": "https://goerli.explorer.zklink.io",
"icon": "zklink-nova",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-59140",
"bridges": [
{
"url": "https://goerli.portal.zklink.io"
}
]
}
},
{
"name": "TSC Testnet",
"chain": "Trust Smart Chain Testnet",
"rpc": [
"https://testnet.tscscan.io/testrpc"
],
"faucets": [],
"nativeCurrency": {
"name": "TAS",
"symbol": "tTAS",
"decimals": 18
},
"infoURL": "https://www.trias.one",
"shortName": "tTSC",
"icon": "netx",
"chainId": 820522,
"networkId": 820025,
"explorers": [
{
"name": "tscscan",
"url": "https://testnet.tscscan.io",
"icon": "netxscan",
"standard": "none"
}
]
},
{
"name": "PRM Testnet",
"chain": "prm",
"icon": "prmIcon",
"rpc": [
"https://testnet-rpc.prmscan.org"
],
"faucets": [
"https://faucet.prmscan.org"
],
"nativeCurrency": {
"name": "Primal Network",
"symbol": "PRM",
"decimals": 18
},
"infoURL": "https://primalnetwork.org",
"shortName": "prmtest",
"chainId": 839320,
"networkId": 839320,
"explorers": [
{
"name": "Primal Network Testnet",
"url": "https://testnet-explorer.prmscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "REXX Mainnet",
"title": "REXX Mainnet",
"chain": "REXX",
"rpc": [
"https://rpc.rexxnetwork.com"
],
"faucets": [],
"nativeCurrency": {
"name": "REXX",
"symbol": "REXX",
"decimals": 18
},
"infoURL": "https://rexxnetwork.com",
"shortName": "REXX",
"chainId": 888882,
"networkId": 888882,
"explorers": [
{
"name": "REXX Mainnet Explorer",
"url": "https://rexxnetwork.com",
"standard": "EIP3091"
}
]
},
{
"name": "Forma",
"chain": "Forma",
"rpc": [
"https://rpc.forma.art"
],
"faucets": [],
"nativeCurrency": {
"name": "TIA",
"symbol": "TIA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://forma.art",
"shortName": "forma",
"chainId": 984122,
"networkId": 984122,
"icon": "forma",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.forma.art",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Forma Sketchpad",
"chain": "Forma",
"rpc": [
"https://rpc.sketchpad-1.forma.art"
],
"faucets": [],
"nativeCurrency": {
"name": "TIA",
"symbol": "TIA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://forma.art",
"shortName": "sketchpad",
"chainId": 984123,
"networkId": 984123,
"icon": "forma",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.sketchpad-1.forma.art",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Netmind Chain Testnet",
"title": "NetMind Chain Testnet",
"chain": "NetMind",
"rpc": [
"https://testblock.protago-dev.com"
],
"faucets": [],
"nativeCurrency": {
"name": "NMT",
"symbol": "NMT",
"decimals": 18
},
"infoURL": "https://netmind.ai",
"shortName": "nmtTest",
"chainId": 1100789,
"networkId": 1100789,
"icon": "netmind",
"explorers": [
{
"name": "NetMind Testnet Explorer",
"url": "https://testbrower.protago-dev.com",
"icon": "netmind",
"standard": "EIP3091"
}
]
},
{
"name": "Automata Testnet",
"chain": "Automata Testnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ata.network",
"shortName": "automatatest",
"chainId": 1398243,
"networkId": 1398243,
"icon": "automata",
"explorers": []
},
{
"name": "PlayFi Albireo Testnet",
"chain": "ETH",
"rpc": [
"https://albireo-rpc.playfi.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.playfi.ai/",
"shortName": "alberio",
"chainId": 1612127,
"networkId": 1612127,
"slip44": 1,
"explorers": [
{
"name": "PlayFi Block Explorer",
"url": "https://albireo-explorer.playfi.ai",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portal.playfi.ai/bridge"
}
]
}
},
{
"name": "SaharaAI Network",
"chain": "Sahara",
"rpc": [
"https://mainnet.saharalabs.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "SAHARA",
"symbol": "SAH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://saharalabs.ai",
"shortName": "sahara",
"chainId": 3132023,
"networkId": 3132023,
"icon": "sahara",
"explorers": []
},
{
"name": "Funki Sepolia Sandbox",
"chain": "ETH",
"icon": "funki",
"rpc": [
"https://funki-testnet.alt.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://funkichain.com",
"shortName": "funkisepolia",
"chainId": 3397901,
"networkId": 3397901,
"explorers": [
{
"name": "Funki Sepolia Sandbox Explorer",
"url": "https://sepolia-sandbox.funkichain.com",
"standard": "none"
}
]
},
{
"name": "Manta Pacific Sepolia Testnet",
"chain": "Manta Pacific",
"rpc": [
"https://pacific-rpc.sepolia-testnet.manta.network/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://manta-testnet.caldera.dev/",
"shortName": "mantaSepoliaTestnet",
"chainId": 3441006,
"networkId": 3441006,
"slip44": 1,
"icon": "manta",
"explorers": [
{
"name": "manta-testnet Explorer",
"url": "https://pacific-explorer.sepolia-testnet.manta.network",
"standard": "EIP3091"
}
]
},
{
"name": "NumBlock Chain",
"chain": "NumBlock",
"rpc": [
"https://rpc-mainnet.numblock.org"
],
"faucets": [],
"nativeCurrency": {
"name": "NUMB Token",
"symbol": "NUMB",
"decimals": 18
},
"infoURL": "https://numblock.org",
"shortName": "NUMB",
"chainId": 5112023,
"networkId": 5112023,
"icon": "NumBlock",
"explorers": [
{
"name": "NumBlock Explorer",
"url": "https://mainnet.numblock.org",
"standard": "none",
"icon": "NumBlock"
}
]
},
{
"name": "Moonchain Geneva Testnet",
"chain": "MXC zkEVM",
"icon": "mxc",
"rpc": [
"https://geneva-rpc.moonchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Moonchain Geneva Testnet",
"symbol": "MXC",
"decimals": 18
},
"infoURL": "https://doc.mxc.com/docs/intro",
"shortName": "MXC",
"chainId": 5167004,
"networkId": 5167004,
"slip44": 1,
"explorers": [
{
"name": "Moonchain Geneva Testnet",
"url": "https://geneva-explorer.moonchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Reactive Kopli",
"title": "Reactive Network Testnet Kopli",
"chain": "REACT",
"rpc": [
"https://kopli-rpc.reactive.network",
"http://kopli-rpc.rkt.ink"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://dev.reactive.network/docs/kopli-testnet#faucet"
],
"nativeCurrency": {
"name": "Kopli React",
"symbol": "REACT",
"decimals": 18
},
"infoURL": "https://reactive.network",
"shortName": "kreact",
"icon": "reactive",
"chainId": 5318008,
"networkId": 5318008,
"explorers": [
{
"name": "reactscan",
"url": "https://kopli.reactscan.net",
"standard": "none"
}
]
},
{
"name": "Astar zKyoto",
"shortName": "azkyt",
"title": "Astar zkEVM Testnet zKyoto",
"chain": "ETH",
"icon": "astarzk",
"rpc": [
"https://rpc.startale.com/zkyoto",
"https://rpc.zkyoto.gelato.digital"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://astar.network",
"chainId": 6038361,
"networkId": 6038361,
"explorers": [
{
"name": "Blockscout zKyoto explorer",
"url": "https://astar-zkyoto.blockscout.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://portal.astar.network"
},
{
"url": "https://bridge.gelato.network/bridge/astar-zkyoto"
}
]
}
},
{
"name": "Safe(AnWang) Mainnet",
"chain": "Safe(AnWang)",
"icon": "safe-anwang",
"rpc": [
"https://rpc.anwang.com"
],
"faucets": [],
"nativeCurrency": {
"name": "SAFE(AnWang)",
"symbol": "SAFE",
"decimals": 18
},
"infoURL": "https://www.anwang.com",
"shortName": "SafeMainnet",
"chainId": 6666665,
"networkId": 6666665,
"explorers": [
{
"name": "Safe(AnWang) Explorer",
"url": "http://safe4.anwang.com",
"icon": "safe-anwang",
"standard": "EIP3091"
}
]
},
{
"name": "Safe(AnWang) Testnet",
"chain": "Safe(AnWang)",
"icon": "safe-anwang",
"rpc": [
"https://rpc-testnet.anwang.com"
],
"faucets": [],
"nativeCurrency": {
"name": "SAFE(AnWang)",
"symbol": "SAFE",
"decimals": 18
},
"infoURL": "https://www.anwang.com",
"shortName": "SafeTestnet",
"chainId": 6666666,
"networkId": 6666666,
"explorers": [
{
"name": "Safe(AnWang) Testnet Explorer",
"url": "http://safe4-testnet.anwang.com",
"icon": "safe-anwang",
"standard": "EIP3091"
}
]
},
{
"name": "Waterfall 8 Test Network",
"chain": "Waterfall Testnet8",
"rpc": [
"https://rpc.testnet8.waterfall.network/"
],
"faucets": [
"https://faucet.testnet8.waterfall.network"
],
"nativeCurrency": {
"name": "WATER",
"symbol": "WATER",
"decimals": 18
},
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://waterfall.network",
"shortName": "waterfall",
"chainId": 8601152,
"networkId": 8601152,
"icon": "waterfall",
"explorers": []
},
{
"name": "ALIENX Hal Testnet",
"chain": "ALIENX Hal",
"rpc": [
"https://hal-rpc.alienxchain.io/http",
"https://hal.rpc.caldera.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://alienxchain.io/home",
"shortName": "ALIENXHal",
"chainId": 10241025,
"networkId": 10241025,
"icon": "hal",
"explorers": [
{
"name": "Hal Explorer",
"url": "https://hal-explorer.alienxchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "COTI Devnet",
"title": "COTI Devnet",
"chain": "COTI",
"icon": "coti",
"rpc": [
"https://devnet.coti.io/rpc"
],
"faucets": [
"https://faucet.coti.io"
],
"nativeCurrency": {
"name": "COTI2",
"symbol": "COTI2",
"decimals": 18
},
"infoURL": "https://coti.io/",
"shortName": "coti-devnet",
"chainId": 13068200,
"networkId": 13068200,
"explorers": [
{
"name": "coti devnet explorer",
"url": "https://explorer-devnet.coti.io",
"icon": "ethernal",
"standard": "EIP3091"
}
]
},
{
"name": "Lambda Chain Testnet",
"chain": "Lambda Chain",
"rpc": [
"https://testnrpc.lambda.im/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://lambda.im",
"shortName": "tlambda",
"chainId": 17000920,
"networkId": 17000920,
"slip44": 1,
"icon": "lambda-chain",
"explorers": [
{
"name": "Lambda Chain Testnet Explorer",
"url": "https://testscan.lambda.im",
"standard": "EIP3091"
}
]
},
{
"name": "Stability Testnet",
"chain": "stabilityTestnet",
"icon": "stabilitytestnet",
"rpc": [
"https://free.testnet.stabilityprotocol.com"
],
"faucets": [],
"nativeCurrency": {
"name": "FREE",
"symbol": "FREE",
"decimals": 18
},
"infoURL": "https://stabilityprotocol.com",
"shortName": "stabilitytestnet",
"chainId": 20180427,
"networkId": 20180427,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://stability-testnet.blockscout.com",
"standard": "EIP3091"
}
]
},
{
"name": "DeBank Sepolia Testnet",
"chain": "DeBank",
"rpc": [
"https://sepolia-rpc.testnet.debank.com"
],
"faucets": [],
"icon": "debank",
"nativeCurrency": {
"name": "DeBank USD",
"symbol": "USD",
"decimals": 18
},
"infoURL": "https://debank.com",
"shortName": "dbkse",
"chainId": 20240324,
"networkId": 20240324,
"slip44": 1,
"explorers": [
{
"name": "DeBank Chain Explorer",
"url": "https://sepolia-explorer.testnet.debank.com",
"standard": "EIP3091"
}
]
},
{
"name": "Swan Proxima Testnet",
"chain": "SWAN",
"rpc": [
"https://rpc-proxima.swanchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SWANETH",
"symbol": "sETH",
"decimals": 18
},
"infoURL": "https://swanchain.io/",
"shortName": "Proxima",
"chainId": 20241133,
"networkId": 20241133,
"explorers": [
{
"name": "Swan Proxima Chain explorer",
"url": "https://proxima-explorer.swanchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Kingdom Chain",
"chain": "KingdomChain",
"rpc": [
"https://kingdomchain.observer/rpc"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Kozi",
"symbol": "KOZI",
"decimals": 18
},
"infoURL": "https://www.beastkingdom.io/",
"shortName": "kchain",
"chainId": 39916801,
"networkId": 39916801,
"explorers": [
{
"name": "TravelSong",
"url": "https://www.beastkingdom.io/travelsong",
"standard": "EIP3091"
}
]
},
{
"name": "Autonity Bakerloo (Sumida) Testnet",
"chain": "AUT",
"rpc": [
"https://rpc1.bakerloo.autonity.org/",
"wss://rpc1.bakerloo.autonity.org/ws/"
],
"faucets": [
"https://faucet.autonity.org/"
],
"nativeCurrency": {
"name": "Bakerloo Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "bakerloo-02",
"chainId": 65010002,
"networkId": 65010002,
"slip44": 1,
"icon": "autonity",
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://bakerloo.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "Autonity Piccadilly (Sumida) Testnet",
"chain": "AUT",
"rpc": [
"https://rpc1.piccadilly.autonity.org/",
"wss://rpc1.piccadilly.autonity.org/ws/"
],
"faucets": [],
"nativeCurrency": {
"name": "Piccadilly Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "piccadilly-02",
"chainId": 65100002,
"networkId": 65100002,
"slip44": 1,
"icon": "autonity",
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://piccadilly.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "0xHash Testnet",
"chain": "HETH",
"icon": "ethereum",
"rpc": [
"https://rpc-test.0xhash.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "0xHash",
"symbol": "HETH",
"decimals": 18
},
"infoURL": "https://0xhash.io",
"shortName": "HETH",
"chainId": 77787778,
"networkId": 77787778,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://test.0xhashscan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://app.optimism.io/bridge/deposit"
}
]
}
},
{
"name": "Polygon Blackberry",
"title": "Polygon Blackberry Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.polygon-blackberry.gelato.digital",
"wss://ws.polygon-blackberry.gelato.digital"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/polygon-blackberry",
"shortName": "polygon-blackberry",
"chainId": 94204209,
"networkId": 94204209,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://polygon-blackberry.gelatoscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/polygon-blackberry"
}
]
},
"status": "active"
},
{
"name": "Oraichain Mainnet",
"title": "Oraichain Mainnet",
"chain": "Oraichain",
"rpc": [
"https://evm.orai.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Oraichain Token",
"symbol": "ORAI",
"decimals": 18
},
"infoURL": "https://orai.io",
"shortName": "Oraichain",
"chainId": 108160679,
"networkId": 108160679
},
{
"name": "Cyber Testnet",
"chain": "Cyber",
"rpc": [
"https://cyber-testnet.alt.technology/",
"wss://cyber-testnet.alt.technology/ws",
"https://rpc.testnet.cyber.co/",
"wss://rpc.testnet.cyber.co/"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "cyber",
"infoURL": "https://cyber.co/",
"shortName": "cysep",
"chainId": 111557560,
"networkId": 111557560,
"explorers": [
{
"name": "Cyber Testnet Explorer",
"url": "https://testnet.cyberscan.co",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://cyber-testnet.testnets.rollbridge.app/"
}
]
}
},
{
"name": "OP Celestia Raspberry",
"title": "OP Celestia Raspberry Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.opcelestia-raspberry.gelato.digital",
"wss://ws.opcelestia-raspberry.gelato.digital"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry",
"shortName": "opcelestia-raspberry",
"chainId": 123420111,
"networkId": 123420111,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://opcelestia-raspberry.gelatoscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/opcelestia-raspberry"
}
]
},
"status": "active"
},
{
"name": "Degen Chain",
"title": "Degen Chain",
"chain": "Degen",
"rpc": [
"https://rpc.degen.tips"
],
"faucets": [],
"nativeCurrency": {
"name": "DEGEN",
"symbol": "DEGEN",
"decimals": 18
},
"infoURL": "https://degen.tips",
"shortName": "degen-chain",
"chainId": 666666666,
"networkId": 666666666,
"status": "incubating",
"icon": "degen"
},
{
"name": "PTCESCAN Testnet",
"title": "PTCESCAN Testnet",
"chain": "PTCE",
"rpc": [
"https://rpc-testnet.ptcscan.io"
],
"faucets": [
"https://faucet.ptcscan.io/"
],
"nativeCurrency": {
"name": "PTCE",
"symbol": "PTCE",
"decimals": 18
},
"infoURL": "https://ptcscan.io",
"shortName": "PTCE",
"chainId": 889910245,
"networkId": 889910245,
"explorers": [
{
"name": "PTCESCAN Testnet Explorer",
"url": "https://explorer-testnet.ptcscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "PTCESCAN Mainnet",
"title": "PTCESCAN Mainnet",
"chain": "PTCE",
"rpc": [
"https://rpc.ptcscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "PTCE",
"symbol": "PTCE",
"decimals": 18
},
"infoURL": "https://ptcscan.io",
"shortName": "POLYTECH",
"chainId": 889910246,
"networkId": 889910246,
"explorers": [
{
"name": "PTCESCAN Explorer",
"url": "https://ptcscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "RARI Chain Mainnet",
"chain": "RARI",
"rpc": [
"https://rari.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://rarichain.org/",
"shortName": "rari-mainnet",
"chainId": 1380012617,
"networkId": 1380012617,
"explorers": [
{
"name": "rarichain-explorer",
"url": "https://mainnet.explorer.rarichain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Kakarot Sepolia",
"chain": "ETH",
"icon": "kakarot",
"rpc": [
"https://sepolia-rpc.kakarot.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kakarot.org",
"shortName": "kkrt-sepolia",
"chainId": 1802203764,
"networkId": 1802203764,
"explorers": [
{
"name": "Kakarot Scan",
"url": "https://sepolia.kakarotscan.org",
"standard": "EIP3091"
},
{
"name": "Kakarot Explorer",
"url": "https://sepolia-explorer.kakarot.org",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": []
}
},
{
"name": "RARI Chain Testnet",
"chain": "RARI",
"rpc": [
"https://testnet.rpc.rarichain.org/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://rarichain.org/",
"shortName": "rari-testnet",
"chainId": 1918988905,
"networkId": 1918988905,
"explorers": [
{
"name": "rarichain-testnet-explorer",
"url": "https://explorer.rarichain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Xai Testnet v2",
"chainId": 37714555429,
"shortName": "xaitestnet",
"chain": "XAI Testnet",
"networkId": 37714555429,
"nativeCurrency": {
"name": "sXai",
"symbol": "sXAI",
"decimals": 18
},
"rpc": [
"https://testnet-v2.xai-chain.net/rpc"
],
"faucets": [],
"explorers": [
{
"name": "Blockscout",
"url": "https://testnet-explorer-v2.xai-chain.net",
"standard": "EIP3091"
}
],
"infoURL": "https://xai.games"
},
{
"name": "Arbitrum Blueberry",
"title": "Arbitrum Blueberry Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.arb-blueberry.gelato.digital",
"wss://ws.arb-blueberry.gelato.digital"
],
"faucets": [],
"nativeCurrency": {
"name": "GelatoCGT",
"symbol": "CGT",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/arb-blueberry",
"shortName": "arb-blueberry",
"chainId": 88153591557,
"networkId": 88153591557,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://arb-blueberry.gelatoscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/arb-blueberry"
}
]
},
"status": "active"
},
{
"name": "DCHAIN Testnet",
"title": "DCHAIN Testnet",
"chain": "dchaint",
"icon": "dchaint",
"rpc": [
"https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.dchain.foundation/",
"shortName": "dchaint",
"chainId": 2713017997578000,
"networkId": 2713017997578000,
"explorers": [
{
"name": "dchaint scan",
"url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io",
"standard": "EIP3091"
}
]
},
{
"name": "DCHAIN",
"title": "DCHAIN Mainnet",
"chain": "dchainmainnet",
"icon": "dchainmainnet",
"rpc": [
"https://dchain-2716446429837000-1.jsonrpc.sagarpc.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.dchain.foundation/",
"shortName": "dchainmainnet",
"chainId": 2716446429837000,
"networkId": 2716446429837000,
"explorers": [
{
"name": "dchain scan",
"url": "https://dchain-2716446429837000-1.sagaexplorer.io",
"standard": "EIP3091"
}
]
},
{
"name": "tixoncoin Mainnet",
"chainId": 5888,
"shortName": "tixon",
"chain": "TIXON",
"network": "mainnet",
"networkId": 5888,
"nativeCurrency": {
"name": "tixoncoin",
"symbol": "TIXON",
"decimals": 18
},
"rpc": [
"http://rpc.tixoncoin.com"
],
"faucets": [],
"infoURL": "http://www.tixoncoin.net",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1721045647797.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1721045511750.png",
"color_chain_bg": "0x0000FF",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1721045671096.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1721045683750.png"
}
},
{
"name": "Matchain",
"title": "Matchain Mainnet",
"chain": "matchain",
"icon": "matchain",
"rpc": [
"https://rpc.matchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BNB",
"symbol": "BNB",
"decimals": 18
},
"infoURL": "https://www.matchain.io/",
"shortName": "matchain",
"chainId": 698,
"networkId": 698,
"explorers": [
{
"name": "Matchain scan",
"url": "https://matchscan.io",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1725341898223.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1725341881501.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0xFFA723",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1725341914873.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1725341927989.png"
}
},
{
"name": "Phecda Mainnet",
"chainId": 8188,
"shortName": "PCD",
"chain": "PCD",
"network": "mainnet",
"networkId": 8188,
"nativeCurrency": {
"name": "Phecda",
"symbol": "PCD",
"decimals": 18
},
"rpc": [
"https://rpc.pcddao.com",
"wss://rpc.pcddao.com/wss",
"https://validator-01.pcddao.com",
"https://validator-02.pcddao.com",
"https://validator-03.pcddao.com",
"https://validator-04.pcddao.com",
"https://validator-05.pcddao.com",
"https://validator-06.pcddao.com",
"https://validator-07.pcddao.com",
"https://validator-08.pcddao.com",
"https://validator-09.pcddao.com",
"https://validator-10.pcddao.com",
"https://validator-11.pcddao.com",
"https://validator-12.pcddao.com",
"https://validator-13.pcddao.com",
"https://validator-14.pcddao.com",
"https://validator-15.pcddao.com",
"https://validator-16.pcddao.com",
"https://validator-17.pcddao.com",
"https://validator-18.pcddao.com",
"https://validator-19.pcddao.com",
"https://validator-20.pcddao.com",
"https://validator-21.pcddao.com",
"https://validator-22.pcddao.com",
"https://validator-23.pcddao.com",
"https://validator-24.pcddao.com",
"https://validator-25.pcddao.com",
"https://validator-26.pcddao.com",
"https://validator-27.pcddao.com",
"https://validator-28.pcddao.com",
"https://validator-29.pcddao.com",
"https://validator-30.pcddao.com",
"https://validator-31.pcddao.com",
"https://validator-32.pcddao.com",
"https://validator-33.pcddao.com"
],
"faucets": [],
"infoURL": "https://www.pcddao.com",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1726129442644.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1726129467588.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1726129484449.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0xFFFFFF",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1726129520717.png"
},
"explorers": [
{
"name": "Phecda Chain Explorer",
"icon": "PCD",
"url": "https://pcdscan.pcddao.com",
"standard": "EIP3091"
}
]
},
{
"name": "MAK Chain",
"chainId": 69916,
"shortName": "mak",
"chain": "MAK",
"network": "mainnet",
"networkId": 69916,
"nativeCurrency": {
"name": "MAK",
"symbol": "MAK",
"decimals": 18
},
"rpc": [
"https://node.mak.top"
],
"faucets": [],
"infoURL": "https://makchain.com",
"explorers": [
{
"name": "MakScan",
"url": "https://scan.mak.top",
"standard": "EIP3091",
"icon": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1727683925035.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1727683937912.png",
"color_chain_bg": "0x000000",
"color_chain_text": "0xF8F8FF",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1727683966410.png"
}
},
{
"name": "Unichain Sepolia",
"chainId": 1301,
"shortName": "unichainsepolia",
"chain": "Unichain Sepolia",
"network": "Sepolia",
"networkId": 1301,
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1654746200716.png"
},
"rpc": [
"https://sepolia.unichain.org"
],
"faucets": [],
"infoURL": "https://www.unichain.org/",
"explorers": [
{
"name": "Unichain Sepolia Testnet Explorer",
"url": "https://sepolia.uniscan.xyz/",
"standard": "EIP3091",
"icon": "https://hk.tpstatic.net/token/tokenpocket-1728614844418.png"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1728614844418.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1728614859885.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1728614869904.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1728614883541.png"
}
},
{
"name": "World Chain",
"chainId": 480,
"shortName": "worldchain",
"chain": "World Chain",
"network": "Mainnet",
"networkId": 480,
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1654746200716.png"
},
"rpc": [
"https://worldchain-mainnet.g.alchemy.com/public"
],
"faucets": [],
"infoURL": "https://worldcoin.org/world-chain",
"explorers": [
{
"name": "World Chain explorer",
"url": "https://worldchain-mainnet.explorer.alchemy.com/",
"standard": "EIP3091",
"icon": "https://hk.tpstatic.net/token/tokenpocket-1729148431568.png"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1729148431568.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1729148819446.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1729148859843.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1729148881406.png"
}
},
{
"name": "ApeChain",
"chainId": 33139,
"shortName": "ApeChain",
"chain": "ApeChain",
"network": "mainnet",
"networkId": 33139,
"nativeCurrency": {
"name": "APE",
"symbol": "APE",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1729491264197.jpeg"
},
"rpc": [
"https://apechain.calderachain.xyz/http"
],
"infoURL": "https://apechain.com/",
"explorers": [
{
"name": "apechain explorer",
"url": "https://apechain.calderaexplorer.xyz/",
"standard": "EIP3091",
"icon": "https://hk.tpstatic.net/token/tokenpocket-1729482969925.png"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1729482969925.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1729482978504.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1729482986993.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1729482994467.png"
}
},
{
"name": "exsat",
"chainId": 7200,
"shortName": "exsat",
"chain": "exsat",
"network": "mainnet",
"networkId": 7200,
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1617347227526.png"
},
"rpc": [
"https://evm.exsat.network/"
],
"explorers": [
{
"name": "exsat explorer",
"url": "https://scan.exsat.network/",
"standard": "EIP3091"
}
]
},
{
"name": "Gravity",
"chainId": 1625,
"shortName": "gravity",
"chain": "gravity",
"network": " Alpha Mainnet",
"networkId": 1625,
"nativeCurrency": {
"name": "G",
"symbol": "G",
"decimals": 18,
"logo": "https://hk.tpstatic.net/token/tokenpocket-1730362119755.png"
},
"rpc": [
"https://rpc.gravity.xyz"
],
"explorers": [
{
"name": "Gravity Alpha Mainnet Blockchain Explorer",
"url": "https://gscan.xyz/",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1730362119755.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1730359767207.png",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1730359793402.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1730359801970.png"
}
},
{
"name": "Lumia Prism",
"chainId": 994873017,
"shortName": "Lumia",
"chain": "Lumia",
"network": "mainnet",
"networkId": 994873017,
"nativeCurrency": {
"name": "LUMIA",
"symbol": "LUMIA",
"decimals": 18
},
"rpc": [
"https://mainnet-rpc.lumia.org"
],
"explorers": [
{
"name": "Lumia explorer",
"url": "https://explorer.lumia.org/",
"standard": "EIP3091"
}
]
},
{
"name": "SlerfChain Mainnet",
"chainId": 918,
"shortName": "SlerfChain",
"chain": "SlerfChain",
"network": "mainnet",
"networkId": 918,
"nativeCurrency": {
"name": "WSlerf",
"symbol": "WSlerf",
"decimals": 18
},
"rpc": [
"https://rpc.slerfchain.xyz"
],
"explorers": [
{
"name": "slerfchain explorer",
"url": "https://scan.slerfchain.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "DuckChain",
"chainId": 5545,
"shortName": "DuckChain",
"chain": "DuckChain",
"network": "Mainnet",
"networkId": 5545,
"nativeCurrency": {
"name": "TON",
"symbol": "TON",
"decimals": 18
},
"rpc": [
"https://rpc.duckchain.io"
],
"faucets": [],
"infoURL": "https://testnet-rpc-hk.duckchain.io",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1731591999274.png",
"ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1735308219699.png",
"color_chain_bg": "0x0D0C00",
"color_chain_text": "0xFFDA00",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1735308262153.png",
"ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1735308297105.png"
}
},
{
"name": "Akashic Chain",
"chainId": 9070,
"shortName": "akc",
"chain": "Akashic",
"network": "mainnet",
"networkId": 9070,
"nativeCurrency": {
"name": "akc",
"symbol": "AKC",
"decimals": 18
},
"rpc": [
"https://rpc-mainnet.akashicrecords.io",
"https://hub-mainnet.akashicrecords.io",
"https://rpc1-mainnet.akashicrecords.io",
"https://rpc2-mainnet.akashicrecords.io",
"https://rpc3-mainnet.akashicrecords.io",
"https://rpc4-mainnet.akashicrecords.io"
],
"faucets": [],
"infoURL": "https://akashicrecords.io",
"app_resource": {
"ic_chain_select": "https://akashicrecords.io/token-pocket/icon/select.png",
"ic_chain_unselect": "https://akashicrecords.io/token-pocket/icon/deselect.png",
"color_chain_bg": "0xF83008",
"color_chain_text": "0xFFFFFF"
}
},
{
"name": "Monad Testnet",
"chainId": 10143,
"shortName": "MonadTest",
"chain": "Monad",
"network": "Testnet",
"networkId": 10143,
"nativeCurrency": {
"name": "MON",
"symbol": "MON",
"decimals": 18
},
"rpc": [
"https://testnet-rpc.monad.xyz/"
],
"faucets": [],
"infoURL": "https://testnet.monad.xyz/",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1740027432492.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1740027445030.png",
"color_chain_bg": "0x836EF9",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1740027450097.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1740027453546.png"
}
},
{
"name": "Monad Mainnet",
"chain": "MON",
"icon": "monad",
"rpc": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "MON Token",
"symbol": "MON",
"decimals": 18
},
"infoURL": "https://monad.xyz",
"shortName": "mon",
"chainId": 143,
"networkId": 143,
"slip44": 1,
"explorers": []
},
{
"name": "Sonic Mainnet",
"chain": "sonic",
"rpc": [
"https://rpc.soniclabs.com",
"https://sonic-rpc.publicnode.com",
"wss://sonic-rpc.publicnode.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Sonic",
"symbol": "S",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://soniclabs.com",
"shortName": "sonic",
"chainId": 146,
"networkId": 146,
"icon": "sonic",
"explorers": [
{
"name": "sonic",
"url": "https://explorer.soniclabs.com",
"icon": "sonic",
"standard": "none"
}
]
},
{
"name": "CO2e Ledger",
"chain": "CO2E",
"rpc": [
"https://rpc.co2ledger.xyz"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "CO2e Token",
"symbol": "CO2E",
"decimals": 18
},
"infoURL": "https://co2ledger.xyz",
"shortName": "CO2e",
"chainId": 171,
"networkId": 171,
"icon": "co2e",
"explorers": [
{
"name": "CO2e Explorer",
"url": "https://exp.co2ledger.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "OTC",
"chain": "OTC",
"faucets": [],
"icon": "otc",
"rpc": [
"https://rpc.otc.run",
"wss://rpc.otc.run"
],
"nativeCurrency": {
"name": "OTC",
"symbol": "OTC",
"decimals": 18
},
"infoURL": "https://otc.network",
"shortName": "OTC",
"chainId": 175,
"networkId": 175,
"slip44": 511
},
{
"name": "HashKey Chain",
"title": "HashKey Chain",
"chain": "HashKey Chain",
"rpc": [
"https://mainnet.hsk.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "HashKey EcoPoints",
"symbol": "HSK",
"decimals": 18
},
"infoURL": "https://hsk.xyz",
"shortName": "hsk",
"chainId": 177,
"networkId": 177,
"explorers": [
{
"name": "blockscout",
"url": "https://hashkey.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
},
{
"name": "blockscout",
"url": "https://explorer.hsk.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "ABEY Testnet",
"chain": "ABEY",
"rpc": [
"https://testrpc.abeychain.com"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [
"https://testnet-faucet.abeychain.com"
],
"nativeCurrency": {
"name": "ABEY",
"symbol": "tABEY",
"decimals": 18
},
"infoURL": "https://abey.com",
"shortName": "abeyt",
"chainId": 178,
"networkId": 178,
"explorers": [
{
"name": "abeyscan-testnet",
"url": "https://testnet.abeyscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "ABEY Mainnet",
"chain": "ABEY",
"rpc": [
"https://rpc.abeychain.com"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "ABEY",
"symbol": "ABEY",
"decimals": 18
},
"infoURL": "https://abey.com",
"shortName": "abey",
"chainId": 179,
"networkId": 179,
"explorers": [
{
"name": "abeyscan",
"url": "https://abeyscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "IOST Mainnet",
"chain": "iost",
"rpc": [
"https://iost-mainnet.alt.technology",
"wss://iost-mainnet.alt.technology/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "BNB Chain Native Token",
"symbol": "BNB",
"decimals": 18
},
"infoURL": "https://iost.io",
"shortName": "iost",
"chainId": 182,
"networkId": 182,
"icon": "bnbchain",
"slip44": 714,
"explorers": [
{
"name": "IOSTscan",
"url": "https://iost-mainnet-explorer.alt.technology",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-56",
"bridges": [
{
"url": "https://10910bc5-8382-4ef5-bdc7-4c54c8f57e75.bridges.rollbridge.app/"
}
]
}
},
{
"name": "Ethernity",
"chain": "Ethernity",
"rpc": [
"https://mainnet.ethernitychain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "ethernity",
"infoURL": "https://www.ethernity.io",
"shortName": "ethernity-mainnet",
"chainId": 183,
"networkId": 183,
"explorers": [
{
"name": "Ethernity Explorer",
"url": "https://ernscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Dojima Testnet",
"chain": "Dojima",
"rpc": [
"https://rpc-test-d11k.dojima.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Dojima",
"symbol": "DOJ",
"decimals": 18
},
"icon": "dojima",
"infoURL": "https://www.dojima.network/",
"shortName": "dojtestnet",
"chainId": 184,
"networkId": 184,
"explorers": [
{
"name": "Dojima Testnet Explorer",
"url": "https://explorer-test.dojima.network",
"standard": "none"
}
]
},
{
"name": "Dojima",
"chain": "Dojima",
"rpc": [
"https://rpc-d11k.dojima.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Dojima",
"symbol": "DOJ",
"decimals": 18
},
"icon": "dojima",
"infoURL": "https://www.dojima.network/",
"shortName": "dojima",
"chainId": 187,
"networkId": 187,
"explorers": [
{
"name": "Dojima Explorer",
"url": "https://explorer.dojima.network",
"standard": "none"
}
]
},
{
"name": "CMDAO BBQ Chain",
"chain": "Underchain 1",
"rpc": [
"https://bbqchain-rpc.commudao.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "CommuDAO",
"symbol": "CMD",
"decimals": 18
},
"infoURL": "https://commudao.xyz",
"shortName": "cmdao-bbq-chain",
"chainId": 190,
"networkId": 190,
"explorers": [
{
"name": "bbqchain-explorer",
"url": "https://bbqchain-exp.commudao.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "WowChain Mainnet",
"title": "WowChain Mainnet",
"chain": "WowChain",
"rpc": [
"https://rpc.wowchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Dogecoin",
"symbol": "DOGE",
"decimals": 18
},
"infoURL": "https://wowchain.io",
"shortName": "wow",
"chainId": 203,
"networkId": 203,
"icon": "wowchain",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.wowchain.io",
"icon": "wowchain",
"standard": "EIP3091"
}
]
},
{
"name": "EKAASH",
"chain": "EKAASH",
"rpc": [
"https://mainnet.ekaash.biz"
],
"faucets": [],
"nativeCurrency": {
"name": "Global Mobile Money Gateway",
"symbol": "$EKH",
"decimals": 18
},
"infoURL": "https://ekaash.biz",
"shortName": "ekaash",
"chainId": 205,
"networkId": 205,
"slip44": 1,
"explorers": []
},
{
"name": "Happychain Testnet",
"chainId": 216,
"networkId": 216,
"chain": "Happychain Testnet",
"rpc": [
"https://happy-testnet-sepolia.rpc.caldera.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Happy",
"symbol": "HAPPY",
"decimals": 18
},
"shortName": "happytestnet",
"infoURL": "https://happy-testnet-sepolia.hub.caldera.xyz",
"explorers": [
{
"name": "Blockscout",
"url": "https://happy-testnet-sepolia.explorer.caldera.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "BlockEx Mainnet",
"chain": "BlockEx",
"rpc": [
"https://rpc.blockex.biz"
],
"faucets": [],
"nativeCurrency": {
"name": "BlockEx",
"symbol": "XBE",
"decimals": 18
},
"infoURL": "https://blockex.biz",
"shortName": "BlockEx",
"chainId": 221,
"networkId": 221,
"explorers": [
{
"name": "BlockEx Scan",
"url": "http://explorer.blockex.biz",
"standard": "EIP3091"
}
]
},
{
"name": "Prom",
"chain": "Prom",
"icon": "prom",
"rpc": [
"https://prom-rpc.eu-north-2.gateway.fm"
],
"faucets": [],
"nativeCurrency": {
"name": "Prom",
"symbol": "PROM",
"decimals": 18
},
"infoURL": "https://prom.io",
"shortName": "PROM",
"chainId": 227,
"networkId": 227,
"explorers": [
{
"name": "blockscout",
"url": "https://prom-blockscout.eu-north-2.gateway.fm",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://prom-bridge.eu-north-2.gateway.fm/"
}
]
}
},
{
"name": "Lens",
"title": "Lens mainnet",
"chain": "Lens",
"rpc": [],
"faucets": [],
"chainId": 232,
"networkId": 232,
"nativeCurrency": {
"name": "GHO",
"symbol": "GHO",
"decimals": 18
},
"icon": "lens",
"infoURL": "https://lens.xyz",
"shortName": "lens",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
},
"explorers": []
},
{
"name": "Ethernity Testnet",
"chain": "Ethernity",
"rpc": [
"https://testnet.ethernitychain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.ethernity.io",
"shortName": "ethernity-testnet",
"chainId": 233,
"networkId": 233,
"explorers": [
{
"name": "Ethernity Testnet Explorer",
"url": "https://testnet.ernscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "TAC Mainnet",
"title": "TAC Mainnet",
"chain": "TAC",
"icon": "tac",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "TAC",
"symbol": "TAC",
"decimals": 18
},
"infoURL": "https://tac.build/",
"shortName": "tac",
"chainId": 239,
"networkId": 239,
"explorers": []
},
{
"name": "Cronos zkEVM Testnet",
"chain": "CronosZkEVMTestnet",
"rpc": [
"https://testnet.zkevm.cronos.org"
],
"faucets": [
"https://zkevm.cronos.org/faucet"
],
"nativeCurrency": {
"name": "Cronos zkEVM Test Coin",
"symbol": "zkTCRO",
"decimals": 18
},
"infoURL": "https://docs-zkevm.cronos.org",
"shortName": "zkTCRO",
"chainId": 240,
"networkId": 240,
"slip44": 1,
"explorers": [
{
"name": "Cronos zkEVM Testnet Explorer",
"url": "https://explorer.zkevm.cronos.org/testnet",
"standard": "none"
}
]
},
{
"name": "Glide L1 Protocol XP",
"chain": "GLXP",
"icon": "glide",
"rpc": [
"https://rpc-api.glideprotocol.xyz/l1-rpc/",
"wss://rpc-api.glideprotocol.xyz/l1-rpc/"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Glide XP",
"symbol": "GLXP",
"decimals": 18
},
"infoURL": "https://glideprotocol.xyz",
"shortName": "glide",
"chainId": 251,
"networkId": 251,
"slip44": 60,
"status": "active"
},
{
"name": "Glide L2 Protocol XP",
"chain": "GLXP",
"icon": "glide",
"rpc": [
"https://rpc-api.glideprotocol.xyz/l2-rpc/",
"wss://rpc-api.glideprotocol.xyz/l2-rpc/"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Glide XP",
"symbol": "GLXP",
"decimals": 18
},
"infoURL": "https://glideprotocol.xyz",
"shortName": "glidexp",
"chainId": 253,
"networkId": 253,
"explorers": [
{
"name": "glidescan",
"url": "https://blockchain-explorer.glideprotocol.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-251"
},
"status": "active"
},
{
"name": "Swan Chain Mainnet",
"chain": "SWAN",
"rpc": [
"https://mainnet-rpc.swanchain.org",
"https://mainnet-rpc-01.swanchain.org",
"https://mainnet-rpc-02.swanchain.org",
"https://mainnet-rpc-03.swanchain.org",
"https://mainnet-rpc-04.swanchain.org"
],
"faucets": [],
"icon": "swan",
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://swanchain.io/",
"shortName": "Swan",
"chainId": 254,
"networkId": 254,
"explorers": [
{
"name": "Swanchain Explorer",
"url": "https://swanscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Guru Network",
"chain": "GURU",
"icon": "GuruNetwork",
"rpc": [
"https://rpc-main.gurunetwork.ai"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Guru",
"symbol": "GURU",
"decimals": 18
},
"infoURL": "https://gurunetwork.ai",
"shortName": "guru",
"chainId": 260,
"networkId": 260,
"explorers": [
{
"name": "guruscan",
"url": "https://scan.gurunetwork.ai",
"standard": "EIP3091"
}
]
},
{
"name": "Guru Network Testnet",
"chain": "tGURU",
"icon": "GuruNetwork",
"rpc": [
"https://rpc-test.gurunetwork.ai"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://v2.dex.guru/season-pass/faucet"
],
"nativeCurrency": {
"name": "testGURU",
"symbol": "tGURU",
"decimals": 18
},
"infoURL": "https://gurunetwork.ai",
"shortName": "tguru",
"chainId": 261,
"networkId": 261,
"explorers": [
{
"name": "guruscan",
"url": "https://sepolia.gurunetwork.ai",
"standard": "EIP3091"
}
]
},
{
"name": "XR One",
"chain": "ETH",
"rpc": [
"https://xr1.calderachain.xyz/http",
"wss://xr1.calderachain.xyz/ws"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "XR1",
"symbol": "XR1",
"decimals": 18
},
"infoURL": "https://xr-one.gitbook.io",
"shortName": "xr1",
"chainId": 273,
"networkId": 273,
"icon": "xr",
"slip44": 60,
"explorers": [
{
"name": "XR One Explorer",
"url": "https://xr1.calderaexplorer.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://xr1.bridge.caldera.xyz"
}
]
},
"status": "active"
},
{
"name": "DaVinci",
"chain": "DCOIN",
"rpc": [
"https://rpc.davinci.bz"
],
"faucets": [],
"nativeCurrency": {
"name": "DaVinci",
"symbol": "DCOIN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://davinci.bz",
"shortName": "davinci",
"chainId": 293,
"networkId": 293,
"icon": "davinci",
"explorers": [
{
"name": "davinciscan",
"icon": "blockscout",
"url": "https://mainnet-explorer.davinci.bz",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "WorldEcoMoney",
"chain": "WEM",
"rpc": [
"https://rpc.wemblockchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "WEM Coin",
"symbol": "WEM",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
},
{
"name": "Smart Contracts"
},
{
"name": "Custom Gas Model"
},
{
"name": "Low-Latency Transactions"
}
],
"infoURL": "https://worldecomoney.com",
"shortName": "wem",
"chainId": 315,
"networkId": 315,
"icon": "wem",
"explorers": [
{
"name": "wemscan",
"url": "https://wemscan.com",
"icon": "wemscan",
"standard": "EIP3091"
}
]
},
{
"name": "ZKcandy Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc.zkcandy.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zkcandy.io/",
"shortName": "zkcandy",
"chainId": 320,
"networkId": 320,
"icon": "zkcandymainnet",
"explorers": [
{
"name": "ZKcandy Block Explorer",
"url": "https://explorer.zkcandy.io",
"icon": "zkcandymainnet",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.zkcandy.io/"
}
]
}
},
{
"name": "GRVT Exchange",
"chain": "ETH",
"rpc": [
"https://rpc.grvt.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://grvt.io/",
"shortName": "grvt",
"chainId": 325,
"networkId": 325,
"icon": "grvt",
"explorers": []
},
{
"name": "GRVT Exchange Testnet",
"chain": "ETH",
"rpc": [
"https://zkrpc.testnet.grvt.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://grvt.io/",
"shortName": "grvt-sepolia",
"chainId": 326,
"networkId": 326,
"icon": "grvt",
"explorers": []
},
{
"name": "Omax Testnet",
"chain": "Omax Chain",
"rpc": [
"https://testapi.omaxray.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.omaxray.com/"
],
"nativeCurrency": {
"name": "OMAX TESTCOIN",
"symbol": "OMAXT",
"decimals": 18
},
"infoURL": "https://www.omaxcoin.com/",
"shortName": "omaxt",
"chainId": 332,
"networkId": 332,
"icon": "omaxchain",
"explorers": [
{
"name": "Omax Chain Explorer",
"url": "https://testnet.omaxscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Pencils Protocol",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Pencils Protocol Token",
"symbol": "DAPP",
"decimals": 18
},
"infoURL": "https://pencilsprotocol.io/",
"shortName": "dapp",
"chainId": 339,
"networkId": 339,
"status": "incubating"
},
{
"name": "Shape",
"chain": "ETH",
"rpc": [
"https://mainnet.shape.network",
"https://shape-mainnet.g.alchemy.com/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://shape.network",
"shortName": "shape",
"chainId": 360,
"networkId": 360,
"icon": "shape",
"explorers": [
{
"name": "shapescan",
"url": "https://shapescan.xyz",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Cronos zkEVM Mainnet",
"chain": "CronosZkEVMMainnet",
"rpc": [
"https://mainnet.zkevm.cronos.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Cronos zkEVM CRO",
"symbol": "zkCRO",
"decimals": 18
},
"infoURL": "https://cronos.org/zkevm",
"shortName": "zkCRO",
"chainId": 388,
"networkId": 388,
"explorers": [
{
"name": "Cronos zkEVM (Mainnet) Chain Explorer",
"url": "https://explorer.zkevm.cronos.org",
"standard": "none"
}
]
},
{
"name": "Stenix Mainnet",
"chain": "STEN",
"rpc": [
"https://stenix.network/pub"
],
"faucets": [],
"nativeCurrency": {
"name": "Stenix",
"symbol": "STEN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://stenix.org",
"shortName": "sten",
"chainId": 425,
"networkId": 425,
"icon": "stenix",
"explorers": [
{
"name": "stenscan",
"url": "https://stenscan.com",
"icon": "stenscan",
"standard": "none"
}
]
},
{
"name": "The Widows Mite",
"chain": "MITE",
"rpc": [
"https://rpc.twmcrypto.com/"
],
"faucets": [
"https://faucet.twmcrypto.com/"
],
"nativeCurrency": {
"name": "The Widows Mite",
"symbol": "MITE",
"decimals": 8
},
"infoURL": "https://twmcrypto.com/",
"shortName": "mite",
"chainId": 426,
"networkId": 426,
"icon": "mite",
"explorers": [
{
"name": "The Widows Mite Explorer",
"url": "https://scan.twmcrypto.com",
"icon": "mite",
"standard": "EIP3091"
}
]
},
{
"name": "AppChain",
"chain": "AppChain",
"rpc": [
"https://rpc.appchain.xyz/http",
"wss://rpc.appchain.xyz/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://appchain.xyz",
"shortName": "appchain",
"chainId": 466,
"networkId": 466,
"icon": "appchain",
"explorers": [
{
"name": "AppChain Explorer",
"url": "https://explorer.appchain.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.appchain.xyz"
}
]
}
},
{
"name": "Form Network",
"title": "Form Network",
"chain": "form",
"icon": "form",
"rpc": [
"https://rpc.form.network/http",
"wss://rpc.form.network/ws"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://info.form.network",
"shortName": "formnetwork",
"chainId": 478,
"networkId": 478,
"explorers": [
{
"name": "Form Explorer",
"url": "https://explorer.form.network",
"standard": "EIP3091",
"icon": "form"
}
],
"faucets": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.form.network"
},
{
"url": "https://op-bridge.form.network"
}
]
},
"status": "active"
},
{
"name": "Standard Mainnet",
"chain": "STND",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Standard",
"symbol": "STND",
"decimals": 18
},
"infoURL": "https://standardweb3.com",
"shortName": "stnd",
"chainId": 486,
"networkId": 486,
"status": "incubating"
},
{
"name": "Landstars",
"chain": "Landstars",
"icon": "landstars",
"rpc": [
"https://13882-60301.pph-server.de"
],
"faucets": [],
"nativeCurrency": {
"name": "Landstars",
"symbol": "LDS",
"decimals": 18
},
"infoURL": "https://github.com/khalikov001/landstars-info",
"shortName": "lds",
"chainId": 495,
"networkId": 495,
"explorers": []
},
{
"name": "River",
"chain": "river",
"rpc": [
"https://mainnet.rpc.river.build",
"https://towns-mainnet.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.river.build",
"shortName": "river",
"chainId": 550,
"networkId": 550,
"icon": "river",
"explorers": [
{
"name": "River Explorer",
"url": "https://explorer.river.build",
"standard": "EIP3091"
},
{
"name": "River Caldera Explorer",
"url": "https://towns-mainnet.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Prometheuz Testnet",
"chain": "Prometheuz",
"rpc": [
"https://explorer.testnet.prometheuz.io"
],
"faucets": [
"https://faucet.testnet.prometheuz.io"
],
"nativeCurrency": {
"name": "Pyre",
"symbol": "PYRE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "",
"shortName": "prometheuz-testnet",
"chainId": 565,
"networkId": 565,
"explorers": [
{
"name": "Prometheuz Explorer",
"url": "https://explorer.testnet.prometheuz.io",
"standard": "none"
}
]
},
{
"name": "Darwin Devnet",
"chain": "Darwin",
"rpc": [
"https://devnet-rpc.darwinchain.ai"
],
"faucets": [
"https://devnet-rpc.darwinchain.ai/faucet"
],
"nativeCurrency": {
"name": "Darwin Devnet token",
"symbol": "DNA",
"decimals": 18
},
"infoURL": "https://darwinchain.ai",
"shortName": "darwin-devnet",
"chainId": 610,
"networkId": 610,
"icon": "darwin",
"explorers": [
{
"name": "Darwin Explorer",
"url": "https://explorer.darwinchain.ai",
"icon": "darwin",
"standard": "none"
}
]
},
{
"name": "Skynet",
"chain": "Skynet",
"rpc": [
"http://rpc.skynet.io"
],
"nativeCurrency": {
"name": "SkyUSD",
"symbol": "sUSD",
"decimals": 18
},
"infoURL": "http://explorer.skynet.io",
"shortName": "Skynet",
"chainId": 619,
"networkId": 619,
"explorers": [
{
"name": "tracehawk",
"url": "http://explorer.skynet.io",
"standard": "none"
}
],
"faucets": [],
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "http://bridge.skynet.io"
}
]
}
},
{
"name": "Binary Mainnet",
"chain": "The Binary Holdings",
"rpc": [
"https://rpc.zero.thebinaryholdings.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Binary Token",
"symbol": "BNRY",
"decimals": 18
},
"infoURL": "",
"shortName": "thebinaryholdings-mainnet",
"chainId": 624,
"networkId": 624,
"explorers": [
{
"name": "Tracehawk",
"url": "https://explorer.thebinaryholdings.com",
"standard": "none"
}
]
},
{
"name": "Binary Sepolia",
"chain": "The Binary Holdings",
"rpc": [
"https://rpc.testnet.thebinaryholdings.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Test BNRY",
"symbol": "BNRY",
"decimals": 18
},
"infoURL": "",
"shortName": "thebinaryholdings-sepolia",
"chainId": 625,
"networkId": 625,
"explorers": [
{
"name": "Tracehawk",
"url": "https://explorer.sepolia.thebinaryholdings.com",
"standard": "none"
}
]
},
{
"name": "NFB Chain",
"chain": "NFB Chain",
"rpc": [
"https://node.nfbchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "NFBCoin",
"symbol": "NFBC",
"decimals": 18
},
"infoURL": "https://nfbchain.com/",
"shortName": "nfbchain",
"chainId": 632,
"networkId": 632,
"explorers": [
{
"name": "NFB Chain Explorer",
"url": "https://scan.nfbchain.com",
"standard": "none"
}
]
},
{
"name": "Janction",
"chain": "Janction",
"rpc": [
"https://rpc.janction.io",
"wss://rpc.janction.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Janction",
"symbol": "JCT",
"decimals": 18
},
"infoURL": "https://janction.io",
"shortName": "janction",
"chainId": 678,
"networkId": 678,
"icon": "janction",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
}
},
{
"name": "Janction Testnet",
"chain": "Janction Testnet",
"rpc": [
"https://rpc_testnet.janction.io",
"wss://rpc_testnet.janction.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Janction",
"symbol": "JCT",
"decimals": 18
},
"infoURL": "https://janction.io",
"shortName": "janction_testnet",
"chainId": 679,
"networkId": 679,
"icon": "janction",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
}
},
{
"name": "NERO Testnet",
"chain": "NERO Chain",
"rpc": [
"https://rpc-testnet.nerochain.io",
"wss://ws-testnet.nerochain.io"
],
"faucets": [
"https://faucet-testnet.nerochain.io"
],
"nativeCurrency": {
"name": "NERO",
"symbol": "NERO",
"decimals": 18
},
"infoURL": "https://docs.nerochain.io/",
"shortName": "NEROT",
"chainId": 689,
"networkId": 689,
"slip44": 1,
"icon": "nero",
"explorers": [
{
"name": "nero testnet scan",
"url": "https://testnet.neroscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Matchain Testnet",
"chain": "Matchain",
"icon": "matchain",
"rpc": [
"https://testnet-rpc.matchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BNB",
"symbol": "BNB",
"decimals": 18
},
"infoURL": "https://www.matchain.io",
"shortName": "tMatchain",
"chainId": 699,
"networkId": 699,
"explorers": [
{
"name": "Matchscan Testnet",
"url": "https://testnet.matchscan.io",
"standard": "EIP3091",
"icon": "matchain"
}
]
},
{
"name": "Darwinia Koi Testnet",
"chain": "Darwinia Koi",
"rpc": [
"https://koi-rpc.darwinia.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Koi Network Native Token",
"symbol": "KRING",
"decimals": 18
},
"infoURL": "https://darwinia.network/",
"shortName": "darwinia-koi",
"chainId": 701,
"networkId": 701,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://koi-scan.darwinia.network",
"standard": "EIP3091"
}
]
},
{
"name": "Tucana",
"chain": "Tucana",
"title": "Tucana Testnet",
"rpc": [
"https://evm-rpc.tucana.zone",
"wss://evm-ws.tucana.zone"
],
"faucets": [],
"nativeCurrency": {
"name": "Tucana",
"symbol": "TUC",
"decimals": 18
},
"infoURL": "https://tucana.zone",
"shortName": "tuc",
"chainId": 711,
"networkId": 711,
"slip44": 1,
"icon": "tucana",
"explorers": [
{
"name": "Tucana Explorer",
"url": "https://explorer.tucana.zone",
"standard": "EIP3091"
}
]
},
{
"name": "Birdee-2",
"chain": "Tucana",
"title": "Tucana Testnet",
"rpc": [
"https://evm-rpc.birdee-2.tucana.zone",
"wss://evm-ws.birdee-2.tucana.zone"
],
"faucets": [],
"nativeCurrency": {
"name": "Tucana",
"symbol": "TUC",
"decimals": 18
},
"infoURL": "https://tucana.zone",
"shortName": "birdee-2",
"chainId": 712,
"networkId": 712,
"slip44": 1,
"icon": "tucana",
"explorers": [
{
"name": "Birdee-2 Explorer",
"url": "https://explorer.birdee-2.tucana.zone",
"standard": "EIP3091"
}
]
},
{
"name": "UXLINK ONE Mainnet",
"chain": "UXLINK ONE",
"rpc": [
"https://rpc.uxlinkone.com"
],
"faucets": [],
"nativeCurrency": {
"name": "UXLINK",
"symbol": "UXLINK",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.uxlinkone.com",
"shortName": "uxlink1",
"chainId": 718,
"networkId": 718,
"icon": "uxlinkone",
"explorers": [
{
"name": "UXLINK ONE Mainnet Explorer",
"url": "https://sepolia.uxlinkone.com",
"icon": "uxlinkone",
"standard": "EIP3091"
}
]
},
{
"name": "Tranched Mainnet",
"chain": "tranched-mainnet",
"rpc": [
"https://tranched-mainnet.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://tranched-mainnet.hub.caldera.xyz",
"shortName": "tranched-mainnet",
"chainId": 743,
"networkId": 743,
"icon": "tranched-mainnet",
"explorers": [
{
"name": "Tranched Mainnet Caldera Explorer",
"url": "https://tranched-mainnet.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Rivalz",
"chain": "rivalz",
"rpc": [
"https://rivalz.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://rivalz.hub.caldera.xyz",
"shortName": "rivalz",
"chainId": 753,
"networkId": 753,
"icon": "rivalz",
"explorers": [
{
"name": "Rivalz Caldera Explorer",
"url": "https://rivalz.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "AUTHEO Testnet",
"chain": "AUTHEO Testnet",
"rpc": [
"https://testnet-rpc1.autheo.com"
],
"faucets": [
"https://testnet-faucet.autheo.com"
],
"nativeCurrency": {
"name": "THEO",
"symbol": "THEO",
"decimals": 18
},
"infoURL": "https://autheo.com",
"shortName": "autheo-Test-Chain",
"chainId": 785,
"networkId": 785,
"explorers": [
{
"name": "tracehawk",
"url": "https://testnet-explorer.autheo.com",
"standard": "none"
}
]
},
{
"name": "Evoz Mainnet",
"chain": "Evoz",
"rpc": [
"https://rpc.evozscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Evoz Mainnet",
"symbol": "EVOZ",
"decimals": 18
},
"infoURL": "https://rpc.evozscan.com",
"shortName": "Evoz",
"chainId": 805,
"networkId": 805,
"icon": "evoz",
"explorers": [
{
"name": "evozscan",
"url": "https://evozscan.com",
"icon": "evoz",
"standard": "none"
}
]
},
{
"name": "Daily Network Mainnet",
"chain": "Daily Network",
"icon": "daily",
"rpc": [
"https://rpc.mainnet.dailycrypto.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Daily",
"symbol": "DLY",
"decimals": 18
},
"infoURL": "https://dailycrypto.net",
"shortName": "dly",
"chainId": 824,
"networkId": 824,
"explorers": [
{
"name": "Daily Mainnet Explorer",
"url": "https://explorer.mainnet.dailycrypto.net",
"standard": "none"
}
]
},
{
"name": "Daily Network Testnet",
"chain": "Daily Network",
"icon": "daily",
"rpc": [
"https://rpc.testnet.dailycrypto.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Daily",
"symbol": "DLY",
"decimals": 18
},
"infoURL": "https://dailycrypto.net",
"shortName": "tdly",
"chainId": 825,
"networkId": 825,
"explorers": [
{
"name": "Daily Testnet Explorer",
"url": "https://explorer.testnet.dailycrypto.net",
"standard": "none"
}
]
},
{
"name": "HongKong Mainnet",
"chain": "HONGKONG",
"rpc": [
"https://eth.jegotrip.net"
],
"faucets": [],
"nativeCurrency": {
"name": "HongKong",
"symbol": "HK",
"decimals": 18
},
"infoURL": "https://www.cmi.chinamobile.com/",
"shortName": "HongKong",
"chainId": 852,
"networkId": 852,
"explorers": [
{
"name": "HongKong Mainnet Explorer",
"url": "http://47.238.205.52",
"standard": "none"
}
]
},
{
"name": "Electra Network",
"chain": "Electra",
"rpc": [
"https://rpc.electranetwork.tech"
],
"faucets": [],
"nativeCurrency": {
"name": "Electra",
"symbol": "ELC",
"decimals": 18
},
"infoURL": "https://www.electranetwork.tech",
"shortName": "elc",
"chainId": 861,
"networkId": 861,
"explorers": [
{
"name": "Electra Explorer",
"url": "https://scan.electranetwork.tech",
"standard": "none"
}
]
},
{
"name": "Electra Test Network",
"chain": "Electra",
"rpc": [
"https://rpc.testnet.electranetwork.tech"
],
"faucets": [],
"nativeCurrency": {
"name": "Test Electra",
"symbol": "TELC",
"decimals": 18
},
"infoURL": "https://scan.testnet.electranetwork.tech",
"shortName": "telc",
"chainId": 871,
"networkId": 871,
"explorers": [
{
"name": "Electra Testnet Explorer",
"url": "https://scan.testnet.electranetwork.tech",
"standard": "none"
}
]
},
{
"name": "MAXI Chain Mainnet",
"chain": "MAXI",
"rpc": [
"https://rpc.maxi.network"
],
"faucets": [],
"nativeCurrency": {
"name": "MAXI GAS",
"symbol": "MGAS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://maxi.network",
"shortName": "maxi-mainnet",
"chainId": 899,
"networkId": 899,
"icon": "maxi",
"explorers": [
{
"name": "Maxi Chain Mainnet Explorer",
"url": "https://mainnet.maxi.network",
"standard": "EIP3091"
}
]
},
{
"name": "Haust Mainnet",
"title": "Haust Mainnet",
"chain": "Haust",
"rpc": [
"https://haust-network-rpc.eu-north-2.gateway.fm"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"nativeCurrency": {
"name": "HAUST",
"symbol": "HAUST",
"decimals": 18
},
"infoURL": "https://haust.network/",
"shortName": "haust",
"chainId": 938,
"networkId": 938,
"icon": "haust",
"explorers": [
{
"name": "blockscout",
"url": "https://haust-network-blockscout.eu-north-2.gateway.fm",
"icon": "haust",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://haust-network-bridge.eu-north-2.gateway.fm"
}
]
}
},
{
"name": "Subtensor EVM Testnet",
"chain": "Bittensor",
"rpc": [
"https://test.chain.opentensor.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "testTAO",
"symbol": "TAO",
"decimals": 18
},
"infoURL": "https://bittensor.com/",
"shortName": "bittensor-evm-testnet",
"chainId": 945,
"networkId": 945,
"slip44": 1005,
"icon": "bittensor",
"explorers": [
{
"name": "Subtensor EVM Explorer",
"url": "https://evm-testscan.dev.opentensor.ai",
"icon": "bittensor",
"standard": "EIP3091"
}
]
},
{
"name": "Subtensor EVM",
"chain": "Bittensor",
"rpc": [
"https://lite.chain.opentensor.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "TAO",
"symbol": "TAO",
"decimals": 18
},
"infoURL": "https://bittensor.com/",
"shortName": "bittensor-evm-mainnet",
"chainId": 964,
"networkId": 964,
"slip44": 1005,
"icon": "bittensor"
},
{
"name": "Palm Smart Chain",
"title": "Palm Smart Chain",
"chain": "Palm",
"rpc": [
"https://rpc.palmsmartchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "PALM",
"symbol": "PALM",
"decimals": 18
},
"infoURL": "https://palmsmartchain.io",
"shortName": "PalmChain",
"chainId": 973,
"networkId": 973,
"explorers": [
{
"name": "Palm Smart Chain Explorer",
"url": "https://explorer.palmsmartchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "BinaryChain Mainnet",
"chain": "BinaryChain",
"icon": "binary",
"rpc": [
"https://rpc.binarychain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "BINARY",
"symbol": "BNRY",
"decimals": 18
},
"infoURL": "https://binarychain.org",
"shortName": "binary",
"chainId": 987,
"networkId": 987,
"explorers": [
{
"name": "BinaryChain Explorer",
"url": "https://explorer.binarychain.org",
"standard": "EIP3091"
}
]
},
{
"name": "5ireChain Mainnet",
"chain": "5ireChain",
"rpc": [
"https://rpc.5ire.network"
],
"faucets": [],
"nativeCurrency": {
"name": "5ire Token",
"symbol": "5ire",
"decimals": 18
},
"infoURL": "https://5ire.org",
"shortName": "5ire",
"chainId": 995,
"networkId": 995,
"icon": "5ireChain",
"explorers": [
{
"name": "5ireChain Explorer",
"url": "https://5irescan.io",
"standard": "none",
"icon": "5ireChain"
}
]
},
{
"name": "Bifrost Polkadot Mainnet",
"chain": "Bifrost",
"rpc": [
"https://hk.p.bifrost-rpc.liebi.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Wrapped ETH",
"symbol": "WETH",
"decimals": 18
},
"infoURL": "https://bifrost.io/",
"shortName": "bnc",
"chainId": 996,
"networkId": 996,
"icon": "bifrost-polkadot"
},
{
"name": "LemonChainTestnet",
"chain": "tLEMX",
"rpc": [
"https://rpc.testnet.lemonchain.io",
"https://rpc.testnet.allthingslemon.io"
],
"faucets": [],
"nativeCurrency": {
"name": "testnet LEMX",
"symbol": "tLEMX",
"decimals": 18
},
"infoURL": "https://dapp.allthingslemon.io/home",
"shortName": "tlemx",
"chainId": 1005,
"networkId": 1005,
"explorers": []
},
{
"name": "LemonChain",
"chain": "LEMX",
"rpc": [
"https://rpc.lemonchain.io",
"https://rpc.allthingslemon.io"
],
"faucets": [],
"nativeCurrency": {
"name": "LEMX",
"symbol": "LEMX",
"decimals": 18
},
"infoURL": "https://dapp.allthingslemon.io/home",
"shortName": "lemx",
"chainId": 1006,
"networkId": 1006,
"explorers": []
},
{
"name": "BitTorrent Chain Donau",
"chain": "BTTC",
"icon": "bttc",
"rpc": [
"https://pre-rpc.bt.io"
],
"faucets": [
"https://testfaucet.bt.io"
],
"nativeCurrency": {
"name": "BitTorrent",
"symbol": "BTT",
"decimals": 18
},
"infoURL": "https://bt.io",
"shortName": "tBTT",
"chainId": 1029,
"networkId": 1029,
"slip44": 1,
"explorers": [
{
"name": "BitTorrent Chain Donau Explorer",
"url": "https://testnet.bttcscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Core Blockchain Testnet2",
"chain": "Core",
"icon": "core",
"rpc": [
"https://rpc.test2.btcs.network/"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://scan.test2.btcs.network/faucet"
],
"nativeCurrency": {
"name": "Core Blockchain Testnet2 Native Token",
"symbol": "tCORE2",
"decimals": 18
},
"infoURL": "https://www.coredao.org",
"shortName": "tcore2",
"chainId": 1114,
"networkId": 1114,
"slip44": 1,
"explorers": [
{
"name": "Core Scan Testnet2",
"url": "https://scan.test2.btcs.network",
"icon": "core",
"standard": "EIP3091"
}
]
},
{
"name": "Taker Chain Mainnet",
"chain": "Taker",
"icon": "taker",
"rpc": [
"https://rpc-mainnet.taker.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Taker",
"symbol": "TAKER",
"decimals": 18
},
"infoURL": "https://www.taker.xyz",
"shortName": "taker",
"chainId": 1125,
"networkId": 1125,
"explorers": [
{
"name": "TakerScan",
"url": "https://explorer.taker.xyz",
"icon": "taker",
"standard": "none"
}
]
},
{
"name": "Litheum Test Network",
"chain": "Litheum",
"rpc": [
"https://testnet.litheum.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Lith",
"symbol": "LTH",
"decimals": 18
},
"infoURL": "https://litheum.com",
"shortName": "lith",
"chainId": 1174,
"networkId": 1174,
"explorers": [
{
"name": "Litheum Test Network Explorer",
"url": "https://explorer.litheum.com",
"standard": "EIP3091"
}
]
},
{
"name": "Cuckoo Chain",
"title": "Cuckoo Chain",
"chain": "CuckooAI",
"icon": "cuckoo-ai",
"rpc": [
"https://mainnet-rpc.cuckoo.network",
"wss://mainnet-rpc.cuckoo.network"
],
"faucets": [],
"nativeCurrency": {
"name": "CuckooAI",
"symbol": "CAI",
"decimals": 18
},
"infoURL": "https://cuckoo.network",
"shortName": "cai",
"chainId": 1200,
"networkId": 1200,
"explorers": [
{
"name": "Cuckoo Chain Explorer",
"url": "https://scan.cuckoo.network",
"standard": "EIP3091"
}
]
},
{
"name": "Cuckoo Sepolia",
"title": "Cuckoo AI Testnet Sepolia",
"chain": "CuckooAI",
"icon": "cuckoo-ai",
"rpc": [
"https://testnet-rpc.cuckoo.network",
"wss://testnet-rpc.cuckoo.network"
],
"faucets": [
"https://cuckoo.network/portal/faucet/"
],
"nativeCurrency": {
"name": "CuckooAI",
"symbol": "CAI",
"decimals": 18
},
"infoURL": "https://cuckoo.network",
"shortName": "caisepolia",
"chainId": 1210,
"networkId": 1210,
"explorers": [
{
"name": "Cuckoo Sepolia Explorer",
"url": "https://testnet-scan.cuckoo.network",
"standard": "EIP3091"
}
]
},
{
"name": "ADF Chain Testnet",
"chain": "ADF Chain Testnet",
"icon": "addfilltest",
"rpc": [
"https://testnet.adftechnology.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "ADDFILL Testnet",
"symbol": "tADF",
"decimals": 18
},
"infoURL": "https://www.adfstarworld.com/",
"shortName": "tADF",
"chainId": 1212,
"networkId": 1212,
"explorers": [
{
"name": "ADF Testnet explorer",
"url": "https://testnet-explorer.adftechnology.com",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "ADF Chain",
"chain": "ADF Chain",
"icon": "addfillmain",
"rpc": [
"https://mainnet.adftechnology.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "ADDFILL",
"symbol": "ADF",
"decimals": 18
},
"infoURL": "https://www.adfstarworld.com/",
"shortName": "ADF",
"chainId": 1215,
"networkId": 1215,
"explorers": [
{
"name": "ADF explorer",
"url": "https://explorer.adftechnology.com",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Cycle Network Testnet Jellyfish",
"chain": "ETH",
"rpc": [
"https://jellyfish-rpc-testnet.cyclenetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.cyclenetwork.io/",
"shortName": "cyclej",
"chainId": 1223,
"networkId": 1223,
"icon": "cycle"
},
{
"name": "Hybrid Testnet",
"chain": "HYB",
"icon": "hybridIcon",
"rpc": [
"https://hybrid-testnet.rpc.caldera.xyz/http",
"wss://hybrid-testnet.rpc.caldera.xyz/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Hybrid",
"symbol": "HYB",
"decimals": 18
},
"infoURL": "https://buildonhybrid.com",
"shortName": "hyb",
"chainId": 1225,
"networkId": 1225,
"explorers": [
{
"name": "Hybrid Testnet",
"url": "https://explorer.buildonhybrid.com",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Bitcoin Protocol Testnet",
"chain": "BTCP Testnet",
"icon": "btcprotocol",
"rpc": [
"https://testnet-chain.btcprotocol.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC Protocol",
"symbol": "BTCP",
"decimals": 18
},
"infoURL": "https://btcprotocol.io/",
"shortName": "BTCP",
"chainId": 1227,
"networkId": 1227,
"explorers": [
{
"name": "BTCP explorer",
"url": "https://explorer.btcprotocol.io",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Cycle Network Testnet Cuttlefish",
"chain": "ETH",
"rpc": [
"https://cuttlefish-rpc-testnet.cyclenetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.cyclenetwork.io/",
"shortName": "cyclec",
"chainId": 1228,
"networkId": 1228,
"icon": "cycle"
},
{
"name": "ITX Mainnet",
"chain": "ITX",
"rpc": [
"https://rpc.itxchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ITX",
"symbol": "ITX",
"decimals": 18
},
"infoURL": "https://explorer.itxchain.com",
"shortName": "itx",
"chainId": 1235,
"networkId": 1235,
"explorers": [
{
"name": "ITX Mainnet Explorer (Blockscout)",
"url": "https://explorer.itxchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Metacces Testnet",
"chain": "Metacces Testnet",
"icon": "metacces",
"rpc": [
"https://tapi.accesscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Metacces",
"symbol": "ACCES",
"decimals": 18
},
"infoURL": "https://metacces.com",
"shortName": "ACCESt",
"chainId": 1260,
"networkId": 1260,
"explorers": [
{
"name": "accesscan",
"url": "https://testnet.accesscan.io",
"icon": "metacces",
"standard": "EIP3091"
}
]
},
{
"name": "Argochain Testnet",
"chain": "Argochain",
"icon": "argochain",
"rpc": [
"https://rpc-testnet.devolvedai.com",
"https://test-rpc.devolvedai.com"
],
"faucets": [
"https://faucet.argoscan.net"
],
"nativeCurrency": {
"name": "Argocoin",
"symbol": "AGC",
"decimals": 18
},
"infoURL": "https://devolvedai.com",
"shortName": "tAGC",
"chainId": 1298,
"networkId": 1298,
"explorers": [
{
"name": "Argochain Test Scanner",
"url": "https://test-scanner.devolvedai.com",
"standard": "EIP3091"
}
]
},
{
"name": "Argochain",
"chain": "Argochain",
"icon": "argochain",
"rpc": [
"https://rpc.devolvedai.com",
"https://rpc-mainnet.devolvedai.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Argocoin",
"symbol": "AGC",
"decimals": 18
},
"infoURL": "https://devolvedai.com",
"shortName": "AGC",
"chainId": 1299,
"networkId": 1299,
"explorers": [
{
"name": "Argochain Scanner",
"url": "https://scanner.argoscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Glue Mainnet",
"chain": "GLUE",
"rpc": [
"https://rpc.glue.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Glue",
"symbol": "GLUE",
"decimals": 18
},
"infoURL": "https://glue.net/",
"shortName": "glue",
"chainId": 1300,
"networkId": 1300,
"icon": "glue",
"explorers": [
{
"name": "Glue Explorer",
"url": "https://explorer.glue.net",
"icon": "glue",
"standard": "EIP3091"
}
]
},
{
"name": "COINZAX",
"chain": "ZAX",
"icon": "coinzaxIcon",
"rpc": [
"https://rpc.coinzax.com"
],
"faucets": [],
"nativeCurrency": {
"name": "COINZAX",
"symbol": "ZAX",
"decimals": 18
},
"infoURL": "https://coinzax.com",
"shortName": "zax",
"chainId": 1310,
"networkId": 1310,
"status": "active",
"explorers": [
{
"name": "COINZAX Explorer",
"url": "https://explorer.coinzax.com",
"standard": "EIP3091"
}
]
},
{
"name": "JaiHo Chain",
"chain": "JaiHoChain",
"icon": "jaihoIcon",
"rpc": [
"https://rpc.jaihochain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "JaiHo",
"symbol": "JaiHo",
"decimals": 18
},
"infoURL": "https://jaihochain.com",
"shortName": "JHC",
"chainId": 1313,
"networkId": 1313,
"explorers": [
{
"name": "JaiHo Chain Explorer",
"url": "https://jaihochain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Story Aeneid Testnet",
"chain": "Story Aeneid Testnet",
"rpc": [
"https://aeneid.storyrpc.io"
],
"faucets": [],
"nativeCurrency": {
"name": "IP Token",
"symbol": "IP",
"decimals": 18
},
"infoURL": "https://story.foundation/",
"icon": "story",
"shortName": "story-aeneid",
"chainId": 1315,
"networkId": 1315,
"explorers": [
{
"name": "blockscout",
"url": "https://aeneid.storyscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Sei Testnet",
"chain": "Sei",
"rpc": [
"https://evm-rpc-testnet.sei-apis.com",
"wss://evm-ws-testnet.sei-apis.com"
],
"faucets": [
"https://atlantic-2.app.sei.io/faucet"
],
"nativeCurrency": {
"name": "Sei",
"symbol": "SEI",
"decimals": 18
},
"infoURL": "https://www.sei.io",
"shortName": "sei-testnet",
"chainId": 1328,
"networkId": 1328,
"icon": "sei",
"explorers": [
{
"name": "Seitrace",
"url": "https://seitrace.com",
"standard": "EIP3091"
}
]
},
{
"name": "ZKBase Mainnet",
"chain": "ETH",
"rpc": [
"https://mainnet-rpc.zkbase.app"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zkbase.org/",
"shortName": "zkbase",
"chainId": 1456,
"networkId": 1456,
"slip44": 1,
"icon": "zkbase",
"explorers": [
{
"name": "ZKbase Block Explorer",
"url": "https://explorer.zkbase.app",
"icon": "zkbase",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portal.zkbase.app/"
}
]
},
"redFlags": [
"reusedChainId"
]
},
{
"name": "Story Testnet",
"chain": "Story Testnet",
"rpc": [
"https://testnet.storyrpc.io"
],
"faucets": [
"https://faucet.story.foundation"
],
"chainId": 1513,
"networkId": 1513,
"nativeCurrency": {
"name": "IP",
"symbol": "IP",
"decimals": 18
},
"infoURL": "https://www.story.foundation",
"shortName": "Story",
"explorers": [
{
"name": "Story Iliad Network explorer",
"url": "https://testnet.storyscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Story",
"chain": "STORY",
"rpc": [
"https://mainnet.storyrpc.io"
],
"faucets": [],
"nativeCurrency": {
"name": "IP Token",
"symbol": "IP",
"decimals": 18
},
"infoURL": "https://story.foundation/",
"icon": "story",
"shortName": "sty",
"chainId": 1514,
"networkId": 1514,
"explorers": [
{
"name": "blockscout",
"url": "https://mainnet.storyscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Story Odyssey Testnet",
"chain": "Story Odyssey Testnet",
"rpc": [
"https://odyssey.storyrpc.io"
],
"faucets": [],
"chainId": 1516,
"networkId": 1516,
"nativeCurrency": {
"name": "IP",
"symbol": "IP",
"decimals": 18
},
"infoURL": "https://www.story.foundation",
"shortName": "story-testnet",
"explorers": [
{
"name": "Story Odyssey Network explorer",
"url": "https://odyssey-testnet-explorer.storyscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Datacore Smart Chain",
"chain": "Datacore Smart Chain",
"icon": "dscscan",
"rpc": [
"https://rpc01.dscscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Datacore Smart Chain",
"symbol": "DSC",
"decimals": 18
},
"infoURL": "https://rpc01.dscscan.io",
"shortName": "DSCs",
"chainId": 1555,
"networkId": 1555,
"explorers": [
{
"name": "Datacore Smart Chain",
"url": "https://dscscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "StarCHAIN Testnet",
"chain": "StarCHAIN",
"rpc": [
"https://testnet-rpc1.starworksglobal.com"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "STARX",
"symbol": "STARX",
"decimals": 18
},
"infoURL": "https://www.starworksglobal.com",
"shortName": "starchain-testnet",
"chainId": 1570,
"networkId": 1570,
"explorers": [
{
"name": "StarCHAIN Explorer",
"url": "https://testnet.starchainscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "StarCHAIN",
"chain": "StarCHAIN",
"rpc": [
"https://rpc.starworksglobal.com"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "STARX",
"symbol": "STARX",
"decimals": 18
},
"infoURL": "https://www.starworksglobal.com",
"shortName": "starchain",
"chainId": 1578,
"networkId": 1578,
"explorers": [
{
"name": "StarCHAIN Explorer",
"url": "https://starchainscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Betherance",
"chain": "Beth",
"rpc": [
"https://rpc.bethscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Betherance",
"symbol": "BETH",
"decimals": 18
},
"infoURL": "https://rpc.bethscan.io",
"shortName": "Beth",
"chainId": 1605,
"networkId": 1605,
"icon": "betherance",
"explorers": [
{
"name": "bethscan",
"url": "https://bethscan.io",
"icon": "betherance",
"standard": "none"
}
]
},
{
"name": "Pivotal Mainnet",
"chainId": 1648,
"networkId": 1648,
"chain": "Pivotal",
"rpc": [
"https://mainnet.pivotalprotocol.com"
],
"faucets": [],
"shortName": "pivotal-mainnet",
"nativeCurrency": {
"name": "Pivotal ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "http://thepivotal.xyz/",
"explorers": [
{
"name": "Pivotal Scan",
"url": "https://pivotalscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "NERO Mainnet",
"chain": "NERO Chain",
"rpc": [
"https://rpc.nerochain.io",
"wss://ws.nerochain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "NERO",
"symbol": "NERO",
"decimals": 18
},
"infoURL": "https://docs.nerochain.io/",
"shortName": "NERO",
"chainId": 1689,
"networkId": 1689,
"slip44": 1,
"icon": "nero",
"explorers": [
{
"name": "nero mainnet scan",
"url": "https://www.neroscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Lif3 Chain Testnet",
"chain": "lif3chain",
"rpc": [
"https://testnet-evm.lif3.com"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "LIF3",
"symbol": "LIF3",
"decimals": 18
},
"infoURL": "https://docs.lif3.com/",
"shortName": "lif3-testnet",
"icon": "lif3",
"chainId": 1811,
"networkId": 1811,
"explorers": [
{
"name": "lif3scout",
"url": "https://testnet.lif3scout.com",
"standard": "none"
}
]
},
{
"name": "PlayBlock",
"chain": "playblock",
"rpc": [
"https://rpc.playblock.io",
"wss://ws.playblock.io"
],
"faucets": [],
"nativeCurrency": {
"name": "PlayBlock",
"symbol": "PBG",
"decimals": 18
},
"infoURL": "https://www.playnance.com",
"shortName": "playblock",
"chainId": 1829,
"slip44": 60,
"networkId": 1829,
"explorers": [
{
"name": "PlayBlock",
"url": "https://explorer.playblock.io",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/playblock"
}
]
}
},
{
"name": "Verify testnet",
"title": "Verify Testnet",
"chain": "verify-testnet",
"rpc": [
"https://rpc.verify-testnet.gelato.digital",
"wss://ws.verify-testnet.gelato.digital"
],
"nativeCurrency": {
"name": "Matic",
"symbol": "MATIC",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/verify-testnet",
"faucets": [],
"shortName": "verify-testnet",
"chainId": 1833,
"networkId": 1833,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://verify-testnet.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-80002",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/verify-testnet"
}
]
}
},
{
"name": "HighOctane Subnet",
"chain": "HighOctane Subnet",
"rpc": [
"https://subnets.avax.network/highoctane/mainnet/rpc",
"wss://subnets.avax.network/highoctane/mainnet/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "HighOctane",
"symbol": "HO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://subnets.avax.network/highoctane/details",
"shortName": "HighOctane",
"chainId": 1853,
"networkId": 1853,
"icon": "highOctane",
"explorers": [
{
"name": "HighOctane Subnet Explorer",
"url": "https://subnets.avax.network/highoctane",
"icon": "highOctane",
"standard": "EIP3091"
}
]
},
{
"name": "ReDeFi Layer 2",
"chain": "ReDeFi",
"icon": "redefi",
"rpc": [
"https://layer2.redefi.world"
],
"faucets": [],
"nativeCurrency": {
"name": "RED",
"symbol": "RED",
"decimals": 18
},
"infoURL": "https://redefi.world",
"shortName": "red",
"chainId": 1899,
"networkId": 1899,
"slip44": 1899,
"explorers": [
{
"name": "ReDeFi Scan",
"url": "https://scanlayer2.redefi.world",
"standard": "EIP3091"
}
]
},
{
"name": "Swellchain",
"chain": "ETH",
"rpc": [
"https://swell-mainnet.alt.technology",
"https://rpc.ankr.com/swell"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://app.swellnetwork.io/layer2/swell-l2",
"shortName": "swellchain",
"chainId": 1923,
"networkId": 1923,
"icon": "swell",
"explorers": [
{
"name": "Swellchain Explorer",
"url": "https://explorer.swellnetwork.io",
"standard": "none"
}
]
},
{
"name": "Swellchain Testnet",
"chain": "ETH",
"rpc": [
"https://swell-testnet.alt.technology",
"https://rpc.ankr.com/swell-testnet"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://app.swellnetwork.io/layer2/swell-l2",
"shortName": "swellchain-sep",
"chainId": 1924,
"networkId": 1924,
"icon": "swell",
"explorers": [
{
"name": "Swellchain Testnet Explorer",
"url": "https://swell-testnet-explorer.alt.technology",
"standard": "none"
}
]
},
{
"name": "Arvix Testnet",
"chain": "Arvix",
"rpc": [
"https://rpc-testnet-market.arvix.network",
"https://rpc-dev-testnet.arvix.network"
],
"faucets": [
"https://claim-faucet.arvix.network"
],
"nativeCurrency": {
"name": "Arvix Testnet Native Token",
"symbol": "tARV",
"decimals": 18
},
"infoURL": "https://arvix.network",
"shortName": "arvix",
"chainId": 1927,
"networkId": 1927,
"icon": "arvix",
"explorers": [
{
"name": "Arvix Explorer Testnet",
"url": "https://testnet.arvixscan.com",
"standard": "EIP3091",
"icon": "arvix"
}
]
},
{
"name": "Soneium Testnet Minato",
"shortName": "soneium-minato",
"title": "Soneium Testnet Minato",
"chain": "ETH",
"icon": "minato",
"rpc": [
"https://rpc.minato.soneium.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://soneium.org",
"chainId": 1946,
"networkId": 1946,
"explorers": [
{
"name": "Blockscout Minato explorer",
"url": "https://soneium-minato.blockscout.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.soneium.org/testnet"
}
]
}
},
{
"name": "Bionix Testnet",
"chain": "Bionix",
"rpc": [
"https://testnet-chain.bionixnetwork.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bionix",
"symbol": "tBIO",
"decimals": 18
},
"icon": "bionix",
"infoURL": "https://bionixnetwork.com",
"shortName": "tbio",
"chainId": 1949,
"networkId": 1949,
"explorers": [
{
"name": "Bionix Testnet Explorer",
"url": "https://testnet.bionixnetwork.com",
"standard": "none"
}
]
},
{
"name": "Lydia Coin",
"chain": "LYDIA",
"rpc": [
"https://rpc.lydiacoins.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Lydia Coin",
"symbol": "BSW",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/lydia-coin",
"shortName": "lydia",
"chainId": 1989,
"networkId": 1989
},
{
"name": "B3 Sepolia Testnet",
"chain": "B3 Sepolia Testnet",
"icon": "b3",
"rpc": [
"https://sepolia.b3.fun"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://b3.fun",
"shortName": "b3-sepolia",
"chainId": 1993,
"networkId": 1993,
"explorers": [
{
"name": "Blockscout",
"url": "https://sepolia.explorer.b3.fun",
"standard": "EIP3091"
}
]
},
{
"name": "Kyoto",
"chain": "KYOTO",
"rpc": [
"https://rpc.kyotochain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Kyoto",
"symbol": "KYOTO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://kyotoprotocol.io",
"shortName": "kyoto",
"chainId": 1997,
"networkId": 1997,
"slip44": 1,
"explorers": [
{
"name": "Kyotoscan",
"url": "https://kyotoscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "MetaLink Network",
"chain": "MetaLink",
"rpc": [
"http://77.237.237.69:9933"
],
"icon": "metaLink",
"faucets": [],
"shortName": "mtl",
"nativeCurrency": {
"name": "MetaLink",
"symbol": "MTL",
"decimals": 18
},
"infoURL": "http://totwo3.com:3000",
"chainId": 2004,
"networkId": 2004,
"explorers": [
{
"name": "MetaScan",
"url": "http://twoto3.com:3000",
"standard": "none"
}
]
},
{
"name": "Metacces Mainnet",
"chain": "Metacces Mainnet",
"icon": "metacces",
"rpc": [
"https://oli.accesscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Metacces",
"symbol": "ACCES",
"decimals": 18
},
"infoURL": "https://metacces.com",
"shortName": "ACCES",
"chainId": 2071,
"networkId": 2071,
"explorers": [
{
"name": "accesscan",
"url": "https://accesscan.io",
"icon": "metacces",
"standard": "EIP3091"
}
]
},
{
"name": "Animechain Testnet",
"chain": "Animechain",
"rpc": [
"https://rpc.kanda.animechain.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "Coin",
"symbol": "COIN",
"decimals": 18
},
"infoURL": "https://animechain.ai",
"shortName": "animechaint",
"chainId": 2162,
"networkId": 2162,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.kanda.animechain.ai",
"standard": "EIP3091"
}
]
},
{
"name": "Game7",
"title": "Game7",
"chain": "Game7",
"rpc": [
"https://mainnet-rpc.game7.io",
"wss://mainnet-rpc.game7.io"
],
"faucets": [],
"nativeCurrency": {
"name": "G7",
"symbol": "G7",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://game7.io/",
"shortName": "g7",
"chainId": 2187,
"networkId": 2187,
"icon": "game7",
"explorers": [
{
"name": "Blockscout",
"url": "https://mainnet.game7.io",
"icon": "game7",
"standard": "EIP3091"
}
]
},
{
"name": "SnaxChain",
"chain": "ETH",
"rpc": [
"https://mainnet.snaxchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://synthetix.io",
"shortName": "snax",
"chainId": 2192,
"networkId": 2192,
"icon": "snax",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.snaxchain.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "CratD2C",
"chain": "CRATD2C",
"rpc": [
"https://node1.cratd2csmartchain.io",
"https://node2.cratd2csmartchain.io",
"https://node3.cratd2csmartchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "CRATD2C",
"symbol": "CRAT",
"decimals": 18
},
"infoURL": "https://cratd2csmartchain.io",
"shortName": "cratd2c",
"chainId": 2310,
"networkId": 2310,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.cratd2csmartchain.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Chronicle Vesuvius - Lit Protocol Testnet",
"chain": "LPV",
"icon": "lit",
"rpc": [
"https://vesuvius-rpc.litprotocol.com"
],
"faucets": [
"https://developer.litprotocol.com/support/intro"
],
"nativeCurrency": {
"name": "Test LPX",
"symbol": "tstLPX",
"decimals": 18
},
"infoURL": "https://litprotocol.com",
"shortName": "lpv",
"chainId": 2311,
"networkId": 2311,
"explorers": [
{
"name": "Lit Chronicle Vesuvius Explorer",
"url": "https://vesuvius-explorer.litprotocol.com",
"icon": "lit",
"standard": "EIP3091"
}
]
},
{
"name": "GOAT Network",
"title": "GOAT Network",
"chain": "GOAT",
"rpc": [
"https://rpc.goat.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://www.goat.network",
"shortName": "goat",
"chainId": 2345,
"networkId": 2345,
"icon": "goat",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.goat.network",
"standard": "EIP3091"
}
]
},
{
"name": "KiteAI Testnet",
"chain": "KiteAI",
"icon": "kite",
"rpc": [
"https://rpc-testnet.gokite.ai"
],
"faucets": [
"https://faucet.gokite.ai/"
],
"nativeCurrency": {
"name": "Kite",
"symbol": "KITE",
"decimals": 18
},
"infoURL": "https://gokite.ai/",
"shortName": "KiteAI",
"chainId": 2368,
"networkId": 1,
"slip44": 1,
"explorers": [
{
"name": "Kitescan",
"url": "https://testnet.kitescan.ai",
"standard": "EIP3091"
}
]
},
{
"name": "TAC Turin",
"title": "TAC Testnet Turin",
"chain": "TAC",
"icon": "tactestnet",
"rpc": [
"https://turin.rpc.tac.build",
"https://rpc.ankr.com/tac_turin",
"https://turin-ws.rpc.tac.build"
],
"faucets": [
"https://turin.faucet.tac.build/"
],
"nativeCurrency": {
"name": "TAC",
"symbol": "TAC",
"decimals": 18
},
"infoURL": "https://tac.build/",
"shortName": "tacchain_2390-1",
"chainId": 2390,
"networkId": 2390,
"slip44": 1,
"explorers": [
{
"name": "TAC Turin Blockscout",
"url": "https://turin.explorer.tac.build",
"standard": "EIP3091"
}
]
},
{
"name": "Rufus",
"chain": "rufus",
"rpc": [
"https://rufus.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Dogelon",
"symbol": "ELON",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://rufus.hub.caldera.xyz",
"shortName": "rufus",
"chainId": 2420,
"networkId": 2420,
"icon": "rufus",
"explorers": [
{
"name": "Rufus Caldera Explorer",
"url": "https://rufus.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "inEVM Testnet",
"chain": "inEVM testnet",
"icon": "inevm",
"rpc": [
"https://testnet.rpc.inevm.com/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Injective",
"symbol": "INJ",
"decimals": 18
},
"infoURL": "https://inevm.com",
"shortName": "inevm-testnet",
"chainId": 2424,
"networkId": 2424,
"explorers": [],
"status": "active"
},
{
"name": "Standard Testnet",
"chain": "STND Testnet",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Standard",
"symbol": "STND",
"decimals": 18
},
"infoURL": "https://standardweb3.com",
"shortName": "stndtestnet",
"chainId": 2426,
"networkId": 2426,
"status": "incubating"
},
{
"name": "6Degree of Outreach",
"chain": "6DO",
"rpc": [
"https://rpc.6do.world"
],
"faucets": [],
"nativeCurrency": {
"name": "6Degree Coin",
"symbol": "6DO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://6do.world",
"shortName": "6do",
"chainId": 2477,
"networkId": 2477,
"icon": "6do",
"explorers": [
{
"name": "6Degree Chain Explorer",
"url": "https://explorer.6do.world",
"standard": "EIP3091"
}
]
},
{
"name": "NOW Chain Mainnet",
"chain": "NOW",
"icon": "nowchain",
"rpc": [
"https://rpc.nowscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "NOW Coin",
"symbol": "NOW",
"decimals": 18
},
"infoURL": "https://nowchain.co",
"shortName": "now",
"chainId": 2488,
"networkId": 2488,
"explorers": [
{
"name": "NOW Scan",
"url": "https://nowscan.io",
"icon": "nowchain",
"standard": "EIP3091"
}
]
},
{
"name": "K2 Testnet",
"chain": "K2",
"icon": "karak",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://karak.network",
"shortName": "K2-testnet",
"chainId": 2512,
"networkId": 2512,
"status": "incubating"
},
{
"name": "Bahamut horizon",
"title": "Bahamut horizon",
"chain": "Bahamut",
"icon": "bahamut",
"rpc": [
"https://horizon-fastex-testnet.zeeve.net"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "FTN",
"symbol": "FTN",
"decimals": 18
},
"shortName": "horizon",
"infoURL": "https://bahamut.io",
"chainId": 2552,
"networkId": 2552,
"explorers": [
{
"name": "blockscout",
"url": "https://horizon.ftnscan.com",
"standard": "none"
}
]
},
{
"name": "Pho Blockchain Mainnet",
"chain": "PHO",
"icon": "pho",
"rpc": [
"https://mainnet.phochain.org"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Pho",
"symbol": "PHO",
"decimals": 18
},
"infoURL": "phochain.org",
"shortName": "pho",
"chainId": 2605,
"networkId": 2605,
"explorers": [
{
"name": "Pho Scan",
"url": "https://phoscan.org",
"standard": "EIP3091",
"icon": "pho"
}
]
},
{
"name": "AILayer Testnet",
"chain": "AILayer",
"rpc": [
"https://testnet-rpc.ailayer.xyz",
"wss://testnet-rpc.ailayer.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://ailayer.xyz/",
"shortName": "ailayer-testnet",
"chainId": 2648,
"networkId": 2648,
"icon": "ailayer",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-explorer.ailayer.xyz",
"icon": "ailayer",
"standard": "EIP3091"
}
]
},
{
"name": "AILayer Mainnet",
"chain": "AILayer",
"rpc": [
"https://mainnet-rpc.ailayer.xyz",
"wss://mainnet-rpc.ailayer.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://ailayer.xyz/",
"shortName": "ailayer-mainnet",
"chainId": 2649,
"networkId": 2649,
"icon": "ailayer",
"explorers": [
{
"name": "blockscout",
"url": "https://mainnet-explorer.ailayer.xyz",
"icon": "ailayer",
"standard": "EIP3091"
}
]
},
{
"name": "Abstract",
"chain": "Abstract",
"rpc": [
"https://api.mainnet.abs.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://abs.xyz",
"shortName": "abstract",
"chainId": 2741,
"networkId": 2741,
"icon": "abstract",
"explorers": [
{
"name": "Etherscan",
"url": "https://abscan.org",
"standard": "EIP3091"
},
{
"name": "Abstract Explorer",
"url": "https://explorer.mainnet.abs.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portal.mainnet.abs.xyz/bridge"
}
]
}
},
{
"name": "HyperAGI Mainnet",
"chain": "HyperAGI",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Hyperdust",
"symbol": "HYPT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://hyperagi.network",
"shortName": "hypt",
"chainId": 2868,
"networkId": 1,
"explorers": [
{
"name": "hyptscan",
"url": "https://block.hyperagi.network",
"standard": "EIP3091"
}
]
},
{
"name": "Chips Network",
"chain": "CHIPS",
"rpc": [
"https://node.chips.ooo/wasp/api/v1/chains/iota1pp3d3mnap3ufmgqnjsnw344sqmf5svjh26y2khnmc89sv6788y3r207a8fn/evm"
],
"faucets": [],
"nativeCurrency": {
"name": "IOTA",
"symbol": "IOTA",
"decimals": 18
},
"infoURL": "https://www.chips.ooo",
"shortName": "chips",
"chainId": 2882,
"networkId": 2882
},
{
"name": "Aarma Mainnet",
"chain": "Aarma",
"rpc": [
"https://aarmarpc.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Aarma",
"symbol": "ARMA",
"decimals": 18
},
"infoURL": "https://aarmachain.com",
"shortName": "ARMA",
"chainId": 2889,
"networkId": 2889,
"icon": "arma",
"explorers": [
{
"name": "aarmascan",
"url": "https://aarmascan.com",
"icon": "arma",
"standard": "none"
}
]
},
{
"name": "BC Hyper Chain Mainnet",
"chain": "BC Hyper Chain",
"rpc": [
"https://mainapi.bchscan.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "VERSATIZE COIN",
"symbol": "VTCN",
"decimals": 18
},
"infoURL": "https://www.versatizecoin.com/",
"shortName": "BCHYPER",
"chainId": 3030,
"networkId": 3030,
"icon": "bchyper",
"explorers": [
{
"name": "bcexplorer mainnet",
"url": "https://mainnet.bchscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "XL Network Testnet",
"chain": "XL Network Testnet",
"rpc": [
"https://subnets.avax.network/xlnetworkt/testnet/rpc",
"wss://subnets.avax.network/xlnetworkt/testnet/ws"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "XLNetwork",
"symbol": "XLN",
"decimals": 18
},
"infoURL": "https://www.nysl.io/",
"shortName": "nysl",
"icon": "nysl",
"chainId": 3084,
"networkId": 3084,
"explorers": [
{
"name": "XL Network Explorer",
"url": "https://subnets-test.avax.network/xlnetworkt",
"standard": "EIP3091"
}
]
},
{
"name": "EthStorage L2 Mainnet",
"chain": "EthStorage",
"rpc": [
"http://mainnet.l2.ethstorage.io:9540"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ethstorage.io/",
"shortName": "esl2-m",
"chainId": 3332,
"networkId": 3332,
"slip44": 1,
"status": "incubating",
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "EthStorage L2 Testnet",
"chain": "EthStorage",
"rpc": [
"http://testnet.l2.ethstorage.io:9540"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ethstorage.io/",
"shortName": "esl2-t",
"chainId": 3336,
"networkId": 3336,
"slip44": 1,
"status": "incubating",
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "EthStorage Devnet",
"chain": "EthStorage",
"rpc": [
"http://devnet.ethstorage.io:9540"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ethstorage.io/",
"shortName": "es-d",
"chainId": 3337,
"networkId": 3337,
"slip44": 1,
"status": "incubating"
},
{
"name": "peaq",
"chain": "peaq",
"icon": "peaq",
"rpc": [
"https://peaq.api.onfinality.io/public",
"https://peaq-rpc.dwellir.com",
"https://peaq-rpc.publicnode.com",
"https://evm.peaq.network",
"https://responsive-powerful-mansion.peaq-mainnet.quiknode.pro/29963d0a2deee01a20b091926b08d68db12bc68b"
],
"faucets": [],
"nativeCurrency": {
"name": "peaq",
"symbol": "PEAQ",
"decimals": 18
},
"infoURL": "https://www.peaq.network",
"shortName": "PEAQ",
"chainId": 3338,
"networkId": 3338,
"explorers": [
{
"name": "Subscan",
"url": "https://peaq.subscan.io",
"standard": "none"
}
]
},
{
"name": "EthStorage Mainnet",
"chain": "EthStorage",
"rpc": [
"http://mainnet.ethstorage.io:9540"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ethstorage.io/",
"shortName": "es-m",
"chainId": 3339,
"networkId": 3339,
"slip44": 1,
"status": "incubating"
},
{
"name": "Meroneum",
"chain": "MERON",
"icon": "meron",
"rpc": [
"https://mainnet-node1.meronscan.ai/",
"https://mainnet-node2.meronscan.ai/",
"https://mainnet-node3.meronscan.ai/"
],
"faucets": [],
"nativeCurrency": {
"name": "MERON",
"symbol": "MERON",
"decimals": 18
},
"infoURL": "https://www.meroneum.ai",
"shortName": "meron-testnet",
"chainId": 3366,
"networkId": 3366,
"explorers": [
{
"name": "meronscan",
"url": "https://meronscan.ai",
"standard": "EIP3091"
}
]
},
{
"name": "Meroneum Testnet",
"chain": "MERON",
"icon": "meron",
"rpc": [
"https://testnet-node1.meronscan.ai/",
"https://testnet-node2.meronscan.ai/",
"https://testnet-node3.meronscan.ai/"
],
"faucets": [],
"nativeCurrency": {
"name": "MERON",
"symbol": "MERON",
"decimals": 18
},
"infoURL": "https://www.meroneum.ai/",
"shortName": "meron",
"chainId": 3369,
"networkId": 3369,
"explorers": [
{
"name": "meronscan",
"url": "https://testnet.meronscan.ai",
"standard": "EIP3091"
}
]
},
{
"name": "LayerEdge testnet",
"chain": "LayerEdge",
"rpc": [
"https://testnet-rpc.layeredge.io"
],
"faucets": [
"https://testnet-faucet.layeredge.io"
],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://www.layeredge.io",
"shortName": "LayerEdge-testnet",
"chainId": 3456,
"networkId": 3456,
"icon": "layerEdge",
"explorers": [
{
"name": "LayerEdge Testnet Explorer",
"url": "https://testnet-explorer.layeredge.io",
"icon": "layerEdge",
"standard": "EIP3091"
}
]
},
{
"name": "GTCSCAN",
"chain": "GTC",
"icon": "gtc",
"rpc": [
"https://gtc-dataseed.gtcscan.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "GTC",
"symbol": "GTC",
"decimals": 18
},
"infoURL": "https://gtcscan.io/",
"shortName": "gtc",
"chainId": 3490,
"networkId": 3490,
"slip44": 1,
"explorers": [
{
"name": "GTCScan Explorer",
"url": "https://gtcscan.io",
"standard": "none",
"icon": "gtc"
}
]
},
{
"name": "JFINPOS",
"chain": "JFINPOS",
"icon": "jfinpos",
"rpc": [
"https://rpc.jfinpos.com"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "JFINPOS",
"symbol": "JPOS",
"decimals": 18
},
"infoURL": "https://jfinpos.com",
"shortName": "jzero",
"chainId": 3502,
"networkId": 3502,
"explorers": [
{
"name": "JFINPOS Explorer",
"url": "https://exp.jfinpos.com",
"icon": "jfinpos",
"standard": "EIP3091"
}
]
},
{
"name": "iChain Testnet",
"chain": "iChain Testnet",
"icon": "iChain",
"rpc": [
"https://istanbul.ichainscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ISLAMICOIN",
"symbol": "ISLAMI",
"decimals": 18
},
"infoURL": "https://islamicoin.finance",
"shortName": "ISLAMIT",
"chainId": 3645,
"networkId": 3645,
"explorers": [
{
"name": "iChainscan",
"url": "https://test.ichainscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Xone Mainnet",
"chain": "XOC",
"icon": "Xonechain",
"rpc": [
"https://rpc.xone.org"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.xone.org/"
],
"nativeCurrency": {
"name": "Xone Coin",
"symbol": "XOC",
"decimals": 18
},
"infoURL": "https://xone.org",
"shortName": "XOC",
"chainId": 3721,
"networkId": 3721,
"explorers": [
{
"name": "Xonescan",
"url": "https://xscscan.com",
"icon": "Xonescan",
"standard": "EIP3091"
}
]
},
{
"name": "PayNetwork Mainnet",
"chain": "paynetwork",
"rpc": [
"https://rpc.paynetwork.io",
"https://paynetwork-main.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "PayNetwork",
"symbol": "Pay",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://paynetwork-main.hub.caldera.xyz",
"shortName": "paynetwork",
"chainId": 3969,
"networkId": 3969,
"icon": "paynetwork",
"explorers": [
{
"name": "PayNetwork Mainnet Caldera Explorer",
"url": "https://paynetwork-main.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Bahamut ocean",
"title": "Bahamut ocean",
"chain": "Bahamut",
"icon": "bahamut",
"rpc": [
"https://rpc1.ocean.bahamutchain.com"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "FTN",
"symbol": "FTN",
"decimals": 18
},
"shortName": "ocean",
"infoURL": "https://bahamut.io",
"chainId": 4058,
"networkId": 4058,
"explorers": [
{
"name": "blockscout",
"url": "https://ocean.ftnscan.com",
"standard": "none"
}
]
},
{
"name": "Zeroth Mainnet",
"chain": "ZRH",
"icon": "zeroth",
"rpc": [
"https://my.zeroth.run"
],
"faucets": [],
"nativeCurrency": {
"name": "ZRH",
"symbol": "ZRH",
"decimals": 18
},
"infoURL": "https://www.zeroth.foundation",
"shortName": "ZRH",
"chainId": 4088,
"networkId": 4088,
"explorers": [
{
"name": "Zeroth Explorer",
"url": "https://scan.zeroth.run",
"icon": "zeroth",
"standard": "EIP3091"
}
]
},
{
"name": "CrossFi Mainnet",
"icon": "crossfi",
"chain": "crossfi",
"rpc": [
"https://rpc.mainnet.ms/"
],
"faucets": [],
"nativeCurrency": {
"name": "CrossFi Token",
"symbol": "XFI",
"decimals": 18
},
"infoURL": "https://crossfi.org",
"shortName": "crossfi",
"chainId": 4158,
"networkId": 4158,
"slip44": 1,
"explorers": [
{
"name": "CrossFi Mainnet Scan",
"url": "https://xfiscan.com",
"standard": "none"
}
]
},
{
"name": "SX Rollup",
"chain": "SX",
"icon": "SX",
"rpc": [
"https://rpc.sx-rollup.gelato.digital"
],
"faucets": [],
"nativeCurrency": {
"name": "SX Network",
"symbol": "SX",
"decimals": 18
},
"infoURL": "https://www.sx.technology",
"shortName": "SXR",
"chainId": 4162,
"networkId": 4162,
"explorers": [
{
"name": "SX L2 Explorer",
"url": "https://explorerl2.sx.technology",
"standard": "EIP3091",
"icon": "SX"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "Merlin Erigon Testnet",
"title": "Merlin Erigon Testnet",
"chain": "Merlin",
"rpc": [
"https://testnet-erigon-rpc.merlinchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://merlinchain.io",
"shortName": "Merlin-Testnet",
"chainId": 4203,
"networkId": 4203,
"icon": "merlin",
"explorers": [
{
"name": "L2scan",
"url": "https://testnet-erigon-scan.merlinchain.io",
"icon": "merlin",
"standard": "EIP3091"
}
]
},
{
"name": "Laika Testnet",
"chain": "LAIKA",
"rpc": [
"https://testnetrpc1.laikachain.dog"
],
"faucets": [
"https://laikachain.dog/faucets"
],
"nativeCurrency": {
"name": "Dogecoin",
"symbol": "DOGE",
"decimals": 18
},
"infoURL": "https://laikachain.dog",
"shortName": "laika-testnet",
"chainId": 4269,
"networkId": 4269,
"icon": "laika",
"explorers": [
{
"name": "Laika Testnet Explorer",
"url": "https://testnet.laikachain.dog",
"standard": "EIP3091"
}
]
},
{
"name": "Echos Chain",
"chain": "Echos",
"rpc": [
"https://rpc-echos-mainnet-0.t.conduit.xyz"
],
"features": [],
"faucets": [],
"nativeCurrency": {
"name": "USD Coin",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://www.echos.fun/",
"shortName": "echos",
"chainId": 4321,
"networkId": 4321,
"explorers": [
{
"name": "Echos Explorer",
"url": "https://explorer.echos.fun",
"standard": "none"
}
]
},
{
"name": "MemeCore",
"title": "MemeCore",
"chain": "MemeCore",
"icon": "memecore",
"rpc": [
"https://rpc.memecore.net",
"wss://ws.memecore.net"
],
"nativeCurrency": {
"name": "M",
"symbol": "M",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"infoURL": "https://memecore.com",
"shortName": "m",
"chainId": 4352,
"networkId": 4352,
"explorers": [
{
"name": "OKX-MemeCore",
"url": "https://www.okx.com/web3/explorer/memecore",
"standard": "EIP3091"
},
{
"name": "MemeCoreScan",
"url": "https://memecorescan.io",
"standard": "EIP3091"
},
{
"name": "MemeCore explorer",
"url": "https://blockscout.memecore.com",
"standard": "EIP3091"
}
]
},
{
"name": "Testnet Pika",
"chain": "tPKA",
"rpc": [
"https://testnet-rpc1.pikascan.com"
],
"faucets": [],
"icon": "testnetpsc",
"nativeCurrency": {
"name": "Testnet Pika",
"symbol": "tPKA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://pikaminter.com",
"shortName": "PikaMinter",
"chainId": 4422,
"networkId": 4422,
"explorers": []
},
{
"name": "Emoney Network Mainnet",
"chain": "Emoney",
"rpc": [
"https://rpc-publicnode.emoney.io/",
"https://public-node1-rpc.emoney.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Emoney Coin",
"symbol": "EMYC",
"decimals": 18
},
"infoURL": "https://emoney.io/",
"shortName": "emoney",
"chainId": 4545,
"networkId": 4545,
"icon": "emoney",
"explorers": [
{
"name": "EMoney Explorer",
"url": "https://explore.emoney.network",
"icon": "emoney",
"standard": "none"
}
]
},
{
"name": "MST Chain",
"title": "MST Chain",
"chain": "MST",
"rpc": [
"https://mariorpc.mstblockchain.com",
"https://craftrpc.mstblockchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "MST",
"symbol": "MST",
"decimals": 18
},
"infoURL": "https://mstblockchain.com",
"shortName": "mst",
"chainId": 4646,
"networkId": 4646,
"slip44": 4646,
"icon": "mst",
"explorers": [
{
"name": "MST Mainnet Scan",
"url": "https://mstscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "AppChain Testnet",
"chain": "AppChain Testnet",
"rpc": [
"https://appchaintestnet.rpc.caldera.xyz/http",
"wss://appchaintestnet.rpc.caldera.xyz/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://appchain.xyz",
"shortName": "appchaintestnet",
"chainId": 4661,
"networkId": 4661,
"icon": "appchain",
"explorers": [
{
"name": "AppChain Testnet Explorer",
"url": "https://appchaintestnet.explorer.caldera.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://appchaintestnet.bridge.caldera.xyz"
}
]
}
},
{
"name": "Evnode Testnet",
"chain": "Evnode",
"rpc": [
"https://rpc-testnet.evnode.org/"
],
"faucets": [
"https://faucet.evnode.org"
],
"nativeCurrency": {
"name": "Evnode Testnet Native Token",
"symbol": "tEVO",
"decimals": 18
},
"infoURL": "https://evnode.org",
"shortName": "evnode",
"chainId": 4786,
"networkId": 4786,
"icon": "evnode",
"explorers": [
{
"name": "Evnode Explorer Testnet",
"url": "https://testnet.evscan.net",
"standard": "EIP3091",
"icon": "evnode"
}
]
},
{
"name": "World Chain Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://worldchain-sepolia.g.alchemy.com/public",
"https://4801.rpc.thirdweb.com",
"https://worldchain-sepolia.gateway.tenderly.co",
"wss://worldchain-sepolia.gateway.tenderly.co"
],
"faucets": [
"https://www.alchemy.com/faucets/world-chain-sepolia",
"https://console.optimism.io/faucet"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://world.org/world-chain",
"shortName": "wcsep",
"chainId": 4801,
"networkId": 4801,
"slip44": 1,
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://worldchain-sepolia.bridge.alchemy.com"
}
]
},
"explorers": [
{
"name": "etherscan",
"url": "https://sepolia.worldscan.org",
"standard": "EIP3091"
},
{
"name": "blockscout",
"url": "https://worldchain-sepolia.explorer.alchemy.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "OEV Network",
"chain": "oev-network",
"rpc": [
"https://oev.rpc.api3.org",
"https://oev-network.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://api3.org/oev/",
"shortName": "oev-network",
"chainId": 4913,
"networkId": 4913,
"icon": "oev-network",
"explorers": [
{
"name": "OEV Network Explorer",
"url": "https://oev.explorer.api3.org",
"standard": "EIP3091"
},
{
"name": "OEV Network Caldera Explorer",
"url": "https://oev-network.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Skate Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc.skatechain.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://www.skatechain.org/",
"shortName": "skate",
"chainId": 5050,
"networkId": 5050,
"icon": "skate",
"explorers": [
{
"name": "Skate Explorer",
"url": "https://scan.skatechain.org",
"standard": "EIP3091"
}
],
"status": "active",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": ""
}
]
}
},
{
"name": "Pioneer Zero Chain",
"chain": "PZO",
"icon": "pzo",
"rpc": [
"https://rpc.zeroscan.org"
],
"faucets": [
"https://faucet.zeroscan.org/faucet"
],
"nativeCurrency": {
"name": "Pioneer Zero",
"symbol": "PZO",
"decimals": 18
},
"infoURL": "https://pionechain.com",
"shortName": "pzo",
"chainId": 5080,
"networkId": 5080,
"explorers": [
{
"name": "Pioneer Zero Chain Explorer",
"url": "https://zeroscan.org",
"standard": "EIP3091"
},
{
"name": "Pioneer Zero Chain Explorer",
"url": "https://zero.pionescan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Pione Chain Mainnet",
"chain": "PIO",
"icon": "pio",
"rpc": [
"https://rpc.pionescan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Pione",
"symbol": "PIO",
"decimals": 18
},
"infoURL": "https://pionechain.com",
"shortName": "pio",
"chainId": 5090,
"networkId": 5090,
"explorers": [
{
"name": "Pione Chain Explorer",
"url": "https://pionescan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Ham",
"chain": "Ham",
"rpc": [
"https://rpc.ham.fun"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ham.fun",
"shortName": "ham",
"chainId": 5112,
"networkId": 5112,
"icon": "ham",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.ham.fun",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Citrea Testnet",
"chain": "Citrea",
"rpc": [
"https://rpc.testnet.citrea.xyz"
],
"faucets": [
"https://citrea.xyz/faucet"
],
"nativeCurrency": {
"name": "Citrea BTC",
"symbol": "cBTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://citrea.xyz",
"shortName": "citrea-testnet",
"chainId": 5115,
"networkId": 5115,
"icon": "citrea",
"explorers": [
{
"name": "Citrea Testnet Explorer",
"url": "https://explorer.testnet.citrea.xyz",
"icon": "citrea",
"standard": "EIP3091"
}
]
},
{
"name": "Moca Chain Testnet",
"chain": "Moca Chain",
"rpc": [
"https://testnet-rpc.mechain.tech"
],
"faucets": [
"https://faucet.mechain.tech"
],
"nativeCurrency": {
"name": "MOCA",
"symbol": "MOCA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://mechain.tech",
"shortName": "MOCA",
"chainId": 5151,
"networkId": 5151,
"icon": "moca",
"explorers": [
{
"name": "Moca Chain Scan",
"url": "https://testnet-scan.mechain.tech",
"icon": "moca",
"standard": "EIP3091"
}
]
},
{
"name": "ITX Testnet",
"chain": "ITX",
"rpc": [
"https://rpc.testnet.itxchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ITX",
"symbol": "ITX",
"decimals": 18
},
"infoURL": "https://explorer.testnet.itxchain.com",
"shortName": "itx-testnet",
"chainId": 5321,
"networkId": 5321,
"explorers": [
{
"name": "ITX Testnet Explorer (Blockscout)",
"url": "https://explorer.testnet.itxchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Superseed",
"chain": "ETH",
"rpc": [
"https://mainnet.superseed.xyz",
"wss://mainnet.superseed.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.superseed.xyz",
"shortName": "sseed",
"chainId": 5330,
"networkId": 5330,
"slip44": 1,
"icon": "superseed",
"explorers": [
{
"name": "seedscout",
"url": "https://explorer.superseed.xyz",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Netsbo",
"chain": "NETSBO",
"rpc": [
"https://rpc1.netsbo.io",
"https://rpc2.netsbo.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Netsbo",
"symbol": "NETS",
"decimals": 18
},
"infoURL": "https://netsbo.io",
"shortName": "nets",
"chainId": 5333,
"networkId": 5333,
"icon": "netsbo",
"explorers": [
{
"name": "netsbo",
"url": "https://explorer.netsbo.io",
"icon": "netsbo",
"standard": "none"
}
]
},
{
"name": "Settlus",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://settlus.org",
"shortName": "setl",
"chainId": 5371,
"networkId": 5371,
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
},
"status": "incubating"
},
{
"name": "Settlus Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://settlus-septestnet.g.alchemy.com/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://settlus.org",
"shortName": "setl-sepolia",
"chainId": 5373,
"networkId": 5373,
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://settlus-sep-testnet.bridge.alchemy.com/"
}
]
},
"explorers": [
{
"name": "Settlus Sepolia Testnet Explorer",
"url": "https://settlus-sepolia-testnet.explorer.alchemy.com",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Saga",
"chain": "SAGA",
"rpc": [
"http://sagaevm-5464-1.jsonrpc.sagarpc.io"
],
"faucets": [],
"nativeCurrency": {
"name": "gas",
"symbol": "GAS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.saga.xyz",
"shortName": "saga",
"chainId": 5464,
"networkId": 5464,
"icon": "saga",
"explorers": [
{
"name": "blockscout",
"url": "https://sagaevm-5464-1.sagaexplorer.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "PointPay Mainnet",
"chain": "pointpay",
"rpc": [
"https://rpc-mainnet.pointpay.io"
],
"faucets": [],
"nativeCurrency": {
"name": "PointPay",
"symbol": "PXP",
"decimals": 18
},
"infoURL": "https://pointpay.io",
"shortName": "PP",
"chainId": 5511,
"networkId": 5511,
"icon": "pointpay",
"explorers": [
{
"name": "PointPay Mainnet Explorer",
"url": "https://explorer.pointpay.io",
"icon": "pointpay",
"standard": "EIP3091"
}
]
},
{
"name": "Chang Chain Foundation Mainnet",
"chain": "ChangChain",
"rpc": [
"https://rpc.cthscan.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Chang Coin Thailand",
"symbol": "CTH",
"decimals": 18
},
"infoURL": "https://changcoin.foundation/",
"shortName": "ChangChain",
"chainId": 5858,
"networkId": 5858,
"icon": "changchain",
"explorers": [
{
"name": "CTH Scan",
"url": "https://cthscan.com",
"standard": "EIP3091",
"icon": "blockscout"
}
]
},
{
"name": "BC Hyper Chain Testnet",
"chain": "BC Hyper Chain",
"rpc": [
"https://rpc.bchscan.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "TEST VERSATIZE COIN",
"symbol": "TVTCN",
"decimals": 18
},
"infoURL": "https://www.versatizecoin.com/",
"shortName": "BCH",
"chainId": 6060,
"networkId": 6060,
"icon": "bchyper",
"explorers": [
{
"name": "bcexplorer testnet",
"url": "https://testnet.bchscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Rails",
"title": "Rails Network Mainnet",
"chain": "RAILS",
"icon": "rails",
"rpc": [
"https://mainnet.steamexchange.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
},
{
"name": "EIP6551"
}
],
"faucets": [],
"nativeCurrency": {
"name": "SteamX",
"symbol": "STEAMX",
"decimals": 18
},
"infoURL": "https://steamexchange.io",
"shortName": "rails",
"chainId": 6278,
"networkId": 6278,
"slip44": 6278,
"explorers": [
{
"name": "blockscout",
"url": "https://explore.steamexchange.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "LAOS",
"title": "LAOS Mainnet",
"chain": "LAOS",
"icon": "laosnetwork",
"rpc": [
"https://rpc.laos.laosfoundation.io",
"wss://rpc.laos.laosfoundation.io"
],
"faucets": [],
"nativeCurrency": {
"name": "LAOS",
"symbol": "LAOS",
"decimals": 18
},
"infoURL": "https://laosnetwork.io",
"shortName": "laosnetwork",
"chainId": 6283,
"networkId": 6283,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.laos.laosfoundation.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "NFB Chain Testnet",
"chain": "NFB Chain Testnet",
"rpc": [
"https://testnet-node.nfbchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "NFBCoinTest",
"symbol": "NFBCT",
"decimals": 18
},
"infoURL": "https://nfbchain.com/",
"shortName": "nfbchaintest",
"chainId": 6320,
"networkId": 6320,
"explorers": [
{
"name": "NFB Chain Testnet Explorer",
"url": "https://testnet-scan.nfbchain.com",
"standard": "none"
}
]
},
{
"name": "Connext Sepolia",
"chain": "Connext Sepolia",
"rpc": [
"https://rpc.connext-sepolia.gelato.digital/"
],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"faucets": [],
"infoURL": "",
"shortName": "connext-sepolia",
"chainId": 6398,
"networkId": 6398,
"explorers": [
{
"name": "Connext Sepolia",
"url": "https://connext-sepolia.blockscout.com",
"icon": "connext",
"standard": "none"
}
]
},
{
"name": "Flamma Testnet",
"chain": "Flamma",
"rpc": [
"https://testnetrpc.flamma.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Flamma",
"symbol": "FLA",
"decimals": 18
},
"infoURL": "https://flamma.network",
"shortName": "FlammaTestnet",
"chainId": 6550,
"networkId": 6550,
"explorers": [
{
"name": "flascan",
"url": "https://testnet.flascan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Storchain",
"chain": "STR",
"rpc": [
"https://rpc.storchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Storchain",
"symbol": "STR",
"decimals": 18
},
"infoURL": "https://storchain.io",
"shortName": "str",
"chainId": 6667,
"networkId": 6667,
"icon": "str",
"explorers": [
{
"name": "storscan",
"url": "https://scan.storchain.io",
"icon": "str",
"standard": "none"
}
]
},
{
"name": "Edge Matrix Chain",
"chain": "EMC",
"icon": "emc",
"rpc": [
"https://rpc1-mainnet.emc.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Edge Matrix Chain Token",
"symbol": "EMC",
"decimals": 18
},
"infoURL": "",
"shortName": "EMC",
"chainId": 6678,
"networkId": 6678,
"explorers": [
{
"name": "blockscout",
"url": "https://emcscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "OX Chain",
"title": "OX Chain",
"chain": "OX",
"rpc": [
"https://rpc.oxscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "OX",
"symbol": "OX",
"decimals": 18
},
"infoURL": "https://ox.fun/chain",
"shortName": "ox-chain",
"chainId": 6699,
"networkId": 6699,
"status": "incubating"
},
{
"name": "RACE Mainnet",
"chain": "ETH",
"rpc": [
"https://racemainnet.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://race.foundation/",
"shortName": "raceeth",
"chainId": 6805,
"networkId": 6805,
"slip44": 1,
"icon": "race",
"explorers": [
{
"name": "blockscout",
"url": "https://racescan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.race.foundation/"
}
]
}
},
{
"name": "RACE Testnet",
"chain": "ETH",
"rpc": [
"https://racetestnet.io/"
],
"faucets": [
"https://faucet.racetestnet.io/"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://race.foundation/",
"shortName": "racesep",
"chainId": 6806,
"networkId": 6806,
"slip44": 1,
"icon": "race",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.racescan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge.race.foundation/"
}
]
}
},
{
"name": "Mtt Mainnet",
"chain": "MTT",
"rpc": [
"https://evm-rpc.mtt.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Mtt mainnet native coin",
"symbol": "MTT",
"decimals": 18
},
"infoURL": "https://mtt.network",
"shortName": "mtt-mainnet",
"chainId": 6880,
"networkId": 6880,
"icon": "mttnetwork",
"explorers": [
{
"name": "Mtt explorer",
"url": "https://explorer.mtt.network",
"standard": "EIP3091"
}
]
},
{
"name": "Nibiru cataclysm-1",
"chain": "Nibiru",
"rpc": [
"https://evm-rpc.nibiru.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "NIBI",
"symbol": "NIBI",
"decimals": 18
},
"infoURL": "https://nibiru.fi",
"shortName": "cataclysm-1",
"chainId": 6900,
"networkId": 6900,
"icon": "nibiru",
"explorers": []
},
{
"name": "XYL TestNet",
"chain": "XYL",
"rpc": [
"https://xyl-testnet.glitch.me/rpc/"
],
"faucets": [
"https://debxylen.github.io/XYL_TestNet/faucet.html"
],
"nativeCurrency": {
"name": "XYL",
"symbol": "XYL",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
},
{
"name": "XYL-DynaPoW"
},
{
"name": "Smart Contracts"
},
{
"name": "Custom Gas Model"
},
{
"name": "XYL-VM"
},
{
"name": "Dynamic Difficulty Adjustment"
},
{
"name": "Low-Latency Transactions"
}
],
"infoURL": "https://debxylen.github.io/XYL_TestNet",
"shortName": "xyl",
"chainId": 6934,
"networkId": 6934,
"icon": "xyl-test",
"explorers": [
{
"name": "XYL Explorer",
"url": "https://debxylen.github.io/BlockExplorer",
"icon": "xyl-test",
"standard": "EIP3091"
}
]
},
{
"name": "Laika Mainnet",
"chain": "LAIKA",
"rpc": [
"https://mainnetrpc.laikachain.dog"
],
"faucets": [
"https://laikachain.dog/faucets"
],
"nativeCurrency": {
"name": "Dogecoin",
"symbol": "DOGE",
"decimals": 18
},
"infoURL": "https://laikachain.dog",
"shortName": "laika",
"chainId": 6942,
"networkId": 6942,
"icon": "laika",
"explorers": [
{
"name": "Laika Mainnet Explorer",
"url": "https://explorer.laikachain.dog",
"standard": "EIP3091"
}
]
},
{
"name": "Bharat Blockchain Network",
"chain": "BBNT",
"rpc": [
"https://bbnrpc.testnet.bharatblockchain.io"
],
"faucets": [
"https://www.bon.bharatblockchain.io/faucet"
],
"nativeCurrency": {
"name": "BBNT",
"symbol": "BBN",
"decimals": 18
},
"features": [],
"infoURL": "https://bharatblockchain.io/",
"shortName": "bbnt",
"chainId": 7099,
"networkId": 7099,
"explorers": []
},
{
"name": "0XL3",
"chain": "0XL3",
"icon": "0xl3",
"rpc": [
"https://rpc.0xl3.com"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "XL3",
"symbol": "XL3",
"decimals": 18
},
"infoURL": "https://0xl3.com",
"shortName": "0xl3",
"chainId": 7117,
"networkId": 7117,
"explorers": [
{
"name": "0XL3 Explorer",
"url": "https://exp.0xl3.com",
"icon": "0xl3",
"standard": "EIP3091"
}
]
},
{
"name": "UXLINK One Testnet",
"chain": "UXLINK One",
"rpc": [
"https://rpc-sepolia.uxlinkone.com"
],
"faucets": [],
"nativeCurrency": {
"name": "UXLINK",
"symbol": "UXLINK",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.uxlinkone.io",
"shortName": "uxlink1-sep",
"chainId": 7181,
"networkId": 7181,
"icon": "uxlinkone",
"explorers": [
{
"name": "UXLINK One Sepolia Explorer",
"url": "https://sepolia.uxlinkone.com",
"icon": "uxlinkone",
"standard": "EIP3091"
}
]
},
{
"name": "Nexera Mainnet",
"chain": "Nexera",
"icon": "nexera",
"chainId": 7208,
"networkId": 7208,
"infoURL": "https://nexera.network",
"shortName": "nxra-mainnet",
"rpc": [
"https://rpc.nexera.network"
],
"faucets": [],
"nativeCurrency": {
"name": "NXRA",
"symbol": "NXRA",
"decimals": 18
},
"explorers": []
},
{
"name": "Nibiru testnet-1",
"chain": "Nibiru",
"rpc": [
"https://evm-rpc.testnet-1.nibiru.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "NIBI",
"symbol": "NIBI",
"decimals": 18
},
"infoURL": "https://nibiru.fi",
"shortName": "nibiru-testnet-1",
"chainId": 7210,
"networkId": 7210,
"icon": "nibiru",
"explorers": []
},
{
"name": "Nibiru devnet-3",
"chain": "Nibiru",
"rpc": [
"https://evm-rpc.devnet-3.nibiru.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "NIBI",
"symbol": "NIBI",
"decimals": 18
},
"infoURL": "https://nibiru.fi",
"shortName": "nibiru-devnet-3",
"chainId": 7222,
"networkId": 7222,
"icon": "nibiru",
"explorers": []
},
{
"name": "InitVerse Mainnet",
"chain": "InitVerse",
"rpc": [
"https://rpc-mainnet.inichain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "InitVerse",
"symbol": "INI",
"decimals": 18
},
"infoURL": "https://www.inichain.com",
"shortName": "INI",
"chainId": 7233,
"networkId": 7233,
"icon": "initverse",
"explorers": [
{
"name": "initverse",
"url": "https://www.iniscan.com",
"icon": "initverse",
"standard": "none"
}
]
},
{
"name": "InitVerse genesis testnet",
"chain": "InitVerse",
"rpc": [
"http://rpc-testnet.inichain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "InitVerse",
"symbol": "INI",
"decimals": 18
},
"infoURL": "https://genesis-testnet.inichain.com",
"shortName": "INICHAIN",
"chainId": 7234,
"networkId": 7234,
"icon": "initverse",
"explorers": [
{
"name": "initverse",
"url": "https://genesis-testnet.iniscan.com",
"icon": "initverse",
"standard": "none"
}
]
},
{
"name": "ZEUS Testnet",
"chain": "tZEUS",
"icon": "zeusicon",
"rpc": [
"https://testnet-rpc.zeuschainscan.io"
],
"nativeCurrency": {
"name": "The ZEUS Token",
"symbol": "ZEUSX",
"decimals": 18
},
"infoURL": "https://testnet-explorer.zeuschainscan.io",
"shortName": "ZEUS-Testnet",
"chainId": 7244,
"networkId": 7244,
"faucets": [
"https://faucet.zeuschainscan.io"
],
"explorers": [
{
"name": "ZEUS Testnet Explorer",
"url": "https://testnet-explorer.zeuschainscan.io",
"icon": "zeusicon",
"standard": "EIP3091"
}
]
},
{
"name": "Phron Testnet",
"chain": "PHR",
"icon": "phron",
"rpc": [
"https://testnet.phron.ai",
"wss://testnet.phron.ai"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.phron.ai"
],
"nativeCurrency": {
"name": "Phron",
"symbol": "TPHR",
"decimals": 18
},
"infoURL": "https://phron.ai",
"shortName": "phr",
"chainId": 7744,
"networkId": 7744,
"explorers": [
{
"name": "phronscan",
"url": "https://testnet.phronscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "PandaSea Testnet",
"chain": "PandaSea Testnet",
"rpc": [
"https://rpc.testnet.pandasea.io"
],
"faucets": [
"https://faucet.pandasea.io"
],
"nativeCurrency": {
"name": "PandaSea Coin",
"symbol": "PANDA",
"decimals": 18
},
"infoURL": "https://test.pandaseascan.com",
"shortName": "Pandasea-Testnet",
"chainId": 7770,
"networkId": 7770,
"explorers": [
{
"name": "tracehawk",
"url": "https://test.pandaseascan.com",
"standard": "none"
}
]
},
{
"name": "GDCC MAINNET",
"chain": "GDCC",
"icon": "gdcc",
"rpc": [
"https://mainnet-rpc-1.gdccscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "GDCC",
"symbol": "GDCC",
"decimals": 18
},
"infoURL": "https://gdcchain.com",
"shortName": "GdccMainnet",
"chainId": 7774,
"networkId": 7774,
"explorers": [
{
"name": "GDCC",
"url": "https://gdccscan.io",
"standard": "none"
}
]
},
{
"name": "PandaSea Mainnet",
"chain": "PandaSea",
"rpc": [
"https://rpc1.pandasea.io"
],
"faucets": [],
"nativeCurrency": {
"name": "PandaSea Coin",
"symbol": "PANDA",
"decimals": 18
},
"infoURL": "",
"shortName": "pandaSea-mainnet",
"chainId": 7776,
"networkId": 7776,
"explorers": [
{
"name": "Tracehawk",
"url": "https://pandaseascan.com",
"standard": "none"
}
]
},
{
"name": "MaalChain V2",
"chain": "MAAL",
"icon": "maal",
"rpc": [
"https://node1-mainnet-new.maalscan.io/",
"https://node2-mainnet-new.maalscan.io/",
"https://node3-mainnet-new.maalscan.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "MAAL",
"symbol": "MAAL",
"decimals": 18
},
"infoURL": "https://www.maalchain.com/",
"shortName": "maal-v2",
"chainId": 7862,
"networkId": 7862,
"explorers": [
{
"name": "maalscan",
"url": "https://maalscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "MaalChain Testnet V2",
"chain": "MaalChain Testnet V2",
"icon": "maal-test",
"rpc": [
"https://node-testnet.maalscan.io/",
"https://node2-testnet.maalscan.io/"
],
"faucets": [
"https://faucet-new-testnet.maalscan.io/"
],
"nativeCurrency": {
"name": "MAAL",
"symbol": "MAAL",
"decimals": 18
},
"infoURL": "https://www.maalchain.com/",
"shortName": "maal-test-v2",
"chainId": 7863,
"networkId": 7863,
"slip44": 1,
"explorers": [
{
"name": "maalscan testnet",
"url": "https://new-testnet.maalscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Powerloom Mainnet",
"chain": "POWER",
"rpc": [
"https://rpc.powerloom.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Powerloom Token",
"symbol": "POWER",
"decimals": 18
},
"infoURL": "https://powerloom.network",
"shortName": "power",
"chainId": 7865,
"networkId": 7865,
"icon": "power",
"status": "active",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.powerloom.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Vexon Testnet",
"chain": "Vexon",
"rpc": [
"https://rpc-testnet-asia1.vexonhub.org",
"https://rpc-testnet-europe1.vexonhub.org",
"https://rpc-testnet-01.vexonhub.org"
],
"faucets": [
"https://faucet-drip.vexonhub.org"
],
"nativeCurrency": {
"name": "Vexon Testnet Native Token",
"symbol": "tVEX",
"decimals": 18
},
"infoURL": "https://vexonhub.org",
"shortName": "vexon",
"chainId": 7879,
"networkId": 7879,
"icon": "vexon",
"explorers": [
{
"name": "Vexon Testnet Explorer",
"url": "https://testnet.vexonhub.org",
"standard": "EIP3091",
"icon": "vexon"
}
]
},
{
"name": "arena-z",
"title": "arena-z",
"chain": "arena-z",
"rpc": [
"https://rpc.arena-z.gg",
"wss://ws.arena-z.gg"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/arena-z",
"faucets": [],
"shortName": "arena-z",
"chainId": 7897,
"networkId": 7897,
"slip44": 60,
"icon": "arena-z-mainnet",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.arena-z.gg",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/arena-z"
}
]
}
},
{
"name": "Exorium Testnet",
"chain": "EXOR",
"rpc": [
"https://rpc-1-testnet.exorium.net",
"https://rpc-2-testnet.exorium.net",
"https://rpc-testnet.exoscan.net/"
],
"faucets": [
"https://faucet-testnet.exorium.net"
],
"nativeCurrency": {
"name": "EXOR",
"symbol": "tEXOR",
"decimals": 18
},
"infoURL": "https://exorium.net",
"shortName": "texor",
"chainId": 7957,
"networkId": 7957,
"slip44": 1,
"icon": "exorium",
"explorers": [
{
"name": "EXORIUM Testnet Explorer",
"icon": "exorium",
"url": "https://testnet.exoscan.net",
"standard": "none"
}
]
},
{
"name": "Polynomial",
"chain": "Polynomial",
"rpc": [
"https://rpc.polynomial.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://polynomial.fi",
"shortName": "polynomial",
"chainId": 8008,
"networkId": 8008,
"icon": "polynomial",
"explorers": [
{
"name": "Polynomial Explorer",
"url": "https://polynomialscan.io",
"standard": "none",
"icon": "polynomial"
}
]
},
{
"name": "iSunCoin Mainnet",
"chain": "iSunCoin",
"icon": "isuncoin",
"rpc": [
"https://mainnet.isuncoin.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ISC",
"symbol": "ISC",
"decimals": 18
},
"infoURL": "https://isuncoin.com",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"shortName": "isc",
"chainId": 8017,
"networkId": 8017,
"slip44": 8017,
"explorers": [
{
"name": "iSunCoin Explorer",
"icon": "isuncoin",
"url": "https://baifa.io/app/chains/8017",
"standard": "none"
}
]
},
{
"name": "Bharat Blockchain Network Mainnet",
"chain": "BBN",
"rpc": [
"https://bbnrpc.mainnet.bharatblockchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BBN",
"symbol": "BBN",
"decimals": 18
},
"features": [],
"infoURL": "https://bharatblockchain.io/",
"shortName": "bbn",
"chainId": 8099,
"networkId": 8099,
"explorers": []
},
{
"name": "Zenchain",
"chain": "ZCX",
"icon": "zenchain",
"rpc": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "ZCX",
"symbol": "ZCX",
"decimals": 18
},
"infoURL": "https://zenchain.io",
"shortName": "zen",
"chainId": 8108,
"networkId": 8108,
"slip44": 60,
"explorers": [],
"status": "incubating"
},
{
"name": "B3",
"chain": "B3",
"icon": "b3",
"rpc": [
"https://mainnet-rpc.b3.fun"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://b3.fun",
"shortName": "b3",
"chainId": 8333,
"networkId": 8333,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.b3.fun",
"standard": "EIP3091"
}
]
},
{
"name": "XProtocol",
"chain": "XPROTOCOL",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Kick",
"symbol": "KICK",
"decimals": 18
},
"shortName": "xprotocol",
"chainId": 8386,
"networkId": 8386,
"status": "incubating",
"parent": {
"type": "L2",
"chain": "eip155-8453"
},
"infoURL": "https://xprotocol.org/"
},
{
"name": "Zenchain Testnet",
"chain": "ZCX",
"icon": "zenchain",
"rpc": [
"https://zenchain-testnet.api.onfinality.io/public",
"wss://zenchain-testnet.api.onfinality.io/public-ws"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://facuet.zenchain.io"
],
"nativeCurrency": {
"name": "ZCX",
"symbol": "ZCX",
"decimals": 18
},
"infoURL": "https://zenchain.io",
"shortName": "zentest",
"chainId": 8408,
"networkId": 8408,
"slip44": 60,
"explorers": [
{
"name": "zentrace",
"url": "https://zentrace.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "THAT Mainnet",
"chain": "THAT",
"rpc": [
"https://api.thatchain.io",
"https://api.thatchain.io/mainnet"
],
"faucets": [],
"nativeCurrency": {
"name": "THAT",
"symbol": "THAT",
"decimals": 18
},
"infoURL": "https://that.website",
"shortName": "THAT",
"chainId": 8428,
"networkId": 8428,
"icon": "that",
"explorers": [
{
"name": "THAT Explorer",
"url": "https://that.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Chakra Testnet",
"chain": "Chakra Testnet",
"rpc": [
"https://rpcv1-dn-1.chakrachain.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "Chakra",
"symbol": "CKR",
"decimals": 18
},
"infoURL": "",
"shortName": "ChakraTN",
"chainId": 8545,
"networkId": 8545,
"explorers": []
},
{
"name": "New Reality Blockchain",
"chain": "NEWRL",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "NewReal",
"symbol": "NEWRL",
"decimals": 18
},
"features": [],
"infoURL": "https://newreality.bond/",
"shortName": "newrl",
"chainId": 8569,
"networkId": 8569,
"status": "incubating"
},
{
"name": "Bullions Smart Chain",
"chain": "Bullions",
"rpc": [
"https://rpc.bullionsx.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Bullions",
"symbol": "BLN",
"decimals": 18
},
"infoURL": "https://www.bullionsx.io",
"shortName": "bln",
"chainId": 8732,
"networkId": 8732,
"slip44": 8732,
"explorers": [
{
"name": "Bullionscan",
"url": "https://bullionscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Haven1",
"chain": "haven1",
"rpc": [
"https://rpc.haven1.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Haven1",
"symbol": "H1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.haven1.org",
"shortName": "haven1",
"chainId": 8811,
"networkId": 8811,
"icon": "haven1",
"explorers": [
{
"name": "Haven1 Explorer",
"url": "https://explorer.haven1.org",
"icon": "haven1",
"standard": "EIP3091"
}
]
},
{
"name": "Lif3 Chain",
"chain": "lif3chain",
"rpc": [
"https://rpc.lif3.com"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "LIF3",
"symbol": "LIF3",
"decimals": 18
},
"infoURL": "https://docs.lif3.com/",
"shortName": "lif3-mainnet",
"icon": "lif3",
"chainId": 8869,
"networkId": 8869,
"explorers": [
{
"name": "lif3scout",
"url": "https://lif3scout.com",
"standard": "none"
}
]
},
{
"name": "Avenium Testnet",
"chain": "AVE",
"rpc": [
"https://eu-testnet.avenium.io/",
"https://connect-testnet.avenium.io"
],
"faucets": [
"https://faucet-testnet.avenium.io"
],
"nativeCurrency": {
"name": "Ave Native Token",
"symbol": "tAVE",
"decimals": 18
},
"infoURL": "https://avenium.io",
"shortName": "tave",
"chainId": 8886,
"networkId": 8886,
"icon": "avenium",
"status": "incubating",
"explorers": [
{
"name": "Avenium Explorer Testnet",
"icon": "avenium",
"url": "https://testnet.avescan.net",
"standard": "none"
}
]
},
{
"name": "Qubetics Testnet",
"chain": "Qubetics Testnet",
"rpc": [
"https://alphatestnet-evm-rpc.qubetics.work/",
"wss://wss-testnet-nodes.shidoscan.com"
],
"faucets": [
"https://alphatestnet-explorer.qubetics.work/faucet"
],
"nativeCurrency": {
"name": "Qubetics Testnet Token",
"symbol": "TICS",
"decimals": 18
},
"infoURL": "https://www.qubetics.com/",
"shortName": "Qubetics",
"chainId": 9003,
"networkId": 9003,
"icon": "qubetics",
"explorers": [
{
"name": "Qubetics Testnet Explorer",
"url": "https://testnet.shidoscan.com",
"standard": "none",
"icon": "qubetics"
}
]
},
{
"name": "Apex Fusion - Nexus Mainnet",
"chain": "Nexus Mainnet",
"rpc": [
"https://rpc.nexus.mainnet.apexfusion.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Apex Fusion Token",
"symbol": "AP3X",
"decimals": 18
},
"infoURL": "https://apexfusion.org/",
"features": [
{
"name": "EIP155"
}
],
"shortName": "AP3X",
"chainId": 9069,
"networkId": 9069,
"icon": "apexfusion",
"explorers": []
},
{
"name": "Inco Gentry Testnet",
"chain": "INCO",
"rpc": [
"https://testnet.inco.org"
],
"faucets": [
"https://faucet.inco.org"
],
"nativeCurrency": {
"name": "INCO",
"symbol": "INCO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.inco.org",
"shortName": "inco-gentry",
"chainId": 9090,
"networkId": 9090,
"explorers": [
{
"name": "Inco Gentry Testnet Explorer",
"url": "https://explorer.testnet.inco.org",
"standard": "EIP3091"
}
]
},
{
"name": "KPA Smart Chain Testnet",
"chain": "KSC",
"rpc": [
"https://tkpa-rpc1.kpachain.com/",
"https://tkpa-rpc2.kpachain.com/",
"https://tkpa-rpc3.kpachain.com/",
"https://tkpa-rpc4.kpachain.com/",
"https://testnet-rpc1.kpascan.com/",
"https://testnet-rpc2.kpascan.com/",
"https://testnet-rpc3.kpascan.com/",
"https://testnet-rpc4.kpascan.com/"
],
"faucets": [
"https://mint.kpachain.com"
],
"nativeCurrency": {
"name": "KPA Smart Chain Testnet",
"symbol": "tKPA",
"decimals": 18
},
"features": [],
"infoURL": "https://kpachain.com",
"shortName": "KPA",
"chainId": 9091,
"networkId": 9091,
"icon": "koppa",
"explorers": []
},
{
"name": "Destra Dubai Testnet",
"chain": "Destra",
"status": "active",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Sync",
"symbol": "SYNC",
"decimals": 18
},
"infoURL": "",
"shortName": "Destra",
"chainId": 9108,
"networkId": 9108,
"slip44": 1,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-4",
"bridges": []
}
},
{
"name": "Galactica-Reticulum",
"chain": "Galactica Testnet",
"rpc": [
"https://evm-rpc-http-reticulum.galactica.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Galactica Reticulum",
"symbol": "GNET",
"decimals": 18
},
"infoURL": "https://galactica.com",
"shortName": "GNET",
"chainId": 9302,
"networkId": 9302,
"explorers": [
{
"name": "Galactica-Reticulum Explorer",
"url": "https://explorer-reticulum.galactica.com",
"standard": "EIP3091"
}
]
},
{
"name": "Z Chain",
"title": "Z Chain",
"chain": "Z",
"rpc": [
"https://z-chain-rpc.eu-north-2.gateway.fm/?apiKey=${API_KEY}"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"nativeCurrency": {
"name": "Z",
"symbol": "Z",
"decimals": 18
},
"infoURL": "https://zero.tech",
"shortName": "z",
"chainId": 9369,
"networkId": 9369,
"icon": "z",
"explorers": [
{
"name": "blockscout",
"url": "https://z-chain-blockscout.eu-north-2.gateway.fm",
"icon": "z",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://z-chain-bridge.eu-north-2.gateway.fm"
}
]
}
},
{
"name": "Oasys Testnet",
"chain": "Oasys",
"icon": "oasys",
"rpc": [
"https://rpc.testnet.oasys.games"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://oasys.games",
"shortName": "OAS_TEST",
"chainId": 9372,
"networkId": 9372,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.testnet.oasys.games",
"standard": "EIP3091"
}
]
},
{
"name": "WeaveVM Testnet",
"chain": "WVM",
"rpc": [
"https://testnet.wvm.dev",
"https://testnet-rpc.wvm.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "Testnet WeaveVM Token",
"symbol": "tWVM",
"decimals": 18
},
"infoURL": "https://wvm.dev",
"shortName": "twvm",
"chainId": 9496,
"networkId": 9496,
"icon": "weavevm",
"explorers": [
{
"name": "WeaveVM Explorer",
"url": "https://explorer.wvm.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Rebus Mainnet",
"title": "Rebuschain Mainnet",
"chain": "ETH",
"rpc": [
"https://apievml2.rebuschain.com/l2rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.rebuschain.com",
"shortName": "rebus",
"chainId": 9696,
"networkId": 9696,
"icon": "rebus",
"explorers": [
{
"name": "Rebus EVM Explorer (Blockscout)",
"url": "https://evm.rebuschain.com",
"icon": "rebus",
"standard": "none"
}
]
},
{
"name": "Tabi Testnetv2",
"chain": "TabiNetworkv2",
"rpc": [
"https://rpc.testnetv2.tabichain.com"
],
"faucets": [
"https://carnival.tabichain.com"
],
"nativeCurrency": {
"name": "Tabi",
"symbol": "TABI",
"decimals": 18
},
"infoURL": "https://www.tabichain.com",
"shortName": "tabitestv2",
"chainId": 9788,
"networkId": 9788,
"explorers": [
{
"name": "Tabi Testnet V2 Explorer",
"url": "https://testnetv2.tabiscan.com",
"standard": "none"
}
]
},
{
"name": "BinaryChain Testnet",
"chain": "BinaryChain",
"icon": "binary",
"rpc": [
"https://rpctestnet.binarychain.org"
],
"faucets": [
"https://faucet.testnet.binarychain.org"
],
"nativeCurrency": {
"name": "BINARY",
"symbol": "BNRY",
"decimals": 18
},
"infoURL": "https://binarychain.org",
"shortName": "binarytestnet",
"chainId": 9876,
"networkId": 9876,
"explorers": [
{
"name": "BinaryChain Testnet Explorer",
"url": "https://explorer.testnet.binarychain.org",
"standard": "EIP3091"
}
]
},
{
"name": "pointledger",
"chain": "pointledger",
"icon": "pointledger",
"rpc": [
"https://rpc.pointledger.net"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "PLG",
"symbol": "PLG",
"decimals": 18
},
"infoURL": "https://pointledger.net",
"shortName": "pointledger",
"chainId": 9889,
"networkId": 9889,
"explorers": [
{
"name": "pointledger Explorer",
"url": "https://exp.pointledger.net",
"icon": "pointledger",
"standard": "EIP3091"
}
]
},
{
"name": "arena-z-testnet",
"title": "Arena-Z-Testnet",
"chain": "arena-z-testnet",
"rpc": [
"https://rpc.arena-z.t.raas.gelato.cloud",
"wss://ws.arena-z.t.raas.gelato.cloud"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "arena-z",
"infoURL": "https://raas.gelato.network/rollups/details/public/arena-z-testnet",
"faucets": [],
"shortName": "arena-z-testnet",
"chainId": 9897,
"networkId": 9897,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://arena-z.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge.gelato.network/bridge/arena-z-testnet"
}
]
},
"status": "active"
},
{
"name": "Zytron Linea Mainnet",
"chain": "ETH",
"icon": "zytron",
"rpc": [
"https://rpc.zypher.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zytron.zypher.network/",
"shortName": "zytron-linea",
"chainId": 9901,
"networkId": 9901,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.zypher.network",
"standard": "EIP3091"
}
]
},
{
"name": "UXER TESTNET NETWORK",
"chain": "UXER",
"rpc": [
"https://dev-testnet.uxer.network",
"https://data-cloud-testnet.uxer.network"
],
"faucets": [
"https://faucet.uxer.network"
],
"nativeCurrency": {
"name": "UXER",
"symbol": "tUXER",
"decimals": 18
},
"infoURL": "https://uxer.network",
"shortName": "uxer",
"chainId": 9966,
"networkId": 9966,
"slip44": 1,
"icon": "uxer",
"explorers": [
{
"name": "UXER TESTNET EXPLORER",
"icon": "uxer",
"url": "https://testnet.uxer.network",
"standard": "none"
}
]
},
{
"name": "Volley Mainnet",
"chain": "Volley",
"icon": "volley",
"rpc": [
"https://main-rpc.volleychain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "V2X",
"symbol": "V2X",
"decimals": 18
},
"infoURL": "https://www.volleychain.com",
"shortName": "volley-mainnet",
"chainId": 9981,
"networkId": 9981,
"explorers": [
{
"name": "Volley Mainnet Explorer",
"url": "https://volleyscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "MFEV CHAIN MAINNET",
"chain": "MFEV CHAIN",
"rpc": [
"https://rpc.mfevscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "MFEV",
"symbol": "MFEV",
"decimals": 18
},
"infoURL": "https://mfevscan.com",
"shortName": "mfevscan",
"chainId": 9982,
"networkId": 9982,
"slip44": 108,
"explorers": [
{
"name": "MFEV CHAIN",
"url": "https://mfevscan.com",
"icon": "mfev",
"standard": "EIP3091"
}
]
},
{
"name": "Warden Testnet",
"chain": "WARD",
"rpc": [
"https://evm.chiado.wardenprotocol.org",
"wss://evm-ws.chiado.wardenprotocol.org"
],
"faucets": [
"https://faucet.chiado.wardenprotocol.org"
],
"nativeCurrency": {
"name": "WARD",
"symbol": "WARD",
"decimals": 18
},
"infoURL": "https://wardenprotocol.org",
"icon": "warden",
"shortName": "ward",
"chainId": 10010,
"networkId": 10010
},
{
"name": "AEON Chain",
"chain": "AEON Chain",
"icon": "aeon",
"rpc": [
"https://node.aeon.xyz/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "AEON Token",
"symbol": "AEON",
"decimals": 18
},
"infoURL": "",
"shortName": "aeon",
"chainId": 10025,
"networkId": 10025,
"explorers": [
{
"name": "AEON Explorer",
"url": "https://scan.aeon.xyz",
"standard": "none"
}
]
},
{
"name": "Chain Opera Testnet",
"chain": "Chain Opera Testnet",
"rpc": [
"http://40.78.123.6:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "coai",
"symbol": "CO",
"decimals": 18
},
"infoURL": "https://chainopera.ai/",
"shortName": "chainopera-testnet",
"chainId": 10066,
"networkId": 10066
},
{
"name": "Volcano Chain Mainnet",
"chain": "Volcano",
"icon": "volcano",
"rpc": [
"https://mainnet.vchain.pro",
"wss://wss.mainnet.vchain.pro"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Volcano Coin",
"symbol": "VC",
"decimals": 18
},
"infoURL": "https://vex.pro",
"shortName": "volcanochain",
"chainId": 10085,
"networkId": 10085,
"explorers": [
{
"name": "blockscout",
"url": "https://vchainscan.com",
"icon": "volcano",
"standard": "EIP3091"
}
]
},
{
"name": "MetaNova Verse",
"chain": "MNV",
"rpc": [
"https://web3.metanovaverse.com"
],
"faucets": [],
"nativeCurrency": {
"name": "MNV",
"symbol": "MNV",
"decimals": 18
},
"features": [],
"infoURL": "https://metanovaverse.com/",
"shortName": "mnv",
"chainId": 10096,
"networkId": 10096,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.metanovaverse.com",
"standard": "EIP3091"
},
{
"name": "Cosmos Explorer (Ping)",
"url": "https://ping.metanovaverse.com/metanovaverse",
"standard": "none"
}
]
},
{
"name": "GLScan",
"chain": "GLC",
"icon": "glc",
"rpc": [
"https://glc-dataseed.glscan.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "GLC",
"symbol": "GLC",
"decimals": 18
},
"infoURL": "https://glscan.io/",
"shortName": "glc",
"chainId": 10222,
"networkId": 10222,
"slip44": 1,
"explorers": [
{
"name": "GLScan Explorer",
"url": "https://glscan.io",
"standard": "none",
"icon": "glc"
}
]
},
{
"name": "GameSwift Chain Testnet",
"title": "GameSwift Chain Testnet",
"chain": "gameswift-chain-testnet",
"rpc": [
"https://rpc-testnet.gameswift.io",
"wss://ws-testnet.gameswift.io"
],
"nativeCurrency": {
"name": "TGameSwift",
"symbol": "tGS",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/gameswift-chain-testnet",
"faucets": [],
"shortName": "gameswift-chain-testnet",
"chainId": 10888,
"networkId": 10888,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.gameswift.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge-gelato.gameswift.io/bridge/gameswift-chain-testnet"
}
]
}
},
{
"name": "KB Chain",
"chain": "KB",
"rpc": [
"https://mainnet-rpc.kbcfoundation.com"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"nativeCurrency": {
"name": "KBC",
"symbol": "KBC",
"decimals": 18
},
"infoURL": "https://kbcfoundation.com",
"shortName": "KBC",
"chainId": 11000,
"networkId": 11000,
"explorers": [
{
"name": "KBC Explorer",
"url": "https://scan.kbcfoundation.com",
"standard": "EIP3091"
}
]
},
{
"name": "Shape Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.shape.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://shape.network",
"shortName": "shapesep",
"chainId": 11011,
"networkId": 11011,
"icon": "shapeTestnet",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer-sepolia.shape.network",
"standard": "EIP3091"
}
],
"slip44": 1
},
{
"name": "Bool Network Beta Mainnet",
"chain": "BOOL",
"rpc": [
"https://beta-rpc-node-http.bool.network"
],
"faucets": [],
"nativeCurrency": {
"name": "BOL",
"symbol": "BOL",
"decimals": 18
},
"infoURL": "https://bool.network/",
"shortName": "BOL",
"chainId": 11100,
"networkId": 11100,
"icon": "boolnetwork"
},
{
"name": "Abstract Sepolia Testnet",
"chain": "Abstract Sepolia Testnet",
"rpc": [
"https://api.testnet.abs.xyz"
],
"faucets": [
"https://faucet.triangleplatform.com/abstract/testnet"
],
"chainId": 11124,
"networkId": 11124,
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://abs.xyz/",
"shortName": "abstract-sepolia",
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://portal.testnet.abs.xyz/bridge"
}
]
},
"explorers": [
{
"name": "Abstract Sepolia Testnet Explorer",
"url": "https://sepolia.abscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "eGold Chain",
"chain": "EGC",
"icon": "egoldchain",
"rpc": [
"https://rpc.egoldchain.com",
"wss://rpc.egoldchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Aurum",
"symbol": "XAU",
"decimals": 18
},
"infoURL": "https://www.egoldchain.com",
"shortName": "egoldchain",
"chainId": 11451,
"networkId": 11451,
"explorers": [
{
"name": "eGold Chain Block Explorer",
"url": "https://egoldscan.io",
"standard": "none",
"icon": "egoldchain"
}
]
},
{
"name": "BEVM Signet",
"chain": "BEVM",
"rpc": [
"https://signet.bevm.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://bevm.io",
"shortName": "bevm-signet",
"chainId": 11504,
"networkId": 11504,
"icon": "bevm",
"explorers": [
{
"name": "bevm signet scan",
"url": "https://scan-signet.bevm.io",
"standard": "none"
}
]
},
{
"name": "SatsChain",
"chain": "SatsChain",
"rpc": [
"https://rpc-satschain-1.bevm.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SATS",
"symbol": "SATS",
"decimals": 18
},
"infoURL": "https://github.com/BTCSatsNetwork",
"shortName": "satschain",
"chainId": 11521,
"networkId": 11521,
"icon": "satschain",
"explorers": [
{
"name": "satschain scan",
"url": "https://scan-satschain.bevm.io",
"standard": "none"
}
]
},
{
"name": "Artela Mainnet",
"chain": "Artela",
"rpc": [
"https://node-euro.artela.network/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "ART",
"symbol": "ART",
"decimals": 18
},
"infoURL": "https://artela.network/",
"shortName": "artela-mainnet",
"chainId": 11820,
"networkId": 11820,
"icon": "artela",
"explorers": [
{
"name": "ArtelaScan",
"url": "https://artscan.artela.network",
"standard": "EIP3091"
}
]
},
{
"name": "Artela Testnet",
"chain": "Artela",
"rpc": [
"https://betanet-rpc1.artela.network"
],
"faucets": [],
"nativeCurrency": {
"name": "ART",
"symbol": "ART",
"decimals": 18
},
"infoURL": "https://artela.network/",
"shortName": "Artela",
"chainId": 11822,
"networkId": 11822,
"explorers": [
{
"name": "ArtelaScan",
"url": "https://betanet-scan.artela.network",
"standard": "EIP3091"
},
{
"name": "OKXExplorer",
"url": "https://www.okx.com/web3/explorer/artela-testnet",
"standard": "EIP3091"
}
]
},
{
"name": "Fuse Testnet",
"chain": "Fuse",
"rpc": [
"https://rpc.flash.fuse.io"
],
"faucets": [
"https://faucet.flash.fuse.io"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "",
"shortName": "fuseZK",
"chainId": 12001,
"networkId": 12001,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.flash.fuse.io",
"standard": "none"
}
]
},
{
"name": "Huddle01 dRTC Chain",
"chain": "huddle01",
"rpc": [
"https://huddle01.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://huddle01.com/",
"shortName": "huddle01",
"chainId": 12323,
"networkId": 12323,
"icon": "huddle01",
"explorers": [
{
"name": "Huddle01 Caldera Explorer",
"url": "https://huddle01.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "GDPR Mainnet",
"chain": "GDPR",
"rpc": [
"https://rpc.gdprchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "GDPR",
"symbol": "GDPR",
"decimals": 18
},
"infoURL": "https://explorer.gdprchain.com",
"shortName": "gdpr",
"chainId": 12358,
"networkId": 12358,
"explorers": [
{
"name": "GDPR Mainnet Explorer (Blockscout)",
"url": "https://explorer.gdprchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Cannon Testnet",
"title": "Cannon Private Testnet",
"chain": "ETH",
"rpc": [
"http://127.0.0.1:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Cannon Testnet Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://usecannon.com",
"shortName": "cannon",
"chainId": 13370,
"networkId": 13370
},
{
"name": "Game7 Testnet",
"title": "Game7 Testnet",
"chain": "Game7",
"rpc": [
"https://testnet-rpc.game7.io",
"wss://testnet-rpc.game7.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TG7T",
"symbol": "TG7T",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://game7.io",
"shortName": "g7t",
"chainId": 13746,
"networkId": 13746,
"icon": "game7testnet",
"explorers": [
{
"name": "Blockscout",
"url": "https://testnet.game7.io",
"icon": "game7testnet",
"standard": "EIP3091"
}
]
},
{
"name": "Zeroth Testnet",
"chain": "Zeroth",
"icon": "zeroth",
"rpc": [
"https://test-my.zeroth.run"
],
"faucets": [],
"nativeCurrency": {
"name": "Zeroth",
"symbol": "ZRHt",
"decimals": 18
},
"infoURL": "https://www.zeroth.foundation",
"shortName": "ZRHt",
"chainId": 14088,
"networkId": 14088,
"explorers": [
{
"name": "Zeroth Explorer",
"url": "https://test-scan.zeroth.run",
"icon": "zeroth",
"standard": "EIP3091"
}
]
},
{
"name": "Bitharvest Chain Mainnet",
"chain": "Bitharvest Chain Mainnet",
"rpc": [
"https://rpc.bthscan.io/"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Bitharvest Mainnet Native Token",
"symbol": "BTH",
"decimals": 18
},
"infoURL": "",
"shortName": "BitharvestMainnet",
"chainId": 14149,
"networkId": 14149,
"explorers": [
{
"name": "Bitharvest Mainnet Scan",
"url": "https://bthscan.io",
"standard": "EIP3091"
}
],
"icon": "bth"
},
{
"name": "Bitlazer",
"chain": "bitlazer",
"rpc": [
"https://bitlazer.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "lzrBTC",
"symbol": "lzrBTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://bitlazer.hub.caldera.xyz",
"shortName": "bitlazer",
"chainId": 14235,
"networkId": 14235,
"icon": "bitlazer",
"explorers": [
{
"name": "Bitlazer Caldera Explorer",
"url": "https://bitlazer.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Vana Moksha Testnet",
"chain": "Vana Moksha Testnet",
"rpc": [
"https://rpc.moksha.vana.org"
],
"nativeCurrency": {
"name": "VANA",
"symbol": "VANA",
"decimals": 18
},
"faucets": [],
"infoURL": "",
"shortName": "vana-moksha",
"chainId": 14800,
"networkId": 14800,
"explorers": [
{
"name": "Vana Moksha Testnet",
"url": "https://vanascan.io",
"icon": "vanamoksha",
"standard": "none"
}
]
},
{
"name": "Vana Satori Testnet",
"chain": "Satori",
"rpc": [
"http://rpc.satori.vana.org"
],
"faucets": [
"https://faucet.vana.org"
],
"nativeCurrency": {
"name": "DAT",
"symbol": "DAT",
"decimals": 18
},
"infoURL": "https://satori.vana.org",
"shortName": "satori",
"chainId": 14801,
"networkId": 14801,
"explorers": [
{
"name": "satoriscan",
"url": "https://satori.vanascan.io",
"standard": "EIP3091"
}
]
},
{
"name": "KYMTC Mainnet",
"chain": "KYMTC",
"icon": "kymtc",
"rpc": [
"https://mainnet-rpc.kymaticscan.online"
],
"faucets": [],
"nativeCurrency": {
"name": "KYMTC",
"symbol": "KYMTC",
"decimals": 18
},
"infoURL": "https://kymaticscan.online",
"shortName": "KYMTC",
"chainId": 15430,
"networkId": 15430,
"explorers": [
{
"name": "KYMTC Mainnet Explorer",
"url": "https://kymaticscan.online",
"icon": "kymtc",
"standard": "EIP3091"
}
]
},
{
"name": "Cypherium Mainnet",
"chain": "CPH",
"rpc": [
"https://pubnodes.cypherium.io/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Cypherium",
"symbol": "CPH",
"decimals": 18
},
"infoURL": "https://www.cypherium.io/",
"shortName": "cph",
"chainId": 16166,
"networkId": 16166,
"explorers": [
{
"name": "Testnet Block Explorer",
"url": "https://cypherium.tryethernal.com",
"standard": "EIP3091"
}
]
},
{
"name": "PLYR PHI",
"chain": "PLYR",
"icon": "plyr",
"rpc": [
"https://subnets.avax.network/plyr/mainnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "PLYR",
"symbol": "PLYR",
"decimals": 18
},
"infoURL": "https://plyr.network",
"shortName": "plyr-phi",
"chainId": 16180,
"networkId": 16180,
"explorers": [
{
"name": "PLYR PHI Explorer",
"url": "https://explorer.plyr.network",
"standard": "EIP3091"
}
]
},
{
"name": "Eventum Testnet",
"title": "Eventum Testnet",
"chain": "eventum-testnet",
"rpc": [
"https://testnet-rpc.eh-dev.app",
"wss://testnet-ws.eh-dev.app"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/event-horizon-eventum-testnet",
"faucets": [],
"shortName": "eventum-testnet",
"chainId": 16182,
"networkId": 16182,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-blockscout.eh-dev.app",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://testnet-bridge.eh-dev.app/bridge/event-horizon-eventum-testnet"
}
]
},
"status": "active"
},
{
"name": "Incentiv Devnet",
"chain": "Incentiv",
"rpc": [
"https://rpc.ankr.com/incentiv_devnet"
],
"faucets": [
"https://faucet.incentiv-dev.ankr.network"
],
"nativeCurrency": {
"name": "Testnet INC",
"symbol": "INC",
"decimals": 18
},
"infoURL": "https://incentiv.net",
"shortName": "tIncentiv",
"chainId": 16350,
"networkId": 16350,
"slip44": 1
},
{
"name": "Pivotal Sepolia",
"chainId": 16481,
"networkId": 16481,
"chain": "Pivotal",
"rpc": [
"https://sepolia.pivotalprotocol.com"
],
"faucets": [],
"shortName": "pivotal-sepolia",
"nativeCurrency": {
"name": "Pivotal ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "http://thepivotal.xyz/",
"explorers": [
{
"name": "Pivotal Scan",
"url": "https://sepolia.pivotalscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "0G-Newton-Testnet",
"chain": "0G-Testnet",
"rpc": [
"https://evmrpc-testnet.0g.ai"
],
"faucets": [
"https://faucet.0g.ai"
],
"nativeCurrency": {
"name": "A0GI",
"symbol": "A0GI",
"decimals": 18
},
"infoURL": "https://0g.ai",
"shortName": "0gai-testnet",
"chainId": 16600,
"networkId": 16600,
"icon": "0gai",
"explorers": [
{
"name": "0G BlockChain Explorer",
"url": "https://chainscan-newton.0g.ai",
"standard": "none"
}
]
},
{
"name": "Onchain Points",
"chain": "POP",
"rpc": [
"https://rpc.onchainpoints.xyz",
"https://rpc-onchain-points-8n0qkkpr2j.t.conduit.xyz/{CONDUIT_API_KEY}"
],
"faucets": [],
"nativeCurrency": {
"name": "OnchainPoints.xyz",
"symbol": "POP",
"decimals": 18
},
"infoURL": "https://onchainpoints.xyz",
"shortName": "pop",
"chainId": 17071,
"networkId": 17071,
"icon": "pop",
"status": "incubating",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.onchainpoints.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "EXPchain Testnet",
"chain": "EXPCHAIN",
"rpc": [
"https://rpc1-testnet.expchain.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "tZKJ",
"symbol": "tZKJ",
"decimals": 18
},
"infoURL": "https://expchain.ai",
"shortName": "expchain",
"chainId": 18880,
"networkId": 18880,
"icon": "expchain",
"explorers": [
{
"name": "EXPchain Testnet Explorer",
"url": "https://blockscout-testnet.expchain.ai",
"standard": "EIP3091"
}
]
},
{
"name": "Ultra EVM Network Testnet",
"chain": "Ultra",
"icon": "ultra",
"rpc": [
"https://evm.test.ultra.eosusa.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ultra Token",
"symbol": "UOS",
"decimals": 18
},
"infoURL": "https://ultra.io/",
"shortName": "ultra-testnet",
"chainId": 18881,
"networkId": 18881,
"slip44": 1,
"explorers": [
{
"name": "Ultra EVM Testnet Explorer",
"url": "https://evmexplorer.testnet.ultra.io",
"standard": "EIP3091"
}
]
},
{
"name": "BlockX Atlantis Testnet",
"chain": "blockx",
"rpc": [
"https://atlantis-web3.blockxnet.com"
],
"faucets": [
"https://ping.blockxnet.com/blockx-atlantis-testnet/faucet"
],
"nativeCurrency": {
"name": "BCX",
"symbol": "BCX",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.blockxnet.com/",
"shortName": "tbcx",
"chainId": 19077,
"networkId": 19077,
"explorers": [
{
"name": "BlockX EVM Explorer (Blockscout)",
"url": "https://testnet-explorer.blockxnet.com",
"standard": "EIP3091"
},
{
"name": "BlockX Cosmos Explorer (Ping)",
"url": "https://ping.blockxnet.com/blockx-atlantis-testnet",
"standard": "none"
}
]
},
{
"name": "LocaChain Mainnet",
"chain": "LocaChain",
"rpc": [
"https://tgrpntwm.locachain.io"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "LocaCoin",
"symbol": "LCC",
"decimals": 18
},
"infoURL": "https://locachain.io",
"shortName": "locachain",
"chainId": 19180,
"networkId": 19180,
"icon": "locacoin",
"explorers": [
{
"name": "Locachain Explorer",
"url": "https://explorer.locachain.io",
"standard": "EIP3091"
}
]
},
{
"name": "BlockX Mainnet",
"chain": "blockx",
"rpc": [
"https://web3.blockxnet.com"
],
"faucets": [
"https://ping.blockxnet.com/blockx/faucet"
],
"nativeCurrency": {
"name": "BCX",
"symbol": "BCX",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.blockxnet.com/",
"shortName": "bcx",
"chainId": 19191,
"networkId": 19191,
"explorers": [
{
"name": "BlockX EVM Explorer (Blockscout)",
"url": "https://explorer.blockxnet.com",
"standard": "EIP3091"
},
{
"name": "BlockX Cosmos Explorer (Ping)",
"url": "https://ping.blockxnet.com/blockx",
"standard": "none"
}
]
},
{
"name": "SEC Testnet",
"chain": "SEC",
"icon": "secIcon",
"rpc": [
"https://testnet-rpc.secexplorer.io"
],
"faucets": [
"https://faucet.secexplorer.io"
],
"nativeCurrency": {
"name": "SEP",
"symbol": "SEP",
"decimals": 18
},
"infoURL": "https://smartenergychain.org",
"shortName": "SEPt",
"chainId": 19515,
"networkId": 19515,
"explorers": [
{
"name": "SEC Testnet Explorer",
"url": "https://testnet.secexplorer.io",
"standard": "EIP3091"
}
]
},
{
"name": "SEC Mainnet",
"chain": "SEC",
"icon": "secIcon",
"rpc": [
"https://rpc.secexplorer.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SEP",
"symbol": "SEP",
"decimals": 18
},
"infoURL": "https://smartenergychain.org",
"shortName": "SECm",
"chainId": 19516,
"networkId": 19516,
"explorers": [
{
"name": "SEC Mainnet Explorer",
"url": "https://secexplorer.io",
"standard": "EIP3091"
}
]
},
{
"name": "Zytron Linea Testnet",
"chain": "ETH",
"icon": "zytron",
"rpc": [
"https://linea-testnet-zytron.zypher.game/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://zytron.zypher.network/",
"shortName": "zytron-linea-testnet",
"chainId": 19546,
"networkId": 19546,
"explorers": [
{
"name": "blockscout",
"url": "https://linea-testnet-zytron-blockscout.zypher.game",
"standard": "EIP3091"
}
]
},
{
"name": "Astra Sepolia",
"chain": "Astra Sepolia",
"icon": "astrasepolia",
"rpc": [
"https://rpc-astra-9on2f72wzn.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Astra",
"symbol": "ATX",
"decimals": 18
},
"infoURL": "https://explorer-astra-9on2f72wzn.t.conduit.xyz",
"shortName": "astra-sepolia",
"chainId": 19777,
"networkId": 19777,
"slip44": 1,
"explorers": [
{
"name": "Astra Sepolia Explorer",
"url": "https://explorer-astra-9on2f72wzn.t.conduit.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Ultra EVM Network",
"chain": "Ultra",
"icon": "ultra",
"rpc": [
"https://evm.ultra.eosusa.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ultra Token",
"symbol": "UOS",
"decimals": 18
},
"infoURL": "https://ultra.io",
"shortName": "ultra",
"chainId": 19991,
"networkId": 19991,
"explorers": [
{
"name": "Ultra EVM Explorer",
"url": "https://evmexplorer.ultra.io",
"standard": "EIP3091"
}
]
},
{
"name": "Monad Devnet",
"chain": "MON",
"icon": "monad",
"rpc": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Devnet MON Token",
"symbol": "MON",
"decimals": 18
},
"infoURL": "https://monad.xyz",
"shortName": "mon-devnet",
"chainId": 20143,
"networkId": 20143,
"slip44": 1,
"explorers": []
},
{
"name": "XUSD ONE StableChain Mainnet",
"chain": "XUSD ONE",
"icon": "xusd",
"rpc": [
"https://xusd.live"
],
"faucets": [],
"nativeCurrency": {
"name": "XUSD ONE",
"symbol": "X1",
"decimals": 18
},
"infoURL": "https://xusd.co",
"shortName": "xusd",
"chainId": 20441,
"networkId": 20441,
"explorers": [
{
"name": "xusdscan",
"url": "https://xusdscan.com",
"icon": "xusdscan",
"standard": "EIP3091"
}
]
},
{
"name": "Fluent Developer Preview",
"chain": "Fluent",
"rpc": [
"https://rpc.dev.gblend.xyz"
],
"faucets": [
"https://faucet.dev.gblend.xyz"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://fluent.xyz",
"shortName": "fluent-dev-net",
"chainId": 20993,
"networkId": 20993,
"explorers": [
{
"name": "Fluent Blockscout Explorer",
"url": "https://blockscout.dev.gblend.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Action Mainnet",
"chain": "Action",
"icon": "action",
"rpc": [
"https://rpc.actionblockchain.org"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Action",
"symbol": "ACTN",
"decimals": 18
},
"infoURL": "https://docs.actioncoin.com",
"shortName": "ACTN",
"chainId": 21000,
"networkId": 21000,
"explorers": [
{
"name": "Action Mainnet Explorer",
"url": "http://exp.actionblockchain.org",
"icon": "action",
"standard": "EIP3091"
}
]
},
{
"name": "Rivest Testnet",
"chain": "Inco",
"rpc": [
"https://validator.rivest.inco.org",
"https://gateway.rivest.inco.org"
],
"faucets": [
"https://faucet.rivest.inco.org"
],
"nativeCurrency": {
"name": "test-Inco",
"symbol": "tINCO",
"decimals": 18
},
"infoURL": "https://inco.org",
"shortName": "rivest-testnet",
"chainId": 21097,
"networkId": 21097,
"slip44": 1,
"icon": "inco",
"explorers": [
{
"name": "Rivest Testnet Explorer",
"url": "https://explorer.rivest.inco.org",
"standard": "EIP3091",
"icon": "inco"
}
]
},
{
"name": "1Money Network Mainnet",
"chain": "1Money Network",
"rpc": [
"https://mainnet.1money.network"
],
"faucets": [],
"nativeCurrency": {
"name": "USD1",
"symbol": "USD1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://1money.com",
"shortName": "1money",
"chainId": 21210,
"networkId": 21210,
"explorers": []
},
{
"name": "Lestnet",
"chain": "LETH",
"rpc": [
"https://service.lestnet.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Lestnet Ether",
"symbol": "LETH",
"decimals": 18
},
"infoURL": "https://lestnet.org",
"shortName": "leth",
"chainId": 21363,
"networkId": 21363,
"icon": "lestnet",
"explorers": [
{
"name": "Lestnet Explorer",
"url": "https://explore.lestnet.org",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "PremiumBlock",
"chain": "PBLK",
"rpc": [
"https://rpc.premiumblock.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Premium Block",
"symbol": "PBLK",
"decimals": 18
},
"infoURL": "https://scan.premiumblock.org",
"shortName": "pblk",
"chainId": 23023,
"networkId": 23023,
"explorers": [
{
"name": "PremiumBlocks Explorer",
"url": "https://scan.premiumblock.org",
"standard": "EIP3091"
}
],
"features": [
{
"name": "EIP1559"
}
]
},
{
"name": "KYMTC Testnet",
"chain": "KYMTC",
"icon": "kymtc",
"rpc": [
"https://testnet-rpc.kymaticscan.online"
],
"faucets": [
"https://faucet.kymaticscan.online"
],
"nativeCurrency": {
"name": "KYMTC",
"symbol": "KYMTC",
"decimals": 18
},
"infoURL": "https://testnet-explorer.kymaticscan.online",
"shortName": "tKYMTC",
"chainId": 24076,
"networkId": 24076,
"explorers": [
{
"name": "KYMTC Testnet Explorer",
"url": "https://testnet-explorer.kymaticscan.online",
"icon": "kymtc",
"standard": "EIP3091"
}
]
},
{
"name": "Amauti",
"title": "Rails Network Testnet Amauti",
"chain": "RAILS",
"icon": "railsTestnet",
"rpc": [
"https://testnet.steamexchange.io"
],
"faucets": [
"https://depot.steamexchange.io/faucet"
],
"nativeCurrency": {
"name": "SteamX",
"symbol": "STEAMX",
"decimals": 18
},
"infoURL": "https://steamexchange.io",
"shortName": "railst",
"chainId": 24116,
"networkId": 24116,
"explorers": [
{
"name": "blockscout",
"url": "https://build.steamexchange.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Everclear Mainnet",
"chain": "Everclear Mainnet",
"rpc": [
"https://rpc.everclear.raas.gelato.cloud"
],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"faucets": [],
"infoURL": "",
"shortName": "Everclear",
"chainId": 25327,
"networkId": 25327,
"explorers": [
{
"name": "Everclear",
"url": "https://scan.everclear.org",
"icon": "everclear",
"standard": "none"
}
]
},
{
"name": "Ferrum Quantum Portal Network",
"chain": "QPN",
"icon": "ferrum",
"rpc": [
"https://qpn.svcs.ferrumnetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ferrum",
"symbol": "qpFRM",
"decimals": 18
},
"infoURL": "https://ferrum.network",
"shortName": "qpn",
"chainId": 26100,
"networkId": 26100,
"explorers": [
{
"name": "ferrumscout",
"url": "https://explorer.ferrumnetwork.io",
"standard": "none"
}
]
},
{
"name": "DucatusX Testnet",
"chain": "DUCX",
"rpc": [
"https://ducx-testnet-node1.rocknblock.io",
"https://ducx-testnet-node2.rocknblock.io"
],
"faucets": [],
"nativeCurrency": {
"name": "DUCX",
"symbol": "DUCX",
"decimals": 18
},
"infoURL": "https://www.ducatuscoins.com/ducatusx",
"shortName": "ducatusx-testnet",
"chainId": 26482,
"networkId": 26482,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-testnet.ducatusx.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "DucatusX",
"chain": "DUCX",
"rpc": [
"https://ducx-mainnet-node1.rocknblock.io",
"https://ducx-mainnet-node2.rocknblock.io",
"https://ducx-mainnet-node3.rocknblock.io"
],
"faucets": [],
"nativeCurrency": {
"name": "DUCX",
"symbol": "DUCX",
"decimals": 18
},
"infoURL": "https://www.ducatuscoins.com/ducatusx",
"shortName": "ducatusx",
"chainId": 26483,
"networkId": 26483,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.ducatusx.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Newton Finance Testnet",
"chain": "ETH",
"rpc": [
"https://jp-rpc-testnet-newfi.newpay.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Newton",
"symbol": "NEW",
"decimals": 18
},
"infoURL": "https://newtonproject.org",
"shortName": "tNewFi",
"chainId": 26988,
"networkId": 26988,
"explorers": [
{
"name": "NewFi explorer",
"url": "https://explorer-testnet-newfi.newpay.io",
"standard": "EIP3091"
}
]
},
{
"name": "Nexa MetaNet",
"chain": "NEXA",
"rpc": [
"https://nexa.sh/metanet"
],
"faucets": [],
"nativeCurrency": {
"name": "Nexa",
"symbol": "NEXA",
"decimals": 18
},
"infoURL": "https://nexa.sh/meta",
"shortName": "nexameta",
"chainId": 29223,
"networkId": 29223,
"slip44": 29223,
"icon": "nexameta",
"explorers": [
{
"name": "NexaShell",
"url": "https://nexa.sh",
"standard": "none",
"icon": "nexashell"
}
]
},
{
"name": "Nexa MetaTest",
"chain": "NEXA",
"rpc": [
"https://nexa.sh/metatest"
],
"faucets": [],
"nativeCurrency": {
"name": "Nexa",
"symbol": "NEXA",
"decimals": 18
},
"infoURL": "https://nexa.sh/meta",
"shortName": "nexatest",
"chainId": 29225,
"networkId": 29225,
"slip44": 29225,
"icon": "nexameta",
"explorers": [
{
"name": "NexaShell",
"url": "https://nexa.sh",
"standard": "none",
"icon": "nexashell"
}
]
},
{
"name": "qChain Mainnet",
"chain": "qChain",
"rpc": [
"https://rpc.qchain.kr"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"nativeCurrency": {
"name": "QCO",
"symbol": "QCO",
"decimals": 18
},
"infoURL": "https://www.qchain.kr",
"shortName": "qchain",
"chainId": 30000,
"networkId": 30000,
"icon": "qchain",
"explorers": [
{
"name": "qChain explorer",
"url": "https://scan.qchain.kr",
"standard": "EIP3091"
}
]
},
{
"name": "Mezo Matsnet Testnet",
"chain": "Mezo",
"icon": "mezo",
"rpc": [
"https://rpc.test.mezo.org"
],
"faucets": [
"https://mezo.org/matsnet"
],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://mezo.org/",
"shortName": "mezo",
"chainId": 31611,
"networkId": 31611,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.test.mezo.org",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Santiment Intelligence Network",
"chain": "Santiment Intelligence Network",
"rpc": [
"https://node.sanr.app"
],
"faucets": [],
"nativeCurrency": {
"name": "SANR",
"symbol": "SANR",
"decimals": 18
},
"infoURL": "https://sanr.app",
"shortName": "SANR",
"chainId": 32382,
"networkId": 32382,
"icon": "sanrchain",
"parent": {
"chain": "eip155-1",
"type": "L2",
"bridges": [
{
"url": "https://sanr.app"
}
]
},
"explorers": [
{
"name": "Santiment Intelligence Explorer",
"url": "https://app-explorer-pos.sanr.app",
"standard": "none"
}
]
},
{
"name": "Zilliqa 2 EVM proto-mainnet",
"chain": "ZIL",
"rpc": [
"https://api.zq2-protomainnet.zilliqa.com"
],
"faucets": [
"https://faucet.zq2-protomainnet.zilliqa.com"
],
"nativeCurrency": {
"name": "Zilliqa",
"symbol": "ZIL",
"decimals": 18
},
"infoURL": "https://www.zilliqa.com/",
"shortName": "zq2-proto-mainnet",
"chainId": 32770,
"networkId": 32770,
"icon": "zilliqa",
"explorers": [
{
"name": "Zilliqa 2 EVM proto-mainnet explorer",
"url": "https://explorer.zq2-protomainnet.zilliqa.com",
"standard": "EIP3091"
}
]
},
{
"name": "Zilliqa 2 EVM proto-testnet",
"chain": "ZIL",
"rpc": [
"https://api.zq2-prototestnet.zilliqa.com"
],
"faucets": [
"https://faucet.zq2-prototestnet.zilliqa.com"
],
"nativeCurrency": {
"name": "Zilliqa",
"symbol": "ZIL",
"decimals": 18
},
"infoURL": "https://www.zilliqa.com/",
"shortName": "zq2-proto-testnet",
"chainId": 33103,
"networkId": 33103,
"icon": "zilliqa",
"explorers": [
{
"name": "Zilliqa 2 EVM proto-testnet explorer",
"url": "https://explorer.zq2-prototestnet.zilliqa.com",
"standard": "EIP3091"
}
]
},
{
"name": "Curtis",
"chain": "Curtis",
"rpc": [
"https://rpc.curtis.apechain.com"
],
"faucets": [
"https://curtis.hub.caldera.xyz"
],
"nativeCurrency": {
"name": "ApeCoin",
"symbol": "APE",
"decimals": 18
},
"infoURL": "https://curtis.hub.caldera.xyz",
"shortName": "curtis",
"chainId": 33111,
"networkId": 33111,
"icon": "curtis",
"explorers": [
{
"name": "Curtis Explorer",
"url": "https://explorer.curtis.apechain.com",
"standard": "EIP3091"
}
]
},
{
"name": "SlingShot",
"chain": "SLING",
"rpc": [
"https://rpc.slingshotdao.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Sling",
"symbol": "SLING",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://slingshotdao.com",
"shortName": "slingshot",
"chainId": 33401,
"networkId": 33401,
"icon": "slingshot",
"explorers": [
{
"name": "SlingShot Explorer",
"url": "https://explore.slingshotdao.com",
"icon": "slingshot",
"standard": "EIP3091"
}
]
},
{
"name": "Pencils Protocol Sepolia Testnet",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Pencils Protocol Sepolia Testnet Token",
"symbol": "DAPPST",
"decimals": 18
},
"infoURL": "https://pencilsprotocol.io/",
"shortName": "dapp-sepolia",
"chainId": 33999,
"networkId": 33999,
"status": "incubating"
},
{
"name": "ZEUS Mainnet",
"chain": "ZEUSX",
"icon": "zeusicon",
"rpc": [
"https://mainnet-rpc.zeuschainscan.io"
],
"nativeCurrency": {
"name": "The ZEUS Token",
"symbol": "ZEUSX",
"decimals": 18
},
"infoURL": "https://zeuschainscan.io",
"shortName": "ZEUSX",
"chainId": 34504,
"networkId": 34504,
"faucets": [],
"explorers": [
{
"name": "ZEUS Mainnet Explorer",
"url": "https://zeuschainscan.io",
"icon": "zeusicon",
"standard": "EIP3091"
}
]
},
{
"name": "Lens Testnet",
"title": "Lens Network Sepolia Testnet",
"chain": "Lens",
"rpc": [
"https://rpc.testnet.lens.dev"
],
"faucets": [
"https://www.alchemy.com/faucets/lens-sepolia"
],
"chainId": 37111,
"networkId": 37111,
"nativeCurrency": {
"name": "GRASS",
"symbol": "GRASS",
"decimals": 18
},
"icon": "lens",
"infoURL": "https://www.lens.xyz",
"shortName": "lens-sepolia",
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://portal.testnet.lens.dev/bridge"
}
]
},
"explorers": [
{
"name": "Lens Testnet Block Explorer",
"url": "https://block-explorer.testnet.lens.dev",
"standard": "none"
}
]
},
{
"name": "DIV Chain",
"chain": "DIVC",
"rpc": [
"https://rpc.divchain.org"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"nativeCurrency": {
"name": "DIVC",
"symbol": "DIVC",
"decimals": 18
},
"infoURL": "https://www.divchain.org",
"shortName": "divc",
"chainId": 40000,
"networkId": 40000,
"icon": "divc",
"explorers": [
{
"name": "DIV Chain explorer",
"url": "https://scan.divchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Aleph Zero EVM",
"chain": "Aleph Zero EVM",
"icon": "aleph-zero",
"rpc": [
"https://rpc.alephzero.raas.gelato.cloud",
"wss://ws.alephzero.raas.gelato.cloud"
],
"faucets": [],
"nativeCurrency": {
"name": "Aleph Zero",
"symbol": "AZERO",
"decimals": 18
},
"infoURL": "https://alephzero.org/",
"shortName": "aleph-zero",
"chainId": 41455,
"networkId": 41455,
"explorers": [
{
"name": "Aleph Zero EVM Mainnet Explorer",
"url": "https://evm-explorer.alephzero.org",
"icon": "aleph-zero",
"standard": "none"
}
]
},
{
"name": "EDU Chain",
"chain": "EDU Chain",
"icon": "occ-mainnet",
"rpc": [
"https://rpc.edu-chain.raas.gelato.cloud"
],
"faucets": [
"https://bridge.gelato.network/bridge/edu-chain"
],
"nativeCurrency": {
"name": "EDU",
"symbol": "EDU",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/edu-chain",
"shortName": "edu-chain",
"chainId": 41923,
"networkId": 41923,
"explorers": [
{
"name": "EDU Chain",
"url": "https://educhain.blockscout.com",
"icon": "occ-mainnet",
"standard": "none"
}
]
},
{
"name": "PMON Chain",
"chain": "42001",
"rpc": [
"https://rpc.pmon.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "PMON Token",
"symbol": "PMON",
"decimals": 18
},
"infoURL": "https://protocolmonsterlabs.com/pmon-chain",
"shortName": "pmon",
"chainId": 42001,
"networkId": 42001,
"icon": "pmon",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.pmon.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "Donatuz",
"chain": "ETH",
"rpc": [
"https://rpc.donatuz.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.donatuz.com",
"shortName": "donatuz",
"chainId": 42026,
"networkId": 42026,
"explorers": [
{
"name": "Donatuz Explorer",
"url": "https://explorer.donatuz.com",
"standard": "EIP3091"
}
]
},
{
"name": "WMC Testnet",
"chain": "WMC",
"icon": "wmc",
"rpc": [
"https://rpc-testnet-base.worldmobile.net"
],
"faucets": [
"https://faucet-testnet-base.worldmobile.net"
],
"nativeCurrency": {
"name": "WMTx",
"symbol": "WMTx",
"decimals": 18
},
"infoURL": "https://worldmobiletoken.com",
"shortName": "wmtx",
"chainId": 42070,
"networkId": 42070,
"explorers": [
{
"name": "WMC Explorer",
"url": "https://explorer-testnet-base.worldmobile.net",
"standard": "EIP3091"
}
]
},
{
"name": "Heurist Testnet",
"chain": "HEU",
"status": "active",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Heurist",
"symbol": "HEU",
"decimals": 18
},
"infoURL": "",
"shortName": "HEU",
"chainId": 42096,
"networkId": 42096,
"slip44": 1,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-4",
"bridges": []
}
},
{
"name": "Asset Chain Mainnet",
"chain": "Asset Chain",
"rpc": [
"https://mainnet-rpc.assetchain.org"
],
"faucets": [
"https://faucet.assetchain.org"
],
"nativeCurrency": {
"name": "Real World Asset",
"symbol": "RWA",
"decimals": 18
},
"infoURL": "https://docs.assetchain.org",
"shortName": "assetchain",
"chainId": 42420,
"networkId": 42420,
"icon": "assetchain",
"explorers": [
{
"name": "Asset Chain Explorer",
"url": "https://scan.assetchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Asset Chain Testnet",
"chain": "Asset Chain",
"rpc": [
"https://enugu-rpc.assetchain.org"
],
"faucets": [
"https://faucet.assetchain.org"
],
"nativeCurrency": {
"name": "Real World Asset",
"symbol": "RWA",
"decimals": 18
},
"infoURL": "https://docs.assetchain.org",
"shortName": "rwa",
"chainId": 42421,
"networkId": 42421,
"icon": "assetchain",
"explorers": [
{
"name": "Asset Chain Testnet Explorer",
"url": "https://scan-testnet.assetchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Formicarium",
"title": "MemeCore Testnet Formicarium",
"chain": "MemeCore",
"icon": "memecore",
"rpc": [
"https://rpc.formicarium.memecore.net",
"wss://ws.formicarium.memecore.net"
],
"faucets": [
"https://faucet.memecore.com/formicarium"
],
"nativeCurrency": {
"name": "Formicarium M",
"symbol": "M",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://memecore.com",
"shortName": "form",
"chainId": 43521,
"networkId": 43521,
"slip44": 1,
"explorers": [
{
"name": "OKX-Formicarium",
"url": "https://www.okx.com/web3/explorer/formicarium-testnet",
"standard": "EIP3091"
},
{
"name": "MemeCoreScan-Formicarium",
"url": "https://formicarium.memecorescan.io",
"standard": "EIP3091"
},
{
"name": "MemeCore Testnet Formicarium Explorer",
"url": "https://formicarium.blockscout.memecore.com",
"standard": "EIP3091"
}
]
},
{
"name": "Blessnet",
"chain": "ETH",
"rpc": [
"https://blessnet.calderachain.xyz/http",
"wss://blessnet.calderachain.xyz/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Bless",
"symbol": "BLESS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://blessnet.io",
"shortName": "bless",
"chainId": 45513,
"networkId": 45513,
"icon": "bless",
"explorers": [
{
"name": "blockscout",
"url": "https://blessnet.calderaexplorer.xyz",
"icon": "bless",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://blessnet.bridge.caldera.xyz"
}
]
}
},
{
"name": "Neo X Mainnet",
"chain": "Neo X",
"rpc": [
"https://mainnet-1.rpc.banelabs.org",
"https://mainnet-2.rpc.banelabs.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Gas",
"symbol": "GAS",
"decimals": 18
},
"infoURL": "https://neo.org/",
"shortName": "neox-mainnet",
"chainId": 47763,
"networkId": 47763,
"icon": "neox",
"explorers": [
{
"name": "Neo X - Explorer",
"url": "https://xexplorer.neo.org",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "ReDeFi Layer 1",
"chain": "ReDeFi",
"icon": "redefi",
"rpc": [
"https://layer1.redefi.world"
],
"faucets": [],
"nativeCurrency": {
"name": "BAX",
"symbol": "BAX",
"decimals": 18
},
"infoURL": "https://redefi.world",
"shortName": "bax",
"chainId": 47803,
"networkId": 47803,
"slip44": 47803,
"explorers": [
{
"name": "ReDeFi Scan",
"url": "https://scanlayer1.redefi.world",
"standard": "EIP3091"
}
]
},
{
"name": "Space Subnet Testnet",
"chain": "SPACETESTNET",
"rpc": [
"https://subnets.avax.network/space/testnet/rpc"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "FUEL",
"symbol": "FUEL",
"decimals": 18
},
"infoURL": "https://otherworld.network",
"shortName": "spacetestnet",
"chainId": 48795,
"networkId": 48795,
"explorers": [
{
"name": "SPACE Explorer",
"url": "https://subnets-test.avax.network/space",
"standard": "EIP3091"
}
]
},
{
"name": "Zircuit Testnet",
"chain": "Zircuit Testnet",
"icon": "zircuit",
"rpc": [
"https://zircuit1-testnet.p2pify.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.zircuit.com/",
"shortName": "zircuit-testnet",
"chainId": 48899,
"networkId": 48899,
"explorers": [
{
"name": "Zircuit",
"url": "https://explorer.testnet.zircuit.com",
"icon": "zircuit",
"standard": "none"
}
]
},
{
"name": "Zircuit Mainnet",
"chain": "Zircuit Mainnet",
"icon": "zircuit",
"rpc": [
"https://zircuit1-mainnet.p2pify.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.zircuit.com/",
"shortName": "zircuit-mainnet",
"chainId": 48900,
"networkId": 48900,
"explorers": [
{
"name": "Zircuit",
"url": "https://explorer.zircuit.com",
"icon": "zircuit",
"standard": "none"
}
]
},
{
"name": "Citronus",
"chain": "Citronus",
"rpc": [
"https://rpc.citronus.com"
],
"faucets": [],
"nativeCurrency": {
"name": "CITRO",
"symbol": "CITRO",
"decimals": 18
},
"infoURL": "https://citronus.com",
"shortName": "citro",
"chainId": 50000,
"networkId": 50000,
"icon": "citro",
"explorers": [
{
"name": "citro",
"url": "https://explorer.citronus.com",
"icon": "citro",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/citronus"
}
]
}
},
{
"name": "Sophon",
"chain": "Sophon",
"rpc": [
"https://rpc.sophon.xyz",
"wss://rpc.sophon.xyz/ws"
],
"nativeCurrency": {
"name": "Sophon",
"symbol": "SOPH",
"decimals": 18
},
"faucets": [],
"infoURL": "",
"shortName": "sophon",
"chainId": 50104,
"networkId": 50104,
"explorers": [
{
"name": "Sophon Block Explorer",
"url": "https://explorer.sophon.xyz",
"icon": "sophon-testnet",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portal.sophon.xyz/bridge"
}
]
}
},
{
"name": "Somnia Devnet",
"chain": "Somnia",
"rpc": [
"https://dream-rpc.somnia.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Somnia Devnet",
"symbol": "STT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://somnia.network",
"shortName": "STT",
"chainId": 50311,
"networkId": 50311,
"icon": "somnia",
"explorers": [
{
"name": "Somnia Devnet",
"url": "https://somnia-devnet.socialscan.io",
"icon": "somnia",
"standard": "EIP3091"
}
]
},
{
"name": "Reddio Devnet",
"title": "Reddio Sepolia L2 Rollup Devnet",
"chain": "ETH",
"rpc": [
"https://reddio-dev.reddio.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Red",
"symbol": "RED",
"decimals": 18
},
"infoURL": "https://www.reddio.com",
"shortName": "reddio-devnet",
"chainId": 50341,
"networkId": 50341,
"slip44": 1,
"explorers": [
{
"name": "L2scan",
"url": "https://reddio-devnet.l2scan.co",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "STB Testnet",
"chain": "STB Testnet",
"rpc": [
"https://rpc.quorum.sps.dev.kode.ru/"
],
"faucets": [],
"nativeCurrency": {
"name": "STB",
"symbol": "STB",
"decimals": 18
},
"infoURL": "",
"shortName": "stb-testnet",
"chainId": 50505,
"networkId": 50505,
"explorers": [
{
"name": "stb-testnet",
"url": "https://explorer.quorum.sps.dev.kode.ru",
"standard": "none"
}
]
},
{
"name": "Erbie Mainnet",
"chain": "Erbie",
"rpc": [
"https://api.erbie.io"
],
"faucets": [],
"nativeCurrency": {
"name": "ERB",
"symbol": "ERB",
"decimals": 18
},
"infoURL": "https://www.erbie.io",
"shortName": "Erbie",
"chainId": 50888,
"networkId": 50888,
"icon": "erbie",
"explorers": [
{
"name": "Erbie Explorer",
"url": "https://www.erbie.io/explorer",
"standard": "none",
"icon": "erbie"
}
]
},
{
"name": "Cytonic Testnet",
"chain": "Cytonic",
"rpc": [
"http://rpc.sl.testnet.cytonic.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Cytonic",
"symbol": "CCC",
"decimals": 18
},
"infoURL": "https://cytonic.com",
"shortName": "CTS",
"chainId": 52225,
"networkId": 52225,
"icon": "cytonic_l1",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.sl.testnet.cytonic.com",
"icon": "cytonic_l1",
"standard": "EIP3091"
}
]
},
{
"name": "Superseed Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.superseed.xyz",
"wss://sepolia.superseed.xyz"
],
"faucets": [
"https://sepoliafaucet.com"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.superseed.xyz",
"shortName": "seedsep",
"chainId": 53302,
"networkId": 53302,
"slip44": 1,
"icon": "seedTestnet",
"explorers": [
{
"name": "seedscout",
"url": "https://sepolia-explorer.superseed.xyz",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://sepolia-bridge.superseed.xyz/"
}
]
}
},
{
"name": "BirdLayer",
"title": "BirdLayer",
"chain": "BirdLayer",
"icon": "birdlayer",
"rpc": [
"https://rpc.birdlayer.xyz",
"https://rpc1.birdlayer.xyz",
"wss://rpc.birdlayer.xyz/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.dodochain.com",
"shortName": "birdlayer",
"chainId": 53456,
"networkId": 53456,
"explorers": [
{
"name": "BirdLayer Explorer",
"url": "https://scan.birdlayer.xyz",
"icon": "birdlayer",
"standard": "EIP3091"
}
]
},
{
"name": "Graphite Testnet",
"chain": "Graphite",
"rpc": [
"https://anon-entrypoint-test-1.atgraphite.com",
"wss://ws-anon-entrypoint-test-1.atgraphite.com"
],
"faucets": [
"https://faucet.atgraphite.com/"
],
"nativeCurrency": {
"name": "Graphite",
"symbol": "@G",
"decimals": 18
},
"infoURL": "https://atgraphite.com/",
"shortName": "graphiteTest",
"chainId": 54170,
"networkId": 54170,
"icon": "graphite",
"explorers": [
{
"name": "Graphite Testnet Explorer",
"url": "https://test.atgraphite.com",
"standard": "EIP3091"
}
]
},
{
"name": "OverProtocol Mainnet",
"chain": "OverProtocol",
"icon": "overIcon",
"rpc": [
"https://rpc.overprotocol.com",
"https://rpc2.overprotocol.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Over",
"symbol": "OVER",
"decimals": 18
},
"infoURL": "https://docs.over.network",
"shortName": "overprotocol",
"chainId": 54176,
"networkId": 54176,
"explorers": [
{
"name": "OverView",
"url": "https://scan.over.network",
"standard": "EIP3091"
}
]
},
{
"name": "Titan Sepolia",
"chain": "ETH",
"rpc": [
"https://rpc.titan-sepolia.tokamak.network",
"wss://rpc.titan-sepolia.tokamak.network/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://tokamak.network",
"shortName": "titan-sepolia",
"chainId": 55007,
"networkId": 55007,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.titan-sepolia.tokamak.network",
"standard": "EIP3091"
}
]
},
{
"name": "Superposition",
"chain": "Superposition",
"rpc": [
"https://rpc.superposition.so"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://superposition.so",
"shortName": "spn",
"chainId": 55244,
"networkId": 55244,
"explorers": [
{
"name": "Superposition Explorer",
"url": "https://explorer.superposition.so",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": []
}
},
{
"name": "Photon Aurora Testnet",
"chain": "Photon",
"rpc": [
"https://rpc-test2.photonchain.io"
],
"faucets": [
"https://photonchain.io/testnet2"
],
"nativeCurrency": {
"name": "Photon",
"symbol": "PTON",
"decimals": 18
},
"infoURL": "https://photonchain.io",
"shortName": "pton",
"chainId": 55551,
"networkId": 55551,
"explorers": [
{
"name": "photon_testnet2_explorer",
"url": "https://testnet2.photonchain.io",
"standard": "none"
}
]
},
{
"name": "Flamma Mainnet",
"chain": "Flamma",
"rpc": [
"https://rpc.flamma.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Flamma",
"symbol": "FLA",
"decimals": 18
},
"infoURL": "https://flamma.network",
"shortName": "FlammaMainnet",
"chainId": 55614,
"networkId": 55614,
"explorers": [
{
"name": "flascan",
"url": "https://flascan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Sonic Blaze Testnet",
"chain": "blaze-testnet",
"rpc": [
"https://rpc.blaze.soniclabs.com",
"https://sonic-blaze-rpc.publicnode.com",
"wss://sonic-blaze-rpc.publicnode.com"
],
"faucets": [
"https://blaze.soniclabs.com/account"
],
"nativeCurrency": {
"name": "Sonic",
"symbol": "S",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://blaze.soniclabs.com",
"shortName": "blaze",
"chainId": 57054,
"networkId": 57054,
"icon": "sonic"
},
{
"name": "COINSEC Network",
"title": "COINSEC Network",
"chain": "coinsecnetwork",
"icon": "coinsec",
"rpc": [
"https://mainnet-rpc.coinsec.network"
],
"faucets": [],
"nativeCurrency": {
"name": "COINSEC",
"symbol": "SEC",
"decimals": 18
},
"infoURL": "https://explorer.coinsec.network/",
"shortName": "coinsecnetwork",
"chainId": 57451,
"networkId": 57451,
"explorers": [
{
"name": "coinsecnetwork",
"url": "https://explorer.coinsec.network",
"standard": "EIP3091"
}
]
},
{
"name": "Lumoz Quidditch Testnet",
"chain": "ETH",
"rpc": [
"https://quidditch-rpc.lumoz.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Lumoz Quidditch Testnet Token",
"symbol": "MOZ",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://lumoz.org",
"shortName": "Lumoz-Quidditch-Testnet",
"chainId": 58680,
"networkId": 58680,
"slip44": 1,
"icon": "opside-new",
"explorers": [
{
"name": "LumozQuidditchTestnetInfo",
"url": "https://quidditch.lumoz.info",
"icon": "opside-new",
"standard": "EIP3091"
}
]
},
{
"name": "Metis Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://sepolia.metisdevops.link",
"https://metis-sepolia-rpc.publicnode.com",
"wss://metis-sepolia-rpc.publicnode.com"
],
"faucets": [
"https://sepolia.faucet.metisdevops.link"
],
"nativeCurrency": {
"name": "tMetis",
"symbol": "tMETIS",
"decimals": 18
},
"infoURL": "https://www.metis.io",
"shortName": "metis-sepolia",
"chainId": 59902,
"networkId": 59902,
"explorers": [
{
"name": "blockscout",
"url": "https://sepolia-explorer.metisdevops.link",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.metis.io"
}
]
}
},
{
"name": "Orange Chain Mainnet",
"title": "Orange Chain Mainnet",
"chain": "Orange Chain",
"rpc": [
"https://rpc.orangechain.xyz",
"https://hk-rpc.orangechain.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "BTC",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://orangechain.xyz",
"shortName": "Orange-Chain-Mainnet",
"chainId": 61022,
"networkId": 61022,
"icon": "orange",
"explorers": [
{
"name": "Blockscout",
"url": "https://scan.orangechain.xyz",
"icon": "orange",
"standard": "EIP3091"
}
]
},
{
"name": "Treasure",
"chain": "Treasure",
"shortName": "treasure",
"chainId": 61166,
"networkId": 61166,
"nativeCurrency": {
"name": "MAGIC",
"symbol": "MAGIC",
"decimals": 18
},
"slip44": 1,
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://app.treasure.lol",
"icon": "treasure",
"rpc": [
"https://rpc.treasure.lol",
"wss://rpc.treasure.lol/ws"
],
"faucets": [
"https://app.treasure.lol/chain/faucet",
"https://thirdweb.com/treasure"
],
"explorers": [
{
"name": "Treasure Block Explorer",
"url": "https://treasurescan.io",
"icon": "treasure",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://app.treasure.lol/chain/bridge"
}
]
}
},
{
"name": "TikTrix Testnet",
"chain": "tTTX",
"icon": "tiktrix",
"rpc": [
"https://tiktrix-rpc.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "tTTX",
"symbol": "tTTX",
"decimals": 18
},
"infoURL": "https://tiktrix.gg",
"shortName": "tiktrix-testnet",
"chainId": 62092,
"networkId": 62092,
"slip44": 1,
"explorers": [
{
"name": "TikTrix Testnet Explorer",
"url": "https://tiktrix.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "LAOS Sigma Testnet",
"title": "LAOS Sigma Testnet",
"chain": "LAOS Sigma Testnet",
"rpc": [
"https://rpc.laossigma.laosfoundation.io",
"wss://rpc.laossigma.laosfoundation.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SIGMA",
"symbol": "SIGMA",
"decimals": 18
},
"infoURL": "https://laosnetwork.io",
"shortName": "laossigma",
"chainId": 62850,
"networkId": 62850,
"explorers": [
{
"name": "blockscout",
"url": "https://sigma.explorer.laosnetwork.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "eSync Network Testnet",
"title": "eSync Network Testnet",
"chain": "ECS",
"rpc": [
"https://rpc.tst.esync.network"
],
"faucets": [
"https://faucet.tst.ecredits.com"
],
"nativeCurrency": {
"name": "eCredits",
"symbol": "ECS",
"decimals": 18
},
"infoURL": "https://esync.network",
"shortName": "esync-testnet",
"chainId": 63002,
"networkId": 63002,
"slip44": 1,
"icon": "esync",
"explorers": [
{
"name": "eSync Network Testnet Explorer",
"url": "https://explorer.tst.esync.network",
"icon": "esync",
"standard": "EIP3091"
}
]
},
{
"name": "Geist Mainnet",
"chain": "Geist",
"rpc": [
"https://geist-mainnet.g.alchemy.com/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Aavegotchi GHST Token",
"symbol": "GHST",
"decimals": 18
},
"features": [],
"infoURL": "https://playongeist.com",
"shortName": "geist",
"chainId": 63157,
"networkId": 63157,
"status": "active",
"icon": "geist",
"explorers": [
{
"name": "Geist Explorer",
"url": "https://geist-mainnet.explorer.alchemy.com",
"standard": "EIP3091"
}
]
},
{
"name": "CratD2C Testnet",
"chain": "CRATD2C",
"rpc": [
"https://cratd2c-testnet-node1.cratd2csmartchain.io/",
"https://cratd2c-testnet-node2.cratd2csmartchain.io/"
],
"faucets": [],
"nativeCurrency": {
"name": "CRATD2C",
"symbol": "CRAT",
"decimals": 18
},
"infoURL": "https://cratd2csmartchain.io",
"shortName": "cratd2c-testnet",
"chainId": 65349,
"networkId": 65349,
"icon": "cratd2c-testnet",
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer-testnet.cratd2csmartchain.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Vecno Mainnet",
"chain": "VE",
"rpc": [
"https://rpc.vecno.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Vecno",
"symbol": "VE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://vecno.org",
"shortName": "ve",
"chainId": 65357,
"networkId": 65357,
"icon": "vecno",
"explorers": [
{
"name": "vecno",
"url": "https://explorer.vecno.org",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "CyberChain Mainnet",
"chain": "XCC",
"icon": "cyberchain",
"rpc": [
"https://rpc.cyberchain.xyz/"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "XCC",
"symbol": "XCC",
"decimals": 18
},
"infoURL": "https://cyberchain.xyz",
"shortName": "xcc",
"chainId": 65535,
"networkId": 65535,
"slip44": 60,
"explorers": [
{
"name": "CyberChain explorer",
"url": "https://scan.cyberchain.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Automata Mainnet",
"chain": "Automata Mainnet",
"rpc": [
"https://rpc.ata.network",
"https://automata-mainnet.alt.technology/"
],
"faucets": [],
"nativeCurrency": {
"name": "ATA",
"symbol": "ATA",
"decimals": 18
},
"infoURL": "https://ata.network",
"shortName": "automatamainnet",
"chainId": 65536,
"networkId": 65536,
"icon": "automata",
"explorers": [
{
"name": "Automata Explorer",
"url": "https://explorer.ata.network",
"standard": "EIP3091"
}
]
},
{
"name": "Creator Chain Testnet",
"chain": "creatorchain",
"icon": "creatorchain",
"rpc": [
"https://rpc.creatorchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "CreatorETH",
"symbol": "CETH",
"decimals": 18
},
"infoURL": "https://docs.creatorchain.io/",
"shortName": "ceth",
"chainId": 66665,
"networkId": 66665,
"explorers": [
{
"name": "creatorchainscan",
"url": "https://explorer.creatorchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "DM2 Verse Testnet",
"chain": "DM2 Verse",
"icon": "dm2verse",
"rpc": [
"https://rpc.testnet.dm2verse.dmm.com"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "https://seamoon.dmm.com",
"shortName": "dm2t",
"chainId": 68775,
"networkId": 68775,
"explorers": [
{
"name": "DM2Verse Testnet Explorer",
"url": "https://explorer.testnet.dm2verse.dmm.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "Proof of Play - Boss",
"chainId": 70701,
"shortName": "pop-boss",
"chain": "ETH",
"networkId": 70701,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://rpc.boss.proofofplay.com"
],
"faucets": [],
"explorers": [
{
"name": "Proof of Play Boss Explorer",
"url": "https://explorer.boss.proofofplay.com",
"icon": "pop-boss",
"standard": "EIP3091"
}
],
"infoURL": "https://proofofplay.com",
"icon": "pop-boss",
"parent": {
"type": "L2",
"chain": "eip155-42161",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
},
{
"url": "https://relay.link/bridge/boss/"
}
]
}
},
{
"name": "Wadzchain Testnet",
"title": "Wadzchain Testnet",
"chain": "Wadzchain-Testnet",
"icon": "wadz",
"rpc": [
"https://rpc-testnet.wadzchain.io"
],
"faucets": [
"https://faucet-testnet.wadzchain.io"
],
"nativeCurrency": {
"name": "WadzChain Coin",
"symbol": "WCO",
"decimals": 18
},
"infoURL": "https://www.wadzchain-network.io",
"shortName": "wadzchain-testnet",
"chainId": 71117,
"networkId": 71117,
"slip44": 1,
"explorers": [
{
"name": "Wadzchain Testnet Explorer",
"url": "https://scan-testnet.wadzchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Nexera Testnet",
"chain": "Nexera",
"icon": "nexera",
"chainId": 72080,
"networkId": 72080,
"infoURL": "https://testnet.nexera.network",
"shortName": "nxra-testnet",
"rpc": [
"https://rpc.testnet.nexera.network"
],
"faucets": [
"https://faucet.nexera.network"
],
"nativeCurrency": {
"name": "tNXRA",
"symbol": "tNXRA",
"decimals": 18
},
"explorers": []
},
{
"name": "CAGA mainnet",
"chain": "CAGA",
"rpc": [
"https://cagamainnet.com",
"wss://cagamainnet.com/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "CAGA",
"symbol": "CAGA",
"decimals": 18
},
"infoURL": "https://www.cagacrypto.com/",
"shortName": "caga-mainnet",
"chainId": 72888,
"networkId": 72888,
"icon": "caga",
"explorers": [
{
"name": "caga",
"url": "https://explorer.cagamainnet.com",
"standard": "EIP3091"
}
]
},
{
"name": "AppLayer Testnet",
"chain": "AppLayer",
"rpc": [
"https://testnet-api.applayer.com"
],
"faucets": [
"https://testnet-faucet.applayer.com"
],
"nativeCurrency": {
"name": "AppLayer",
"symbol": "APPL",
"decimals": 18
},
"features": [
{
"name": "EIP55"
},
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://applayer.com",
"shortName": "applayer-testnet",
"chainId": 75338,
"networkId": 75338,
"explorers": [
{
"name": "Applayer Testnet Explorer",
"url": "https://testnet-explorer.applayer.com",
"standard": "EIP3091"
}
]
},
{
"name": "Carrchain Testnet",
"chain": "Carrchain Testnet",
"rpc": [
"https://rpc-testnetcarrchain.artiffine.com"
],
"faucets": [
"https://faucet-testnetcarrchain.artiffine.com"
],
"nativeCurrency": {
"name": "Carrchain Coin",
"symbol": "CARR",
"decimals": 18
},
"infoURL": "https://explorer-testnetcarrchain.artiffine.com",
"shortName": "Carrchain-Testnet",
"chainId": 77652,
"networkId": 77652,
"explorers": [
{
"name": "tracehawk",
"url": "https://explorer-testnetcarrchain.artiffine.com",
"standard": "none"
}
]
},
{
"name": "Cycle Network Mainnet Sailboat",
"chain": "ETH",
"rpc": [
"https://sailboat-rpc-mainnet.cyclenetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.cyclenetwork.io/",
"shortName": "cycles",
"chainId": 77677,
"networkId": 77677,
"icon": "cycle"
},
{
"name": "Polynomia Sepolia",
"chain": "polynomialSepolia",
"rpc": [
"https://rpc.sepolia.polynomial.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://polynomial.fi",
"shortName": "polynomialSepolia",
"chainId": 80008,
"networkId": 80008,
"icon": "polynomialSepolia",
"explorers": [
{
"name": "Polynomial Sepolia Explorer",
"url": "https://sepolia.polynomialscan.io",
"standard": "none",
"icon": "polynomialSepolia"
}
]
},
{
"name": "Berachain bArtio",
"chain": "Berachain bArtio",
"rpc": [
"https://bartio.rpc.berachain.com",
"https://bera-testnet.nodeinfra.com",
"https://bartio.rpc.b-harvest.io"
],
"faucets": [
"https://bartio.faucet.berachain.com"
],
"nativeCurrency": {
"name": "BERA Token",
"symbol": "BERA",
"decimals": 18
},
"infoURL": "https://www.berachain.com",
"shortName": "berachainbArtio",
"chainId": 80084,
"networkId": 80084,
"icon": "berachain",
"explorers": [
{
"name": "Beratrail",
"url": "https://bartio.beratrail.io",
"icon": "berachain",
"standard": "none"
}
]
},
{
"name": "Berachain",
"chain": "Berachain",
"rpc": [
"https://rpc.berachain.com",
"https://berachain-rpc.publicnode.com",
"wss://berachain-rpc.publicnode.com"
],
"faucets": [],
"nativeCurrency": {
"name": "BERA Token",
"symbol": "BERA",
"decimals": 18
},
"infoURL": "https://www.berachain.com",
"shortName": "berachain",
"chainId": 80094,
"networkId": 80094,
"icon": "berachain",
"explorers": [
{
"name": "Berascan",
"url": "https://berascan.com",
"standard": "EIP3091"
},
{
"name": "Beratrail",
"url": "https://beratrail.io",
"standard": "EIP3091"
}
]
},
{
"name": "Geo Genesis",
"chain": "Geo Genesis",
"rpc": [
"https://rpc-geo-genesis-h0q2s21xx8.t.conduit.xyz/"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"infoURL": "https://geobrowser.io",
"nativeCurrency": {
"name": "The Graph",
"symbol": "GRT",
"decimals": 18
},
"shortName": "geo",
"chainId": 80451,
"networkId": 80451,
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-42161"
}
},
{
"name": "Forta Chain",
"chain": "Forta Chain",
"rpc": [
"https://rpc-forta-chain-8gj1qndmfc.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "FORT",
"symbol": "FORT",
"decimals": 18
},
"infoURL": "https://www.forta.org/",
"shortName": "forta",
"chainId": 80931,
"networkId": 80931,
"icon": "forta-chain",
"explorers": [
{
"name": "Forta Chain Explorer",
"url": "https://explorer.forta.org",
"icon": "forta-chain",
"standard": "EIP3091"
}
]
},
{
"name": "VEMP Horizon",
"chain": "vemp-horizon",
"rpc": [
"https://vemp-horizon.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "VEMP",
"symbol": "VEMP",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.vemp.xyz/",
"shortName": "vemp-horizon",
"chainId": 82614,
"networkId": 82614,
"icon": "vemp-horizon",
"explorers": [
{
"name": "VEMP Horizon Caldera Explorer",
"url": "https://vemp-horizon.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Xprotocol Testnet",
"chainId": 83144,
"shortName": "xprotocoltestnet",
"chain": "Xprotocol Testnet",
"networkId": 83144,
"nativeCurrency": {
"name": "KICK Testnet Token",
"symbol": "KICK",
"decimals": 18
},
"rpc": [
"https://rpc.testnet.xprotocol.org"
],
"faucets": [
"https://xprotocol.org/faucets"
],
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.testnet.xprotocol.org",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-84532"
},
"infoURL": "https://xprotocol.org/"
},
{
"name": "Esa",
"chain": "Esa",
"rpc": [
"http://65.108.151.70:8545"
],
"faucets": [],
"nativeCurrency": {
"name": "Esa",
"symbol": "Esa",
"decimals": 18
},
"infoURL": "https://esculap.us",
"shortName": "Esa",
"chainId": 83278,
"networkId": 83278,
"icon": "EsaCoins",
"explorers": []
},
{
"name": "Xprotocol Sepolia",
"chainId": 83868,
"shortName": "xprotocolsepolia",
"chain": "Xprotocol Sepolia",
"networkId": 83868,
"nativeCurrency": {
"name": "KICK Testnet Token",
"symbol": "KICK",
"decimals": 18
},
"rpc": [],
"faucets": [],
"explorers": [],
"status": "incubating",
"parent": {
"type": "L2",
"chain": "eip155-84532"
},
"infoURL": "https://xprotocol.org/"
},
{
"name": "O Chain",
"chain": "O",
"rpc": [
"https://rpc.o.xyz",
"https://84841.rpc.thirdweb.com",
"wss://rpc.o.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "O.XYZ",
"symbol": "O",
"decimals": 18
},
"infoURL": "https://o.xyz",
"shortName": "O",
"chainId": 84841,
"networkId": 84841,
"slip44": 1,
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.o.xyz"
},
{
"url": "https://superbridge.o.xyz"
}
]
},
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.o.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "GDPR Testnet",
"chain": "GDPR",
"rpc": [
"https://rpc.testnet.gdprchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "GDPR",
"symbol": "GDPR",
"decimals": 18
},
"infoURL": "https://explorer.testnet.gdprchain.com",
"shortName": "gdpr-testnet",
"chainId": 85321,
"networkId": 85321,
"explorers": [
{
"name": "GDPR Testnet Explorer (Blockscout)",
"url": "https://explorer.testnet.gdprchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "ZKasino Mainnet",
"chain": "ZKasino",
"rpc": [
"https://rpc.zkas.zeeve.net"
],
"faucets": [],
"nativeCurrency": {
"name": "ZKAS",
"symbol": "ZKAS",
"decimals": 18
},
"infoURL": "",
"shortName": "ZKasino",
"chainId": 88800,
"networkId": 88800,
"explorers": [
{
"name": "Tracehawk",
"url": "https://explorer.zkas.zeeve.net",
"standard": "none"
}
]
},
{
"name": "Unit Zero Mainnet",
"chain": "Unit Zero",
"icon": "unitzero",
"rpc": [
"https://rpc.unit0.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "UNIT0",
"symbol": "UNIT0",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://units.network",
"shortName": "unit0-mainnet",
"chainId": 88811,
"networkId": 88811,
"explorers": []
},
{
"name": "Matr1x Testnet",
"title": "Matr1x Testnet",
"chain": "Matr1x",
"rpc": [
"https://testnet-rpc.m1chain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "MAX",
"symbol": "MAX",
"decimals": 18
},
"infoURL": "https://matr1x.io",
"shortName": "Matr1x-Testnet",
"chainId": 88866,
"networkId": 88866,
"icon": "matr1x",
"explorers": [
{
"name": "matr1x testnet",
"url": "https://testnet-scan.m1chain.io",
"icon": "matr1x",
"standard": "EIP3091"
}
]
},
{
"name": "Unite",
"chain": "UNITE",
"rpc": [
"https://unite-mainnet.g.alchemy.com/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Unite",
"symbol": "UNITE",
"decimals": 18
},
"infoURL": "https://unite.io",
"shortName": "unite",
"chainId": 88899,
"networkId": 88899,
"status": "active",
"icon": "unite",
"explorers": [
{
"name": "Unite Explorer",
"url": "https://unite-mainnet.explorer.alchemy.com",
"standard": "EIP3091"
}
]
},
{
"name": "UBIT SMARTCHAIN MAINNET",
"chain": "UBIT SMARTCHAIN",
"rpc": [
"https://rpc.ubitscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "USC",
"symbol": "USC",
"decimals": 18
},
"infoURL": "https://ubitscan.io",
"shortName": "UBITSCAN",
"chainId": 90002,
"networkId": 90002,
"slip44": 108,
"explorers": [
{
"name": "UBITSCAN",
"url": "https://ubitscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Henez Chain Mainnet",
"chain": "henez",
"rpc": [
"https://henez.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.henez.fi/",
"shortName": "henez",
"chainId": 91111,
"networkId": 91111,
"icon": "henez",
"explorers": [
{
"name": "Henez Chain Mainnet Caldera Explorer",
"url": "https://henez.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "StratoVM Testnet",
"chain": "StratoVM",
"rpc": [
"https://rpc.stratovm.io"
],
"faucets": [],
"nativeCurrency": {
"name": "SVM",
"symbol": "SVM",
"decimals": 18
},
"infoURL": "https://www.stratovm.io/",
"shortName": "stratovm",
"chainId": 93747,
"networkId": 93747,
"explorers": [
{
"name": "StratoVM Block Explorer",
"url": "https://explorer.stratovm.io",
"standard": "none"
}
]
},
{
"name": "SRICHAIN",
"chain": "SRICHAIN",
"rpc": [
"https://rpc.sriscan.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "SRIX",
"symbol": "SRIX",
"decimals": 18
},
"infoURL": "https://sriscan.com",
"shortName": "sriscan",
"chainId": 95432,
"networkId": 95432,
"slip44": 108,
"explorers": [
{
"name": "SRICHAIN",
"url": "https://sriscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Lux Testnet",
"chain": "Lux",
"icon": "lux",
"rpc": [
"https://api.lux-test.network"
],
"faucets": [
"https://faucet.lux-test.network"
],
"nativeCurrency": {
"name": "tLux",
"symbol": "tLUX",
"decimals": 18
},
"infoURL": "https://lux.network",
"shortName": "tlux",
"chainId": 96368,
"networkId": 96368,
"explorers": [
{
"name": "Lux Network Explorer",
"url": "https://explore.lux.network",
"standard": "EIP3091"
},
{
"name": "Lux Network Explorer",
"url": "https://explore.lux-test.network",
"standard": "EIP3091"
}
]
},
{
"name": "Lux Mainnet",
"chain": "Lux",
"icon": "lux",
"rpc": [
"https://api.lux.network"
],
"faucets": [
"https://faucet.lux-test.network"
],
"nativeCurrency": {
"name": "Lux",
"symbol": "LUX",
"decimals": 18
},
"infoURL": "https://lux.network",
"shortName": "lux",
"chainId": 96369,
"networkId": 96369,
"explorers": [
{
"name": "Lux Network Explorer",
"url": "https://explore.lux.network",
"standard": "EIP3091"
},
{
"name": "Lux Network Explorer",
"url": "https://explore.lux-test.network",
"standard": "EIP3091"
}
]
},
{
"name": "Lumoz Chain Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc.lumoz.org",
"https://rpc-hk.lumoz.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Lumoz Mainnet Token",
"symbol": "MOZ",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://lumoz.org",
"shortName": "Lumoz-Chain-Mainnet",
"chainId": 96370,
"networkId": 96370,
"slip44": 1,
"icon": "opside-new",
"explorers": [
{
"name": "LumozMainnetInfo",
"url": "https://scan.lumoz.info",
"icon": "opside-new",
"standard": "EIP3091"
}
]
},
{
"name": "Wonder Testnet",
"chain": "WNDR",
"rpc": [
"https://rpc.testnet.wonderchain.org"
],
"faucets": [
"https://wonderchain.org/faucet"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://wonderchain.org",
"shortName": "wndr",
"chainId": 96371,
"networkId": 96371,
"icon": "wonder",
"explorers": [
{
"name": "wonderexplorer",
"url": "https://explorer.testnet.wonderchain.org",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Tetron Testnet Smart Chain",
"chain": "Tetron Testnet",
"rpc": [
"https://test-rpc.tscscan.org"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"nativeCurrency": {
"name": "Tetron Testnet",
"symbol": "TSC",
"decimals": 18
},
"infoURL": "https://tetronchain.com/",
"shortName": "TetronTestnet",
"chainId": 97053,
"networkId": 97053,
"explorers": [
{
"name": "Tetron Explorer",
"url": "https://testnet.tscscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "Tetron Smart Chain",
"chain": "Tetron Mainnet",
"rpc": [
"https://rpc.tscscan.org"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"nativeCurrency": {
"name": "Tetron Mainnet",
"symbol": "TSC",
"decimals": 18
},
"infoURL": "https://tetronchain.com/",
"shortName": "Tetron",
"chainId": 97055,
"networkId": 97055,
"explorers": [
{
"name": "Tetron Smart ChainExplorer",
"url": "https://tscscan.org",
"standard": "EIP3091"
}
]
},
{
"name": "SlingShot Testnet",
"chain": "SLING",
"rpc": [
"https://rpc-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Sling Test",
"symbol": "SLINGT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://slingshotdao.com",
"shortName": "sling",
"chainId": 97435,
"networkId": 97435,
"icon": "slingshot",
"explorers": [
{
"name": "SlingShot Test Explorer",
"url": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz",
"icon": "slingshot",
"standard": "EIP3091"
}
]
},
{
"name": "Sidra Chain",
"chain": "SIDRA",
"icon": "sidrachain",
"rpc": [
"https://node.sidrachain.com"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Sidra Digital Asset",
"symbol": "SDA",
"decimals": 18
},
"infoURL": "https://www.sidrachain.com",
"shortName": "sidra",
"chainId": 97453,
"networkId": 97453,
"explorers": [
{
"name": "Sidra Chain Explorer",
"url": "https://ledger.sidrachain.com",
"icon": "sidrachain",
"standard": "EIP3091"
}
]
},
{
"name": "MetaBenz CHAIN",
"chain": "MetaBenz CHAIN",
"rpc": [
"https://rpc.metabenzscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "MBC",
"symbol": "MBC",
"decimals": 18
},
"infoURL": "https://metabenzscan.com",
"shortName": "metabenzscan",
"chainId": 97766,
"networkId": 97766,
"slip44": 108,
"explorers": [
{
"name": "MetaBenz CHAIN",
"url": "https://metabenzscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Plume Devnet",
"title": "Plume Sepolia L2 Rollup Devnet",
"chain": "ETH",
"rpc": [
"https://test-rpc.plumenetwork.xyz",
"wss://test-rpc.plumenetwork.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Plume Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://plumenetwork.xyz/",
"shortName": "plume-devnet",
"chainId": 98864,
"networkId": 98864,
"slip44": 1,
"icon": "plume",
"explorers": [
{
"name": "Blockscout",
"url": "https://test-explorer.plumenetwork.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "Plume Mainnet",
"title": "Plume Ethereum L2 Rollup Mainnet",
"chain": "ETH",
"rpc": [
"https://rpc.plumenetwork.xyz",
"wss://rpc.plumenetwork.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Plume Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://plumenetwork.xyz/",
"shortName": "plume",
"chainId": 98865,
"networkId": 98865,
"slip44": 1,
"icon": "plume",
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.plumenetwork.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.plumenetwork.xyz"
}
]
}
},
{
"name": "Superposition Testnet",
"title": "Sperposition Testnet",
"chain": "SPN",
"rpc": [
"https://testnet-rpc.superposition.so"
],
"faucets": [
"https://faucet.superposition.so"
],
"nativeCurrency": {
"name": "SPN",
"symbol": "SPN",
"decimals": 18
},
"infoURL": "https://superposition.so",
"shortName": "superposition-testnet",
"chainId": 98985,
"networkId": 98985,
"explorers": [
{
"name": "Superposition Explorer",
"url": "https://testnet-explorer.superposition.so",
"standard": "EIP3091"
}
]
},
{
"name": "Edge Matrix Chain Testnet",
"chain": "EMC Testnet",
"icon": "emctest",
"rpc": [
"https://rpc1-testnet.emc.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Edge Matrix Chain Token",
"symbol": "EMC",
"decimals": 18
},
"infoURL": "",
"shortName": "EMCTestnet",
"chainId": 99876,
"networkId": 99876,
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.emcscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Edge Matrix Chain Sepolia",
"chain": "EMC Sepolia",
"icon": "emctest",
"rpc": [
"https://rpc1-sepolia.emc.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Edge Matrix Chain Token",
"symbol": "EMC",
"decimals": 18
},
"infoURL": "",
"shortName": "EMCSepolia",
"chainId": 99879,
"networkId": 99879,
"explorers": [
{
"name": "blockscout",
"url": "https://sepolia.emcscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "Creditcoin",
"chain": "CTC",
"icon": "creditcoin",
"rpc": [
"https://mainnet3.creditcoin.network"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "CTC",
"symbol": "CTC",
"decimals": 18
},
"infoURL": "https://creditcoin.org",
"shortName": "ctc",
"chainId": 102030,
"networkId": 102030,
"faucets": [],
"explorers": [
{
"name": "blockscout",
"url": "https://creditcoin.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Creditcoin Devnet",
"chain": "CTC",
"icon": "creditcoin",
"rpc": [
"https://rpc.cc3-devnet.creditcoin.network"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "Devnet CTC",
"symbol": "devCTC",
"decimals": 18
},
"infoURL": "https://creditcoin.org",
"shortName": "ctcdev",
"chainId": 102032,
"networkId": 102032,
"faucets": [],
"explorers": [
{
"name": "blockscout",
"url": "https://creditcoin-devnet.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Lumoz Chain Testnet",
"chain": "ETH",
"rpc": [
"https://testnet-rpc.lumoz.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Lumoz Testnet Token",
"symbol": "MOZ",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://lumoz.org",
"shortName": "Lumoz-Chain-Testnet",
"chainId": 105363,
"networkId": 105363,
"slip44": 1,
"icon": "opside-new",
"explorers": [
{
"name": "LumozTestInfo",
"url": "https://testnet-scan.lumoz.info",
"icon": "opside-new",
"standard": "EIP3091"
}
]
},
{
"name": "Mars Credit",
"chain": "MARS",
"rpc": [
"https://node99-production-dd5f.up.railway.app:443",
"https://rpc.marscredit.xyz:443"
],
"faucets": [],
"nativeCurrency": {
"name": "Mars Credit",
"symbol": "MARS",
"decimals": 18
},
"infoURL": "https://marscredit.xyz/",
"shortName": "mars",
"chainId": 110110,
"networkId": 110110,
"slip44": 1,
"icon": "marscredit",
"explorers": [],
"redFlags": []
},
{
"name": "eGold Chain Testnet",
"chain": "EGC",
"icon": "egoldchain",
"rpc": [
"https://rpc-testnet.egoldchain.com",
"wss://rpc-testnet.egoldchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Aurum",
"symbol": "XAU",
"decimals": 18
},
"infoURL": "https://www.egoldchain.com",
"shortName": "egoldchaint",
"chainId": 111451,
"networkId": 111451,
"explorers": [
{
"name": "eGold Chain Block Explorer",
"url": "http://testnet.egoldscan.io",
"standard": "none",
"icon": "egoldchain"
}
]
},
{
"name": "Fushuma",
"chain": "Fushuma",
"rpc": [
"https://rpc.fushuma.com"
],
"faucets": [],
"nativeCurrency": {
"name": "FUSHUMA",
"symbol": "FUMA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "",
"shortName": "fushuma",
"chainId": 121224,
"networkId": 121224,
"explorers": [
{
"name": "FumaScan",
"url": "https://fumascan.com",
"standard": "none"
}
]
},
{
"name": "Gemchain",
"chain": "Gemchain",
"rpc": [
"https://evm-rpc.gemchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "GEM",
"symbol": "GEM",
"decimals": 18
},
"infoURL": "https://gemchain.org",
"shortName": "gemchain",
"chainId": 123321,
"networkId": 123321,
"slip44": 1,
"explorers": [
{
"name": "Gemchain Scan",
"url": "https://scan.gemchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Mitosis Testnet",
"chain": "Mitosis Testnet",
"rpc": [
"https://rpc.testnet.mitosis.org"
],
"faucets": [
"https://testnet.mitosis.org/faucet"
],
"nativeCurrency": {
"name": "MITO",
"symbol": "MITO",
"decimals": 18
},
"infoURL": "https://mitosis.org",
"shortName": "mitosis-testnet",
"chainId": 124832,
"networkId": 124832,
"explorers": [
{
"name": "mitosis testnet explorer",
"url": "https://testnet.mitosiscan.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Form Testnet",
"title": "Form Testnet",
"chain": "formtestnet",
"rpc": [
"https://sepolia-rpc.form.network/http",
"wss://sepolia-rpc.form.network/ws"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://info.form.network/faucet"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://sepolia-info.form.network",
"shortName": "formtestnet",
"chainId": 132902,
"networkId": 132902,
"explorers": [
{
"name": "Form Testnet explorer",
"url": "https://sepolia-explorer.form.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://sepolia-op-bridge.form.network"
}
]
}
},
{
"name": "Bitharvest Chain Testnet",
"chain": "Bitharvest Chain Testnet",
"rpc": [
"https://rpc-testnet.bthscan.io/"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Bitharvest Testnet Native Token",
"symbol": "BTH",
"decimals": 18
},
"infoURL": "",
"shortName": "BitharvestTestnet",
"chainId": 141491,
"networkId": 141491,
"explorers": [
{
"name": "Bitharvest Testnet Scan",
"url": "https://testnet.bthscan.io",
"standard": "EIP3091"
}
],
"icon": "bth"
},
{
"name": "Odyssey Chain Mainnet",
"chain": "DIONE",
"rpc": [
"https://node.dioneprotocol.com/ext/bc/D/rpc"
],
"faucets": [],
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://www.dioneprotocol.com",
"shortName": "Odyssey",
"chainId": 153153,
"networkId": 153153,
"icon": "odysseyChain",
"nativeCurrency": {
"name": "DIONE",
"symbol": "DIONE",
"decimals": 18
},
"explorers": [
{
"name": "Odyssey Scan",
"url": "https://odysseyscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "CryptoX",
"chain": "XCOIN",
"rpc": [
"https://rpc-xcoin.cryptoxnetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "XCOIN",
"symbol": "XCOIN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://cryptoxnetwork.io",
"shortName": "cryptox",
"chainId": 158245,
"networkId": 158245,
"explorers": [
{
"name": "CryptoX explorer",
"url": "https://cryptoxscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "XCOIN",
"chain": "XCOIN",
"rpc": [
"https://rpc-xcoin.cryptoxnetwork.io"
],
"faucets": [],
"nativeCurrency": {
"name": "XCOIN",
"symbol": "XCOIN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://cryptoxnetwork.io",
"shortName": "xcoin",
"chainId": 158345,
"networkId": 158345,
"explorers": [
{
"name": "CryptoX explorer",
"url": "https://cryptoxscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "OpenLedger Testnet",
"chain": "OpenLedger Testnet",
"rpc": [
"https://rpctn.openledger.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Openledger",
"symbol": "OPN",
"decimals": 18
},
"infoURL": "https://www.openledger.xyz",
"shortName": "openledgertest",
"chainId": 161201,
"networkId": 161201,
"icon": "openledger",
"explorers": [
{
"name": "OpenLedger Testnet Explorer",
"url": "https://scantn.openledger.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Zchains",
"chain": "Zchains",
"rpc": [
"https://rpc.zchains.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ZCD",
"symbol": "ZCD",
"decimals": 18
},
"infoURL": "https://www.zchains.com/",
"shortName": "zchains",
"chainId": 168168,
"networkId": 168168,
"icon": "zchain",
"explorers": [
{
"name": "zchains",
"url": "https://scan.zchains.com",
"standard": "EIP3091"
}
]
},
{
"name": "Fair Testnet",
"chain": "FAIR",
"rpc": [
"https://rpc-testnet.xfair.ai",
"wss://rpc-testnet.xfair.ai"
],
"faucets": [],
"nativeCurrency": {
"name": "FAIR",
"symbol": "FAIR",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://xfair.ai",
"shortName": "fairt",
"chainId": 171000,
"networkId": 171000
},
{
"name": "Wadzchain Mainnet",
"title": "Wadzchain Mainnet",
"chain": "Wadzchain-Mainnet",
"icon": "wadz",
"rpc": [
"https://rpc.wadzchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "WadzChain Token",
"symbol": "WCO",
"decimals": 18
},
"infoURL": "https://www.wadzchain-network.io",
"shortName": "wadzchain-mainnet",
"chainId": 171717,
"networkId": 171717,
"explorers": [
{
"name": "Wadzchain Mainnet Explorer",
"url": "https://scan.wadzchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Chronicle - Lit Protocol Testnet",
"chain": "LPC",
"icon": "lit",
"rpc": [
"https://chain-rpc.litprotocol.com/http"
],
"faucets": [
"https://faucet.litprotocol.com"
],
"nativeCurrency": {
"name": "Test LIT",
"symbol": "tstLIT",
"decimals": 18
},
"infoURL": "https://developer.litprotocol.com/v3/network/rollup",
"shortName": "lpc",
"chainId": 175177,
"networkId": 175177,
"explorers": [
{
"name": "Lit Chronicle Explorer",
"url": "https://chain.litprotocol.com",
"icon": "lit",
"standard": "EIP3091"
}
]
},
{
"name": "Chronicle Yellowstone - Lit Protocol Testnet",
"chain": "LPY",
"icon": "lit",
"rpc": [
"https://yellowstone-rpc.litprotocol.com"
],
"faucets": [
"https://developer.litprotocol.com/support/intro"
],
"nativeCurrency": {
"name": "Test LPX",
"symbol": "tstLPX",
"decimals": 18
},
"infoURL": "https://litprotocol.com",
"shortName": "lpy",
"chainId": 175188,
"networkId": 175188,
"explorers": [
{
"name": "Lit Chronicle Yellowstone Explorer",
"url": "https://yellowstone-explorer.litprotocol.com",
"icon": "lit",
"standard": "EIP3091"
}
]
},
{
"name": "Chronicle Loa - Lit Protocol Testnet",
"chain": "LPL",
"icon": "lit",
"rpc": [
"https://loa-rpc.litprotocol.com"
],
"faucets": [
"https://developer.litprotocol.com/support/intro"
],
"nativeCurrency": {
"name": "Test Lit",
"symbol": "tLit",
"decimals": 18
},
"infoURL": "https://litprotocol.com",
"shortName": "lpl",
"chainId": 175190,
"networkId": 175190,
"explorers": [
{
"name": "Lit Chronicle Loa Explorer",
"url": "https://loa-explorer.litprotocol.com",
"icon": "lit",
"standard": "EIP3091"
}
]
},
{
"name": "R0AR Chain",
"chain": "R0AR Chain",
"rpc": [
"https://rpc-r0ar.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://r0arscan.io",
"shortName": "R0AR-Chain",
"chainId": 193939,
"networkId": 193939,
"explorers": [
{
"name": "tracehawk",
"url": "https://r0arscan.io",
"standard": "none"
}
]
},
{
"name": "Lydia Coin Testnet",
"chain": "LYDIA-TESTNET",
"rpc": [
"https://testnet-rpc.lydiacoins.com"
],
"faucets": [
"https://faucet.lydiacoins.com/"
],
"nativeCurrency": {
"name": "Lydia Token",
"symbol": "BSW",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/lydia-coin-testnet",
"shortName": "lydia-testnet",
"chainId": 198989,
"networkId": 198989
},
{
"name": "MAZZE Testnet",
"chain": "MAZZE Testnet",
"icon": "mazze",
"rpc": [
"https://testnet-rpc.mazze.io/"
],
"faucets": [
"https://faucet.mazze.io/"
],
"nativeCurrency": {
"name": "MAZZE Testnet",
"symbol": "MAZZE",
"decimals": 18
},
"infoURL": "https://mazze.io/",
"shortName": "MAZZE",
"chainId": 199991,
"networkId": 199991,
"explorers": [
{
"name": "MAZZE Testnet Explorer",
"url": "https://mazzescan.io",
"standard": "none"
}
]
},
{
"name": "Zoo Mainnet",
"chain": "Zoo",
"icon": "zoo",
"rpc": [
"https://api.zoo.network"
],
"faucets": [
"https://faucet.zoo-test.network"
],
"nativeCurrency": {
"name": "Zoo",
"symbol": "ZOO",
"decimals": 18
},
"infoURL": "https://zoo.network",
"shortName": "zoo",
"chainId": 200200,
"networkId": 200200,
"explorers": [
{
"name": "Zoo Network Explorer",
"url": "https://explore.zoo.network",
"standard": "EIP3091"
},
{
"name": "Zoo Network Explorer",
"url": "https://explore.zoo-test.network",
"standard": "EIP3091"
}
]
},
{
"name": "DuckChain Testnet",
"title": "DuckChain Testnet",
"chain": "DuckChain",
"icon": "duckchain",
"rpc": [
"https://testnet-rpc.duckchain.io",
"https://testnet-rpc-hk.duckchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TON",
"symbol": "TON",
"decimals": 18
},
"infoURL": "https://duckchain.io",
"shortName": "Duck-Chain-Testnet",
"chainId": 202105,
"networkId": 202105,
"explorers": [
{
"name": "DuckChain Scan",
"url": "https://www.okx.com/web3/explorer/duckchain-testnet",
"icon": "duckchain",
"standard": "EIP3091"
},
{
"name": "DuckChain Scan",
"url": "https://www.oklink.com/duckchain-testnet",
"icon": "duckchain",
"standard": "EIP3091"
}
]
},
{
"name": "Bethel Sydney",
"chain": "Bethel",
"rpc": [
"https://rpc-sydney.bethel.network"
],
"faucets": [
"https://faucet-sydney.bethel.network"
],
"nativeCurrency": {
"name": "Bethel",
"symbol": "BECX",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "",
"shortName": "bethel-sydney",
"chainId": 202202,
"networkId": 202202,
"explorers": [
{
"name": "Betehl Sydney Explorer",
"url": "https://sydney.bethel.network",
"standard": "none"
}
]
},
{
"name": "Alterscope",
"chain": "Alterscope",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "RISK",
"symbol": "RISK",
"decimals": 18
},
"infoURL": "https://alterscope.org",
"shortName": "Alterscope",
"chainId": 202209,
"networkId": 202209,
"status": "incubating"
},
{
"name": "Blockfit",
"chain": "202424",
"rpc": [
"https://rpc.blockfitscan.io"
],
"faucets": [],
"nativeCurrency": {
"name": "BFIT",
"symbol": "BFIT",
"decimals": 18
},
"infoURL": "https://blockfit.io",
"shortName": "Blockfit",
"chainId": 202424,
"networkId": 202424,
"explorers": [
{
"name": "Tracehawk",
"url": "https://blockfitscan.io",
"standard": "none"
}
]
},
{
"name": "Sorian",
"chain": "SOR",
"rpc": [
"https://rpc.sorian.io"
],
"faucets": [],
"icon": "sorian",
"nativeCurrency": {
"name": "Sorian",
"symbol": "SOR",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://sorian.io",
"shortName": "sorian",
"chainId": 210209,
"networkId": 210209,
"explorers": []
},
{
"name": "Sorian Testnet",
"chain": "tSOR",
"rpc": [
"https://testnet-rpc.sorian.io",
"https://testnet.rpc.sorian.io"
],
"faucets": [],
"icon": "sorianTestnet",
"nativeCurrency": {
"name": "Sorian Testnet",
"symbol": "tSOR",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://mint.sorian.io",
"shortName": "sorianTestnet",
"chainId": 210210,
"networkId": 210210,
"explorers": []
},
{
"name": "Litentry",
"chain": "Litentry",
"rpc": [
"https://rpc.litentry-parachain.litentry.io",
"wss://rpc.litentry-parachain.litentry.io",
"https://litentry-rpc.dwellir.com",
"wss://litentry-rpc.dwellir.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Litentry",
"symbol": "LIT",
"decimals": 18
},
"infoURL": "https://litentry.com",
"shortName": "litentry",
"chainId": 212013,
"networkId": 212013,
"icon": "litentry",
"explorers": [
{
"name": "litentry statescan",
"url": "https://litentry.statescan.io",
"standard": "none"
}
]
},
{
"name": "CONET Mainnet",
"chain": "CONET Mainnet",
"rpc": [
"https://mainnet-rpc.conet.network"
],
"faucets": [],
"nativeCurrency": {
"name": "CONET ETH",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://conet.network",
"shortName": "conet-mainnet",
"chainId": 224400,
"networkId": 224400,
"slip44": 2147708048,
"icon": "conet",
"explorers": [
{
"name": "CONET Mainnet Explorer",
"url": "https://mainnet.conet.network",
"standard": "EIP3091"
}
]
},
{
"name": "Abyss Protocol",
"chain": "Abyss Protocol Testnet",
"rpc": [
"https://testnet.rpc.abyssprotocol.ai/"
],
"faucets": [
"https://faucet.abyssprotocol.ai/"
],
"nativeCurrency": {
"name": "AbyssETH",
"symbol": "aETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://abyssprotocol.ai/",
"shortName": "abyss",
"chainId": 229772,
"networkId": 229772,
"icon": "abyss",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.abyssprotocol.ai",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Universe Testnet",
"chain": "Universe",
"rpc": [
"https://blockchain.dev-universe-bank.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Universe Token",
"symbol": "UNI",
"decimals": 18
},
"infoURL": "https://www.universe-bank.com/universal-ledger-system",
"shortName": "unitestnet",
"chainId": 235711,
"networkId": 235711,
"icon": "universe",
"explorers": [
{
"name": "Universe Testnet Explorer",
"url": "https://blockchain-explorer.dev-universe-bank.com",
"standard": "none"
}
]
},
{
"name": "Studio Testnet",
"chain": "STO",
"icon": "studio",
"rpc": [
"https://rpc.studio-blockchain.com",
"wss://ws.studio-blockchain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Studio Token",
"symbol": "STO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://studio-blockchain.com",
"shortName": "sto",
"chainId": 240240,
"networkId": 240240,
"explorers": [
{
"name": "Studio Scan",
"url": "https://studio-scan.com",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Anomaly Andromeda Testnet",
"title": "Anomaly Andromeda Testnet",
"chain": "anomaly-andromeda-testnet",
"rpc": [
"https://rpc.anomaly-andromeda.anomalygames.io",
"wss://ws.anomaly-andromeda.anomalygames.io"
],
"nativeCurrency": {
"name": "TestNom",
"symbol": "tNOM",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/anomaly-andromeda-testnet",
"faucets": [],
"shortName": "anomaly-andromeda-testnet",
"chainId": 241120,
"networkId": 241120,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://andromeda.anomalyscan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/anomaly-andromeda-testnet"
}
]
}
},
{
"name": "Nxy Area 51",
"chain": "NXY",
"rpc": [
"https://nxy.social/testnet"
],
"faucets": [],
"nativeCurrency": {
"name": "Nxy",
"symbol": "NXY",
"decimals": 18
},
"infoURL": "https://nxy.social/l1",
"shortName": "nxytest",
"chainId": 272247,
"networkId": 272247,
"slip44": 272247,
"icon": "nxy",
"explorers": [
{
"name": "Nxy Explorer",
"url": "https://explorer.nxy.social",
"standard": "none",
"icon": "nxy"
}
]
},
{
"name": "Nxy Oasis",
"chain": "NXY",
"rpc": [
"https://nxy.social/mainnet"
],
"faucets": [],
"nativeCurrency": {
"name": "Nxy",
"symbol": "NXY",
"decimals": 18
},
"infoURL": "https://nxy.social/l1",
"shortName": "nxy",
"chainId": 272520,
"networkId": 272520,
"slip44": 272520,
"icon": "nxy",
"explorers": [
{
"name": "Nxy Explorer",
"url": "https://explorer.nxy.social",
"standard": "none",
"icon": "nxy"
}
]
},
{
"name": "Athene Parthenon",
"chain": "athene-parthenon",
"rpc": [
"https://rpc.parthenon.athenescan.io",
"wss://ws.parthenon.athenescan.io"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/athene-parthenon",
"faucets": [],
"shortName": "athene-parthenon",
"chainId": 281123,
"networkId": 281123,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://parthenon.athenescan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
},
"status": "active"
},
{
"name": "Cipherem Testnet",
"chain": "Cipherem",
"rpc": [
"https://testnet.cipherem.com"
],
"faucets": [],
"nativeCurrency": {
"name": "CIP",
"symbol": "CIP",
"decimals": 18
},
"infoURL": "https://www.cipherem.com",
"shortName": "CIP",
"chainId": 292003,
"networkId": 292003,
"slip44": 1,
"icon": "cipherem",
"explorers": [
{
"name": "Cipherscan Testnet Explorer",
"icon": "cipherscan",
"url": "https://cipherscan.net",
"standard": "EIP3091"
}
]
},
{
"name": "Camp Network Testnet V2",
"chain": "ETH",
"icon": "camp",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://rpc-campnetwork.xyz"
],
"faucets": [
"https://www.campnetwork.xyz/faucet"
],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.campnetwork.xyz/",
"shortName": "CampV2",
"chainId": 325000,
"networkId": 325000,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://camp-network-testnet.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/camp-network-testnet"
}
]
}
},
{
"name": "WABA Chain Testnet",
"chain": "WABA Mainnet",
"icon": "waba",
"rpc": [
"https://rpc.wabaworld.com"
],
"faucets": [],
"nativeCurrency": {
"name": "WABA",
"symbol": "WABA",
"decimals": 18
},
"infoURL": "https://www.wabanetwork.org",
"shortName": "waba",
"chainId": 327126,
"networkId": 327126,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.wabaworld.com",
"standard": "none"
}
]
},
{
"name": "Nal Mainnet",
"chain": "ETH",
"icon": "nal",
"rpc": [
"https://rpc.nal.network",
"wss://wss.nal.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.nal.network",
"shortName": "nal",
"chainId": 328527,
"networkId": 328527,
"explorers": [
{
"name": "Nal Network Explorer",
"url": "https://scan.nal.network",
"standard": "EIP3091"
}
]
},
{
"name": "CheeseChain",
"title": "CheeseChain",
"chain": "CHEESE",
"rpc": [
"https://rpc.cheesechain.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "CHEESE",
"symbol": "CHEESE",
"decimals": 18
},
"infoURL": "https://cheesechain.xyz",
"shortName": "CheeseChain",
"chainId": 383353,
"networkId": 383353,
"icon": "cheesechain"
},
{
"name": "Infinaeon",
"chain": "Infinaeon",
"rpc": [
"https://rpc.infinaeon.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "hhttps://rpc.infinaeon.com",
"shortName": "Infinaeon",
"chainId": 420000,
"networkId": 420000,
"explorers": [
{
"name": "tracehawk",
"url": "https://explorer.infinaeon.com",
"standard": "none"
}
]
},
{
"name": "Vector Smart Chain",
"chain": "VSC",
"icon": "vectorsmartgas",
"rpc": [
"https://rpc.vscblockchain.org"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Vector Smart Gas",
"symbol": "VSG",
"decimals": 18
},
"infoURL": "https://vsgofficial.com",
"shortName": "vsg",
"chainId": 420042,
"networkId": 420042,
"explorers": [
{
"name": "vscexplorer",
"url": "https://explorer.vscblockchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "Graphite Mainnet",
"chain": "Graphite",
"rpc": [
"https://anon-entrypoint-1.atgraphite.com",
"wss://ws-anon-entrypoint-1.atgraphite.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Graphite",
"symbol": "@G",
"decimals": 18
},
"infoURL": "https://atgraphite.com/",
"shortName": "graphite",
"chainId": 440017,
"networkId": 440017,
"slip44": 440017,
"icon": "graphite",
"explorers": [
{
"name": "Graphite Mainnet Explorer",
"url": "https://main.atgraphite.com",
"standard": "EIP3091"
}
]
},
{
"name": "World Chain Sepolia Testnet Deprecated",
"status": "deprecated",
"chain": "ETH",
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://worldcoin.org/",
"shortName": "wcsep-dep",
"rpc": [],
"faucets": [],
"chainId": 484752,
"networkId": 484752,
"slip44": 1
},
{
"name": "Gobbl Testnet",
"chain": "Gobbl Testnet",
"rpc": [
"https://rpc.gobbl.io"
],
"faucets": [
"https://faucet.gobbl.io"
],
"nativeCurrency": {
"name": "Gobbl Token",
"symbol": "GOBBL",
"decimals": 18
},
"infoURL": "https://www.gobbl.io/",
"shortName": "gbl-testnet",
"chainId": 486487,
"networkId": 486487,
"icon": "gobbl",
"explorers": [
{
"name": "Gobbl Testnet Explorer",
"url": "https://explorer.gobbl.io",
"standard": "EIP3091"
}
]
},
{
"name": "Autonomys Taurus Testnet",
"chain": "autonomys-taurus-testnet",
"rpc": [
"https://auto-evm.taurus.autonomys.xyz/ws"
],
"icon": "autonomys",
"faucets": [],
"nativeCurrency": {
"name": "AI3",
"symbol": "AI3",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.autonomys.xyz",
"shortName": "ATN",
"chainId": 490000,
"networkId": 490000,
"explorers": [
{
"name": "Autonomys Taurus Testnet Explorer",
"url": "https://blockscout.taurus.autonomys.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "PUMPFI CHAIN TESTNET",
"chain": "PUMPFI CHAIN TESTNET",
"rpc": [
"https://rpc1testnet.pumpfi.me"
],
"faucets": [
"https://faucet.pumpfi.me"
],
"nativeCurrency": {
"name": "PMPT",
"symbol": "PMPT",
"decimals": 18
},
"infoURL": "https://pumpfi.me",
"shortName": "pumpfi-testnet",
"chainId": 490092,
"networkId": 490092,
"explorers": [
{
"name": "Pumpfi Testnet Scan",
"url": "https://testnetscan.pumpfi.me",
"standard": "EIP3091"
}
]
},
{
"name": "OverProtocol Testnet",
"chain": "OverProtocol",
"icon": "overIcon",
"rpc": [
"https://rpc.dolphin.overprotocol.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Over",
"symbol": "OVER",
"decimals": 18
},
"infoURL": "https://docs.over.network",
"shortName": "overprotocol-testnet",
"chainId": 541764,
"networkId": 541764,
"explorers": [
{
"name": "OverView Testnet",
"url": "https://dolphin-scan.over.network",
"standard": "EIP3091"
}
]
},
{
"name": "ZERO Network",
"chain": "ZERONetwork",
"icon": "zero",
"rpc": [
"https://rpc.zerion.io/v1/zero"
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.zero.network"
}
]
},
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.zero.network",
"shortName": "zero-network",
"chainId": 543210,
"networkId": 543210,
"explorers": [
{
"name": "ZERO Network Explorer",
"url": "https://explorer.zero.network",
"standard": "EIP3091"
}
]
},
{
"name": "Pentagon Testnet",
"chain": "Pentagon",
"rpc": [
"https://rpc-testnet.pentagon.games"
],
"faucets": [
"https://bridge-testnet.pentagon.games"
],
"nativeCurrency": {
"name": "Pentagon",
"symbol": "PEN",
"decimals": 18
},
"icon": "pentagon-testnet",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://pentagon.games",
"shortName": "pentagon-testnet",
"chainId": 555555,
"networkId": 555555,
"explorers": [
{
"name": "Pentagon Testnet Explorer",
"url": "https://explorer-testnet.pentagon.games",
"icon": "pentagon",
"standard": "EIP3091"
}
]
},
{
"name": "DustBoy IoT",
"title": "DustBoy IoT",
"status": "active",
"chain": "DUSTBOY",
"rpc": [
"https://dustboy-rpc.jibl2.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "DST",
"decimals": 18
},
"infoURL": "https://www.cmuccdc.org/",
"shortName": "DustBoy_IoT",
"chainId": 555888,
"networkId": 555888,
"slip44": 1,
"icon": "dustboy",
"explorers": [
{
"name": "blockscout",
"url": "https://dustboy.jibl2.com",
"standard": "EIP3091",
"icon": "dustboy"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "DJT Testnet",
"chain": "DJT",
"icon": "djt",
"rpc": [
"https://testnet-rpc.trumpchain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "TrumpChain",
"symbol": "DJT",
"decimals": 18
},
"infoURL": "https://testnet-explorer.trumpchain.io",
"shortName": "DJT",
"chainId": 621847,
"networkId": 621847,
"explorers": [
{
"name": "DJT Testnet Explorer",
"url": "https://testnet-explorer.trumpchain.io",
"icon": "djt",
"standard": "EIP3091"
}
]
},
{
"name": "Atlas",
"title": "Atlas Testnet",
"chain": "ATLAS",
"icon": "atlas",
"rpc": [
"https://rpc.testnet.atl.network"
],
"faucets": [],
"nativeCurrency": {
"name": "TON",
"symbol": "TON",
"decimals": 18
},
"infoURL": "https://atl.network",
"shortName": "atlas-testnet",
"chainId": 622463,
"networkId": 622463,
"explorers": [
{
"name": "Atlas Testnet Scan",
"url": "https://explorer.testnet.atl.network",
"icon": "atlas",
"standard": "EIP3091"
}
]
},
{
"name": "Polter Testnet",
"chain": "Geist",
"rpc": [
"https://geist-polter.g.alchemy.com/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Polter GHST",
"symbol": "GHST",
"decimals": 18
},
"features": [],
"infoURL": "https://playongeist.com",
"shortName": "poltergeist",
"chainId": 631571,
"networkId": 631571,
"status": "active",
"icon": "polterGeist",
"explorers": [
{
"name": "Polter Testnet Explorer",
"url": "https://polter-testnet.explorer.alchemy.com",
"standard": "EIP3091"
}
]
},
{
"name": "EDU Chain Testnet",
"chain": "EDU Chain Testnet",
"icon": "open-campus-codex",
"rpc": [
"https://rpc.open-campus-codex.gelato.digital"
],
"faucets": [],
"nativeCurrency": {
"name": "EDU",
"symbol": "EDU",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/open-campus-codex",
"shortName": "open-campus-codex",
"chainId": 656476,
"networkId": 656476,
"explorers": [
{
"name": "Open Campus Codex",
"url": "https://edu-chain-testnet.blockscout.com",
"icon": "open-campus-codex",
"standard": "none"
}
]
},
{
"name": "Conwai Mainnet",
"chain": "CNW",
"rpc": [
"https://conwai.calderachain.xyz/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Conwai",
"symbol": "CNW",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://conwai.net",
"shortName": "cnw",
"chainId": 668668,
"networkId": 668668,
"icon": "conwai",
"explorers": [
{
"name": "conwaiscan",
"icon": "conwaiscan",
"url": "https://conwai.calderaexplorer.xyz",
"standard": "EIP3091"
}
]
},
{
"name": "Primea Chain",
"chain": "Primea Chain",
"rpc": [
"https://rpc.primeanetwork.com"
],
"faucets": [],
"nativeCurrency": {
"name": "PrimeaCoin",
"symbol": "PRIM",
"decimals": 18
},
"infoURL": "https://primeanetwork.com",
"shortName": "prim",
"chainId": 698369,
"networkId": 698369,
"icon": "prim",
"explorers": []
},
{
"name": "Fidesinnova",
"chain": "Fidesinnova",
"rpc": [
"https://fidesf1-rpc.fidesinnova.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Fidesinnova",
"symbol": "FDS",
"decimals": 18
},
"infoURL": "https://fidesinnova1.gitbook.io/fidesinnova",
"shortName": "Fidesinnova",
"chainId": 706883,
"networkId": 706883,
"explorers": [
{
"name": "Fidesinnova Blockchain Explorer",
"url": "https://explorer.fidesinnova.io",
"standard": "none"
}
]
},
{
"name": "Zether Mainnet",
"chain": "Zether",
"rpc": [
"https://rpc.zether.org",
"https://rpc.zthscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Zether",
"symbol": "ZTH",
"decimals": 18
},
"infoURL": "https://zether.org",
"shortName": "zth",
"chainId": 715131,
"networkId": 715131,
"icon": "zether",
"explorers": [
{
"name": "zthscan",
"url": "https://zthscan.com",
"icon": "zether",
"standard": "none"
}
]
},
{
"name": "ERAM Mainnet",
"chain": "ERAM",
"icon": "eram",
"rpc": [
"https://mainnet-rpc.eramscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ERAM",
"symbol": "ERAM",
"decimals": 18
},
"infoURL": "http://doc.eramscan.com/",
"shortName": "ERAM",
"chainId": 721529,
"networkId": 721529,
"explorers": [
{
"name": "Eramscan",
"url": "https://eramscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "TixChain Testnet",
"chain": "TIXCHAIN",
"rpc": [
"https://subnets.avax.network/tixchain/testnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "TIX Token",
"symbol": "TIX",
"decimals": 18
},
"infoURL": "https://subnets-test.avax.network/tixchain/details",
"shortName": "tixchain",
"chainId": 723107,
"networkId": 723107,
"explorers": [
{
"name": "TixChain Testnet Subnet Explorer",
"url": "https://subnets-test.avax.network/tixchain",
"standard": "EIP3091"
}
]
},
{
"name": "Ternoa Testnet",
"chain": "Ternoa",
"rpc": [
"https://rpc.zkevm.ternoa.network"
],
"faucets": [
"https://faucet.zkevm.ternoa.network"
],
"nativeCurrency": {
"name": "Capsule Coin",
"symbol": "CAPS",
"decimals": 18
},
"infoURL": "",
"shortName": "ternoa",
"chainId": 752024,
"networkId": 7502024,
"explorers": [
{
"name": "Tracehawk",
"url": "https://explorer.zkevm.ternoa.network",
"standard": "none"
}
]
},
{
"name": "Ternoa",
"chain": "Ternoa",
"rpc": [
"https://rpc-mainnet.zkevm.ternoa.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Capsule Coin",
"symbol": "CAPS",
"decimals": 18
},
"infoURL": "",
"shortName": "ternoa-mainnet",
"chainId": 752025,
"networkId": 7502025,
"explorers": [
{
"name": "Tracehawk",
"url": "https://explorer-mainnet.zkevm.ternoa.network",
"standard": "none"
}
]
},
{
"name": "PAYSCAN CHAIN",
"chain": "PAYSCAN CHAIN",
"rpc": [
"https://rpc.payscan.live"
],
"faucets": [],
"nativeCurrency": {
"name": "PYZ",
"symbol": "PYZ",
"decimals": 18
},
"infoURL": "https://payscan.live",
"shortName": "payscan",
"chainId": 756689,
"networkId": 756689,
"slip44": 108,
"explorers": [
{
"name": "PAYSCAN CHAIN",
"url": "https://payscan.live",
"standard": "EIP3091"
}
]
},
{
"name": "Ink Sepolia",
"chain": "ETH",
"rpc": [
"https://rpc-gel-sepolia.inkonchain.com",
"wss://ws-gel-sepolia.inkonchain.com"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://inkonchain.com/",
"shortName": "inksepolia",
"chainId": 763373,
"networkId": 763373,
"explorers": [
{
"name": "Ink Sepolia Explorer",
"url": "https://explorer-sepolia.inkonchain.com",
"standard": "EIP3091"
}
]
},
{
"name": "Zebro Smart Chain",
"chain": "ZEBRO",
"rpc": [
"https://rpc.zebrocoin.app",
"https://rpc1.zebrocoin.app"
],
"faucets": [],
"nativeCurrency": {
"name": "Zebrocoin",
"symbol": "ZEBRO",
"decimals": 18
},
"infoURL": "https://zebrocoin.app",
"shortName": "zebro",
"chainId": 786786,
"networkId": 786786,
"icon": "zebrocoin",
"explorers": [
{
"name": "Zebrocoin Explorer",
"url": "https://explorer.zebrocoin.app",
"standard": "EIP3091"
},
{
"name": "Zebrocoin Explorer1",
"url": "https://explorer1.zebrocoin.app",
"standard": "EIP3091"
}
]
},
{
"name": "Emeraldz",
"chain": "EMED",
"rpc": [
"https://public.0xrpc.com/789789"
],
"faucets": [],
"nativeCurrency": {
"name": "EMERALDZ",
"symbol": "EMED",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://emeraldzscan.com",
"shortName": "emed",
"chainId": 789789,
"networkId": 789789,
"explorers": [
{
"name": "Emeraldz Explorer",
"url": "https://emeraldzscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "BOB Sepolia",
"chain": "ETH",
"rpc": [
"https://bob-sepolia.rpc.gobob.xyz",
"wss://bob-sepolia.rpc.gobob.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://gobob.xyz",
"shortName": "bob-sepolia",
"chainId": 808813,
"networkId": 808813,
"icon": "bob",
"explorers": [
{
"name": "bobscout",
"url": "https://bob-sepolia.explorer.gobob.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"status": "active",
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bob-sepolia.gobob.xyz/"
}
]
}
},
{
"name": "SG Verse Mainnet",
"chain": "SG Verse",
"icon": "sg_verse",
"rpc": [
"https://rpc.sgverse.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "OAS",
"symbol": "OAS",
"decimals": 18
},
"infoURL": "",
"shortName": "SGV",
"chainId": 812397,
"networkId": 812397,
"explorers": [
{
"name": "SG Verse Explorer",
"url": "https://explorer.sgverse.net",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-248"
}
},
{
"name": "exSat Testnet",
"chain": "exSat",
"icon": "exsat",
"rpc": [
"https://evm-tst3.exsat.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcoin",
"symbol": "BTC",
"decimals": 18
},
"infoURL": "https://exsat.network/",
"shortName": "txsat",
"chainId": 839999,
"networkId": 839999,
"explorers": [
{
"name": "exSat Testnet Explorer",
"url": "https://scan-testnet.exsat.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": ""
}
]
}
},
{
"name": "RUNEVM Testnet",
"chain": "RuneVM",
"rpc": [
"https://rpc.runevm.io/"
],
"faucets": [
"https://faucet.runevm.io/"
],
"nativeCurrency": {
"name": "Test Bitcoin",
"symbol": "tBTC",
"decimals": 8
},
"infoURL": "",
"shortName": "runevm-test",
"chainId": 840000,
"networkId": 840000,
"explorers": [
{
"name": "Tracehawk",
"url": "https://explorer.runevm.io",
"standard": "none"
}
]
},
{
"name": "Unite Testnet",
"chain": "UNITE",
"rpc": [
"https://unite-testnet.g.alchemy.com/public"
],
"faucets": [],
"nativeCurrency": {
"name": "Testnet Unite",
"symbol": "UNITE",
"decimals": 18
},
"infoURL": "https://unite.io",
"shortName": "unitetestnet",
"chainId": 888991,
"networkId": 888991,
"status": "active",
"explorers": [
{
"name": "Unite Testnet Explorer",
"url": "https://unite-testnet.explorer.alchemy.com",
"standard": "EIP3091"
}
]
},
{
"name": "Odyssey Testnet",
"chain": "ETH",
"rpc": [
"https://odyssey.ithaca.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://ithaca.xyz",
"shortName": "odyssey-testnet",
"chainId": 911867,
"networkId": 911867,
"explorers": [
{
"name": "odyssey explorer",
"url": "https://odyssey-explorer.ithaca.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Owshen Mainnet",
"chain": "ETH",
"status": "active",
"icon": "owshen",
"rpc": [
"https://rpc.owshen.io"
],
"faucets": [],
"nativeCurrency": {
"name": "DIVE",
"symbol": "DIVE",
"decimals": 18
},
"infoURL": "https://owshen.io",
"shortName": "owshen-mainnet",
"chainId": 918273,
"networkId": 918273,
"explorers": []
},
{
"name": "Treasure Ruby",
"chainId": 978657,
"shortName": "treasure-ruby",
"chain": "TRS",
"networkId": 978657,
"nativeCurrency": {
"name": "Testnet MAGIC",
"symbol": "MAGIC",
"decimals": 18
},
"slip44": 1,
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://app.treasure.lol",
"icon": "treasureruby",
"rpc": [],
"faucets": [],
"status": "deprecated",
"explorers": [],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": []
}
},
{
"name": "Treasure Topaz",
"chain": "Treasure Topaz",
"shortName": "treasure-topaz",
"chainId": 978658,
"networkId": 978658,
"nativeCurrency": {
"name": "Testnet MAGIC",
"symbol": "MAGIC",
"decimals": 18
},
"slip44": 1,
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://app.treasure.lol",
"icon": "treasuretopaz",
"rpc": [
"https://rpc.topaz.treasure.lol",
"wss://rpc.topaz.treasure.lol/ws"
],
"faucets": [
"https://app.treasure.lol/chain/faucet",
"https://thirdweb.com/treasure-topaz"
],
"explorers": [
{
"name": "Treasure Topaz Block Explorer",
"url": "https://topaz.treasurescan.io",
"icon": "treasure",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://app.treasure.lol/chain/bridge"
}
]
}
},
{
"name": "Supernet Testnet",
"title": "Supernet Testnet",
"chain": "Supernet Testnet",
"rpc": [
"https://testnet-rpc.supernet.chaingames.io/"
],
"faucets": [
"https://faucet.chaingames.io"
],
"nativeCurrency": {
"name": "CHAIN",
"symbol": "CHAIN",
"decimals": 18
},
"infoURL": "",
"shortName": "supernetchain",
"chainId": 998899,
"networkId": 998899,
"slip44": 1,
"explorers": [
{
"name": "supernet-testnet-explorer",
"url": "https://testnet-explorer.supernet.chaingames.io",
"standard": "EIP3091"
}
]
},
{
"name": "1Money Network Testnet",
"chain": "1Money Testnet",
"rpc": [
"https://testnet.1money.network"
],
"faucets": [],
"nativeCurrency": {
"name": "USD1",
"symbol": "USD1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://1money.com",
"shortName": "1money-testnet",
"chainId": 1212101,
"networkId": 1212101,
"explorers": []
},
{
"name": "Sharecle Mainnet",
"chain": "SHARECLE",
"icon": "sharecle",
"rpc": [
"https://mainnet.sharecle.com"
],
"faucets": [],
"nativeCurrency": {
"name": "SHARECLE COIN",
"symbol": "SHR",
"decimals": 18
},
"infoURL": "https://sharecle.com/",
"shortName": "shr",
"chainId": 1234567,
"networkId": 1234567,
"slip44": 1,
"explorers": [
{
"name": "Etherscan",
"url": "https://etherscan.io",
"standard": "none",
"icon": "sharecle"
}
]
},
{
"name": "Automata Orbit Testnet",
"chain": "Automata Orbit Testnet",
"rpc": [
"https://rpc-orbit-testnet.ata.network"
],
"faucets": [],
"nativeCurrency": {
"name": "ATA",
"symbol": "ATA",
"decimals": 18
},
"infoURL": "https://ata.network",
"shortName": "automataorbittestnet",
"chainId": 1398244,
"networkId": 1398244,
"icon": "automata",
"explorers": [
{
"name": "Automata Orbit Testnet Explorer",
"url": "https://automata-orbit-testnet-explorer.alt.technology",
"standard": "EIP3091"
}
]
},
{
"name": "Waterfall 9 Test Network",
"chain": "Waterfall TestNet9",
"rpc": [
"https://rpc.testnet9.waterfall.network"
],
"faucets": [
"https://faucet.testnet9.waterfall.network"
],
"nativeCurrency": {
"name": "WATER",
"symbol": "WATER",
"decimals": 18
},
"features": [
{
"name": "EIP1559"
}
],
"infoURL": "https://waterfall.network",
"shortName": "water9",
"chainId": 1501869,
"networkId": 1501869,
"icon": "waterfall",
"explorers": [
{
"name": "Waterfall Explorer Testnet9",
"url": "https://explorer.testnet9.waterfall.network",
"icon": "waterfall",
"standard": "EIP3091"
}
]
},
{
"name": "Xterio Testnet",
"chain": "Xterio Testnet",
"rpc": [
"https://xterio-testnet.alt.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "tBNB",
"symbol": "tBNB",
"decimals": 18
},
"infoURL": "https://xter.io",
"shortName": "xteriotest",
"chainId": 1637450,
"networkId": 1637450,
"explorers": [
{
"name": "Xterio Testnet Explorer",
"url": "https://testnet.xterscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Xphere Testnet",
"chain": "Xphere Testnet",
"icon": "xphere",
"rpc": [
"http://testnet.x-phere.com"
],
"features": [
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Xphere Testnet",
"symbol": "XPT",
"decimals": 18
},
"infoURL": "https://x-phere.com/",
"shortName": "xp-test",
"chainId": 1998991,
"networkId": 1998991,
"explorers": []
},
{
"name": "Coinweb BNB shard",
"title": "Coinweb BNB shard",
"chain": "CWEB BNB",
"rpc": [
"https://api-cloud.coinweb.io/eth-rpc-service/bnb"
],
"faucets": [],
"nativeCurrency": {
"name": "CWEB",
"symbol": "CWEB",
"decimals": 18
},
"infoURL": "https://coinweb.io",
"shortName": "cweb-bnb",
"chainId": 2222222,
"networkId": 2222222,
"slip44": 1,
"explorers": [
{
"name": "Coinweb block explorer",
"url": "https://explorer.coinweb.io",
"standard": "none"
}
]
},
{
"name": "Xterio Chain (ETH)",
"chain": "Xterio",
"rpc": [
"https://xterio-eth.alt.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://xter.io",
"shortName": "xterio",
"chainId": 2702128,
"networkId": 2702128,
"explorers": [
{
"name": "Xterio Chain (ETH) Explorer",
"url": "https://eth.xterscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Zuux chain testnet",
"title": "Zuux chain testnet",
"chain": "zuuxchain",
"icon": "zuuxchain",
"rpc": [
"https://rpc.zuux.network"
],
"features": [
{
"name": "none"
}
],
"faucets": [
"https://www.zuuxlend.xyz/faucet"
],
"nativeCurrency": {
"name": "ZUUX",
"symbol": "ZUUX",
"decimals": 18
},
"infoURL": "https://www.zuux.network",
"shortName": "zuuxchain",
"chainId": 4284265,
"networkId": 4284265,
"explorers": [
{
"name": "Zuux chain explorer",
"url": "https://blockscout.zuux.network",
"standard": "EIP3091"
},
{
"name": "Zuux chain explorer",
"url": "https://explorer.zuux.network",
"standard": "EIP3091"
}
]
},
{
"name": "Altar Testnet",
"chain": "Altar",
"rpc": [
"https://altar-rpc.ceremonies.ai/"
],
"faucets": [
"https://sepoliafaucet.com/"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://ceremonies.gitbook.io",
"shortName": "altarTestnet",
"chainId": 4444444,
"networkId": 4444444,
"slip44": 1,
"icon": "altarTestnet",
"explorers": [
{
"name": "altar testnet explorer",
"url": "https://altar-explorer.ceremonies.ai",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://altar-testnet-yzxhzk61ck-b7590e4db247a680.testnets.rollbridge.app/"
}
]
}
},
{
"name": "ZERO Testnet (Sepolia)",
"chain": "ETH",
"icon": "zero-sepolia",
"rpc": [
"https://rpc.zerion.io/v1/zero-sepolia"
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.zero.network"
}
]
},
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.zero.network",
"shortName": "zero-sepolia",
"chainId": 4457845,
"networkId": 4457845,
"slip44": 1,
"explorers": [
{
"name": "ZERO Testnet Explorer",
"url": "https://explorer.zero.network",
"standard": "EIP3091"
}
]
},
{
"name": "PointPay Testnet",
"chain": "pointpay",
"rpc": [
"https://rpc-testnet.pointpay.io"
],
"faucets": [],
"nativeCurrency": {
"name": "PointPay",
"symbol": "PXP",
"decimals": 18
},
"infoURL": "https://pointpay.io",
"shortName": "PPTEST",
"chainId": 5511555,
"networkId": 5511555,
"icon": "pointpay",
"explorers": [
{
"name": "PointPay Testnet Explorer",
"url": "https://testnet.pointpay.io",
"icon": "pointpay",
"standard": "EIP3091"
}
]
},
{
"name": "Block Chain LOL Berachain Testnet",
"chain": "Block Chain LOL Berachain",
"rpc": [
"https://block-chain.alt.technology"
],
"faucets": [
"https://faucet.block-chain.lol/"
],
"nativeCurrency": {
"name": "HarryPotterObamaSonic10Inu",
"symbol": "HARRY",
"decimals": 18
},
"infoURL": "https://block-chain.lol/",
"shortName": "block-chain-lol-testnet",
"chainId": 6231991,
"networkId": 6231991,
"explorers": [
{
"name": "Block Chain LOL Berachain Testnet Blockscout Explorer",
"url": "https://explorer.block-chain.lol",
"standard": "EIP3091"
}
]
},
{
"name": "The Ting Blockchain Testnet Explorer",
"chain": "Ting",
"rpc": [
"https://testnet.tingchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Ton",
"symbol": "Ton",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://tingscan.com",
"shortName": "ting-testnet",
"chainId": 6666689,
"networkId": 6666689,
"explorers": [
{
"name": "TingScan",
"url": "https://tingscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "COTI Testnet",
"title": "COTI Testnet",
"chain": "COTI",
"icon": "coti",
"rpc": [
"https://testnet.coti.io/rpc",
"https://testnet-magnus-validator.coti.io/rpc",
"https://testnet-minor-validator.coti.io/rpc"
],
"faucets": [
"https://faucet.coti.io"
],
"nativeCurrency": {
"name": "COTI",
"symbol": "COTI",
"decimals": 18
},
"infoURL": "https://coti.io/",
"shortName": "coti-testnet",
"chainId": 7082400,
"networkId": 7082400,
"explorers": [
{
"name": "COTI Testnet Explorer",
"url": "https://testnet.cotiscan.io",
"icon": "ethernal",
"standard": "EIP3091"
}
]
},
{
"name": "Ozean Poseidon Testnet",
"chain": "Ozean Poseidon",
"rpc": [
"https://ozean-testnet.rpc.caldera.xyz/http",
"wss://ozean-testnet.rpc.caldera.xyz/ws"
],
"faucets": [
"https://ozean-testnet.hub.caldera.xyz"
],
"nativeCurrency": {
"name": "USDX",
"symbol": "USDX",
"decimals": 18
},
"infoURL": "https://docs.ozean.finance",
"shortName": "ozean-poseidon",
"chainId": 7849306,
"networkId": 7849306,
"icon": "ozean",
"status": "active",
"explorers": [
{
"name": "Ozean Testnet Explorer",
"url": "https://ozean-testnet.explorer.caldera.xyz",
"icon": "ozean",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "Fhenix Helium",
"chain": "tFHE",
"rpc": [
"https://api.helium.fhenix.zone"
],
"faucets": [
"https://get-helium.fhenix.zone"
],
"nativeCurrency": {
"name": "tFHE",
"symbol": "tFHE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.fhenix.io",
"shortName": "fhe-helium",
"chainId": 8008135,
"networkId": 8008135,
"explorers": [
{
"name": "Fhenix Helium Explorer (Blockscout)",
"url": "https://explorer.helium.fhenix.zone",
"standard": "EIP3091"
}
]
},
{
"name": "Fluence",
"chain": "Fluence",
"rpc": [
"https://rpc.mainnet.fluence.dev/",
"wss://ws.mainnet.fluence.dev/"
],
"faucets": [],
"nativeCurrency": {
"name": "FLT",
"symbol": "FLT",
"decimals": 18
},
"infoURL": "https://fluence.network/",
"shortName": "fluence",
"chainId": 9999999,
"networkId": 9999999,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.mainnet.fluence.dev",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "Spotlight",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://spotlightchain.com/",
"shortName": "spotlight",
"chainId": 10058111,
"networkId": 10058111,
"status": "incubating"
},
{
"name": "Spotlight Sepolia Testnet",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://spotlightchain.com/",
"shortName": "spotlightsep",
"chainId": 10058112,
"networkId": 10058112,
"status": "incubating"
},
{
"name": "AlienX Mainnet",
"chain": "AlienX Mainnet",
"rpc": [
"https://rpc.alienxchain.io/http"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://alienxchain.io/home",
"shortName": "AlienX",
"chainId": 10241024,
"networkId": 10241024,
"icon": "alienx",
"explorers": [
{
"name": "AlienXChain Explorer",
"url": "https://explorer.alienxchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Blessnet Sepolia",
"chain": "ETH",
"rpc": [
"https://blessnet-sepolia-testnet.rpc.caldera.xyz/http",
"wss://blessnet-sepolia-testnet.rpc.caldera.xyz/ws"
],
"faucets": [
"https://blessnet-sepolia-testnet.hub.caldera.xyz"
],
"nativeCurrency": {
"name": "Bless",
"symbol": "BLESS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://blessnet.io",
"shortName": "bless-sepolia",
"chainId": 11145513,
"networkId": 11145513,
"icon": "bless",
"explorers": [
{
"name": "blockscout",
"url": "https://blessnet-sepolia-testnet.explorer.caldera.xyz",
"icon": "bless",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://blessnet-sepolia-testnet.bridge.caldera.xyz"
}
]
}
},
{
"name": "R0AR Testnet",
"chain": "R0AR Testnet",
"rpc": [
"https://testnet.rpc-r0ar.io"
],
"faucets": [
"https://testnet.r0arfaucet.io"
],
"nativeCurrency": {
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://testnet.r0arscan.io",
"shortName": "R0AR-Test-Chain",
"chainId": 11166111,
"networkId": 11166111,
"explorers": [
{
"name": "tracehawk",
"url": "https://testnet.r0arscan.io",
"standard": "none"
}
]
},
{
"name": "Lummio Network",
"chain": "Lummio Network",
"rpc": [
"https://rpc.lummio.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Lummio Reward Points",
"symbol": "LRPO",
"decimals": 18
},
"infoURL": "https://lummio.net",
"shortName": "lummio",
"chainId": 12020498,
"networkId": 12020498,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.lummio.net",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Memento Testnet",
"chain": "Memento",
"rpc": [
"https://test-rpc.mementoblockchain.com/IRkghvI3FfEArEJMr4zC/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "",
"shortName": "memento-test",
"chainId": 12052024,
"networkId": 12052024,
"explorers": [
{
"name": "Tracehawk",
"url": "https://test-explorer.mementoblockchain.com",
"standard": "none"
}
]
},
{
"name": "NeoX Testnet T3",
"chain": "NeoX",
"rpc": [
"https://neoxseed1.ngd.network/"
],
"faucets": [],
"nativeCurrency": {
"name": "Gas",
"symbol": "GAS",
"decimals": 18
},
"infoURL": "https://neo.org/",
"shortName": "neox",
"chainId": 12227331,
"networkId": 12227331,
"icon": "neox",
"explorers": [
{
"name": "neox-scan",
"url": "https://testnet.scan.banelabs.org",
"standard": "EIP3091"
}
],
"status": "deprecated"
},
{
"name": "Neo X Testnet T4",
"chain": "Neo X",
"rpc": [
"https://testnet.rpc.banelabs.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Gas",
"symbol": "GAS",
"decimals": 18
},
"infoURL": "https://neo.org/",
"shortName": "neox-t4",
"chainId": 12227332,
"networkId": 12227332,
"icon": "neox",
"explorers": [
{
"name": "neox-scan",
"url": "https://xt4scan.ngd.network",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": " Privix Chain Mainnet",
"chain": "PSC",
"rpc": [
"https://mainnet-rpc.privixchain.xyz/",
"wss://mainnet-rpc.privixchain.xyz/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Privix Coin",
"symbol": "PSC",
"decimals": 18
},
"infoURL": "https://privix.co/",
"shortName": "mpsc",
"chainId": 16969696,
"networkId": 16969696,
"icon": "privix",
"explorers": [
{
"name": "blockscout",
"url": "https://privixscan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Mande Network Mainnet",
"chain": "Mande",
"rpc": [
"https://mande-mainnet.public.blastapi.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Mand",
"symbol": "MAND",
"decimals": 18
},
"infoURL": "https://mande.network/",
"shortName": "Mande",
"chainId": 18071918,
"networkId": 18071918,
"icon": "mande",
"explorers": [
{
"name": "FYI",
"url": "https://dym.fyi/r/mande",
"icon": "fyi",
"standard": "EIP3091"
}
]
},
{
"name": "DeepBrainChain Testnet",
"chain": "DeepBrainChain",
"rpc": [
"https://rpc-testnet.dbcwallet.io"
],
"faucets": [],
"nativeCurrency": {
"name": "DeepBrainChain",
"symbol": "tDBC",
"decimals": 18
},
"infoURL": "https://www.deepbrainchain.org",
"shortName": "tDBC",
"chainId": 19850818,
"icon": "dbc",
"networkId": 19850818,
"slip44": 1,
"explorers": [
{
"name": "DeepBrainChain Testnet",
"url": "https://testnet.dbcscan.io",
"icon": "dbc",
"standard": "EIP3091"
}
]
},
{
"name": "DeepBrainChain Mainnet",
"chain": "DeepBrainChain",
"rpc": [
"https://rpc.dbcwallet.io"
],
"faucets": [],
"nativeCurrency": {
"name": "DeepBrainChain",
"symbol": "DBC",
"decimals": 18
},
"infoURL": "https://www.deepbrainchain.org",
"shortName": "DBC",
"chainId": 19880818,
"networkId": 19880818,
"icon": "dbc",
"slip44": 1,
"explorers": [
{
"name": "DeepBrainChain Mainnet",
"url": "https://www.dbcscan.io",
"icon": "dbc",
"standard": "EIP3091"
}
]
},
{
"name": "SoonChain Sepolia Devnet",
"chain": "SoonChain Devnet Sepolia",
"rpc": [
"https://sepolia.rpc.soonchain.ai"
],
"faucets": [
"https://console.optimism.io/faucet"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://soonchain.ai",
"shortName": "Soon-Devnet",
"chainId": 20221001,
"networkId": 20221001,
"icon": "soonchain",
"explorers": [
{
"name": "Soon Scan",
"url": "https://sepolia.explorer.soonchain.ai",
"standard": "none"
}
]
},
{
"name": "Vcity Testnet",
"chain": "VCITY",
"rpc": [
"https://testnet.vcity.app"
],
"faucets": [],
"nativeCurrency": {
"name": "Testnet Vcity Token",
"symbol": "VCITY",
"decimals": 18
},
"features": [],
"infoURL": "https://vcity.app",
"shortName": "Vcity",
"chainId": 20230825,
"networkId": 20230825,
"icon": "vcity",
"explorers": [
{
"name": "Vcity Explorer",
"url": "https://scan.vcity.app",
"icon": "vcity",
"standard": "EIP3091"
}
]
},
{
"name": "DBK Chain",
"chain": "DBK Chain",
"rpc": [
"https://rpc.mainnet.dbkchain.io"
],
"icon": "dbkchain",
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.dbkchain.io",
"shortName": "dbkchain",
"chainId": 20240603,
"networkId": 20240603,
"explorers": [
{
"name": "DBK Chain Explorer",
"url": "https://scan.dbkchain.io",
"standard": "EIP3091"
}
]
},
{
"name": "ETP Mainnet",
"chain": "ETP",
"rpc": [
"https://rpc.etpscan.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "ETP Chain Native Token",
"symbol": "ETP",
"decimals": 18
},
"infoURL": "https://www.etposchain.com",
"shortName": "ETP",
"chainId": 20256789,
"networkId": 20256789,
"icon": "etpchain",
"explorers": [
{
"name": "ETPScan",
"url": "https://etpscan.xyz",
"icon": "etpchain",
"standard": "EIP3091"
}
]
},
{
"name": "Corn",
"chain": "BTCN",
"rpc": [
"https://mainnet.corn-rpc.com",
"https://rpc.ankr.com/corn_maizenet",
"https://maizenet-rpc.usecorn.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcorn",
"symbol": "BTCN",
"decimals": 18
},
"infoURL": "https://usecorn.com",
"shortName": "corn",
"chainId": 21000000,
"networkId": 21000000,
"icon": "corn",
"explorers": [
{
"name": "Corn Explorer",
"url": "https://cornscan.io",
"standard": "EIP3091"
},
{
"name": "Corn Blockscout",
"url": "https://maizenet-explorer.usecorn.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1"
}
},
{
"name": "Corn Testnet",
"chain": "BTCN",
"rpc": [
"https://testnet.corn-rpc.com",
"https://rpc.ankr.com/corn_testnet",
"https://testnet-rpc.usecorn.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Bitcorn",
"symbol": "BTCN",
"decimals": 18
},
"infoURL": "https://usecorn.com",
"shortName": "corn-testnet",
"chainId": 21000001,
"networkId": 21000001,
"explorers": [
{
"name": "Corn Testnet Explorer",
"url": "https://testnet.cornscan.io",
"standard": "EIP3091"
},
{
"name": "Corn Testnet Blockscout",
"url": "https://testnet-explorer.usecorn.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "XMTP",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "USDC",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://xmtp.org",
"shortName": "xmtp",
"chainId": 24132016,
"networkId": 24132016,
"status": "incubating"
},
{
"name": "6Degree of Outreach - Testnet",
"chain": "6DO",
"rpc": [
"https://rpc-testnet.6do.world"
],
"faucets": [],
"nativeCurrency": {
"name": "6Degree-Testnet Coin",
"symbol": "6DO-T",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://6do.world",
"shortName": "6dotest",
"chainId": 24772477,
"networkId": 24772477,
"icon": "6do",
"explorers": [
{
"name": "6Degree Testnet Chain Explorer",
"url": "https://explorer-testnet.6do.world",
"standard": "EIP3091"
}
]
},
{
"name": "Toliman Suave Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.toliman.suave.flashbots.net"
],
"faucets": [
"https://faucet.toliman.suave.flashbots.net"
],
"nativeCurrency": {
"name": "SUAVE Toliman Eth",
"symbol": "TEEth",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://suave-alpha.flashbots.net/toliman",
"shortName": "suave-toliman",
"chainId": 33626250,
"networkId": 33626250,
"explorers": [
{
"name": "Blockscout",
"url": "https://explorer.toliman.suave.flashbots.net",
"standard": "EIP3091"
}
]
},
{
"name": "Xone Testnet",
"chain": "XOC",
"icon": "xone-test",
"rpc": [
"https://rpc-testnet.xone.plus",
"https://rpc-testnet.xone.org",
"https://rpc-testnet.knight.center"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.xone.org/"
],
"nativeCurrency": {
"name": "Xone Coin",
"symbol": "XOC",
"decimals": 18
},
"infoURL": "https://xone.org",
"shortName": "txoc",
"chainId": 33772211,
"networkId": 33772211,
"explorers": [
{
"name": "testnet-xscscan",
"url": "https://testnet.xscscan.com",
"icon": "testnet-xscscan",
"standard": "EIP3091"
}
]
},
{
"name": "citronus-citro",
"title": "Citronus-Citro",
"chain": "citronus-citro",
"rpc": [
"https://rpc.citro-testnet.t.raas.gelato.cloud",
"wss://testnet-ws.eh-dev.app"
],
"nativeCurrency": {
"name": "Citronus",
"symbol": "CITRO",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/citronus-citro",
"faucets": [],
"shortName": "citronus-citro",
"chainId": 34949059,
"networkId": 34949059,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://test.citronus.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge.gelato.network/bridge/citronus-citro"
}
]
},
"status": "active"
},
{
"name": "Stavanger Public Testnet",
"chain": "stavanger",
"rpc": [
"https://rpc.stavanger.gateway.fm"
],
"faucets": [
"https://faucet.stavanger.gateway.fm"
],
"nativeCurrency": {
"name": "Polygon",
"symbol": "POL",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://gateway.fm",
"shortName": "stavanger",
"chainId": 50591822,
"networkId": 50591822,
"icon": "stavanger",
"explorers": [
{
"name": "BlockScout",
"url": "https://explorer.stavanger.gateway.fm",
"icon": "stavanger",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.stavanger.gateway.fm"
}
]
}
},
{
"name": "Deviant Token Blockchain",
"chain": "DTBC",
"status": "incubating",
"rpc": [
"https://rpc.devianttoken.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Deviant Token",
"symbol": "DTBC",
"decimals": 18
},
"infoURL": "https://devianttoken.net",
"shortName": "dtbc",
"chainId": 52027071,
"networkId": 52027071,
"explorers": []
},
{
"name": "Deviant Token Blockchain Testnet",
"chain": "tDTBC",
"status": "incubating",
"rpc": [
"https://trpc.devianttoken.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Deviant Token Testnet",
"symbol": "tDTBC",
"decimals": 18
},
"infoURL": "https://devianttoken.net",
"shortName": "tdtbc",
"chainId": 52027080,
"networkId": 52027080,
"explorers": []
},
{
"name": "Fluence Testnet",
"chain": "Fluence Testnet",
"rpc": [
"https://rpc.testnet.fluence.dev/",
"wss://ws.testnet.fluence.dev/"
],
"faucets": [],
"nativeCurrency": {
"name": "tFLT",
"symbol": "tFLT",
"decimals": 18
},
"infoURL": "https://fluence.network/",
"shortName": "fluence-testnet",
"chainId": 52164803,
"networkId": 52164803,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.testnet.fluence.dev",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "Autonity Bakerloo (Yamuna) Testnet",
"status": "deprecated",
"chain": "AUT",
"rpc": [],
"faucets": [
"https://faucet.autonity.org/"
],
"nativeCurrency": {
"name": "Bakerloo Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "bakerloo-03",
"chainId": 65010003,
"networkId": 65010003,
"slip44": 1,
"icon": "autonity",
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://bakerloo.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "Autonity Piccadilly (Yamuna) Testnet",
"status": "deprecated",
"chain": "AUT",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Piccadilly Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "piccadilly-03",
"chainId": 65100003,
"networkId": 65100003,
"slip44": 1,
"icon": "autonity",
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://piccadilly.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "Autonity Piccadilly (Tiber) Testnet",
"chain": "AUT",
"rpc": [
"https://autonity.rpc.web3cdn.network/testnet",
"wss://autonity.rpc.web3cdn.network/testnet/ws",
"https://autonity-piccadilly.rpc.subquery.network/public",
"https://piccadilly.autonity-apis.com",
"wss://piccadilly-ws.autonity-apis.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Piccadilly Auton",
"symbol": "ATN",
"decimals": 18
},
"infoURL": "https://autonity.org/",
"shortName": "piccadilly-04",
"chainId": 65100004,
"networkId": 65100004,
"slip44": 1,
"icon": "autonity",
"explorers": [
{
"name": "autonity-blockscout",
"url": "https://piccadilly.autonity.org",
"standard": "EIP3091"
}
]
},
{
"name": "SX Toronto Rollup",
"chain": "SX",
"icon": "SX",
"rpc": [
"https://rpc.sx-rollup-testnet.t.raas.gelato.cloud"
],
"faucets": [
"https://faucet.toronto.sx.technology"
],
"nativeCurrency": {
"name": "SX Network",
"symbol": "SX",
"decimals": 18
},
"infoURL": "https://www.sx.technology",
"shortName": "SXR-Testnet",
"chainId": 79479957,
"networkId": 79479957,
"explorers": [
{
"name": "SX Toronto L2 Explorer",
"url": "https://explorerl2.toronto.sx.technology",
"standard": "EIP3091",
"icon": "SX"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "Backstop Testnet",
"chain": "backstopTestnet",
"icon": "backstop",
"rpc": [
"https://testnet.rpc.backstop.technology"
],
"faucets": [],
"nativeCurrency": {
"name": "Backstop Testnet 1",
"symbol": "ZBS",
"decimals": 18
},
"infoURL": "https://backstop.technology/testnet",
"shortName": "backstop-testnet",
"chainId": 88558801,
"networkId": 88558801,
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet.bridge.backstop.technology"
}
]
}
},
{
"name": "Reya Cronos",
"title": "Reya Cronos",
"chain": "reya-cronos",
"rpc": [
"https://rpc.reya-cronos.gelato.digital",
"wss://ws.reya-cronos.gelato.digital"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/reya-cronos",
"faucets": [],
"shortName": "reya-cronos",
"chainId": 89346162,
"networkId": 89346162,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://reya-cronos.blockscout.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.gelato.network/bridge/reya-cronos"
}
]
}
},
{
"name": " Privix Chain Testnet",
"chain": "PSC",
"rpc": [
"https://testnet-rpc.privixchain.xyz/",
"wss://testnet-rpc.privixchain.xyz/ws"
],
"faucets": [
"https://faucet.privixchain.xyz"
],
"nativeCurrency": {
"name": "Privix Coin",
"symbol": "tPSC",
"decimals": 18
},
"infoURL": "https://privix.co/",
"shortName": "tpsc",
"chainId": 96969696,
"networkId": 96969696,
"icon": "privix",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.privixscan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "ChadChain",
"chain": "CHAD",
"status": "incubating",
"rpc": [
"https://rpc.chadchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "ChadChain",
"symbol": "CHAD",
"decimals": 18
},
"infoURL": "https://chadchain.org",
"shortName": "chad",
"chainId": 97912060,
"networkId": 97912060,
"explorers": []
},
{
"name": "Ethos",
"chain": "ETHOS",
"rpc": [
"https://rpc.ethos.cool"
],
"faucets": [
"https://faucet.ethos.cool"
],
"nativeCurrency": {
"name": "ETHOS",
"symbol": "ETHOS",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://ethos.cool",
"shortName": "ETHOS",
"chainId": 100000000,
"networkId": 100000000,
"icon": "ethos",
"explorers": [
{
"name": "ethos scan",
"url": "https://scan.ethos.cool",
"icon": "ethos",
"standard": "EIP3091"
}
]
},
{
"name": "XMTP Sepolia",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "USDC",
"symbol": "USDC",
"decimals": 18
},
"infoURL": "https://xmtp.org",
"shortName": "xmtp-sepolia",
"chainId": 241320161,
"networkId": 241320161,
"status": "incubating"
},
{
"name": "Neon EVM Devnet Rollup",
"chain": "Solana",
"rpc": [
"https://devnet.rollup.neonevm.org/"
],
"faucets": [],
"icon": "neon",
"nativeCurrency": {
"name": "Neon",
"symbol": "NEON",
"decimals": 18
},
"infoURL": "https://neonevm.org/",
"shortName": "neonevm-devnet-rollup",
"chainId": 245022929,
"networkId": 245022929,
"explorers": []
},
{
"name": "Flame",
"chain": "Flame",
"rpc": [
"https://rpc.flame.astria.org"
],
"faucets": [],
"nativeCurrency": {
"name": "TIA",
"symbol": "TIA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://astria.org",
"shortName": "flame",
"chainId": 253368190,
"networkId": 253368190,
"icon": "flame",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.flame.astria.org",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Nal Sepolia Testnet",
"chain": "ETH",
"rpc": [
"https://testnet-rpc.nal.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"icon": "nal",
"infoURL": "https://www.nal.network",
"shortName": "nalsep",
"chainId": 328527624,
"networkId": 328527624,
"explorers": [
{
"name": "Nal Sepolia Testnet Network Explorer",
"url": "https://testnet-scan.nal.network",
"standard": "EIP3091"
}
]
},
{
"name": "Asset Hub",
"chain": "DOT",
"rpc": [
"https://asset-hub-eth-rpc.polkadot.io"
],
"faucets": [],
"nativeCurrency": {
"name": "DOT",
"symbol": "DOT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://polkadot.network",
"shortName": "AH",
"chainId": 420420419,
"networkId": 420420419,
"explorers": []
},
{
"name": "Westend Asset Hub",
"chain": "WST",
"rpc": [
"https://westend-asset-hub-eth-rpc.polkadot.io"
],
"faucets": [
"https://faucet.polkadot.io/westend"
],
"nativeCurrency": {
"name": "Westies",
"symbol": "WND",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://polkadot.network",
"shortName": "wst",
"chainId": 420420421,
"networkId": 420420421,
"explorers": [
{
"name": "subscan",
"icon": "subscan",
"url": "https://westend-asset-hub-eth-explorer.parity.io",
"standard": "EIP3091"
}
]
},
{
"name": "GPT Testnet",
"chain": "Skopje Testnet",
"icon": "skopje-gpt",
"rpc": [
"https://testnet-rpc.gptprotocol.io"
],
"faucets": [
"https://testnet-faucet.gptprotocol.io"
],
"chainId": 476462898,
"networkId": 476462898,
"nativeCurrency": {
"name": "SkpGPT",
"symbol": "SkpGPT",
"decimals": 18
},
"infoURL": "https://gptprotocol.com",
"shortName": "Skopje",
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge.gptprotocol.io"
}
]
},
"explorers": [
{
"name": "blockscout",
"url": "https://testnet-explorer.gptprotocol.io",
"standard": "EIP3091",
"icon": "blockscout"
}
]
},
{
"name": "Sophon Testnet",
"chain": "Sophon Testnet",
"rpc": [
"https://rpc.testnet.sophon.xyz",
"wss://rpc.testnet.sophon.xyz/ws"
],
"nativeCurrency": {
"name": "Sophon",
"symbol": "SOPH",
"decimals": 18
},
"faucets": [],
"infoURL": "",
"shortName": "sophon-testnet",
"chainId": 531050104,
"networkId": 531050104,
"explorers": [
{
"name": "Sophon Block Explorer",
"url": "https://explorer.testnet.sophon.xyz",
"icon": "sophon-testnet",
"standard": "none"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://portal.testnet.sophon.xyz/bridge"
}
]
}
},
{
"name": "Tron Mainnet",
"chain": "TRON",
"rpc": [
"https://rpc.ankr.com/tron_jsonrpc",
"https://api.trongrid.io/jsonrpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Tron",
"symbol": "TRX",
"decimals": 6
},
"infoURL": "https://tron.network",
"shortName": "tron",
"chainId": 728126428,
"networkId": 728126428,
"icon": "tron",
"explorers": [
{
"name": "tronscan",
"url": "https://tronscan.org",
"icon": "tron",
"standard": "none"
}
]
},
{
"name": "OFFICIAL VASYL",
"title": "OFFICIAL VASYL",
"chain": "Official-Vasyl",
"rpc": [
"https://rpc.official-vasyl.network"
],
"faucets": [
"https://faucet.official-vasyl.network"
],
"nativeCurrency": {
"name": "OFFICIAL VASYL",
"symbol": "VASYL",
"decimals": 18
},
"infoURL": "official-vasyl.network",
"shortName": "Vasyl",
"chainId": 1278060416,
"networkId": 1278060416,
"icon": "vasyl",
"explorers": [
{
"name": "Official Vasyl Explorer",
"url": "https://explorer.official-vasyl.network",
"icon": "vasyl",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.official-vasyl.network"
}
]
},
"features": [
{
"name": "EIP155"
}
],
"status": "active"
},
{
"name": "Turbo",
"chain": "NEAR",
"rpc": [
"https://rpc-0x4e45415f.aurora-cloud.dev"
],
"icon": "turbo",
"faucets": [],
"nativeCurrency": {
"name": "Turbo",
"symbol": "TURBO",
"decimals": 18
},
"infoURL": "https://turbotoken.io",
"shortName": "turbo",
"chainId": 1313161567,
"networkId": 1313161567,
"explorers": [
{
"name": "Turbo explorer",
"url": "https://explorer.turbo.aurora.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Tuxappcoin",
"chain": "NEAR",
"rpc": [
"https://rpc-0x4e454165.aurora-cloud.dev"
],
"icon": "tuxa",
"faucets": [],
"nativeCurrency": {
"name": "TUXA",
"symbol": "TUXA",
"decimals": 18
},
"infoURL": "https://x.com/tuxapp_coin",
"shortName": "tuxa",
"chainId": 1313161573,
"networkId": 1313161573,
"explorers": [
{
"name": "TUXA explorer",
"url": "https://explorer.tuxa.aurora.dev",
"standard": "EIP3091"
}
]
},
{
"name": "Zephyr Testnet",
"title": "Zephyr Testnet",
"chain": "Zephyr-testnet",
"rpc": [
"https://zephyr-rpc.eu-north-2.gateway.fm"
],
"faucets": [
"https://zephyr-faucet.eu-north-2.gateway.fm"
],
"nativeCurrency": {
"name": "ZERO",
"symbol": "Z",
"decimals": 18
},
"infoURL": "https://zero.tech",
"shortName": "zephyr",
"chainId": 1417429182,
"networkId": 1417429182,
"icon": "zephyr",
"explorers": [
{
"name": "blockscout",
"url": "https://zephyr-blockscout.eu-north-2.gateway.fm",
"icon": "zephyr",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://zephyr-bridge.eu-north-2.gateway.fm"
}
]
}
},
{
"name": "GPT Mainnet",
"chain": "GPT Protocol",
"icon": "gpt",
"rpc": [
"https://rpc.gptprotocol.io"
],
"faucets": [],
"chainId": 1511670449,
"networkId": 1511670449,
"nativeCurrency": {
"name": "GPT",
"symbol": "GPT",
"decimals": 18
},
"infoURL": "https://gptprotocol.com",
"shortName": "GPT",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.gptprotocol.io"
}
]
},
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.gptprotocol.io",
"standard": "EIP3091",
"icon": "blockscout"
}
]
},
{
"name": "Haust Network Testnet",
"title": "Haust Network Testnet",
"chain": "haust-network-testnet",
"rpc": [
"https://rpc-testnet.haust.app"
],
"features": [
{
"name": "EIP155"
}
],
"faucets": [
"https://faucet.haust.app"
],
"status": "active",
"nativeCurrency": {
"name": "HAUST",
"symbol": "HAUST",
"decimals": 18
},
"infoURL": "https://haust.network/",
"shortName": "HaustTestnet",
"chainId": 1523903251,
"networkId": 1523903251,
"icon": "haust",
"explorers": [
{
"name": "Haust Network Testnet Explorer",
"url": "https://explorer-testnet.haust.app",
"icon": "haust",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge-testnet.haust.app"
}
]
}
},
{
"name": "Haust Testnet",
"title": "Haust Testnet",
"chain": "Haust-testnet",
"rpc": [
"https://rpc-test.haust.network"
],
"faucets": [
"https://haust-testnet-faucet.eu-north-2.gateway.fm"
],
"nativeCurrency": {
"name": "HAUST",
"symbol": "HAUST",
"decimals": 18
},
"infoURL": "https://haust.network/",
"shortName": "hst-test",
"chainId": 1570754601,
"networkId": 1570754601,
"icon": "haust",
"explorers": [
{
"name": "blockscout",
"url": "https://haust-testnet-blockscout.eu-north-2.gateway.fm",
"icon": "haust",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://haust-testnet-bridge.eu-north-2.gateway.fm"
}
]
}
},
{
"name": "WITNESS CHAIN",
"title": "WITNESS CHAIN",
"chain": "Witness-Chain",
"rpc": [
"https://sequencer.witnesschain.com"
],
"nativeCurrency": {
"name": "ETHER",
"symbol": "ETH",
"decimals": 18
},
"faucets": [],
"infoURL": "https://www.witnesschain.com",
"shortName": "Witness",
"chainId": 1702448187,
"networkId": 1702448187,
"icon": "witness",
"explorers": [
{
"name": "Witness Chain Explorer",
"url": "https://explorer.witnesschain.com",
"icon": "witness",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.witnesschain.com"
}
]
},
"features": [
{
"name": "EIP155"
}
],
"status": "active"
},
{
"name": "Silicon zkEVM Sepolia Testnet",
"title": "Silicon zkEVM Sepolia Testnet",
"chain": "Silicon",
"rpc": [
"https://rpc-sepolia.silicon.network",
"https://silicon-testnet.nodeinfra.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://docs.silicon.network",
"shortName": "silicon-sepolia-testnet",
"chainId": 1722641160,
"networkId": 1722641160,
"icon": "silicon",
"explorers": [
{
"name": "siliconscope-sepolia",
"url": "https://scope-sepolia.silicon.network",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge-sepolia.silicon.network"
}
]
},
"status": "active"
},
{
"name": "Gemuchain Testnet",
"chain": "Gemuchain",
"rpc": [
"https://gemutest-rpc.gemuchain.io"
],
"faucets": [
"https://faucet.gemuchain.io/"
],
"nativeCurrency": {
"name": "Gemuchain",
"symbol": "GEMU",
"decimals": 18
},
"infoURL": "https://gemuchain.io/",
"shortName": "Gemuchain",
"chainId": 1903648807,
"networkId": 1903648807,
"explorers": [
{
"name": "Gemuchain Explorer (Blockscout)",
"url": "https://gemutest-explorer.gemuchain.io",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://gemutest-bridge.gemuchain.io/login"
}
]
}
},
{
"name": "Lumia Testnet",
"shortName": "lumiatestnet",
"title": "Lumia Testnet",
"chain": "ETH",
"icon": "lumia",
"rpc": [
"https://testnet-rpc.lumia.org"
],
"faucets": [
"https://testnet-faucet.lumia.org"
],
"nativeCurrency": {
"name": "Lumia",
"symbol": "LUMIA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://lumia.org",
"chainId": 1952959480,
"networkId": 1952959480,
"explorers": [
{
"name": "Lumia Testnet Explorer",
"url": "https://testnet-explorer.lumia.org",
"icon": "lumia",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://testnet-bridge.lumia.org"
}
]
}
},
{
"name": "Accumulate Kermit",
"shortName": "Kermit",
"title": "Accumulate Kermit Testnet",
"chain": "Accumulate",
"chainId": 2478899481,
"networkId": 2478899481,
"infoURL": "https://accumulate.org",
"slip44": 2147483929,
"rpc": [
"https://kermit.accumulatenetwork.io/eth"
],
"nativeCurrency": {
"name": "ACME",
"symbol": "ACME",
"decimals": 18
},
"faucets": [
"https://kermit.explorer.accumulatenetwork.io/faucet"
],
"explorers": [
{
"name": "accumulate-explorer-kermit",
"url": "https://kermit.explorer.accumulatenetwork.io",
"standard": "EIP3091"
}
]
},
{
"name": "Mekong",
"chain": "ETH",
"rpc": [
"https://rpc.mekong.ethpandaops.io"
],
"faucets": [
"https://faucet.mekong.ethpandaops.io"
],
"nativeCurrency": {
"name": "Testnet ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://mekong.ethpandaops.io",
"shortName": "mekong",
"chainId": 7078815900,
"networkId": 7078815900,
"icon": "ethereum",
"status": "incubating",
"explorers": [
{
"name": "Holesky Dora Explorer",
"url": "https://explorer.mekong.ethpandaops.io",
"icon": "ethereum",
"standard": "EIP3091"
}
]
},
{
"name": "pectra-devnet-5",
"chain": "ETH",
"rpc": [
"https://rpc.pectra-devnet-5.ethpandaops.io"
],
"faucets": [
"https://faucet.pectra-devnet-5.ethpandaops.io"
],
"nativeCurrency": {
"name": "Testnet ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://pectra-devnet-5.ethpandaops.io",
"shortName": "pectra5",
"chainId": 7088110746,
"networkId": 7088110746,
"icon": "ethereum",
"status": "incubating",
"explorers": [
{
"name": "Explorer",
"url": "https://explorer.pectra-devnet-5.ethpandaops.io",
"icon": "ethereum",
"standard": "EIP3091"
}
]
},
{
"name": "Deriw Devnet",
"chainId": 44474237230,
"shortName": "deriw-dev",
"title": "Deriw Devnet",
"chain": "Deriw Devnet",
"networkId": 44474237230,
"icon": "deriw",
"rpc": [
"https://rpc.dev.deriw.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Deriw",
"symbol": "Der",
"decimals": 18
},
"infoURL": "https://deriw.com",
"explorers": [
{
"name": "Deriw Explorer",
"url": "https://explorer.dev.deriw.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-421614",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "ALDChain Testnet",
"chain": "ALD",
"rpc": [
"https://testnet-rpc.aldrickb.xyz"
],
"faucets": [
"https://faucet.aldrickb.xyz"
],
"nativeCurrency": {
"name": "ALD Token",
"symbol": "ALD",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://aldrickb.com/projects",
"shortName": "ald",
"chainId": 96737205180,
"networkId": 96737205180,
"icon": "aldrickb",
"explorers": [
{
"name": "ALDChain Testnet Explorer",
"url": "https://testnet-explorer.aldrickb.xyz",
"icon": "aldrickb",
"standard": "EIP3091"
}
]
},
{
"name": "Thanos Sepolia",
"chain": "ETH",
"rpc": [
"https://rpc.thanos-sepolia.tokamak.network",
"wss://rpc.thanos-sepolia.tokamak.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Tokamak Network",
"symbol": "TON",
"decimals": 18
},
"infoURL": "https://tokamak.network",
"shortName": "thanos-sepolia",
"chainId": 111551119090,
"networkId": 111551119090,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.thanos-sepolia.tokamak.network",
"standard": "EIP3091"
}
]
},
{
"name": "Fluence Stage",
"chain": "Fluence Stage (Testnet)",
"rpc": [
"https://rpc.stage.fluence.dev",
"wss://ws.stage.fluence.dev"
],
"faucets": [],
"nativeCurrency": {
"name": "tFLT",
"symbol": "tFLT",
"decimals": 18
},
"infoURL": "https://fluence.network/",
"shortName": "fluence-stage",
"chainId": 123420000220,
"networkId": 123420000220,
"explorers": [
{
"name": "blockscout",
"url": "https://blockscout.stage.fluence.dev",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111"
}
},
{
"name": "PIN",
"title": "PIN",
"chain": "PIN",
"rpc": [
"https://rpc.pin.t.raas.gelato.cloud",
"wss://ws.pin.t.raas.gelato.cloud"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/pin",
"faucets": [],
"shortName": "PIN",
"chainId": 123420000558,
"networkId": 123420000558,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.pin.t.raas.gelato.cloud",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge.gelato.network/bridge/pin/bridge/pin"
}
]
}
},
{
"name": "sivo-defi-testnet",
"title": "Sivo Defi Testnet",
"chain": "sivo-defi-testnet",
"rpc": [
"https://rpc.sivo-defi-testnet.t.raas.gelato.cloud",
"wss://ws.sivo-defi-testnet.t.raas.gelato.cloud"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/sivo-defi-testnet",
"faucets": [],
"shortName": "sivo-defi-testnet",
"chainId": 123420000586,
"networkId": 123420000586,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://sivo-defi-testnet.cloud.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge.gelato.network/bridge/sivo-defi-testnet"
}
]
}
},
{
"name": "volmex",
"title": "Volmex",
"chain": "volmex",
"rpc": [
"https://rpc.volmex.t.raas.gelato.cloud",
"wss://ws.volmex.t.raas.gelato.cloud"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://raas.gelato.network/rollups/details/public/volmex",
"faucets": [],
"shortName": "volmex",
"chainId": 123420000588,
"networkId": 123420000588,
"slip44": 60,
"explorers": [
{
"name": "blockscout",
"url": "https://volmex.cloud.blockscout.com",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-84532",
"bridges": [
{
"url": "https://testnet-bridge.gelato.network/bridge/volmex"
}
]
}
},
{
"name": "GM Network Testnet",
"chain": "GM Network Testnet",
"rpc": [
"https://gmnetwork-testnet.alt.technology/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://gmnetwork.ai",
"shortName": "gmnetwork-testnet",
"chainId": 202402181627,
"networkId": 202402181627,
"explorers": [
{
"name": "gmnetwork-testnet",
"url": "https://gmnetwork-testnet-explorer.alt.technology",
"standard": "EIP3091"
}
]
},
{
"name": "Smart Pay Mobile Money",
"chain": "Mobile Money",
"rpc": [
"https://network.uat.smartmoneyewallet.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "SmartPay Mobile Money",
"symbol": "SMRTP",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://network.uat.smartmoneyewallet.com/",
"shortName": "SmartPay",
"chainId": 666301179999,
"networkId": 666301179999,
"icon": "smartpay"
},
{
"name": "Flame Testnet",
"chain": "Flame",
"rpc": [
"https://rpc.flame.dawn-1.astria.org"
],
"faucets": [],
"nativeCurrency": {
"name": "TIA",
"symbol": "TIA",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://astria.org",
"shortName": "flame-testnet",
"chainId": 16604737732183,
"networkId": 16604737732183,
"icon": "flame",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.flame.dawn-1.astria.org",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Kakarot Starknet Sepolia",
"chain": "ETH",
"icon": "kakarot",
"rpc": [
"https://sepolia-rpc.kakarot.org"
],
"faucets": [
"https://sepolia-faucet.kakarot.org/"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kakarot.org",
"shortName": "kkrt-starknet-sepolia",
"chainId": 920637907288165,
"networkId": 920637907288165,
"explorers": [
{
"name": "Kakarot Scan",
"url": "https://sepolia.kakarotscan.org",
"standard": "EIP3091"
},
{
"name": "Kakarot Explorer",
"url": "https://sepolia-explorer.kakarot.org",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": []
}
},
{
"name": "ENI Mainnet",
"chainId": 173,
"shortName": "ENI",
"chain": "ENI",
"network": "mainnet",
"networkId": 173,
"nativeCurrency": {
"name": "EGAS",
"symbol": "EGAS",
"decimals": 18
},
"rpc": [
"https://rpc.eniac.network",
"https://rpc1.eniac.network",
"https://rpc2.eniac.network"
],
"faucets": [],
"explorers": [
{
"name": "EniacScan",
"url": "https://scan.eniac.network/",
"standard": "EIP3091"
}
],
"infoURL": "https://www.eniac.network",
"app_resource": {
"ic_chain_select": "https://www.eniac.network/1740454198610.png",
"ic_chain_unselect": "https://www.eniac.network/1740454248235.png",
"color_chain_bg": "0x10100E",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://www.eniac.network/1740454209678.png",
"ic_home_logo": "https://www.eniac.network/1740454267140.png"
}
},
{
"name": "firachain",
"chain": "FIR",
"icon": "firachainIcon",
"rpc": [
"https://rpc.firachain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "firachain",
"symbol": "FIR",
"decimals": 18
},
"infoURL": "https://firachain.com",
"shortName": "FIR",
"chainId": 194,
"networkId": 194,
"status": "active",
"explorers": [
{
"name": "FiraChain Explorer",
"url": "https://block.firachain.com",
"standard": "EIP3091"
}
]
},
{
"name": "IDN Mainnet",
"chain": "IDN",
"icon": "idn",
"rpc": [
"https://dataseed1.idn-rpc.com",
"https://dataseed2.idn-rpc.com",
"https://dataseed3.idn-rpc.com"
],
"faucets": [],
"nativeCurrency": {
"name": "IDN",
"symbol": "IDN",
"decimals": 18
},
"infoURL": "https://www.idn.world",
"shortName": "IDN",
"chainId": 215,
"networkId": 215,
"explorers": [
{
"name": "Idn Explorer",
"url": "https://scan.idn-network.com",
"standard": "EIP3091"
}
]
},
{
"name": "Telos zkEVM Testnet",
"title": "Telos zkEVM Testnet",
"chain": "Telos",
"rpc": [
"https://zkrpc.testnet.telos.net"
],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "",
"shortName": "telos-zkevm-testnet",
"chainId": 331,
"networkId": 331,
"icon": "telos",
"explorers": [
{
"name": "TeloScan",
"icon": "teloscan",
"url": "https://zkexplorer.testnet.telos.net",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://zkbridge.testnet.telos.net"
}
]
}
},
{
"name": "BlackFort Exchange Network",
"chain": "BXN",
"rpc": [
"https://rpc.blackfort.network/mainnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BlackFort Token",
"symbol": "BXN",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://blackfort.com",
"shortName": "BXN",
"chainId": 488,
"networkId": 488,
"icon": "bxn",
"explorers": [
{
"name": "blockscout",
"url": "https://blackfortscan.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Radius Testnet",
"chain": "Radius",
"rpc": [
"https://dev-secure.rpc.theradius.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Useless",
"symbol": "USLS",
"decimals": 18
},
"infoURL": "https://www.theradius.xyz/",
"shortName": "radius-testnet",
"chainId": 863,
"networkId": 863
},
{
"name": "Weber Governance Mainnet",
"chain": "PTT",
"rpc": [
"https://chain.myweber.org"
],
"faucets": [],
"nativeCurrency": {
"name": "PALLET",
"symbol": "PTT",
"decimals": 18
},
"infoURL": "https://myweber.org",
"shortName": "ptt",
"chainId": 881,
"networkId": 881,
"icon": "ptt",
"explorers": [
{
"name": "Weber Governance Mainnet Explorer",
"url": "https://mainnet.myweber.org",
"icon": "ptt",
"standard": "EIP3091"
}
]
},
{
"name": "IOPN Testnet",
"chain": "IOPN Testnet",
"rpc": [
"https://testnet-rpc.iopn.tech"
],
"faucets": [
"https://faucet.iopn.tech"
],
"nativeCurrency": {
"name": "OPN",
"symbol": "OPN",
"decimals": 18
},
"infoURL": "https://iopn.tech",
"shortName": "iopn-Test-Chain",
"chainId": 984,
"networkId": 984,
"explorers": [
{
"name": "tracehawk",
"url": "https://testnet.iopn.tech",
"standard": "none"
}
]
},
{
"name": "LAGOM Mainnet",
"chain": "LAGOM Mainnet",
"rpc": [
"https://rpc1.lagom.mainnet.zeeve.net"
],
"faucets": [],
"nativeCurrency": {
"name": "LAGO",
"symbol": "LAGO",
"decimals": 18
},
"infoURL": "https://lagomchain.com",
"shortName": "Lagom-Chain",
"chainId": 986,
"networkId": 986,
"explorers": [
{
"name": "tracehawk",
"url": "https://Explorer.lagomchain.com",
"standard": "none"
}
]
},
{
"name": "StateMesh",
"icon": "statemesh",
"chain": "MESH",
"rpc": [
"https://rpc.statemesh.net"
],
"faucets": [],
"nativeCurrency": {
"name": "StateMesh",
"symbol": "MESH",
"decimals": 18
},
"infoURL": "https://statemesh.net",
"shortName": "mesh",
"chainId": 1134,
"networkId": 1134,
"slip44": 1134,
"explorers": [
{
"name": "blockscout",
"url": "https://scan.statemesh.net",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Kii Testnet Oro",
"chain": "KII",
"rpc": [
"https://json-rpc.uno.sentry.testnet.v3.kiivalidator.com"
],
"faucets": [
"https://explorer.kiichain.io/testnet/faucet"
],
"nativeCurrency": {
"name": "Kii",
"symbol": "KII",
"decimals": 18
},
"features": [],
"infoURL": "https://kiichain.io",
"shortName": "kiioro",
"chainId": 1336,
"networkId": 1336,
"icon": "kii",
"explorers": [
{
"name": "KiiExplorer",
"url": "https://explorer.kiichain.io/testnet",
"icon": "kii",
"standard": "none"
}
]
},
{
"name": "Perennial",
"chain": "perennial",
"rpc": [
"https://rpc.perennial.foundation"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://perennial.finance",
"shortName": "perennial",
"chainId": 1424,
"networkId": 1424,
"icon": "perennial",
"explorers": [
{
"name": "Perennial Explorer",
"url": "https://explorer.perennial.foundation",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-8453",
"bridges": [
{
"url": "https://bridge.perennial.foundation"
}
]
}
},
{
"name": "ONINO Mainnet",
"chain": "ONI",
"rpc": [
"https://rpc.onino.io"
],
"faucets": [
"https://faucet.onino.io"
],
"nativeCurrency": {
"name": "ONI",
"symbol": "ONI",
"decimals": 18
},
"infoURL": "https://onino.io",
"shortName": "onino",
"chainId": 1425,
"networkId": 1425,
"icon": "onino",
"explorers": [
{
"name": "onino",
"url": "https://explorer.onino.io",
"icon": "onino",
"standard": "EIP3091"
}
]
},
{
"name": "Reactive Mainnet",
"title": "Reactive Network",
"chain": "REACT",
"rpc": [
"https://mainnet-rpc.rnk.dev"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "React",
"symbol": "REACT",
"decimals": 18
},
"infoURL": "https://reactive.network",
"shortName": "react",
"icon": "reactive",
"chainId": 1597,
"networkId": 1597,
"explorers": [
{
"name": "Reactscan",
"url": "https://reactscan.net",
"standard": "none"
}
]
},
{
"name": "Ethpar Mainnet",
"chain": "ETP",
"rpc": [
"https://rpc01.ethpar.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethpar",
"symbol": "ETP",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://ethpar.com",
"shortName": "ethpar",
"chainId": 1727,
"networkId": 1727,
"icon": "ethpar",
"explorers": [
{
"name": "Ethpar Mainnet Explorer",
"url": "https://dora.ethpar.net",
"icon": "ethpar",
"standard": "none"
}
]
},
{
"name": "Fuga Mainnet",
"chain": "Fuga",
"rpc": [
"https://rpc.fuga.blue"
],
"faucets": [],
"nativeCurrency": {
"name": "FUGA",
"symbol": "FUGA",
"decimals": 18
},
"infoURL": "https://fuga.one",
"shortName": "FUGA",
"chainId": 1732,
"networkId": 1732,
"slip44": 732,
"explorers": [],
"status": "incubating"
},
{
"name": "Fuga Testnet",
"chain": "Fuga",
"rpc": [
"https://rpc-testnet.fuga.blue"
],
"faucets": [],
"nativeCurrency": {
"name": "FUGA",
"symbol": "FUGA",
"decimals": 18
},
"infoURL": "https://fuga.one",
"shortName": "FUGA_T",
"chainId": 1733,
"networkId": 1733,
"slip44": 1,
"explorers": [],
"status": "incubating"
},
{
"name": "Fuga Develop",
"chain": "Fuga",
"rpc": [
"https://rpc-develop.fuga.blue"
],
"faucets": [],
"nativeCurrency": {
"name": "FUGA",
"symbol": "FUGA",
"decimals": 18
},
"infoURL": "https://fuga.one",
"shortName": "FUGA_D",
"chainId": 1734,
"networkId": 1734,
"slip44": 1,
"explorers": [],
"status": "incubating"
},
{
"name": "Atleta Network",
"chain": "Atleta",
"rpc": [
"https://rpc.mainnet.atleta.network",
"wss://rpc.mainnet.atleta.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Atla",
"symbol": "ATLA",
"decimals": 18
},
"infoURL": "https://atleta.network",
"shortName": "atla",
"chainId": 2440,
"networkId": 2440,
"slip44": 965,
"icon": "atleta",
"explorers": [
{
"name": "Atleta Explorer",
"icon": "atleta",
"url": "https://blockscout.atleta.network",
"standard": "none"
},
{
"name": "Atleta Polka Explorer",
"icon": "atleta",
"url": "https://polkadot-explorer.atleta.network/#/explorer",
"standard": "none"
}
]
},
{
"name": "Apertum",
"title": "Apertum",
"chain": "APTM",
"rpc": [
"https://rpc.apertum.io/ext/bc/YDJ1r9RMkewATmA7B35q1bdV18aywzmdiXwd9zGBq3uQjsCnn/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Apertum",
"symbol": "APTM",
"decimals": 18
},
"infoURL": "https://apertum.io",
"shortName": "aptm",
"chainId": 2786,
"networkId": 2786,
"icon": "apertum",
"explorers": [
{
"name": "Apertum Explorer",
"url": "https://explorer.apertum.io",
"icon": "apertum",
"standard": "EIP3091"
}
]
},
{
"name": "Pentagon Chain",
"chain": "Pentagon Chain",
"rpc": [
"https://rpc.pentagon.games"
],
"faucets": [
"https://bridge.pentagon.games"
],
"nativeCurrency": {
"name": "Pentagon Chain",
"symbol": "PC",
"decimals": 18
},
"icon": "pentagonchain",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://pentagon.games",
"shortName": "PentagonChain",
"chainId": 3344,
"networkId": 3344,
"explorers": [
{
"name": "Pentagon Chain Explorer",
"url": "https://explorer.pentagon.games",
"icon": "pentagonchain",
"standard": "EIP3091"
}
],
"status": "active"
},
{
"name": "Pepe Unchained",
"chain": "PEPU",
"icon": "pepu",
"rpc": [
"https://rpc-pepe-unchained-gupg0lo9wf.t.conduit.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "PEPU",
"symbol": "PEPU",
"decimals": 18
},
"infoURL": "https://pepeunchained.com/",
"shortName": "PEPU",
"chainId": 3409,
"networkId": 3409,
"explorers": [
{
"name": "pepuscan",
"url": "https://pepuscan.com",
"standard": "EIP3091"
}
]
},
{
"name": "TRUMPCHAIN",
"chain": "trumpchain",
"rpc": [
"https://testnet.trumpchain.dev/http",
"wss://testnet.trumpchain.dev/ws"
],
"faucets": [],
"nativeCurrency": {
"name": "Official Trump",
"symbol": "TRUMP",
"decimals": 18
},
"infoURL": "https://trumpchain.dev",
"shortName": "TRUMPCHAIN",
"chainId": 4547,
"networkId": 4547,
"icon": "trump",
"explorers": [
{
"name": "TRUMPCHAIN Explorer",
"url": "https://explorer.trumpchain.dev",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "BlackFort Exchange Network Testnet",
"chain": "BXNT",
"rpc": [
"https://rpc.blackfort.network/testnet/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BlackFort Testnet Token",
"symbol": "BXNT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://blackfort.com",
"shortName": "BXNT",
"chainId": 4888,
"networkId": 4888,
"slip44": 1,
"icon": "bxn",
"explorers": [
{
"name": "blockscout",
"url": "https://testnet.blackfortscan.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Seismic devnet",
"chain": "Seismic",
"rpc": [
"https://node-2.seismicdev.net/rpc"
],
"faucets": [
"https://faucet-2.seismicdev.net/"
],
"nativeCurrency": {
"name": "Seismic Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://seismic.systems",
"shortName": "seismic-devnet",
"chainId": 5124,
"networkId": 5124,
"explorers": [
{
"name": "Seismic Devnet Explorer",
"url": "https://explorer-2.seismicdev.net",
"standard": "EIP3091"
}
]
},
{
"name": "Inertia Scan",
"chain": "IRTA",
"icon": "inertiascan",
"rpc": [
"https://rpc.inertiascan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Inertia",
"symbol": "IRTA",
"decimals": 18
},
"infoURL": "https://inertiascan.com",
"shortName": "IRTA",
"chainId": 5433,
"networkId": 5433,
"explorers": [
{
"name": "blockscout",
"url": "https://inertiascan.com",
"standard": "none"
}
]
},
{
"name": "Tea Mainnet",
"chain": "TEA",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Tea",
"symbol": "TEA",
"decimals": 18
},
"infoURL": "https://tea.xyz",
"shortName": "tea",
"chainId": 6122,
"networkId": 6122,
"parent": {
"type": "L2",
"chain": "eip155-1"
},
"status": "incubating"
},
{
"name": "MegaETH Testnet",
"chain": "ETH",
"nativeCurrency": {
"name": "MegaETH Testnet Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://carrot.megaeth.com/rpc",
"wss://carrot.megaeth.com/ws"
],
"faucets": [],
"infoURL": "https://testnet.megaeth.com",
"shortName": "megatest",
"chainId": 6342,
"networkId": 6342,
"slip44": 1
},
{
"name": "Nibiru testnet-2",
"chain": "Nibiru",
"rpc": [
"https://evm-rpc.testnet-2.nibiru.fi"
],
"faucets": [],
"nativeCurrency": {
"name": "NIBI",
"symbol": "NIBI",
"decimals": 18
},
"infoURL": "https://nibiru.fi",
"shortName": "nibiru-testnet-2",
"chainId": 6911,
"networkId": 6911,
"icon": "nibiru",
"explorers": []
},
{
"name": "Rarimo",
"title": "Rarimo Mainnet",
"chain": "ETH",
"rpc": [
"https://l2.rarimo.com",
"wss://wss.l2.rarimo.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Rarimo Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://rarimo.com",
"shortName": "rarimo",
"chainId": 7368,
"networkId": 7368,
"icon": "rarimo",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://l2bridge.rarimo.com"
}
]
},
"explorers": [
{
"name": "Blockscout",
"url": "https://scan.rarimo.com",
"standard": "EIP3091",
"icon": "rarimo"
}
],
"status": "active"
},
{
"name": "Draw Coin",
"chain": "DRW",
"icon": "drawchain",
"rpc": [
"https://rpc.drawchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "DRW",
"symbol": "DRW",
"decimals": 18
},
"infoURL": "https://drawchain.io/",
"shortName": "drw",
"chainId": 7788,
"networkId": 7788,
"explorers": [
{
"name": "Draw Chain Explorer",
"url": "https://drawscan.io",
"standard": "EIP3091",
"icon": "drawchain"
}
]
},
{
"name": "Powerloom Mainnet V2",
"chain": "Powerloom Mainnet V2",
"rpc": [
"https://rpc-v2.powerloom.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Powerloom Token",
"symbol": "POWER",
"decimals": 18
},
"infoURL": "https://powerloom.network",
"shortName": "powerloom",
"chainId": 7869,
"networkId": 7869,
"icon": "power",
"status": "active",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer-v2.powerloom.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Shardeum Testnet",
"chain": "ShardeumTestnet",
"icon": "shardeum",
"rpc": [
"https://api-testnet.shardeum.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Shardeum Test SHM",
"symbol": "SHM",
"decimals": 18
},
"infoURL": "https://docs.shardeum.org/",
"shortName": "ShardeumTestnet",
"chainId": 8083,
"networkId": 8083,
"explorers": [
{
"name": "Shardeum Testnet Explorer",
"url": "https://explorer-testnet.shardeum.org",
"standard": "EIP3091"
}
]
},
{
"name": "Shardeum",
"chain": "Shardeum",
"icon": "shardeum",
"rpc": [
"https://api.shardeum.org/"
],
"faucets": [],
"nativeCurrency": {
"name": "Shardeum",
"symbol": "SHM",
"decimals": 18
},
"infoURL": "https://docs.shardeum.org/",
"shortName": "Shardeum",
"chainId": 8118,
"networkId": 8118,
"explorers": [
{
"name": "Shardeum Explorer",
"url": "https://explorer.shardeum.org",
"standard": "EIP3091"
}
]
},
{
"name": "Okto Testnet",
"chain": "Okto",
"rpc": [
"https://rpc.okto-testnet.zeeve.online"
],
"faucets": [
"https://faucet.okto-testnet.zeeve.online"
],
"nativeCurrency": {
"name": "Okto",
"symbol": "OKTO",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "",
"shortName": "okto-testnet",
"chainId": 8801,
"networkId": 8801,
"explorers": [
{
"name": "Okto Testnet Explorer",
"url": "https://explorer.okto-testnet.zeeve.online",
"standard": "none"
}
]
},
{
"name": "Qubetics Testnet",
"chain": "Qubetics Testnet",
"rpc": [
"https://rpc-testnet.qubetics.work/"
],
"faucets": [
"https://testnet.qubetics.work/faucet"
],
"nativeCurrency": {
"name": "Qubetics Testnet Token",
"symbol": "TICS",
"decimals": 18
},
"infoURL": "https://www.qubetics.com/",
"shortName": "Qubetics",
"chainId": 9029,
"networkId": 9029,
"icon": "qubetics",
"explorers": [
{
"name": "Qubetics Testnet Explorer",
"url": "https://testnet.qubetics.work",
"standard": "none",
"icon": "qubetics"
}
]
},
{
"name": "DeepSafe Beta Mainnet",
"chain": "DeepSafe",
"rpc": [
"https://betamainnet-rpc-node-http.deepsafe.network"
],
"faucets": [],
"nativeCurrency": {
"name": "DeepSafe Native Token",
"symbol": "DEF",
"decimals": 18
},
"infoURL": "https://deepsafe.network/",
"shortName": "DeepSafe",
"chainId": 10011,
"networkId": 10011,
"icon": "deepsafe"
},
{
"name": "Tea Sepolia Testnet",
"chain": "ETH",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Sepolia Tea",
"symbol": "TEA",
"decimals": 18
},
"infoURL": "https://tea.xyz",
"shortName": "teasep",
"chainId": 10218,
"networkId": 10218,
"parent": {
"type": "L2",
"chain": "eip155-11155111"
},
"status": "incubating"
},
{
"name": "Fuse Flash Testnet",
"chain": "Fuse Flash",
"rpc": [],
"faucets": [
"https://faucet.quicknode.com"
],
"nativeCurrency": {
"name": "Fuse",
"symbol": "FUSE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://www.fuse.io",
"shortName": "fuseflash",
"chainId": 10920,
"networkId": 10920,
"icon": "fuse",
"parent": {
"type": "L2",
"chain": "eip155-11155111"
},
"status": "incubating"
},
{
"name": "StateMesh Testnet",
"icon": "statemesh",
"chain": "MESH",
"rpc": [
"https://rpc-test.statemesh.net"
],
"faucets": [
"https://faucet.statemesh.net"
],
"nativeCurrency": {
"name": "StateMesh",
"symbol": "MESH",
"decimals": 18
},
"infoURL": "https://statemesh.net",
"shortName": "mesh-test",
"chainId": 11343,
"networkId": 11343,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer-test.statemesh.net",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Esports Chain",
"chain": "ESPT",
"icon": "esports",
"rpc": [
"https://esportsblock.org/rpc/"
],
"faucets": [],
"nativeCurrency": {
"name": "Esport Token",
"symbol": "ESPT",
"decimals": 18
},
"infoURL": "https://esportsblock.org",
"shortName": "Esports",
"chainId": 17735,
"networkId": 17735,
"explorers": [
{
"name": "esportsblock_explorer",
"url": "https://esportsblock.org/explorer",
"standard": "none"
}
]
},
{
"name": "Nexurachain",
"chain": "nexurachain",
"icon": "xuraIcon",
"rpc": [
"https://rpc.nexurachain.io"
],
"faucets": [],
"nativeCurrency": {
"name": "XURA",
"symbol": "XURA",
"decimals": 18
},
"infoURL": "https://nexurachain.io",
"shortName": "XURAm",
"chainId": 24125,
"networkId": 24125,
"explorers": [
{
"name": "Nexurachain Explorer",
"url": "https://explorer.nexurachain.io",
"standard": "EIP3091"
}
]
},
{
"name": "Recall",
"chain": "Recall",
"rpc": [
"https://evm.node-0.mainnet.recall.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Recall",
"symbol": "RECALL",
"decimals": 18
},
"infoURL": "https://recall.network",
"shortName": "recall",
"chainId": 24816,
"networkId": 24816,
"explorers": []
},
{
"name": "AB Core Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.core.testnet.ab.org"
],
"faucets": [],
"nativeCurrency": {
"name": "AB",
"symbol": "AB",
"decimals": 18
},
"infoURL": "https://ab.org",
"shortName": "tABCore",
"chainId": 26888,
"networkId": 26888,
"explorers": [
{
"name": "AB Core explorer",
"url": "https://explorer.core.testnet.ab.org",
"standard": "EIP3091"
}
]
},
{
"name": "XferChain Testnet",
"chain": "XferChain Testnet",
"icon": "xferIcon",
"rpc": [
"https://testnet-rpc.xferchain.org"
],
"faucets": [
"https://faucet.xferchain.org"
],
"nativeCurrency": {
"name": "Dapo",
"symbol": "Dapo",
"decimals": 18
},
"infoURL": "https://xferchain.org",
"shortName": "DPt",
"chainId": 27125,
"networkId": 27125,
"explorers": [
{
"name": "XferChain Testnet Explorer",
"url": "https://testnet.xferchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "XferChain Mainnet",
"chain": "XferChain Mainnet",
"icon": "xferIcon",
"rpc": [
"https://rpc.xferchain.org"
],
"faucets": [],
"nativeCurrency": {
"name": "Dapo",
"symbol": "Dapo",
"decimals": 18
},
"infoURL": "https://xferchain.org",
"shortName": "DPm",
"chainId": 28125,
"networkId": 28125,
"explorers": [
{
"name": "XferChain Mainnet Explorer",
"url": "https://xferchain.org",
"standard": "EIP3091"
}
]
},
{
"name": "BasedAI",
"title": "BasedAI",
"chain": "BasedAI",
"rpc": [
"https://mainnet.basedaibridge.com/rpc/"
],
"faucets": [],
"nativeCurrency": {
"name": "BasedAI",
"symbol": "BASED",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://getbased.ai",
"shortName": "basedai",
"chainId": 32323,
"networkId": 32323,
"icon": "basedai",
"explorers": [
{
"name": "BasedAI Explorer",
"url": "https://explorer.getbased.ai",
"standard": "none"
},
{
"name": "BF1337 BasedAI Explorer",
"url": "https://explorer.bf1337.org",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "GUNZ",
"chain": "GUNZ",
"rpc": [
"https://rpc.gunzchain.io/ext/bc/2M47TxWHGnhNtq6pM5zPXdATBtuqubxn5EPFgFmEawCQr9WFML/rpc"
],
"faucets": [],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"nativeCurrency": {
"name": "GUN",
"symbol": "GUN",
"decimals": 18
},
"icon": "gunz",
"infoURL": "https://gunbygunz.com",
"shortName": "gunz-mainnet",
"chainId": 43419,
"networkId": 43419,
"explorers": [
{
"name": "blockscout",
"url": "https://gunzscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Juneo JUNE-Chain",
"chain": "Juneo JUNE-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/JUNE/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "JUNE",
"symbol": "JUNE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "JUNE",
"chainId": 45003,
"networkId": 45003,
"icon": "juneomainnet",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/2",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo DAI1-Chain",
"chain": "Juneo DAI1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/DAI1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "DAI1",
"symbol": "DAI1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "DAI1",
"chainId": 45004,
"networkId": 45004,
"icon": "juneo-dai1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/5",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo USDT1-Chain",
"chain": "Juneo USDT1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/USDT1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "USDT1",
"symbol": "USDT1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "USDT1",
"chainId": 45005,
"networkId": 45005,
"icon": "juneo-usdt1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/3",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo USD1-Chain",
"chain": "Juneo USD1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/USD1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "USD1",
"symbol": "USD1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "USD1",
"chainId": 45006,
"networkId": 45006,
"icon": "juneo-usd1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/4",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo mBTC1-Chain",
"chain": "Juneo mBTC1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/mBTC1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "mBTC1",
"symbol": "mBTC1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "mBTC1",
"chainId": 45007,
"networkId": 45007,
"icon": "juneo-mbtc1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/9",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo GLD1-Chain",
"chain": "Juneo GLD1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/GLD1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "GLD1",
"symbol": "GLD1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "GLD1",
"chainId": 45008,
"networkId": 45008,
"icon": "juneo-gld1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/8",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo LTC1-Chain",
"chain": "Juneo LTC1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/LTC1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "LTC1",
"symbol": "LTC1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "LTC1",
"chainId": 45009,
"networkId": 45009,
"icon": "juneo-ltc1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/11",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo DOGE1-Chain",
"chain": "Juneo DOGE1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/DOGE1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "DOGE1",
"symbol": "DOGE1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "DOGE1",
"chainId": 45010,
"networkId": 45010,
"icon": "juneo-doge1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/10",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo EUR1-Chain",
"chain": "Juneo EUR1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/EUR1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "EUR1",
"symbol": "EUR1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "EUR1",
"chainId": 45011,
"networkId": 45011,
"icon": "juneo-eur1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/6",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo SGD1-Chain",
"chain": "Juneo SGD1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/SGD1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "SGD1",
"symbol": "SGD1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "SGD1",
"chainId": 45012,
"networkId": 45012,
"icon": "juneo-sgd1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/7",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo BCH1-Chain",
"chain": "Juneo BCH1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/BCH1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "BCH1",
"symbol": "BCH1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "BCH1",
"chainId": 45013,
"networkId": 45013,
"icon": "juneo-bch1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/12",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Juneo LINK1-Chain",
"chain": "Juneo LINK1-Chain",
"rpc": [
"https://rpc.juneo-mainnet.network/ext/bc/LINK1/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "LINK1",
"symbol": "LINK1",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "LINK1",
"chainId": 45014,
"networkId": 45014,
"icon": "juneo-link1",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://juneoscan.io/chain/13",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Zircuit Garfield Testnet",
"chain": "Zircuit Garfield Testnet",
"icon": "zircuit",
"rpc": [
"https://garfield-testnet.zircuit.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.zircuit.com/",
"shortName": "zircuit-garfield-testnet",
"chainId": 48898,
"networkId": 48898,
"explorers": [
{
"name": "Zircuit",
"url": "https://explorer.garfield-testnet.zircuit.com",
"icon": "zircuit",
"standard": "none"
}
]
},
{
"name": "Somnia Testnet",
"chain": "Somnia",
"rpc": [
"https://dream-rpc.somnia.network"
],
"faucets": [],
"nativeCurrency": {
"name": "Somnia Testnet",
"symbol": "STT",
"decimals": 18
},
"features": [
{
"name": "EIP155"
}
],
"infoURL": "https://somnia.network",
"shortName": "SomniaTestnet",
"chainId": 50312,
"networkId": 50312,
"explorers": [
{
"name": "Somnia Testnet",
"url": "https://somnia-testnet.socialscan.io",
"standard": "EIP3091"
}
]
},
{
"name": "Cytonic Ethereum Testnet",
"chain": "CytonicEVM",
"rpc": [
"http://rpc.evm.testnet.cytonic.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Cytonic",
"symbol": "CCC",
"decimals": 18
},
"infoURL": "https://cytonic.com",
"shortName": "CEVM",
"chainId": 52226,
"networkId": 52226,
"icon": "cytonic_l2",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.evm.testnet.cytonic.com",
"icon": "cytonic_l2",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-52225"
}
},
{
"name": "Perennial Sepolia",
"chain": "perennialSepolia",
"rpc": [
"https://rpc-sepolia.perennial.foundation"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://perennial.finance",
"shortName": "perennial-sepolia",
"chainId": 60850,
"networkId": 60850,
"icon": "perennial",
"explorers": [
{
"name": "Perennial Explorer",
"url": "https://explorer-sepolia.perennial.foundation",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-84532",
"bridges": [
{
"url": "https://bridge-sepolia.perennial.foundation"
}
]
}
},
{
"name": "XCHAIN Testnet",
"chain": "XCHAIN",
"rpc": [
"https://xchain-testnet-rpc.kuma.bid"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kuma.bid",
"shortName": "xct",
"chainId": 64002,
"networkId": 64002,
"explorers": [
{
"name": "XCHAIN Testnet Explorer",
"url": "https://xchain-testnet-explorer.kuma.bid",
"standard": "EIP3091"
}
]
},
{
"name": "Berachain Bepolia",
"chain": "Berachain",
"rpc": [
"https://bepolia.rpc.berachain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Testnet BERA Token",
"symbol": "BERA",
"decimals": 18
},
"infoURL": "https://www.berachain.com",
"shortName": "berachain-bepolia",
"chainId": 80069,
"networkId": 80069,
"icon": "berachain",
"explorers": [
{
"name": "Beratrail",
"url": "https://bepolia.beratrail.io",
"icon": "berachain",
"standard": "none"
}
]
},
{
"name": "Miracle Chain",
"chain": "MIRACLE",
"rpc": [
"https://rpc.miracleplay.io"
],
"faucets": [],
"nativeCurrency": {
"name": "Miracle Play Token",
"symbol": "MPT",
"decimals": 18
},
"infoURL": "https://miracleplay.gg",
"shortName": "MIRACLE",
"chainId": 92278,
"networkId": 92278,
"icon": "miracle",
"explorers": [
{
"name": "Miracle Chain Explorer",
"icon": "miracle",
"url": "https://explorer.miracleplay.io",
"standard": "none"
}
]
},
{
"name": "XCHAIN",
"chain": "XCHAIN",
"rpc": [
"https://xchain-rpc.kuma.bid"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://kuma.bid",
"shortName": "xc",
"chainId": 94524,
"networkId": 94524,
"explorers": [
{
"name": "XCHAIN Explorer",
"url": "https://xchain-explorer.kuma.bid",
"standard": "EIP3091"
}
]
},
{
"name": "Plume Mainnet",
"title": "Plume Ethereum L2 Rollup Mainnet",
"chain": "PLUME",
"rpc": [
"https://phoenix-rpc.plumenetwork.xyz",
"wss://phoenix-rpc.plumenetwork.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Plume",
"symbol": "PLUME",
"decimals": 18
},
"infoURL": "https://plumenetwork.xyz/",
"shortName": "plume-mainnet",
"chainId": 98866,
"networkId": 98866,
"slip44": 1,
"icon": "plume",
"status": "incubating",
"explorers": [
{
"name": "Blockscout",
"url": "https://phoenix-explorer.plumenetwork.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.plumenetwork.xyz"
}
]
}
},
{
"name": "Plume Testnet",
"title": "Plume Sepolia L2 Rollup Testnet",
"chain": "PLUME Testnet",
"rpc": [
"https://testnet-rpc.plumenetwork.xyz",
"wss://testnet-rpc.plumenetwork.xyz"
],
"faucets": [
"https://faucet.plumenetwork.xyz"
],
"nativeCurrency": {
"name": "Plume",
"symbol": "PLUME",
"decimals": 18
},
"infoURL": "https://plumenetwork.xyz/",
"shortName": "plume-testnet",
"chainId": 98867,
"networkId": 98867,
"slip44": 1,
"icon": "plume",
"status": "incubating",
"explorers": [
{
"name": "Blockscout",
"url": "https://testnet-explorer.plumenetwork.xyz",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://testnet-bridge.plumenetwork.xyz"
}
]
}
},
{
"name": "Socotra JUNE-Chain",
"chain": "Socotra JUNE-Chain",
"rpc": [
"https://rpc.socotra-testnet.network/ext/bc/JUNE/rpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Socotra JUNE",
"symbol": "JUNE",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://juneo.com/",
"shortName": "Socotra-JUNE",
"chainId": 101003,
"networkId": 101003,
"icon": "juneoSocotraTestnet",
"explorers": [
{
"name": "Juneo Scan",
"url": "https://socotra.juneoscan.io/chain/2",
"icon": "juneomainnet",
"standard": "none"
}
]
},
{
"name": "Xitcoin",
"chain": "XITCOIN",
"faucets": [],
"rpc": [
"https://network.xitcoin.org"
],
"nativeCurrency": {
"name": "Xitcoin",
"symbol": "$XTC",
"decimals": 8
},
"infoURL": "https://docs.xitcoin.org/",
"shortName": "Xitcoin",
"chainId": 101088,
"networkId": 101088,
"icon": "xitcoin",
"explorers": []
},
{
"name": "Tatara Testnet",
"chain": "Tatara",
"rpc": [
"https://rpc.tatara.katanarpc.com/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "",
"shortName": "Tatara",
"chainId": 129399,
"networkId": 129399,
"icon": "ethereum",
"explorers": [
{
"name": "Tatara explorer",
"url": "https://explorer.tatara.katana.network",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Eventum Mainnet",
"shortName": "Eventum",
"chain": "Eventum",
"icon": "eventum",
"networkId": 161803,
"chainId": 161803,
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"rpc": [
"https://mainnet-rpc.evedex.com"
],
"faucets": [],
"explorers": [
{
"name": "Eventum Mainnet Explorer",
"url": "https://explorer.evedex.com",
"standard": "EIP3091"
}
],
"infoURL": "https://evedex.com",
"parent": {
"type": "L2",
"chain": "eip155-1",
"bridges": [
{
"url": "https://bridge.arbitrum.io"
}
]
}
},
{
"name": "MUD Chain",
"chain": "MUD",
"rpc": [
"https://rpc.mud.network"
],
"faucets": [
"https://faucet.mud.network"
],
"nativeCurrency": {
"name": "MUD",
"symbol": "MUD",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://mud.network",
"shortName": "MUD",
"chainId": 168169,
"networkId": 168169,
"icon": "mud",
"explorers": [
{
"name": "MUD Chain Scan",
"url": "https://scan.mud.network",
"icon": "mud",
"standard": "EIP3091"
}
]
},
{
"name": "Altblockscan Mainnet",
"chain": "ALTB",
"rpc": [
"https://rpc.altblockscan.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Altblockscan",
"symbol": "ALTB",
"decimals": 18
},
"infoURL": "https://altblockscan.com",
"shortName": "altb",
"chainId": 191919,
"networkId": 191919,
"icon": "altb",
"explorers": [
{
"name": "altblockscan",
"url": "https://scan.altblockscan.com",
"icon": "altb",
"standard": "none"
}
]
},
{
"name": "B20 Testnet",
"chain": "B20",
"rpc": [
"https://rpc.beonescan.com"
],
"faucets": [
"https://faucet.beonechain.com/"
],
"nativeCurrency": {
"name": "B20",
"symbol": "TBOC",
"decimals": 18
},
"infoURL": "https://rpc.beonescan.com",
"shortName": "B20",
"chainId": 223344,
"networkId": 223344,
"icon": "b20",
"explorers": [
{
"name": "beonescan",
"url": "https://beonescan.com",
"icon": "b20",
"standard": "none"
}
]
},
{
"name": "CELESTIUM Network Testnet",
"chain": "CELESTIUM",
"rpc": [
"https://rpc-private-testnet.celestium.network"
],
"faucets": [
"https://faucet.celestium.network"
],
"nativeCurrency": {
"name": "CLT",
"symbol": "tCLT",
"decimals": 18
},
"infoURL": "https://celestium.network",
"shortName": "tclt",
"chainId": 252525,
"networkId": 252525,
"slip44": 1,
"icon": "celestium",
"explorers": [
{
"name": "CELESTIUM Testnet Explorer",
"icon": "celestium",
"url": "https://testnet.celestium.network",
"standard": "none"
}
]
},
{
"name": "Xsolla ZK Sepolia Testnet",
"chain": "Xsolla ZK Sepolia",
"rpc": [
"https://zkrpc-sepolia.xsollazk.com"
],
"faucets": [
"https://xsollazk.com/faucet"
],
"nativeCurrency": {
"name": "Sepolia Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://xsolla.com/zk",
"shortName": "xsollazk-sepolia",
"chainId": 555777,
"networkId": 555777,
"slip44": 1,
"icon": "xsollazk",
"explorers": [
{
"name": "Xsolla ZK Sepolia Block Explorer",
"url": "https://x.la/explorer",
"icon": "xsollazk",
"standard": "EIP3091"
}
]
},
{
"name": "Hetu Testnet",
"chain": "HETU",
"rpc": [
"https://rpc.testchainv1.hetuscan.com"
],
"faucets": [
"https:/testchainv1.hetuscan.com"
],
"nativeCurrency": {
"name": "tETH",
"symbol": "tETH",
"decimals": 18
},
"infoURL": "https://hetu.org",
"shortName": "HETU",
"chainId": 560000,
"networkId": 560000,
"explorers": [
{
"name": "Hetu Testnet Scan",
"url": "https://testchainv1.hetuscan.com",
"icon": "hetu",
"standard": "EIP3091"
}
]
},
{
"name": "Hoodi testnet",
"chain": "ETH",
"icon": "ethereum",
"rpc": [
"https://rpc.hoodi.ethpandaops.io"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.hoodi.ethpandaops.io",
"https://hoodi-faucet.pk910.de/"
],
"nativeCurrency": {
"name": "Hoodi Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://hoodi.ethpandaops.io",
"shortName": "hoe",
"chainId": 560048,
"networkId": 560048,
"slip44": 1,
"explorers": [
{
"name": "dora",
"url": "https://light-hoodi.beaconcha.in",
"standard": "none"
}
]
},
{
"name": "Gensyn Testnet",
"chain": "Gensyn",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://www.gensyn.ai/",
"shortName": "gensyn-test",
"chainId": 685685,
"networkId": 685685,
"status": "incubating"
},
{
"name": "Pyrope Testnet",
"chain": "ETH",
"rpc": [
"https://rpc.pyropechain.com",
"wss://rpc.pyropechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://pyropechain.com",
"shortName": "pyrope",
"chainId": 695569,
"networkId": 695569,
"icon": "pyrope",
"explorers": [
{
"name": "blockscout",
"url": "https://pyrope.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://pyropechain.com/bridge"
}
]
}
},
{
"name": "Surge Testnet",
"chain": "Surge Testnet",
"rpc": [
"https://l2-rpc.surge.staging-nethermind.xyz",
"wss://l2-rpc.surge.staging-nethermind.xyz"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://surge.wtf",
"shortName": "surge-testnet",
"chainId": 763374,
"networkId": 763374,
"icon": "surge-testnet",
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.holesky.surge.wtf",
"standard": "EIP3091",
"icon": "surge-testnet"
}
]
},
{
"name": "Winr Protocol Mainnet",
"chain": "WINR",
"rpc": [
"https://rpc.winr.games"
],
"faucets": [],
"nativeCurrency": {
"name": "Winr",
"symbol": "WINR",
"decimals": 18
},
"features": [],
"infoURL": "https://winr.games",
"shortName": "winr",
"chainId": 777777,
"networkId": 777777,
"icon": "winr",
"explorers": [
{
"name": "Winr Protocol Explorer",
"url": "https://explorer.winr.games",
"icon": "winr",
"standard": "none"
}
]
},
{
"name": "Oone Chain Mainnet",
"chain": "OONE",
"rpc": [
"https://rpc.oonechain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "OONE",
"symbol": "OONE",
"decimals": 18
},
"infoURL": "https://oonechain.com",
"shortName": "oone",
"chainId": 777888,
"networkId": 777888,
"explorers": [
{
"name": "blockscout",
"url": "https://oonescan.com",
"standard": "none"
}
]
},
{
"name": "Ethpar Testnet",
"chain": "ETP",
"rpc": [
"https://rpc82.testnet.ethpar.net/"
],
"faucets": [],
"nativeCurrency": {
"name": "Ethpar",
"symbol": "ETP",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://ethpar.com",
"shortName": "ethpar-tesnet",
"chainId": 806582,
"networkId": 806582,
"icon": "ethpar",
"explorers": [
{
"name": "Ethpar Testnet Explorer",
"url": "https://dora.testnet.ethpar.net",
"icon": "ethpar",
"standard": "none"
}
]
},
{
"name": "Naga Testnet",
"chain": "Naga",
"rpc": [
"https://rpc.nagafintech.com",
"wss://rpc.nagafintech.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Naga",
"symbol": "Naga",
"decimals": 18
},
"infoURL": "https://stablecoin.nagafintech.com/#/app/home",
"shortName": "Naga",
"chainId": 1008686,
"networkId": 1008686,
"icon": "naga",
"explorers": [
{
"name": "Naga Explorer Testnet",
"url": "https://explorer.nagafintech.com",
"icon": "naga",
"standard": "EIP3091"
}
]
},
{
"name": "XRPL EVM Sidechain Devnet",
"chain": "XRPLEVM Devnet",
"icon": "xrplevm",
"rpc": [
"https://rpc.xrplevm.org",
"https://ws.xrplevm.org"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.xrplevm.org"
],
"nativeCurrency": {
"name": "XRP",
"symbol": "XRP",
"decimals": 18
},
"infoURL": "https://xrplevm.org",
"shortName": "xrplevmdevnet",
"chainId": 1440002,
"networkId": 1440002,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.xrplevm.org",
"icon": "xrplevm",
"standard": "EIP3091"
}
]
},
{
"name": "XRPL EVM Sidechain Testnet",
"chain": "XRPLEVM Testnet",
"icon": "xrplevm",
"rpc": [
"https://rpc.testnet.xrplevm.org",
"https://ws.testnet.xrplevm.org"
],
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"faucets": [
"https://faucet.xrplevm.org"
],
"nativeCurrency": {
"name": "XRP",
"symbol": "XRP",
"decimals": 18
},
"infoURL": "https://xrplevm.org",
"shortName": "xrplevmtestnet",
"chainId": 1449000,
"networkId": 1449000,
"explorers": [
{
"name": "blockscout",
"url": "https://explorer.testnet.xrplevm.org",
"icon": "xrplevm",
"standard": "EIP3091"
}
]
},
{
"name": "Primea Network Testnet",
"chain": "Primea Network Testnet",
"rpc": [
"http://test-rpc.primeanetwork.com/rpc-http",
"https://test-rpc.primeanetwork.com/rpc-https",
"ws://test-rpc.primeanetwork.com/rpc-ws",
"wss://test-rpc.primeanetwork.com/rpc-wss"
],
"faucets": [],
"nativeCurrency": {
"name": "GoldPrimeaNetwork Test",
"symbol": "GOLDPN",
"decimals": 18
},
"infoURL": "https://primeanetwork.com",
"shortName": "test-goldpn",
"chainId": 1698369,
"networkId": 1698369,
"icon": "prim",
"explorers": []
},
{
"name": "Alterscope Testnet",
"chain": "AlterscopeTest",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "RISK Test Token",
"symbol": "RISKT",
"decimals": 18
},
"infoURL": "https://alterscope.org",
"shortName": "AlterscopeTest",
"chainId": 2022091,
"networkId": 2022091,
"status": "incubating"
},
{
"name": "Recall Testnet",
"chain": "Recall Testnet",
"rpc": [
"https://evm.v013.node-0.testnet.recall.network"
],
"faucets": [
"faucet.recall.network"
],
"nativeCurrency": {
"name": "Recall",
"symbol": "RECALL",
"decimals": 18
},
"infoURL": "https://recall.network",
"shortName": "trecall",
"chainId": 2481632,
"networkId": 2481632,
"explorers": [
{
"name": "Recall testnet explorer",
"url": "https://explorer.testnet.recall.network",
"standard": "EIP3091"
}
]
},
{
"name": "COTI",
"chainId": 2632500,
"shortName": "coti",
"chain": "COTI",
"networkId": 2632500,
"nativeCurrency": {
"name": "COTI",
"symbol": "COTI",
"decimals": 18
},
"rpc": [
"https://mainnet.coti.io/rpc"
],
"faucets": [],
"explorers": [
{
"name": "COTI Mainnet Explorer",
"url": "https://mainnet.cotiscan.io",
"icon": "blockscout",
"standard": "EIP3091"
}
],
"infoURL": "https://coti.io/",
"icon": "coti",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
]
},
{
"name": "Arcadia Mainnet",
"chain": "Arcadia",
"rpc": [
"https://arcadia.khalani.network"
],
"faucets": [],
"nativeCurrency": {
"name": "AIP",
"symbol": "AIP",
"decimals": 18
},
"infoURL": "https://khalani.network",
"shortName": "aip",
"chainId": 4278608,
"networkId": 4278608,
"explorers": [
{
"name": "Arcadia Mainnet Explorer",
"url": "https://explorer.arcadia.khalani.network",
"standard": "EIP3091"
}
]
},
{
"name": "RISE Testnet",
"chain": "RISE",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "ETH",
"symbol": "ETH",
"decimals": 18
},
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"infoURL": "https://www.riselabs.xyz/",
"shortName": "rise-testnet",
"chainId": 11155931,
"networkId": 11155931,
"icon": "rise",
"explorers": []
},
{
"name": "Xphere Mainnet",
"chain": "Xphere",
"icon": "xphere",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://en-bkk.x-phere.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Xphere",
"symbol": "XP",
"decimals": 18
},
"infoURL": "https://x-phere.com/",
"shortName": "xp",
"chainId": 20250217,
"networkId": 20250217,
"explorers": [
{
"name": "Tamsa",
"url": "https://xp.tamsa.io",
"standard": "EIP3091"
}
]
},
{
"name": "Vcitychain Mainnet",
"chain": "Vcitychain",
"rpc": [
"https://mainnet-rpc.vcity.app"
],
"faucets": [],
"nativeCurrency": {
"name": "Vcity Coin",
"symbol": "VCITY",
"decimals": 18
},
"features": [],
"infoURL": "https://vcity.app",
"shortName": "vcity",
"chainId": 20250825,
"networkId": 20250825,
"icon": "vcitychain",
"explorers": [
{
"name": "Vcitychain Explorer",
"url": "https://blockchain.vcity.app",
"icon": "vcitychain",
"standard": "none"
}
]
},
{
"name": "dKargo Warehouse Testnet",
"chain": "dKargo Warehouse",
"rpc": [
"https://warehouse-full01.dkargo.io"
],
"faucets": [],
"nativeCurrency": {
"name": "dKargo",
"symbol": "DKA",
"decimals": 18
},
"infoURL": "https://dkargo.io",
"shortName": "dkargowarehouse",
"chainId": 61022448,
"networkId": 61022448
},
{
"name": "Winr Protocol Testnet",
"chain": "WINR",
"rpc": [
"https://rpc-devnet.winr.games"
],
"faucets": [],
"nativeCurrency": {
"name": "Winr",
"symbol": "WINR",
"decimals": 18
},
"features": [],
"infoURL": "https://winr.games",
"shortName": "winrtestnet",
"chainId": 66666666,
"networkId": 66666666,
"icon": "winr",
"explorers": [
{
"name": "Winr Protocol Testnet Explorer",
"url": "https://explorer-winrprotocoltestnet-wmwv59m23g.t.conduit.xyz",
"icon": "winr",
"standard": "none"
}
]
},
{
"name": "Smart Mainnet",
"chain": "SMART",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Smart",
"symbol": "SMART",
"decimals": 6
},
"infoURL": "https://smartblockchain.com",
"shortName": "smart",
"chainId": 661898459,
"networkId": 661898459,
"slip44": 783,
"icon": "smart",
"explorers": [
{
"name": "smartexplorer",
"url": "https://smartexplorer.com",
"icon": "smart",
"standard": "none"
}
]
},
{
"name": "Status Network Sepolia",
"title": "Status Network Sepolia",
"chain": "ETH",
"rpc": [
"https://public.sepolia.rpc.status.network",
"wss://status-sepolia-rpc.eu-north-2.gateway.fm/ws"
],
"faucets": [
"https://faucet.status.network/"
],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"infoURL": "https://status.network",
"shortName": "sn-sepolia",
"chainId": 1660990954,
"networkId": 1660990954,
"icon": "sn",
"parent": {
"type": "L2",
"chain": "eip155-11155111",
"bridges": [
{
"url": "https://bridge.status.network"
}
]
},
"explorers": [
{
"name": "Blockscout",
"url": "https://sepoliascan.status.network",
"standard": "EIP3091",
"icon": "sn"
}
],
"status": "active"
},
{
"name": "Tron Shasta",
"chain": "TRON",
"rpc": [
"https://api.shasta.trongrid.io/jsonrpc"
],
"faucets": [],
"nativeCurrency": {
"name": "Tron",
"symbol": "TRX",
"decimals": 6
},
"infoURL": "https://tron.network",
"shortName": "tron-shasta",
"chainId": 2494104990,
"networkId": 2494104990,
"icon": "tron",
"explorers": [
{
"name": "shasta tronscan",
"url": "https://shasta.tronscan.org",
"icon": "tron",
"standard": "none"
}
]
},
{
"name": "Ultima Mainnet",
"chain": "ULTIMA",
"rpc": [],
"faucets": [],
"nativeCurrency": {
"name": "Ultima",
"symbol": "ULTIMA",
"decimals": 6
},
"infoURL": "https://ultima.io",
"shortName": "ultima",
"chainId": 3416255149,
"networkId": 3416255149,
"slip44": 785,
"icon": "ultima",
"explorers": [
{
"name": "ultimachain",
"url": "https://ultimachain.info",
"icon": "ultima",
"standard": "none"
}
]
},
{
"name": "ONFA Chain",
"title": "ONFA Chain",
"chain": "onfa",
"rpc": [
"https://rpc.onfa.io",
"https://rpc.onfachain.com",
"wss://ws.onfa.io",
"wss://ws.onfachain.com"
],
"faucets": [],
"nativeCurrency": {
"name": "Onfa Coin",
"symbol": "OFC",
"decimals": 18
},
"infoURL": "https://onfa.io",
"shortName": "onfa",
"chainId": 8691942025,
"networkId": 8691942025,
"icon": "onfachain",
"explorers": [
{
"name": "ONFA Scan",
"url": "https://onfascan.com",
"icon": "onfachain",
"standard": "EIP3091"
}
]
},
{
"name": "Basecamp",
"chain": "CAMP",
"icon": "camp",
"features": [
{
"name": "EIP155"
},
{
"name": "EIP1559"
}
],
"rpc": [
"https://rpc.basecamp.t.raas.gelato.cloud"
],
"faucets": [
"https://www.campnetwork.xyz/faucet_l1"
],
"nativeCurrency": {
"name": "Camp",
"symbol": "CAMP",
"decimals": 18
},
"infoURL": "https://docs.campnetwork.xyz/",
"shortName": "Basecamp",
"chainId": 123420001114,
"networkId": 123420001114,
"slip44": 1,
"explorers": [
{
"name": "blockscout",
"url": "https://basecamp.cloud.blockscout.com",
"icon": "blockscout",
"standard": "EIP3091"
}
]
},
{
"name": "Yominet",
"chain": "YOMINET",
"icon": "yominet",
"rpc": [
"https://jsonrpc-yominet-1.anvil.asia-southeast.initia.xyz"
],
"faucets": [],
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
},
"shortName": "yomi",
"infoURL": "https://www.kamigotchi.io/",
"chainId": 428962654539583,
"networkId": 428962654539583,
"explorers": []
},
{
"name": "CryptoZR",
"chain": "CryptoZR",
"icon": "CryptoZR",
"rpc": [
"https://doubun.com"
],
"faucets": [],
"nativeCurrency": {
"name": "ART",
"symbol": "ART",
"decimals": 18
},
"shortName": "CryptoZR",
"infoURL": "",
"chainId": 7198,
"networkId": 7198,
"explorers": []
},
{
"name": "ENI Mainnet",
"chainId": 173,
"shortName": "ENI",
"chain": "ENI",
"network": "mainnet",
"networkId": 173,
"nativeCurrency": {
"name": "EGAS",
"symbol": "EGAS",
"decimals": 18,
"logo": "https://hk.tpstatic.net/dapp/tokenpocket-1750862098594.png"
},
"rpc": [
"https://rpc.eniac.network",
"https://rpc1.eniac.network",
"https://rpc2.eniac.network"
],
"faucets": [],
"explorers": [
{
"name": "EniacScan",
"url": "https://scan.eniac.network/",
"standard": "EIP3091"
}
],
"infoURL": "https://www.eniac.network",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1750862112876.png",
"ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1750862117868.png",
"color_chain_bg": "0x10100E",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1750862128546.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1750862161587.png"
}
},
{
"name": "Mars Chain",
"chainId": 704851,
"shortName": "Mars",
"chain": "Mars",
"network": "mainnet",
"networkId": 704851,
"nativeCurrency": {
"name": "MarsC",
"symbol": "MarsC",
"decimals": 18
},
"rpc": [
"https://rpc.mars-scan.io"
],
"faucets": [],
"explorers": [
{
"name": "Mars Scan",
"url": "https://explorer.mars-chain.io/",
"standard": "EIP3091"
}
],
"infoURL": "https://www.mars-chain.io/",
"app_resource": {
"ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1751806883293.png",
"ic_chain_unselect": "hhttps://hk.tpstatic.net/dapp/tokenpocket-1751806894282.png",
"color_chain_bg": "0xF27022",
"color_chain_text": "0xFFFFFF",
"ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1751806898481.png",
"ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1751806917647.png"
}
},
{
"name": "MixMax Chain",
"chainId": 79,
"shortName": "MC",
"chain": "MixMax",
"network": "mainnet",
"networkId": 79,
"nativeCurrency": {
"name": "MC",
"symbol": "MC",
"decimals": 18
},
"rpc": [
"https://chain.mixmax.cc",
"https://chain5.mixmax.cc",
"https://chain-1.mmchain.cc",
"https://chain3.mixmax.cc"
],
"faucets": [],
"infoURL": "https://www.mixmax.pro/white-paper",
"app_resource": {
"ic_chain_select": "https://pic.mixmax.cc/ic_chain_select.png",
"ic_chain_unselect": "https://pic.mixmax.cc/ic_chain_unselect.png",
"ic_chain_unselect_dark": "https://pic.mixmax.cc/ic_chain_unselect.png",
"color_chain_bg": "0x4E2700",
"color_chain_text": "0xFFFFFF",
"ic_home_logo": "https://pic.mixmax.cc/ic_chain_select.png"
}
},
{
"name": "Mova Chain",
"chainId": 61900,
"shortName": "Mova",
"chain": "Mova",
"network": "mainnet",
"networkId": 61900,
"nativeCurrency": {
"name": "MOVA",
"symbol": "MOVA",
"decimals": 18
},
"rpc": [
"https://rpc.movachain.com"
],
"faucets": [],
"infoURL": "https://movachain.com",
"app_resource": {
"ic_chain_select": "https://asset.movachain.com/logo/Mova-TP-Icon-01.png",
"ic_chain_unselect": "https://asset.movachain.com/logo/Mova-TP-Icon-04.png",
"ic_chain_unselect_dark": "https://asset.movachain.com/logo/Mova-TP-Icon-03.png",
"color_chain_bg": "0xC0FF72",
"color_chain_text": "0xFFFFFF",
"ic_home_logo": "https://asset.movachain.com/logo/Mova-TP-Icon-01.png"
}
},
{
"name": "Nexus Chain",
"chainId": 8910,
"shortName": "Nexus",
"chain": "Nexus",
"network": "mainnet",
"networkId": 8910,
"nativeCurrency": {
"name": "NXR",
"symbol": "NXR",
"decimals": 18
},
"rpc": [
"https://node.nexuschain.cc"
],
"faucets": [],
"explorers": [
{
"name": "Nexus explorer",
"url": "https://explorer.nexuschain.cc",
"standard": "EIP3091"
}
],
"infoURL": "https://www.nexuschain.cc",
"app_resource": {
"ic_chain_select": "http://icon.nexuschain.cc/day-m.png",
"ic_chain_unselect": "http://icon.nexuschain.cc/day.png",
"color_chain_bg": "#646464",
"color_chain_text": "#66FFFF ",
"ic_chain_unselect_dark": "http://icon.nexuschain.cc/night.png",
"ic_home_logo": "http://icon.nexuschain.cc/night-m.png"
}
},
{
"name": "MCNChain",
"chainId": 32169,
"shortName": "mcn",
"chain": "MCN",
"network": "mainnet",
"networkId": 32169,
"nativeCurrency": {
"name": "MCN",
"symbol": "MCN",
"decimals": 18
},
"rpc": [
"https://rpc1.mcnsmartchain.com",
"https://rpc2.mcnsmartchain.com",
"https://rpc3.mcnsmartchain.com"
],
"faucets": [],
"infoURL": "https://www.mcnsmartchain.com",
"explorers": [
{
"name": "MCN Scan",
"url": "https://block.mcnsmartchain.com",
"standard": "EIP3091"
}
],
"app_resource": {
"ic_chain_select": "https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg",
"ic_chain_unselect": "https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg",
"ic_chain_unselect_dark": "https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg",
"color_chain_bg": "0x99FF00",
"color_chain_text": "0x000000",
"ic_home_logo": "https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg"
}
}
]
================================================
FILE: components/chain/chain.js
================================================
import React, { useState, useEffect } from 'react';
import { Typography, Paper, Grid, Button, Tooltip } from '@material-ui/core'
import Skeleton from '@material-ui/lab/Skeleton';
import { useRouter } from 'next/router'
import Web3 from 'web3';
import classes from './chain.module.css'
import stores from '../../stores/index.js'
import { getProvider } from '../../utils'
import {
ERROR,
CONNECT_WALLET,
TRY_CONNECT_WALLET,
ACCOUNT_CONFIGURED
} from '../../stores/constants'
export default function Chain({ chain }) {
const router = useRouter()
const [account, setAccount] = useState(null)
useEffect(() => {
const accountConfigure = () => {
const accountStore = stores.accountStore.getStore('account')
setAccount(accountStore)
}
stores.emitter.on(ACCOUNT_CONFIGURED, accountConfigure)
const accountStore = stores.accountStore.getStore('account')
setAccount(accountStore)
return () => {
stores.emitter.removeListener(ACCOUNT_CONFIGURED, accountConfigure)
}
}, [])
const toHex = (num) => {
return '0x' + num.toString(16)
}
const addToNetwork = () => {
if (!(account && account.address)) {
stores.dispatcher.dispatch({ type: TRY_CONNECT_WALLET })
return
}
const params = {
chainId: toHex(chain.chainId), // A 0x-prefixed hexadecimal string
chainName: chain.name,
nativeCurrency: {
name: chain.nativeCurrency.name,
symbol: chain.nativeCurrency.symbol, // 2-6 characters long
decimals: chain.nativeCurrency.decimals,
},
rpcUrls: chain.rpc,
blockExplorerUrls: [((chain.explorers && chain.explorers.length > 0 && chain.explorers[0].url) ? chain.explorers[0].url : chain.infoURL)]
}
window.web3.eth.getAccounts((error, accounts) => {
window.ethereum.request({
method: 'wallet_addEthereumChain',
params: [params, accounts[0]],
})
.then((result) => {
console.log(result)
})
.catch((error) => {
stores.emitter.emit(ERROR, error.message ? error.message : error)
console.log(error)
});
})
}
const renderProviderText = () => {
if (account && account.address) {
const providerTextList = {
tokenpocket: 'Add to TokenPocket',
dfox: 'Add to TokenPocket',
Metamask: 'Add to Metamask',
imToken: 'Add to imToken',
Wallet: 'Add to Wallet'
}
return providerTextList[getProvider()]
} else {
return 'Connect wallet'
}
}
if (!chain) {
return
}
return (
{
// e.target.onerror = null;
// e.target.src = "/chains/unknown-logo.png";
// }}
src="/chains/unknown-logo.png"
width={28}
height={28}
className={classes.avatar}
/>
{chain.name}
ChainID
{chain.chainId}
Currency
{chain.nativeCurrency ? chain.nativeCurrency.symbol : 'none'}
{renderProviderText()}
)
}
================================================
FILE: components/chain/chain.module.css
================================================
.chainContainer {
width: 100%;
border-radius: 10px;
padding: 30px;
}
.addButton {
width: 100%;
display: flex;
justify-content: center;
}
.name {
}
.chainInfoContainer {
display: flex;
align-items: flex-start;
margin-left: 52px;
margin-bottom: 20px;
}
.dataPoint {
flex: 1;
}
.dataPointHeader {
padding-bottom: 7px;
}
.avatar {
margin-right: 24px;
}
.chainNameContainer {
display: flex;
align-items: center;
justify-content: flex-start;
width: 100%;
margin-bottom: 12px !important;
}
================================================
FILE: components/chain/package.json
================================================
{
"main": "chain.js"
}
================================================
FILE: components/header/header.js
================================================
import React, { useState, useEffect } from 'react';
import { Typography, Switch, Button } from '@material-ui/core'
import { withStyles } from '@material-ui/core/styles';
import { withTheme } from '@material-ui/core/styles';
import WbSunnyOutlinedIcon from '@material-ui/icons/WbSunnyOutlined';
import Brightness2Icon from '@material-ui/icons/Brightness2';
import ArrowBackIcon from '@material-ui/icons/ArrowBack';
import {
CONNECT_WALLET,
TRY_CONNECT_WALLET,
ACCOUNT_CONFIGURED
} from '../../stores/constants'
// import Unlock from '../unlock'
import stores from '../../stores'
import { formatAddress, getProvider } from '../../utils'
import classes from './header.module.css'
const StyledSwitch = withStyles((theme) => ({
root: {
width: 58,
height: 32,
padding: 0,
margin: theme.spacing(1),
},
switchBase: {
padding: 1,
'&$checked': {
transform: 'translateX(28px)',
color: '#212529',
'& + $track': {
backgroundColor: '#ffffff',
opacity: 1,
},
},
'&$focusVisible $thumb': {
color: '#ffffff',
border: '6px solid #fff',
}
},
thumb: {
width: 24,
height: 24,
},
track: {
borderRadius: 32 / 2,
border: `1px solid #212529`,
backgroundColor: '#212529',
opacity: 1,
transition: theme.transitions.create(['background-color', 'border']),
},
checked: {},
focusVisible: {},
}))(({ classes, ...props }) => {
return (
);
});
function Header(props) {
const [account, setAccount] = useState(null)
const [darkMode, setDarkMode] = useState(props.theme.palette.type === 'dark' ? true : false);
const [unlockOpen, setUnlockOpen] = useState(false);
useEffect(() => {
const accountConfigure = () => {
const accountStore = stores.accountStore.getStore('account')
setAccount(accountStore)
}
const connectWallet = () => {
onAddressClicked()
stores.dispatcher.dispatch({ type: TRY_CONNECT_WALLET })
}
stores.emitter.on(ACCOUNT_CONFIGURED, accountConfigure)
stores.emitter.on(CONNECT_WALLET, connectWallet)
const accountStore = stores.accountStore.getStore('account')
setAccount(accountStore)
return () => {
stores.emitter.removeListener(ACCOUNT_CONFIGURED, accountConfigure)
stores.emitter.removeListener(CONNECT_WALLET, connectWallet)
}
}, [])
const handleToggleChange = (event, val) => {
setDarkMode(val)
props.changeTheme(val)
}
const onAddressClicked = () => {
stores.dispatcher.dispatch({ type: TRY_CONNECT_WALLET })
}
const renderProviderLogo = () => {
const providerLogoList = {
Metamask: 'metamask',
dfox: 'tokenpocket',
tokenpocket: 'tokenpocket',
imToken: 'imtoken',
Wallet: 'metamask',
}
return providerLogoList[getProvider()]
}
useEffect(function () {
const localStorageDarkMode = window.localStorage.getItem('yearn.finance-dark-mode')
setDarkMode(localStorageDarkMode ? localStorageDarkMode === 'dark' : false)
}, []);
return (
{props.backClicked && (
)}
}
checkedIcon={ }
checked={darkMode}
onChange={handleToggleChange}
/>
{account && account.address &&
}
{(account && account.address) ? formatAddress(account.address) : 'Connect Wallet'}
)
}
export default withTheme(Header)
================================================
FILE: components/header/header.module.css
================================================
.headerContainer {
display: flex;
justify-content: flex-end;
align-items: center;
}
.accountButton {
display: flex;
align-items: center;
margin-left: 12px !important;
min-height: 40px;
width: 250px;
}
.accountIcon {
width: 30px;
height: 30px;
background-size: 100%;
margin-right: 12px;
}
.metamask {
background-image: url('/connectors/icn-metamask.svg');
}
.dfox {
background-image: url('/connectors/icn-dfox.svg');
}
.tokenpocket {
background-image: url('/connectors/icn-tokenpocket.svg');
}
.imtoken {
background-image: url('/connectors/icn-imtoken.svg');
}
.ledger {
background-image: url('/connectors/icn-ledger.svg');
}
.coinbase {
background-image: url('/connectors/coinbaseWalletIcon.svg');
}
.torus {
background-image: url('/connectors/torus.jpg');
}
.trust {
background-image: url('/connectors/trustWallet.png');
}
.themeSelectContainer {
margin-left: 12px !important;
}
.switchIcon {
font-size: 1.5rem !important;
margin-top: 0.2rem;
}
.backButton {
flex: 1;
}
@media screen and (max-width: 600px) {
.headerContainer {
width: 100%;
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.accountButton {
width: 100%;
}
}
================================================
FILE: components/header/package.json
================================================
{
"main": "header.js"
}
================================================
FILE: components/multichain/multichain.js
================================================
import React, { useState } from 'react';
import { Typography, Paper, Grid, Button, FormControlLabel, Checkbox } from '@material-ui/core'
import { createMuiTheme, ThemeProvider } from '@material-ui/core/styles';
import Skeleton from '@material-ui/lab/Skeleton';
import Web3 from 'web3';
import ArrowForwardIcon from '@material-ui/icons/ArrowForward';
import CloseIcon from '@material-ui/icons/Close';
import classes from './multichain.module.css'
import stores from '../../stores/index.js'
import { getProvider } from '../../utils'
export default function Multichain({ closeMultichain }) {
const [checked, setChecked] = useState(false)
const navigateToMultichain = () => {
window.open("https://www.transit.finance/?from=chainlist", "_blank")
}
const handleChange = () => {
setChecked(!checked)
}
const theme = createMuiTheme({
palette: {
type: 'dark',
secondary: {
main: '#fff'
}
},
typography: {
fontFamily: [
'Inter',
'Arial',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
].join(','),
body1: {
fontSize: '12px'
}
},
overrides: {
MuiButton: {
root: {
borderRadius: '32px',
padding: '9px 16px'
},
containedPrimary: {
backgroundColor: '#fff',
color: '#000'
}
},
MuiFormControlLabel: {
root: {
color: '#fff'
}
}
},
});
return (
Manage over 120 tokens and multi-chain assets with fully supported cross chain transactions.
}
>
Try out Transit.finance
}
label="Don't show again"
/>
{ closeMultichain(checked) }}
endIcon={ }
>
Close
)
}
================================================
FILE: components/multichain/multichain.module.css
================================================
.chainContainer {
width: 100%;
border-radius: 10px;
background: #0074de !important;
display: flex;
flex-direction: column;
grid-column-start: 3;
grid-column-end: 4;
grid-row-start: 2;
grid-row-end: 4;
}
.tryButton {
width: 100%;
display: flex;
justify-content: center;
}
.descriptionText {
width: 100%;
color: #fff !important;
}
.topInfo {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
flex-grow: 1;
padding: 30px;
}
.bottomActions {
border-top: 1px solid #FFFFFF1A;
display: flex;
align-items: center;
justify-content: space-evenly;
padding: 6px 24px;
}
.buttonLabel {
text-transform: none !important;
font-weight: 500 !important;
}
.buttonText {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
@media screen and (max-width: 1700px) {
.chainContainer {
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 2;
grid-row-end: 4;
}
}
@media screen and (max-width: 600px) {
.chainContainer {
grid-column-start: 1;
grid-column-end: 2;
grid-row-start: 1;
grid-row-end: 2;
}
}
================================================
FILE: components/multichain/package.json
================================================
{
"main": "multichain.js"
}
================================================
FILE: components/snackbar/package.json
================================================
{
"main": "snackbarController.jsx"
}
================================================
FILE: components/snackbar/snackbar.jsx
================================================
import React, { Component } from "react";
import {
Snackbar,
IconButton,
Button,
Typography,
SvgIcon
} from '@material-ui/core';
import { colors } from "../../theme/coreTheme";
const iconStyle = {
fontSize: '22px',
marginRight: '10px',
verticalAlign: 'middle'
}
function CloseIcon(props) {
const { color } = props;
return (
);
}
function SuccessIcon(props) {
const { color } = props;
return (
);
}
function ErrorIcon(props) {
const { color } = props;
return (
);
}
function WarningIcon(props) {
const { color } = props;
return (
);
}
function InfoIcon(props) {
const { color } = props;
return (
);
}
class MySnackbar extends Component {
state = {
open: this.props.open,
};
handleClick = () => {
this.setState({ open: true });
};
handleClose = (event, reason) => {
if (reason === 'clickaway') {
return;
}
this.setState({ open: false });
};
render() {
const { type, message } = this.props
let icon =
let color = colors.blue
let messageType = ''
let actions = [
,
]
switch (type) {
case 'Error':
icon =
color = colors.red
messageType = "Error"
break;
case 'Success':
icon =
color = colors.blue
messageType = "Success"
break;
case 'Warning':
icon =
color = colors.orange
messageType = "Warning"
break;
case 'Info':
icon =
color = colors.blue
messageType = "Info"
break;
case 'Hash':
icon =
color = colors.blue
messageType = "Hash"
let snackbarMessage = 'https://etherscan.io/tx/'+message;
actions = [ window.open(snackbarMessage, "_blank")}>
View
,
,
]
break;
default:
icon =
color = colors.blue
messageType = "Success"
break;
}
return (
{icon}
{ messageType }
{ message }
}
action={actions}
/>
);
}
}
export default MySnackbar;
================================================
FILE: components/snackbar/snackbarController.jsx
================================================
import React, { Component } from "react";
import { withStyles } from '@material-ui/core/styles';
import Snackbar from './snackbar.jsx'
import {
ERROR,
TX_SUBMITTED,
} from '../../stores/constants'
import stores from "../../stores";
const emitter = stores.emitter
const styles = theme => ({
root: {
},
});
class SnackbarController extends Component {
constructor(props) {
super()
this.state = {
open: false,
snackbarType: null,
snackbarMessage: null
}
}
componentWillMount() {
emitter.on(ERROR, this.showError);
emitter.on(TX_SUBMITTED, this.showHash);
}
componentWillUnmount() {
emitter.removeListener(ERROR, this.showError);
emitter.removeListener(TX_SUBMITTED, this.showHash);
};
showError = (error) => {
const snackbarObj = { snackbarMessage: null, snackbarType: null, open: false }
this.setState(snackbarObj)
const that = this
setTimeout(() => {
const snackbarObj = { snackbarMessage: error.toString(), snackbarType: 'Error', open: true }
that.setState(snackbarObj)
})
}
showHash = (txHash) => {
const snackbarObj = { snackbarMessage: null, snackbarType: null, open: false }
this.setState(snackbarObj)
const that = this
setTimeout(() => {
const snackbarObj = { snackbarMessage: txHash, snackbarType: 'Hash', open: true }
that.setState(snackbarObj)
})
}
render() {
const {
snackbarType,
snackbarMessage,
open
} = this.state
if(open) {
return
} else {
return
}
};
}
export default withStyles(styles)(SnackbarController);
================================================
FILE: components/unlock/package.json
================================================
{
"main": "unlockModal.js"
}
================================================
FILE: components/unlock/unlock.js
================================================
import React, { Component } from "react";
import { withStyles } from '@material-ui/core/styles';
import {
Typography,
Button,
CircularProgress
} from '@material-ui/core';
import CloseIcon from '@material-ui/icons/Close';
import {
Web3ReactProvider,
useWeb3React,
} from "@web3-react/core";
import { Web3Provider } from "@ethersproject/providers";
import {
ERROR,
CONNECTION_DISCONNECTED,
CONNECTION_CONNECTED,
CONFIGURE,
} from '../../stores/constants'
import stores from '../../stores'
const styles = theme => ({
root: {
flex: 1,
height: 'auto',
display: 'flex',
position: 'relative'
},
contentContainer: {
margin: 'auto',
textAlign: 'center',
padding: '12px',
display: 'flex',
flexWrap: 'wrap'
},
cardContainer: {
marginTop: '60px',
minHeight: '260px',
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-around',
alignItems: 'center'
},
unlockCard: {
padding: '24px'
},
buttonText: {
marginLeft: '12px',
fontWeight: '700',
},
instruction: {
maxWidth: '400px',
marginBottom: '32px',
marginTop: '32px'
},
actionButton: {
padding: '12px',
backgroundColor: 'white',
borderRadius: '3rem',
border: '1px solid #E1E1E1',
fontWeight: 500,
[theme.breakpoints.up('md')]: {
padding: '15px',
}
},
connect: {
width: '100%'
},
closeIcon: {
position: 'absolute',
right: '-8px',
top: '-8px',
cursor: 'pointer'
}
});
class Unlock extends Component {
constructor(props) {
super()
this.state = {
loading: false,
error: null
}
}
componentWillMount() {
stores.emitter.on(CONNECTION_CONNECTED, this.connectionConnected);
stores.emitter.on(CONNECTION_DISCONNECTED, this.connectionDisconnected);
stores.emitter.on(ERROR, this.error);
};
componentWillUnmount() {
stores.emitter.removeListener(CONNECTION_CONNECTED, this.connectionConnected);
stores.emitter.removeListener(CONNECTION_DISCONNECTED, this.connectionDisconnected);
stores.emitter.removeListener(ERROR, this.error);
};
error = (err) => {
this.setState({ loading: false, error: err })
};
connectionConnected = () => {
if(this.props.closeModal != null) {
this.props.closeModal()
}
}
connectionDisconnected = () => {
if(this.props.closeModal != null) {
this.props.closeModal()
}
}
render() {
const { classes, closeModal } = this.props;
return (
)
};
}
function getLibrary(provider) {
const library = new Web3Provider(provider);
library.pollingInterval = 8000;
return library;
}
function onConnectionClicked(currentConnector, name, setActivatingConnector, activate) {
const connectorsByName = stores.accountStore.getStore('connectorsByName')
setActivatingConnector(currentConnector);
activate(connectorsByName[name]);
}
function onDeactivateClicked(deactivate, connector) {
if(deactivate) {
deactivate()
}
if(connector && connector.close) {
connector.close()
}
stores.accountStore.setStore({ account: { }, web3context: null })
stores.emitter.emit(CONNECTION_DISCONNECTED)
}
function MyComponent(props) {
const context = useWeb3React();
const localContext = stores.accountStore.getStore('web3context');
var localConnector = null;
if (localContext) {
localConnector = localContext.connector
}
const {
connector,
library,
account,
activate,
deactivate,
active,
error
} = context;
var connectorsByName = stores.accountStore.getStore('connectorsByName')
const { closeModal } = props
const [activatingConnector, setActivatingConnector] = React.useState();
React.useEffect(() => {
if (activatingConnector && activatingConnector === connector) {
setActivatingConnector(undefined);
}
}, [activatingConnector, connector]);
React.useEffect(() => {
if (account && active && library) {
stores.accountStore.setStore({ account: { address: account }, web3context: context })
stores.emitter.emit(CONNECTION_CONNECTED)
}
}, [account, active, closeModal, context, library]);
const width = window.innerWidth
return (
576 ? 'space-between' : 'center'), alignItems: 'center' }}>
{Object.keys(connectorsByName).map(name => {
const currentConnector = connectorsByName[name];
const activating = currentConnector === activatingConnector;
const connected = (currentConnector === connector||currentConnector === localConnector);
const disabled =
!!activatingConnector || !!error;
let url;
let display = name;
let descriptor = ''
if (name === 'MetaMask') {
url = '/connectors/icn-metamask.svg'
descriptor= 'Connect to your MetaMask wallet'
} else if (name === 'WalletConnect') {
url = '/connectors/walletConnectIcon.svg'
descriptor= 'Scan with WalletConnect to connect'
} else if (name === 'TrustWallet') {
url = '/connectors/trustWallet.png'
descriptor= 'Connect to your TrustWallet'
} else if (name === 'Portis') {
url = '/connectors/portisIcon.png'
descriptor= 'Connect with your Portis account'
} else if (name === 'Fortmatic') {
url = '/connectors/fortmaticIcon.png'
descriptor= 'Connect with your Fortmatic account'
} else if (name === 'Ledger') {
url = '/connectors/icn-ledger.svg'
descriptor= 'Connect with your Ledger Device'
} else if (name === 'Squarelink') {
url = '/connectors/squarelink.png'
descriptor= 'Connect with your Squarelink account'
} else if (name === 'Trezor') {
url = '/connectors/trezor.png'
descriptor= 'Connect with your Trezor Device'
} else if (name === 'Torus') {
url = '/connectors/torus.jpg'
descriptor= 'Connect with your Torus account'
} else if (name === 'Authereum') {
url = '/connectors/icn-aethereum.svg'
descriptor= 'Connect with your Authereum account'
} else if (name === 'WalletLink') {
display = 'Coinbase Wallet'
url = '/connectors/coinbaseWalletIcon.svg'
descriptor= 'Connect to your Coinbase wallet'
} else if (name === 'Frame') {
return ''
}
return (
576 ? '12px 0px' : '0px') }}>
576 ? '350px' : 'calc(100vw - 100px)'),
height: '160px'
} }
variant='contained'
onClick={() => {
onConnectionClicked(currentConnector, name, setActivatingConnector, activate)
}}
disableElevation
color='secondary'
disabled={ disabled }>
{ display }
{ descriptor }
{ activating &&
}
{ (!activating && connected) &&
}
)
}) }
)
}
export default withStyles(styles)(Unlock);
================================================
FILE: components/unlock/unlockModal.js
================================================
import React, { Component } from "react";
import {
DialogContent,
Dialog,
Slide
} from '@material-ui/core';
import Unlock from './unlock.js';
function Transition(props) {
return ;
}
class UnlockModal extends Component {
render() {
const { closeModal, modalOpen } = this.props;
const fullScreen = window.innerWidth < 576;
return (
)
};
}
export default UnlockModal;
================================================
FILE: eslint.config.mjs
================================================
import jsonc from "eslint-plugin-jsonc";
import jsoncParser from "jsonc-eslint-parser";
export default [
{
files: ["chains.json"],
languageOptions: {
parser: jsoncParser,
},
plugins: {
jsonc,
},
rules: {
"jsonc/auto": "error",
"jsonc/comma-dangle": "error"
}
},
];
================================================
FILE: next.config.js
================================================
module.exports = {
// Use the CDN in production and localhost for development.
// assetPrefix: 'https://tp-lab.tokenpocket.pro/NetworkList/',
basePath: '',
}
================================================
FILE: package.json
================================================
{
"name": "networklist",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"build2": "next build && next export",
"start": "next start"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"flux": "^4.0.1",
"next": "10.0.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"swr": "^0.5.6",
"web3": "^1.3.4"
},
"devDependencies": {
"eslint-plugin-jsonc": "^2.16.0",
"jsonc-eslint-parser": "^2.4.0"
}
}
================================================
FILE: pages/_app.js
================================================
import React, { useState, useEffect } from 'react';
import { ThemeProvider } from '@material-ui/core/styles';
import CssBaseline from '@material-ui/core/CssBaseline';
import SnackbarController from '../components/snackbar'
import stores from '../stores/index.js'
import {
CONFIGURE,
} from '../stores/constants'
import '../styles/globals.css'
import lightTheme from '../theme/light';
import darkTheme from '../theme/dark';
function MyApp({ Component, pageProps }) {
const [ themeConfig, setThemeConfig ] = useState(lightTheme);
const changeTheme = (dark) => {
setThemeConfig(dark ? darkTheme : lightTheme)
localStorage.setItem("yearn.finance-dark-mode", dark ? "dark" : "light");
}
useEffect(function() {
const localStorageDarkMode = window.localStorage.getItem(
"yearn.finance-dark-mode"
);
changeTheme(localStorageDarkMode ? localStorageDarkMode === "dark" : false);
}, []);
useEffect(function() {
stores.dispatcher.dispatch({ type: CONFIGURE })
},[]);
return (
)
}
export default MyApp
================================================
FILE: pages/_document.js
================================================
/* eslint-disable react/jsx-filename-extension */
import React from 'react';
import Document, { Html, Head, Main, NextScript } from 'next/document';
import { ServerStyleSheets } from '@material-ui/core/styles';
export default class MyDocument extends Document {
render() {
return (
);
}
}
// `getInitialProps` belongs to `_document` (instead of `_app`),
// it's compatible with server-side generation (SSG).
MyDocument.getInitialProps = async (ctx) => {
// Render app and page and get the context of the page with collected side effects.
const sheets = new ServerStyleSheets();
const originalRenderPage = ctx.renderPage;
ctx.renderPage = () => originalRenderPage({
enhanceApp: (App) => (props) => sheets.collect( ),
});
const initialProps = await Document.getInitialProps(ctx);
return {
...initialProps,
// Styles fragment is rendered after the app and page rendering finish.
styles: [...React.Children.toArray(initialProps.styles), sheets.getStyleElement()],
};
};
================================================
FILE: pages/index.js
================================================
import React, { useState, useEffect } from 'react';
import Head from 'next/head'
import { useRouter } from 'next/router'
import styles from '../styles/Home.module.css'
import { withTheme, createMuiTheme, ThemeProvider } from '@material-ui/core/styles';
import path from 'path'
import {
Grid,
Typography,
Button,
TextField,
InputAdornment,
Paper
} from '@material-ui/core'
import ToggleButton from '@material-ui/lab/ToggleButton';
import ToggleButtonGroup from '@material-ui/lab/ToggleButtonGroup';
import Chain from '../components/chain'
import MultiChain from '../components/multichain'
import Header from '../components/header'
import SearchIcon from '@material-ui/icons/Search';
import AppsIcon from '@material-ui/icons/Apps';
import ListIcon from '@material-ui/icons/List';
import AddIcon from '@material-ui/icons/Add';
import useSWR from 'swr'
import classes from './index.module.css'
// import data from '../chains.json'
const searchTheme = createMuiTheme({
palette: {
type: 'light',
primary: {
main: '#2F80ED',
},
},
shape: {
borderRadius: '10px'
},
typography: {
fontFamily: [
'Inter',
'Arial',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
].join(','),
body1: {
fontSize: '12px'
}
},
overrides: {
MuiPaper: {
elevation1: {
"box-shadow": '0px 7px 7px #0000000A;',
"-webkit-box-shadow": '0px 7px 7px #0000000A;',
"-moz-box-shadow": '0px 7px 7px #0000000A;',
}
},
MuiInputBase: {
input: {
fontSize: '14px'
},
},
MuiOutlinedInput: {
input: {
padding: '12.5px 14px'
},
notchedOutline: {
borderColor: "#FFF",
}
},
},
});
const fetcher = (...args) => fetch(...args).then(res => res.json())
function Home({ changeTheme, theme }) {
const { data, error } = useSWR('https://tp-statics.tokenpocket.pro/chains.json', fetcher)
const [layout, setLayout] = useState('grid')
const [search, setSearch] = useState('')
const [hideMultichain, setHideMultichain] = useState('1')
const router = useRouter()
if (router.query.search) {
setSearch(router.query.search)
delete router.query.search
}
const onSearchChanged = (event) => {
setSearch(event.target.value)
}
const handleLayoutChanged = (event, newVal) => {
if (newVal !== null) {
setLayout(newVal)
localStorage.setItem('yearn.finance-invest-layout', newVal ? newVal : '')
}
}
const addNetwork = () => {
window.open('https://github.com/TP-Lab/networklist-org/', '_blank')
}
const closeMultichain = (perma) => {
setHideMultichain('1')
localStorage.setItem('chainlist.org-hideMultichain', perma ? '1' : '0')
}
useEffect(() => {
const multi = localStorage.getItem('chainlist.org-hideMultichain')
if (multi) {
setHideMultichain(multi)
} else {
setHideMultichain('0')
}
}, [])
return (
Chainlist
Chainlist
Helping users connect to EVM powered networks
Chainlist is a list of EVM networks. Users can use the information to connect their wallets and Web3 middleware providers to the appropriate Chain ID and Network ID to connect to the correct chain.
}
>
Add Your Network
,
startAdornment:
Search Networks
}}
/>
{hideMultichain === '0' && }
{
data && data.filter((chain) => {
if (search === '') {
return true
} else {
//filter
return (chain.chain.toLowerCase().includes(search.toLowerCase()) ||
chain.chainId.toString().toLowerCase().includes(search.toLowerCase()) ||
chain.name.toLowerCase().includes(search.toLowerCase()) ||
(chain.nativeCurrency ? chain.nativeCurrency.symbol : '').toLowerCase().includes(search.toLowerCase()))
}
}).map((chain, idx) => {
return
})
}
)
}
export default withTheme(Home)
// export const getStaticProps = async () => {
//
// try {
// const chainsResponse = await fetch('https://chainid.network/chains.json')
// const chainsJson = await chainsResponse.json()
//
// return {
// props: {
// chains: chainsJson
// },
// revalidate: 60,
// }
// } catch (ex) {
// return {
// props: {
// chains: []
// }
// }
// }
//
// }
================================================
FILE: pages/index.module.css
================================================
.container {
display: grid;
grid-template-columns: 700px calc(100vw - 717px);
position: relative;
box-sizing: border-box;
}
.containerDark {
display: grid;
grid-template-columns: 700px calc(100vw - 717px);
position: relative;
box-sizing: border-box;
background: #2b2e3c;
}
.copyContainer {
display: flex;
flex-direction: column;
position: sticky;
justify-content: center;
align-items: center;
min-height: 100vh;
height: fit-content;
top: 0;
}
.copyCentered {
width: 425px;
}
.headerContainer {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: 48px;
padding-top: 24px;
position: sticky;
top: 0;
background: linear-gradient(rgba(243, 243, 243, 1) 90%, rgba(243, 243, 243, 0) 100%);
padding: 24px 80px 48px 80px;
z-index: 1;
}
.headerContainerDark {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: 48px;
padding-top: 24px;
position: sticky;
top: 0;
background: linear-gradient(rgba(35, 37, 46, 1) 90%, rgba(35, 37, 46, 0) 100%);
padding: 24px 80px 48px 80px;
z-index: 1;
}
.listContainer {
min-height: 100vh;
width: 100%;
align-items: flex-start;
background: #f3f3f3;
padding: 0px 24px 24px;
}
.listContainerDark {
min-height: 100vh;
width: 100%;
align-items: flex-start;
background: #23252e;
padding: 0px 24px;
}
.cardsContainer {
padding: 0px 80px;
display: grid;
grid-template-columns: calc(33% - 15px) calc(33% - 15px) calc(33% - 15px);
gap: 30px;
max-width: 1400px;
}
.chainListSpacing {
margin-bottom: 21px !important;
}
.helpingUnderline {
color: #2f80ed;
}
.helpingParagraph {
margin-bottom: 30px !important;
max-width: 320px;
}
.addNetworkButton {
margin-top: 50px !important;
width: fit-content;
}
.filterRow {
display: flex;
align-items: center;
justify-content: flex-end;
width: 100%;
flex: 1;
}
.searchContainer {
margin-right: 24px !important;
}
.socials {
margin-top: 50px;
}
.socialButton {
display: flex;
align-items: center;
}
.sourceCode {
padding-left: 6px;
}
.version {
padding-left: 30px;
}
.searchPaper {
width: 100%;
}
.searchInputAdnornment {
font-size: 14px !important;
font-weight: bold !important;
}
.buttonLabel {
text-transform: capitalize !important;
font-weight: 500 !important;
}
.buttonText {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
@media screen and (max-width: 1700px) {
.cardsContainer {
grid-template-columns: calc(50% - 15px) calc(50% - 15px);
}
}
@media screen and (max-width: 1500px) {
.container {
grid-template-columns: 500px calc(100vw - 517px);
}
.containerDark {
grid-template-columns: 500px calc(100vw - 517px);
}
.headerContainer,
.headerContainerDark {
padding: 24px 48px 48px 48px;
}
.cardsContainer {
padding: 0px 48px 48px;
}
}
@media screen and (max-width: 1200px) {
.container {
display: flex;
flex-direction: column;
}
.containerDark {
display: flex;
flex-direction: column;
}
.copyContainer {
position: relative;
top: 0px;
min-height: 100vh;
}
.copyCentered {
position: static;
padding-bottom: 0px;
}
.listContainer {
width: calc(100vw - 17px);
padding: 0px;
}
.listContainerDark {
width: calc(100vw - 17px);
padding: 0px;
}
.socials {
position: relative;
margin-top: calc(2em + 10px);
bottom: 0px;
}
}
@media screen and (max-width: 600px) {
.copyContainer,
.socialButton,
.version,
.socials {
max-width: 100vw;
}
.copyContainer {
text-align: center;
}
.cardsContainer {
padding: 0 20px 20px;
}
.helpingParagraph {
margin: 10px !important;
max-width: 100vw;
}
.copyCentered {
max-width: 100vw;
}
.subTitle {
padding: 0 10px;
}
.socialButton {
text-align: center;
justify-content: center;
}
.version {
padding-left: 0;
}
.cardsContainer {
grid-template-columns: 100%;
}
.listContainer,
.listContainerDark {
width: 100vw;
}
.headerContainer,
.headerContainerDark {
display: flex;
flex-direction: column-reverse;
padding: 20px;
}
}
================================================
FILE: public/fonts/Druk/Druk.css
================================================
@font-face {
font-family: "Druk Wide Bold";
src: url("/fonts/Druk/Druk Wide Bold.ttf");
font-style: normal;
font-weight: 400;
font-display: swap;
}
================================================
FILE: public/fonts/Inter/Inter.css
================================================
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url("Inter-Thin.woff2?v=3.17") format("woff2"),
url("Inter-Thin.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url("Inter-ThinItalic.woff2?v=3.17") format("woff2"),
url("Inter-ThinItalic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url("Inter-ExtraLight.woff2?v=3.17") format("woff2"),
url("Inter-ExtraLight.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url("Inter-ExtraLightItalic.woff2?v=3.17") format("woff2"),
url("Inter-ExtraLightItalic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url("Inter-Light.woff2?v=3.17") format("woff2"),
url("Inter-Light.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url("Inter-LightItalic.woff2?v=3.17") format("woff2"),
url("Inter-LightItalic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("Inter-Regular.woff2?v=3.17") format("woff2"),
url("Inter-Regular.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url("Inter-Italic.woff2?v=3.17") format("woff2"),
url("Inter-Italic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("Inter-Medium.woff2?v=3.17") format("woff2"),
url("Inter-Medium.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url("Inter-MediumItalic.woff2?v=3.17") format("woff2"),
url("Inter-MediumItalic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url("Inter-SemiBold.woff2?v=3.17") format("woff2"),
url("Inter-SemiBold.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url("Inter-SemiBoldItalic.woff2?v=3.17") format("woff2"),
url("Inter-SemiBoldItalic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url("Inter-Bold.woff2?v=3.17") format("woff2"),
url("Inter-Bold.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url("Inter-BoldItalic.woff2?v=3.17") format("woff2"),
url("Inter-BoldItalic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url("Inter-ExtraBold.woff2?v=3.17") format("woff2"),
url("Inter-ExtraBold.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url("Inter-ExtraBoldItalic.woff2?v=3.17") format("woff2"),
url("Inter-ExtraBoldItalic.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url("Inter-Black.woff2?v=3.17") format("woff2"),
url("Inter-Black.woff?v=3.17") format("woff");
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url("Inter-BlackItalic.woff2?v=3.17") format("woff2"),
url("Inter-BlackItalic.woff?v=3.17") format("woff");
}
/* -------------------------------------------------------
Variable font.
Usage:
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
html { font-family: 'Inter var', sans-serif; }
}
*/
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("Inter-roman.var.woff2?v=3.17") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("Inter-italic.var.woff2?v=3.17") format("woff2");
}
/* --------------------------------------------------------------------------
[EXPERIMENTAL] Multi-axis, single variable font.
Slant axis is not yet widely supported (as of February 2019) and thus this
multi-axis single variable font is opt-in rather than the default.
When using this, you will probably need to set font-variation-settings
explicitly, e.g.
* { font-variation-settings: "slnt" 0deg }
.italic { font-variation-settings: "slnt" 10deg }
*/
@font-face {
font-family: 'Inter var experimental';
font-weight: 100 900;
font-display: swap;
font-style: oblique 0deg 10deg;
src: url("Inter.var.woff2?v=3.17") format("woff2");
}
================================================
FILE: public/hm.js
================================================
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?c16d2338c63a2782d9491fb51dfac97a";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
================================================
FILE: stores/accountStore.js
================================================
import {
ERROR,
STORE_UPDATED,
CONFIGURE,
ACCOUNT_CONFIGURED,
ACCOUNT_CHANGED,
TRY_CONNECT_WALLET,
} from './constants';
import stores from './'
import Web3 from 'web3';
class Store {
constructor(dispatcher, emitter) {
this.dispatcher = dispatcher
this.emitter = emitter
this.store = {
account: null,
web3: null,
}
dispatcher.register(
function (payload) {
switch (payload.type) {
case CONFIGURE:
this.configure(payload);
break;
case TRY_CONNECT_WALLET:
this.tryConnectWallet(payload)
break;
default: {
}
}
}.bind(this)
);
}
getStore(index) {
return(this.store[index]);
};
setStore(obj) {
this.store = {...this.store, ...obj}
return this.emitter.emit(STORE_UPDATED);
};
configure = async () => {
// if (window.ethereum) {
// window.web3 = new Web3(ethereum);
// try {
// await ethereum.enable();
// var accounts= await web3.eth.getAccounts();
// this.setStore({ account: { address: accounts[0] }, web3: window.web3 })
// this.emitter.emit(ACCOUNT_CONFIGURED)
// } catch (error) {
// // User denied account access...
// }
//
// this.updateAccount()
//
// } else if (window.web3) {
// window.web3 = new Web3(web3.currentProvider);
// // Acccounts always exposed
// web3.eth.sendTransaction({/* ... */});
// }
// // Non-dapp browsers...
// else {
// console.log('Non-Ethereum browser detected. You should consider trying MetaMask!');
// }
};
updateAccount = () => {
const that = this
const res = window.ethereum.on('accountsChanged', function (accounts) {
that.setStore({ account: { address: accounts[0] } })
that.emitter.emit(ACCOUNT_CHANGED)
that.emitter.emit(ACCOUNT_CONFIGURED)
})
}
getWeb3Provider = async () => {
let web3context = this.getStore('web3context')
let provider = null
if(!web3context) {
provider = network.providers['1']
} else {
provider = web3context.library.provider
}
if(!provider) {
return null
}
return new Web3(provider);
}
tryConnectWallet = async () => {
if (window.ethereum) {
window.web3 = new Web3(ethereum);
try {
await ethereum.enable();
var accounts= await web3.eth.getAccounts();
this.setStore({ account: { address: accounts[0] }, web3: window.web3 })
this.emitter.emit(ACCOUNT_CONFIGURED)
} catch (error) {
// User denied account access...
}
}
// Legacy dapp browsers...
else if (window.web3) {
window.web3 = new Web3(web3.currentProvider);
var accounts= await web3.eth.getAccounts();
this.setStore({ account: { address: accounts[0] }, web3: window.web3 })
this.emitter.emit(ACCOUNT_CONFIGURED)
}
// Non-dapp browsers...
else {
console.log('Non-Ethereum browser detected. You should consider trying MetaMask!');
}
}
}
export default Store;
================================================
FILE: stores/connectors/connectors.js
================================================
import { InjectedConnector } from "@web3-react/injected-connector";
export const injected = new InjectedConnector({
supportedChainIds: [1, 3, 4, 5, 42]
});
================================================
FILE: stores/connectors/package.json
================================================
{
"main": "connectors.js"
}
================================================
FILE: stores/constants/constants.js
================================================
// GENERAL
export const ERROR = 'ERROR'
export const CONNECTION_CONNECTED = 'CONNECTION_CONNECTED'
export const CONNECTION_DISCONNECTED = 'CONNECTION_DISCONNECTED'
export const CONNECT_WALLET = 'CONNECT_WALLET'
export const CONFIGURE = 'CONFIGURE'
export const ACCOUNT_CONFIGURED = 'ACCOUNT_CONFIGURED'
export const CONFIGURE_NETWORK_LIST = 'CONFIGURE_NETWORK_LIST'
export const NETWORK_LIST_CONFIGURED = 'NETWORK_LIST_CONFIGURED'
export const STORE_UPDATED = 'STORE_UPDATED'
export const ACCOUNT_CHANGED = 'ACCOUNT_CHANGED'
export const TRY_CONNECT_WALLET = 'TRY_CONNECT_WALLET'
export const TX_SUBMITTED = 'TX_SUBMITTED'
================================================
FILE: stores/constants/package.json
================================================
{
"main": "constants.js"
}
================================================
FILE: stores/index.js
================================================
import AccountStore from "./accountStore";
const Dispatcher = require('flux').Dispatcher;
const Emitter = require('events').EventEmitter;
const dispatcher = new Dispatcher();
const emitter = new Emitter();
const accountStore = new AccountStore(dispatcher, emitter)
export default {
accountStore: accountStore,
dispatcher: dispatcher,
emitter: emitter
};
================================================
FILE: styles/Home.module.css
================================================
.container {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
================================================
FILE: styles/globals.css
================================================
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
================================================
FILE: theme/coreTheme.js
================================================
import { createMuiTheme } from '@material-ui/core/styles';
export const colors = {
blue: "#2F80ED",
red: '#ed4337',
orange: '#ffb347',
lightBlack: 'rgba(0, 0, 0, 0.87)'
};
const coreTheme = {
breakpoints: {
values: {
xs: 0,
sm: 600,
md: 1024,
lg: 1600,
xl: 1920,
},
},
shape: {
borderRadius: '10px'
},
typography: {
fontFamily: [
'Inter',
'Arial',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
].join(','),
h1: {
fontFamily: [
'"Helvetica Neue"',
'Inter',
],
fontSize: '60px',
fontWeight: 700,
lineHeight: 1.167,
letterSpacing: '1px'
},
h2: {
fontSize: '24px',
fontWeight: 700,
lineHeight: 1.167
},
h3: {
fontFamily: [
'Inter',
],
fontSize: '20px',
fontWeight: 600
},
h4: {
fontSize: '1.5rem',
fontWeight: 600,
lineHeight: 1.167
},
h5: { // card headers
fontSize: '15px',
fontWeight: 700,
lineHeight: 1.167
},
h6: { // card headers
fontSize: '1.5rem',
fontWeight: 700,
lineHeight: 1.167,
letterSpacing: '2px',
['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key
fontSize: '1.2rem'
}
},
subtitle1: {
fontSize: '14px',
fontWeight: 300,
lineHeight: 1.167,
['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key
fontSize: '0.7rem'
}
},
body1: {
fontSize: '16px',
fontWeight: 500,
lineHeight: 1.7,
['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key
fontSize: '0.8rem'
}
}
},
palette: {
primary: {
main: 'rgba(0, 0, 0, 0.87)',
},
secondary: {
main: '#EFEFEF',
},
error: {
main: '#dc3545'
}
},
overrides: {
MuiPaper: {
elevation1: {
"box-shadow": '0px 7px 7px #0000000A;',
"-webkit-box-shadow": '0px 7px 7px #0000000A;',
"-moz-box-shadow": '0px 7px 7px #0000000A;',
}
},
MuiOutlinedInput: {
input: {
padding: '12.5px 14px'
}
},
MuiTooltip: {
tooltip: {
maxWidth: 'none',
}
},
MuiButton: {
sizeLarge: {
borderRadius: '50px',
width: '260px',
height: '60px'
},
root: {
minWidth: '50px',
borderRadius: '32px'
},
outlinedSizeSmall: {
fontSize: '0.7rem',
padding: '6px 9px',
['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key
padding: '3px 0px',
}
},
textSizeLarge: {
fontSize: '2.4rem',
['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key
fontSize: '2rem'
}
},
label: {
textTransform: 'capitalize'
},
outlinedPrimary: {
border: '1px solid #EAEAEA',
"&:hover": {
backgroundColor: colors.blue+' !important',
color: '#fff'
}
}
},
MuiDialog: {
paperWidthSm: {
maxWidth: '800px'
}
},
MuiToggleButton: {
root: {
flex: 1,
padding: '9px 6px'
}
},
MuiSnackbar : {
root: {
maxWidth: 'calc(100vw - 24px)'
},
anchorOriginBottomLeft: {
bottom: '12px',
left: '12px',
'@media (min-width: 960px)': {
bottom: '50px',
left: '80px'
}
}
},
MuiInputBase: {
input: {
fontSize: '14px'
},
root: {
margin: '0px',
'&:before': { //underline color when textfield is inactive
borderBottom: 'none !important',
height: '0px'
},
'&:after': { //underline color when textfield is inactive
borderBottom: 'none !important',
height: '0px'
},
}
},
MuiAccordion: {
root: {
margin: '0px',
'&:before': { //underline color when textfield is inactive
backgroundColor: 'none',
height: '0px'
},
'&$expanded': {
margin: '0px'
}
}
},
MuiAccordionSummary: {
root: {
padding: '0px 24px',
'@media (max-width:576px)': {
padding: '0px 6px',
}
},
content: {
margin: '0px !important'
}
},
MuiAccordionDetails: {
root: {
padding: '0',
}
},
MuiFormHelperText: {
contained: {
textAlign: 'end'
}
}
}
}
export default coreTheme;
================================================
FILE: theme/dark.js
================================================
import { createMuiTheme } from '@material-ui/core/styles';
import coreTheme from './coreTheme';
// Create a theme instance.
const theme = createMuiTheme({
...coreTheme,
palette: {
...coreTheme.palette,
background: {
default: '#22252E',
paper: '#2B2E3C'
},
primary: {
main: '#2F80ED',
},
type: 'dark',
},
overrides: {
...coreTheme.overrides,
MuiButton: {
...coreTheme.overrides.MuiButton,
outlinedPrimary: {
border: '1px solid #FFFFFF1A',
"&:hover": {
backgroundColor: '#2F80ED !important',
color: '#fff'
}
}
},
MuiInputBase: {
...coreTheme.overrides.MuiInputBase,
root: {
background: "#fff"
}
},
MuiOutlinedInput: {
...coreTheme.overrides.MuiOutlinedInput,
notchedOutline: {
borderColor: "#FFF"
}
},
MuiSnackbarContent: {
root: {
color: '#fff',
backgroundColor: '#2B2E3C',
padding: '0px',
minWidth: 'auto',
'@media (min-width: 960px)': {
minWidth: '500px',
}
},
message: {
padding: '0px'
},
action: {
marginRight: '0px'
}
},
}
});
export default theme;
================================================
FILE: theme/light.js
================================================
import { createMuiTheme } from '@material-ui/core/styles';
import { red } from '@material-ui/core/colors';
import coreTheme from './coreTheme';
// Create a theme instance.
const theme = createMuiTheme({
...coreTheme,
palette: {
...coreTheme.palette,
background: {
default: '#fff',
paper: '#fff'
},
accountButton: {
default: '#EFEFEF'
},
primary: {
main: '#2F80ED',
},
secondary: {
main: '#DEDEDE'
},
type: 'light',
},
overrides: {
...coreTheme.overrides,
MuiButton: {
...coreTheme.overrides.MuiButton,
outlinedPrimary: {
border: '1px solid #EAEAEA',
"&:hover": {
backgroundColor: '#2F80ED !important',
color: '#fff'
}
}
},
MuiInputBase: {
...coreTheme.overrides.MuiInputBase,
root: {
background: "#fff"
}
},
MuiOutlinedInput: {
...coreTheme.overrides.MuiOutlinedInput,
notchedOutline: {
borderColor: "#FFF"
}
},
MuiSnackbarContent: {
root: {
color: 'rgba(0, 0, 0, 0.87)',
backgroundColor: '#F8F9FE',
padding: '0px',
minWidth: 'auto',
'@media (min-width: 960px)': {
minWidth: '500px',
}
},
message: {
padding: '0px'
},
action: {
marginRight: '0px'
}
},
}
});
export default theme;
================================================
FILE: utils/package.json
================================================
{
"main": "utils.js"
}
================================================
FILE: utils/utils.js
================================================
import BigNumber from 'bignumber.js'
// todo: get navigator declared somehow? probably an issue with using nextjs
// function getLang() {
// if (window.navigator.languages != undefined)
// return window.navigator.languages[0];
// else
// return window.navigator.language;
// }
export function formatCurrency(amount, decimals = 2) {
if (!isNaN(amount)) {
const formatter = new Intl.NumberFormat(undefined, {
minimumFractionDigits: decimals,
maximumFractionDigits: decimals,
});
return formatter.format(amount)
} else {
return 0
}
}
export function formatAddress(address, length = 'short') {
if (address && length === 'short') {
address = address.substring(0, 6) + '...' + address.substring(address.length - 4, address.length)
return address
} else if (address && length === 'long') {
address = address.substring(0, 12) + '...' + address.substring(address.length - 8, address.length)
return address
} else {
return null
}
}
export function bnDec(decimals) {
return new BigNumber(10)
.pow(parseInt(decimals))
}
export function getProvider() {
if (typeof window !== "undefined" && typeof window.ethereum !== "undefined") {
if (window.ethereum.isDfox) return 'tokenpocket'
if (window.ethereum.isTokenPocket) return 'tokenpocket'
if (window.ethereum.isMetaMask) return 'Metamask'
if (window.ethereum.isImToken) return 'imToken'
}
return 'Wallet'
}